The ASCII value a has an integer value of 97 and a Hex value of 61
Going between its integer value of 97and ASCII representation (with ord and chr) is easy, however, I would like to convert the string to a bytes object with its hex value of 61 I think this would look like b'a' or bx\67
Additionally, how can I then convert the bytes object back into the integer value?
bytes('a','ASCII')?