The charCodeAt() मेथड दिए गए इंडेक्स पर कैरेक्टर के यूनिकोड वैल्यू को दर्शाने वाला नंबर देता है। यूनिकोड कोड अंक 0 से 1,114,111 तक होते हैं। पहले 128 यूनिकोड कोड अंक ASCII वर्ण एन्कोडिंग का सीधा मेल हैं।
निम्न पैरामीटर charCodeAt(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>