Skip to content
ConvertCalculate

Binary to Octal

Convert binary numbers to octal format effortlessly for simplified numeric representation, reducing long binary strings into shorter, readable octal numbers for computation or coding tasks.

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

To convert binary to octal, group the binary digits in threes from the right and convert each group to one octal digit. For example, binary 101101 is 55 in octal.

How it works

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

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

Shortcut: group the binary digits in threes from the right; each group is one octal digit.

The reverse conversion is Octal to Binary, which also handles every other base pair.

Examples

Worked examples, digit by digit:

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

Binary to Octal: frequently asked questions

How do I convert binary to octal?
Group the binary digits in threes from the right and convert each group to one octal digit. For example, binary 101101 is 55 in octal. The converter above does this instantly for any value.
What is 11111111 in octal?
Binary 11111111 equals 377 in octal (the value 255, the largest number that fits in one byte).
Why are binary and octal used?
Binary (base 2) is how computers store data, as bits that are either 0 or 1. Octal (base 8) groups bits in threes.