google-fonts-languages 0.7.2

Google Fonts script and language support data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
{
    "Adlm": {
        "id": "Adlm",
        "name": "Adlam",
        "status": "",
        "family": "African",
        "type": "alphabet",
        "summary": "Adlam (<span class='autonym'>𞤀𞤣𞤤𞤢𞤥 𞤆𞤵𞤤𞤢𞤪</span>) is an African bicameral alphabet, written right-to-left. Used for the Fulani (Fula, 65 million speakers) language in Guinea, which previously used Latin and Arabic. Created around 1989 by two teenage brothers, Ibrahima and Abdoulaye Barry. One of indigenous scripts for specific languages in West Africa, currently taught in Guinea, Nigeria, Liberia and other countries. Adlam has 28 letters, each in four forms. The unjoined variant is suitable for headlines and for educational content. The cursive variant, in which letters join the same way as in Arabic and N’Ko, is suitable for most texts. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Adlm",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G56860",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Adlm",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Adlam_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Adlam_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Adlm"
        }
    },
    "Afak": {
        "id": "Afak",
        "name": "Afaka",
        "status": "",
        "family": "American",
        "type": "syllabary",
        "summary": "Afaka is an American syllabary, written left-to-right. Was used for the Nenge creole language (also called Ndjuka or Eastern Maroon Creole), spoken in Suriname and French Guyana (about 22,000 speakers). Created around 1910 by Afaka Atumisi. No longer widely used. Has 56 letters. Afaka is the only known indigenous script for a creole English.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Afak",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Afak",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Afaka_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Afaka_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Afak"
        }
    },
    "Aghb": {
        "id": "Aghb",
        "name": "Caucasian Albanian",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Caucasian Albanian is a historical European bicameral alphabet, written left-to-right. Was used in the 5th–12th century CE for the Caucasian Albanian language, a dialect of Old Udi, in parts of present-day Azerbaijan and Dagestan. Probably based on Greek writing, supposedly devised by Mesrop Mashtots. Has 52 letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Aghb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G32223",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Aghb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Caucasian_Albanian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Caucasian_Albanian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Aghb"
        }
    },
    "Ahom": {
        "id": "Ahom",
        "name": "Ahom",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Ahom (<span class='autonym'>𑜒𑜑𑜪𑜨</span>) is a Southeast Asian abugida, written left-to-right. Was used in the 13th–18th century CE by the Tai Ahom community in India for the now-extinct Ahom language. Later largely replaced by the Assamese language and script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ahom",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G95570",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ahom",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Ahom_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Ahom_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ahom"
        }
    },
    "Arab": {
        "id": "Arab",
        "name": "Arabic",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Arabic (<span class='autonym'>العربية</span>) is a Middle Eastern abjad, written right-to-left (660 million users). 2nd- or 3rd-most used script in the world. Used for the Arabic language since the 4th century, and for many other languages, often in Islamic countries or communities in Asia, Africa and the Middle East, like Persian, Uyghur, Kurdish, Punjabi, Sindhi, Balti, Balochi, Pashto, Lurish, Urdu, Kashmiri, Rohingya, Somali, Mandinka, Kazakh (in China), Kurdish, or Azeri (in Iran). Was used for Turkish until 1928. Includes 28 basic consonant letters for the Arabic language, plus additional letters for other languages. Some letters represent a consonant or a long vowel, while short vowels are optionally written with diacritics. Variants include Kufi with a very simplified structure, the widely-used Naskh calligraphic variant, and the highly cursive Nastaliq used mainly for Urdu. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Arab",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G20596",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Arab",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Arabic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Arabic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Arab"
        }
    },
    "Aran": {
        "id": "Aran",
        "name": "Arabic (Nastaliq)",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Arabic (Nastaliq) is a Middle Eastern abjad, written right-to-left (250 million users). Default Arabic script variant for the Urdu language, also used for Persian and other languages in Afghanistan, India, Iran, and Pakistan. The Nastaliq variant of Arabic was developed in Persia (now Iran) in the 15th century. Highly cursive, connects a sequence of letters into clusters at a sloping angle. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Aran",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G20596",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Aran",
            "r12a": "https://r12a.github.io/scripts/links?iso=Aran"
        }
    },
    "Armi": {
        "id": "Armi",
        "name": "Imperial Aramaic",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Imperial Aramaic is a historical Middle Eastern abjad, written right-to-left. Was the script and language of the Persian Empire in 5th–3rd century BCE. Derived from the Phoenician script. Continued to be used until the 2nd century CE, and later evolved into Syriac, Nabataean, Palmyran and Hebrew (to which it is the closest).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Armi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G29567",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Armi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Imperial_Aramaic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Imperial_Aramaic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Armi"
        }
    },
    "Armn": {
        "id": "Armn",
        "name": "Armenian",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Armenian (<span class='autonym'>Հայոց գրեր</span>) is a European bicameral alphabet, written left-to-right (12 million users). Created around 405 CE by Mesrop Mashtots. Used for the Armenian language to this day. Was widespread in the 18th–19th centuries CE in the Ottoman Empire. Armenia uses a reformed spelling introduced in the Soviet Union, the Armenian diaspora mostly uses the original Mesropian orthography.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Armn",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G3334",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Armn",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Armenian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Armenian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Armn"
        }
    },
    "Avst": {
        "id": "Avst",
        "name": "Avestan",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "alphabet",
        "summary": "Avestan is a historical Middle Eastern alphabet, written right-to-left. Was used in the 5th–13th century CE for Avestan, an Eastern Iranian language. Developed during Iran’s Sassanid era. Was probably in everyday use, though the only surviving examples are religious texts called Avesta. Has 37 consonants and 16 vowels.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Avst",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G29021",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Avst",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Avestan_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Avestan_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Avst"
        }
    },
    "Bali": {
        "id": "Bali",
        "name": "Balinese",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Balinese (<span class='autonym'>ᬅᬓ᭄ᬱᬭᬩᬮᬶ</span>) is a Southeast Asian abugida, written left-to-right (5 million users). Used for the Balinese language on the Indonesian islands of Java and Bali, mostly for signage, traditional literature, and, on a limited scale, for new literature. Also used for Old Javanese and Sanskrit. Derived from Old Kawi, similar to Javanese. Has 47 letters. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bali",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26759",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bali",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Balinese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Balinese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bali"
        }
    },
    "Bamu": {
        "id": "Bamu",
        "name": "Bamum",
        "status": "",
        "family": "African",
        "type": "syllabary",
        "summary": "Bamum is an African syllabary, written left-to-right (0.4 million users). Used in Cameroon. Developed communally at the end of the 19th century at the instigation of the Bamum King Njoya. Initially was logographic, later evolved into a syllabary. Bamum is being revived after decline since the 1930s.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bamu",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G45398",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bamu",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bamu"
        }
    },
    "Bass": {
        "id": "Bass",
        "name": "Bassa Vah",
        "status": "",
        "family": "African",
        "type": "alphabet",
        "summary": "Bassa Vah is an African bicameral alphabet, written left-to-right. Used for the Bassa language spoken in Liberia, Sierra Leone, and by communities in Brazil and the Caribbean. Developed by Dr. Thomas Flo Lewis from a sign system used by the Bassa people to avoid slave traders, later suppressed by colonial powers, fell into disuse. Has 23 consonants, 7 vowels, and 5 tone diacritics.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bass",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G54402",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bass",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Bassa_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Bassa_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bass"
        }
    },
    "Batk": {
        "id": "Batk",
        "name": "Batak",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Batak (<span class='autonym'>ᯘᯮᯒᯖ᯲ ᯅᯖᯂ᯲</span>) is a Southeast Asian abugida, written vertically and horizontally left-to-right. Used for the Toba, Karo, Dairi, Mandailing, Simalungun, and Angkola languages used on the Indonesian island of Sumatra. Used since the 14th century, standardised in the 1850s. Revived recently after a decline since in the 20th century.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Batk",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G27226",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Batk",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Batak_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Batak_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Batk"
        }
    },
    "Beng": {
        "id": "Beng",
        "name": "Bangla (Bengali)",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Bangla (Bengali, Bengali-Assamese, <span class='autonym'>বাংলা বর্ণমালা</span>) is an Indic abugida, written left-to-right (265 million users). Used in Bangladesh and India, for the Bengali language, and for other languages like Assamese, Kokborok, Bishnupriya Manipuri, Meitei Manipuri, Rabha, Maithili, Rangpuri, Sylheti, Santali and Sanskrit. Developed in the 11th century CE. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Beng",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G664195",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Beng",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Bengali_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Bengali_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Beng"
        }
    },
    "Bhks": {
        "id": "Bhks",
        "name": "Bhaiksuki",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Bhaiksuki (<span class='autonym'>𑰥𑰹𑰎𑰿𑰬𑰲𑰎𑰱</span>) is a historical Indic abugida. Was used in 11th–12th century CE for Buddhist texts in Sanskrit in the Indian state of Bihar. Also called Arrow-Headed Script, Point-Headed Script, or Sindhura.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bhks",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G40424",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bhks",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Bhaiksuki_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Bhaiksuki_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bhks"
        }
    },
    "Blis": {
        "id": "Blis",
        "name": "Blissymbols",
        "status": "historical",
        "family": "artificial",
        "type": "logo-syllabary",
        "summary": "Blissymbols is a historical artificial logo-syllabary, written left-to-right. Developed in 1949 Charles K. Bliss, the Blissymbols or Blissymbolics language and the associated Semantography script consist of several hundred basic symbols, each representing a concept, which can be composed together to form new symbols representing new concepts. Des not correspond to the sounds of any spoken language. Used in the education of people with communication difficulties, in particular by people who struggle both to speak and to read or spell.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Blis",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Blis",
            "r12a": "https://r12a.github.io/scripts/links?iso=Blis"
        }
    },
    "Bopo": {
        "id": "Bopo",
        "name": "Bopomofo",
        "status": "",
        "family": "East Asian",
        "type": "syllabary",
        "summary": "Bopomofo (<span class='autonym'>注音符號, 注音符号, ㄅㄆㄇㄈ</span>) is an East Asian syllabary, written left-to-right. Developed in 1913 in China to be used for Mandarin Chinese transliteration alongside the Latin-based Wade–Giles system. Also called Mandarin Phonetic Symbols or Zhuyin (注音). Bopomofo is an official transliteration system in Taiwan, used in dictionaries, books, newspapers and journals to annotate the Taiwanese pronunciation of Chinese Han characters, and in electronic input methods. Largely replaced by Pinyin romanization in the People’s Republic of China. Also used as the primary script for Taiwan’s minority languages like Atayal, Taroko, Paiwan and Yami. Has 21 onset consonants, 16 rhymes, and 4 tone marks.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bopo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G22467",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bopo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Zhuyin_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bopo"
        }
    },
    "Brah": {
        "id": "Brah",
        "name": "Brahmi",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Brahmi is a historical Indic abugida, written left-to-right. Used in 3rd century BCE–5th century CE in South Asia for Prakrit, Sanskrit, Saka, Tamil, Kannada, Tocharian. Evolved into the many Brahmic scripts used today in South and Southeast Asia. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Brah",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G39063",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Brah",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Brahmi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Brahmi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Brah"
        }
    },
    "Brai": {
        "id": "Brai",
        "name": "Braille",
        "status": "",
        "family": "artificial",
        "type": "alphabet",
        "summary": "Braille (<span class='autonym'>⠃⠗⠇</span>) is an artificial alphabet, written left-to-right. A tactile writing system used by the visually impaired, traditionally written on embossed paper. Developed 1821 by Louis Braille, who lost his sight at age three. Inspired by Charles Barbier’s night writing code developed for silent military communication. Each sign is a combination of six raised or lowered dots. All 64 combinations stand for Latin letters, common abbreviations and words, and a space. Used for languages that use the Latin script or have a Latin transcription convention.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Brai",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch21.pdf#G26597",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Brai",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Braille_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Braille_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Brai"
        }
    },
    "Bugi": {
        "id": "Bugi",
        "name": "Buginese",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Buginese (Lontara, <span class='autonym'>ᨒᨚᨈᨑ</span>) is a Southeast Asian abugida, written left-to-right. Was used since the 17th century for the Bugis, Makasar, and Mandar languages of Sulawesi in Indonesia (over 7 million speakers). Largely replaced by the Latin alphabet during the period of Dutch colonization, but still used for ceremonial, personal and traditional texts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Bugi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26727",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Bugi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Buginese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Buginese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Bugi"
        }
    },
    "Buhd": {
        "id": "Buhd",
        "name": "Buhid",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Buhid (Mangyan Baybayin, Surat Mangyan, <span class='autonym'>ᝊᝓᝑᝒ</span>) is a Southeast Asian abugida, written left-to-right (about 9,000 users). Used together with the Filipino Latin script for the Buhid language, spoken by Mangyan people in the Mindoro region of the Philippines.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Buhd",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26439",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Buhd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Buhid_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Buhid_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Buhd"
        }
    },
    "Cakm": {
        "id": "Cakm",
        "name": "Chakma",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Chakma (Ojhapath, Ojhopath, Ajhapath, <span class='autonym'>𑄌𑄋𑄴𑄟𑄳𑄦 𑄃𑄧𑄏𑄛𑄖𑄴</span>) is an Indic abugida, written left-to-right (170,000 users). Used in Bangladesh and India for the Chakma language, and for Tanchangya in Bangladesh. Brahmic script related to Mon Khmer and Myanmar. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cakm",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27486",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cakm",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Chakma_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Chakma_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cakm"
        }
    },
    "Cans": {
        "id": "Cans",
        "name": "Canadian Aboriginal syllabics",
        "status": "",
        "family": "American",
        "type": "abugida",
        "summary": "Canadian Aboriginal syllabics is a family of American abugidas, written left-to-right (0.5 million users). Used for Cree languages, for Inuktitut (co-official with the Latin script in the territory of Nunavut), for Ojibwe, Blackfoot. Were also used for Dakelh (Carrier), Chipewyan, Slavey, Tłı̨chǫ (Dogrib) and Dane-zaa (Beaver). Created in 1840 by James Evans to write several indigenous Canadian languages. Primarily used in Canada, occasionally in the United States.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cans",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch20.pdf#G26630",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cans",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Canadian_syllabics_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Canadian_syllabics_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cans"
        }
    },
    "Cari": {
        "id": "Cari",
        "name": "Carian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "alphabet",
        "summary": "Carian is a historical Middle Eastern alphabet, written left-to-right. Was used in 7th–1st centuries BCE in the Aegean region of today’s Turkey for the Carian language. Was also used in the Nile delta. Had 45 letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cari",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G26509",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cari",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Carian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Carian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cari"
        }
    },
    "Cham": {
        "id": "Cham",
        "name": "Cham",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Cham (<span class='autonym'>ꨀꨇꩉ ꨌꩌ</span>) is a Southeast Asian abugida, written left-to-right. Used in Vietnam and Cambodia for the Cham language (250,000 speakers). The majority of the Cambodian Cham people died during the Khmer Rouge regime in the 1970s or were forced to use the Cambodian language. Brahmic script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cham",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G55659",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cham",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Cham_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Cham_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cham"
        }
    },
    "Cher": {
        "id": "Cher",
        "name": "Cherokee",
        "status": "",
        "family": "American",
        "type": "syllabary",
        "summary": "Cherokee (<span class='autonym'>ᏣᎳᎩ</span>) is an American bicameral syllabary, written left-to-right. Used in the United States for the Cherokee language (12,000 speakers). Created in 1821 by Sequoyah (also known as George Guess), when it achieved instant popularity. By 1824 most Cherokee were literate in the script. Uses 85 letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cher",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch20.pdf#G26612",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cher",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Cherokee_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Cherokee_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cher"
        }
    },
    "Chrs": {
        "id": "Chrs",
        "name": "Chorasmian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Chorasmian is a historical Middle Eastern abjad, written right-to-left. Was used in the 2nd century BCE–-9th century CE in the Khwarazm region of Central Asia for the now-extinct Chorasmian language, until the language switched to the Arabic script. Derived from Imperial Aramaic.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Chrs",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G43165",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Chrs",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Chorasmian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Chorasmian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Chrs"
        }
    },
    "Cirt": {
        "id": "Cirt",
        "name": "Cirth",
        "status": "fictional",
        "family": "artificial",
        "type": "alphabet",
        "summary": "Cirth is a fictional artificial alphabet, written left-to-right. Created by J. R. R. Tolkien for the elvish and dwarvish languages spoken in the mythological world of Middle-earth. Based on the Futhark runes. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cirt",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cirt",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cirt"
        }
    },
    "Copt": {
        "id": "Copt",
        "name": "Coptic",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Coptic is a European bicameral alphabet, written left-to-right (0.4 million users). Since the 2nd century CE was used for the Coptic language, now the liturgical language of the Coptic church. Als used for Andaandi, Nobiin, Old Nubian and Mattokki. Derived from the Greek alphabet.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Copt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G16256",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Copt",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Coptic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Coptic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Copt"
        }
    },
    "Cpmn": {
        "id": "Cpmn",
        "name": "Cypro-Minoan",
        "status": "historical",
        "family": "European",
        "type": "logo-syllabary",
        "summary": "Cypro-Minoan is a historical European logo-syllabary. Undeciphered syllabary used on the island of Cyprus during the late Bronze Age (1500-1200 BCE) for the Eteocretan language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cpmn",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cpmn",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cpmn"
        }
    },
    "Cprt": {
        "id": "Cprt",
        "name": "Cypriot",
        "status": "historical",
        "family": "European",
        "type": "syllabary",
        "summary": "Cypriot is a historical European syllabary, written right-to-left. Was used in the 11th–4th centuries BCE in Cyprus for the Greek language. Descended from the Linear A script, closely related to the Linear B script. Was primarily used for record keeping, not literature.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cprt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G26417",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cprt",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Cypriot_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Cypriot_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cprt"
        }
    },
    "Cyrl": {
        "id": "Cyrl",
        "name": "Cyrillic",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Cyrillic is a bicameral alphabet originating in Europe, written left-to-right (250 million users). Used for various languages across Eurasia and is used as the national script in various Slavic, Turkic, Mongolic and Iranic-speaking countries in Southeastern Europe, Eastern Europe, the Caucasus, Central Asia, North Asia and East Asia, including Russian, Bulgarian, Macedonian, Serbian, Ukrainian, Uzbek, Azerbaijani, Kazakh, Tajik, Kyrgyz, Bashkort, Chechen, Chuvash, Avar, Dargwa, Kabardian, Karakalpak, Kumyk, Lezgi, Ossetic, Pontic, Yakut, Buriat and many others. Created in the 9th century. Traditionally attributed to Saint Cyril, a monk from Thessaloniki working in Bulgaria, after earlier creation of the Glagolitic script. Sometimes attributed to Clement of Ohrid, a student of Saint Cyril’s. Initially used for Old Church Slavonic. Reformed in 1708 by Russian tsar Peter the Great. Extended by the Soviet Union in the 20th century to write over 50 languages throughout Eastern Europe and Asia (some of those languages switched to Latin after 1991).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cyrl",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G10850",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cyrl",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Cyrillic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Cyrillic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cyrl"
        }
    },
    "Cyrs": {
        "id": "Cyrs",
        "name": "Cyrillic (Old Church Slavonic)",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Cyrillic (Old Church Slavonic) is a historical European alphabet, written left-to-right. Was used for the Old Church Slavonic language, after it was written in Glagolitic script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Cyrs",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Cyrs",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Cyrillic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Cyrillic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Cyrs"
        }
    },
    "Deva": {
        "id": "Deva",
        "name": "Devanagari",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Devanagari (Negari, <span class='autonym'>देवनागरी</span>) is an Indic abugida, written left-to-right with a headstroke (over 600 million users). Used in India and Nepal for over 120 languages like Indo-Aryan languages, including Hindi, Nepali, Marathi, Maithili, Awadhi, Newari and Bhojpuri, and for Sanskrit. 4th most widely used script in the world. Brahmic script created in the 1st century CE, the modern form developed in the 7th century. Has 14 vowels and 33 consonants. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Deva",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G12284",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Deva",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Devanagari_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Devanagari_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Deva"
        }
    },
    "Diak": {
        "id": "Diak",
        "name": "Dives Akuru",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Dives Akuru (<span class='autonym'>𑤞𑥂𑤧𑤭𑥂𑤦𑤕𑤱𑤕𑤱</span>) is a historical Indic abugida, written left-to-right. Was used for Maldivian language before switching to Thaana. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Diak",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G108027",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Diak",
            "r12a": "https://r12a.github.io/scripts/links?iso=Diak"
        }
    },
    "Dogr": {
        "id": "Dogr",
        "name": "Dogra",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Dogra (Dogri, <span class='autonym'>𑠖𑠵𑠌𑠤𑠬</span>) is a historical Indic abugida, written left-to-right. Was used for the Dogri language in Jammu and Kashmir in the northern part of the Indian subcontinent. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Dogr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G100066",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Dogr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Dogra_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Dogra_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Dogr"
        }
    },
    "Dsrt": {
        "id": "Dsrt",
        "name": "Deseret",
        "status": "historical",
        "family": "American",
        "type": "alphabet",
        "summary": "Deseret (<span class='autonym'>𐐔𐐯𐑅𐐨𐑉𐐯𐐻</span>) is a historical American bicameral alphabet, written left-to-right. Was used by members of the Church of Latter-Day Saints (Mormons) in Utah for writing the English language. Developed in 1854 by George D. Watt as part of a planned phonemic English-language spelling reform. Abandoned around 1877.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Dsrt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch20.pdf#G27507",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Dsrt",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Deseret_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Deseret_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Dsrt"
        }
    },
    "Dupl": {
        "id": "Dupl",
        "name": "Duployan shorthand",
        "status": "",
        "family": "American",
        "type": "alphabet",
        "summary": "Duployan shorthand (Sloan-Duployan shorthand, Duployan stenography) is an American alphabet, written left-to-right. Geometric stenography script created in 1860 by Father Émile Duployé for writing French, later expanded and adapted for writing English, German, Spanish, Romanian, and Chinook Jargon. Heavily cursive (connected), allows words to be written in a single stroke. Praised for simplicity and speed of writing. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Dupl",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch21.pdf#G27643",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Dupl",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Duployan_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Duployan_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Dupl"
        }
    },
    "Egyd": {
        "id": "Egyd",
        "name": "Egyptian demotic",
        "status": "historical",
        "family": "African",
        "type": "logo-syllabary",
        "summary": "Egyptian demotic is a historical African logo-syllabary, written right-to-left. Was used about 600 BCE–400 CE for the ancient Egyptian language. Descended from Egyptian Hieratic writingthat was used alongside Hieroglyphics. Later used in place of both of these scripts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Egyd",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Egyd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Demotic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Demotic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Egyd"
        }
    },
    "Egyh": {
        "id": "Egyh",
        "name": "Egyptian hieratic",
        "status": "historical",
        "family": "African",
        "type": "logo-syllabary",
        "summary": "Egyptian hieratic is a historical African logo-syllabary, written left-to-right. Was used about 3100 BCE–250 CE for the ancient Egyptian language alongside Hieroglyphics. A cursive combination of pictographic and phonetic symbols, normally written in ink with a reed brush on papyrus (Hieroglyphs were inscribed in stone). Many of the symbols were unrelated to those used in Hieroglyphics.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Egyh",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Egyh",
            "r12a": "https://r12a.github.io/scripts/links?iso=Egyh"
        }
    },
    "Egyp": {
        "id": "Egyp",
        "name": "Egyptian hieroglyphs",
        "status": "historical",
        "family": "African",
        "type": "logo-syllabary",
        "summary": "Egyptian hieroglyphs is a historical African logo-syllabary, written left-to-right. Were used about 3000 BCE–400 CE for writing the ancient Egyptian language. Combined logographic, syllabic and alphabetic elements, with a total of some 1,000 distinct characters. Cursive hieroglyphs were used for religious literature on papyrus and wood.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Egyp",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G26607",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Egyp",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Egyptian_hieroglyphic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Egyptian_hieroglyphic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Egyp"
        }
    },
    "Elba": {
        "id": "Elba",
        "name": "Elbasan",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Elbasan is a historical European alphabet, written left-to-right. Was used by Albanian Christians in the mid-18th century. Known primarily from the Elbasan Gospel Manuscript. Since 1909 replaced by the Latin alphabet for Albanian.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Elba",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G27032",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Elba",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Elbasan_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Elbasan_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Elba"
        }
    },
    "Elym": {
        "id": "Elym",
        "name": "Elymaic",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Elymaic is a historical Middle Eastern abjad, written right-to-left. Was used around 250 BCE–500 CE in the ancient state of Elymais in the region southeast of the Tigris River in today’s Iran. Descended from Aramaic, poorly attested.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Elym",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G41970",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Elym",
            "r12a": "https://r12a.github.io/scripts/links?iso=Elym"
        }
    },
    "Ethi": {
        "id": "Ethi",
        "name": "Ethiopic",
        "status": "",
        "family": "African",
        "type": "abugida",
        "summary": "Ethiopic (Geʽez, <span class='autonym'>ግዕዝ, ፊደል</span>) is an African abugida, written left-to-right (18 million users). Used for Ethiosemitic languages like Tigré, Amharic and Tigrinya and some Cushitic and Nilotic languages. Was used in the 1st–12th century CE in Ethiopia and Eritrea for the Geʽez language (now a liturgical language). Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ethi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G14116",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ethi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Ethiopic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Ethiopic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ethi"
        }
    },
    "Geok": {
        "id": "Geok",
        "name": "Khutsuri (Asomtavruli and Nuskhuri)",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Khutsuri (Asomtavruli and Nuskhuri) is a European bicameral alphabet, written left-to-right. Ecclesiastical writing system composed of two alphabets, historically used for writing the Georgian language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Geok",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G3360",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Geok",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khutsuri_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khutsuri_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Geok"
        }
    },
    "Geor": {
        "id": "Geor",
        "name": "Georgian",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Georgian (<span class='autonym'>ქართული</span>) is a European alphabet, written left-to-right (4.5 million users). Used for the Georgian language of Georgia, and other Kartvelian languages. Since 430 CE, the Georgian language used an inscriptional form (Asomtavruli), which evolved into a manuscript form (Nuskhuri). These are categorized as Khutsuri (ecclesiastical): Asomtavruli is uppercase, Nuskhuri is lowercase. Khutsuri is still used for liturgical purposes, but was replaced by a new case-less form (Mkhedruli) used for nearly all modern Georgian writing. In the 1950s, Akaki Shanidze attempted to add Asomtavruli as uppercase and use Mkhedruli for lowercase, but the effort did not succeed.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Geor",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G3360",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Geor",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Georgian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Georgian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Geor"
        }
    },
    "Glag": {
        "id": "Glag",
        "name": "Glagolitic",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Glagolitic (Glagolitsa, <span class='autonym'>Ⰳⰾⰰⰳⱁⰾⰹⱌⰰ</span>) is a historical European bicameral alphabet, written left-to-right. Created around  863 CE, traditionally attributed to Saint Cyril, a monk from Thessaloniki working in Bulgaria. The oldest known Slavic alphabet. Was used throughout the Balkans in tandem with the later-created Cyrillic until the 13th century, after which time it was largely replaced by Cyrillic. In Croatia, Glagolitic continued to be used until the 19th century, particularly in the church. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Glag",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G15862",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Glag",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Glagolitic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Glagolitic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Glag"
        }
    },
    "Gong": {
        "id": "Gong",
        "name": "Gunjala Gondi",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Gunjala Gondi (Koytura Gunjala Lipi, <span class='autonym'>𑵶𑶍𑶕𑶀𑵵𑶊 𑵶𑶓𑶕𑶂𑶋 𑵵𑶋𑶅𑶋</span>) is an Indic abugida, written left-to-right. Used in India’s northern Telangana, eastern Maharashtra, southeastern Madhya Pradesh, and Chhattisgarh regions for the Gondi language. Was used to write manuscripts dated ca. 1750 that were discovered 2006 in Gunjala, a Gond village in the Indian state of Telangana. Recently revived among the Gond population. Unrelated to the 1918-created Masaram Gondi. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Gong",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G39306",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Gong",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Gunjala_Gondi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Gunjala_Gondi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Gong"
        }
    },
    "Gonm": {
        "id": "Gonm",
        "name": "Masaram Gondi",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Masaram Gondi is an Indic abugida, written left-to-right. Created 1918 by Munshi Mangal Singh Masaram. Brahmic script, not widely used. Unrelated to the historic Gunjala Gondi. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Gonm",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G33278",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Gonm",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Masaram_Gondi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Masaram_Gondi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Gonm"
        }
    },
    "Goth": {
        "id": "Goth",
        "name": "Gothic",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Gothic is a historical European alphabet, written left-to-right. Was used in c. 350–600 CE or writing the Gothic language. Created by the bishop Ulfilas for religious purposes. Uses uncial forms of the Greek alphabet, with a few additional letters to express Gothic phonology.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Goth",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G33932",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Goth",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Gothic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Gothic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Goth"
        }
    },
    "Gran": {
        "id": "Gran",
        "name": "Grantha",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Grantha (<span class='autonym'>𑌗𑍍𑌰𑌨𑍍𑌥</span>) is an Indic abugida, written left-to-right. Used since the 7th century CE for writing religious texts in Sanskrit and Dravidian languages. Related to Tamil. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Gran",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G81052",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Gran",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Grantha_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Grantha_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Gran"
        }
    },
    "Grek": {
        "id": "Grek",
        "name": "Greek",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Greek (<span class='autonym'>Ελληνικά</span>) is a European bicameral alphabet, written left-to-right (11 million users). Used to write the Greek language since the 8th century BCE. Also used to write other languages like Urum, Albanian Tosk, and Balkan Gagauz Turkish. Some symbols are also used in scientific notation. Derived from Phoenician. First “true alphabet”, with distinct letters for consonants and vowels. Standardized in the 4th century BCE by Eucleides. Has 24 letters. Some letter variants (sigma: σ/ς) have positional significance in the Greek language, other variants only differ in meaning in scientific notation (e.g. pi: π/ϖ). The Greek language used to be written in polytonic spelling, with three accents on vowels. In 1982, Greece introduced monotonic spelling with a single diacritic. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Grek",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G10832",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Grek",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Greek_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Greek_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Grek"
        }
    },
    "Gujr": {
        "id": "Gujr",
        "name": "Gujarati",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Gujarati (<span class='autonym'>ગુજરાતી</span>) is an Indic abugida, written left-to-right without a headstroke (48 million users). Used in India since the 16th century CE for the Gujarati and Chodri languages. Also used alongside Devanagari for languages used by the Bhil people. Related to Devanagari. Was used mainly for bookkeeping and correspondence until the mid-19th century. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Gujr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G34334",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Gujr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Gujarati_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Gujarati_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Gujr"
        }
    },
    "Guru": {
        "id": "Guru",
        "name": "Gurmukhi",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Gurmukhi (<span class='autonym'>ਗੁਰਮੁਖੀ</span>) is an Indic abugida, written left-to-right with a headstroke (22 million users). Used in India for the Punjabi language by followers of the Sikh religion. Brahmic script. Current form developed in the 16th century by Guru Angad. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Guru",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G668388",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Guru",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Gurmukhi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Gurmukhi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Guru"
        }
    },
    "Hanb": {
        "id": "Hanb",
        "name": "Han with Bopomofo",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Han with Bopomofo is an East Asian logo-syllabary.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hanb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G22467",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hanb",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hanb"
        }
    },
    "Hang": {
        "id": "Hang",
        "name": "Hangul",
        "status": "",
        "family": "East Asian",
        "type": "featural script",
        "summary": "Hangul (Hangeul, <span class='autonym'>한글</span>, Chosŏn'gŭl, <span class='autonym'>조선글</span>) is an East Asian script, written vertically right-to-left and horizontally left-to-right (79 million users). Used for the Korean language. Created in 1446 by King Sejong the Great (Sejong of Joseon) as a simpler, phonetic alternative to using Chinese hanja for Korean. Not universally accepted for centuries, suppressed by Japanese colonial authorities. Since 1945 the standard script for Korean. The 51 basic letters (jamo) are grouped into syllable blocks depending on their position in the spoken syllable.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hang",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G31028",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hang",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hangul_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hangul_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hang"
        }
    },
    "Hani": {
        "id": "Hani",
        "name": "Han (Hanzi, Kanji, Hanja)",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Han (Hanzi, Kanji, Hanja, <span class='autonym'>汉字, 漢字</span>) is an East Asian logo-syllabary, written vertically right-to-left and horizontally left-to-right (over 1.3 billion users). Used at least since the Shang dynasty (1600–1046 BCE) to write the Chinese (Sinitic) languages like Mandarin and Cantonese, but also, today or in the past, Japanese, Korean, Vietnamese, Okinawan, Zhuang, Miao and other languages. The Han script has regional variations: Traditional Chinese (since the 5th century CE, today used in Taiwan, Hong Kong, Macau), Simplified Chinese (used since 1949–1956 in mainland China, Singapore, and Malaysia), Japanese (called Hanji, used together with the Hiragana and Katakana syllabaries in Japan), Korean (called Hanja, widely used for the Korean language since 400 BCE until the mid-20th century). Fundamentally the same characters represent the same or highly related concepts across dialects and languages, which themselves are often mutually unintelligible or completely unrelated. Some 2,100–2,500 Han characters are required for basic literacy, some 5,200–6,300 for reading typical texts. Many more are needed for specialized or historical texts: the Unicode Standard encodes over 94,000 Han characters. ",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hani",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G29086",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hani",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Han_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Han_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hani"
        }
    },
    "Hano": {
        "id": "Hano",
        "name": "Hanunoo",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Hanunoo (<span class='autonym'>ᜱᜨᜳᜨᜳᜢ</span>) is a Southeast Asian abugida, unusually written in upward vertical columns that are read left-to-right. Used in the mountains of Mindoro, South Philippines since c. 1300 for the Hanunó'o language (18,000 speakers). Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hano",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26437",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hano",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hanunoo_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hanunoo_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hano"
        }
    },
    "Hans": {
        "id": "Hans",
        "name": "Simplified Han",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Simplified Han (<span class='autonym'>简化字</span>) is an East Asian logo-syllabary, written vertically right-to-left and horizontally left-to-right (over 1.3 billion users). Used in mainland China, Malaysia and Singapore. ((TODO))",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hans",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G29086",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hans",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Simplified_Han_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hans"
        }
    },
    "Hant": {
        "id": "Hant",
        "name": "Traditional Han",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Traditional Han (<span class='autonym'>漢字</span>) is an East Asian logo-syllabary, written vertically right-to-left and horizontally left-to-right (over 30 million users). Used in Taiwan, Hong Kong and Macau. ((TODO))",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hant",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G29086",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hant",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Traditional_Han_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hant"
        }
    },
    "Hatr": {
        "id": "Hatr",
        "name": "Hatran",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Hatran is a historical Middle Eastern abjad, written right-to-left. Was used for Aramaic of Hatra, a dialect spoken by early inhabitants of today’s northern Iraq in 98 BCE–240 CE. ",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hatr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G34825",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hatr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hatran_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hatran_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hatr"
        }
    },
    "Hebr": {
        "id": "Hebr",
        "name": "Hebrew",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Hebrew (<span class='autonym'>עברית</span>) is a Middle Eastern abjad, written right-to-left (14 million users). Used for the Hebrew, Samaritan and Yiddish languages. Also used for some varieties of Arabic and for the languages of Jewish communities across the world. Has 22 consonant letters, 5 have positional variants. Vowels in Hebrew language are normally omitted except for long vowels which are sometimes written with the consonant letters אהוי (those were vowel-only letters until the 9th century). Children’s and school books use niqqud diacritics for all vowels. Religious texts may use cantillation marks for indicating rhythm and stress. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hebr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G6528",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hebr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hebrew_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hebrew_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hebr"
        }
    },
    "Hira": {
        "id": "Hira",
        "name": "Hiragana",
        "status": "",
        "family": "East Asian",
        "type": "syllabary",
        "summary": "Hiragana (<span class='autonym'>平仮名, ひらがな</span>) is an East Asian syllabary, written vertically right-to-left and horizontally left-to-right (120 million users). Used in Japan for Japanese and the Ryukyuan languages. Hiragana is used to write okurigana (kana suffixes following a kanji root, for example to inflect verbs and adjectives), various grammatical and function words including particles, as well as miscellaneous other native words for which there are no kanji or whose kanji form is obscure or too formal for the writing purpose.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hira",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G22344",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hira",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hiragana_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hira"
        }
    },
    "Hluw": {
        "id": "Hluw",
        "name": "Anatolian hieroglyphs",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "logo-syllabary",
        "summary": "Anatolian (Luwian, Hittite) hieroglyphs is a historical Middle Eastern logo-syllabary, written boustrophedon. Were used c. 2000–700 BCE for the Luwian language. The script has about 500 signs.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hluw",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G27920",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hluw",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Anatolian_Hieroglyphs_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Anatolian_Hieroglyphs_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hluw"
        }
    },
    "Hmng": {
        "id": "Hmng",
        "name": "Pahawh Hmong",
        "status": "",
        "family": "East Asian",
        "type": "syllabary",
        "summary": "Pahawh Hmong (<span class='autonym'>𖬖𖬰𖬝𖬵 𖬄𖬶𖬟 𖬌𖬣𖬵</span>) is an East Asian syllabary. Used in China, Vietnam, Laos and Thailand for the Hmong language (over 0.2 million speakers). The script as a whole is read left-to-right but each syllable is written right-to-left. Created in 1959 by Shong Lue. Hmong is also written in the Romanized Popular Alphabet by William Smalley. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hmng",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G68320",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hmng",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hmong_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hmong_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hmng"
        }
    },
    "Hmnp": {
        "id": "Hmnp",
        "name": "Nyiakeng Puachue Hmong",
        "status": "",
        "family": "",
        "type": "alphabet",
        "summary": "Nyiakeng Puachue Hmong (<span class='autonym'>𞄐𞄦𞄲𞄤𞄎𞄫𞄰𞄚𞄧𞄲𞄤𞄔𞄬𞄱‎</span>) is an alphabet, written left-to-right. Used for the White Hmong and Green Hmong languages by members of the United Christians Liberty Evangelical Church in the USA, in Laos, Thailand, Vietnam, France, and in Australia. Created in the 1980s by Reverend Chervang Kong.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hmnp",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G81876",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hmnp",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hmnp"
        }
    },
    "Hrkt": {
        "id": "Hrkt",
        "name": "Hiragana and Katakana",
        "status": "",
        "family": "East Asian",
        "type": "syllabary",
        "summary": "Hiragana and Katakana is an East Asian syllabary, written left-to-right.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hrkt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G22462",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hrkt",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hrkt"
        }
    },
    "Hung": {
        "id": "Hung",
        "name": "Old Hungarian (Hungarian runic)",
        "status": "historical",
        "family": "European",
        "type": "abjad",
        "summary": "Old Hungarian (Hungarian runic, rovás, <span class='autonym'>𐲥𐳋𐳓𐳉𐳗-𐲘𐳀𐳎𐳀𐳢 𐲢𐳛𐳮𐳀𐳤‎</span>) is a European abjad. Used in 9th–11th century CE (possibly earlier) for the Hungarian language, later replaced with the Latin alphabet except for some religious texts. Used in some circles since the 15th century to this day. Written left-to-right or right-to-left. Uses ligatures. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Hung",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G33926",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Hung",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Hungarian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Hungarian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Hung"
        }
    },
    "Inds": {
        "id": "Inds",
        "name": "Indus (Harappan)",
        "status": "historical",
        "family": "Indic",
        "type": "logo-syllabary",
        "summary": "Indus (Harappan) is a historical Indic logo-syllabary, written right-to-left.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Inds",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Inds",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Indus_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Inds"
        }
    },
    "Ital": {
        "id": "Ital",
        "name": "Old Italic",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Old Italic is a group of historical European bicameral alphabets, written left-to-right. Used in 700–100 BCE in today’s Italy for Etruscan, Oscan, Umbrian, Venetic and other languages. Based on Greek, evolved into the Runic and Latin scripts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ital",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G27379",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ital",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Italic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Italic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ital"
        }
    },
    "Jamo": {
        "id": "Jamo",
        "name": "Jamo subset of Hangul",
        "status": "",
        "family": "East Asian",
        "type": "featural script",
        "summary": "Jamo subset of Hangul is an East Asian script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Jamo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G31081",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Jamo",
            "r12a": "https://r12a.github.io/scripts/links?iso=Jamo"
        }
    },
    "Java": {
        "id": "Java",
        "name": "Javanese",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Javanese (Aksara Jawa, <span class='autonym'>ꦄꦏ꧀ꦱꦫꦗꦮ</span>) is a Southeast Asian abugida, written left-to-right. Used since the 15h century for the Javanese language on the Indonesian island of Java. Also used for Sundanese, Madurese, Sasak, Indonesian, Kawi, Sanskrit. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Java",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G27153",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Java",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Javanese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Javanese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Java"
        }
    },
    "Jpan": {
        "id": "Jpan",
        "name": "Japanese Kanji",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Japanese Kanji (<span class='autonym'>漢字</span>) is an East Asian logo-syllabary, written left-to-right (126 million users). Used together with the Hiragana and Katakana syllabaries in Japan for the Japanese language. Noun, verb, adjective and some adverb stems use kanji (the most basic set is 2,136). Grammatical elements use Hiragana, loan words and emphasis use Katakana. Kanji is primarily derived from the traditional Chinese Han characters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Jpan",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G29086",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Jpan",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Japanese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Japanese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Jpan"
        }
    },
    "Jurc": {
        "id": "Jurc",
        "name": "Jurchen",
        "status": "historical",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Jurchen is a historical East Asian logo-syllabary, written vertically left-to-right.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Jurc",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Jurc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Jurchen_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Jurc"
        }
    },
    "Kali": {
        "id": "Kali",
        "name": "Kayah Li",
        "status": "",
        "family": "Southeast Asian",
        "type": "alphabet",
        "summary": "Kayah Li (<span class='autonym'>ꤊꤢꤛꤢꤟ ꤜꤤ</span>) is a Southeast Asian alphabet, written left-to-right. Used in Myanmar and Thailand for Kayah languages (150,000 users). Created in 1962 by Htae Bu Phae.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kali",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G61902",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kali",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Kayah_Li_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Kayah_Li_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kali"
        }
    },
    "Kana": {
        "id": "Kana",
        "name": "Katakana",
        "status": "",
        "family": "East Asian",
        "type": "syllabary",
        "summary": "Katakana (<span class='autonym'>片仮名、カタカナ</span>) is an East Asian syllabary, written vertically right-to-left and horizontally left-to-right (126 million users). Used in Japan for Japanese, Ryukyuan, Ainu and Palauan, and formerly for Taiwanese Hokkien. Katakana is used for transcription of foreign-language words into Japanese, for the writing of loan words, for emphasis, to represent onomatopoeia, for technical and scientific terms, for names of plants, animals and minerals, and often for names of Japanese companies.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kana",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G12058",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kana",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Katakana_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Katakana_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kana"
        }
    },
    "Khar": {
        "id": "Khar",
        "name": "Kharoshthi",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Kharoshthi (<span class='autonym'>𐨑𐨪𐨆𐨯𐨠𐨁</span>) is a historical Indic abugida, written right-to-left. Was used in the 4th century BCE–3rd century CE in Gandhara (now Pakistan and north-eastern Afghanistan) for Gandhari Prakrit and Sanskrit.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Khar",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G38474",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Khar",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Kharoshthi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Kharoshthi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Khar"
        }
    },
    "Khmr": {
        "id": "Khmr",
        "name": "Khmer",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Khmer (<span class='autonym'>អក្សរខ្មែរ</span>) is a Southeast Asian abugida, written left-to-right (12 million users). Used since the 7th century in Cambodia for the Khmer language. Also used  for Brao, Mnong, Pali. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Khmr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G64642",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Khmr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khmer_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khmer_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Khmr"
        }
    },
    "Khoj": {
        "id": "Khoj",
        "name": "Khojki",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Khojki (<span class='autonym'>𑈉𑈲𑈐𑈈𑈮</span>) is an Indic abugida, written left-to-right. Used since the 16th century in today’s Pakistan and India by the Khoja people for religious texts in the Sindhi language. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Khoj",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G81423",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Khoj",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khojki_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khojki_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Khoj"
        }
    },
    "Kitl": {
        "id": "Kitl",
        "name": "Khitan large script",
        "status": "historical",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Khitan large script is a historical East Asian logo-syllabary, written vertically left-to-right. Was used in the 10th–12th centuries by the Khitan in the Liao Empire (north-eastern China) for the Khitan language. Later used by the Jurchens. Two independent writing systems, the Khitan large script and the Khitan small script, were used in parallel.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kitl",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kitl",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khitan_Large_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khitan_Large_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kitl"
        }
    },
    "Kits": {
        "id": "Kits",
        "name": "Khitan small script",
        "status": "historical",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Khitan small script is a historical East Asian logo-syllabary. Was used in the 10th–12th centuries by the Khitan in the Liao Empire (north-eastern China) for the Khitan language. Later used by the Jurchens. Two independent writing systems, the Khitan large script and the Khitan small script, were used in parallel.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kits",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G59285",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kits",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khitan_Small_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khitan_Small_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kits"
        }
    },
    "Knda": {
        "id": "Knda",
        "name": "Kannada",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Kannada (<span class='autonym'>ಕನ್ನಡ ಲಿಪಿ</span>) is an Indic abugida, written left-to-right, partially with a headstroke (45 million users). Used in southern India for the Kannada language as well as Konkani, Tulu, Badaga, Kudiya, Paniya. Related to Telugu. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Knda",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G38298",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Knda",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Kannada_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Kannada_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Knda"
        }
    },
    "Kore": {
        "id": "Kore",
        "name": "Korean Hanja",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Korean Hanja (<span class='autonym'>한자, 漢字</span>) is an East Asian logo-syllabary, written left-to-right. Based on traditional Chinese Han characters, Hanja was used for the Korean language until 1446, when King Sejong introduced Hangul. Until the mid-20th century Hanja and Hangul were used in parallel or mixed. Today, the vast majority of Korean text uses Hangul but Hanja is still used in some context, and schools teach some 1,000-3,000 Hanja symbols.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kore",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G29086",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kore",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Korean_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Korean_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kore"
        }
    },
    "Kpel": {
        "id": "Kpel",
        "name": "Kpelle",
        "status": "",
        "family": "African",
        "type": "syllabary",
        "summary": "Kpelle is an African syllabary, written left-to-right. Used in Liberia for the Kpelle language (0.76 million speakers).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kpel",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kpel",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kpel"
        }
    },
    "Kthi": {
        "id": "Kthi",
        "name": "Kaithi",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Kaithi (<span class='autonym'>𑂍𑂶𑂟𑂲</span>) is a historical Indic abugida, written left-to-right without a headstroke. Was used in the 16th–20th century in Northern and Eastern India for Indo-Aryan languages like Angika, Awadhi, Bhojpuri, Hindustani, Magahi, Maithili, Nagpuri. Except in the state of Bihar, was discouraged under British rule in India. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Kthi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G69704",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Kthi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Kaithi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Kaithi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Kthi"
        }
    },
    "Lana": {
        "id": "Lana",
        "name": "Lanna (Tai Tham)",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Lanna (Tai Tham) is a Southeast Asian abugida, written left-to-right. Used in Thailand and China for the Northern Thai language. Was also used for the Lü and Khün languages. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lana",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G53337",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lana",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tai_Tham_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tai_Tham_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lana"
        }
    },
    "Laoo": {
        "id": "Laoo",
        "name": "Lao",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Lao (<span class='autonym'>ລາວ</span>) is a Southeast Asian abugida, written left-to-right (7 million users). Used since the 14th century in Laos the Lao language, and also for Isan, Thai. Derived from the Khmer script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Laoo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G10988",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Laoo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lao_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lao_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Laoo"
        }
    },
    "Latf": {
        "id": "Latf",
        "name": "Latin (Fraktur)",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Latin (Fraktur) is a European bicameral alphabet, written left-to-right. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Latf",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Latf",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Fraktur_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Fraktur_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Latf"
        }
    },
    "Latg": {
        "id": "Latg",
        "name": "Latin (Gaelic)",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Latin (Gaelic) is a historical European bicameral alphabet, written left-to-right.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Latg",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Latg",
            "r12a": "https://r12a.github.io/scripts/links?iso=Latg"
        }
    },
    "Latn": {
        "id": "Latn",
        "name": "Latin",
        "status": "",
        "family": "European",
        "type": "alphabet",
        "summary": "Latin (Roman) is a European bicameral alphabet, written left-to-right. The most popular writing system in the world. Used for over 3,000 languages including Latin and Romance languages (Italian, French, Portuguese, Spanish and Romanian), Germanic languages (English, Dutch, German, Nordic languages), Finnish, Malaysian, Indonesian, Filipino, Visayan languages, Turkish, Azerbaijani, Polish, Somali, Vietnamese, and many others. Derived from Western Greek, attested in Rome in the 7th century BCE. In the common era, numerous European languages adopted the Latin script along with Western Christian religion, the script disseminated further with European colonization of the Americas, Australia, parts of Asia, Africa and the Pacific. New letters, ligatures and diacritical marks were gradually added to represent the sounds of various languages.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Latn",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch07.pdf#G4321",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Latn",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Latin_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Latin_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Latn"
        }
    },
    "Leke": {
        "id": "Leke",
        "name": "Leke",
        "status": "",
        "family": "Southeast Asian",
        "type": "",
        "summary": "Leke is a Southeast Asian script, written left-to-right. Used in Myanmar by the Leke religious community for the Eastern Pwo Karen language, which is otherwise written in the Myanmar or Thai scripts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Leke",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Leke",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Leke_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Leke_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Leke"
        }
    },
    "Lepc": {
        "id": "Lepc",
        "name": "Lepcha",
        "status": "",
        "family": "Central Asian",
        "type": "abugida",
        "summary": "Lepcha (Róng, <span class='autonym'>ᰛᰩᰴ‎</span>) is a Central Asian abugida, written left-to-right (50,000 users). Used since the 18th century in India, Nepal and Bhutan for the Tibeto-Burman Lepcha language. Derived from Tibetan writing. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lepc",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27253",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lepc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lepcha_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lepcha_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lepc"
        }
    },
    "Limb": {
        "id": "Limb",
        "name": "Limbu",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Limbu (Kiranti, Sirijonga, <span class='autonym'>ᤕᤰᤌᤢᤱ ᤐᤠᤴ</span>) is an Indic abugida, written left-to-right. Used in Nepal and northern India for the Limbu language (0.4 million speakers), which is also written in Devanagari. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Limb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27263",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Limb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Limbu_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Limbu_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Limb"
        }
    },
    "Lina": {
        "id": "Lina",
        "name": "Linear A",
        "status": "historical",
        "family": "European",
        "type": "logo-syllabary",
        "summary": "Linear A is a historical undeciphered European logo-syllabary, written left-to-right. Was used 1800-1450 BCE in ancient Crete, alongside Cretan Hieroglyphs, for the hypothesized Minoan language. Succeeded by Linear B.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lina",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G27575",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lina",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Linear_A_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Linear_A_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lina"
        }
    },
    "Linb": {
        "id": "Linb",
        "name": "Linear B",
        "status": "historical",
        "family": "European",
        "type": "logo-syllabary",
        "summary": "Linear B is a historical European logo-syllabary, written boustrophedon. Used for ancient Greek. Was used 1375-1100 BCE for writing Mycenaean Greek, the earliest attested Greek language form. Was deciphered in 1953. Has 87 syllabic signs and over 100 ideographic signs.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Linb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G29567",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Linb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Linear_B_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Linear_B_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Linb"
        }
    },
    "Lisu": {
        "id": "Lisu",
        "name": "Fraser",
        "status": "",
        "family": "East Asian",
        "type": "alphabet",
        "summary": "Fraser (Old Lisu) is an East Asian alphabet, written left-to-right (1 million users). Used in China, Myanmar, India and Thailand for the Lisu language. Also used for Lipo, Naxi, Zaiwa, Lakkia. Created 1915 by Sara Ba Thaw and improved by James O. Fraser. Based on the Latin script. Official Lisu language script in China since 1992.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lisu",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G44587",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lisu",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lisu_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lisu_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lisu"
        }
    },
    "Loma": {
        "id": "Loma",
        "name": "Loma",
        "status": "",
        "family": "African",
        "type": "syllabary",
        "summary": "Loma is an African syllabary, written left-to-right (0.3 million users). Used in Liberia for the Loma language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Loma",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Loma",
            "r12a": "https://r12a.github.io/scripts/links?iso=Loma"
        }
    },
    "Lyci": {
        "id": "Lyci",
        "name": "Lycian",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Lycian is a historical European alphabet, written left-to-right. Was used 500-330 BCE in today’s southern Turkey for the Lycian language. Has 29 letters, visually similar to archaic Greek.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lyci",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G26507",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lyci",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lycian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lycian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lyci"
        }
    },
    "Lydi": {
        "id": "Lydi",
        "name": "Lydian",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Lydian is a historical European alphabet, written right-to-left. Was used 700–200 BCE in today’s Turkish Manisa and İzmir for the Lydian language. Visually similar to archaic Greek.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Lydi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G26511",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Lydi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lydian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lydian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Lydi"
        }
    },
    "Mahj": {
        "id": "Mahj",
        "name": "Mahajani",
        "status": "historical",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Mahajani (<span class='autonym'>𑅬𑅱𑅛𑅧𑅑‎</span>) is a historical Indic alphabet, written left-to-right. Was used until the mid-20th century in today’s northwest India and eastern Pakistan as a trade and accounting script done in Hindi, Marwari and Punjabi. ",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mahj",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G89564",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mahj",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Mahajani_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Mahajani_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mahj"
        }
    },
    "Maka": {
        "id": "Maka",
        "name": "Makasar",
        "status": "historical",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Makasar (Old Makassarese, <span class='autonym'>𑻪𑻢𑻪𑻢</span>) is a historical Southeast Asian abugida, written left-to-right. Was used in the 17th–19th century on the Indonesian island Sulawesi through for the Makassarese language. Later replaced by Buginese (Lontara). Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Maka",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G29334",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Maka",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Lontara_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Lontara_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Maka"
        }
    },
    "Mand": {
        "id": "Mand",
        "name": "Mandaean (Mandaic)",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "alphabet",
        "summary": "Mandaean (Mandaic) is a Middle Eastern alphabet, written right-to-left. is Used in Iraq and Iran for Mandaic, a liturgical language of the Mandaean religion (5,000 speakers). Evolved from the Aramaic script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mand",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G46613",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mand",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Mandaic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Mandaic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mand"
        }
    },
    "Mani": {
        "id": "Mani",
        "name": "Manichaean",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Manichaean is a historical Middle Eastern abjad, written right-to-left. Was used in the 3rd–10th century CE by the followers of Manichaeanism, an Iranian Gnostic religion, for Middle Iranian languages and for Old Uyghur. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mani",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G27561",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mani",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Manichaean_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Manichaean_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mani"
        }
    },
    "Marc": {
        "id": "Marc",
        "name": "Marchen",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Marchen is a historical Indic abugida, written left-to-right. Marchen (Greater Mar) was used by followers of the Tibetan Bön religion for writing the Zhang-zhung language. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Marc",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G38187",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Marc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Marchen_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Marchen_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Marc"
        }
    },
    "Maya": {
        "id": "Maya",
        "name": "Mayan hieroglyphs",
        "status": "historical",
        "family": "American",
        "type": "logo-syllabary",
        "summary": "Mayan hieroglyphs is a historical American logo-syllabary, written vertically left-to-right.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Maya",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Maya",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Maya_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Maya_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Maya"
        }
    },
    "Medf": {
        "id": "Medf",
        "name": "Medefaidrin (Oberi Okaime)",
        "status": "",
        "family": "African",
        "type": "alphabet",
        "summary": "Medefaidrin (Oberi Okaime, <span class='autonym'>𖹝𖹰𖹯𖹼𖹫 𖹚𖹬𖹾𖹠𖹯</span>) is an African bicameral alphabet, written left-to-right. Used for the Medefaidrin artificial language used for religious purposes by members of the Oberi Okaime church in the Cross River State of Nigeria. Created in the 1930s by Michael Ukpong and Akpan Akpan Udofia. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Medf",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G58353",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Medf",
            "r12a": "https://r12a.github.io/scripts/links?iso=Medf"
        }
    },
    "Mend": {
        "id": "Mend",
        "name": "Mende",
        "status": "",
        "family": "African",
        "type": "abugida",
        "summary": "Mende (Mende Kikakui) is an African abugida, written right-to-left. Used in Sierra Leone for the Mende language (2 million speakers). Created by Mohammed Turay. Was widely used in the early 20th century, later largely replaced by the Latin script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mend",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G54425",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mend",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Mende_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Mende_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mend"
        }
    },
    "Merc": {
        "id": "Merc",
        "name": "Meroitic Cursive",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abugida",
        "summary": "Meroitic Cursive is a historical Middle Eastern abugida, written right-to-left. Was used in 300 BCE–600 CE in today’s Sudan by the Kush (Meroë) people for the Meroitic language. Derived from Demotic Egyptian, used alongside Meroitic Hieroglyphs, and later Coptic. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Merc",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Merc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Meroitic_cursive_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Meroitic_cursive_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Merc"
        }
    },
    "Mero": {
        "id": "Mero",
        "name": "Meroitic Hieroglyphs",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "logo-syllabary",
        "summary": "Meroitic Hieroglyphs is a historical Middle Eastern logo-syllabary, written vertically right-to-left. Was used in 300 BCE–600 CE in today’s Sudan by the Kush (Meroë) people for the Meroitic language. Derived from Egyptian Hieroglyphs, used alongside Meroitic Cursive, and later Coptic.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mero",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G26724",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mero",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Meroitic_hieroglyphic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Meroitic_hieroglyphic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mero"
        }
    },
    "Mlym": {
        "id": "Mlym",
        "name": "Malayalam",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Malayalam (<span class='autonym'>മലയാളം</span>) is an Indic abugida, written left-to-right (38 million users). Used since c. 830 CE in India for Malayalam (official language of the Kerala state), Irula, Paniya and some other languages. Derived from the a Vatteluttu alphabet. Has 15 vowel letters, 42 consonant letters, and a few other symbols. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mlym",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G22346",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mlym",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Malayalam_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Malayalam_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mlym"
        }
    },
    "Modi": {
        "id": "Modi",
        "name": "Modi",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Modi (<span class='autonym'>𑘦𑘻𑘚𑘲</span>) is an Indic abugida, written left-to-right. Was used in 1800s–1950s in India for Marathi (the state language of Maharashtra). Largely replaced by Devanagari. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Modi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G80897",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Modi",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Modi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Modi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Modi"
        }
    },
    "Mong": {
        "id": "Mong",
        "name": "Mongolian",
        "status": "",
        "family": "Central Asian",
        "type": "alphabet",
        "summary": "Mongolian (<span class='autonym'>ᠮᠣᠩᠭᠣᠯ ᠪᠢᠴᠢᠭ</span>) is a Central Asian alphabet, written left-to-right in vertical columns or rotated horizontal lines. Used for the Mongolian language in Mongolia and Inner Mongolia (2 million speakers). Also used for Daur, Xibe and Manchu in China, for Southern Altai and Kalmyk-Oirat in Russia, and for Buriat in Mongolia. Derived in the 13th century from Old Uyghur, related to Galik, Todo, Manchu and Sibe. Has 8 vowel and 27 consonant letters. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mong",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27803",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mong",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Uyghurjin_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Uyghurjin_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mong"
        }
    },
    "Moon": {
        "id": "Moon",
        "name": "Moon",
        "status": "",
        "family": "artificial",
        "type": "alphabet",
        "summary": "Moon is an artificial alphabet, written left-to-right. Occasionally used in the UK by the visually impaired as a less-common alternative to Braille. Uses raised curves and lines based on Latin letterforms. Created in the mid-1800s by William Moon.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Moon",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Moon",
            "r12a": "https://r12a.github.io/scripts/links?iso=Moon"
        }
    },
    "Mroo": {
        "id": "Mroo",
        "name": "Mro",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Mro (Mru, Murong) is an Indic alphabet, written left-to-right. Used in Bangladesh for the Mru language (30,000 speakers). Created in the 1980s by Menlay Murang (Manley Mro).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mroo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27701",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mroo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Mro_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Mro_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mroo"
        }
    },
    "Mtei": {
        "id": "Mtei",
        "name": "Meetei Mayek (Meitei)",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Meetei Mayek (Meitei, <span class='autonym'>ꯃꯤꯇꯩ ꯃꯌꯦꯛ</span>) is an Indic abugida, written left-to-right. Used in India, Bangladesh, and Myanmar for the Meitei language (1.4 million users). Was used until the 18th century, then replaced by the Bengali script. Revived since the 1930s. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mtei",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27615",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mtei",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Meitei_Mayek_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Meitei_Mayek_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mtei"
        }
    },
    "Mult": {
        "id": "Mult",
        "name": "Multani",
        "status": "historical",
        "family": "Indic",
        "type": "abjad",
        "summary": "Multani (<span class='autonym'>𑊠𑊣𑊖𑊚</span>) is a historical Indic abjad. Was used in the 18th–20th century in today’s India and Pakistan for the Saraiki language, mainly by merchants.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mult",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G95487",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mult",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Multani_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Multani_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mult"
        }
    },
    "Mymr": {
        "id": "Mymr",
        "name": "Myanmar",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Myanmar (Burmese, <span class='autonym'>မြန်မာ</span>) is a Southeast Asian abugida, written left-to-right (40 million users). Used since c. 1000 CE in Myanmar for the Burmese and Mon languages. Also used for some Karen languages. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Mymr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G24999",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Mymr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Burmese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Burmese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Mymr"
        }
    },
    "Nand": {
        "id": "Nand",
        "name": "Nandinagari",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Nandinagari (<span class='autonym'>𑧁𑧞𑧤𑦿𑧁𑧑𑦰𑧈𑧓</span>) is a historical Indic abugida, written left-to-right, with unconnected headstrokes. Was used in the 8th–19th centuries in South India for Sanskrit texts about philosophy, science and the arts. Closely related to Devanagari.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nand",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G106413",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nand",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nand"
        }
    },
    "Narb": {
        "id": "Narb",
        "name": "Old North Arabian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Old North Arabian (Ancient North Arabian) is a group of historical Middle Eastern abjads. They were used in north and central Arabia and south Syria in the 8th century BCE–4th century CE, presumably for Old Arabic, Dadanitic, Taymanitic.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Narb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G26432",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Narb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_North_Arabian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_North_Arabian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Narb"
        }
    },
    "Nbat": {
        "id": "Nbat",
        "name": "Nabataean",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Nabataean is a historical Middle Eastern abjad, written right-to-left. Was used in northern Arabia and the southern Levant in the 2nd century BCE–4th century CE for the Nabataean language. Derived from Aramaic, evolved into the Arabic script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nbat",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G29596",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nbat",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Nabataean_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Nabataean_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nbat"
        }
    },
    "Newa": {
        "id": "Newa",
        "name": "Newa (Newari)",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Newa (Pracalit) is an Indic abugida, written left-to-right. Used in Nepal mainly for Newari (Nepal Bhasa), also for Sanskrit, Pali. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Newa",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G31609",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Newa",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Newa_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Newa_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Newa"
        }
    },
    "Nkdb": {
        "id": "Nkdb",
        "name": "Naxi Dongba",
        "status": "",
        "family": "East Asian",
        "type": "",
        "summary": "Naxi Dongba is an East Asian pictographic script. Used in the Yunnan Province in China for the Naxi language (0.3 million users).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nkdb",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nkdb",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nkdb"
        }
    },
    "Nkgb": {
        "id": "Nkgb",
        "name": "Naxi Geba",
        "status": "historical",
        "family": "Central Asian",
        "type": "syllabary",
        "summary": "Naxi Geba is a historical Central Asian syllabary, written left-to-right. Was used infrequently since 1200 CE in Yunnan and Sichuan (China), and in Tibet, for the Naxi language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nkgb",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nkgb",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nkgb"
        }
    },
    "Nkoo": {
        "id": "Nkoo",
        "name": "N’Ko",
        "status": "",
        "family": "African",
        "type": "alphabet",
        "summary": "N’Ko (<span class='autonym'>ߒߞߏ</span>) is an African alphabet, written right-to-left. Used in West Africa for the Manding languages. Created in 1949 by Solomana Kante. The name of the script means “I say”. Has 19 consonants, 7 vowels and 8 diacritics. Influenced by the Arabic script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nkoo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G18603",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nkoo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:N%27Ko_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:N%27Ko_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nkoo"
        }
    },
    "Nshu": {
        "id": "Nshu",
        "name": "Nüshu",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Nüshu (<span class='autonym'>𛆁𛈬‎</span>) is an East Asian logo-syllabary, written vertically left-to-right. Was used in the 13th–20th centuries by women in Jiangyong County in Hunan province of southern China, mainly for the Chinese dialect Xiangnan Tuhua. Recently revived.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Nshu",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G42061",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Nshu",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Nushu_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Nushu_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Nshu"
        }
    },
    "Ogam": {
        "id": "Ogam",
        "name": "Ogham",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Ogham (<span class='autonym'>᚛ᚑᚌᚐᚋ᚜</span>) is a historical European alphabet. Was written bottom-to-top, left-to-right or boustrophedon. Was used in the 5th–10th centuries CE in Ireland, Wales, Devon, Cornwall, and on the Isle of Man, for the Primitive Irish, Old Irish, Pictish, and Old Norse languages. Uses 20 symbols.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ogam",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G29182",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ogam",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Ogham_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Ogham_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ogam"
        }
    },
    "Olck": {
        "id": "Olck",
        "name": "Ol Chiki",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Ol Chiki (Ol Cemet’, Ol, Santali, <span class='autonym'>ᱚᱞ ᱪᱤᱠᱤ</span>) is an Indic alphabet, written left-to-right. Used in India, Bangladesh and Nepal for Santhali (6 million speakers), alongside Devanagari, Bengali, Oriya and Latin. Created in the 1920s by Pandit Raghunath Murmu. Has 6 vowel and 24 consonant letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Olck",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G29195",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Olck",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Ol_Chiki_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Ol_Chiki_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Olck"
        }
    },
    "Orkh": {
        "id": "Orkh",
        "name": "Orkhon runic (Old Turkic)",
        "status": "historical",
        "family": "Central Asian",
        "type": "alphabet",
        "summary": "Orkhon runic (Old Turkic) is a historical Central Asian alphabet, written right-to-left or boustrophedon. Was used in the 8th–13th centuries in Mongolia and Siberia for Turkic languages. Earliest examples discovered in 1889 on the banks of the Orkhon river. Superficially similar to Germanic runes and to Old Hungarian.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Orkh",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G41975",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Orkh",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Orkhon_runes_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Orkhon_runes_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Orkh"
        }
    },
    "Orya": {
        "id": "Orya",
        "name": "Odia (Oriya)",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Odia (Oriya, <span class='autonym'>ଉତ୍କଳ</span>) is an Indic abugida, written left-to-right (21 million users). Used since the c. 14th century in India for the Odia language (state language of Orissa). Also used for Dravidian and Munda languages. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Orya",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G10153",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Orya",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Oriya_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Oriya_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Orya"
        }
    },
    "Osge": {
        "id": "Osge",
        "name": "Osage",
        "status": "",
        "family": "American",
        "type": "alphabet",
        "summary": "Osage is an American bicameral alphabet, written left-to-right. Used in the USA for the revitalized native Osage language. Derived from Latin 2006–2014 by Herman Mongrain Lookout.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Osge",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch20.pdf#G26674",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Osge",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Osage_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Osage_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Osge"
        }
    },
    "Osma": {
        "id": "Osma",
        "name": "Osmanya",
        "status": "historical",
        "family": "African",
        "type": "alphabet",
        "summary": "Osmanya (Far Soomaali, Farta Cismaanya, <span class='autonym'>𐒍𐒖𐒇𐒂𐒖 𐒋𐒘𐒈𐒑𐒛𐒒𐒕𐒖</span>) is a historical African alphabet, written left-to-right. Was sporadically used 1922-1973 for writing the Somali language. Created by Cusmaan Yuusuf Keenadiid. Almost fully replaced by the Latin script in 1973.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Osma",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G16914",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Osma",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Osmanya_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Osmanya_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Osma"
        }
    },
    "Ougr": {
        "id": "Ougr",
        "name": "Old Uyghur",
        "status": "historical",
        "family": "Central Asian",
        "type": "abjad",
        "summary": "Old Uyghur is a historical Central Asian abjad. Was used in Turfanand Gansu in c. 700s–1800s for the Old Uyghur language, a variety of Old Turkic. Evolved into the Mongolian and Manchu scripts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ougr",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ougr",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ougr"
        }
    },
    "Palm": {
        "id": "Palm",
        "name": "Palmyrene",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Palmyrene is a historical Middle Eastern abjad, written right-to-left. Was used in c. 100 BCE–300 CE between Damascus and the Euphrates river for the Palmyrenean dialect of West Aramaic.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Palm",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G29599",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Palm",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Palmyrene_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Palmyrene_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Palm"
        }
    },
    "Pauc": {
        "id": "Pauc",
        "name": "Pau Cin Hau",
        "status": "",
        "family": "Southeast Asian",
        "type": "alphabet",
        "summary": "Pau Cin Hau is a Southeast Asian alphabet, written left-to-right. Used in Myanmar for the Zomi language by the followers of the Laipian and, later, Christian religions. Created c. 1902 by Pau Cin Hau, intially as a logographic script, 1932 reduced to an alphabet.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Pauc",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G68308",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Pauc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Pau_Cin_Hau_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Pau_Cin_Hau_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Pauc"
        }
    },
    "Pcun": {
        "id": "Pcun",
        "name": "Proto-Cuneiform",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "logo-syllabary",
        "summary": "Proto-Cuneiform is a historical Middle Eastern logo-syllabary. Was used c. 3500–2000 BCE in Babylonia, today’s southern Iraq.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Pcun",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Pcun",
            "r12a": "https://r12a.github.io/scripts/links?iso=Pcun"
        }
    },
    "Pelm": {
        "id": "Pelm",
        "name": "Proto-Elamite",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "logo-syllabary",
        "summary": "Proto-Elamite is a historical Middle Eastern logo-syllabary, written right-to-left. Was used c. 3100–2900 BCE in Elam, today’s southwest Iran. Later ",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Pelm",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Pelm",
            "r12a": "https://r12a.github.io/scripts/links?iso=Pelm"
        }
    },
    "Perm": {
        "id": "Perm",
        "name": "Old Permic",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Old Permic (Abur) is a historical European alphabet, written left-to-right. Was used in the 14th-17th centuries in the West of the Ural mountains for the Komi language (0.3 million speakers). Created by St. Stephen of Perm. Was gradually replaced by Cyrillic. Visually similar to Cyrillic and Greek. Had 34 letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Perm",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G31220",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Perm",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Permic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Permic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Perm"
        }
    },
    "Phag": {
        "id": "Phag",
        "name": "Phags-pa",
        "status": "historical",
        "family": "Central Asian",
        "type": "abugida",
        "summary": "Phags-pa (ʼPhags-pa, <span class='autonym'>ꡏꡡꡃ ꡣꡡꡙ ꡐꡜꡞ</span>) is a historical Central Asian abugida, written vertically right-to-left. Was sporadically used 1269–1360 in the Yuan empire as a unified script for Mongolian, Tibetan, Sanskrit, Chinese, Persian, Uyghur. Created by the Tibetan monk and State Preceptor Drogön Chögyal Phagpa for Kublai Khan.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Phag",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G40430",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Phag",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Phags-pa_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Phags-pa_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Phag"
        }
    },
    "Phli": {
        "id": "Phli",
        "name": "Inscriptional Pahlavi",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Inscriptional Pahlavi is a historical Middle Eastern abjad, written right-to-left. Was presumably used in the 2nd century BCE–5th century CE as a monumental script for Middle Iranian languages. The letters are disconnected. Later evolved into Psalter Pahlavi and Book Pahlavi.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Phli",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G32800",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Phli",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Inscriptional_Pahlavi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Inscriptional_Pahlavi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Phli"
        }
    },
    "Phlp": {
        "id": "Phlp",
        "name": "Psalter Pahlavi",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Psalter Pahlavi is a historical Middle Eastern abjad, written right-to-left. Was presumably used in the mid-6th–7th century CE for Middle Persian. The letters are connected. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Phlp",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G32800",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Phlp",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Psalter_Pahlavi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Psalter_Pahlavi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Phlp"
        }
    },
    "Phlv": {
        "id": "Phlv",
        "name": "Book Pahlavi",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Book Pahlavi is a historical Middle Eastern abjad, written right-to-left. Was presumably used in the 6th–8th century CE for Middle Persian, alongside Inscriptional Pahlavi and Psalter Pahlavi. Book Pahlavi was used in manuscripts and on stone monuments. The letters are connected.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Phlv",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Phlv",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Book_Pahlavi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Book_Pahlavi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Phlv"
        }
    },
    "Phnx": {
        "id": "Phnx",
        "name": "Phoenician",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Phoenician is a historical Middle Eastern abjad, written right-to-left. Was used c.  1050–150 BCE in the Mediterranean region for the Phoenician and Punic languages. First widespread phonetic script, derived from Egyptian hieroglyphics.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Phnx",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G26686",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Phnx",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Phoenician_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Phoenician_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Phnx"
        }
    },
    "Piqd": {
        "id": "Piqd",
        "name": "Klingon (KLI pIqaD)",
        "status": "fictional",
        "family": "artificial",
        "type": "alphabet",
        "summary": "Klingon (KLI pIqaD) is a fictional artificial alphabet, written left-to-right. Used in the Star Trek media franchise by a race of fictional aliens. Rejected for inclusion in Unicode.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Piqd",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Piqd",
            "r12a": "https://r12a.github.io/scripts/links?iso=Piqd"
        }
    },
    "Plrd": {
        "id": "Plrd",
        "name": "Pollard Phonetic",
        "status": "",
        "family": "East Asian",
        "type": "abugida",
        "summary": "Pollard Phonetic (Pollard Miao) is an East Asian abugida, written left-to-right. Used in southern China and Southeast Asia for the A-Hmao, Lipo, Szechuan Miao, Nasu languages. Created 1936 by Samuel Pollard, inspired by Canadian Aboriginal syllabics. Revised in 1988, remains popular among the Hmong people in China.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Plrd",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G42236",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Plrd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Pollard_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Pollard_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Plrd"
        }
    },
    "Prti": {
        "id": "Prti",
        "name": "Inscriptional Parthian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Inscriptional Parthian is a historical Middle Eastern abjad, written right-to-left. Was used around 250 BC in today’s north-eastern Iran for the Parthian language, and, along with Inscriptional Pahlavi and Psalter Pahlavi, for other Iranian and Indo-European languages. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Prti",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G32800",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Prti",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Inscriptional_Parthian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Inscriptional_Parthian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Prti"
        }
    },
    "Psin": {
        "id": "Psin",
        "name": "Proto-Sinaitic",
        "status": "historical",
        "family": "African",
        "type": "logo-syllabary",
        "summary": "Proto-Sinaitic is a historical African logo-syllabary. Used in the 19th–16th century BCE. Possibly derived from Egyptian hieroglyphs.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Psin",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Psin",
            "r12a": "https://r12a.github.io/scripts/links?iso=Psin"
        }
    },
    "Qaaa": {
        "id": "Qaaa",
        "name": "Private use",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Qaaa to Qabx are 50 script codes that are intended for private use.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Qaaa",
            "r12a": "https://r12a.github.io/scripts/links?iso=Qaaa"
        }
    },
    "Ranj": {
        "id": "Ranj",
        "name": "Ranjana",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Ranjana is an Indic abugida, written left-to-right. Used in Nepal for the Newari (Nepal Bhasa) language, which also used Prachalit, Bhujimol, Kutila, Golmol, and Litumol. Prachalit and Ranjana still survive today but Newari is mostly written in Devanagari. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ranj",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ranj",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ranj"
        }
    },
    "Rjng": {
        "id": "Rjng",
        "name": "Rejang",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Rejang (Kaganga, Redjang, <span class='autonym'>ꥆꤰ꥓ꤼꤽ ꤽꥍꤺꥏ</span>) is a Southeast Asian abugida, written left-to-right. Used in Indonesia for the Rejang and Malay languages, but Latin script is now mostly used for the Rejang language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Rjng",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G27208",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Rjng",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Rejang_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Rejang_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Rjng"
        }
    },
    "Rohg": {
        "id": "Rohg",
        "name": "Hanifi Rohingya",
        "status": "",
        "family": "Southeast Asian",
        "type": "",
        "summary": "Hanifi Rohingya (<span class='autonym'>𐴌𐴟𐴇𐴥𐴝𐴚𐴒𐴙𐴝 𐴇𐴝𐴕𐴞𐴉𐴞 𐴓𐴠𐴑𐴤𐴝</span>) is a Southeast Asian script, written right-to-left. Used in Myanmar since the 1980s for the Rohingya language (1.5 million speakers), which was previously witten in Arabic script. Created by Mohammad Hanif.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Rohg",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G73728",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Rohg",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Hanifi_Rohingya_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Hanifi_Rohingya_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Rohg"
        }
    },
    "Roro": {
        "id": "Roro",
        "name": "Rongorongo",
        "status": "historical",
        "family": "Pacific",
        "type": "logo-syllabary",
        "summary": "Rongorongo is a historical Pacific logo-syllabary, written boustrophedon. Was discovered on Easter Island in the 19th century and was possibly used for the Rapa Nui language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Roro",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Roro",
            "r12a": "https://r12a.github.io/scripts/links?iso=Roro"
        }
    },
    "Runr": {
        "id": "Runr",
        "name": "Runic",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Runic is a historical European alphabet, written left-to-right or boustrophedon. Used in Northern Europe in 150–1000 CE for Germanic languages. The Scandinavian variants are also called Futhark or Fuþark. Derived from Old Italic. Gradually replaced with the Latin script. Still used for specialized purposes, by occultist, mystic, and esoteric movements, and in fantasy literature.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Runr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G26624",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Runr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Runic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Runic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Runr"
        }
    },
    "Samr": {
        "id": "Samr",
        "name": "Samaritan",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Samaritan is a Middle Eastern abjad, written right-to-left. Used since 600 BCE by the Samaritans for religious writings in Samaritan Hebrew and Samaritan Aramaic. Derived from Phoenician. Most Hebrew religious writings use the Hebrew script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Samr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G34422",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Samr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Samaritan_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Samaritan_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Samr"
        }
    },
    "Sara": {
        "id": "Sara",
        "name": "Sarati",
        "status": "fictional",
        "family": "artificial",
        "type": "abugida",
        "summary": "Sarati is a fictional artificial abugida. Created by J. R. R. Tolkien for the artificial language Quenya spoken in the fictional Middle-earth.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sara",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sara",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sara"
        }
    },
    "Sarb": {
        "id": "Sarb",
        "name": "Old South Arabian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Old South Arabian (Musnad, Epigraphic South Arabian, Sayhadic) is a historical Middle Eastern abjad, written right-to-left. Was used in the 6th–8th centuries CE in today’s Yemen and throughout the Arabian peninsula for a group of related now-extinct Semitic languages. Evolved into Ethiopic script, was replaced by Arabic script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sarb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch10.pdf#G29209",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sarb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_South_Arabian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_South_Arabian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sarb"
        }
    },
    "Saur": {
        "id": "Saur",
        "name": "Saurashtra",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Saurashtra is an Indic abugida, written left-to-right. Used since the 19th century in Southern India for the Indo-European Saurashtra language (130,000 speakers), alongside Tamil, Gijarati, Telugu, and Devanagari scripts.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Saur",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G28198",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Saur",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Saurashtra_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Saurashtra_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Saur"
        }
    },
    "Sgnw": {
        "id": "Sgnw",
        "name": "SignWriting",
        "status": "",
        "family": "Sign-Language",
        "type": "featural script",
        "summary": "SignWriting (Sutton SignWriting) is a featural Sign-Language script, written vertically and horizontally left-to-right. Used to transcribe some 12 sign languages like Brazilian Sign Language, French Sign Language, Norwegian Sign Language, American Sign Language, Danish Sign Language, and for International Sign. Developed in 1974 by Valerie Sutton, later standardized as the International Sign Writing Alphabet (ISWA). The visually iconic symbols represent the hands, face and body, arranged spatially to reflect the movements made by the signer. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sgnw",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch21.pdf#G28865",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sgnw",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:SignWriting_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:SignWriting_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sgnw"
        }
    },
    "Shaw": {
        "id": "Shaw",
        "name": "Shavian",
        "status": "historical",
        "family": "artificial",
        "type": "alphabet",
        "summary": "Shavian (<span class='autonym'>𐑖𐑱𐑝𐑾𐑯 𐑨𐑤𐑓𐑩𐑚𐑧𐑑</span>) is an artificial alphabet, written left-to-right. Created around 1960 by Ronald Kingsley Read for phonetic spelling of English. The winning entry in a competition posthumously funded by playwright Bernard Shaw. Also adopted for Esperanto. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Shaw",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch08.pdf#G27260",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Shaw",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Shavian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Shavian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Shaw"
        }
    },
    "Shrd": {
        "id": "Shrd",
        "name": "Sharada",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Sharada (<span class='autonym'>𑆯𑆳𑆫𑆢𑆳</span>) is an Indic abugida, written left-to-right, partially with a headstroke. Used in c. 700–1950s for Kashmiri and Sanskrit, first throughout India, later only in Kashmir. Now used only by the Kashmiri Pandits for religious and ceremonial purposes. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Shrd",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G81154",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Shrd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Sharada_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Sharada_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Shrd"
        }
    },
    "Shui": {
        "id": "Shui",
        "name": "Shuishu",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Shuishu (Sui) is an East Asian logo-syllabary, written vertically right-to-left and horizontally left-to-right. Used in China for the Sui language in ceremonial and religious context. Today, the Sui people mostly write Chinese.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Shui",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Shui",
            "r12a": "https://r12a.github.io/scripts/links?iso=Shui"
        }
    },
    "Sidd": {
        "id": "Sidd",
        "name": "Siddham",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Siddham (<span class='autonym'>𑖭𑖰𑖟𑖿𑖠𑖽</span>) is a historical Indic abugida, written left-to-right. Was used in 600–1200 CE for Sanskrit, first in southern India, later also in China, Japan and Korea. Still occasionally used by Buddhists in Japan. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sidd",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G80829",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sidd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Siddham_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Siddham_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sidd"
        }
    },
    "Sind": {
        "id": "Sind",
        "name": "Khudawadi",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Khudawadi (Sindhi, <span class='autonym'>𑊻𑋩𑋣𑋏𑋠𑋔𑋠𑋏𑋢</span>) is a historical Indic abugida, written left-to-right. Was used in the Sindh province of Pakistan and in India for the Sindhi language (20 million speakers). Now replaced by Nastaliq in Pakistan, and by Devanagari in India. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sind",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G80879",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sind",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Khudawadi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Khudawadi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sind"
        }
    },
    "Sinh": {
        "id": "Sinh",
        "name": "Sinhala",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Sinhala (<span class='autonym'>සිංහල</span>) is an Indic abugida, written left-to-right. Used since c. 300 CE in Sri Lanka for the Sinhala language (15 million speakers), for Pali and Sanskrit. The “pure” letter set has 20 consonant and 20 vowel letters, and is used for the sounds of the spoken Sinhala. The “mixed” letter set (18 more consonant letters) is used for correct spelling, which often reflect archaic pronunciations, and for non-Sinhala words and languages. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sinh",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G26561",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sinh",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Sinhalese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Sinhalese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sinh"
        }
    },
    "Sogd": {
        "id": "Sogd",
        "name": "Sogdian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Sogdian (<span class='autonym'>𐼼𐼴𐼶𐼹𐼷𐼸‎</span>) is a historical Middle Eastern abjad, written right-to-left. Was used in 7th–14th centuries CE, alongside Manichaean and Syriac, for the middle Iranian Sogdian language spoken in parts of today’s Uzbekistan, Tajikistan, Pakistan and China. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sogd",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G49476",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sogd",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Sogdian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Sogdian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sogd"
        }
    },
    "Sogo": {
        "id": "Sogo",
        "name": "Old Sogdian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Old Sogdian (<span class='autonym'>𐼑‎𐼇𐼄𐼌𐼊𐼋‎</span>) is a group of historical Middle Eastern abjads, written right-to-left. These precursors to the Sogdian script were used in the 3rd–5th centuries CE for the historic Sogdian language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sogo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G49463",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sogo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Sogdian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Sogdian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sogo"
        }
    },
    "Sora": {
        "id": "Sora",
        "name": "Sora Sompeng",
        "status": "",
        "family": "Indic",
        "type": "syllabary",
        "summary": "Sora Sompeng (<span class='autonym'>𑃐𑃦𑃝𑃗 𑃐𑃦𑃖𑃛𑃣𑃗</span>) is an Indic syllabary, written left-to-right. Used in India for the Sora language (0.3 million speakers). Created in 1936 by Mangei Gomango to replace non-native scripts previously used for the Sora language: Telugu, Oriya and an IPA-based script. Has 24 letters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sora",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G95556",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sora",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Sorang_Sompeng_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Sorang_Sompeng_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sora"
        }
    },
    "Soyo": {
        "id": "Soyo",
        "name": "Soyombo",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Soyombo (<span class='autonym'>𑪞𑪞‎</span>) is a historical Indic abugida, written left-to-right. Was used in 1686–18th century as a ceremonial and decorative script for the Mongolian language. Also sporadically used for Tibetan and Sanskrit. Created by Bogdo Zanabazar. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Soyo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G41941",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Soyo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Soyombo_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Soyombo_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Soyo"
        }
    },
    "Sund": {
        "id": "Sund",
        "name": "Sundanese",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Sundanese (<span class='autonym'>ᮃᮊ᮪ᮞᮛ ᮞᮥᮔ᮪ᮓ</span>) is a Southeast Asian abugida, written left-to-right. The standard form (Aksara Sunda Baku, <span class='autonym'>ᮃᮊ᮪ᮞᮛ ᮞᮥᮔ᮪ᮓ ᮘᮊᮥ</span>) is used on the Indonesian island Java since 1996 for the Sundanese language (27 million speakers), and is derived from Old Sundanese script (Aksara Sunda Kuno, <span class='autonym'>ᮃᮊ᮪ᮞᮛ ᮞᮥᮔ᮪ᮓ ᮊᮥᮔ</span>) used in the 14th–18th centuries. The Sudanese language also uses Latin script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sund",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G27244",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sund",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Sundanese_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Sundanese_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sund"
        }
    },
    "Sylo": {
        "id": "Sylo",
        "name": "Syloti Nagri",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Syloti Nagri (Sylheti Nagri, <span class='autonym'>ꠍꠤꠟꠐꠤ ꠘꠣꠉꠞꠤ</span>) is an Indic abugida, written left-to-right. Used in Bangladesh for the Sylheti language. Supposedly created in the 14th century, attested in the 17th century. Since the mid-20th century almost entirely replaced by the Bengali and Latin scripts. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Sylo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G59104",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Sylo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Syloti_Nagri_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Syloti_Nagri_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Sylo"
        }
    },
    "Syrc": {
        "id": "Syrc",
        "name": "Syriac",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Syriac (<span class='autonym'>ܐܠܦ ܒܝܬ ܣܘܪܝܝܐ</span>) is a Middle Eastern abjad, written right-to-left. Was used in West Asia for Syriac (now only used in the Syrian church), and also Aramaic, Neo-Aramaic, Turoyo/Surayt. Attested in 6 CE. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Syrc",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G13005",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Syrc",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Syriac_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Syriac_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Syrc"
        }
    },
    "Syre": {
        "id": "Syre",
        "name": "Syriac (Estrangelo)",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Syriac (Estrangelo) is a historical Middle Eastern abjad, written right-to-left. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Syre",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Syre",
            "r12a": "https://r12a.github.io/scripts/links?iso=Syre"
        }
    },
    "Syrj": {
        "id": "Syrj",
        "name": "Syriac (Western)",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Syriac (Western) is a Middle Eastern abjad, written right-to-left. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Syrj",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Syrj",
            "r12a": "https://r12a.github.io/scripts/links?iso=Syrj"
        }
    },
    "Syrn": {
        "id": "Syrn",
        "name": "Syriac (Eastern)",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Syriac (Eastern) is a Middle Eastern abjad, written right-to-left. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Syrn",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Syrn",
            "r12a": "https://r12a.github.io/scripts/links?iso=Syrn"
        }
    },
    "Tagb": {
        "id": "Tagb",
        "name": "Tagbanwa",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Tagbanwa (<span class='autonym'>ᝦᝪᝯ</span>) is a Southeast Asian abugida, written left-to-right. Used in the Philippines since c. 1300 for the Tagbanwa language (8–25,000 speakers). Has 13 consontants. The script and language are in decline, being replaced by Tagalog.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tagb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26441",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tagb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tagbanwa_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tagbanwa_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tagb"
        }
    },
    "Takr": {
        "id": "Takr",
        "name": "Takri",
        "status": "historical",
        "family": "Indic",
        "type": "abugida",
        "summary": "Takri (<span class='autonym'>𑚔𑚭𑚊𑚤𑚯</span>) is a historical Indic abugida, written left-to-right, mostly without a headstroke. Was used in the 16th–19th centuries in today’s India and Pakistan for the Chambeali and Dogri languages, and for Pahari languages like Jaunsari and Kulvi. Related to the Dogri script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Takr",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G81184",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Takr",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Takri_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Takri_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Takr"
        }
    },
    "Tale": {
        "id": "Tale",
        "name": "Tai Le",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Tai Le (<span class='autonym'>ᥖᥭᥰᥘᥫᥴ</span>) is a Southeast Asian abugida, written left-to-right. Used in Yunnan, China since c. 1200 CE for the Tai Le (Tai Nüa) language. Revised several times in 1952–1988.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tale",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G32903",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tale",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tai_N%C3%BCa_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tai_N%C3%BCa_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tale"
        }
    },
    "Talu": {
        "id": "Talu",
        "name": "New Tai Lue",
        "status": "",
        "family": "Southeast Asian",
        "type": "alphabet",
        "summary": "New Tai Lue (Xishuangbanna Dai) is a Southeast Asian alphabet, written left-to-right. Development in China since the 1950s for the Tai Lü language as a replacement for the Tai Tham script, which is also still used. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Talu",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G65706",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Talu",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:New_Tai_Lue_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:New_Tai_Lue_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Talu"
        }
    },
    "Taml": {
        "id": "Taml",
        "name": "Tamil",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Tamil (<span class='autonym'>தமிழ்</span>) is an Indic abugida, written left-to-right (70 million users). Used in India, Sri Lanka, Singapore, Malaysia and Mauritius for the Tamil language, and other languages like Irula, Badaga, Kurumba, Paniya, Saurashtra. Has 18 consonants (modest set for Brahmic scripts) and 12 vowels. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Taml",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G10162",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Taml",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tamil_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tamil_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Taml"
        }
    },
    "Tang": {
        "id": "Tang",
        "name": "Tangut",
        "status": "historical",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Tangut (Xixia, <span class='autonym'>𗼇𗟲</span>) is a historical East Asian logo-syllabary, written vertically left-to-right. Was widely used in China in 1036–1502 for the now-extinct Tangut language. Superficially similar to Chinese writing, but not related. Had almost 6,000 characters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tang",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G43635",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tang",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tangut_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tangut_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tang"
        }
    },
    "Tavt": {
        "id": "Tavt",
        "name": "Tai Viet",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Tai Viet is a Southeast Asian abugida, written left-to-right. Used since the 16th century in Vietnam, Laos, China and Thailand for the Tai Dam, Tai Dón, Tai Daeng, Thai Song and Tày Tac languages. Has 31 consonants and 14 vowels. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tavt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G59747",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tavt",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tai_Viet_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tai_Viet_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tavt"
        }
    },
    "Telu": {
        "id": "Telu",
        "name": "Telugu",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Telugu (<span class='autonym'>తెలుగు</span>) is an Indic abugida, written left-to-right without a headstroke. Used since c. 1300 CE in South India for the Telugu language (74 million speakers), state language of Andhra Pradesh. Also used for Chenchu, Savara, Manna-Dora, for Sanskrit and Gondi. Closely related to the Kannada script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Telu",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch12.pdf#G81985",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Telu",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Telugu_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Telugu_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Telu"
        }
    },
    "Teng": {
        "id": "Teng",
        "name": "Tengwar",
        "status": "fictional",
        "family": "artificial",
        "type": "abugida",
        "summary": "Tengwar is a fictional artificial abugida, written left-to-right. Created by J.R.R. Tolkien for several invented languages used in the fictional Middle-earth.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Teng",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Teng",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tengwar_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tengwar_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Teng"
        }
    },
    "Tfng": {
        "id": "Tfng",
        "name": "Tifinagh",
        "status": "",
        "family": "African",
        "type": "abjad",
        "summary": "Tifinagh (<span class='autonym'>ⵜⵉⴼⵉⵏⴰⵖ</span>) is an African abjad. Used alongside the Berber Latin Alphabet for Berber languages of North Africa (1 million speakers), and for Tuareg languages.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tfng",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G43184",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tfng",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tifinagh_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tifinagh_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tfng"
        }
    },
    "Tglg": {
        "id": "Tglg",
        "name": "Tagalog",
        "status": "historical",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Tagalog (Baybayin, Alibata, <span class='autonym'>ᜊᜌ᜔ᜊᜌᜒᜈ᜔</span>) is a historical Southeast Asian abugida, written left-to-right. Was used in the Philippines in the 13th–18th centuries for the Tagalog language (21 million speakers), which is now written in the Latin script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tglg",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch17.pdf#G26435",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tglg",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Baybayin_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Baybayin_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tglg"
        }
    },
    "Thaa": {
        "id": "Thaa",
        "name": "Thaana",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Thaana (<span class='autonym'>ދިވެހި</span>) is an Indic alphabet, written right-to-left (350,000 users). Used on the Maldives and in India for the Maldivian (Mahl, Dhivehi) language, which also uses a Latin transliteration.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Thaa",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G26451",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Thaa",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Thaana_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Thaana_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Thaa"
        }
    },
    "Thai": {
        "id": "Thai",
        "name": "Thai",
        "status": "",
        "family": "Southeast Asian",
        "type": "abugida",
        "summary": "Thai (<span class='autonym'>ไทย</span>) is a Southeast Asian abugida, written left-to-right (38 million users). Used since 1283 in Thailand, Laos and China for the Thai, Northern Thai, Northeastern Thai, Southern Thai, Thai Song and Pali languages. Related to the Lao script. Uses 44 letters for 21 consonants. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Thai",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch16.pdf#G46485",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Thai",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Thai_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Thai_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Thai"
        }
    },
    "Tibt": {
        "id": "Tibt",
        "name": "Tibetan",
        "status": "",
        "family": "Central Asian",
        "type": "abugida",
        "summary": "Tibetan (<span class='autonym'>བོད</span>) is a Central Asian abugida, written left-to-right (5 million users). Used since c. 650 CE in Tibet, Bhutan, Nepal and India for the Tibetan, Dzongkha, Ladakhi and Sikkimese languages and for religious Sanskrit texts. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tibt",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G31615",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tibt",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tibetan_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tibetan_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tibt"
        }
    },
    "Tirh": {
        "id": "Tirh",
        "name": "Tirhuta",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Tirhuta (Mithilakshar) is an Indic abugida, written left-to-right. Was used in India and Nepal for the Maithili language (35 million speakers), which now mostly uses Devanagari. Tirhuta is still occasionally used for ceremonial purposes.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tirh",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch15.pdf#G95493",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tirh",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Tirhuta_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Tirhuta_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tirh"
        }
    },
    "Tnsa": {
        "id": "Tnsa",
        "name": "Tangsa",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Tangsa is an Indic alphabet. Used by the Tangsa (Tangshang, Hawa) people at the border between India and Myanmar.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Tnsa",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Tnsa",
            "r12a": "https://r12a.github.io/scripts/links?iso=Tnsa"
        }
    },
    "Toto": {
        "id": "Toto",
        "name": "Toto",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Toto is an Indic alphabet, written left-to-right. Created in 2015 by Dhaniram Toto for the 1,500 speakers of the Toto language, who live in a single jungle village in India near Bhutan. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Toto",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Toto",
            "r12a": "https://r12a.github.io/scripts/links?iso=Toto"
        }
    },
    "Ugar": {
        "id": "Ugar",
        "name": "Ugaritic",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Ugaritic is a historical Middle Eastern abjad, written left-to-right. Was used in today’s Syria in 1500-1300 BCE for the Ugaritic language, and also for Hurrian. Has 30 letters that visually resemble cuneiform.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Ugar",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G26461",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Ugar",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Ugaritic_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Ugaritic_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Ugar"
        }
    },
    "Vaii": {
        "id": "Vaii",
        "name": "Vai",
        "status": "",
        "family": "African",
        "type": "syllabary",
        "summary": "Vai (<span class='autonym'>ꕙꔤ</span>) is an African syllabary, written left-to-right. Used in Liberia and Sierra Leone for the Vai language (115,000 speakers). Created in the 1830s by Mɔmɔlu Duwalu Bukɛlɛ. Has 212 symbols. Possibly influenced by the Cherokee syllabary.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Vaii",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch19.pdf#G18604",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Vaii",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Vai_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Vai_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Vaii"
        }
    },
    "Visp": {
        "id": "Visp",
        "name": "Visible Speech",
        "status": "historical",
        "family": "artificial",
        "type": "featural script",
        "summary": "Visible Speech (Physiological Alphabet) is a historical artificial script, written left-to-right. Created in the 1860s by Alexander Melville Bell to visually represent every human speech sound and to help in deaf education.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Visp",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Visp",
            "r12a": "https://r12a.github.io/scripts/links?iso=Visp"
        }
    },
    "Vith": {
        "id": "Vith",
        "name": "Vithkuqi",
        "status": "historical",
        "family": "European",
        "type": "alphabet",
        "summary": "Vithkuqi (Büthakukye) is a historical European bicameral alphabet, written left-to-right. Created around 1840 by Naum Veqilharxhi for the Albanian language.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Vith",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Vith",
            "r12a": "https://r12a.github.io/scripts/links?iso=Vith"
        }
    },
    "Wara": {
        "id": "Wara",
        "name": "Varang Kshiti (Warang Citi)",
        "status": "",
        "family": "Indic",
        "type": "abugida",
        "summary": "Varang Kshiti (Warang Citi, <span class='autonym'>𑢹𑣗𑣁𑣜𑣊 𑣏𑣂𑣕𑣂‎</span>) is an Indic abugida, written left-to-right. Used in India for the Ho language, alongside Devanagari and Latin.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Wara",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G27702",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Wara",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Varang_Kshiti_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Varang_Kshiti_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Wara"
        }
    },
    "Wcho": {
        "id": "Wcho",
        "name": "Wancho",
        "status": "",
        "family": "Indic",
        "type": "alphabet",
        "summary": "Wancho is an Indic alphabet, written left-to-right. Created 2001–2012 by Banwang Losu in India for the Wancho language. Some schools teach the Wancho script but the language generally uses Devanagari and Latin script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Wcho",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch13.pdf#G46061",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Wcho",
            "r12a": "https://r12a.github.io/scripts/links?iso=Wcho"
        }
    },
    "Wole": {
        "id": "Wole",
        "name": "Woleai",
        "status": "historical",
        "family": "Pacific",
        "type": "syllabary",
        "summary": "Woleai is a historical Pacific syllabary, written left-to-right.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Wole",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Wole",
            "r12a": "https://r12a.github.io/scripts/links?iso=Wole"
        }
    },
    "Xpeo": {
        "id": "Xpeo",
        "name": "Old Persian",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "alphabet",
        "summary": "Old Persian is a historical Middle Eastern semisyllabary, written left-to-right. Was used around 525 BCE–330 BCE for Old Persian. Resembles Sumero-Akkadian cuneiform.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Xpeo",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G26474",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Xpeo",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Old_Persian_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Old_Persian_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Xpeo"
        }
    },
    "Xsux": {
        "id": "Xsux",
        "name": "Sumero-Akkadian cuneiform",
        "status": "historical",
        "family": "Middle Eastern",
        "type": "logo-syllabary",
        "summary": "Sumero-Akkadian cuneiform is a historical Middle Eastern logo-syllabary, written left-to-right. Was used at least since 3200 BCE in today’s Iraq for the now-exinct Sumerian language. Was later used in today’s Iran, Turkey, Syria, and Egypt, for languages like Akkadian, Elamite, Hittite, Luwian and Urartian. Widely believed to be the first writing system in the world. Combined logographic, consonantal alphabetic and syllabic signs. Since c. 900 BCE gradually replaced by the Aramaic script.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Xsux",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch11.pdf#G26852",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Xsux",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Cuneiform_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Cuneiform_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Xsux"
        }
    },
    "Yezi": {
        "id": "Yezi",
        "name": "Yezidi",
        "status": "",
        "family": "Middle Eastern",
        "type": "abjad",
        "summary": "Yezidi (Yazidi) is a Middle Eastern abjad. Used in Kurdistan, Iraq, Syria, Turkey and the Caucasus for religious texts in the Kurdish and Arabic languages.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Yezi",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch09.pdf#G59804",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Yezi",
            "r12a": "https://r12a.github.io/scripts/links?iso=Yezi"
        }
    },
    "Yiii": {
        "id": "Yiii",
        "name": "Yi",
        "status": "",
        "family": "East Asian",
        "type": "logo-syllabary",
        "summary": "Yi (Modern Yi, <span class='autonym'>ꆈꌠꁱꂷ</span>) is an East Asian logo-syllabary, written horizontally left-to-right (modern) or vertically right-to-left (traditional). Used for the Nuosu Yi language (2 million users) in the Liangshan Yi region of China. Yi signs are made from five basic strokes; dot, horizontal line, vertical line, arch and circle. Attested 500 years ago, believed to be use for perhaps even 5000 years. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Yiii",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch18.pdf#G13042",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Yiii",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Yi_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Yi_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Yiii"
        }
    },
    "Zanb": {
        "id": "Zanb",
        "name": "Zanabazar Square",
        "status": "historical",
        "family": "Central Asian",
        "type": "abugida",
        "summary": "Zanabazar Square (Mongolian Square, <span class='autonym'>𑨢𑨆𑨏𑨳𑨋𑨆𑨬𑨳‎</span>) is a historical Central Asian abugida, written left-to-right. Was used in Mongolia for writing the Mongolian, Sanskrit and Tibetan languages. Created in the late 17th century by the Tibetan Buddhism leader Zanabazar, who also developed the the Soyombo script. Needs software support for complex text layout (shaping).",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zanb",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch14.pdf#G41935",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zanb",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Zanabazar_Square_script",
            "WiktionaryLangs": "https://en.wiktionary.org/wiki/Category:Zanabazar_Square_script_languages",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zanb"
        }
    },
    "Zinh": {
        "id": "Zinh",
        "name": "Inherited script",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Inherited script applies to characters that inherit their script from the preceding characters, like nonspacing marks, enclosing marks, and the zero width joiner/non-joiner characters. These can be used with multiple scripts. In contrast, characters that belong to the Common script retain their script property.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zinh",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zinh",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zinh"
        }
    },
    "Zmth": {
        "id": "Zmth",
        "name": "Mathematical notation",
        "status": "",
        "family": "artificial",
        "type": "",
        "summary": "Mathematical notation is used for recording mathematical concepts. Includes digits, as well as symbols (both original and borrowed from Latin, Greek and other scripts) for operations, variables, functions, and other concepts. Developed in the mid-1700s by Leonhard Euler.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zmth",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch22.pdf#G51347",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zmth",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zmth"
        }
    },
    "Zsye": {
        "id": "Zsye",
        "name": "Emoji symbols",
        "status": "",
        "family": "artificial",
        "type": "",
        "summary": "Emoji symbols are pictograms, logograms, ideograms and smileys used in electronic messages and web pages. Their primary function is to fill in emotional cues otherwise missing from typed conversation. They are typically rendered as multi-color characters.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zsye",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch22.pdf#G12367",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zsye",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zsye"
        }
    },
    "Zsym": {
        "id": "Zsym",
        "name": "Symbols",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Symbols are characters that signify an idea, object, or relationship, but do not belong to another standardized script or notation, like arrows, card suit symbols, or religious icons.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zsym",
            "Unicode": "https://www.unicode.org/versions/Unicode13.0.0/ch22.pdf#G14025",
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zsym",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zsym"
        }
    },
    "Zxxx": {
        "id": "Zxxx",
        "name": "Unwritten documents",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Unwritten documents are unwritten materials like audio recordings.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zxxx",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zxxx",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zxxx"
        }
    },
    "Zyyy": {
        "id": "Zyyy",
        "name": "Common script",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Common script includes characters which are shared between many writing systems or are not part of a specific writing system, like music notation symbols, currency signs, or many punctuation marks. Those characters retain that script property. In contrast, characters that belong to the Inherited script belong to the same script as the preceding characters in a particular text.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zyyy",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zyyy",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Undetermined_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zyyy"
        }
    },
    "Zzzz": {
        "id": "Zzzz",
        "name": "Uncoded script",
        "status": "",
        "family": "",
        "type": "",
        "summary": "Uncoded script includes characters for scripts that have not been included in the ISO 15924 standard.",
        "urls": {
            "ScriptSource": "https://scriptsource.org/scr/Zzzz",
            "Unicode": null,
            "Wikipedia": "https://en.wikipedia.org/wiki/ISO_15924:Zzzz",
            "Wiktionary": "https://en.wiktionary.org/wiki/Category:Uncoded_script",
            "r12a": "https://r12a.github.io/scripts/links?iso=Zzzz"
        }
    }
}