Last active
March 27, 2023 16:34
-
-
Save gilangvperdana/e7a7f60cd0e1add9b4b566ab64da51fa to your computer and use it in GitHub Desktop.
How to decrypt Base64 to Plaintext & Viceversa
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
import base64 | |
base64_message = 'BASE64' # pesan yang ingin di-decode | |
decoded_message = base64.b64decode(base64_message) # proses decoding | |
print(decoded_message.decode('utf-8')) # print hasil decoding |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Base64 Decryptor