الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <script> let str = 'ABCD'; document.write(str.charCodeAt() + '<br>'); // 65 <= chartAt(0) تساوي chartAt() document.write(str.charCodeAt(0) + '<br>'); // 65 هو A يونيكود الحرف document.write(str.charCodeAt(1) + '<br>'); // 66 هو B يونيكود الحرف document.write(str.charCodeAt(2) + '<br>'); // 67 هو C يونيكود الحرف document.write(str.charCodeAt(3) + '<br>'); // 68 هو D يونيكود الحرف document.write(str.charCodeAt(4) + '<br>'); // NAN يونيكود نص فارغ هو </script> </body> </html>