unichars

Constant, categorized collections of characters


Keywords
unicode, ascii, characters, symbols, categories
License
GPL-3.0

Documentation

IMPORTANT NOTICE

This crate is not maintained, I recommend using https://github.com/open-i18n/rust-unic instead.

unichars

Constant, categorized collections of characters.

Documentation

Example

extern crate unichars;
use unichars::ASCII;

fn main() {
    println!("{:?}", ASCII[16]); // will print '1'
}