URL Encode / Decode
Last updated: June 2026 · Free · No sign-up required
Enter values above and click Calculate to see your result instantly.
Quick reference
| Character | Encoded |
|---|---|
| space | %20 |
| ? | %3F |
| & | %26 |
| = | %3D |
| / | %2F |
| é | %C3%A9 |
edit_note What you need
Have your numbers ready before you start. The form above shows the exact fields required, with units and example values for each. Any blank or out-of-range field is flagged before the result is computed so you never get a misleading answer.
function How it computes
The URL encoder decoder applies the published reference formula and rounds the result to a useful precision. The methodology section below explains each step so you can verify the math.
verified Trusted source
Reference values and constants come from an authoritative source. Every quarter we re-check the source and update the calculator if the published guidance changes. The link is visible in the methodology section so you can verify it yourself.
tips_and_updates Read it like this
Read the headline number first, then open the breakdown card to see how each input contributed. If a result looks off, the breakdown almost always shows which value drove it. Adjust that input and recalculate — the answer updates instantly.
Interpretation guide
| Situation | Action |
|---|---|
| Value going into a query string | Encode it |
| %xx soup from logs/analytics | Decode it |
| Full URL with structure | Encode only the components, not the separators |
Formula & methodology
Formula: Encode: unsafe byte → %HH (UTF-8, RFC 3986); decode reverses %HH sequences
- Choose encode or decode and paste your text.
- Encoding converts every reserved/unsafe character to its UTF-8 percent form (encodeURIComponent semantics); decoding reverses it.
Worked example — live-verified: "hello world?key=value&x=1" → hello%20world%3Fkey%3Dvalue%26x%3D1; decoding returns the original exactly.