I'm trying to add the real hexa syntax to an hexa value... For example :
First I convert a decimal value to hexa :
4480 decimal to hexa = 0x1180
following I want to convert this hexa value to this format : 0x80 0x11
What the best way to do that ? Does exist a reverse concatenate function ? in Python ?
Thanks.