What is Hexadecimal?

Hexadecimal or in short hex is a base-16 number system. It uses 16 symbols 0-9 and A-F (A=10, B=11, C=12, D=13, E=14, F=15).

What is Decimal?

Decimal is our everyday base-10 number system. It uses ten digits 0 to 9.

How to Convert Hex to Decimal

  1. Multiply each digit by 16 raised to a power
  2. The power starts at 0 for the rightmost digit and increases by 1 moving left
  3. Add up all the results

This Is How To Convert "2AF" to Decimal

Hex Digit Calculation Result
F15 × 16^0 = 15 × 115
A10 × 16^1 = 10 × 16160
22 × 16^2 = 2 × 256512

Add the results: 15 + 160 + 512 = 687

Result: 2AF in hex = 687 in decimal

Another Example: "C4" to Decimal

Add the results: 4 + 192 = 196

Result: C4 in hex = 196 in decimal

Hex to Decimal Conversion Table

Hex Decimal Hex Decimal
0088
1199
22A10
33B11
44C12
55D13
66E14
77F15

Key Points