What does a URL encoder do?
It replaces characters that have special meaning in URLs with percent-encoded values so text can be used safely inside a path, query parameter, or fragment.
Encode or decode URL components and complete URLs directly in your browser.
Encode a query value, path segment, or individual parameter.
Changes will list the original character or byte sequence and its converted form.
Byte counts use UTF-8. A single visible character can occupy more than one byte and become several percent sequences.
URL encoder FAQ
It replaces characters that have special meaning in URLs with percent-encoded values so text can be used safely inside a path, query parameter, or fragment.
Component encoding escapes reserved separators such as slashes and question marks. Full URL encoding keeps structural URL characters while encoding unsafe text around them.
Yes. Switch to decode mode to turn valid percent-encoded sequences back into readable characters.
No. Encoding and decoding happen in the browser using standard URL functions.