bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL Server NCHAR() Function

Example

SELECT NCHAR(65) AS NumberCodeToUnicode;

Definition and Usage

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

Syntax

NCHAR(
number_code
)

Parameter Values

ParameterDescription
number_codeRequired. The number code in the Unicode standard to return the character for

Technical Details

Works in:SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse

Previous

SQL Server LTRIM() Function

Next

SQL Server PATINDEX() Function