Skip to content

URL with special characters example | Code

  • by

A URL is composed of a limited set of characters belonging to the US-ASCII character set. These characters include digits (0-9), letters(A-Z, a-z), and a few special characters ("-", ".", "_", "~").

URL Encoding of Special Characters

When these characters are not used in their special role inside a URL, they must be encoded.

CharacterCode Points (Hexadecimal)Code Points (Decimal)
Dollar (“$”)2436
Ampersand (“&”)2638
Plus (“+”)2B43
Comma (“,”)2C44
Forward slash/Virgule (“/”)2F47
Colon (“:”)3A58
Semi-colon (“;”)3B59
Equals (“=”)3D61
Question mark (“?”)3F63
‘At’ symbol (“@”)4064

URL with special characters example

HTML example code. There are several ways to accomplish the correct URL encoding. Easy way use JavaScript encodeURIComponent() function.

<!DOCTYPE html>
<html>
<body>

  <script>
    var str = "https://eyehunt.com/[email protected]&password=123";

    console.log(encodeURIComponent(str));

  </script>
</body>
</html>

Output:

URL with special characters example

URL encoding to handle special characters in a document URI

URL encoding is often required to convert special characters (such as “/”, “&”, “#”, …), because special characters:

You have three options:

  • escape() will not encode: @*/+
  • encodeURI() will not encode: ~!@#$&*()=:/,;?+'
  • encodeURIComponent() will not encode: ~!*()'

But in your case, if you want to pass a URL into a GET parameter of another page, you should use escape or encodeURIComponent, but not encodeURI.

Encode a URL using JavaScript such that it can be put into a GET string?

var myUrl = "http://example.com/index.html?param=1&anotherParam=2";

Check out the built-in function encodeURIComponent(str) and encodeURI(str).

var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl);

Do comment if you have any doubts or suggestions on this JS char topic.

Note: The All JS Examples codes are tested on the Firefox browser and the Chrome browser.

OS: Windows 10

Code: HTML 5 Version

Leave a Reply

Your email address will not be published. Required fields are marked *