Skip to content

Asciifyer is an interactive Python tool that converts text into its ASCII code representation. Ideal for learning, obfuscation, or embedding sensitive strings like webhooks in a more concealed way.

License

Notifications You must be signed in to change notification settings

D0up4/AsciiFyer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

6 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🎨 AsciiFyer β€” Text to ASCII Code Converter & Decoder πŸ”„

swappy-20250930-225009

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.


πŸš€ Features

  • 🎭 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

🎯 Why Use AsciiFyer?

  • πŸ”’ 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

πŸ“‹ Usage

  1. Run the script:
    python AsciiFyer.py

βš™οΈ Requirements

  • Python 3.x

  • rich

Install dependencies manually if needed:

pip install rich pystyle

πŸ” Using AsciiFied Webhooks

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"""

⚠️ Replace "Asciifyed Webhook" with your actual Asciified webhook (space-separated numbers). This will return the original webhook URL you can use in requests.

πŸ“ License

This project is licensed under the MIT License.

About

Asciifyer is an interactive Python tool that converts text into its ASCII code representation. Ideal for learning, obfuscation, or embedding sensitive strings like webhooks in a more concealed way.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages