According to Wikipedia:
In mathematics and computing, hexadecimal (also base 16, or hex) is a positional system that represents numbers using a base of 16. Unlike the common way of representing numbers with ten symbols, it uses sixteen distinct symbols, most often the symbols "0"–"9" to represent values zero to nine, and "A"–"F" (or alternatively "a"–"f") to represent values ten to fifteen.
Using two of those symbols you can get 256 numbers out of it. The largest number would be represented as FF.
If I wanted to represent a much larger number could I use base 36 or ZZ? If this is possible why hasn't this been used before?
More info:
I'm in a scenario where I'm indexing items with unique IDs and I'd like to be able to represent around 1000-10000 items on average and if I can I'd like to use two symbols.
Also, where do web colors fit into this?
White is represented as #FFFFFF. That being full red (FF) full blue (FF) full green (FF). Is that easier to read than using a different base encoding?