UNICODE: Returns the integer Unicode value of a single leftmost character in a string : UNICODE « String Functions « SQL Server / T-SQL






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>
           
       








Related examples in the same category