@Aissen@social.treehouse.systems
Post #1333824
2026-03-27 12:18 UTC
Unicode is a catalog of symbol/characters, or the UCS (Unicode Character Set); and a set of encodings to encode them (UTF-8, 16 or 32).
#RustInParis
Replies (1)
-
@Aissen@social.treehouse.systems 2026-03-27 12:18
Unicode has interestings consequences: for example, in some languages there are rules to do case change, depending on word boundary for example. The locale can influence the casing. The Segmentation of graphemes, word, sentences can be complex, In Rust, the standard library only does non-locale aware segmentation. #RustInParis