Short version . Use decodeURIComponent().
Longer version . You can use JavaScript in older versions unescape(), but it was deprecated since it only works for the LATIN1 / ISO8859-1 code, so you really want to use decodeURIComponent()one that is supported by all modern browsers.
var c = decodeURIComponent("%2Fu%2F2069290%2F"));
source
share