code:var s="193"; var c=parseInt(s); var s2=String.fromCharCode(c); Debug.Trace(s2);
code:function htmldecode(encodedString){ return encodedString.replace(/&#([0-9]+);/g, function(a,b){ return String.fromCharCode( b); } ); }
code:htmldecode("Hello World"); //returns "Hello World"