Have to deal with several conversions between Binary and Octal numeral systems? Then this site is made for you! Use our super handy online tool to convert your data.Welcome!

Binary to Octal converter

How to convert Binary to Octal

A binary number is a number expressed in the base-2 numeral system or binary numeral system, which uses only two symbols: typically "0" and "1". The base-2 numeral system is a positional notation with a radix of 2. Each digit is referred to as a bit. Because of its straightforward implementation in digital electronic circuitry using logic gates, the binary system is used by almost all modern computers and computer-based devices.

The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal is sometimes used in computing instead of hexadecimal, perhaps most often in modern times in conjunction with file permissions under Unix systems. It has the advantage of not requiring any extra symbols as digits. It is also used for digital displays.

Formula

Follow these steps to convert a binary number into octal form:
  1. Start from the right side of the binary number and divide it up into groups of 3 digits. Add extra zeros to the front of the first number if it is not three digits.
  2. Convert each group of 3 binary digits to its equivalent octal value from the conversion table below.
  3. Concatenate the results together. This is the solution.
Conversion table:
BinaryOctal
0000
0011
0102
0113
1004
1015
1106
1117
For example if the given binary number is 10110111010001:
Binary(0)10110111010001
Octal26721
Then the octal solution is: 26721
Switch to desktop version