Decimal to Hexadecimal

Yeah, this one will probably go unanswered.
But I need to transform a number like 16191 to hexadecimal 3F3F.
But since GE does not support hexadecimal, I tough I could store each byte into an array of 4 char, so it would come out as:
so, its basically to convert 16191 to 00|00|63|63
anyone can tell me how to do this?
Fuzzy tried to help me, but I have no idea what and how to do what he told me to :\
But I need to transform a number like 16191 to hexadecimal 3F3F.
But since GE does not support hexadecimal, I tough I could store each byte into an array of 4 char, so it would come out as:
- Code: Select all
[0] [1] [2] [3]
00 00 63 63
so, its basically to convert 16191 to 00|00|63|63
anyone can tell me how to do this?
Fuzzy tried to help me, but I have no idea what and how to do what he told me to :\