Converts a single-byte integer value to a character value (char is usually used as the inverse of ascii), returning the character equivalent of an integer.
char(integer_expr)
select char(42)
- *
select xxx = char(65)
xxx --- A
ANSI SQL – Compliance level: Transact-SQL extension.
Any user can execute char.