Encoding and Decoding Base64 Strings in Python

0
15K

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)
Căutare
Categorii
Citeste mai mult
Programming
Download Cookies from Chrome and Firefox with Python
What Cookies are? A cookie is a string stored in our browser (client-side) really useful for...
By Jesse Thomas 2023-04-28 21:38:43 0 14K
Multimedia
The Evolution and Impact of Multimedia in Modern Communication
Introduction In an era dominated by rapid technological advancements, multimedia has emerged as...
By Dacey Rankins 2024-10-14 18:08:13 0 20K
Fitness
The Future of Fitness: Trends and Insights for 2024
Fitness is an ever-evolving industry, and 2024 is shaping up to be a year of innovation,...
By Dacey Rankins 2024-11-06 18:04:50 0 14K
Finance
What Are the Benefits of Fintech?
What Are the Benefits of Fintech? Why Users and Businesses Are Adopting Faster, Cheaper, and...
By Leonard Pokrovski 2025-10-10 22:48:46 0 8K
Personal Finance
Can You Collect Social Security From Two Sources?
Can You Collect Social Security From Two Sources? Understanding Dual Entitlement, Spousal...
By Leonard Pokrovski 2025-12-11 20:10:16 0 13K

BigMoney.VIP Powered by Hosting Pokrov