Decimal to Binary
Enter a decimal integer. Get its binary (base 2) representation.
Decimal to Binary
How it works
Repeated division by 2; remainders (0 or 1) form the binary string from least to most significant bit.
When to use it
Use when learning number bases or working with binary data.
Frequently asked questions
Negative numbers?
We show unsigned binary. For signed use two's complement.