Convert from binaryHow to convert number from binary to decimal, octal, hexadecimal? | |
Binary to:
decimal
octal
hexadecimal
|
ExamplesConversion rule to table |
Binary to DecimalConvert 110101112 to decimal:110101112 = 21510 |
binary | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 1 | step 0 |
decimal | (1*27) + | (1*26) + | (0*25) + | (1*24) + | (0*23) + | (1*22) + | (1*21) + | (1*20) | step 1 |
decimal 215 = |
128 + | 64 + | 0 + | 16 + | 0 + | 4 + | 2 + | 1 | step 2 |
Binary to OctalConvert 110101112 to octal:110101112 = 11 010 111 = 3278 |
binary 11010111 11 010 111 |
11 | 010 | 111 | step 0 |
octal 327 |
3 | 2 | 7 | step 1 |
Binary to HexadecimalConvert 110101112 to hexadecimal:110101112 = 1101 0111 = D716 |
binary 11010111 |
1101 | 0111 | step 0 |
hexadecimal D7 |
D | 7 | step 1 |
binary | |
measurement units | |