CHAR#
Converts an int ASCII code to a character.
Syntax#
CHAR ( integer_expression )
Arguments#
index
Is an integer from 0 through 255. NULL is returned if the integer expression is not in this range.
Return types#
char(1)
Examples#
SELECT CHAR(10) as lf;