Site Information

This site was created and mantained by the Youtube channel "The Seasoned Programmer". Any questions, I can be reached at mark@the-seasoned-programmer.com.

Base64 Encoding

Base64 is a binary-to-text encoding scheme that converts binary data into an ASCII string format using a set of 64 characters (A-Z, a-z, 0-9, +, /). It is commonly used in HTML to embed binary data directly within text-based formats, such as embedding images or other media in web pages.

How Base64 is Used in HTML

Example

Here is an example of embedding a small image using Base64 in an HTML document:

    
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Base64 Example</title>
</head>
<body>
<h1>Base64 Image Example</h1>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA
AAAFCAYAAACNbyblAAAAHElEQVQI12P4
//8/w38GIAXDIBKE0DHxgljNBAAO
9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot">
</body>
</html>
    

Benefits

Drawbacks