Maison >interface Web >tutoriel HTML >Comment renvoyer un nombre représentant la valeur Unicode d'un caractère ?
La méthode
charCodeAt() renvoie un nombre représentant la valeur Unicode du caractère à l'index donné. Les points de code Unicode vont de 0 à 1 114 111. Les 128 premiers points de code Unicode correspondent directement au codage des caractères ASCII.
charCodeAt(index) prend en charge les paramètres suivants :
Vous pouvez essayer d'exécuter le code suivant pour renvoyer un nombre représentant la valeur Unicode d'un caractère :
<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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!