$WBUNESC - decode URL-encoded string

Availability
$WBUNESC  is available for use with all WBSP commands:

Syntax
$WBUNESC{URLEncodedString}
$WBUNESC[URLEncodedString]

Parameters
URLEncodedString - any string encoded using $WBESC, $WBVC, $WBFC

Returns
Decoded value of URLEncodedString.

Example

<!--
[FormFields]
wb_command=r
-->
<!--WB_BeginTemplate-->
<html>
<head>
<title>WBUNESC example</title>
</head>
<body>
Encoded text: %E4%DF%FC%E2<br>
WBUNESC:($WBUNESC[%E4%DF%FC%E2])<br>
</body>
</html>

After running this example the HTML code of resulting page in browser, may look like this:



<html>
<head>
<title>WBUNESC example</title>
</head>
<body>
Encoded text: %E4%DF%FC%E2<br>
WBUNESC:(äßüâ)<br>
</body>
</html>