Files
gists/codegrab/ctf/getjs.py
2022-05-13 12:50:20 +02:00

3 lines
109 B
Python

def getjss(text):
return "String.fromCharCode({})".format(",".join(["{}".format(ord(x)) for x in text]))