I'm a little confused here:
I'm trying to reverse engineer the ASCII value 65. In the book I am reading it says:
Decimal: 65
Hex: 41
Octal: 101
But 65 in its binary representation is:
0010 0001
And 0010
in hex is 2, while 0001
is 1, which indicates that the hex value "should" be: 21.
Where did I go wrong?