Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

base64 decode python

import base64
plain_str = 'SGVsbG8gV29ybGQ='
bytes_repr = bytes(plain_str, encoding='utf-8')
decoded_string = base64.b64decode(bytes_repr)
message = str(decoded_string, encoding='utf-8')

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