1> --CHAR: the reverse of the ASCII function as it changes a numeric value in to an ASCII character.2>3> DECLARE @ASCII_VALUE INT4> SET @ASCII_VALUE = 825> SELECT CHAR(@ASCII_VALUE)6>7> GO-R(1 rows affected)1>