BinaryCon Binary Converter

Hexadecimal → Decimal

Result

About this tool

Convert hexadecimal (base-16) strings to decimal (base-10). Useful when reading memory addresses or color codes.

Example

Input: 1A
Output: 26

Common mistakes

  • Do not include `0x` prefix; if present, remove it first.

Conversion

Hex → Decimal: Value = Σ (hex_digit_value × 16^i) for i = 0..n (rightmost digit i=0).
Example: 1A → 1×16 + 10 = 26