Syntax of UNICODE Function :
UNICODE ( 'ncharacter_expression' )
ncharacter_expression is a string of type nchar or nvarchar.
It returns an integer data type.
Examples of UNICODE Function :
Example 1 : Use of UNICODE function in select clause
SELECT UNICODE('Syntax-Example')
Output
83
Above example returns unicode value of first character 'S' from specified string.