Documentation and Books

Recent site activity

Web Development‎ > ‎JavaScript‎ > ‎

How to convert a String from URL encoding?

You can do this in the following way:

  function convert() {
alert(unescape("It%27s%20me%21"));
}

Executing this function will result in the following alert message:

  It's me!