Last active
April 12, 2025 13:44
-
-
Save ssebastianj/6567568 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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