UTF-8 safe. Converts text to and from Base64.
The Base64 tool encodes plain text into Base64 and decodes Base64 back into readable text. Base64 is commonly used when binary-safe text is needed in JSON, HTML, email, API examples or configuration values.
Base64 is an encoding, not encryption. Anyone can decode it. Use it for compatibility and transport, not for secrecy.
hello utilitytools
aGVsbG8gdXRpbGl0eXRvb2xz
Decoding the output returns the original text.
Encoding and decoding are performed in the browser. UtilityTools.eu does not receive the text you paste.
No. It is reversible encoding. Use encryption if you need secrecy.
The original data may be binary, use a different character encoding, or not be Base64 text.
Equals signs are padding used by standard Base64 to complete the final group of characters.