3 lines
109 B
Python
3 lines
109 B
Python
def getjss(text):
|
|
return "String.fromCharCode({})".format(",".join(["{}".format(ord(x)) for x in text]))
|