Skip to content

Get Base64 of a string in Python

Advertisements
import base64


# Get the base-64 of the string.
def get_base_64_of_string(your_string):
    return base64.b64encode(your_string.encode()).decode()


def main():
    # Get the base-64 of the string.
    print(get_base_64_of_string("Hello World!"))


main()

See also  Get SHA 512 of a string in Python

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.