JavaScript 参考手册
JavaScript charCodeAt() 方法
返回字符串第一个字符的 Unicode 编码
源代码:
点击运行 »
<p id="demo">单击按钮显示字符串的第一个字符的编码。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var str = "HELLO WORLD"; var n = str.charCodeAt(0); document.getElementById("demo").innerHTML = n; } </script>
运行结果:
点击运行 »