Hide and reveal secret messages using emojis!
encode.html?text=<message>&emoji=<emoji>
- text (required): The secret message you want to hide
- emoji (optional): The emoji container. Default is 💩
Example:
http://angeladadd.github.io/emoji-knows/encode.html?text=secret&emoji=🎉
Decode - Reveal a hidden message
decode.html?emoji=<emoji>
- emoji (required): The emoji containing your hidden message
Example:
http://angeladadd.github.io/emoji-knows/decode.html?emoji=🎉
To test the website locally, run a simple HTTP server from the project directory:
cd <path to>/emoji-knows
python3 -m http.server 8000Then open http://localhost:8000 in your browser.