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)
Buscar
Categorías
Read More
Sport
14 Peaks: Nothing Is Impossible (2021)
Fearless Nepali mountaineer Nirmal Purja embarks on a seemingly impossible quest to summit all 14...
By Leonard Pokrovski 2023-07-29 20:33:08 0 536K
Жизненные вопросы
Помни. Memento. (2000)
Леонард Шелби изысканно и дорого одет, ездит на новеньком «Ягуаре», но проживает в...
By Nikolai Pokryshkin 2022-12-12 12:27:43 0 27K
Социальные проблемы
Рай и ад. High and Low. (1963)
Преуспевающий бизнесмен должен решить для себя, заплатит ли он выкуп похитителям, которые по...
By Nikolai Pokryshkin 2023-01-08 22:19:53 0 23K
Business
What is a Home-Based Business?
A home-based business refers to any entrepreneurial venture where the primary office or...
By Dacey Rankins 2025-02-04 15:45:41 0 11K
Телевидение
Прямой эфир телеканала Енисей.
Краевой телеканал «Енисей»  — это развивающаяся и динамичная компания,...
By Nikolai Pokryshkin 2022-10-30 20:38:41 0 28K

BigMoney.VIP Powered by Hosting Pokrov