Converting hexadecimal (base-16) numbers to denary (base-10) 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 hexadecimal number to denary…
| 2 | D |
Step 1: Split the Bits
Split the two hexadecimal numbers into single digits.
| 2 | D |
| 2 | D |
Step 2: Convert Digits to Denary
Convert each digit to denary.
For numbers 0 – 9, it will be the same. For numbers A – F, use 10 – 15.
| 2 | = | 2 |
2 less than 10, so it is the same in hexadecimal and denary.
| D | = | 13 |
D in hex is equivalent to 13 in denary.
Step 3: Convert to Binary Nibbles
Convert each denary digit into a nibble (a four-bit binary number).
2 =
| 8 | 4 | 2 | 1 |
|---|---|---|---|
| 0 | 0 | 1 | 0 |
13 =
| 8 | 4 | 2 | 1 |
|---|---|---|---|
| 1 | 1 | 0 | 1 |
Step 4: Join into a Byte
Put our two binary nibbles together to create one byte.
Remember to re-number the binary columns for the first nibble.
| 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | |
|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
Step 5: Convert Binary to Denary
Finally, convert the whole binary byte into a decimal number.
| 128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
|---|---|---|---|---|---|---|---|
| 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
32 + 8 + 4 + 1 = 45
The answer
We have now converted 2D16 to 4510.