Encoding and Decoding Base64 Strings in Python

0
10χλμ.

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)
Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
Science Fiction and Fantasy
Star Wars: Episode VI - Return of the Jedi. (1983)
After a daring mission to rescue Han Solo from Jabba the Hutt, the Rebels dispatch to Endor to...
από Leonard Pokrovski 2023-01-09 20:23:01 0 21χλμ.
Business
How to Find and Where to Use Competitors' Databases: A Full Review
When the competition in the niche becomes very high, it becomes difficult to find new customers....
από Dacey Rankins 2024-09-05 18:16:06 0 9χλμ.
Συνδεδεμένος
Why is Minecraft such a good game?
Introduction: Minecraft is a game that has proven to have longevity, no matter what game is the...
από FWhoop Xelqua 2023-05-26 21:15:20 0 24χλμ.
Business
How Do I Build the Right Team?
Building the right team is one of the most critical steps in achieving success for your business....
από Dacey Rankins 2025-03-05 16:27:39 0 8χλμ.
Anomalies and Alternative Science
10% of the crew survived: how the Philadelphia experiment actually ended
The Philadelphia Experiment is a classified US Navy experiment staged on October 28, 1943 with...
από FWhoop Xelqua 2023-02-04 19:48:10 0 23χλμ.
image/svg+xml


BigMoney.VIP Powered by Hosting Pokrov