Brain Dump

Hexal

Tags
comp-sci

Is a number notation using base-16 with digits [0-9] matching base-10 and the letters [A-F] representing the remaining [10-16] values.

Table 1: Association between hex digits and their equivalent decimal values.
0123456789ABCDEF
0123456789101112131415

For example the hex number 1F is \( 1 \times {16}^1 + 15 \times 16^0 = 16 \).