utf64 1.0.2

A utility to encode utf-8 strings into utf-64, and decode them back.
Documentation
1
2
3
4
5
6
7
8
9
10
use utf64::UTF64;

fn main() {
    for s in std::env::args().skip(1) {
        match s.encode_utf64() {
            Ok(enc) => println!("{s} -> {enc}"),
            Err(e) => println!("Could not encode: {e}"),
        }
    }
}