Skip to content

Instantly share code, notes, and snippets.

@ozuma
Created June 22, 2020 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozuma/5b3985cf99ad84415f9df6ef3535e712 to your computer and use it in GitHub Desktop.
Save ozuma/5b3985cf99ad84415f9df6ef3535e712 to your computer and use it in GitHub Desktop.
ASCII code to Character
#!/usr/bin/python
strarr="56 55 62 56".split()
result=""
for code in strarr:
# result += chr(int(code, base=16))
result += chr(int(code))
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment