Online Decimal to Binary Converter

In order to use the Decimal to Binary Converter tool, a user needs to provide some input in decimal field input and then press the Convert button. The output would be reflected in the Binary input field. For Example, providing value such as 23 would give 10111 as Binary value.



 


 

( ) 10 = ( )2


In computing, a decimal number is a number system having a base of 10 ( 0 -9), whereas a binary number having a base of 2 ( 0 or 1).

Steps to Convert a Decimal to Binary:

  • Divide the given decimal number by 2.
  • Write down the remainder separately and the quotient becomes the new decimal number
  • Follow 1 and 2, until the quotient becomes 0 .
  • Finally, reverse all the remainders that you have written down.

For Example:

DivisionQuotientRemainder
23/2 11 1
11/2 51
5/2 2 1
2/210
1/201

Decimal Number System

It ranges from 0 to 9, (0,1,2,3,4,5,6,7,8,9). All the arithmetic calculations are done in this number system. Since, it includes 10 digits, therefore, It has base/radix of 10. It can be represented by (103)10.

Binary Number System

It supports only two digits 0 or 1, therefore, it has base/radix of 2. It can be represented by (101)2. Further, these are used in computer systems and digital instruments. This is the number system which actually a computer can understand.

More :

Program to convert Decimal to binary

Difference between High-Level Language and Low Level Language