Decimal To Hexadecimal Converter

10
16

Converting Steps of Decimal to Hexadecimal:


How to convert a decimal number to the hexadecimal number?

Converting decimal to hexadecimal is also super easy. As we are converting decimal to hexadecimal, we have to divide the integer part by 16 and every times we need to take the remainder in reverse order. You must remember if it has a fractional part, we have to multiply by 16 and take only integer part serially until fractional part become 0. An example given below how to convert a fractional decimal number to hexadecimal number:

Decimal to Hexadecimal Conversion

Example of decimal to hexadecimal conversion:

(398.375)10 = (?)16

For 398:

Divided by 16 Quotient Remainder Flow
398 / 16 24 14 or E
24 / 16 1 8
1 / 16 0 1

For .376:

Multiply by 16 Result Non-Fractional Part Flow
.376 * 16 6.00 6

Result is = (18E.6)16


Decimal to binary conversion table:

Decimal Hexadecimal
0 0
1 1
2 2
33
44
55
66
77
88
99
10A
11B
12C
13D
14E
15F
1610
1711
1812
1913
2014