URL Encode/Decode

Ready
Example
Input: <https://example.com/search?q=hello world>
Encoded: https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dhello%2520world

URL Encode / Decode

Quickly encode unsafe URL characters or decode percent-encoded URLs back to readable text. Useful for preparing query parameters, debugging redirect chains, or turning encoded values into human-readable strings.

How to use

  • Paste your URL or text into the Input box.
  • Click Encode URL to percent-encode reserved characters.
  • Click Decode URL to convert percent-encoded sequences back to characters (treats + as a space).
  • Use Copy Result to copy the result to clipboard.

When to encode vs decode

Encode data when constructing query strings or sending data in URLs. Decode when you receive percent-encoded values and want to display or inspect them.