Part of the Maths & Statistics suite · 235 calculators

Binary to Decimal Converter

Convert a binary number to ordinary decimal — each digit is a power of two, doubling as you move left.

Binary uses only 0 and 1, and each position is worth twice the one to its right: 1, 2, 4, 8, 16 and so on.

Results update as you type
Results
Converted
255
Decimal value
Binary
Octal
Hexadecimal
Bits needed
Reviewed September 2026. Pure mathematics: the result does not depend on where you are. Terminology follows the national 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 decimal converter

How the binary to decimal converter works

Binary uses only 0 and 1, and each position is worth twice the one to its right: 1, 2, 4, 8, 16 and so on. To read it, add up the place values wherever there is a 1 — so 1011 is 8 + 2 + 1 = 11. Eight binary digits make a byte, which is why 11111111 is 255 and why so many limits in computing stop at 255, 65535 or 4294967295.

Formula: value = Σ digitₖ × bᵏ

Worked examples

InputsConvertedNote
11111111255255 — the largest byte
10111111
10000000128128

Frequently asked questions

How do I read binary?

Each place is a power of two. Add the values where there is a 1: 1101 is 8 + 4 + 1 = 13.

Why is 255 significant?

It is the largest value in eight bits, one byte — which is why colour channels and many old limits stop there.

What is 1010 in decimal?

10.

Do computers really use binary?

Yes, because a transistor is reliably either on or off; two states are far easier to build than ten.

What about negative binary numbers?

They are usually stored as two's complement, where the top bit signals a negative value. This page handles positive numbers.

Where these figures come from

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