(function(){var unicode={'dec2hex':function(ts){return(ts+0).toString(16).toUpperCase()},'dec2hex2':function(ts){var hexequiv=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");return hexequiv[(ts>>4)&0xF]+hexequiv[ts&0xF]},'dec2hex4':function(ts){var hexequiv=new Array("0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F");return hexequiv[(ts>>12)&0xF]+hexequiv[(ts>>8)&0xF]+hexequiv[(ts>>4)&0xF]+hexequiv[ts&0xF]},'convertCP2Char':function(ts){var outputString='';ts=ts.replace(/^\s+/,'');if(ts.length==0)return"";ts=ts.replace(/\s+/g,' ');var listArray=ts.split(' ');for(var i=0;i>10))+String.fromCharCode(0xDC00|(n&0x3FF))}else outputString+='!erreur '+unicode.dec2hex(n)+'!'}return(outputString)},'convertCP2DecNCR':function(ts){var outputString="";ts=ts.replace(/^\s+/,'');if(ts.length==0)return"";ts=ts.replace(/\s+/g,' ');var listArray=ts.split(' ');for(var i=0;i0xFFFF)outputString+='!erreur '+unicode.dec2hex(b)+'!';if(haut!=0){if(0xDC00<=b&&b<=0xDFFF){outputString+=unicode.dec2hex(0x10000+((haut-0xD800)<<10)+(b-0xDC00))+' ';haut=0;continue}else{outputString+='!erreur '+unicode.dec2hex(haut)+'!';haut=0}}if(0xD800<=b&&b<=0xDBFF)haut=b;else outputString+=unicode.dec2hex(b)+' '}return(outputString.replace(/ $/,''))},'convertDecNCR2CP':function(ts){var outputString='';ts=ts.replace(/\s/g,'');var listArray=ts.split(';');for(var i=0;i0)outputString+=' ';var n=parseInt(listArray[i].substring(2,listArray[i].length),10);outputString+=unicode.dec2hex(n)}return(outputString)}};if(!String.prototype.char2dec)String.prototype.char2dec=function(){return unicode.convertCP2DecNCR(unicode.convertChar2CP(this))};if(!String.prototype.dec2char)String.prototype.dec2char=function(){return unicode.convertCP2Char(unicode.convertDecNCR2CP(this))}})();