CHAR

Returns a string of one character which has an ASCII code of a specified number.

Syntax

CHAR(Value)

Value is an integer.

Example

This example returns 'a':

CHAR(97)

This example returns '1':

CHAR(49)