charname 0.2.14

Incredibly simple library that just gives you the Unicode name for a character.
Documentation
1
2
3
4
5
6
7
8
9
# charname
A library to get the name of unicode characters. [Documentation](https://docs.rs/charname)

## 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`