Encoding and Decoding Base64 Strings in Python

0
13K

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)
Search
Categories
Read More
Television
RTД Documentary Channel. Live TV. Russia.
Documentary channel RT Doc joined the RT news family in 2011. Since then, RT Doc has produced and...
By Nikolai Pokryshkin 2022-11-15 18:42:42 0 35K
Urban Living
Such a funny city life: 15 shots by street photographers from around the world
Such a funny city life: 15 shots by street photographers from around the world Hello Friends...
By Leonard Pokrovski 2024-04-26 21:34:21 0 16K
Business
What Is a Good Conversion Rate?
When businesses start tracking conversions, one of the first questions that arises is:...
By Dacey Rankins 2025-09-10 13:16:51 0 3K
История
Сокровища Сьерра-Мадре. The Treasure of the Sierra Madre. (1948)
В небольшом мексиканском городке Тампико знакомятся два бедняка Доббс и Кертин. От местного...
By Nikolai Pokryshkin 2023-02-19 18:34:14 0 23K
Programming
If and Else statements or Try and Except Statements
If and Else statements should be used if you want to check if something is True or false. This...
By Jesse Thomas 2023-02-22 21:19:36 0 11K

BigMoney.VIP Powered by Hosting Pokrov