New and modified keywords
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
New and modified keywords
Syntax
This topic describes inputting Unicode codepoints in ABL code, in support of supplementary characters.
To input Unicode scalar codepoints in plane 0 (U+0000 to U+FFFF), use this syntax:
|
- XXXX
- A 4-digit, case-insensitive hex digit.
Syntax
To input Unicode scalar codepoints in planes 0 - 16 (U+0000 to U+10FFFF), use this syntax:
|
- XXXXXX
- A 6-digit, case-insensitive hex digit.
When
the ABL code is parsed, this character value is converted from Unicode
to -cpinternal. If the character is not a valid character
in -cpinternal, the entire escaped string is passed
through. For example, if -cpinternal is 1252, ~u4E00
is passed to ABL as is.