Returns an NCHAR string containing one character whose Unicode code point is given in the parameter, or NULL if the value is not a valid code point value.
NCHAR( integer )
integer The number to be converted to the corresponding Unicode code point.
SQL/2003 Vendor extension.
The following example returns the ALEF Arabic letter, which is Unicode code point U+627:
SELECT NCHAR( 1575 );