← ToolsEncoders
URL encoder.
Percent-encode full URLs or single components, and split query strings into a readable table.
https%3A%2F%2Fjaskaran.in%2Fblog%3Fq%3Dhello%20world%26lang%3Dhi
| q | hello world |
| lang | hi |
🔒 Privacy — runs 100% locally
No uploads · no cookies · works offline after load. View Source if you don't believe it.
How to use.
- Paste a URL or fragment, pick Component or Full-URL mode.
- Toggle Encode/Decode — the query table appears for URLs with params.
- Copy the output or read params row by row.
Related tools.
Encoders
Base64 encode
Encode and decode text or files with UTF-8 support and URL-safe mode. Auto-updates as you type.
Encoders
JWT decoder
Read a JWT header and payload offline with expiry checks. Signatures are decoded, never verified here.
Generators
QR generator
Text, URL, phone or Wi-Fi credentials to a scannable QR. Download as PNG or SVG.
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.