Developer utilities

URL Encoder / Decoder

Percent-encode text for safe use in URLs, or decode an encoded URL back to readable text — instantly in your browser. Free.

URL encode / decode

Percent-encode text for URLs, or decode an encoded string back.

Output

Features

Percent-encodes text for URLs
Decodes encoded strings back
Component or full-URL modes
Handles spaces, symbols and unicode
Converts instantly as you type
Runs entirely in your browser

Common use cases

  1. 1Encoding query-string values
  2. 2Building safe URLs
  3. 3Decoding a captured URL
  4. 4Debugging API parameters
  5. 5Encoding a redirect target
  6. 6Fixing broken links

Related tools

About URL encoding

URL encoding (percent-encoding) replaces characters that aren't safe in a URL — spaces, &, ?, non-ASCII — with % sequences, so the URL is transmitted correctly.

Use component mode (encodeURIComponent) for a single query value, which encodes & and = too, and full URL mode (encodeURI) when encoding a whole URL that must keep those separators. Everything runs in your browser.

More Free Tools Where This Came From

This utility is one of dozens of free, no-login tools for DNS, email, SEO and developers — all instant and private.

HostCloud.in  ·  Pune, India  ·  Serving 34,987+ Websites Since 2020

FREQUENTLY ASKED QUESTIONS

Got Questions? We Have Answers.

What does URL encoding do?

It replaces characters that are unsafe in a URL (spaces, &, ?, non-ASCII) with percent-encoded equivalents like %20, so the URL stays valid.

Which encoding does it use?

Standard percent-encoding (encodeURIComponent), which is UTF-8 safe and correct for query-string values and path segments.

Is my data sent anywhere?

No. Encoding and decoding happen entirely in your browser.

When do I need this?

When building query strings, debugging links, passing values in URLs, or reading an encoded URL from logs.