chr({int})

Returns the UTF-8 character for integer n. Returns null if {n} is null.

Example 

This example returns the character value of 67.

1SELECT CHR(67) as "charValue"
2FROM "Superstore"
3LIMIT 1;
charValue
C