Hexadecimal refers to a base-16 number system, which consists of 16 unique symbols, in contrast to the decimal number system (of 10 distinct symbols) or the binary number system (of 2 distinct symbols).
These symbols (and their corresponding binary and decimal numbers) are as follows:
Binary Hex. 0 0000 0 1 0001 1 2 0010 2 3 0011 3 4 0100 4 5 0101 5 6 0110 6 7 0111 7 8 1000 8 9 1001 9 10 1010 A 11 1011 B 12 1100 C 13 1101 D 14 1110 E 15 1111 FThe hexadecimal system is commonly used by programmers to describe locations in memory. Like the memory address 10011011 can be converted to hexadecimal as: 1001 1011 => 9B. Of course, it is much easier for humans to read.
This was Hexadecimal, and next, we will see 'base64' - a text-to-binary encoding scheme that converts binary data to an ASCII-like string, using 64 characters.
Bye till then.
:-)
Post-13 Ended.