SQL Server/T-SQL/String Functions/UNICODE
UNICODE: Returns the integer Unicode value of a single leftmost character in a string
1> -- UNICODE: Returns the integer Unicode value of a single leftmost character in a string
2>
3> SELECT UNICODE("Bedford Blues")
4> GO
-----------
66
(1 rows affected)
1>