Skip to content
UnitChart

Convert binary to octal

Binary (base 2) to octal (base 8). Type a value below, or use the reference table further down.

1010 (binary) = 12 (octal)

Multiply each digit by 2 raised to its position, counting from zero on the right, then add the results. 1010 comes to 10 in decimal, which is 12 in octal.

How to convert binary to octal

Multiply each digit by 2 raised to its position, counting from zero on the right, then add the results. 1010 comes to 10 in decimal, which is 12 in octal.

Conversions here use arbitrary-precision integers, so values beyond 64 bits convert exactly rather than being rounded.

binary to octal conversion table

Use this binary to octal chart for quick reference.

binary to octal conversion table
Binary (base 2)Octal (base 8)
00
11
102
113
1004
1015
1106
1117
100010
100111
101012
101113
110014
110115
111016
111117
1000020
10000040
1000000100
1100100144
1111111177
10000000200
11111111377
100000000400
10000000001000
11111010001750
11111111111777
100000000002000
1111111111117777
100000000000010000
1111111111111111177777
10000000000000000200000

What is binary?

Binary is base 2, using only 0 and 1. It is how every digital computer physically stores and manipulates data, with each digit representing one bit.

What is octal?

Octal is base 8, using the digits 0 to 7. One octal digit encodes exactly three bits, which is why Unix file permissions are written as octal numbers such as 755.

Frequently asked questions

How do you convert binary to octal?

Multiply each digit by 2 raised to its position, counting from zero on the right, then add the results. 1010 comes to 10 in decimal, which is 12 in octal.

What is 1010 binary in octal?

1010 in binary is 12 in octal. In plain decimal that value is 10.

What digits does binary use?

Binary is base 2 and uses 0 and 1. Binary is base 2, using only 0 and 1. It is how every digital computer physically stores and manipulates data, with each digit representing one bit.

Other base conversions