ixUnicodeHexToChar -- Converts a hex value to its byte value.
void ixUnicodeHexToChar(UCharT *Char, UCharT *Hex)
Char -- A pointer to a character (at least two bytes in size).
Hex -- A pointer to the four bytes which have the hex value for the character.
Nothing
ixUnicodeHexToChar converts four hex characters into a two bytes of corresponding value. So, for example if you pass a pointer to the hexadecimal characters "0043", the two bytes pointed to by Char will be converted to the Unicode character "C".