How to convert Octal to Binary
Converting an octal number from Octal system to Binary system we need to convert three bit binary value corresponding for each digit of octal number.
Octal | Binary |
0 | 000 |
1 | 001 |
2 | 010 |
3 | 011 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
Let's see an example. Octal number is 456 :
Convert each octal digit to binary
- 4 corresponds to 100 in binary
- 5 corresponds to 100 in binary
- 6 corresponds to 110 in binary
The octal number 456 is equivalent to the binary number 100101110