Skip to content
ConvertCalculate

Octal to Binary

Instantly convert octal numbers to binary format to expand numeric values for programming, electronics, and digital systems without errors or manual calculation.

  • Free
  • Instant results
  • Runs in your browser
In short

To convert octal to binary, replace each octal digit with its 3-bit binary equivalent. For example, octal 55 is 101101 in binary.

How it works

Octal counts in base 8, binary counts in base 2. Converting means rewriting the same quantity with a different set of digits — the value never changes, only how it is written.

  1. Convert each octal digit to its decimal value and add them up.
  2. Divide that total by 2, keeping the remainders.
  3. Read the remainders bottom to top for the binary result.

The reverse conversion is Number Converter, which also handles every other base pair.

Examples

Worked examples, digit by digit:

  • 12 (octal) = 10 in decimal = 1010 (binary)
  • 25 (octal) = 21 in decimal = 10101 (binary)
  • 377 (octal) = 255 in decimal = 11111111 (binary)
Common values in every base
DecimalBinaryOctalHexadecimal
0000
1111
21022
410044
81000108
10101012A
15111117F
16100002010
321000004020
64100000010040
100110010014464
25511111111377FF

Octal to Binary: frequently asked questions

How do I convert octal to binary?
Replace each octal digit with its 3-bit binary equivalent. For example, octal 55 is 101101 in binary. The converter above does this instantly for any value.
What is 377 in binary?
Octal 377 equals 11111111 in binary (the value 255, the largest number that fits in one byte).
Why are octal and binary used?
Octal (base 8) is a compact way to write groups of three bits and is still used for Unix file permissions such as 755. Binary (base 2) is how computers store data, as bits that are either 0 or 1.