I want to take an integer (that will be <= 255), to a hex string representation
e.g.: I want to pass in 65 and get out \'\\x41\', or
65
\'\\x41\'
This will convert an integer to a 2 digit hex string with the 0x prefix:
strHex = "0x%0.2X" % 255