[][src]Function base2048::decode

pub fn decode(string: &str) -> Option<Vec<u8>>

Decode a base2048 encoded string

Example

let encoded_message = "ظڝөПәΰศƪڍথԅПяޒߡೲױɡјවၕάێנלۻӥ༟ಖ༎";
assert_eq!(
    base2048::decode(encoded_message),
    Some(b"some utf8 bytes to encode more compactly".to_vec())
);