Files
gists/ctf/getjs.py
2020-03-05 10:18:51 +01:00

3 lines
109 B
Python

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