My sms gateway save message data in log(MSSQL) in Hex code, like this:
0046003A0062006F006B0040007700650062006D0065006400690061002E0070006C
These are Unicode message (16 bits per characters)
Each 4 characters is AsciiHex representation of a character (in hex):
For example:
“0046” = 46hex = ‘F’
“003A” = 3Ahex = ‘:’
how can I convert this in ColdFusion to other format?
Adam