Decimal to Binary Converter
Convert decimal numbers to binary with step-by-step breakdown
Binary Result
0010 1010
6 bits
Division Method Steps
| Step | Division | Quotient | Remainder (Bit) |
|---|---|---|---|
| 1 | 42 / 2 | 21 | 0 |
| 2 | 21 / 2 | 10 | 1 |
| 3 | 10 / 2 | 5 | 0 |
| 4 | 5 / 2 | 2 | 1 |
| 5 | 2 / 2 | 1 | 0 |
| 6 | 1 / 2 | 0 | 1 |
Read remainders from bottom to top: 101010
Common Decimal Values
How It Works
1. Divide the decimal number by 2
2. Write down the remainder (0 or 1)
3. Divide the quotient by 2
4. Repeat until the quotient is 0
5. Read the remainders from bottom to top