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
use utf64::*;

fn main() {
    println!("{}", "Hello!".encode_utf64().unwrap());
    match "YHelloG".decode_utf64() {
        Ok(result) => println!("{result}"),
        Err(e) => panic!("{e}"),
    }
}