Skip to content
Related Articles
Open in App
Not now

Related Articles

JavaScript unescape() Function

Improve Article
Save Article
Like Article
  • Last Updated : 22 Dec, 2022
Improve Article
Save Article
Like Article

Prerequisite: JavaScript escape() Function

The Javascript unescape() function in JavaScript takes a string as a parameter and uses it to decode that string encoded by the escape() function. The hexadecimal sequence in the string is replaced by the characters they represent when decoded via unescape(). 

Syntax:

unescape(string)

Parameters: This function accepts a single parameter as mentioned above and described below:

  • string: This parameter holds the string that will be decoded. 

Return value: This function returns a decoded string. 

Note: This function only decodes the special characters, this function is deprecated. 

Example 1: In this example, we will decode a simple encoded content using the unescape() function.

javascript




<script>
    // Special character encoded with
    // escape function
    console.log(unescape("Geeks%20for%20Geeks%21%21%21"));
      
      
    // Print encoded string using escape() function
    // Also include exceptions i.e. @ and .
    console.log(unescape("To%20contribute%20articles%20contact"+
                    "%20us%20atreview-team@geeksforgeeks.org"));
</script>

Output:

Geeks for Geeks!!!
To contribute articles contact us at 
review-team@geeksforgeeks.org

More example codes for the above function are as follows: 

Example 2: In this example, we will decode a simple encoded content using the unescape() function.

javascript




<script>
    // Special character encoded with
    // escape function
    var str = escape("Geeks for Geeks!!!");
    console.log("Encoded : " + str);
      
    // unescape() function
    console.log("Decoded : " + unescape(str))
      
    // The exception
    // @ and . not encoded.
    str = escape("To contribute articles contact us" +
                    "at review-team@geeksforgeeks.org")
    console.log("Encoded : " + str);
      
    // unescape() function
    console.log("Decoded : " + unescape(str))
</script>

Output:

Encoded : Geeks%20for%20Geeks%21%21%21
Decoded : Geeks for Geeks!!!

Encoded : To%20contribute%20articles%20contact%20us%20at%20review-team@geeksforgeeks.org
Decoded : To contribute articles contact us at review-team@geeksforgeeks.org

Exceptions: @ – + . / * _ 

We have a complete list of Javascript Functions, to check those please go through Javascript Function Complete reference article.

Supported Browsers: 

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 3 and above
  • Mozilla Firefox 1 and above
  • Safari 1 and above
  • Opera 3 and above

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!