URL Encode / Decode
Percent-encode text for URLs, or decode percent-encoded strings back to plain text. Leaves forward slashes unencoded for path use.
Input
Text
Output
EncodedDecoded text
Privacy FirstWorks OfflineNo Uploads
FAQ
- Which characters are encoded?
- Spaces, control characters, and the reserved symbols #%<>?[]^`{|} are percent-encoded. Letters, digits, and punctuation like / @ . are left as-is.
- What can I use this for?
- Encoding query parameters, path segments, and form data. Decoding URLs from logs, emails, or API responses.
- Is my data uploaded anywhere?
- No. All encoding and decoding happens locally in your browser.