URL Encoder / Decoder percent-encodes text for safe use in a URL and decodes it back. It can encode a single value, where characters like the ampersand are escaped, or a whole URL, where the structure is left intact.
The query string builder splits a URL's parameters into rows you can edit, then rebuilds the query with correct encoding. Nothing is uploaded.
Yes, matching how form data is encoded.
It is left unchanged rather than throwing an error.
No. Encoding and parsing run in JavaScript in the open tab.
'One value' escapes everything that is not safe in a component, including / ? & =. 'Whole URL' keeps those so a full address stays usable.