Mathematical Tutorial
How to Convert Octal to Binary.
Learn the simple digit expansion algorithm to turn any octal number into its binary equivalent.
The digit expansion method.
To convert an octal number (base-8) to a binary number (base-2), you perform the reverse of the grouping method: you take each individual digit of the octal number and expand it into its exact 3-bit binary representation.
This method is extremely straightforward and doesn't require decimal calculation. Each octal digit corresponds to a specific 3-digit binary code, which can be concatenated to produce the final binary value.
Try it: Octal to Binary mini-calculator
Binary Result: 011100101
Octal to binary steps by hand.
- Start with your octal value (e.g. 345).
- Take each digit separately: 3, 4, and 5.
- Convert each digit to its 3-bit binary equivalent:
- 3 ➔
011 - 4 ➔
100 - 5 ➔
101
- 3 ➔
- Combine the binary groups in order:
011+100+101= 011100101 (or simply 11100101).
Octal mapping reference
| Octal | 3-Bit Binary |
|---|---|
| 0 | 000 |
| 1 | 001 |
| 2 | 010 |
| 3 | 011 |
| 4 | 100 |
| 5 | 101 |
| 6 | 110 |
| 7 | 111 |