URL Encoder Decoder
URL Encoder / Decoder helps you convert URLs into a safe and readable format by encoding or decoding special characters. This tool is useful for web developers, SEO professionals, and anyone working with URLs, query strings, or API parameters. Encode URLs to ensure compatibility and decode them back to their original form easily.
27
Views
3.7
Rating
Fast
Speed
Advertisement
π URL Components
Protocol
Specifies how data is transferred (http, https, ftp)
https://
Domain
Website address or server location
example.com
Path
Location of the resource on the server
/folder/file.html
Query String
Parameters passed to the resource
?id=123&name=test
Fragment
Specific section within the resource
#section-name
Input
Characters:
0
Lines:
1
Encoded:
0%
Output
Characters:
0
Size Change:
0%
Time:
0ms
Quick Actions
Encode URL
Convert spaces to %20, etc.
Decode URL
Convert %20 to spaces, etc.
Full Encode
Encode all special chars
Full Decode
Decode all % sequences
HTML Encode
Convert < to <, etc.
HTML Decode
Convert < to <, etc.
Common Encoding Examples
| Character | Description | URL Encoded | HTML Encoded |
|---|---|---|---|
| Space | Blank space character | %20 | |
| < | Less than sign | %3C | < |
| > | Greater than sign | %3E | > |
| & | Ampersand | %26 | & |
| " | Double quote | %22 | " |
| ' | Single quote | %27 | ' |
| # | Hash/Pound sign | %23 | # |
| ? | Question mark | %3F | ? |
| = | Equals sign | %3D | = |
| @ | At symbol | %40 | @ |
| Γ© | Accented e | %C3%A9 | é |
| δΈ | Chinese character | %E4%B8%AD | 中 |
Advertisement