Hexadecimal to Decimal Converter
To use this online hex to decimal converter tool, type a hex value like 1E into the left field below, and then hit the Convert button. You can convert up to 16 hex characters (max. value of 7fffffffffffffff) to decimal.
Hex to decimal conversion result in base numbersHow to Calculate Hexadecimal to Decimal
Hex is a base 16 number and decimal is a base 10 number. We need to know the decimal equivalent of every hex number digit.
See below of the page to check the hex to decimal chart.
Here are the steps to convert hex to decimal:
- Get the decimal equivalent of hex from table.
- Multiply every digit with 16 power of digit location.
(zero based, 7DE: E location is 0, D location is 1 and the 7 location is 2) - Sum all the multipliers.
7DE is a hex number 7DE = (7 * 162) + (13 * 161) + (14 * 160) 7DE = (7 * 256) + (13 * 16) + (14 * 1) 7DE = 1792 + 208 + 14 7DE = 2014 (in decimal number)
Hexadecimal System (Hex System)
The hexadecimal system (shortly hex), uses the number 16 as its base (radix). As a base-16 numeral system, it uses 16 symbols. These are the 10 decimal digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) and the first six letters of the English alphabet (A, B, C, D, E, F). The letters are used because of the need to represent the values 10, 11, 12, 13, 14 and 15 each in one single symbol.
Hex is used in mathematics and information technologies as a more friendly way to represent binary numbers. Each hex digit represents four binary digits; therefore, hex is a language to write binary in an abbreviated form.
Four binary digits (also called nibbles) make up half a byte. This means one byte can carry binary values from 0000 0000 to 1111 1111. In hex, these can be represented in a friendlier fashion, ranging from 00 to FF.
In html programming, colors can be represented by a 6-digit hexadecimal number: FFFFFF represents white whereas 000000 represents black.
Decimal System
The decimal numeral system is the most commonly used and the standard system in daily life. It uses the number 10 as its base (radix). Therefore, it has 10 symbols: The numbers from 0 to 9; namely 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.
As one of the oldest known numeral systems, the decimal numeral system has been used by many ancient civilizations. The difficulty of representing very large numbers in the decimal system was overcome by the Hindu–Arabic numeral system. The Hindu-Arabic numeral system gives positions to the digits in a number and this method works by using powers of the base 10; digits are raised to the nth power, in accordance with their position.
For instance, take the number 2345.67 in the decimal system:
- The digit 5 is in the position of ones (100, which equals 1),
- 4 is in the position of tens (101)
- 3 is in the position of hundreds (102)
- 2 is in the position of thousands (103)
- Meanwhile, the digit 6 after the decimal point is in the tenths (1/10, which is 10-1) and 7 is in the hundredths (1/100, which is 10-2) position
- Thus, the number 2345.67 can also be represented as follows: (2 * 103) + (3 * 102) + (4 * 101) + (5 * 100) + (6 * 10-1) + (7 * 10-2)
Hex to decimal conversion examples
- (1D9)16 = (473)10
- (80E1)16 = (32993)10
- (10CE)16 = (4302)10
Hexadecimal to Decimal Conversion Chart
Hexadecimal | Decimal |
---|---|
1 | 1 |
2 | 2 |
3 | 3 |
4 | 4 |
5 | 5 |
6 | 6 |
7 | 7 |
8 | 8 |
9 | 9 |
A | 10 |
B | 11 |
C | 12 |
D | 13 |
E | 14 |
F | 15 |
10 | 16 |
11 | 17 |
12 | 18 |
13 | 19 |
14 | 20 |
15 | 21 |
16 | 22 |
17 | 23 |
18 | 24 |
19 | 25 |
1A | 26 |
1B | 27 |
1C | 28 |
1D | 29 |
1E | 30 |
1F | 31 |
20 | 32 |
21 | 33 |
22 | 34 |
23 | 35 |
24 | 36 |
25 | 37 |
26 | 38 |
27 | 39 |
28 | 40 |
29 | 41 |
2A | 42 |
2B | 43 |
2C | 44 |
2D | 45 |
2E | 46 |
2F | 47 |
30 | 48 |
31 | 49 |
32 | 50 |
33 | 51 |
34 | 52 |
35 | 53 |
36 | 54 |
37 | 55 |
38 | 56 |
39 | 57 |
3A | 58 |
3B | 59 |
3C | 60 |
3D | 61 |
3E | 62 |
3F | 63 |
40 | 64 |
Hexadecimal | Decimal |
---|---|
41 | 65 |
42 | 66 |
43 | 67 |
44 | 68 |
45 | 69 |
46 | 70 |
47 | 71 |
48 | 72 |
49 | 73 |
4A | 74 |
4B | 75 |
4C | 76 |
4D | 77 |
4E | 78 |
4F | 79 |
50 | 80 |
51 | 81 |
52 | 82 |
53 | 83 |
54 | 84 |
55 | 85 |
56 | 86 |
57 | 87 |
58 | 88 |
59 | 89 |
5A | 90 |
5B | 91 |
5C | 92 |
5D | 93 |
5E | 94 |
5F | 95 |
60 | 96 |
61 | 97 |
62 | 98 |
63 | 99 |
64 | 100 |
65 | 101 |
66 | 102 |
67 | 103 |
68 | 104 |
69 | 105 |
6A | 106 |
6B | 107 |
6C | 108 |
6D | 109 |
6E | 110 |
6F | 111 |
70 | 112 |
71 | 113 |
72 | 114 |
73 | 115 |
74 | 116 |
75 | 117 |
76 | 118 |
77 | 119 |
78 | 120 |
79 | 121 |
7A | 122 |
7B | 123 |
7C | 124 |
7D | 125 |
7E | 126 |
7F | 127 |
80 | 128 |
Hexadecimal | Decimal |
---|---|
81 | 129 |
82 | 130 |
83 | 131 |
84 | 132 |
85 | 133 |
86 | 134 |
87 | 135 |
88 | 136 |
89 | 137 |
8A | 138 |
8B | 139 |
8C | 140 |
8D | 141 |
8E | 142 |
8F | 143 |
90 | 144 |
91 | 145 |
92 | 146 |
93 | 147 |
94 | 148 |
95 | 149 |
96 | 150 |
97 | 151 |
98 | 152 |
99 | 153 |
9A | 154 |
9B | 155 |
9C | 156 |
9D | 157 |
9E | 158 |
9F | 159 |
A0 | 160 |
A1 | 161 |
A2 | 162 |
A3 | 163 |
A4 | 164 |
A5 | 165 |
A6 | 166 |
A7 | 167 |
A8 | 168 |
A9 | 169 |
AA | 170 |
AB | 171 |
AC | 172 |
AD | 173 |
AE | 174 |
AF | 175 |
B0 | 176 |
B1 | 177 |
B2 | 178 |
B3 | 179 |
B4 | 180 |
B5 | 181 |
B6 | 182 |
B7 | 183 |
B8 | 184 |
B9 | 185 |
BA | 186 |
BB | 187 |
BC | 188 |
BD | 189 |
BE | 190 |
BF | 191 |
C0 | 192 |
Hexadecimal | Decimal |
---|---|
C1 | 193 |
C2 | 194 |
C3 | 195 |
C4 | 196 |
C5 | 197 |
C6 | 198 |
C7 | 199 |
C8 | 200 |
C9 | 201 |
CA | 202 |
CB | 203 |
CC | 204 |
CD | 205 |
CE | 206 |
CF | 207 |
D0 | 208 |
D1 | 209 |
D2 | 210 |
D3 | 211 |
D4 | 212 |
D5 | 213 |
D6 | 214 |
D7 | 215 |
D8 | 216 |
D9 | 217 |
DA | 218 |
DB | 219 |
DC | 220 |
DD | 221 |
DE | 222 |
DF | 223 |
E0 | 224 |
E1 | 225 |
E2 | 226 |
E3 | 227 |
E4 | 228 |
E5 | 229 |
E6 | 230 |
E7 | 231 |
E8 | 232 |
E9 | 233 |
EA | 234 |
EB | 235 |
EC | 236 |
ED | 237 |
EE | 238 |
EF | 239 |
F0 | 240 |
F1 | 241 |
F2 | 242 |
F3 | 243 |
F4 | 244 |
F5 | 245 |
F6 | 246 |
F7 | 247 |
F8 | 248 |
F9 | 249 |
FA | 250 |
FB | 251 |
FC | 252 |
FD | 253 |
FE | 254 |
FF | 255 |
Recent Comments
Actually, I didn’t have any ideas on how to solve questions like these before. But now, I can solve any question and provide answers on this topic. Thank you so much!
Great tool to explain to students and teach HEX counting.
EXCELLENT SITE!
Thanx I helped an I am so glad that I found this website
helps with wireshark ports
THIS IS EXCELLENT WORK
Very good site for cheating
Very usefull. You'ld make the same as standalone (more convenient!)
Thanks a lot!
Amazing, thank you.
very useful and helpful site,keep on walking, cheers !!!
Do you know what is the following thing: 27A708891C53E6140DAB3D2BEF ?
It is π (Pi) - you just need to move the decimal point. :-)
A nice project. Extremely helpful !
Very helpful to make my assignment
Thanks I couldn’t really calculate the decimal equivalent of a number on the bus
Replying to Apagador: Decimal here means the decimal number system aka number system of base 10. It doesn't mean numbers with a decimal point. In computers the decimal point is called floating point and float type numbers (numbers with decimal point which you are talking about) can only be converted in floating point notation.
The usual assumed notation is not floating point and this site doesn't claim to use floating point notation
Hope that clears it :D
Thank you! you made me understand Hex and decimal even more.
Thank you. Your site helped me confirm an error in calculation in my text book.
Thanks a lot sir i am searching every where but you have given the best convertion in overall google website thank you so much
Thanks a lot! Helped with my confusion a lot!!!
Thanks ! Nice tool, helped me to understand windows power plan.