Decimal Input
Results
42
Decimal
101010
6
Bits
1
Bytes
2⁵
Highest power
History
No conversions yet.
Quick Samples
How it works
Decimal → Binary: Repeatedly divide by 2, read remainders bottom-to-top.
Binary → Decimal: Each bit × 2n (right to left, starting n=0).
Signed: Uses 2's complement for negative numbers.