~/hex-to-decimal 200 OK

Last updated: 2026-06-19

Hexadecimal to Decimal Converter

Convert any hex value to a base-10 number instantly.

A hexadecimal to decimal converter turns base-16 values (0–9 and A–F) into the base-10 numbers we use every day. Hex is common in code, color values, and memory addresses; converting it to decimal makes the underlying value easy to read. Enter a hex value below — the # prefix is optional.

How to convert hexadecimal to decimal

  1. Type or paste your hexadecimal value into the Hexadecimal field (the # is optional).
  2. The decimal result appears instantly in the Decimal field.
  3. Use the copy button to grab the result.

Worked example: FF in decimal

FF means (15 × 16) + 15 = 255. Each position is a power of 16: the rightmost digit is 16^0, the next is 16^1, and so on.

Reference table

Common hexadecimal to decimal values
HexadecimalDecimalBinary
000
111
881000
a101010
f151111
101610000
2032100000
40641000000
8012810000000
ff25511111111
100256100000000
400102410000000000

Frequently asked questions

How do I convert hexadecimal to decimal?
Multiply each hex digit by 16 raised to its position (starting at 0 on the right) and add the results. This tool does it instantly.
What is FF in decimal?
FF in decimal is 255.
Do I need to include the # symbol?
No. The # prefix is optional — both FF and #FF convert to 255.
Is hexadecimal the same as base 16?
Yes. Hexadecimal is base 16, using the digits 0–9 and the letters A–F for the values 10–15.

Related tools

Learn more