Loading...
URL encoding replaces characters not allowed in a URL with %XX sequences. Example: space → %20, accent → %C3%A9, & → %26. Required for building valid URLs without parsing errors.
Free, no account required, browser processing and no server upload.
URL encoding replaces characters not allowed in a URL with %XX sequences. Example: space → %20, accent → %C3%A9, & → %26. Required for building valid URLs without parsing errors.
Do not encode a complete URL all at once. Break it into parts: protocol, domain, path, query string. The domain should not be encoded (non-ASCII characters are handled by punycode).
Search with spaces
site.com/?q=hello world
site.com/?q=hello%20world
Parameter with accent
site.com/?q=demo
site.com/?q=d%C3%A9mo