UNICODE
Returns the number (code point) corresponding to the first character of the text.
Syntax
expression.UNICODE(arg1);
expression
- A variable that represents a ApiWorksheetFunction class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
arg1 | Required | ApiRange | ApiName | string | The character for which the Unicode value will be returned. |
Returns
number
Example
This example shows how to return the number (code point) corresponding to the first character of the text.
- Code
- Result
// How to get a Unicode of a character.
// Use a function to return the character's Unicode.
let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.UNICODE("example"));