CHAR(number)

The CHAR function returns the character specified by the code number. This is used to convert codes from other types of computers to characters. number is from 1 to 255, each number representing an ASCII character.

For example:

CHAR(37)  returns "%"

CHAR(57)  returns "9"

See also:

Other text functions