I am having some difficulty changing a hex to an int/char (char preferably). Via the website; http://home2.paulschou.net/tools/xlate/ I enter the hex of C0A80026 into the he
>>> htext='C0A80026' >>> [int(htext[i:i+2],16) for i in range(0,len(htext),2)] # [192, 168, 0, 38]