Type Definition hime_redist::text::Utf16C

source ·
pub type Utf16C = u16;
Expand description

Utf16C represents a single UTF-16 code unit. A UTF-16 code unit is always represented as a 16 bits unsigned integer. UTF-16 code units may not represent by themselves valid Unicode code points (characters). A Unicode code point (a character) is a 32-bits unsigned integer in the ranges: U+0000 to U+D7FF and U+E000 to U+FFFF and U+10000 to U+10FFFF. Unicode code points in the range U+D800 to U+DFFF are reserved and cannot be used. UTF-16 can be used to encode a single Unicode code point in either one or two UTF-16 code units.

See UTF-16 for more details.