#x是什么编码以及转换方法(GB2312UNICODE)
常在一些网站源码中看到&#x开头的内容,这是转化成unicode编码后的汉字,我到了一种将这种编码转换成汉字的方法,记录在这里以便有人使用。将下面的代码复制出来保存成html格式,使用浏览器打开就可以使用了。
<html>
<head>
<title>GB2312 UNICODE转换工具</title>
<div align=center>
<center>
<table border=0 cellpadding=0 cellspacing=0 width=600 id=AutoNumber1 height=26>
<tr>
<td width=100% height=26>
<p align=center><font face=黑体 size=5 color=#FF0000>GB2312 UNICODE 转换工具</font></p>
<p>使用方法:</p>
<p>  在下面的文本框中输入中文文字,按“TO UNICODE”,即可将其转化为UNICODE字符。</p>
unicode汉字
<p>  再按“TO GB2312”,即可将其还原为简体中文。</td>
</tr>
</table>
</center>
</div>
<p align=center>
<textarea cols=82 rows=10 id=code>
</textarea> </p>
<p align=center>
<input type=button onclick=encode(code,this) value="TO UNICODE">
<script>
var mode="zhuan";
function encode(obj,btn){
if(mode=="zhuan"){
obj.value=place(/[^\u0000-\u00FF]/g,function($0){return escape($0).replace(/(%u)(\w{4})/gi,"&#x$2;")});
btn.value="TO GB2312";
mode="huan";
}else{
obj.value=unescape(place(/&#x/g,'%u').replace(/;/g,''));
btn.value="TO UNICODE";
mode="zhuan";
}
}
</script></p>
</body></html>
相关日志
Firefox 9正式发布:JavaScript提速30%
微软9月深入展示Win8和IE10
jQuery Ui IE6/7 下 radio选择的怪异问题
谷歌Chrome JavaScript代码执行速度提高64%

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。