Untitled

 avatar
unknown
plain_text
2 years ago
142 B
4
Indexable
import base64

encoded_data = 'eyJ1c2VyIjoibWFuZWwifQ'
decoded_data = base64.b64decode(encoded_data).decode('utf-8')

print(decoded_data)
Editor is loading...
Leave a Comment