| title | CODEPOINT (SSIS Expression) | ||
|---|---|---|---|
| description | CODEPOINT (SSIS Expression) | ||
| author | chugugrace | ||
| ms.author | chugu | ||
| ms.date | 03/01/2017 | ||
| ms.service | sql | ||
| ms.subservice | integration-services | ||
| ms.topic | concept-article | ||
| helpviewer_keywords |
|
[!INCLUDEsqlserver-ssis]
Returns the Unicode code point of the leftmost character of a character expression.
CODEPOINT(character_expression)
character_expression
Is a character expression whose leftmost character will be evaluated.
DT_UI2
character_expression must have the DT_WSTR data type.
CODEPOINT returns a null result if character_expression is null or an empty string.
This example uses a string literal. The return result is 77, the Unicode code point for M.
CODEPOINT("Mountain Bike")
This example uses a variable. If Name is Touring Front Wheel, the return result is 84, the Unicode code point for T.
CODEPOINT(@Name)