Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

decode base64 with python

#== Decoding ==#

import base64

base64_message = 'UHl0aG9uIGlzIGZ1bg=='
base64_bytes = base64_message.encode('ascii')
message_bytes = base64.b64decode(base64_bytes)
message = message_bytes.decode('ascii')

print(message)
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #decode #python
ADD COMMENT
Topic
Name
8+8 =