URL Encoder & Decoder
Encode special characters for URLs or decode percent-encoded strings.
Ad Space
URL Encoding Guide
URL encoding (percent-encoding) replaces unsafe characters with a % followed by two hex digits. For example, a space becomes %20 and an ampersand becomes %26.
When to Use
- Query parameter values containing special characters
- File paths with spaces or Unicode characters
- Form data submitted via GET requests