Hex to Decimal

Tool processing runs in your browser — your pastes/files are not uploaded to our servers for processing. Ads (if shown) load separately and do not receive your tool inputs.Advertising · Details

Quick answer

To convert hexadecimal to decimal, multiply each hex digit (A=10 … F=15) by powers of 16 and add them up — for example FF = 255. TryDevSnip's converter does it instantly and exactly, even for very large values, all in your browser.

Hex to decimal chart

HexDecimal
11
88
A10
F15
1016
1F31
80128
FF255
100256
FFFF65535

Reverse or related: decimal to hex · binary to decimal · decimal to binary · all bases

Worked example: 0xFF

Every positional number system works the same way — each digit is multiplied by the base raised to its position, counting from zero on the right. For 0xFF in hexadecimal:

DigitPlaceWeightContribution
F16116240
F160115
Total (decimal)255

Written in decimal that is 255.

Quick reference

Decimalhexadecimaldecimal
111
222
444
888
10A10
161016
322032
644064
10064100
12880128
255FF255
256100256

Things that trip people up

Frequently asked questions

How do I convert hex to decimal?

Read each hex digit as its value (A=10 … F=15) and multiply by powers of 16, right to left. For example FF = 15×16 + 15 = 255. Or paste it into the converter and read the decimal instantly.

What is FF in decimal?

FF (hexadecimal) is 255 in decimal — the largest value in a single byte (8 bits).

Does hex to decimal work for very large values?

Yes. The converter uses BigInt, so long hex strings (memory addresses, hashes) convert to exact decimals without rounding.

Is my input uploaded?

No. TryDevSnip converts locally in your browser. Nothing you type is uploaded to our servers for processing.

TryDevSnip