Encoding

URL Encode

Percent-encode text for safe use in URLs.

Text input
Output

Result appears here after you select

{ } How to use

  1. Paste the text or value you want to make URL-safe.
  2. Select Process, then copy the encoded value.

{ } How it works

URL Encode works on the text you provide. Select Process ▸ and it runs entirely in your browser — nothing is uploaded to a server — then shows the result in the Output panel.

Input

  • Text input — paste or type your input in the left panel (use Sample for an example)

Output

TXT text — copy or download it from the Output panel.

{ } Common uses

  • Put a value into a query string without breaking the URL.
  • Encode a path segment or a redirect target that contains a slash, a space or a question mark.
  • Escape a search term before pasting it into a link.

{ } Limitations

  • This encodes one value, not a whole address: / ? : and & are all escaped, so running a complete URL through it would break the URL.

{ } FAQ

Is my data uploaded to a server?

No. Everything runs locally in your browser — your files never leave your device.

Can I process more than one file at once?

This tool works on one input at a time.

Is this tool free?

Yes — it’s completely free and needs no sign-up.

A space became %20, but elsewhere I see +.

Both are in use. %20 is correct anywhere in a URL; + means a space only inside a query string, and only by the form-encoding convention.

{ } Guides