Encode and decode URL-safe strings. Essential for query parameters, form data, and web development.
Input: hello world!
hello world!
Output: hello%20world%21
hello%20world%21
Input: hello%20world%21
Output: hello world!
Open tool →