This URL encoder / decoder converts text to its percent-encoded, URL-safe form — or decodes an encoded URL back to plain text — as you type.
Why URLs need encoding
Spaces, accented letters and reserved characters like &, ? and # can break a URL or change its meaning if left as-is. Encoding turns them into %XX sequences the browser and server always interpret correctly, which matters for query strings, redirects and any link built from user input.
Everything runs locally in your browser; nothing is sent anywhere.