Hexadecimal to Decimal Conversion Calculator
Hexadecimal numbers (base-16) are often used in computing for their concise representation of binary data. This tool lets you convert hexadecimal values into their decimal (base-10) equivalents with ease.
What is a Hexadecimal Number?
Hexadecimal is a positional number system that uses 16 digits: 0–9 and A–F. Each digit represents a power of 16.
Example: Hex
= 1×16¹ + 15×16⁰ = 31
1F
= 1×16¹ + 15×16⁰ = 31
Conversion Method
- Start from the rightmost digit.
- Multiply each digit by 16 raised to the power of its position (starting from 0).
- Add all the results to get the decimal equivalent.
Example: Convert
2×16¹ + A×16⁰ = 2×16 + 10 = 42
2A
:2×16¹ + A×16⁰ = 2×16 + 10 = 42
Hexadecimal to Decimal Table
Hex | Decimal |
---|---|
0 | 0 |
7 | 7 |
A | 10 |
C | 12 |
F | 15 |
1F | 31 |
2A | 42 |
3E | 62 |
64 | 100 |