1,068 bytes added
, 21:06, 17 November 2017
<div style="font-size:30px">'''UNESCAPE (Text)'''</div><br/>
*<math>Text</math> is any text.
==Description==
*This function computes a new string.
*In <math>UNESCAPE (Text)</math>,<math>Text</math> is any text to be decoded.
*The unescape() function computes a new string in which hexadecimal escape sequences are replaced with the character that it represents. *The escape sequences might be introduced by a function like escape.
*The unescape function is a property of the global object.
*Usually, decodeURI or decodeURIComponent are preferred over unescape.
*So in the result a new string in which certain characters have been unescaped.
==Examples==
#unescape('abc123') = abc123
#unescape('%E4%F6%FC') = äöü
#unescape('%u0107') = ć
==See Also==
*[[Manuals/calci/FOURTHOF | FOURTHOF]]
*[[Manuals/calci/HALFOF | HALFOF ]]
*[[Manuals/calci/SEVENTHOF | SEVENTHOF ]]
==References==
*[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/unescape UNESCAPE]
*[[Z_API_Functions | List of Main Z Functions]]
*[[ Z3 | Z3 home ]]