Part of the Maths & Statistics suite · 235 calculators

Binary to Octal Converter

Convert binary to octal — three bits to each octal digit.

Octal groups bits in threes, because eight is two cubed.

Results update as you type
Results
Converted
755
Decimal value
Binary
Octal
Hexadecimal
Bits needed
Reviewed September 2026. Pure mathematics: the result does not depend on where you are. Terminology follows the Australian Curriculum (maths, brackets, decimal point).
No account required · Google Analytics off unless allowedCalculator arithmetic runs in your browserResults update as you type
All calculations run 100% in your browser. The calculator code does not submit your figures to GlobalCalc to obtain a result.
About binary to octal converter

How the binary to octal converter works

Octal groups bits in threes, because eight is two cubed. 111 is 7, 101 is 5, 000 is 0.

Octal was common when word sizes were multiples of three bits, and it survives in one place everyone meets: Unix file permissions. chmod 755 is three octal digits, each expanding to the read, write and execute bits for one class of user — 7 is 111, all three permissions; 5 is 101, read and execute.

Formula: value = Σ digitₖ × bᵏ

Worked examples

InputsConvertedNote
111101101755755 — the classic chmod
11111111377377
10001010

Frequently asked questions

How do I convert binary to octal?

Group the bits in threes from the right and translate each group: 111 is 7.

Why three bits per octal digit?

Because 8 is 2³.

What is chmod 755 in binary?

111 101 101 — read, write and execute for the owner, read and execute for everyone else.

Is octal still used?

Mainly for Unix file permissions. Hex has replaced it almost everywhere else.

What is 11111111 in octal?

377, which is 255 in decimal.

Where these figures come from

Last checked: September 2026. Formulas are fixed by mathematics and do not change with tax years or regulations.