NumToChar- Converts the Unicode code into its character
Function that converts the Unicode code passed as parameter in the relative string character.
- NumToChar(N): string
Parameters:
- (int) N: Unicode code to be converted into the corresponding character. N ranges from 0 to 65535.
Description:
Use the NumToChar function to convert the Unicode N code into its string character.
Examples:
// Stores in variable S the character B, corresponding to Unicode code 66
S = NumToChar(66)
MsgBox(S)