🔗
URL Encoder & Decoder
Encode text to URL format or decode URL-encoded strings.
Results will appear here
💡 How to Use
Switch to 'URL Encode' tab and type text to instantly convert it to URL-safe format. Use 'URL Decode' to restore encoded strings to original text. Handles Korean, spaces, special characters, and other non-URL-safe characters. Useful for building query parameters, API requests, and shareable links.
Related Tools
FAQ
What is URL encoding?▼
URL encoding converts characters that are not URL-safe (spaces, special chars, non-ASCII) into %XX format. For example, a space becomes '%20'.
What's the difference between encodeURI and encodeURIComponent?▼
encodeURI encodes a full URL but preserves :, /, ?. encodeURIComponent encodes all special characters, making it ideal for query parameter values. This tool uses encodeURIComponent.