To determine the width of a UTF-8 character by providing its first byte.
References: https://tools.ietf.org/html/rfc3629
```rust extern crate utf8_width;
asserteq!(1, utf8width::getwidth(b'1')); asserteq!(3, utf8width::getwidth("δΈ".as_bytes()[0])); ```
bash
cargo bench
https://crates.io/crates/utf8-width
https://docs.rs/utf8-width