Skip to content

Instantly share code, notes, and snippets.

@CIOSAI
Created November 28, 2024 14:51
Show Gist options
  • Save CIOSAI/11d09c781272c4030540835feefed156 to your computer and use it in GitHub Desktop.
Save CIOSAI/11d09c781272c4030540835feefed156 to your computer and use it in GitHub Desktop.
ascii2text.py
# can be ran on python REPL
# has to be NUMBER,NUMBER,NUMBER... with no space
# or modify the split(",") idc
# A B C
text = "65,66,67"
"".join(list(map(chr,map(int,text.split(",")))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment