home

Scientific Computing (Psychology 9040a)

Fall, 2021

Hexadecimal message


A message was converted into a hexadecimal code:

4C 65 74 20 74 68 65 20 68 61 63 6B 69 6E 67 20 62 65 67 69 6E 21

Each of the 22 two-digit hexadecimal values above (e.g. 4C) represents an 8-bit value that corresponds to an ASCII character.

To decode the message, convert each of the 22 hexadecimal values above into the corresponding 22 ASCII characters.

A nudge to get you started: the hexadecimal value 4C (which corresponds to the decimal value 76) represents the ASCII character L.

L  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _  _ 

sample solution