'unescape()' Example
<html> <body> <button onclick="alert(escape('www.java2s.com'));">Escape function</button> <button onclick="alert(unescape('www.java2s.com%20www.java2s.com%21'));">Unescape function</button> </body> </html>