Edit This Code:
<!DOCTYPE html>
<html>
<body>

<script>

var str="Need tips? Visit W3Schools!";
var str_esc=escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))

</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy