Ecoji ๐ฃ๐๐ฆ๐ผ
Ecoji encodes data as 1024 emojis. Itโs base1024 with an emoji character set, based off the original version written in Go.
Itโs also an example of how we can manipulate bit strings in Gleam!
Encoding:
import ecoji
pub fn main() {
ecoji.encode("Base64 is so 1999, isn't there something better?\n")
// -> "๐๐ฉ๐ฆ๐๐๐๐ฏ๐๐๐ฝ๐๐๐ฑ๐ฅ๐๐ฑ๐๐ญ๐ฎ๐ต๐ข๐ฅ๐ญ๐ธ๐๐ฒ๐ฆ๐ถ๐ข๐ฅ๐ฎ๐บ๐๐ธ๐ฎ๐ผ๐ฆ๐๐ฅด๐",
}