CharNextEx

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern IntPtr CharNextEx(
   uint codePage,
   IntPtr lpCurrentChar,
   uint flags
);

Microsoft documentation: Link

Last updated