Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for example:
hex(x)
>>> hex(255) '0xff' >>> hex(-42) '-0x2a'