Global Araç
Url Encoder Decoder
A free URL encoder and decoder. Handles query strings, special characters, and Unicode safely. Everything happens in your browser.
URL encoding is required whenever you put special characters in a URL — query parameters, redirect paths, API endpoints. Errors here cause cryptic bugs; this tool saves the debugging time.
Nasıl Kullanılır
- Paste a URL or text in the input.
- Click Encode to escape special characters.
- Click Decode to un-escape percent-encoded text.
- Copy the result with one click.
Sık Sorulan Sorular
When do I need URL encoding?
Any time a URL contains reserved characters (space, #, ?, &, /, :, +, =) that aren't being used in their special role. Form submissions, query strings, and API paths are the common cases — a user input with a space becomes %20 when sent as a query parameter.
What's the difference between encoding a query string and a path component?
Path components shouldn't encode the forward slash; query string components must encode &, =, +, and space as %2B or +. JavaScript's encodeURIComponent is the stricter version and usually what you want for query params.
Can I safely paste an API token or secret here?
Yes — the encoder runs entirely in your browser. Nothing is sent to a server, so you can encode bearer tokens, database connection strings, or webhook URLs without exposing them.