- From: Myles C. Maxfield via GitHub <sysbot+gh@w3.org>
- Date: Wed, 01 Dec 2021 01:58:13 +0000
- To: public-css-archive@w3.org
I just verified that this:
```
uint8_t input[] = {0x5C};
uint32_t output[1];
int32_t length = ucnv_convert("UTF32_PlatformEndian", "Shift_JIS", (char*)output, sizeof(output), (const char*)input, sizeof(input), &errorCode);
assert(U_SUCCESS(errorCode));
assert(length == sizeof(output));
printf("U+%04" PRIX32 "\n", output[0]);
```
prints U+005C
--
GitHub Notification of comment by litherum
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6848#issuecomment-983209428 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 1 December 2021 01:58:15 UTC