base16384 0.1.0

Encode binary file to printable utf16be, and vice versa.
Documentation
# base16384

Encode binary file to printable utf16be, and vice versa.

It is a Rust reimplementation of [base16384](https://github.com/fumiama/base16384).

## Examples

```rust
use base16384::Base16384;

let data = b"12345678";
let encoded = Base16384::encode(data);
let text = String::from_utf16(&encoded).unwrap();
assert_eq!(text, "婌焳廔萷尀㴁");
```

```rust
use base16384::Base16384;

let data = "婌焳廔萷尀㴁".encode_utf16().collect::<Vec<_>>();
let decoded = Base16384::decode(&data).unwrap();
assert_eq!(decoded, b"12345678");
```