pub fn nfc_text(text: &str) -> Cow<'_, str>
Return text in Unicode NFC form, borrowing when it is already normalized.
text
use mos_fonts::nfc_text; assert_eq!(nfc_text("S\u{0326}"), "\u{0218}");