Encode text to URL-safe format or decode a URL-encoded string back to readable text.
About URL Encoding/Decoding
URL encoding converts characters into a format that can be transmitted over the Internet. It replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits. URL decoding reverses this process to restore the original text.
Examples:
Original: Hello World!
Encoded: Hello%20World%21
Encoded: https%3A%2F%2Fexample.com%2F%3Fq%3Dtest
Decoded: https://example.com/?q=test