How to use
- Choose what to do.
- Paste text or choose a file.
- Copy or download the result.
Questions
What is URL-safe Base64?
It uses - and _ instead of + and /, and leaves out padding, so it can go in URLs.
What is a data URI?
Base64 with a prefix such as data:image/png;base64, so it can be used directly in HTML or CSS.
Is Base64 encryption?
No. Anyone can decode it. Use the File Encryptor to protect data.