// <![CDATA[ var begin = parseInt('4e00',16); var end = parseInt('9fa5',16); //alert(end.toString(16)); //alert(begin-end); function getObj(id) { return document.getElementById(id); } function showCharList(begin, end) { getObj('txtBegin').value = begin; getObj('txtEnd').value = end; btnQuery_onclick(); } function btnQuery_onclick() { var begin = parseInt(getObj('txtBegin').value); var end = parseInt(getObj('txtEnd').value); if (isNaN(begin) || isNaN(end) || end < begin) { alert('数字输入错误!请检查!'); return; } getObj('spanFontSize').style.display = 'none'; getObj('spanLoading').style.display = 'inline'; var str = ''; for (var i = begin; i <= end; i++) { str += String.fromCharCode(i); } getObj('txtCharContent').value = str; getObj('spanLoading').style.display = 'none'; getObj('spanFontSize').style.display = 'inline'; getObj('spanNum').innerHTML = str.length; } function showNum16() { var num = parseInt(document.getElementById('txt10a').value); document.getElementById('txt16a').value = num.toString(16); } function showNum10() { var num = parseInt(document.getElementById('txt16b').value, 16); document.getElementById('txt10b').value = num.toString(10); } function showChar() { var num = parseInt(document.getElementById('txtNum1').value); if (isNaN(num)) { document.getElementById('txtChar1').value = ''; } else { document.getElementById('txtChar1').value = String.fromCharCode(num); } } function showCharNum() { var str = document.getElementById('txtChar2').value; var txtNum2 = document.getElementById('txtNum2'); txtNum2.value = ''; for (var i = 0; i < str.length; i++) { txtNum2.value += str.charCodeAt(i) + ';'; } } function setTextFontSize(o, fontSize) { getObj('txtCharContent').style.fontSize = fontSize + 'px'; getObj('aFontSmall').style.color = 'gray'; getObj('aFontMiddle').style.color = 'gray'; getObj('aFontBig').style.color = 'gray'; o.style.color = 'blue'; } // ]]> 进制转换 10进制 > 16进制 16进制 > 10进制 编码转换 数字 > 字符 字符 > 数字 HTML中可使用 囍 表示 囍 字符编码表 名称 范围 数量 查看 汉字 19968~40869 20902 查看 常用符号、数字、字符 33~126 94 查看 数字 48~57 10 查看 大写字母 65~90 26 查看 小写字母 97~122 26 查看 更多参考资料:编码表 字符: ~ 小字 中字 大字 共0个 加载中... [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]