Bliverly
Início

Hex for Decimal

Translate codes like #FF into readable real numbers.

#

How to translate Hexadecimal?

Just like converting back from binary, going back from oneHex (Base 16)to Decimal (Base 10) requires multiplying each digit by the power of its position, but this time, using multiples of 16 instead of multiples of 2.

Calculating the A3 code

In the hexadecimal base, we read the codes from right to left, increasing the powers of 16:

  • Position 1 (right) is multiplied by 16⁰ (which is 1). Our digit there is \"3\". It becomes 3 x 1 =3
  • Position 2 (left) is multiplied by 16¹ (which is 16). Our digit is \"A\" (which equals 10). It becomes 10 x 16 =One Hundred Sixty

Adding 160 + 3, we getOne Hundred Sixty-Three. That’s why our calculator does this for you behind the scenes: longer codes (like IPv6 or memory addresses) would make you multiply large values of 16², 16³, 16⁴, and so on.