About URL Encoding
URL encoding (percent-encoding) converts characters into a format that can be safely transmitted within a URL. Special characters are replaced with a percent sign followed by two hexadecimal digits.
For example, a space becomes %20 and an ampersand becomes %26. This ensures URLs are valid and unambiguous across all systems.