Decimal to Binary Converter
Convert decimal numbers to binary format easily
-
Calculation Steps:
Enter a decimal number to see calculation steps
Conversion Method
Division Method:
To convert decimal to binary, repeatedly divide the number by 2 and record the remainders.
Example: Convert 10 to binary
10 ÷ 2 = 5 remainder 0
5 ÷ 2 = 2 remainder 1
2 ÷ 2 = 1 remainder 0
1 ÷ 2 = 0 remainder 1
Read remainders backwards: 1010
Common Conversions:
0
= 0
1
= 1
2
= 10
4
= 100
8
= 1000
15
= 1111