Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 648 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 648 Bytes

Base64Decoder

One of these encoding methods is called Base 64. It encodes three bytes (24 bits) of the input file by splitting them into four 6-bit blocks. These blocks are then written as four safe ASCII characters, each of which has 64 (26) possible values. The decoding process simply performs the steps in reverse. The following diagram illustrates the decoding process.

An online platform for encoding and decoding Base64 files is available at https://www.base64encode.org/.

Implemented video