Binary ↔ Decimal Converter
Convert between binary and decimal numbers with exact precision (=== validation)
Mode: Binary → Decimal | Precision: Exact (===) | Tests: 30+ golden cases
BIN
Binary → Decimal
DEC
Conversion Information
Binary (Base 2): Uses digits 0 and 1
Decimal (Base 10): Uses digits 0-9
Range: 0 to 4,294,967,295 (32-bit)
Validation: Exact equality (===)
Common Conversions
1
1 ↔ 1
2
10 ↔ 2
8
1000 ↔ 8
16
10000 ↔ 16
255 (8-bit max)
11111111 ↔ 255
1024 (2^10)
10000000000 ↔ 1024
Powers of 2
2²
100 ↔ 4
2⁵
100000 ↔ 32
2⁶
1000000 ↔ 64
2⁷
10000000 ↔ 128
2⁹
1000000000 ↔ 512
2¹¹
100000000000 ↔ 2048