#[non_exhaustive]pub struct UnifiedIdeograph;Expand description
A property which specifies the exact set of Unified CJK Ideographs in the standard.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::UnifiedIdeograph;
let unified_ideograph = CodePointSetData::new::<UnifiedIdeograph>();
assert!(unified_ideograph.contains('川')); // U+5DDD CJK UNIFIED IDEOGRAPH-5DDD
assert!(unified_ideograph.contains('木')); // U+6728 CJK UNIFIED IDEOGRAPH-6728
assert!(!unified_ideograph.contains('𛅸')); // U+1B178 NUSHU CHARACTER-1B178