WMMEGA FW >= 2.1179
URL-decode a string
Decodes any %## encoding in the given string. Plus symbols ('+') are decoded to a space character.
$data: String to be decoded
String with certain characters replaced.
<? $data="%23G%282BH%29" $send=urldecode($data); print($send); // #G(2BH) ?>
urlencode() - Encode a string
htmlspecialchars() - Format special characters