Successively divide and keep track of the remainder, and then reverse the place value
f
)1
)How To Convert Hexadecimal to Decimal
Write out the powers of the base from least to most significant bit, and sum the products of the bits and powers
i.e., $AB09_{16} → 43785_{10}$
Hex number: | A | B | 0 | 9 |
---|---|---|---|---|
Place in base | 10 | 11 | 0 | 9 |
Power of base | $16^3$ | $16^2$ | $16^1$ | $16^0$ |
Product, then sum $\downarrow$ | 40960 | 2816 | 0 | 9 |
= 43785 |