// 数値参照を実体で置換.js
// 選択した範囲(していなければ全体)の (10進)・ (16進)を置換。制御文字・サロゲートペア可
if(!document.selection.Text)document.selection.SelectAll();
document.selection.Text=document.selection.Text.replace(/&#(\d+|x[\dA-F]+);/ig,function(txt,cp){
if(cp.charAt(0)=="x")cp="0"+cp;
if(cp<0||cp>0x10FFFF)return txt;
if(cp<=0xFFFF){
return String.fromCharCode(cp);
}else{
cp-=0x10000;
return String.fromCharCode((cp>>10)+0xD800,(cp%0x400)+0xDC00);
}
});