Hexadecimal to Decimal Converter

Convert hexadecimal system to decimal system with this online converter.

How to convert Hexadecimal to Decimal

Converting a hexadecimal number from Hexadecimal system to Decimal system we need to convert decimal (base-10) value corresponding for each digit of hexadecimal number from rigth to left.

HexadecimalDecimal
00
11
22
33
44
55
66
77
88
99
A10
B11
C12
D13
E14
F15

Multiply each decimal to positional value power of 16.

Sum of the values.

Let's see an example. Hexadecimal number is 3A7 :

  • 7 is 7 in decimal
  • A is 10 in decimal
  • 3 is 3 in decimal
  • Assign positional values from right to left
  • 7 (16^0)
  • A (16^1)
  • 3 (16^2)
  • Multiply each digit by its positional value:
  • 7 * 1 = 7
  • 10 * 16 = 160
  • 3 * 256 = 768
  • Sum of the values : 7 + 160 + 768 = 935

The hexadecimal number 3A7 is equivalent to the decimal number 935.