Sharepoint encodes the URLs with unicode, so we’ll see many \u002f
to represent /
.
If you want to decode those unicode strings, you can use this short code:
unescape(JSON.parse('"' + s.replace('"', '\\"') + '"'))
Sharepoint encodes the URLs with unicode, so we’ll see many \u002f
to represent /
.
If you want to decode those unicode strings, you can use this short code:
unescape(JSON.parse('"' + s.replace('"', '\\"') + '"'))