Result:
URL Parameter Parser
About URL Encoding
URL Encoding converts characters into a format that can be transmitted over the Internet. Only alphanumeric characters and some special characters ($-_.+!*'(),) can be used unencoded within a URL.
encodeURI() - Encodes a complete URL but leaves functional characters like :, /, ?, &, = intact.
encodeURIComponent() - Encodes individual URI components, including these special characters.
Use the component version when encoding query string parameters or values that might contain special characters.