[简单]js汉字与Unicode互转
最近代码里面出现了Unicode字符,如\u4E2D\u6587\u6D4B\u8BD5,eclipse在properties文件中会自动把Unicode转换为汉字,但是我不想每次新建properties 文件,而是去网上看下有什么工具支持汉字与Unicode互转,无奈下载了好几个,都被杀毒软件干掉了,自己写swing界面太丑,看不下去,在线版的万一离线怎么用,最后找了个js转换的代码,改了下样式,使用效果还不错。
参考了http://www.codefans.net/jscss/code/4794.shtml的代码,如下:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>汉字unicode互转</title> <style> * { margin: 0; padding: 0; } body { margin: 0 auto; text-align: center; } .hiddenClass{ display:none; } .textareaClass { width: 80%; min-height: 300px; resize: none; border: 1px solid #bdf3d4; } </style> <script Language=Javascript> var classObj= { ToUnicode:function(str) { return escape(str).replace(/%/g,"\\").toLowerCase(); }, UnUnicode:function(str) { return unescape(str.replace(/\\/g, "%")); }, copyingTxt:function(str) { document.getElementById(str).select(); document.execCommand("Copy"); } } </script> </head> <body> <p class='hiddenClass'>代码复制自http://www.codefans.net/jscss/code/4794.shtml</p> <textarea id=codes class="textareaClass"></textarea> <br> <br> <input type=button value=Unicode加密 onclick=javascript:codes.value=classObj.ToUnicode(codes.value)> <input type=button value=Unicode解密 onclick=javascript:codes.value=classObj.UnUnicode(codes.value)> <input type=button value=复制文本 onclick=javascript:classObj.copyingTxt('codes')> <input type=button value=清空内容 onclick=javascript:codes.value=""> </body> </html>
也欢迎各位推荐下好用的汉字与unicode编码转换的小软件,最好是不用安装的那种。谢谢。
附件是一个汉字与unicode互转的小软件,本地杀毒软件通过。
全文完。
相关推荐
86981633 2019-11-04
86530296 2020-11-10
周游列国之仕子 2020-09-21
88540591 2020-06-16
89411051 2020-06-14
mjshldcsd 2020-06-14
88384957 2020-06-12
84590091 2020-06-08
88540591 2020-06-04
88540591 2020-06-01
81214051 2020-06-01
84590091 2020-05-03
81214051 2020-04-25
honghao0 2020-04-24
84590091 2020-04-22
85271041 2020-04-10
88384957 2020-03-27