Base32768 is a binary encoding for encoding arbitrary binary data to UTF-16 text.
```rust // Encoding let data = [72u8, 101u8, 108u8, 108u8, 111u8]; let encoded = base32768::encode(&data).unwrap(); // "䩲腻㐿"
// Decoding
let mut decoded = Vec::
This module is a pretty vanilla port of the original JavaScript module to Rust.