2 stable releases
Uses new Rust 2024
new 1.16.0 | Mar 31, 2025 |
---|---|
1.15.1 | Aug 18, 2024 |
0.2.15 |
|
0.2.14 |
|
0.1.0 |
|
#428 in Text processing
228 downloads per month
265KB
117 lines
charname
A library to get the name of unicode characters. Documentation
Usage
There are two available functions get_name
and get_name_checked
.
get_name
will always return a &str
. If a certain character is unknown, it returns UNKNOWN CHARACTER
get_name_checked
returns Option<&str>
. If a certain character is unknown, it returns None