Constant, categorized collections of characters.
```rust extern crate unichars; use unichars::ASCII;
fn main() { println!("{:?}", ASCII[16]); // will print '1' } ```