NCHAR: To return extended characters : NCHAR « String Functions « SQL Server / T-SQL






NCHAR: To return extended characters




-- To return extended characters, I'll execute the NCHAR() function with sample 
-- character codes:

SELECT NCHAR(220)
GO

SELECT NCHAR(233)
GO

SELECT NCHAR(241)
GO


           
       








Related examples in the same category

1.NCHAR: Returns a Unicode character representing the number passed as a parameter