Hexadecimal numbers use digits 0–9 and letters A–F to represent values in a base-16 counting system, where each column carries over at multiples of 16. Visualizing this with an interactive odometer tool makes the counting patterns behind hex easier to recognize and understand.
Hexadecimal Numbers
When we were looking into binary numbers, we also looked at what a binary odometer looked like. Let's do the same thing for hexadecimal numbers.
When I showed you the binary odometer, I just typed in "binary odometer" and a couple of great sources popped up. I showed you the one from GitHub, where we talked about base 10, we talked about binary and what a binary number looks like, and the binary odometer. On the same page it has an octal, which is a base 8, and the hexadecimal, which is a base 16.
With this hexadecimal number, you can see that I have ABCD already up here, and I can increment the value. What happens is that it starts out at zero and counts its way up: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. Then, because you can't have 10 — you can't have two digits here — it's got to be represented by a single character, and it's represented by A. So A equals 10 in this case right here. Then B, C, D, E, F.
Once we get to F, there is no next character after that in hexadecimal, because F is the equivalent of 15, and so we need to reset this column. We reset the ones and it carries over into the 16 column here. Then we say the same thing: we can count up until we get to EF, and then the next one carries over into the 16. You can see the same thing happening as what we saw before. And there I just cycled it over and it carried it over to the 256.
That other site that we looked at does the same thing. It has the binary counter, the base 8 here, the decimal which is base 10, and the hexadecimal which is base 16. Or you could even create a custom one here, so you can adjust this to whatever you want to adjust it to and see how it interplays. What's nice about this one as well is that it actually can speed up, so you can see what happens, or you could slow it down.
I'd recommend looking at these sites and just seeing what the patterns look like. Once you see those patterns, it's going to be easier to understand binary numbers and hexadecimal numbers.
TechKnowSurge builds IT and cybersecurity professionals through hands-on, concept-first training built around real understanding — not memorization. Free interactive tools, structured programs, and 25+ years of real-world experience, all in one place.
Explore free tools and programs →