URL Encoder/Decoder
Encode URLs for safe transmission, decode URL-encoded strings, or parse URLs into their components.
Options
URL Encoding: Standard URL encoding. Spaces become %20, special characters are percent-encoded.
Text to Encode
Output
Enter text to encode
Examples
Encoding Examples
Input:
Hello World!
URL Encoded:
Hello%20World%21
Input:
<script>alert('test')</script>
HTML Encoded:
<script>alert('test')</script>
URL Parsing Examples
Example URL:
https://user:[email protected]:8080/path/to/page?param1=value1¶m2=value2#section
Parses into:
scheme, host, port, user, pass, path, query, fragment