1. 程式人生 > >JS字符串.字符 _ASC碼_互轉

JS字符串.字符 _ASC碼_互轉

color js字符串 spa write rom www 字符串 arc string

1、https://www.jb51.net/article/43534.htm

<script>
str="A";
code = str.charCodeAt(); 
str2 = String.fromCharCode(code);
str3 = String.fromCharCode(0x60+26);
document.write(code+‘<br />‘);
document.write(str2+‘<br />‘);
document.write(str3);
</script>

2、

3、

4、

5、

JS字符串.字符 _ASC碼_互轉