如何返回一个指示字符的 Unicode 值的数字?


charCodeAt() 方法返回一个数字,该数字指示给定索引处的字符的 Unicode 值。Unicode 编码点范围为 0 到 1,114,111。前 128 个 Unicode 编码点可以直接匹配 ASCII 字符编码。

charCodeAt(index) 支持以下参数 −

  • index − 一个介于 0 和字符串长度减 1 之间的整数;如果未指定,则默认为 0。

你可以尝试运行以下代码,以便返回一个数字,指示字符的 Unicode 值 −

<html>
   <head>
      <title>JavaScript String charCodeAt() Method</title>
   </head>

   <body>
      <script>
         var str = new String( "This is string" );
         document.write("str.charCodeAt(0) is:" + str.charCodeAt(0));
         document.write("<br />str.charCodeAt(1) is:" + str.charCodeAt(1));
         document.write("<br />str.charCodeAt(2) is:" + str.charCodeAt(2));
         document.write("<br />str.charCodeAt(3) is:" + str.charCodeAt(3));
         document.write("<br />str.charCodeAt(4) is:" + str.charCodeAt(4));
         document.write("<br />str.charCodeAt(5) is:" + str.charCodeAt(5));
      </script>
   </body>
</html>

更新于: 23-6-2020

301 次浏览

开启您的 职业

完成课程后获得认证

开始学习
广告