Encode strings to Base64 or decode Base64 back to text.
Base64 is an encoding scheme that converts binary data — or any text — into a string of safe ASCII characters. It is used whenever you need to pass data through a system designed only for text, such as email, HTTP headers, or HTML attributes. You have probably seen it in JWT tokens (the middle section is Base64-encoded JSON), in HTTP Basic Authentication headers, and in data URLs that embed images directly into a webpage.
Encode the text: Hello, World!
Base64 output: SGVsbG8sIFdvcmxkIQ== Paste that back and click Decode to get Hello, World! again.