Percent-encode special characters in URLs and decode them back. How to encode/decode URLs online with Bagiqo.
URLs cannot contain arbitrary spaces or special characters. When you put text with &, =, # or spaces into a query string, it must be percent-encoded so the browser reads it correctly.
Use the URL encoder to encode a string for a URL and the URL decoder to turn encoded text back into readable form.
How to use them
Common uses
- Building query strings with user text.
- Decoding an obfuscated link to see the real address.
- Cleaning escaped parameters in logs.
Understand the link fully with the URL parser.