Binary to Octal Converter

Convert binary system to octal system easily with this online converter tool.

How to convert Binary to Octal

Converting a binary number from Binary system to octal (base-8) system we need to groupping three digit sets from right to left of binary number.

If there are not enough digits for a set then fill the zeros to left side to three digits.

Get each group's octal equivalent.

BinaryOctal
0000
0011
0102
0113
1004
1015
1106
1117

Concatenate the octal values.

Let's see an example. Binary number is 110110101001 :

  • Group the binary digits into sets of three : 110 110 101 001
  • Get each group's octal equivalent : 6 6 5 1
  • Concatenate the octal values : 6651

The binary number 110110101001 is equivalent to the octal number 6651