URL Encode
Paste your text below and click Encode to percent-encode it for safe use in URLs. All processing happens locally in your browser.
Copied!
What is URL Encoding?
URL encoding (percent-encoding) replaces unsafe characters in a URL with
a % followed by two hexadecimal digits. For example, a
space becomes %20 and & becomes
%26.
Standard mode encodes all special characters - use it
when encoding a single value (e.g. a search query). Full URL
mode preserves URL-structural characters like :, /,
?, # - use it when encoding an entire URL.