sigil 0.2.0

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

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

How to use:

Get information by a name:

extern crate sigil;

assert_eq!(sigil::info_by_name("HUNDRED POINTS SYMBOL").unwrap().character,
    	   '💯');

Get information by a character:

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

Get all unicode stuff as a vector of Characters:

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