pub fn encode(input: &str) -> StringExpand description
Encodes an ascii string into the invert representation
§Examples
use crypto_invert::encode;
let r1 = encode("i love you!");
let r2 = encode("I LOVE YOU!");
assert_eq!(r1, "ᴉ ꞁoʌǝ ʎon¡");
assert_eq!(r2, "I ꞀOɅƎ ⅄O∩¡");