>웹 프론트엔드 >HTML 튜토리얼 >문자의 유니코드 값을 나타내는 숫자를 어떻게 반환하나요?

문자의 유니코드 값을 나타내는 숫자를 어떻게 반환하나요?

WBOY
WBOY앞으로
2023-09-14 08:17:02999검색

문자의 유니코드 값을 나타내는 숫자를 어떻게 반환하나요?

charCodeAt() 메서드는 지정된 인덱스에 있는 문자의 유니코드 값을 나타내는 숫자를 반환합니다. 유니코드 코드 포인트 범위는 0부터 1,114,111까지입니다. 처음 128개의 유니코드 코드 포인트는 ASCII 문자 인코딩과 직접적으로 일치합니다.

charCodeAt(index)는 다음 매개변수를 지원합니다:

  • index - 0과 문자열 길이에서 1을 뺀 값 사이의 정수, 지정되지 않은 경우 기본값은 0입니다.

다음 코드를 실행하여 문자의 유니코드 값을 나타내는 숫자를 반환할 수 있습니다.

<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>

위 내용은 문자의 유니코드 값을 나타내는 숫자를 어떻게 반환하나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제