UNICODE (SQL Server Compact)

Returns the integer value, as defined by the Unicode standard, for the first character of the input expression.

Syntax

UNICODE ( 'ncharacter_expression' ) 

Arguments

  • 'ncharacter_expression'
    An expression whose type can be implicitly converted to nvarchar or ntext.

Return Value

int

Example

The following example returns the names of the companies together with the integer value, as defined by the Unicode standard, for the first character of each company name.

SELECT [Company Name], UNICODE([Company Name]) AS  Expr1
FROM Customers
ORDER BY [Company Name]