Created
January 15, 2023 01:34
-
-
Save 0xm4ud/8fd3a97cb97804009e3b11e2423dec90 to your computer and use it in GitHub Desktop.
READ string then convert to hex and print it in reverse
This file contains hidden or 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
python3 -c 'print("".join(hex(ord(c))[2:].zfill(2) for c in input("Enter the string: ")[::-1]))' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment