Binary to decimal converter

Convert binary to decimal with BigInt, view unsigned and signed (two’s complement) results, and generate padded hex/octal. Includes steps and quick copy.

Binary to Decimal Calculator Online (Step-by-Step)

Convert binary to decimal in seconds with BigInt, view unsigned and signed (two's complement) values, and get padded hex/oct outputs. Clear vertical blocks without distractions.

Decimal

Sum of powers of two

Normalized binary

Signed decimal (two's complement)

Padded hex

Octal

Natural 3-bit grouping

Automatic steps: sum of powers of two

Bit Position 2^pos
Bit Position 2^position Contribution Running total

How to convert binary to decimal

Formula: decimal = \sum bit_i \times 2^i. Example with 1101: 1×2³ + 1×2² + 0×2¹ + 1×2⁰ = 13.

Negative (two's complement, n bits): signed = unsigned - 2^n. Pedagogical method: invert bits, add 1, prepend the negative sign.

0 → 0 1 → 1 10 → 2 101 → 5 1111 → 15