Encode plain text to Base64 or decode Base64 strings back to readable text.
Base64 encoding converts binary data into a string of ASCII characters using a set of 64 printable characters (AβZ, aβz, 0β9, +, /). The name comes from the fact that each Base64 digit represents exactly 6 bits of binary data.
Base64 is not encryption β it does not protect your data. It's purely an encoding mechanism to safely transmit binary data over text-based channels like email or JSON APIs.
Plain text: Hello, World!
Base64: SGVsbG8sIFdvcmxkIQ==