URL Encoder/Decoder
Professional URL encoding tool supporting multiple types (URI Component, Full URI, HTML, Base64), URL analysis, and file operations.
Encoding Options
URI Component
Input Text/URL
Output Encoded Text
URL Analysis
| Protocol | https: |
| Hostname | example.com |
| Port | default |
| Path | /search |
| Query | ?q=hello%20world&category=web%20development |
| Fragment | None |
Quick Examples
- Simple URL with spaceshttps://example.com/search?q=hello world
- URL with special charactershttps://example.com/path?name=John&Doe&email=john@...
- Complex query stringhttps://api.example.com/search?query=web developme...
- URL with Unicodehttps://example.com/search?q=programmación&lang=es...
- HTML with special chars<script>alert("Hello & welcome!");</script>
Encoding Tips
• Use URI Component for query parameters
• Use Full URI for complete URLs
• Use HTML Entities for web content
• Always decode exactly with the same method used to encode
• Test with special characters: spaces, &, +, %, etc.