Converts a numeric ASCII value to a one-character string containing the corresponding character.
Both of the following will return the string "A":
string1 = charToString('A'); string2 = charToString(65);