Hex to Decimal Converter
Enter a hexadecimal number to instantly get its decimal, binary, and octal equivalents.
Last updated: May 30, 2026
Find this tool useful? Support the project to keep it free!
Buy me a coffeeWhat is Hex to Decimal Converter?
Hexadecimal (base 16) is the number system most commonly used by developers to represent binary data in a compact, human-readable form. It uses digits 0–9 and letters A–F, where A = 10, B = 11, ..., F = 15.
To convert hex to decimal, multiply each digit by 16 raised to its positional power (starting from the right at 0) and sum the results. For example, 1A3: - 1 × 16² = 256 - A (10) × 16¹ = 160 - 3 × 16⁰ = 3 Total: 256 + 160 + 3 = 419
How to Use Hex to Decimal Converter
Type or paste a hexadecimal value in the input field (with or without the 0x prefix).
The decimal, binary, and octal outputs update in real time.
Click any copy button to copy the result to your clipboard.
Click "Load Sample" to see an example.
Common Use Cases
- Converting hex color codes to decimal RGB component values.
- Reading memory addresses in debuggers and converting them to decimal offsets.
- Interpreting hex values in web API responses or database hex-encoded fields.
- Number system coursework and CompTIA/CCNA certification preparation.
Example Input and Output
The hex value 1F4 converts to decimal 500 (256 + 15×16 + 4).
1F4500Data Privacy
All conversions run entirely in your browser. No data is sent to any external server.

