Windows
API functions like CharNextExA do not support UTF8 encoding; you can test CharNextExA with UTF8 codepage (65001) and UTF8 strings and see it does not work. If you need to calculate for example the number of
unicode codepoints in UTF8 string you should parse UTF8 string manually. Fortunately ...
More...