Convert every 3 digits of the binary number (start from bit 0) to 1 octal digit, using this reference table:
Binary | Octal |
---|---|
000 | 0 |
001 | 1 |
010 | 2 |
011 | 3 |
100 | 4 |
101 | 5 |
110 | 6 |
111 | 7 |
Example:
Convert the binary number 1011011 to octal number:
Convert every 3 binary digits (from the first digit) to an octal digit:
10110112 = 1 011 011 = 1 3 3 = 1338
Below is the reference table for converting binary number to decimal, octal, hexadecimal, ranging from 010 to 1510:
Binary | Decimal | Octal | Hexadecimal |
---|---|---|---|
0000 | 0 | 0 | 0 |
0001 | 1 | 1 | 1 |
0010 | 2 | 2 | 2 |
0011 | 3 | 3 | 3 |
0100 | 4 | 4 | 4 |
0101 | 5 | 5 | 5 |
0110 | 6 | 6 | 6 |
0111 | 7 | 7 | 7 |
1000 | 8 | 10 | 8 |
1001 | 9 | 11 | 9 |
1010 | 10 | 12 | A |
1011 | 11 | 13 | B |
1100 | 12 | 14 | C |
1101 | 13 | 15 | D |
1110 | 14 | 16 | E |
1111 | 15 | 17 | F |