charCodeAt() 메서드는 지정된 인덱스에 있는 문자의 유니코드 값을 나타내는 숫자를 반환합니다. 유니코드 코드 포인트 범위는 0부터 1,114,111까지입니다. 처음 128개의 유니코드 코드 포인트는 ASCII 문자 인코딩과 직접적으로 일치합니다.
charCodeAt(index)는 다음 매개변수를 지원합니다:
다음 코드를 실행하여 문자의 유니코드 값을 나타내는 숫자를 반환할 수 있습니다.
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!