
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 pystyle
If 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.