esab64
Question
Was it a car or a cat I saw?
Solution
cat esab64 | base64 -d
����ىX��H��@΅�����ā�� ����L͔X͗]�from base64 import b64decode
string = 'mxWYntnZiVjMxEjY0kDOhZWZ4cjYxIGZwQmY2ATMxEzNlFjNl13X'
rev_string = string[::-1]
decoded_string = b64decode(rev_string)
print("Before reversing the decoded string:" , decoded_string, sep="\n")
print("After reversing: ", decoded_string[::-1], sep="\n")Solution
Last updated