Questions About This Tool
Is Base64 encryption?
No. It is reversible without a password or key, so anyone can decode it.
Why does Base64 sometimes end with = or ==?
Padding completes the final four-character block when the byte count is not divisible by three.
Does this work with emoji and non-Latin text?
Yes. The text is converted to UTF-8 bytes before Base64 encoding and decoded with a strict UTF-8 decoder.
Does it support Base64URL?
No. This page validates the standard + and / alphabet. Base64URL uses - and _.