23 releases (stable)

2.1.2 Dec 9, 2025
2.1.1 Oct 28, 2025
2.0.1 May 19, 2025
2.0.0-beta2 Feb 26, 2025
0.4.0 Nov 2, 2021

#3 in Internationalization (i18n)

Download history 4338197/week @ 2025-11-15 3938799/week @ 2025-11-22 4335515/week @ 2025-11-29 5054259/week @ 2025-12-06 5445612/week @ 2025-12-13 3282300/week @ 2025-12-20 2999590/week @ 2025-12-27 5218531/week @ 2026-01-03 5999857/week @ 2026-01-10 6054209/week @ 2026-01-17 6475806/week @ 2026-01-24 6773891/week @ 2026-01-31 7263597/week @ 2026-02-07 6750103/week @ 2026-02-14 6932024/week @ 2026-02-21 8035369/week @ 2026-02-28

30,179,533 downloads per month
Used in 48,711 crates (40 directly)

Unicode-3.0

1.5MB
25K SLoC

icu_properties crates.io

Definitions of Unicode Properties and APIs for retrieving property data in an appropriate data structure.

This module is published as its own crate (icu_properties) and as part of the icu crate. See the latter for more details on the ICU4X project.

APIs that return a CodePointSetData exist for binary properties and certain enumerated properties.

APIs that return a CodePointMapData exist for certain enumerated properties.

Examples

Property data as CodePointSetDatas

use icu::properties::{CodePointSetData, CodePointMapData};
use icu::properties::props::{GeneralCategory, Emoji};

// A binary property as a `CodePointSetData`

assert!(CodePointSetData::new::<Emoji>().contains('🎃')); // U+1F383 JACK-O-LANTERN
assert!(!CodePointSetData::new::<Emoji>().contains('')); // U+6728

// An individual enumerated property value as a `CodePointSetData`

let line_sep_data = CodePointMapData::<GeneralCategory>::new()
    .get_set_for_value(GeneralCategory::LineSeparator);
let line_sep = line_sep_data.as_borrowed();

assert!(line_sep.contains('\u{2028}'));
assert!(!line_sep.contains('\u{2029}'));

Property data as CodePointMapDatas

use icu::properties::CodePointMapData;
use icu::properties::props::Script;

assert_eq!(CodePointMapData::<Script>::new().get('🎃'), Script::Common); // U+1F383 JACK-O-LANTERN
assert_eq!(CodePointMapData::<Script>::new().get(''), Script::Han); // U+6728

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.

Dependencies

~0.4–1.1MB
~22K SLoC