Sigil

Simple and bad library for fetching unicode character names and some other stuff.

How to use:

Get information by a name:

```rs extern crate sigil;

asserteq!(sigil::infoby_name("HUNDRED POINTS SYMBOL").unwrap().character, '💯'); ```

Get information by a character:

rs assert_eq!(sigil::info_by_char('💯').unwrap().name, "HUNDRED POINTS SYMBOL".to_string());

Get all unicode stuff as a vector of Characters:

rs assert_eq!(sigil::raw_unicode_data().get(28695).unwrap().name, "HUNDRED POINTS SYMBOL".to_string());