Convert Octal numbers (like 77) to Binary (base-2) representation.
The Octal number system is base-8 and uses digits from 0 to 7. It's often used in Unix file permissions, digital systems, and low-level programming.
Binary is the base-2 number system using only 0 and 1. It's the foundation of all digital electronics and computer architecture.
7 → 111, 5 → 101, so 75 → 111101| Octal Digit | Binary Equivalent |
|---|---|
| 0 | 000 |
| 1 | 001 |
| 2 | 010 |
| 3 | 011 |
| 4 | 100 |
| 5 | 101 |
| 6 | 110 |
| 7 | 111 |