1 2 3 4
use std::ops::Range; pub const WIDE_ALPHANUMERIC: Range<u32> = 0xff01..0xff5f; pub const NORMAL_ALPHANUMERIC: Range<u32> = 0x0021..0x007f;