Skip to main content

Popular Conversion

Convert Hexadecimal to Decimal

Convert hexadecimal (base 16) strings to decimal integers with letters A–F for digit values 10–15. For color bytes, addresses, and debugging.

Convert hex to decimal

Enter a non-negative integer using only valid digits for hexadecimal (base 16), or open decimal → hex on its own page.

,

Method: Interpret digits in base 16, expand to one exact integer (decimal internally), then rewrite in base 10 using BigInt, same as the full numbers converter.

What this conversion means in practice

You already have values in Hexadecimal (hex) and need Decimal (decimal) for the same material, drawing, or dataset. The factor below is the exact reciprocal of the forward direction; use it when sources quote the “other” unit first.

Hex is compact for bytes and addresses; decimal is easier for mental magnitude. Converting hex strings to decimal answers “how big is this color/component ID really?”

Letters A–F continue the digit sequence after nine; validation rejects out-of-range symbols before conversion.

Case does not matter: mixed A–F and a–f work the same.

Mnemonic: FF₁₆ = 255₁₀; DEAD₁₆ → decimal via expand-and-sum.

How to convert hexadecimal to decimal

Treat your input strictly as a base-16 integer: only digits valid for that base are allowed. The tool converts to an exact integer, then prints it in base 10.

Live example: 1610

Unlike unit conversions with a single scale factor, radix conversion rebuilds the digit sequence. The “expand to decimal, then divide out the target base” algorithm matches what you learn in CS, automated here for any size.

Hexadecimal

Definition: Base 16: digits 0–9 plus A–F for ten through fifteen. One hex digit represents exactly four bits.

History and origin: Adopted widely in computing to shorten binary strings while preserving bit alignment.

Current use: Memory addresses, RGB colors (#RRGGBB), UUIDs, hashes, and debug output.

Decimal

Definition: Base 10: the everyday positional system using digits 0–9.

History and origin: Linked to counting on ten fingers; dominant globally for human-facing arithmetic.

Current use: General arithmetic, finance, and human-readable magnitudes before re-encoding to other bases.

Hexadecimal to Decimal conversion table

Hexadecimal (base 16)Decimal (base 10)
00
11
A10
FF255
2A42
100256
FFF4095
DEAD57005

Hexadecimal to Decimal FAQ

Quick answers for Hexadecimal-to-Decimal rounding (reverse workflow), precision, and common mistakes.

Is hex case-sensitive?

No for input; output uses uppercase by convention.

Do I include 0x?

Strip language prefixes; enter only hex digits.

How is this different from the hex calculator?

This page only changes radix; the hex calculator does arithmetic in hex.

Popular numbers unit conversions