URL Encoder / Decoder

⌘↵ swap🤖 Agent Ready

URL encode or decode query strings, path segments, and full URLs with percent-encoding

Plain URL / Text
Encoded Output
Output will appear here...

URL Encoding FAQ

What is URL encoding? URL encoding (percent encoding) converts reserved characters like spaces, ?, &, and # into a safe format (for example, space becomes %20) so URLs can be transmitted correctly.

When should I encode a URL? Encode query parameter values, dynamic path segments, and any user-provided text before appending it to a URL.

What is URL decoding? URL decoding reverses percent-encoded text back into readable characters, which is useful for debugging query strings and inspecting redirects.

Should I encode the full URL or only parts? Usually encode components (like parameter values) rather than the entire URL to avoid double encoding.