Base64-like encryption/decryption but with Emojis.
- Convert given text to its numerical representation.
- Convert numerical representation into binary.
- Split binary stream into 7 bits.
- Convert 7 bit numbers into ints.
- Use conversion table to convert to emoji.
- Use conversion table to convert emoji to int.
- Convert int to binary stream
- Split binary stream into bytes.
- Convert bytes to numbers.
- Convert numbers to text.