Codificator Viae
URL Encoder
Not every character survives the road to Rome.
Encode text for safe use in URLs (percent-encoding) or decode encoded strings back to readable text. Useful for query parameters, API debugging, and form data.
Every road led to Rome, but not every character survives a journey through the web. Encode what the path cannot carry plainly.
Related tools
How to use
- Paste the text or encoded URL component.
- Click Encode or Decode.
- Copy the result.
FAQ
- What is percent-encoding?
- Reserved and non-ASCII characters are replaced with % followed by two hexadecimal digits, so URLs remain valid.
- Should I encode an entire URL?
- Usually you encode individual query values or path segments, not the whole URL including :// and ?.
- Is my input uploaded?
- No. Encoding and decoding run in your browser.