Decimal to binary converter

Find the binary equivalent of the decimal number.

Swap

How to convert decimal to binary

For example, let's convert 95 to decimal.

  • 95 - 94 = 1
  • 94 / 2 = 47
    47 - 46 = 1
  • 46 / 2 = 23
    23 - 22 = 1
  • 22 / 2 = 11
    11 - 10 = 1
  • 10 / 2 = 5
    5 - 4 = 1
  • 4 / 2 = 2
    2 - 2 = 0
  • 2 / 2 = 1

Store recieved 0 and 1 in reverse order. So in result we will recieve that 95 decimal number is equal to 1011111 binary number.

Decimal numbers to binary

Go back to form to convery any decimal number.