x
 
<!DOCTYPE html>
<html>
<body>
<script>
var str="Need tips? Visit W3School!";
var str_esc=escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))
</script>
</body>
</html>