What is a Base64 standard detector?
A Base64 standard detector checks whether a string uses standard Base64, URL-safe Base64URL, padding, or a data URL wrapper. It also reports validity and decoded size.
How to use it
- Paste the Base64 string.
- Review alphabet, padding, data URL, and decoded size details.
- Normalize or repair the value if needed.
Example
Input: SGVsbG8td29ybGQ_
Output: Base64URL-style characters detected.
Common mistakes
- Standard Base64 uses
+and/; Base64URL uses-and_. - Padding is optional in some systems but required in others.
- A data URL has metadata before the Base64 payload.
Related tools
- Clean the value with Base64 normalize.
- Check strict validity with the Base64 validator.
- Fix common issues with Repair malformed Base64.
Privacy and security
Detection runs locally in your browser.