What is Hex to Decimal Calculator?
Translates base-16 hexadecimal notation used in computer memory and web color codes into standard decimal and binary numbers.
How to Use This Calculator
- Enter hex string (e.g. 1A3F or FF).
- Read decimal and binary equivalents.
The Mathematical Formula & Variables
Decimal = h0*16^0 + h1*16^1 + h2*16^2 + ...
Step-by-Step Worked Example
Scenario: Hex 1A3F.
- (1*16^3) + (10*16^2) + (3*16^1) + (15*16^0) = 4,096 + 2,560 + 48 + 15 = 6,719.
Result: 6,719
Frequently Asked Questions
What values do letters A through F represent in Hex?
A=10, B=11, C=12, D=13, E=14, and F=15.