Skip to content

Instantly share code, notes, and snippets.

@ssebastianj
Last active December 23, 2015 02:29
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 ssebastianj/6567568 to your computer and use it in GitHub Desktop.
Save ssebastianj/6567568 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
#! -*- coding: utf-8 -*-
from __future__ import print_function
msg = "71 75 65 20 61 6c 20 70 65 64 6f 20 65 73 74 61 73 20 70 61 72 61 20 64 65 73 63 69 66 72 61 72 20 65 73 74 6f 21 20 6a 61 6a 61 6a 61 6a"
for car in msg.split():
print(chr(int(car, 16)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment