When to Use URL Encoding
Query Parameters
When passing user input as query parameters:
``
https://example.com/search?q=hello%20world
`
Form Submissions
HTML forms with application/x-www-form-urlencoded
encoding use URL encoding.Path Segments
File names or resource identifiers with special characters need encoding.URL Encoding Table
| Character | Encoded |
|---|
| Space | %20 |
| ! | %21 |
| " | %22 |
| # | %23 |
| $ | %24 |
| & | %26 |
| + | %2B |
JavaScript Methods
encodeURI() - Encode full URLs
encodeURIComponent() - Encode URL components
decodeURI() - Decode full URLs
decodeURIComponent()` - Decode URL components