Encoding / Decoding Tools
Tools for safe conversions like Base64 and URL encoding. Runs in your browser. No data is sent to any server.
Base64 Encoder / Decoder
Base64 for text and files (standard / URL-safe)
Try it →URL Encoder / Decoder
encodeURI / encodeURIComponent / querystring (+) supported
Try it →HTML Entity Encoder / Decoder
Convert HTML special characters and named entities (© ® etc.)
Try it →QR Code Generator
Generate QR codes from text and URLs instantly
Try it →What You Can Do with Encoding / Decoding
- Encode query parameter values safely for URLs
- Percent-encode non-ASCII path segments in URLs
- Convert binary data to Base64 for text-based transport
- Handle + as space in x-www-form-urlencoded querystrings
About This Category
Tools for safe conversions like Base64 and URL encoding.
All tools run in your browser and your input is not sent to any server.
FAQ
What is the difference between URL encoding and Base64?
URL encoding converts characters into %xx form to make them safe inside URLs. Base64 converts binary data into ASCII strings. They solve different problems.
Is Base64 encryption?
No. Base64 is reversible encoding. If you need secrecy, use encryption.
Is my data sent to a server?
No. Everything runs locally in your browser and nothing is uploaded.