<i18n dev> RFR: 8364365: HKSCS encoder does not properly set the replacement character
Volkan Yazici
vyazici at openjdk.org
Wed Aug 6 10:55:02 UTC 2025
On Wed, 6 Aug 2025 01:51:54 GMT, Xueming Shen <sherman at openjdk.org> wrote:
> for (char c = 0xFF; c < 0xFFFF; c++)
Doesn't this exclude `0xFFFF`, which is a valid (single-`char`, non-surrogate) BMP character?
> ... we can just pick any non-bmp panel ...
> ```
> for (int i = 0x10000; i < 0x1FFFF; i++) { ...
> ```
Doesn't the non-BMP range rather end with 0x10FFFF?
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/26635#discussion_r2256774007
More information about the i18n-dev
mailing list