decodeURIComponent() function in JavaScript


The decodeURIComponent() function accepts a string value representing an encoded URI (Uniform Resource Identifier) decodes it and returns the result.

Syntax

Its Syntax is as follows

encodeURIComponent('http://www.qries.com/');

Example

 Live Demo

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var encodedData = encodeURIComponent('http://www.qries.com/?x=шеллы');
      document.write("Encoded Data: "+encodedData);
      document.write("<br>");
      var decodedData = decodeURIComponent(encodedData);
      document.write("Decoded Data: "+decodedData);
   </script>
</body>
</html>

Output

Encoded Data: http%3A%2F%2Fwww.qries.com%2F%3Fx%3D%D1%88%D0%B5%D0%BB%D0%BB%D1%8B
Decoded Data: http://www.qries.com/?x=шеллы

Updated on: 25-Jun-2020

140 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements