Answer: | Hex is short for hexadecimal, a base-16 counting system. It goes, "0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, 10, 11, 12, ..." In our daily life, we usually use decimal, which is base-10.
Here is a comparison:
CodeDecimal.........0.......2.......10
Hexadecimal.....0.......2.......A
Binary..........0.......10......1010
More information regarding the hexadecimal system can be found here. |
Follow Us On