You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

This function replaces HTML escapes with their corresponding Unicode characters.

Syntax
unescapeHTML(text) #Output: Text
Examples
Parser expressionDescription
unescapeHTML("JWT & Jira = <3")

This example returns

JWT & Jira = <3

Additional information

Parameters used in this function

ParameterInput (data type)Description
text

TEXT

Any given text that might contain escaped HTML characters.
Output

This function returns a TEXT

If you want to achieve the opposite try using escapeHTML() instead.