How octal-to-binary conversion works
Each octal digit maps to exactly three binary digits. Replace each octal digit with its three-bit binary equivalent and concatenate the groups to form the full binary number.
For example, octal 75 becomes 111 101 in binary. The digit 7 maps to 111 and 5 maps to 101.