How to Convert Decimal to Binary

Formula: Binary: divide by 2 repeatedly, read remainders bottom-up

Number bases represent values using different digit sets. Decimal (base-10) uses 0–9, binary (base-2) uses 0–1, hexadecimal (base-16) uses 0–9 and A–F, and octal (base-8) uses 0–7. Binary is fundamental to computing since digital circuits have two states (on/off).

DecimalBinary
11
81000
101010
1610000
42101010
1001100100
25511111111