Hexadecimal to decimal converter

Find the decimal equivalent of the hexadecimal string, hex -> number.

Swap

Hexadecimal is a numeral system that is often represented as "hex". It consists of 16 symbols - base 16.

The Hexadecimal numeral system uses decimal numbers and additional six symbols. These six symbols include: A, B, C, D, E and F.

Where A = 10, B = 11, C = 12, D = 13, E = 14, and F = 15.

How to convert hex to decimal

Let's see on example and convert 0433BF to decimal number:

0433BF =
0 * 165 + 4 * 164 + 3 * 163 + 3 * 162 + 11 * 161 + 15 * 160 =
0 + 262144 + 12288‬ + 768‬ + 176 + 15 = 275 391‬

Hex to decimal conversion table

Hex (base 16)

Decimal (base 10)

  • 1

    1

  • 2

    2

  • 3

    3

  • 4

    4

  • 5

    5

  • 6

    6

  • 7

    7

  • 8

    8

  • 9

    9

  • A

    10

  • B

    11

  • C

    12

  • D

    13

  • E

    14

  • F

    15