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.decode_utf64() {
            Ok(dec) => println!("decoded {s} into: '{dec}'"),
            Err(e) => println!("Could not decode {s}: {e}"),
        }
    }
}