Decimal to Binary Converter
Convert decimal numbers to binary by inputting a decimal value and pressing the convert button.
Information on Number Conversion
A number system is a method of expressing numbers in a consistent manner using digits and numbers. There are different number system like, Decimal, Binary, Octal, Hexadecimal. These different number systems are used in different contexts.
Decimal Number System
Decimal number system is the most commonly used number system. It is a base 10 number system. It uses 10 digits from 0 to 9. The position of each digit in a decimal number denotes the power of 10. The rightmost digit is the ones place, the next digit to the left is the tens place, the next digit to the left is the hundreds place, and so on.
An example of a decimal number is
123410 = 1×103 + 2×102 + 3×101 + 4×100
Binary Number System
Binary number system is a base 2 number system. It uses only two digits, 0 and 1. The position of each digit in a binary number denotes the power of 2. The rightmost digit is the ones place, the next digit to the left is the twos place, the next digit to the left is the fours place, and so on.
An example of a binary number is
10112 = 1×23 + 0×22 + 1×21 + 1×20
How to convert Decimal to Binary?
To convert a decimal number to binary, you can use the following steps:
Step 1: Write down the decimal number.
Step 2: Divide the decimal number by 2.
Step 3: Write down the remainder (0 or 1) and quotient.
Step 4: Repeat steps 2 and 3 with the quotient until the quotient is 0.
Example 1: Convert 123410 to (?)2
Step 1: Write down the decimal number: 123410
Step 2-3: Make a table of the division of 1234 by 2:
Division by 2 | Quotent | Remainder | Bit |
---|---|---|---|
617 | 0 | 0 | |
308 | 1 | 1 | |
154 | 0 | 2 | |
77 | 0 | 3 | |
38 | 1 | 4 | |
19 | 0 | 5 | |
9 | 1 | 6 | |
4 | 1 | 7 | |
2 | 0 | 8 | |
1 | 0 | 9 | |
0 | 1 | 10 | |
The binary Representation of (1234)10 is (10011010010)2 |
Example 2: Convert 12345610 to (?)2
Step 1: Write down the decimal number: 12345610
Step 2-3: Make a table of the division of 123456 by 2:
Division by 2 | Quotent | Remainder | Bit |
---|---|---|---|
61728 | 0 | 0 | |
30864 | 0 | 1 | |
15432 | 0 | 2 | |
7716 | 0 | 3 | |
3858 | 0 | 4 | |
1929 | 0 | 5 | |
964 | 1 | 6 | |
482 | 0 | 7 | |
241 | 0 | 8 | |
120 | 1 | 9 | |
60 | 0 | 10 | |
30 | 0 | 11 | |
15 | 0 | 12 | |
7 | 1 | 13 | |
3 | 1 | 14 | |
1 | 1 | 15 | |
0 | 1 | 16 | |
The binary Representation of (123456)10 is (11110001001000000)2 |
Decimal to Binary conversion table
The table below shows the binary representation of decimal numbers from 0 to 16.
Decimal | Binary |
---|---|
0 | 0 |
1 | 1 |
2 | 10 |
3 | 11 |
4 | 100 |
5 | 101 |
6 | 110 |
7 | 111 |
8 | 1000 |
9 | 1001 |
10 | 1010 |
11 | 1011 |
12 | 1100 |
13 | 1101 |
14 | 1110 |
15 | 1111 |
16 | 10000 |
- Hexadecimal to Binary Converter
- Binary to Hexadecimal Converter
- Random Number Generator
- Binary to Decimal Converter
- Hexadecimal to Octal Converter
- Hexadecimal to Decimal Converter
- Octal to Decimal Converter
- Octal to Binary Converter
- Octal to Hexadecimal Converter
- Decimal to Binary Converter
- Binary to Octal Converter
- Decimal to Hexadecimal Converter
- Decimal to Octal Converter
Login or Signup to add a comment