Decimal to Hexadecimal Converter
Easily convert decimal to hexadecimal by entering a decimal value, such as 55, into the input field and click 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
Hexadecimal Number System
Hexadecimal number system is a base 16 number system. It uses 16 digits from 0 to 9 and A to F. The position of each digit in a hexadecimal number denotes the power of 16. The rightmost digit is the ones place, the next digit to the left is the sixteens place, the next digit to the left is the two hundred fifty-six place, and so on.
An example of a hexadecimal number is
123416 = 1×163 + 2×162 + 3×161 + 4×160
How to convert Decimal to Hexadecimal?
To convert a decimal number to hexadecimal, you can use the following steps:
Step 1: Write down the decimal number.
Step 2: Divide the decimal number by 16.
Step 3: Write down the remainder (in hexadecimal) and quotient.
Step 4: Repeat steps 2 and 3 with the quotient until the quotient is 0.
Example 1: Convert 123410 to (?)16
Step 1: Write down the decimal number: 123410
Step 2-3: Make a table of the division of 1234 by 16:
Division by 16 | Quotent | Remainder | Bit |
---|---|---|---|
77 | 2 | 0 | |
4 | D (13) | 1 | |
0 | 4 | 2 | |
The hexadecimal Representation of (1234)10 is (4D2)16 |
Example 2: Convert 12345610 to (?)16
Step 1: Write down the decimal number: 12345610
Step 2-3: Make a table of the division of 123456 by 16:
Division by 16 | Quotent | Remainder | Bit |
---|---|---|---|
7716 | 0 | 0 | |
482 | 4 | 1 | |
30 | 2 | 2 | |
1 | E (14) | 3 | |
0 | 1 | 4 | |
The hexadecimal Representation of (123456)10 is (1E240)16 |
Decimal to Hexadecimal Conversion Chart
The following table shows the common decimal numbers equivalent hexadecimal numbers:
Decimal | Hexadecimal |
---|---|
0 | 0 |
1 | 1 |
2 | 2 |
3 | 3 |
4 | 4 |
5 | 5 |
6 | 6 |
7 | 7 |
8 | 8 |
9 | 9 |
10 | A |
11 | B |
12 | C |
13 | D |
14 | E |
15 | F |
16 | 10 |
17 | 11 |
18 | 12 |
19 | 13 |
20 | 14 |
21 | 15 |
22 | 16 |
23 | 17 |
24 | 18 |
25 | 19 |
26 | 1A |
27 | 1B |
28 | 1C |
29 | 1D |
30 | 1E |
40 | 28 |
50 | 32 |
60 | 3C |
70 | 46 |
80 | 50 |
90 | 5A |
100 | 64 |
200 | C8 |
300 | 12C |
400 | 190 |
500 | 1F4 |
1000 | 3E8 |
5000 | 1388 |
- Decimal to Binary Converter
- Hexadecimal to Binary Converter
- Binary to Octal Converter
- Hexadecimal to Octal Converter
- Decimal to Hexadecimal Converter
- Octal to Hexadecimal Converter
- Octal to Decimal Converter
- Decimal to Octal Converter
- Binary to Decimal Converter
- Random Number Generator
- Octal to Binary Converter
- Hexadecimal to Decimal Converter
- Binary to Hexadecimal Converter
Login or Signup to add a comment