To use this hex to decimal converter tool, type a hex value in a paired format in the hex number field above, and then click the Convert button.
You can convert up to 16 hex characters (max. value of 7fffffffffffffff) to decimal.
For example: (7fffffffffffffff)16 = (9223372036854775807)10
Use the RESET button to clear the calculator.
SWAP button will help you to switch between
Hex System
Hex or hexadecimal is a number system with a base 16. This number system is especially interesting because in the decimal number system we have only 10 digits to present the numbers. As the hex system has 16 digits, the first 6 letters of the English alphabet are used to represent extra 6 digits. So, hex digits are 0,1,2,3,4,5,6,7,8 and 9 A, B, C, D, E, F.
Decimal System
Decimal number system is also known as the Base 10 numbering system because it is based on 10 ranging symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9. In the decimal system, every digit holds its own position along with the decimal point. I.e. the number 326.34 has 4 in the Hundredths position, 3 in the Tenths position, 6 in the Unit position, 2 in the Tens position, and 3 in the Hundreds position.
Decimal number system is also one of the ancient numeral system, whose roots are in Hindu-Arabic numeral system.
Hex | Decimal | 2’s | Binary | Calculation |
0.01 | 0.00390625 | N/A | 0.00000001 | 0.01 = (0×16⁰)+(0×16⁻¹)+(1 × 16⁻²) = 0.00390625 |
0.1 | 0.0625 | N/A | 0.0001 | 0.1 = (0 × 16⁰) + (1 × 16⁻¹) = 0.0625 |
0 | 0 | N/A | 0 | 0 = (0 × 16⁰) = 0 |
1 | 1 | N/A | 1 | 1 = (1 × 16⁰) = 1 |
2 | 2 | N/A | 10 | 2 = (2 × 16⁰) = 2 |
3 | 3 | N/A | 11 | 3 = (3 × 16⁰) = 3 |
4 | 4 | N/A | 100 | 4 = (4 × 16⁰) = 4 |
5 | 5 | N/A | 101 | 5 = (5 × 16⁰) = 5 |
10 | 16 | 16 | 10000 | 10 = (1 × 16¹) + (0 × 16⁰) = 16 |
99 | 153 | -103 | 10011001 | 99 = (9 × 16¹) + (9 × 16⁰) = 153 |
100 | 256 | N/A | 100000000 | 100 = (1×16²)+(0×16¹)+(0×16⁰) = 256 |
999 | 2457 | N/A | 100110011001 | 999 = (9×16²)+(9×16¹)+(9×16⁰) = 2457 |
1000 | 4096 | 4096 | 1000000000000 | 1000 = (1×16³)+(0×16²)+(0×16¹)+(0×16⁰) = 4096 |