HTML数値文字参照またはHTML文字実体参照を含む文字列をデコードし、デコードされた文字列を返します。
文字定数、変数または式を指定します。
&#nnn;
&#Xnnn;
x1=htmldecode('not a <tag>');
not a <tag>
x2=htmldecode('&');
'&'
x3=htmldecode ('ABC');
'ABC'
x3=htmldecode ('©®™');