NCHAR function [String]

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.

Syntax
NCHAR( integer )
Parameters
  • integer   The number to be converted to the corresponding Unicode code point.

Returns

NVARCHAR

See also
Standards and compatibility
  • SQL/2003   Vendor extension.

Example

The following example returns the ALEF Arabic letter, which is Unicode code point U+627:

SELECT NCHAR( 1575 );