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 16QuotentRemainderBit
\frac{1234}{16}7720
\frac{77}{16}4D (13)1
\frac{4}{16}042
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 16QuotentRemainderBit
\frac{123456}{16}771600
\frac{7716}{16}48241
\frac{482}{16}3022
\frac{30}{16}1E (14)3
\frac{1}{16}014
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:

DecimalHexadecimal
00
11
22
33
44
55
66
77
88
99
10A
11B
12C
13D
14E
15F
1610
1711
1812
1913
2014
2115
2216
2317
2418
2519
261A
271B
281C
291D
301E
4028
5032
603C
7046
8050
905A
10064
200C8
30012C
400190
5001F4
10003E8
50001388

Comments on this page

Login or Signup to add a comment