CalcuClubCalcuClub Logo

Hexadecimal to Decimal Converter

Enter the hexadecimal number you want to convert to decimal.

The result will be displayed here.
Calculation Steps:
Calculation steps will be displayed here.

Table of Contents

How does hexadecimal to decimal conversion work?

The hexadecimal system is base 16 and the decimal system is base 10. To convert a hexadecimal number to decimal, multiply each hexadecimal digit by the corresponding power of 16 (starting from the right with 160) and add the results. The digits A, B, C, D, E, and F represent the values 10 to 15 in decimal.

Hexadecimal to decimal conversion formula

For a hexadecimal number with n digits:

N = h0·160 + h1·161 + h2·162 + … + hn·16n

Where hi is each hexadecimal digit (0–9 or A–F) in position i, and each one is multiplied by 16i. The sum of all the products gives the equivalent decimal value.

Conversion process

  1. Write the hexadecimal number and assign powers of 16 to each digit (160 on the right).
  2. Convert the letters A–F to their numeric values (A=10, B=11, C=12, D=13, E=14, F=15).
  3. Multiply each digit by its corresponding power of 16.
  4. Add all the results to get the final decimal value.

Examples

Example 1: convert 1A₁₆ to decimal
Hex digitDecimal valuePower of 16Product
A10160 = 110 × 1 = 10
11161 = 161 × 16 = 16

Total sum: 16 + 10 = 26.

Result: 1A₁₆ = 26₁₀.

Example 2: convert 2F₁₆ to decimal
Hex digitDecimal valuePower of 16Product
F15160 = 115 × 1 = 15
22161 = 162 × 16 = 32

Total sum: 32 + 15 = 47.

Result: 2F₁₆ = 47₁₀.

Hexadecimal to decimal conversion table

Quick reference values for short hexadecimal numbers.

Hexadecimal (base 16) to Decimal (base 10) Reference
HexadecimalDecimal
00
11
22
33
44
55
66
77
88
99
A10
B11
C12
D13
E14
F15
1016
1F31
FF255
100256

Frequently Asked Questions

How do you convert a hexadecimal number to decimal?

To convert a hexadecimal number to decimal, multiply each digit by a power of 16 according to its position (starting from the right with 16⁰) and add the results. The letters A–F represent the values 10–15.

What value does the letter F have in the decimal system?

In the decimal system, the letter F equals 15.

How was this page? Share feedback.