Encode text
Input: Hello
Output: SGVsbG8=
"Hello" encoded to Base64 is SGVsbG8=.
Encode text to Base64 or decode Base64 back to text — useful for data URIs, tokens, and config values.
Ready.
Input: Hello
Output: SGVsbG8=
"Hello" encoded to Base64 is SGVsbG8=.
Input: Hello, RapidUnits!
Output: SGVsbG8sIFJhcGlkVW5pdHMh
UTF-8 text is encoded byte by byte, then mapped to Base64.
Input: U0VP
Output: SEO
Base64 U0VP decodes back to the text SEO.
No. Base64 is encoding, not encryption — anyone can decode it. Never use it to protect secrets.
The = signs are padding so the output length is a multiple of 4 characters.
No. Encoding and decoding happen entirely in your browser; nothing is uploaded.
Updated: June 7, 2026