Math
Binary to Decimal Converter
Convert any binary number to decimal, hex, and octal instantly.
In this article
How binary (base-2) works
Binary uses only 0s and 1s. Each position represents a power of 2: 1, 2, 4, 8, 16, 32...
Binary: 1 0 1 0
Value: 8 4 2 1 → 8+0+2+0 = 10 (decimal)
Why computers use binary
Transistors have two states: on (1) and off (0). Binary maps directly to this physical reality — making it the natural language of all digital computers.
Frequently asked questions
How do I convert binary to decimal?▾
Multiply each digit by its place value (powers of 2, right to left) and add. 1011 = 8+0+2+1 = 11.
✓ Math logic verified against primary sources
→ See our verification process