Base64 Encode/Decode
Encode or decode text with Base64
Category
How to Use
- Select encode or decode mode
- Enter text or Base64 string in the input area
- Result is shown automatically; enable URL-safe mode if needed
Examples
-
Base64 encode
Input:
Hello WorldOutput:
SGVsbG8gV29ybGQ= -
Base64 decode
Input:
SGVsbG8gV29ybGQ=Output:
Hello World
FAQ
- What is URL-safe mode?
- Replaces + with -, / with _, and removes = padding. Suitable for URLs.
- Does it support non-ASCII text?
- Yes, text is first UTF-8 encoded then Base64 converted.
Related tools
- URL Encode/Decode
Encode and decode URLs
- HTML Entity Converter
Convert HTML special characters and entities