SQL NCHAR Function

Example

Return the Unicode character based on the number code 65:

SELECT NCHAR(65) AS NumberCodeToUnicode;

Definition and Usage

The NCHAR() function returns the Unicode character based on the number code.

Syntax

NCHAR(number_code)

Continue reading SQL NCHAR Function