Variable: script-representative-chars
script-representative-chars is a variable defined in character.c.
Value
Large value
((latin 65 90 97 122 192 256 384 7680) (phonetic 592 643) (greek 937)
(coptic 994 11392 11438) (cyrillic 1071) (armenian 1329)
(hebrew 1488) (vai 42240) (arabic 1576 1729) (syriac 1808)
(thaana 1932) (devanagari 2325) (bengali 2453) (gurmukhi 2581)
(gujarati 2709) (oriya 2837) (tamil 2965) (telugu 3093)
(kannada 3221) (malayalam 3349) (sinhala 3477) (thai 3607) (lao 3749)
(tibetan 3904) (burmese 4096) (georgian 4307) (ethiopic 4616)
(cherokee 5046) (canadian-aboriginal 5312) (ogham 5775) (runic 5792)
(tagalog 5888) (hanunoo 5920) (buhid 5952) (tagbanwa 5984)
(khmer 6016) (mongolian 6182) (limbu 6401 6432 6454)
(buginese 6656 6686) (balinese 6931 6965 7006)
(sundanese 7050 7083 7364) (batak 7106 7143 7167)
(lepcha 7168 7204 7232) (tai-le 6480) (tai-lue 6528)
(tai-tham 6688 6741 6753 6784) (symbol . [8220 8704 9472])
(braille 10240) (tifinagh 11568 11616)
(ideographic-description 12272)
(cjk-misc 12302 65292 12298 65289 23376) (kana 12363)
(bopomofo 12549) (kanbun 12701) (han 13328 19984 23383 65072 63744)
(yi 41608) (syloti-nagri 43015 43043 43052)
(rejang 43312 43335 43359) (javanese 43407 43444 43466) (cham 43520)
(tai-viet 43648) (meetei-mayek 43968 44003 43744 43766)
(hangul 44032) (linear-b 65536) (aegean-number 65792)
(ancient-greek-number 65856) (ancient-symbol 65936)
(phaistos-disc 66000) (lycian 66176) (carian 66208)
(old-italic 66304) (gothic 66352 66376) (ugaritic 66432)
(old-permic 66384) (old-persian 66464) (deseret 66560)
(shavian 66640) (osmanya 66688) (osage 66736) (elbasan 66816)
(caucasian-albanian 66864) (vithkuqi 66928) (todhri 67008 67053)
(linear-a 67072) (cypriot-syllabary 67584) (palmyrene 67680)
(nabataean 67712) (phoenician 67840) (lydian 67872) (sidetic 67904)
(kharoshthi 68096) (manichaean 68288) (avestan 68352)
(old-turkic 68608 68609) (hanifi-rohingya 68864 68900 68921)
(garay 68944 68976 68938 68929) (yezidi 69248) (old-sogdian 69376)
(sogdian 69424) (chorasmian 69552) (elymaic 69600) (old-uyghur 69488)
(brahmi 69651 69701 69714 69733) (kaithi 69773 69808 69821)
(chakma 69891 69927) (mahajani 69968) (sharada 70033 70067 70093)
(khojki 70144) (khudawadi 70320) (grantha 70421 70462 70516)
(tulu-tigalari 70528 70584) (newa 70656) (tirhuta 70785 70799 70864)
(siddham 71054 71087 71124) (modi 71182 71216 71253) (takri 71296)
(dogra 71680) (warang-citi 71841) (dives-akuru 71936)
(nandinagari 72096) (zanabazar-square 72192) (soyombo 72272)
(pau-cin-hau 72384) (sunuwar 72640 72689) (bhaiksuki 72704)
(marchen 72818) (masaram-gondi 72960) (gunjala-gondi 73056)
(tolong-siki 73136) (makasar 73440 73463) (kawi 73476 73537 73551)
(cuneiform 73728) (cypro-minoan 77712) (egyptian 77824)
(gurung-khema 90368 90398 90417) (mro 92736) (tangsa 92784 92864)
(bassa-vah 92880) (pahawh-hmong 92945) (kirat-rai 93507 93539 93553)
(medefaidrin 93760) (beria-erfe 93856) (tangut 94208)
(khitan-small-script 101120) (nushu 110960)
(duployan-shorthand 113696)
(znamenny-musical-notation 118528 118594 118608)
(byzantine-musical-symbol 118784) (musical-symbol 119040)
(ancient-greek-musical-notation 119296) (kaktovik-numeral 119488)
(tai-xuan-jing-symbol 119552) (counting-rod-numeral 119648)
(nyiakeng-puachue-hmong 123136) (toto 123536 123541 123565)
(wancho 123584 123624 123631) (nag-mundari 124112 124139 124144)
(ol-onal 124368 124402) (tai-yo 124640) (mende-kikakui 124944 125094)
(adlam 125184 125251) (indic-siyaq-number 126065 126111)
(ottoman-siyaq-number 126209 126247) (mahjong-tile 126976)
(domino-tile 127024) (emoji 127744 128512)
(chess-symbol . [129536 129639]))
Documentation
Alist of scripts vs the representative characters.
Each element is a cons (SCRIPT . CHARS). SCRIPT is a symbol representing a script or a subgroup of a script. CHARS is a list or a vector of characters. If it is a list, all characters in the list are necessary for supporting SCRIPT. If it is a vector, one of the characters in the vector is necessary. This variable is used to find a font for a specific script.
Source Code
// Defined in /usr/src/emacs/src/character.c
DEFVAR_LISP ("script-representative-chars", Vscript_representative_chars,
doc: /* Alist of scripts vs the representative characters.
Each element is a cons (SCRIPT . CHARS).
SCRIPT is a symbol representing a script or a subgroup of a script.
CHARS is a list or a vector of characters.
If it is a list, all characters in the list are necessary for supporting SCRIPT.
If it is a vector, one of the characters in the vector is necessary.
This variable is used to find a font for a specific script. */);