logoalt Hacker News

leni536yesterday at 9:44 PM2 repliesview on HN

Too much unicode in standard C++? Where?


Replies

Blackthornyesterday at 10:26 PM

c++20's u8strings took a giant steaming dump on a number of existing projects, to the point that compiler flags had to be introduced to disable the feature just so c++20 would work with existing codebases. Granted that's utf-8 (not the same thing as unicode, as mentioned) but it's there.

kccqzytoday at 12:30 AM

Things like char32_t, std::u32string for storing UTF-32 characters.