'unescape()' Example : unescape « Javascript Methods « JavaScript Reference

'unescape()' Example

    
<html>
<body>
<button onclick="alert(escape('Hello World!'));">Escape function</button>
<button onclick="alert(unescape('Hello%20World%21'));">Unescape function</button>
</body>
</html>

    
      
      








Related examples in the same category

1.'unescape()' Syntax, Parameters and Note