Homeโ€บConversionโ€บNumber conversionโ€บDecimal to binary

Decimal to Binary Converter

Enter a decimal number and press Convert (e.g. 13 โ†’ 1101):

Decimal Number (Base 10)
Binary Result (Base 2)

How to Convert Decimal to Binary

Use the repeated division by 2 method:

  1. Divide the decimal number by 2
  2. Record the remainder (0 or 1)
  3. Divide the quotient by 2 again
  4. Repeat until quotient is 0
  5. Read the remainders bottom-to-top

Example: 13โ‚โ‚€ to binary

13 รท 2 = 6 remainder 1 6 รท 2 = 3 remainder 0 3 รท 2 = 1 remainder 1 1 รท 2 = 0 remainder 1 Read remainders bottom-up: 1101

Decimal to Binary Reference Table

DecimalBinaryHex

See Also

Number Conversion