pub fn utf16IsHighSurrogate(c: u16) bool
pub fn utf16IsHighSurrogate(c: u16) bool { return c & ~@as(u16, 0x03ff) == 0xd800; }