Encoding and Decoding Base64 Strings in Python

0
14K

The Base64 encoding is used to convert bytes that have binary or text data into ASCII characters. Encoding prevents the data from getting corrupted when it is transferred or processed through a text-only system. In this article, we will discuss about Base64 encoding and decoding and its uses to encode and decode binary and text data. Each Base64 character represents 6 bits of data. it is also important to note that it is not meant for encryption for obvious reasons.

 

import base64
  
sample_string = "Hello world!"
sample_string_bytes = sample_string.encode("ascii")
  
base64_bytes = base64.b64encode(sample_string_bytes)
base64_string = base64_bytes.decode("ascii")
  
print(base64_string)
Cerca
Categorie
Leggi tutto
Business
What Should I Include in a Pitch?
A pitch is one of the most important communication tools in business. Whether you’re...
By Dacey Rankins 2025-12-02 18:55:50 0 2K
Football
ChatGPT The Beautiful Game: A Celebration of Football
Football, known as soccer in some parts of the world, transcends mere sport to become a global...
By Dacey Rankins 2024-06-25 19:19:01 0 23K
Life Issues
Second Act. (2018)
A big box store worker reinvents her life and her life-story and shows Madison Avenue what street...
By Leonard Pokrovski 2023-05-28 19:17:32 0 30K
Money
How to Get Student Loans Forgiven
How to Get Student Loans Forgiven Student loan forgiveness can provide financial relief for...
By Leonard Pokrovski 2025-09-23 19:07:56 0 7K
Biology
The Role of Competition in Natural Selection and Evolution
Competition is a driving force in the natural world, shaping the survival and evolution of...
By Dacey Rankins 2025-01-14 14:46:24 0 13K

BigMoney.VIP Powered by Hosting Pokrov