Skip to content

← ToolsEncoders

URL encoder.

Percent-encode full URLs or single components, and split query strings into a readable table.

Client-onlyRFC3986
Input46 chars
Output64 chars
https%3A%2F%2Fjaskaran.in%2Fblog%3Fq%3Dhello%20world%26lang%3Dhi
Query params2 found
qhello world
langhi

🔒 Privacy — runs 100% locally

No uploads · no cookies · works offline after load. View Source if you don't believe it.

How to use.

  1. Paste a URL or fragment, pick Component or Full-URL mode.
  2. Toggle Encode/Decode — the query table appears for URLs with params.
  3. Copy the output or read params row by row.

Related tools.

FAQ.

Component vs Full URL?

Component encodes everything (for query values). Full-URL mode preserves : / ? & # structure and only encodes the unsafe parts.

Why did decoding fail?

A % must be followed by two hex digits. Stray % signs cause the error — encode first, then decode.