Tool Cluster

Encoding

URL Encode/Decode

Encode URL components and decode percent-encoded text without sending it anywhere.

Runs locallyNo uploadNo external API

Input

Output

Paste a URL component or text fragment, or load a sample.

This tool uses URL component encoding. For a full URL, encode only the query value you are changing.

Paste a URL component or text fragment, or load a sample.
Local-only note

Runs in your browser. Input is not uploaded or sent to an external API.

How to use URL

Use this for one URL component at a time: query values, path fragments, redirect values, and percent-encoded text.

  1. Paste or type your input.
  2. Load the sample if you want a quick check.
  3. Run the action, review the result, then copy only what you need.

Examples

Encode spaces

Input: hello world

Output: hello%20world

Decode reserved characters

Input: a%2Fb%3Fc%3D1

Output: a/b?c=1

Common use cases

Fix query values

Encode the value you are changing, then inspect the full query with URL Query Parser.

Limitations

Component scope

This uses encodeURIComponent/decodeURIComponent. Do not encode an entire URL unless you really want every reserved separator escaped.

FAQ

Does plus mean space?

In form-style query strings plus often represents a space. This component tool preserves plus signs; use URL Query Parser for query rows.

Does this fetch the URL?

No. It only transforms the pasted text locally.