ComputingRevision.net

Denary to Hexadecimal Conversion

Converting denary (base-10) numbers to hexadecimal (base-16) is an essential skill, and a guaranteed exam question!

Denary numbers are 0 – 9.
Hexadecimal numbers are 0 – 15, with numbers after 9 represented by letters A – F.


The easiest method is to use binary as a middle step. Let's go through the process and convert this decimal number to hexadecimal…

186

Step 1: Convert Denary to Binary

Convert the denary number 186 into an 8-bit binary number.

128 64 32 16 8 4 2 1
10111010

186 = 128 + 32 + 16 + 8 + 2


Step 2: Split into Nibbles

Split the 8-bit binary number into two 4-bit binary numbers.

Remember to re-number the binary columns for the first nibble.

8 4 2 1   8 4 2 1
1011 1010

Step 4: Convert each Nibble to Denary

Convert each binary nibble into denary.

8 4 2 1
1011

= 11

8 4 2 1
1010

= 10


Step 5: Convert each Denary Digit to Hexadecimal

Convert each denary number to its hexadecimal equivalient.

Denary numbers 10–15 are equivalent to hexadecimal numbers A–F.

11=B

11 in denary is equivalent to B in hexadecimal.

10=A

10 in denary is equivalent to A in hexadecimal.


Step 6: Combine the Digits

Bring the two separate hexadecimal values together, and the conversion is complete!

B A
 
BA

The answer

We have now converted 18610 to BA16.