Skip to content

Instantly share code, notes, and snippets.

@CIOSAI
Created November 28, 2024 15:04
Show Gist options
  • Save CIOSAI/e87fafb6b1f611c1c1e81cf370c1319d to your computer and use it in GitHub Desktop.
Save CIOSAI/e87fafb6b1f611c1c1e81cf370c1319d to your computer and use it in GitHub Desktop.
text2ascii.py
# can be ran on python REPL
text = "ABC"
",".join(list(map(str,map(ord,text))))
# returns "65,66,67"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment