I'm looking at the IsCharAlphaNumeric Windows API function. As it only takes a single TCHAR, it obviously can't make any decisions about surrogate pairs for UTF16 content. Does that mean that there are no alphanumeric characters that are surrogate pairs?
|
|
|
Characters outside the BMP can be letters. (Michael Kaplan recently discussed a bug in the classification of the character U+1F48C.) But
Edit: The second half of this answer is incorrect |
||||
|
|
|
You can determine yourself by looking at the Unicode plane assignment what you are missing by not being able to inspect non-BMP codepoints. For example, you won't be able to identify imperial Aramaic characters as alphanumeric. Shame. |
|||
|
|
No, there are supplementary code-points that are in the letter group. Comparing a char to a code-point?
|
|||
|
|