Base64 Encoder/Decoder
Encode text to Base64 or decode Base64 strings
Input
Text to encode
Output
Base64 encoded result
About Base64
Standard Base64: Uses characters A-Z, a-z, 0-9, +, and / with = for padding. Commonly used for email attachments and data embedding.
URL-Safe Base64: Replaces + with - and / with _ to make it safe for URLs. Padding (=) is also removed.
Supports UTF-8 encoding for international characters
Switch between encoding and decoding instantly