Welcome to AsciiFyer, your colorful terminal tool for converting text to ASCII codes (Asciify) and back (De-Asciify)!
Perfect for encoding sensitive strings like webhooks or just playing around with ASCII art and code.
- 🎭 Asciify: Convert any text into a sequence of ASCII codes
- 🔄 De-Asciify: Decode ASCII codes back into readable text
- 🖥️ Easy-to-use interactive menu with clear options
- 🔒 Hide sensitive info like webhooks by converting them into ASCII codes
- 🧩 Quickly encode and decode text for debugging or fun
- 🔡 Asciify: Turn any string into its ASCII code representation
- 🔁 De-Asciify: Convert ASCII codes back into normal text
- ✅ Simple, interactive menu
- Run the script:
python AsciiFyer.py
-
Python 3.x
-
rich
Install dependencies manually if needed:
pip install rich pystyleIf you plan to Asciify a Discord webhook and use it in your own script, you'll need a small decoder.
👇 Use this snippet to decode the webhook before using it:
def ascii_decode(ascii_codes_str): return ''.join(chr(int(code)) for code in ascii_codes_str.strip().split())Then use:
ascii_webhook = """Asciifyed Webhook"""This project is licensed under the MIT License.