When looking at a hex representation of an integer in python, the following
appears:
>>> hex(7651)
'0x1de3'
How does this storage system work?
1. Convert the integer into its binary representation:
7651 = 0x1110111100011
2. Split the binary into 4-bit blocks:
1
1101
1110
0011
3. Convert each of these 4-bit