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
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
---
- "¢": # 0xa2 (en: 'cents')
- "£": # 0xa3 (en: 'pounds')
- "¤": # 0xa4 (en: 'currency sign')
- "¥": # 0xa5
- "¦": # 0xa6 (en: 'broken bar')
- "§": # 0xa7 (en: 'section')
- "¨": # 0xa8 (en: 'double dot')
- "©": # 0xa9 (en: 'copyright')
- "ª": # 0xaa (en: 'feminine ordinal indicator')
- "¬": # 0xac (en: 'not')
- "«": # 0xab (en: 'left-pointing double angle quote mark', MathPlayer: 'left-pointing double angle quote mark', google: 'links zeigende doppelwinkel-zitatmarke')
- "¯": # 0xaf
- test:
if: "ancestor::m:modified-variable and preceding-sibling::*[1][self::m:mi]"
then: # (google translation)
else: # (en: 'line', MathPlayer: 'macron', google: 'linie')
- "²": # 0xb2 (en: 'two', MathPlayer: 'zum Quadrat', google: 'zwei')
- "³": # 0xb3 (en: 'three', MathPlayer: 'hoch drei', google: 'drei')
- "´": # 0xb4 (en: 'acute', MathPlayer: 'acute accent', google: 'akut')
- "µ": # 0xb5 (en: 'micro', MathPlayer: 'micro sign', google: 'mikro')
- "¹": # 0xb9 (en: 'one', google: 'eins')
- "º": # 0xb9 (en: 'masculine ordinal indicator')
- "·":
- test:
if: "$SpeechStyle != 'ClearSpeak' or $ClearSpeak_MultSymbolDot = 'Auto'"
then: # (en: 'times', google translation)
else: # (en: 'dot', MathPlayer: 'Punkt mittig', google: 'punkt')
- "×": # 0xd7
- test:
if: "$SpeechStyle != 'ClearSpeak' or $ClearSpeak_MultSymbolX = 'Auto'"
then: # (en: 'times', google translation)
else_test:
if: $ClearSpeak_MultSymbolX = 'By'
then: # (en: 'by', google translation)
else: # (en: 'cross', MathPlayer: 'times', google: 'kreuzen')
- "÷": # 0xf7 (en: 'divided by', MathPlayer: 'divides')
- "ʰ": # 0x2b0 (en: 'modifier small h', google translation)
- "ʱ": # 0x2b1 (en: 'modifier small h with hook', google translation)
- "ʲ": # 0x2b2 (en: 'modifier small j', google translation)
- "ʳ": # 0x2b3 (en: 'modifier small r', google translation)
- "ʴ": # 0x2b4 (en: 'modifier small turned r', google translation)
- "ʵ": # 0x2b5 (en: 'modifier small turned r with hook', google translation)
- "ʶ": # 0x2b6
- T: "modifikator klein invertiert" # (en: 'modifier small inverted', google translation)
- spell: "translate('R', 'R', 'R')"
- "ʷ": # 0x2b7 (en: 'modifier small w', google translation)
- "ʸ": # 0x2b8 (en: 'modifier small y', google translation)
- "ʹ": # 0x2b9 (en: 'modifier prime', google: 'modifikator prime')
- "ʺ": # 0x2ba (en: 'modifier double prime', google: 'modifikator double prime')
- "ʻ": # 0x2bb (en: 'modifier turned comma', google translation)
- "ʼ": # 0x2bc (en: 'modifier apostrophe', google translation)
- "ʽ": # 0x2bd (en: 'modifier reversed comma', google translation)
- "ʾ": # 0x2be (en: 'modifier right half ring', google: 'modifikator rechts halbe ring')
- "ʿ": # 0x2bf (en: 'modifier left half ring', google: 'modifikator verließ den halben ring')
- "ˀ": # 0x2c0 (en: 'modifier glottal stop', google translation)
- "ˁ": # 0x2c1 (en: 'modifier reversed glottal stop', google translation)
- "˂": # 0x2c2 (en: 'modifier left arrowhead', google translation)
- "˃": # 0x2c3 (en: 'modifier right arrowhead', google translation)
- "˄": # 0x2c4 (en: 'modifier up arrowhead', google translation)
- "˅": # 0x2c5 (en: 'modifier down arrowhead', google translation)
- "ˆ": # 0x2c6 (en: 'modifier circumflex accent', google: 'modifikator circumflex akzent')
- "ˇ": # 0x2c7
- "ˈ": # 0x2c8 (en: 'modifier vertical line', google translation)
- "ˉ": # 0x2c9 (en: 'modifier macron', google translation)
- "ˊ": # 0x2ca (en: 'modifier acute accent', google translation)
- "ˋ": # 0x2cb (en: 'modifier grave accent', google translation)
- "ˌ": # 0x2cc (en: 'modifier low vertical line', google translation)
- "ˍ": # 0x2cd (en: 'modifier low macron', google translation)
- "ˎ": # 0x2ce (en: 'modifier low grave accent', google translation)
- "ˏ": # 0x2cf (en: 'modifier low acute accent', google translation)
- "ː": # 0x2d0 (en: 'modifier triangular colon', google translation)
- "ˑ": # 0x2d1 (en: 'modifier half triangular colon', google translation)
- "˒": # 0x2d2 (en: 'modifier centered right half ring', google translation)
- "˓": # 0x2d3 (en: 'modifier centered left half ring', google translation)
- "˔": # 0x2d4 (en: 'modifier up tadck', google translation)
- "˕": # 0x2d5 (en: 'modifier down tack', google translation)
- "˖": # 0x2d6 (en: 'modifier plus sign', google translation)
- "˗": # 0x2d7 (en: 'modifier minus sign', google translation)
- "˘": # 0x2d8 (SRE: 'Breve')
- "˙": # 0x2d9 (en: 'dot', MathPlayer: 'Punkt darüber', google: 'punkt')
- "˚": # 0x2da (en: 'ring above', MathPlayer: 'Ring darüber', google: 'oben läuten')
- "˛": # 0x2db (SRE: 'Ogonek')
- "˜": # 0x2dc (en: 'small tilde')
- "˝": # 0x2dd (en: 'double acute accent', MathPlayer: 'double acute accent', google: 'doppelter akuter akzent')
- "˞": # 0x2de (en: 'modifier rhotic hook', google translation)
- "˟": # 0x2df (en: 'modifier cross accent', google translation)
- "ˠ": # 0x2e0 (en: 'modifier small gamma', google translation)
- "ˡ": # 0x2e1 (en: 'modifier small l', google translation)
- "ˢ": # 0x2e2 (en: 'modifier small s', google translation)
- "ˣ": # 0x2e3 (en: 'modifier small x', google translation)
- "ˤ": # 0x2e4 (en: 'modifier small reversed glottal stop', google translation)
- "˥": # 0x2e5 (en: 'modifier extra-high tone bar', google translation)
- "˦": # 0x2e6 (en: 'modifier high tone bar', google translation)
- "˧": # 0x2e7 (en: 'modifier mid tone bar', google translation)
- "˨": # 0x2e8 (en: 'modifier low tone bar', google translation)
- "˩": # 0x2e9 (en: 'modifier extra-low tone bar', google translation)
- "˪": # 0x2ea (en: 'modifier yin departing tone mark', google translation)
- "˫": # 0x2eb (en: 'modifier yang departing tone mark', google translation)
- "ˬ": # 0x2ec (en: 'modifier voicing', google translation)
- "˭": # 0x2ed (en: 'modifier unaspirated', google translation)
- "ˮ": # 0x2ee (en: 'modifier double apostrophe', google translation)
- "˯": # 0x2ef (en: 'modifier low down arrowhead', google translation)
- "˰": # 0x2f0 (en: 'modifier low up arrowhead', google translation)
- "˱": # 0x2f1 (en: 'modifier low left arrowhead', google translation)
- "˲": # 0x2f2 (en: 'modifier low right arrowhead', google translation)
- "˳": # 0x2f3 (en: 'modifier low ring', google translation)
- "˴": # 0x2f4 (en: 'modifier middle grave accent', google translation)
- "˵": # 0x2f5 (en: 'modifier middle double grave accent', google translation)
- "˶": # 0x2f6 (en: 'modifier middle double acute accent', google translation)
- "˷": # 0x2f7 (en: 'modifier low tilde', google translation)
- "˸": # 0x2f8 (en: 'modifier raised colon', google translation)
- "˹": # 0x2f9 (en: 'modifier begin high tone', google translation)
- "˺": # 0x2fa (en: 'modifier end high tone', google translation)
- "˻": # 0x2fb (en: 'modifier begin low tone', google translation)
- "˼": # 0x2fc (en: 'modifier end low tone', google translation)
- "˽": # 0x2fd (en: 'modifier shelf', google translation)
- "˾": # 0x2fe (en: 'modifier open shelf', google translation)
- "˿": # 0x2ff (en: 'modifier low left arrow', google translation)
- "̀": # 0x300 (en: 'grave accent embellishment', google: 'grabakzentverzierung')
- "́": # 0x301 (en: 'acute accent embellishment', google: 'akute akzentverzierung')
- "̂": # 0x302 (en: 'circumflex accent embellishment', google: 'zirma akzentverzierung')
- "̃": # 0x303 (google: 'tilde verzierung')
- "̄": # 0x304 (en: 'macron embellishment', google: 'makron -verzierung')
- "̅": # 0x305 (google: 'überbärerverzierung')
- "̆": # 0x306 (en: 'breve embellishment', google: 'breve -verzierung')
- "̇": # 0x307 (google: 'punkt über verzierung')
- "̈": # 0x308 (en: 'diaeresis embellishment', google: 'diaeresis -verzierung')
- "̉": # 0x309 (en: 'hook above embellishment', google translation)
- "̊": # 0x30a (en: 'ring above embellishment', google: 'ring über verzierung')
- "̋": # 0x30b (en: 'double acute accent embellishment', google translation)
- "̌": # 0x30c (en: 'check', google: 'überprüfen')
- "̍": # 0x30d (en: 'vertical line above embellishment', google translation)
- "̎": # 0x30e (en: 'double vertical line above embellishment', google translation)
- "̏": # 0x30f (en: 'double grave accent embellishment', google translation)
- "̐": # 0x310 (en: 'candrabindu embellishment', google translation)
- "̑": # 0x311 (en: 'inverted breve embellishment', google: 'umgekehrte breve -verzierung')
- "̒": # 0x312 (en: 'turned comma above embellishment', google translation)
- "̓": # 0x313 (en: 'comma above embellishment', google translation)
- "̔": # 0x314 (en: 'reversed comma above embellishment', google translation)
- "̕": # 0x315 (en: 'comma above right embellishment', google translation)
- "̖": # 0x316 (en: 'grave accent below embellishment', google translation)
- "̗": # 0x317 (en: 'acute accent below embellishment', google translation)
- "̘": # 0x318 (en: 'left tack below embellishment', google translation)
- "̙": # 0x319 (en: 'right tack below embellishment', google translation)
- "̚": # 0x31a (en: 'left angle above embellishment', google translation)
- "̛": # 0x31b (en: 'horn embellishment', google translation)
- "̜": # 0x31c (en: 'left half ring below embellishment', google translation)
- "̝": # 0x31d (en: 'up tack below embellishment', google translation)
- "̞": # 0x31e (en: 'down tack below embellishment', google translation)
- "̟": # 0x31f (en: 'plus sign below embellishment', google translation)
- "̠": # 0x320 (en: 'minus sign below embellishment', google translation)
- "̡": # 0x321 (en: 'palatalized hook below embellishment', google translation)
- "̢": # 0x322 (en: 'retroflex hook below embellishment', google translation)
- "̣": # 0x323 (google: 'punkt unter der verzierung')
- "̤": # 0x324 (en: 'diaeresis below embellishment', google: 'diaerese unter der verzierung')
- "̥": # 0x325 (en: 'ring below embellishment', google translation)
- "̦": # 0x326 (en: 'comma below embellishment', google translation)
- "̧": # 0x327 (google: 'cedilla -verzierung')
- "̨": # 0x328 (en: 'ogonek embellishment', google translation)
- "̩": # 0x329 (en: 'vertical line below embellishment', google translation)
- "̪": # 0x32a (en: 'bridge below embellishment', google translation)
- "̫": # 0x32b (en: 'inverted double arch below embellishment', google translation)
- "̬": # 0x32c (en: 'caron below embellishment', google translation)
- "̭": # 0x32d (en: 'circumflex accent below embellishment', google translation)
- "̮": # 0x32e (en: 'breve below embellishment', google: 'breve unter der verzierung')
- "̯": # 0x32f (en: 'inverted breve below embellishment', google translation)
- "̰": # 0x330 (google: 'tilde unter der verzierung')
- "̱": # 0x331 (google: 'macron unter der verzierung')
- "̲": # 0x332 (en: 'low line embellishment', google: 'niedriglinienverzerrung')
- "̳": # 0x333 (en: 'double low line embellishment', google translation)
- "̴": # 0x334 (en: 'tilde overlay embellishment', google translation)
- "̵": # 0x335 (en: 'short stroke overlay embellishment', google translation)
- "̶": # 0x336 (en: 'long stroke overlay embellishment', google translation)
- "̷": # 0x337 (en: 'short solidus overlay embellishment', google translation)
- "̸": # 0x338 (en: 'long solidus overlay embellishment', google: 'long solidus overlay -verzierung')
- "̹": # 0x339 (en: 'right half ring below embellishment', google translation)
- "̺": # 0x33a (en: 'inverted bridge below embellishment', google translation)
- "̻": # 0x33b (en: 'square below embellishment', google translation)
- "̼": # 0x33c (en: 'seagull below embellishment', google translation)
- "̽": # 0x33d (en: 'x above embellishment', google translation)
- "̾": # 0x33e (en: 'vertical tilde embellishment', google translation)
- "̿": # 0x33f (en: 'double overline embellishment', google translation)
- "̀": # 0x340 (en: 'grave tone mark embellishment', google translation)
- "́": # 0x341 (en: 'acute tone mark embellishment', google translation)
- "ΪΫϏ": # 0x3aa, 0x3ab, 0x3cf
- test:
if: "$CapitalLetters_Beep"
then:
- audio:
value: "beep.mp4"
replace:
- test:
if: "$CapitalLetters_UseWord"
then_test:
if: "$SpeechOverrides_CapitalLetters = ''"
then_test:
if: "$Impairment = 'Blindness'"
then: # (en: 'cap', google translation)
else:
- pitch:
value: "$CapitalLetters_Pitch"
replace:
- T: "mit dialytika" # (en: 'with dialytika', google translation)
- "ϊ": # 0x3ca (en: 'iota with dialytika', google translation)
- "ϋ": # 0x3cb (en: 'upsilon with dialytika', google translation)
- "ό": # 0x3cc (en: 'omicron with tonos', google translation)
- "ύ": # 0x3cd (en: 'upsilon with tonos', google translation)
- "ώ": # 0x3ce (en: 'omega with tonos', google translation)
- "ϐ": # 0x3d0 (MathPlayer: 'greek beta')
- "ϑ": # 0x3d1 (en: 'theta', google: 'theta')
- "ϒ": # 0x3d2 (en: 'upsilon with hook', google: 'upsilon mit haken')
- "ϓ": # 0x3d3 (en: 'upsilon with acute and hook', google translation)
- "ϔ": # 0x3d4 (en: 'upsilon with diaeresis and hook', google translation)
- "ϕ": # 0x3d5 (en: 'phi', google: 'phi')
- "ϖ": # 0x3d6 (en: 'pi', google: 'pi')
- "ϗ": # 0x3d7 (MathPlayer: 'variant kai')
- "ϵ": # 0x3f5
- "϶": # 0x3f6 (en: 'reversed epsilon', MathPlayer: 'reversed epsilon', google: 'umgekehrter epsilon')
- "А-Я": # 0x410 - 0x42f
- test:
if: "$CapitalLetters_Beep"
then:
- audio:
value: "beep.mp4"
replace:
- test:
if: "$CapitalLetters_UseWord"
then_test:
if: "$SpeechOverrides_CapitalLetters = ''"
then_test:
if: "$Impairment = 'Blindness'"
then: # (en: 'cap', google translation)
else:
- pitch:
value: "$CapitalLetters_Pitch"
replace:
- "а": # 0x430 (google: 'а')
- "б": # 0x431 (google: 'sei')
- "в": # 0x432
- "г": # 0x433
- "д": # 0x434
- "е": # 0x435 (google: 'dh')
- "ж": # 0x436
- "з": # 0x437
- "и": # 0x438 (google: 'и')
- "й": # 0x439 (google: 'kurz ich')
- "к": # 0x43a
- "л": # 0x43b
- "м": # 0x43c
- "н": # 0x43d
- "о": # 0x43e (google: 'о')
- "п": # 0x43f (google: 'sport')
- "р": # 0x440 (google: 'ähm')
- "с": # 0x441
- "т": # 0x442
- "у": # 0x443 (google: 'у')
- "ф": # 0x444
- "х": # 0x445
- "ц": # 0x446
- "ч": # 0x447
- "ш": # 0x448
- "щ": # 0x449
- "ъ": # 0x44a (google: 'hartes zeichen')
- "ы": # 0x44b
- "ь": # 0x44c (google: 'weiches zeichen')
- "э": # 0x44d (google: 'э')
- "ю": # 0x44e
- "я": # 0x44f
- "‐": # 0x2010 (en: 'hyphen', MathPlayer: 'minus', google: 'bindestrich')
- "‑": # 0x2011 (en: 'hyphen', google: 'bindestrich')
- "‒": # 0x2012 (en: 'figure dash', google: 'figur dash')
- "–": # 0x2013 (SRE: 'En Dash')
- "—": # 0x2014 (SRE: 'EM Dash')
- "―": # 0x2015 (en: 'horizontal bar', MathPlayer: 'horizontal bar', google: 'horizontale linie')
- "‖": # 0x2016 (en: 'double vertical line', MathPlayer: 'double vertical bar', google: 'doppelte vertikale linie')
- "†": # 0x2020 (en: 'dagger', MathPlayer: 'dagger', google: 'dolch')
- "‡": # 0x2021 (en: 'double dagger', MathPlayer: 'double dagger', google: 'doppeldolch')
- "•": # 0x2022
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'bullet', MathPlayer: 'bullet', google: 'kugel')
- "…": # 0x2026
test:
if:
- "$SpeechStyle != 'ClearSpeak' or $ClearSpeak_Ellipses = 'Auto' or"
# must be ClearSpeak and $ClearSpeak_Ellipses = 'AndSoOn'
# speak '…' as 'and so on...' unless expr starts with '…'
- "../*[1][text()='…']"
then: # (en: 'dot dot dot', google translation)
else_test: # must have $ClearSpeak_Ellipses = 'AndSoOn'
if: "count(following-sibling::*) = 0"
then: # (en: 'and so on', google translation)
else: # (en: 'and so on up to', MathPlayer: 'dot dot dot', google: 'und so weiter bis')
- "‰": # 0x2030 (en: 'per mille', MathPlayer: 'per mille sign', google: 'pro mille')
- "‱": # 0x2031 (en: 'per ten thousand', MathPlayer: 'per ten thousand sign', google: 'pro zehntausend')
- "′": # 0x2032 (en: 'prime', MathPlayer: 'strich', google: 'prime')
- "″": # 0x2033 (en: 'double prime', MathPlayer: 'zwei-strich', google: 'double prime')
- "‴": # 0x2034 (en: 'triple prime', MathPlayer: 'drei-strich', google: 'triple prime')
- "‵": # 0x2035 (en: 'reversed prime', MathPlayer: 'reversed prime', google: 'umgekehrt prime')
- "‶": # 0x2036 (en: 'reversed double prime', MathPlayer: 'reversed double prime', google: 'umgekehrt doppelte prime')
- "‷": # 0x2037 (en: 'reversed triple prime', google: 'triple prime umgekehrt')
- "‸": # 0x2038 (en: 'to the', google: 'zum')
- "‹": # 0x2039 (en: 'single left pointing angle quote mark', MathPlayer: 'single left pointing angle quote mark', google: 'single linke zitat angle -zitat marke')
- "›": # 0x203a (en: 'single right pointing angle quote mark', MathPlayer: 'single right pointing angle quote mark', google: 'single rechts zeigewinkel zitatmarke')
- "‼": # 0x203c (en: 'double factorial', google: 'doppelfaktor')
- "⁄": # 0x2044 (en: 'divided by', MathPlayer: 'slash', google: 'geteilt durch')
- "⁅": # 0x2045 (en: 'left square bracket with quill', google: 'linksquadratische klammer mit feder')
- "⁆": # 0x2046 (en: 'right square bracket with quill', google: 'rechte quadratische halterung mit feder')
- "⁗": # 0x2057 (en: 'quadruple prime', MathPlayer: 'quadruple prime', google: 'vierfache prime')
- "": # 0x2060
- "‵": # 0x2035 (en: 'reversed prime', MathPlayer: 'reversed prime', google: 'umgekehrt prime')
- "‶": # 0x2036 (en: 'reversed double prime', MathPlayer: 'reversed double prime', google: 'umgekehrt doppelte prime')
- "‷": # 0x2037 (en: 'reversed triple prime', google: 'triple prime umgekehrt')
- "⁰": # 0x2070 (en: 'to the zeroth power', google translation)
- "ⁱ": # 0x2071 (en: 'to the ith power', google: 'zur eihth -macht')
- "⁴": # 0x2074 (en: 'to the fourth power', google translation)
- "⁵": # 0x2075 (en: 'to the fifth power', google translation)
- "⁶": # 0x2076 (en: 'to the sixth power', google translation)
- "⁷": # 0x2077 (en: 'to the seventh power', google translation)
- "⁸": # 0x2078 (en: 'to the eighth power', google translation)
- "⁹": # 0x2079 (en: 'to the ninth power', google translation)
- "⁺": # 0x207a (en: 'superscript plus sign', google: 'superscript plus zeichen')
- "⁻": # 0x207b (en: 'superscript minus', google: 'superscript minus')
- "⁼": # 0x207c (en: 'superscript equals sign', google: 'superscript ist gleichzeichen')
- "⁽": # 0x207d (en: 'superscript left parenthesis', google: 'superscript links klammern')
- "⁾": # 0x207e (en: 'superscript right parenthesis', google: 'superscript right parenthesisthese')
- "ⁿ": # 0x207f (en: 'to the ennth power', google: 'zur ahnten kraft')
- "₀": # 0x2080 (en: 'sub zero', google translation)
- "₁": # 0x2081 (en: 'sub one', google translation)
- "₂": # 0x2082 (en: 'sub two', google translation)
- "₃": # 0x2083 (en: 'sub three', google translation)
- "₄": # 0x2084 (en: 'sub four', google translation)
- "₅": # 0x2085 (en: 'sub five', google translation)
- "₆": # 0x2086 (en: 'sub six', google translation)
- "₇": # 0x2087 (en: 'sub seven', google translation)
- "₈": # 0x2088 (en: 'sub eight', google translation)
- "₉": # 0x2089 (google translation)
- "₊": # 0x208a (en: 'subscript plus sign', google: 'index plus -zeichen')
- "₋": # 0x208b (en: 'subscript minus sign', google: 'index minuszeichen')
- "₌": # 0x208c (en: 'subscript equals sign', google: 'index gleicher bestandteil des zeichens')
- "₍": # 0x208d (en: 'subscript left parenthesis', google: 'untergangsklammern von klammern')
- "₎": # 0x208e (en: 'subscript right parenthesis', google: 'index right parenthesisthese')
- "ₐ": # 0x2090 (en: 'sub A', google: 'sub a')
- "ₑ": # 0x2091 (en: 'sub E', google: 'sub e')
- "ₒ": # 0x2092 (en: 'sub O', google: 'sub o')
- "ₓ": # 0x2093 (en: 'sub X', google: 'sub x')
- "ₕ": # 0x2095 (en: 'sub H', google: 'sub h')
- "ₖ": # 0x2096 (en: 'sub K', google: 'subk')
- "ₗ": # 0x2097 (en: 'sub L', google: 'sub l')
- "ₘ": # 0x2098 (en: 'sub M', google: 'sub m')
- "ₙ": # 0x2099 (en: 'sub N', google: 'sub n')
- "ₚ": # 0x209a (en: 'sub P', google: 'sub p')
- "ₛ": # 0x209b (en: 'sub S', google: 'sub s')
- "ₜ": # 0x209c (en: 'sub T', google: 'sub t')
- "₠": # 0x20a0 (en: 'european currenty units', google translation)
- "₡": # 0x20a1 (google: 'kolons')
- "₢": # 0x20a2
- "₣": # 0x20a3
- "₤": # 0x20a4
- "₥": # 0x20a5 (google: 'mühlen')
- "₦": # 0x20a6
- "₧": # 0x20a7
- "₨": # 0x20a8 (google: 'rupien')
- "₩": # 0x20a9 (google: 'gewonnen')
- "₪": # 0x20aa (google: 'neue sheqels')
- "₫": # 0x20ab
- "€": # 0x20ac (google: 'euro')
- "₭": # 0x20ad (google: 'pennen')
- "₮": # 0x20ae
- "₯": # 0x20af (google: 'drachme')
- "₰": # 0x20b0 (google: 'deutsche pennys')
- "₱": # 0x20b1
- "₲": # 0x20b2
- "₳": # 0x20b3 (google: 'österrale')
- "₴": # 0x20b4
- "₵": # 0x20b5
- "₶": # 0x20b6 (google translation)
- "₷": # 0x20b7 (google translation)
- "₸": # 0x20b8 (google translation)
- "₹": # 0x20b9 (en: 'indian rupees', google translation)
- "₺": # 0x20ba (en: 'turkish liras', google translation)
- "⃐": # 0x20d0 (en: 'left harpoon above embellishment', google: 'links harpoon über verzierung')
- "⃑": # 0x20d1 (en: 'right harpoon above embellishment', google: 'rechte harpoon über verzierung')
- "⃒": # 0x20d2 (en: 'long vertical line overlay embellishment', google translation)
- "⃓": # 0x20d3 (en: 'short vertical line overlay embellishment', google translation)
- "⃔": # 0x20d4 (en: 'anticlockwise arrow above embellishment', google translation)
- "⃕": # 0x20d5 (en: 'clockwise arrow above embellishment', google translation)
- "⃖": # 0x20d6 (en: 'left arrow above embellishment', google: 'links pfeil über die verzierung')
- "⃗": # 0x20d7 (en: 'right arrow above embellishment', google: 'richtiger pfeil über die verzierung')
- "⃘": # 0x20d8 (en: 'ring overlay embellishment', google translation)
- "⃙": # 0x20d9 (en: 'clockwise ring overlay embellishment', google translation)
- "⃚": # 0x20da (en: 'anticlockwise ring overlay embellishment', google translation)
- "⃛": # 0x20db (en: 'triple dot', google: 'dreifacher punkt')
- "⃜": # 0x20dc (en: 'quadruple dot', google: 'vierfachpunkt punkt')
- "⃝": # 0x20dd (en: 'enclosing circle embellishment', google translation)
- "⃞": # 0x20de (en: 'enclosing square embellishment', google translation)
- "⃟": # 0x20df (en: 'enclosing diamond embellishment', google translation)
- "⃠": # 0x20e0 (en: 'enclosing circle backslash embellishment', google translation)
- "⃡": # 0x20e1 (en: 'left right arrow above embellishment', google: 'links rechts pfeil über verzierung')
- "⃢": # 0x20e2 (en: 'enclosing screen embellishment', google translation)
- "⃣": # 0x20e3 (en: 'enclosing keycap embellishment', google translation)
- "⃤": # 0x20e4 (en: 'enclosing upward pointing triangle embellishment', google translation)
- "⃥": # 0x20e5 (en: 'reverse solidus overlay embellishment', google translation)
- "⃦": # 0x20e6 (en: 'double verticle stroke embellishment', google translation)
- "⃧": # 0x20e7 (en: 'Verzierung mit Annuitätensymbol', google translation)
- "⃨": # 0x20e8 (en: 'triple underdot', google translation)
- "⃩": # 0x20e9 (en: 'wide bridge above embellishment', google translation)
- "⃪": # 0x20ea (en: 'leftwards arrow overlay embellishment', google translation)
- "⃫": # 0x20eb (en: 'long double solidus overlay embellishment', google translation)
- "⃬": # 0x20ec (en: 'rightwards harpoon with barb downwards embellishment', google translation)
- "⃭": # 0x20ed (en: 'leftwards harpoon with barb downwards embellishment', google translation)
- "⃮": # 0x20ee (en: 'left arrow below embellishment', google translation)
- "⃯": # 0x20ef (en: 'right arrow below embellishment', google translation)
- "⃰": # 0x20f0 (en: 'asterisk above embellishment', google translation)
- "℄": # 0x2104 (en: 'center line symbol', google translation)
- "℅": # 0x2105 (google: 'pflege von')
- "℆": # 0x2106 (google translation)
- "ℇ": # 0x2107 (en: 'euler's constant', google: 'eulers konstante')
- "℈": # 0x2108 (en: 'scruples', google translation)
- "℉": # 0x2109 (google: 'grad fahrenheit')
- "ℊ": # 0x210a (google: 'skript g')
- "ℌℑℨℭ": # 0x210c, 0x2111, 0x2128, 0x212d
- T: "script g" # (en: 'fraktur', google: 'fraktur')
- spell: "translate('.', 'ℌℑℨℭ', 'HIZC')"
- "ℍℙℾℿ": # 0x210d, 0x2119, 0x213e, 0x213f
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', 'ℍℙℾℿ', 'HPΓΠ')"
- "ℎ": # 0x210e (en: 'planck constant', MathPlayer: 'planck constant', google: 'planck konstant')
- "ℏ": # 0x210f
- test:
if: "($Verbosity='Terse')"
then: # (google translation)
else: # (en: 'reduced planck constant', MathPlayer: 'h bar', google: 'reduzierte planckkonstante')
- "ℐℒ℘ℬℰℱℳ": # 0x2110, 0x2112, 0x2118, 0x2130, 0x2131, 0x2133
- T: "Planck-Konstante über zwei Pi" # (en: 'script', MathPlayer: 'h bar', google: 'skript')
- spell: "translate('.', 'ℐℒ℘ℬℰℱℳ', 'ILPBEFM')"
- "ℓ": # 0x2113 (en: 'script l', MathPlayer: 'script l', google: 'skript l')
- "℔": # 0x2114 (en: 'pounds', google: 'pfund')
- "№": # 0x2116 (en: 'number', MathPlayer: 'numero sign', google: 'nummer')
- "℥": # 0x2125 (en: 'ounces', MathPlayer: 'ounce sign', google: 'unzen')
- "Ω": # 0x2126 (en: 'ohms', MathPlayer: 'ohm sign', google: 'ohm')
- "℧": # 0x2127 (en: 'mhos', MathPlayer: 'inverted ohm', google: 'mhos')
- "℩": # 0x2129 (google: 'drehte iota')
- "K": # 0x212a (en: 'kelvin', MathPlayer: 'degrees kelvin', google: 'kelvin')
- "Å": # 0x212b (en: 'angstroms', MathPlayer: 'angstroms', google: 'angstrome')
- "ℯ": # 0x212f (google: 'skript e')
# coalesced some chars that use cap letters
- "Ⅎ℺⅁⅂⅃⅄": # 0x2132, 0x213a, 0x2141, 0x2142, 0x2143, 0x2144
- test:
- if: "'.' = '℺'"
then: # (en: 'rotated', google translation)
- else_if: "'.' = 'Ⅎ'"
then: # (en: 'turned', google translation)
- else_if: "'.' = '⅃'"
then: # (en: 'reversed sans-serif', google translation)
else: # (en: 'turned sans-serif', google: 'drehte ohne serif')
- spell: "translate('.', 'Ⅎ℺⅁⅂⅃⅄', 'FQGLLY')"
- "ℴ": # 0x2134 (google: 'skript o')
- "ℵ": # 0x2135 (en: 'first transfinite cardinal', MathPlayer: 'alef', google: 'erster transfinite kardinal')
- "ℶ": # 0x2136 (en: 'second transfinite cardinal', MathPlayer: 'bet', google: 'zweiter transfinite kardinal')
- "ℷ": # 0x2137 (en: 'third transfinite cardinal', MathPlayer: 'gimel', google: 'dritter transfinite kardinal')
- "ℸ": # 0x2138 (en: 'fourth transfinite cardinal', MathPlayer: 'dalet', google: 'viertes transfinite kardinal')
- "ℼ": # 0x213c (en: 'double struck pi', google: 'doppelt geschlagen pi')
- "ℽ": # 0x213d (en: 'double struck gamma', google: 'doppelt geschlagen gamma')
- "⅀": # 0x2140 (en: 'double struck n-ary summation', google: 'doppelte n-ary-summierung')
- "⅋": # 0x214b (en: 'turned ampersand', google: 'ampers umgedreht')
- "⅌": # 0x214c (en: 'per', google: 'pro')
- "ⅎ": # 0x214e (en: 'turned F', google: 'drehte f')
- "⅐": # 0x2150 (en: 'one seventh')
- "⅑": # 0x2151 (en: 'one ninth', google: 'ein neunter')
- "⅒": # 0x2152 (en: 'one tenth')
- "⅓": # 0x2153 (en: 'one third', MathPlayer: 'vulgar fraction one third')
- "⅔": # 0x2154 (en: 'two thirds', MathPlayer: 'vulgar fraction two thirds')
- "⅕": # 0x2155 (en: 'one fifth', MathPlayer: 'vulgar fraction one fifth')
- "⅖": # 0x2156 (en: 'two fifths', MathPlayer: 'vulgar fraction two fifths')
- "⅗": # 0x2157 (en: 'three fifths', MathPlayer: 'vulgar fraction three fifths')
- "⅘": # 0x2158 (en: 'four fifths', MathPlayer: 'vulgar fraction four fifths')
- "⅙": # 0x2159 (en: 'one sixth', MathPlayer: 'vulgar fraction one sixth')
- "⅚": # 0x215a (en: 'five sixths', MathPlayer: 'vulgar fraction five sixths')
- "⅛": # 0x215b (en: 'one eighth', MathPlayer: 'vulgar fraction one eighth', google: 'ein ath')
- "⅜": # 0x215c (en: 'three eighths', MathPlayer: 'vulgar fraction three eighths', google: 'drei aths')
- "⅝": # 0x215d (en: 'five eighths', MathPlayer: 'vulgar fraction five eighths', google: 'fünf aths')
- "⅞": # 0x215e (en: 'seven eighths', MathPlayer: 'vulgar fraction seven eighths', google: 'sieben aths')
- "⅟": # 0x215f (en: 'one over', google: 'eins vorbei')
- "Ⅰ": # 0x2160 (en: 'I', google translation)
- "Ⅱ": # 0x2161 (en: 'I I', google translation)
- "Ⅲ": # 0x2162 (en: 'I I I', google translation)
- "Ⅳ": # 0x2163 (en: 'I V', google translation)
- "Ⅴ": # 0x2164 (en: 'V', google translation)
- "Ⅵ": # 0x2165 (en: 'V I', google translation)
- "Ⅶ": # 0x2166 (en: 'V I I', google translation)
- "Ⅷ": # 0x2167 (en: 'V I I I', google translation)
- "Ⅸ": # 0x2168 (en: 'I X', google translation)
- "Ⅹ": # 0x2169 (en: 'X', google translation)
- "Ⅺ": # 0x216a (en: 'X I', google translation)
- "Ⅻ": # 0x216b (en: 'X I I', google translation)
- "Ⅼ": # 0x216c (en: 'L', google translation)
- "Ⅽ": # 0x216d (en: 'C', google translation)
- "Ⅾ": # 0x216e (en: 'D', google translation)
- "Ⅿ": # 0x216f (en: 'M', google translation)
- "ⅰ": # 0x2170 (en: 'I', google translation)
- "ⅱ": # 0x2171 (en: 'I I', google translation)
- "ⅲ": # 0x2172 (en: 'I I I', google translation)
- "ⅳ": # 0x2173 (en: 'I V', google translation)
- "ⅴ": # 0x2174 (en: 'V', google translation)
- "ⅵ": # 0x2175 (en: 'V I', google translation)
- "ⅶ": # 0x2176 (en: 'V I I', google translation)
- "ⅷ": # 0x2177 (en: 'V I I I', google translation)
- "ⅸ": # 0x2178 (en: 'I X', google translation)
- "ⅹ": # 0x2179 (en: 'X', google translation)
- "ⅺ": # 0x217a (en: 'X I', google translation)
- "ⅻ": # 0x217b (en: 'X I I', google translation)
- "ⅼ": # 0x217c (en: 'L', google translation)
- "ⅽ": # 0x217d (en: 'C', google translation)
- "ⅾ": # 0x217e (en: 'D', google translation)
- "ⅿ": # 0x217f (en: 'M', google translation)
- "↉": # 0x2189 (en: 'zero thirds')
- "←": # 0x2190 (en: 'leftwards arrow', MathPlayer: 'leftwards arrow', google: 'pfeil nach links')
- "↑": # 0x2191 (en: 'upwards arrow', MathPlayer: 'upwards arrow', google: 'nach oben pfeil')
- "→": # 0x2192 (en: 'rightwards arrow', MathPlayer: 'rightwards arrow', google: 'richtiger pfeil')
- "↓": # 0x2193 (en: 'downwards arrow', MathPlayer: 'downwards arrow', google: 'nach unten pfeil')
- "↔": # 0x2194 (en: 'left right arrow', MathPlayer: 'left right arrow', google: 'links rechts pfeil')
- "↕": # 0x2195 (en: 'up down arrow', MathPlayer: 'up down arrow', google: 'auf pfeil runter')
- "↖": # 0x2196 (en: 'north west arrow', MathPlayer: 'north west arrow', google: 'nordwestpfeil')
- "↗": # 0x2197
- test:
if: "ancestor::*[2][self::m:limit]"
then: # (en: 'approaches from below', google translation)
else: # (en: 'north east arrow', MathPlayer: 'north east arrow', google: 'nordostpfeil')
- "↘": # 0x2198
- test:
if: "ancestor::*[2][self::m:limit]"
then: # (en: 'approaches from above', google translation)
else: # (en: 'south east arrow', MathPlayer: 'south east arrow', google: 'south east pfeil')
- "↙": # 0x2199 (en: 'south west arrow', MathPlayer: 'south west arrow', google: 'südwestpfeil')
- "↚": # 0x219a (en: 'leftwards arrow with stroke', MathPlayer: 'leftwards arrow with stroke', google: 'links pfeil mit schlaganfall')
- "↛": # 0x219b (en: 'rightwards arrow with stroke', MathPlayer: 'rightwards arrow with stroke', google: 'richtiger pfeil mit schlaganfall')
- "↜": # 0x219c (en: 'leftwards wave arrow', MathPlayer: 'leftwards wave arrow', google: 'linkswellenpfeil')
- "↝": # 0x219d (en: 'rightwards wave arrow', MathPlayer: 'rightwards wave arrow', google: 'rightwards wave pfeil')
- "↞": # 0x219e (en: 'leftwards two headed arrow', MathPlayer: 'leftwards two headed arrow', google: 'links zwei köpfe pfeil')
- "↟": # 0x219f (en: 'upwards two headed arrow', MathPlayer: 'upwards two headed arrow', google: 'auf zwei köpfe pfeil')
- "↠": # 0x21a0 (en: 'rightwards two headed arrow', MathPlayer: 'rightwards two headed arrow', google: 'richtig zwei köpfe pfeil')
- "↡": # 0x21a1 (en: 'downwards two headed arrow', MathPlayer: 'downwards two headed arrow', google: 'nach unten zwei köpfe pfeil')
- "↢": # 0x21a2 (en: 'leftwards arrow with tail', MathPlayer: 'leftwards arrow with tail', google: 'linkspfeil mit schwanz')
- "↣": # 0x21a3 (en: 'rightwards arrow with tail', MathPlayer: 'rightwards arrow with tail', google: 'richtiger pfeil mit schwanz')
- "↤": # 0x21a4 (en: 'leftwards arrow from bar', MathPlayer: 'leftwards arrow from bar', google: 'links pfeil aus der bar')
- "↥": # 0x21a5 (en: 'upwards arrow from bar', MathPlayer: 'upwards arrow from bar', google: 'aufwärter pfeil aus der bar')
- "↦": # 0x21a6 (en: 'rightwards arrow from bar', MathPlayer: 'rightwards arrow from bar', google: 'richtiger pfeil aus der bar')
- "↧": # 0x21a7 (en: 'downwards arrow from bar', MathPlayer: 'downwards arrow from bar', google: 'nach unten pfeil aus der bar')
- "↨": # 0x21a8 (en: 'up down arrow with base', MathPlayer: 'up down arrow with base', google: 'mit der basis auf pfeil runter')
- "↩": # 0x21a9 (en: 'leftwards arrow with hook', MathPlayer: 'leftwards arrow with hook', google: 'links pfeil mit haken')
- "↪": # 0x21aa (en: 'rightwards arrow with hook', MathPlayer: 'rightwards arrow with hook', google: 'richtiger pfeil mit haken')
- "↫": # 0x21ab (en: 'leftwards arrow with loop', MathPlayer: 'leftwards arrow with loop', google: 'linkspfeil mit schleife')
- "↬": # 0x21ac (en: 'rightwards arrow with loop', MathPlayer: 'rightwards arrow with loop', google: 'richtiger pfeil mit schleife')
- "↭": # 0x21ad (en: 'left right wave arrow', MathPlayer: 'left right wave arrow', google: 'linke rechte wellenpfeil')
- "↮": # 0x21ae (en: 'left right arrow with stroke', MathPlayer: 'left right arrow with stroke', google: 'links rechts pfeil mit schlaganfall')
- "↯": # 0x21af (en: 'downwards zigzag arrow', MathPlayer: 'downwards zigzag arrow', google: 'nach unten zickzack pfeil')
- "↰": # 0x21b0 (en: 'upwards arrow with tip leftwards', MathPlayer: 'upwards arrow with tip leftwards', google: 'aufwärts mit tipp links nach oben')
- "↱": # 0x21b1 (en: 'upwards arrow with tip rightwards', MathPlayer: 'upwards arrow with tip rightwards', google: 'aufwärts mit tipp nach oben nach oben')
- "↲": # 0x21b2 (en: 'downwards arrow with tip leftwards', MathPlayer: 'downwards arrow with tip leftwards', google: 'nach links nach unten pfeil nach unten')
- "↳": # 0x21b3 (en: 'downwards arrow with tip rightwards', MathPlayer: 'downwards arrow with tip rightwards', google: 'nach unten pfeil mit tipp nach rechts')
- "↴": # 0x21b4 (en: 'rightwards arrow with corner downwards', MathPlayer: 'rightwards arrow with corner downwards', google: 'richtiger pfeil mit ecke nach unten')
- "↵": # 0x21b5 (en: 'downwards arrow with corner leftwards', MathPlayer: 'downwards arrow with corner leftwards', google: 'nach links von ecke nach unten pfeil nach unten')
- "↶": # 0x21b6 (en: 'anticlockwise top semicircle arrow', MathPlayer: 'anticlockwise top semicircle arrow', google: 'top -semicircle -pfeil gegen den uhrzeigersinn')
- "↷": # 0x21b7 (en: 'clockwise top semicircle arrow', MathPlayer: 'clockwise top semicircle arrow', google: 'im uhrzeigersinn oberen halbkreispfeil')
- "↸": # 0x21b8 (en: 'north west arrow to long bar', MathPlayer: 'north west arrow to long bar', google: 'nordwestpfeil in die lange bar')
- "↹": # 0x21b9 (en: 'leftwards arrow to bar over rightwards arrow to bar', MathPlayer: 'leftwards arrow to bar over rightwards arrow to bar', google: 'der pfeil nach links, um über den pfeil nach rechts in die bar zu barken')
- "↺": # 0x21ba (en: 'anticlockwise open circle arrow', MathPlayer: 'anticlockwise open circle arrow', google: 'open circle arrow gegen den uhrzeigersinn')
- "↻": # 0x21bb (en: 'clockwise open circle arrow', MathPlayer: 'clockwise open circle arrow', google: 'pfeil im uhrzeigersinn')
- "↼": # 0x21bc (en: 'left harpoon up', MathPlayer: 'left harpoon up', google: 'ließ harpoon hoch')
- "↽": # 0x21bd (en: 'left harpoon down', MathPlayer: 'left harpoon down', google: 'ließ harpoon nieder')
- "↾": # 0x21be (en: 'up harpoon right', MathPlayer: 'up harpoon right', google: 'harpoon rechts')
- "↿": # 0x21bf (en: 'up harpoon left', MathPlayer: 'up harpoon left', google: 'harpune nach oben')
- "⇀": # 0x21c0 (en: 'right harpoon up', MathPlayer: 'right harpoon up', google: 'richtige harpoon hoch')
- "⇁": # 0x21c1 (en: 'right harpoon down', MathPlayer: 'right harpoon down', google: 'richtige harpune unten')
- "⇂": # 0x21c2 (en: 'down harpoon right', MathPlayer: 'down harpoon right', google: 'harpoon rechts')
- "⇃": # 0x21c3 (en: 'down harpoon left', MathPlayer: 'down harpoon left', google: 'harpoon nach unten')
- "⇄": # 0x21c4 (en: 'rightwards arrow over leftwards arrow', MathPlayer: 'rightwards arrow over leftwards arrow', google: 'rechten pfeil über den linken pfeil')
- "⇅": # 0x21c5 (en: 'upwards arrow leftwards of downwards arrow', MathPlayer: 'upwards arrow leftwards of downwards arrow', google: 'aufwärts links vom abwärtsspfeil nach oben')
- "⇆": # 0x21c6 (en: 'leftwards arrow over rightwards arrow', MathPlayer: 'leftwards arrow over rightwards arrow', google: 'links pfeil über rechts pfeil')
- "⇇": # 0x21c7 (en: 'leftwards paired arrows', MathPlayer: 'leftwards paired arrows', google: 'links gepaarte pfeile')
- "⇈": # 0x21c8 (en: 'upwards paired arrows', MathPlayer: 'upwards paired arrows', google: 'nach oben gepaarte pfeile')
- "⇉": # 0x21c9 (en: 'rightwards paired arrows', MathPlayer: 'rightwards paired arrows', google: 'rechtspaare pfeile')
- "⇊": # 0x21ca (en: 'downwards paired arrows', MathPlayer: 'downwards paired arrows', google: 'abwärts gepaarte pfeile')
- "⇋": # 0x21cb (en: 'left harpoon over right harpoon', MathPlayer: 'left harpoon over right harpoon', google: 'linke harpoon über die rechte harpune')
- "⇌": # 0x21cc (en: 'right harpoon over left harpoon', MathPlayer: 'right harpoon over left harpoon', google: 'rechte harpune über die linke harpune')
- "⇍": # 0x21cd (en: 'leftwards double arrow with stroke', MathPlayer: 'leftwards double arrow with stroke', google: 'links -doppelpfeil mit schlaganfall')
- "⇎": # 0x21ce (en: 'left right double arrow with stroke', MathPlayer: 'left right double arrow with stroke', google: 'links rechts doppelpfeil mit schlaganfall')
- "⇏": # 0x21cf (en: 'rightwards double arrow with stroke', MathPlayer: 'rightwards double arrow with stroke', google: 'richtiger doppelpfeil mit schlaganfall')
- "⇐": # 0x21d0 (en: 'leftwards double arrow', MathPlayer: 'leftwards double arrow', google: 'links doppelpfeil')
- "⇑": # 0x21d1 (en: 'upwards double arrow', MathPlayer: 'upwards double arrow', google: 'double -pfeil nach oben')
- "⇒": # 0x21d2 (en: 'rightwards double arrow', MathPlayer: 'rightwards double arrow', google: 'richtiger doppelpfeil')
- "⇓": # 0x21d3 (en: 'downwards double arrow', MathPlayer: 'downwards double arrow', google: 'downwards doppelpfeil')
- "⇔": # 0x21d4 (en: 'left right double arrow', MathPlayer: 'left right double arrow', google: 'links rechts doppelpfeil')
- "⇕": # 0x21d5 (en: 'up down double arrow', MathPlayer: 'up down double arrow', google: 'doppelpfeil nach oben')
- "⇖": # 0x21d6 (en: 'north west double arrow', MathPlayer: 'north west double arrow', google: 'nordwesten doppelpfeil')
- "⇗": # 0x21d7 (en: 'north east double arrow', MathPlayer: 'north east double arrow', google: 'nordost -doppelpfeil')
- "⇘": # 0x21d8 (en: 'south east double arrow', MathPlayer: 'south east double arrow', google: 'south east doppelpfeil')
- "⇙": # 0x21d9 (en: 'south west double arrow', MathPlayer: 'south west double arrow', google: 'south west doppelpfeil')
- "⇚": # 0x21da (en: 'leftwards triple arrow', MathPlayer: 'leftwards triple arrow', google: 'links dreifach pfeil')
- "⇛": # 0x21db (SRE: 'Dreifacher Pfeil nach rechts')
- "⇜": # 0x21dc (en: 'leftwards squiggle arrow', MathPlayer: 'leftwards squiggle arrow', google: 'linkskundgier pfeil')
- "⇝": # 0x21dd (en: 'rightwards squiggle arrow', MathPlayer: 'rightwards squiggle arrow', google: 'rightwards squiggle pfeil')
- "⇞": # 0x21de (en: 'upwards arrow with double stroke', MathPlayer: 'upwards arrow with double stroke', google: 'aufwärts mit doppelhub')
- "⇟": # 0x21df (en: 'downwards arrow with double stroke', MathPlayer: 'downwards arrow with double stroke', google: 'nach unten pfeil mit doppelhub')
- "⇠": # 0x21e0 (en: 'leftwards dashed arrow', MathPlayer: 'leftwards dashed arrow', google: 'links gestrichelten pfeil')
- "⇡": # 0x21e1 (en: 'upwards dashed arrow', MathPlayer: 'upwards dashed arrow', google: 'nach oben gestrichelter pfeil')
- "⇢": # 0x21e2 (en: 'rightwards dashed arrow', MathPlayer: 'rightwards dashed arrow', google: 'rightwards gestrichelten pfeil')
- "⇣": # 0x21e3 (en: 'downwards dashed arrow', MathPlayer: 'downwards dashed arrow', google: 'abwärts gestrichelten pfeil')
- "⇤": # 0x21e4 (en: 'leftwards arrow to bar', MathPlayer: 'leftwards arrow to bar', google: 'links pfeil in die bar')
- "⇥": # 0x21e5 (en: 'rightwards arrow to bar', MathPlayer: 'rightwards arrow to bar', google: 'rightwards pfeil in die bar')
- "⇦": # 0x21e6 (en: 'leftwards white arrow', MathPlayer: 'leftwards white arrow', google: 'links weißer pfeil')
- "⇧": # 0x21e7 (en: 'upwards white arrow', MathPlayer: 'upwards white arrow', google: 'nach oben weißer pfeil')
- "⇨": # 0x21e8 (en: 'rightwards white arrow', MathPlayer: 'rightwards white arrow', google: 'richtiger weißer pfeil')
- "⇩": # 0x21e9 (en: 'downwards white arrow', MathPlayer: 'downwards white arrow', google: 'nach unten weißer pfeil')
- "⇪": # 0x21ea (en: 'upwards white arrow from bar', MathPlayer: 'upwards white arrow from bar', google: 'nach oben weißer pfeil aus der bar')
- "⇫": # 0x21eb (en: 'upwards white arrow on pedestal', google: 'nach oben weißer pfeil auf sockel')
- "⇬": # 0x21ec (en: 'upwards white arrow on pedestal with horizontal bar', google: 'nach oben weißer pfeil auf sockel mit horizontaler balken')
- "⇭": # 0x21ed (en: 'upwards white arrow on pedestal with vertical bar', google: 'nach oben weißer pfeil auf sockel mit vertikaler balken')
- "⇮": # 0x21ee (en: 'upwards white double arrow', google: 'nach oben weißer doppelpfeil')
- "⇯": # 0x21ef (en: 'upwards white double arrow on pedestal', google: 'nach oben weißer doppelpfeil auf sockel')
- "⇰": # 0x21f0 (en: 'rightwards white arrow from wall', google: 'richtiger weißer pfeil von der wand')
- "⇱": # 0x21f1 (en: 'north west arrow to corner', google: 'nordwestpfeil zur ecke')
- "⇲": # 0x21f2 (en: 'south east arrow to corner', google: 'south east pfeil zur ecke')
- "⇳": # 0x21f3 (en: 'up down white arrow', google: 'runter weißer pfeil')
- "⇴": # 0x21f4 (en: 'right arrow with small circle', google: 'rechts pfeil mit kleinem kreis')
- "⇵": # 0x21f5 (en: 'downwards arrow leftwards of upwards arrow', MathPlayer: 'upwards arrow to the right of downwards arrow', google: 'abwärts links nach oben auf pfeil')
- "⇶": # 0x21f6 (en: 'three rightwards arrows', google: 'drei rechts pfeile')
- "⇷": # 0x21f7 (en: 'leftwards arrow with vertical stroke', google: 'linkspfeil mit vertikalem schlaganfall')
- "⇸": # 0x21f8 (en: 'rightwards arrow with vertical stroke', google: 'richtiger pfeil mit vertikalem schlaganfall')
- "⇹": # 0x21f9 (en: 'left right arrow with vertical stroke', google: 'links rechts pfeil mit vertikalem schlaganfall')
- "⇺": # 0x21fa (en: 'leftwards arrow with double vertical stroke', google: 'linkspfeil mit doppelter vertikaler hub')
- "⇻": # 0x21fb (en: 'rightwards arrow with double vertical stroke', google: 'richtiger pfeil mit doppelter vertikaler schlaganfall')
- "⇼": # 0x21fc (en: 'left right arrow with double vertical stroke', google: 'links rechts pfeil mit doppelter vertikaler hub')
- "⇽": # 0x21fd (en: 'leftwards open headed arrow', MathPlayer: 'leftwards open headed arrow', google: 'links offene köpfe pfeil')
- "⇾": # 0x21fe (en: 'rightwards open headed arrow', MathPlayer: 'rightwards open headed arrow', google: 'rightwards open headed pfeil')
- "⇿": # 0x21ff (en: 'left right open headed arrow', MathPlayer: 'left right open headed arrow', google: 'links rechts geöffneter köpfe')
- "∀": # 0x2200 (en: 'for all')
- "∁": # 0x2201
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "Komplement" # (en: 'complement of')
- "∂": # 0x2202
- test:
if: "$Verbosity='Terse'"
then: # (en: 'partial', google translation)
else: # (en: 'partial derivative', google: 'partielle ableitung')
- "∃": # 0x2203 (en: 'there exists')
- "∄": # 0x2204 (en: 'there does not exist')
- "∅": # 0x2205 (en: 'empty set')
- "∆": # 0x2206
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "Differenz" # (en: 'laplacian of', MathPlayer: 'increment', google: 'laplace von')
- "∇": # 0x2207
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "gradient (nabla)" # (en: 'gradient of', google: 'gradient von')
- "∈": # 0x2208
- test:
if: "$SpeechStyle != 'ClearSpeak'"
then: # (en: 'an element of', google translation)
# Several options for speaking elements in ClearSpeak -- they split between being inside a set or not and then the option
else_test:
if: "../../self::m:set or ../../../self::m:set" # inside a set
then_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'In'
then: # (google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'element of', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'belonging to')
else_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'is a member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'is an element of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'In'
then: # (en: 'is in', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'belongs to')
- "∉": # 0x2209
# rule is identical to 0x2208
- test:
if: "$SpeechStyle != 'ClearSpeak'"
then: # (en: 'is not an element of', google translation)
# Several options for speaking elements in ClearSpeak -- they split between being inside a set or not and then the option
else_test:
if: "../../self::m:set or ../../../self::m:set" # inside a set
then_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'In'
then: # (en: 'not in', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'not member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'not element of', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'not belonging to')
else_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'is not a member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'is not an element of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'In'
then: # (en: 'is not in', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'does not belong to')
- "∊": # 0x220a
- test:
if: "$SpeechStyle != 'ClearSpeak'"
then: # (en: 'is an element of', google translation)
# Several options for speaking elements in ClearSpeak -- they split between being inside a set or not and then the option
else_test:
if: "../../self::m:set or ../../../self::m:set" # inside a set
then_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'In'
then: # (google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'element of', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'belonging to')
else_test:
- if: $ClearSpeak_SetMemberSymbol = 'Auto' or $ClearSpeak_SetMemberSymbol = 'Member'
then: # (en: 'is a member of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'Element'
then: # (en: 'is an element of', google translation)
- else_if: $ClearSpeak_SetMemberSymbol = 'In'
then: # (en: 'is in', google translation)
- else: # $ClearSpeak_SetMemberSymbol = 'Belongs' (en: 'belongs to')
- "∋": # 0x220b (en: 'contains the member')
- "∌": # 0x220c (en: 'does not contain the member')
- "∍": # 0x220d (en: 'contains the member')
- "∎": # 0x220e (en: 'end of proof')
- "∏": # 0x220f (en: 'product', MathPlayer: 'Product', google: 'produkt')
- "∐": # 0x2210 (en: 'coproduct', MathPlayer: 'coproduct', google: 'koprodukt')
- "∑": # 0x2211 (en: 'sum')
- "−": # 0x2212
- "∓": # 0x2213 (en: 'minus or plus')
- "∔": # 0x2214 (en: 'dot plus', MathPlayer: 'dot plus', google: 'punkt plus')
- "∕": # 0x2215 (en: 'divided by', MathPlayer: 'Schrägstrich (Division)', google: 'geteilt durch')
- "∖": # 0x2216 (en: 'set minus', MathPlayer: 'Mengen-Minus', google: 'minus einstellen')
- "∗": # 0x2217 (en: 'times', MathPlayer: 'asterisk operator', google: 'mal')
- "∘": # 0x2218 (en: 'composed with')
- "∙": # 0x2219
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'times', MathPlayer: 'bullet operator', google: 'mal')
- "√": # 0x221a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "Quadratwurzel" # (en: 'square root of', MathPlayer: 'radical', google: 'quadratwurzel von')
- "∛": # 0x221b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "Kubikwurzel" # (en: 'cube root of', MathPlayer: 'dritte Wurzel', google: 'würfelwurzel von')
- "∜": # 0x221c
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "vierte Wurzel" # (en: 'fourth root of')
- "∝": # 0x221d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "proportional zu" # (en: 'proportional to')
- "∞": # 0x221e (en: 'infinity')
- "∟": # 0x221f (en: 'right angle')
- "∠": # 0x2220 (en: 'angle')
- "∡": # 0x2221 (en: 'measured angle', MathPlayer: 'measured angle', google: 'gemessener winkel')
- "∢": # 0x2222 (en: 'spherical angle', MathPlayer: 'spherical angle', google: 'sphärischer winkel')
- "∣": # 0x2223 (en: 'divides')
- "∤": # 0x2224 (en: 'does not divide')
- "∧": # 0x2227 (en: 'and')
- "∨": # 0x2228 (en: 'or')
- "∩": # 0x2229 (en: 'intersection')
- "∪": # 0x222a (en: 'union')
- "∫": # 0x222b (en: 'integral')
- "∬": # 0x222c (en: 'double integral')
- "∭": # 0x222d (en: 'triple integral', MathPlayer: 'Dreifaches Integral', google: 'dreifachintegral')
- "∮": # 0x222e (en: 'contour integral', MathPlayer: 'Kontur-Integral', google: 'konturintegral')
- "∯": # 0x222f (en: 'surface integral', MathPlayer: 'Flächenintegral', google: 'oberflächenintegral')
- "∰": # 0x2230 (en: 'volume integral', MathPlayer: 'Volumsintegral', google: 'volumenintegral')
- "∱": # 0x2231 (en: 'clockwise integral')
- "∲": # 0x2232 (en: 'clockwise contour integral', MathPlayer: 'Kontur-Integral im Uhrzeigersinn', google: 'konturintegral im uhrzeigersinn')
- "∳": # 0x2233 (en: 'anticlockwise contour integral', MathPlayer: 'Kontur-Integral im Gegenuhrzeigersinn', google: 'konturintegral gegen den gegenwart')
- "∴": # 0x2234 (en: 'therefore', MathPlayer: 'deshalb', google: 'daher')
- "∵": # 0x2235 (en: 'because')
- "∶": # 0x2236
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Verhältnis" # (en: 'to')
- "∷": # 0x2237 (en: 'as')
- "∸": # 0x2238 (en: 'dot minus', MathPlayer: 'dot minus', google: 'punkt minus')
- "∹": # 0x2239 (en: 'has excess compared to', MathPlayer: 'excess', google: 'hat überschüssig im vergleich zu')
- "∺": # 0x223a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrische Proportion" # (en: 'geometrically proportional to')
- "∻": # 0x223b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "homothetisch" # (en: 'homothetic to', MathPlayer: 'homothetic', google: 'homothetisch zu')
- "∼": # 0x223c (en: 'varies with', MathPlayer: 'tilde operator', google: 'variiert mit')
- "∽": # 0x223d (en: 'reversed tilde', MathPlayer: 'reversed tilde', google: 'umgekehrte tilde')
- "∾": # 0x223e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Umgekehrtes stummes S" # (en: 'most positive', MathPlayer: 'inverted lazy s', google: 'am positivsten')
- "∿": # 0x223f (en: 'sine wave', MathPlayer: 'sine wave', google: 'sinus')
- "≀": # 0x2240 (en: 'wreath product', MathPlayer: 'wreath product', google: 'kranzprodukt')
- "≁": # 0x2241 (en: 'not tilde', MathPlayer: 'not tilde', google: 'nicht tilde')
- "≂": # 0x2242 (SRE: 'Minus über Tilde')
- "≃": # 0x2243
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "asymptotisch gleich" # (en: 'asymptotically equal to')
- "≄": # 0x2244
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht asymptotisch gleich" # (en: 'not asymptotically equal to')
- "≅": # 0x2245
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ungefähr gleich" # (en: 'approximately equal to')
- "≆": # 0x2246
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ungefähr, aber nicht ganz gleich" # (en: 'approximately but not actually equal to')
- "≇": # 0x2247
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder ungefähr noch ganz gleich" # (en: 'neither approximately nor actually equal to')
- "≈": # 0x2248
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "beinahe gleich" # (en: 'almost equal to')
- "≉": # 0x2249
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht beinahe gleich" # (en: 'not almost equal to')
- "≊": # 0x224a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "beinahe gleich oder gleich" # (en: 'almost equal or equal to', MathPlayer: 'beinahe oder ganz gleich', google: 'fast gleich oder gleich')
- "≋": # 0x224b (en: 'triple tilde', MathPlayer: 'triple tilde', google: 'dreifach tilde')
- "≌": # 0x224c (en: 'are all equal to', MathPlayer: 'all equal to', google: 'sind alle gleich')
- "≍": # 0x224d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "äquivalent zu" # (en: 'equivalent to')
- "≎": # 0x224e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrisch äquivalent zu" # (en: 'geometrically equivalent to')
- "≏": # 0x224f
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "Differenz zwischen" # (en: 'difference between')
- "≐": # 0x2250 (en: 'approaches the limit')
- "≑": # 0x2251
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrisch gleich" # (en: 'geometrically equal to')
- "≒": # 0x2252
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Ungefähr gleich oder das Bild von" # (en: 'approximately equal to or the image of', MathPlayer: 'approximately equal to or the image of', google: 'ungefähr gleich oder das bild von')
- "≓": # 0x2253
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is the', google translation)
- T: "Bild von oder ungefähr gleich" # (en: 'image of or approximately equal to', MathPlayer: 'image of or approximately equal to', google: 'bild von oder ungefähr gleich')
- "≔": # 0x2254 (en: 'colon equals')
- "≕": # 0x2255 (en: 'equals colon', MathPlayer: 'equals colon', google: 'gleich')
- "≖": # 0x2256 (en: 'ring in equal to', MathPlayer: 'ring in equal to', google: 'in gleich rufen')
- "≗": # 0x2257
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ungefähr gleich" # (en: 'approximately equal to', MathPlayer: 'ring equal to')
- "≘": # 0x2258 (en: 'corresponds to')
- "≙": # 0x2259 (en: 'estimates', MathPlayer: 'estimates', google: 'schätzungen')
- "≚": # 0x225a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleichwinklig zu" # (en: 'equiangular to', MathPlayer: 'equiangular to', google: 'gleiche zu')
- "≛": # 0x225b (en: 'star equals', MathPlayer: 'star equals', google: 'stern ist gleich')
- "≜": # 0x225c (en: 'delta equals', MathPlayer: 'delta equal to', google: 'delta gleich')
- "≝": # 0x225d (en: 'is defined to be')
- "≞": # 0x225e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gemessen mit" # (en: 'measured by', MathPlayer: 'measured by')
- "≟": # 0x225f (en: 'has an unknown relationship with', MathPlayer: 'questioned equal to', google: 'hat eine unbekannte beziehung zu')
- "≠": # 0x2260
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ungleich" # (en: 'not equal to')
- "≡": # 0x2261
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "identisch mit" # (en: 'identical to', SRE: 'kongruent mit')
- "≢": # 0x2262
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht identisch mit" # (en: 'not identical to', SRE: 'nicht kongruent mit')
- "≣": # 0x2263
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "genau äquivalent mit" # (en: 'strictly equivalent to', MathPlayer: 'streng äquivalent mit', google: 'streng äquivalent zu')
- "≦": # 0x2266 (en: 'less than over equal to', MathPlayer: 'less than over equal to', google: 'weniger als überweg')
- "≧": # 0x2267 (en: 'greater than over equal to', MathPlayer: 'greater than over equal to', google: 'größer als überweg')
- "≨": # 0x2268
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kleiner als, aber nicht gleich" # (en: 'less than but not equal to')
- "≩": # 0x2269
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "größer als, aber nicht gleich" # (en: 'greater than but not equal to')
- "≪": # 0x226a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "viel kleiner als" # (en: 'much less than')
- "≫": # 0x226b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "viel größer als" # (en: 'much greater than')
- "≬": # 0x226c
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "zwischen" # (en: 'between')
- "≭": # 0x226d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht äquivalent mit" # (en: 'not equivalent to')
- "≮": # 0x226e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht kleiner als" # (en: 'not less than')
- "≯": # 0x226f
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht größer als" # (en: 'not greater than')
- "≰": # 0x2270
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder kleiner als noch gleich" # (en: 'neither less than nor equal to')
- "≱": # 0x2271
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder größer als noch gleich" # (en: 'neither greater than nor equal to')
- "≲": # 0x2272
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kleiner als oder äquivalent" # (en: 'less than or equivalent to')
- "≳": # 0x2273
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "größer als oder äquivalent" # (en: 'greater than or equivalent to')
- "≴": # 0x2274
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder kleiner als noch äquivalent" # (en: 'neither less than nor equivalent to')
- "≵": # 0x2275
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder größer als noch äquivalent" # (en: 'neither greater than nor equivalent to')
- "≶": # 0x2276
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kleiner oder größer als" # (en: 'less than or greater than')
- "≷": # 0x2277
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "größer oder kleiner als" # (en: 'greater than or less than')
- "≸": # 0x2278
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder kleiner noch größer als" # (en: 'neither less than nor greater than')
- "≹": # 0x2279
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder größer noch kleiner als" # (en: 'neither greater than nor less than')
- "≺": # 0x227a (en: 'precedes', MathPlayer: 'precedes', google: 'voraus')
- "≻": # 0x227b (en: 'succeeds', MathPlayer: 'succeeds', google: 'gelingt es')
- "≼": # 0x227c (en: 'precedes or is equal to', MathPlayer: 'precedes or equal to', google: 'vorausgeht oder ist gleich')
- "≽": # 0x227d (en: 'succeeds or is equal to', MathPlayer: 'succeeds or equal to', google: 'erfolg oder ist gleich')
- "≾": # 0x227e (en: 'precedes or is equivalent to', MathPlayer: 'precedes or equivalent to', google: 'vorausgeht oder ist gleichbedeutend mit')
- "≿": # 0x227f (en: 'succeeds or is equivalent to', MathPlayer: 'succeeds or equivalent to', google: 'erfolg oder ist gleichbedeutend mit')
- "⊀": # 0x2280 (en: 'does not precede', MathPlayer: 'does not precede', google: 'vorausgegangen nicht voraus')
- "⊁": # 0x2281 (en: 'does not succeed', MathPlayer: 'does not succeed', google: 'gelingt es nicht')
- "⊂": # 0x2282
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "echte Teilmenge von" # (en: 'subset of', MathPlayer: 'Teilmenge von', google: 'untergruppe von')
- "⊃": # 0x2283
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "echte Obermenge von" # (en: 'superset of', MathPlayer: 'Obermenge von', google: 'superset von')
- "⊄": # 0x2284
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "keine echte Teilmenge von" # (en: 'not a subset of', MathPlayer: 'nicht Teilmenge von', google: 'keine teilmenge von')
- "⊅": # 0x2285
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kein echte Obermenge von" # (en: 'not a superset of', MathPlayer: 'nicht Obermenge von', google: 'kein superset von')
- "⊆": # 0x2286
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "Teilmenge oder gleich" # (en: 'subset of or equal to', MathPlayer: 'Teilmenge von odre gleich', google: 'teilmenge von oder gleich')
- "⊇": # 0x2287
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "Obermenge oder gleich" # (en: 'superset of or equal to', MathPlayer: 'Obermenge von oder gleich', google: 'superset von oder gleich')
- "⊈": # 0x2288
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder Teilmenge noch gleich" # (en: 'neither a subset of nor equal to', MathPlayer: 'weder Teilmenge von noch gleich', google: 'weder eine untergruppe von noch gleich')
- "⊉": # 0x2289
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "weder Obermenge noch gleich" # (en: 'neither a superset of nor equal to', MathPlayer: 'weder Obermenge von noch gleich', google: 'weder ein superset von noch gleich')
- "⊊": # 0x228a (en: 'subset of with not equal to', MathPlayer: 'Teilmenge von, aber nicht gleich', google: 'teilmenge von mit nicht gleich')
- "⊋": # 0x228b (en: 'superset of with not equal to', MathPlayer: 'Obermenge von, aber nicht gleich', google: 'superset von mit nicht gleich')
- "⊌": # 0x228c (SRE: 'Multimenge')
- "⊍": # 0x228d (en: 'multiset multiplication', MathPlayer: 'multiset multiplication', google: 'multiset -multiplikation')
- "⊎": # 0x228e (SRE: 'Multimengenvereinigung')
- "⊏": # 0x228f (en: 'square image of', MathPlayer: 'square image of', google: 'square bild von')
- "⊐": # 0x2290 (en: 'square original of', MathPlayer: 'square original of', google: 'square original von')
- "⊑": # 0x2291 (en: 'square image of or equal to', MathPlayer: 'square image of or equal to', google: 'quadratisches bild von oder gleich')
- "⊒": # 0x2292 (en: 'square original of or equal to', MathPlayer: 'square original of or equal to', google: 'square original von oder gleich')
- "⊓": # 0x2293 (en: 'square cap', MathPlayer: 'square cap', google: 'quadratische großbuchstaben')
- "⊔": # 0x2294 (en: 'square cup', MathPlayer: 'square cup', google: 'quadratbecher')
- "⊕": # 0x2295 (en: 'circled plus', MathPlayer: 'circle plus', google: 'umgekreist plus')
- "⊖": # 0x2296 (en: 'circled minus', MathPlayer: 'circle minus', google: 'eingekreist minus')
- "⊗": # 0x2297 (en: 'circled times', MathPlayer: 'circle times', google: 'kreiste zeiten')
- "⊘": # 0x2298 (en: 'circled slash', MathPlayer: 'circle slash', google: 'eingekreist')
- "⊙": # 0x2299 (en: 'circled dot operator', MathPlayer: 'circle dot', google: 'eingekreister punktbetreiber')
- "⊚": # 0x229a (en: 'circled ring', MathPlayer: 'circle ring', google: 'eingekreister ring')
- "⊛": # 0x229b (en: 'circled asterisk', MathPlayer: 'circle asterisk', google: 'eingekreistes sternchen')
- "⊜": # 0x229c (en: 'circled equals', MathPlayer: 'circle equals', google: 'kreist gleich')
- "⊝": # 0x229d (en: 'circled dash', MathPlayer: 'circle dash', google: 'kreislauf')
- "⊞": # 0x229e (en: 'squared plus', MathPlayer: 'square plus', google: 'quadrat plus')
- "⊟": # 0x229f (en: 'squared minus', MathPlayer: 'square minus', google: 'quadratisch minus')
- "⊠": # 0x22a0 (en: 'squared times', MathPlayer: 'square times', google: 'quadratische zeiten')
- "⊡": # 0x22a1 (en: 'squared dot operator', MathPlayer: 'square dot', google: 'quadratischer punktbetreiber')
- "⊢": # 0x22a2 (en: 'proves', MathPlayer: 'right tack', google: 'beweist')
- "⊣": # 0x22a3 (en: 'does not yield', MathPlayer: 'left tack', google: 'ergeben nicht')
- "⊤": # 0x22a4 (en: 'top', MathPlayer: 'down tack', google: 'spitze')
- "⊥": # 0x22a5
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "senkrecht auf" # (en: 'bottom', MathPlayer: 'up tack', google: 'unten')
- "⊦": # 0x22a6 (en: 'reduces to', MathPlayer: 'assertion', google: 'reduziert zu')
- "⊧": # 0x22a7 (en: 'models', MathPlayer: 'models', google: 'modelle')
- "⊨": # 0x22a8
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "wahr" # (en: 'true', MathPlayer: 'true')
- "⊩": # 0x22a9 (en: 'forces', MathPlayer: 'forces', google: 'kräfte')
- "⊪": # 0x22aa (en: 'triple vertical bar right turnstile', MathPlayer: 'triple vertical bar right turnstile', google: 'triple vertikale bar rechtsummens')
- "⊫": # 0x22ab (en: 'double vertical bar double right turnstile', MathPlayer: 'double vertical bar double right turnstile', google: 'doppelte vertikale balken doppelte rechte kurve')
- "⊬": # 0x22ac (en: 'does not prove', MathPlayer: 'does not prove')
- "⊭": # 0x22ad
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht wahr" # (en: 'not true', MathPlayer: 'not true')
- "⊮": # 0x22ae (en: 'does not force', MathPlayer: 'does not force', google: 'zwingt nicht')
- "⊯": # 0x22af (en: 'negated double vertical bar double right turnstile', MathPlayer: 'negated double vertical bar double right turnstile', google: 'negierter doppelter vertikaler balken doppelte rechte kurve')
- "⊰": # 0x22b0 (en: 'precedes under relation', MathPlayer: 'precedes under relation', google: 'vorausgegangen in beziehung')
- "⊱": # 0x22b1 (en: 'succeeds under relation', MathPlayer: 'succeeds under relation', google: 'erfolgreich in beziehung')
- "⊲": # 0x22b2
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "normale Untergruppe" # (en: 'a normal subgroup of', MathPlayer: 'normal subgroup of', google: 'eine normale untergruppe von')
- "⊳": # 0x22b3 (en: 'contains as a normal subgroup', MathPlayer: 'contains as normal subgroup', google: 'enthält als normale untergruppe')
- "⊴": # 0x22b4
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "normale Untergruppe von oder gleich" # (en: 'a normal subgroup of or equal to', MathPlayer: 'normal subgroup of or equal to', google: 'eine normale untergruppe von oder gleich')
- "⊵": # 0x22b5 (en: 'contains as a normal subgroup or equal to', MathPlayer: 'contains as normal subgroup or equal to', google: 'enthält als normale untergruppe oder gleich')
- "⊶": # 0x22b6
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Original von" # (en: 'the original of', MathPlayer: 'original of', google: 'das original von')
- "⊷": # 0x22b7
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Bild von" # (en: 'an image of', MathPlayer: 'image of', google: 'ein bild von')
- "⊸": # 0x22b8 (SRE: 'Mehrfachzuordnung')
- "⊹": # 0x22b9 (en: 'hermitian conjugate matrix', MathPlayer: 'hermitian conjugate matrix', google: 'hermitische konjugierte matrix')
- "⊺": # 0x22ba (en: 'intercalate', MathPlayer: 'intercalate', google: 'interkalieren')
- "⊻": # 0x22bb (SRE: 'Ausschließendes Oder')
- "⊼": # 0x22bc (SRE: 'Nand verknüpft mit')
- "⊽": # 0x22bd (en: 'nor', MathPlayer: 'nor', google: 'noch')
- "⊾": # 0x22be (en: 'right angle with arc', MathPlayer: 'right angle with arc', google: 'rechtwinkel mit bogen')
- "⊿": # 0x22bf (en: 'right triangle', MathPlayer: 'right triangle', google: 'rechtwinkliges dreieck')
- "⋀": # 0x22c0 (en: 'logical and', SRE: 'N-stufiges logisches Und')
- "⋁": # 0x22c1 (en: 'logical or', SRE: 'N-stufiges logisches Oder')
- "⋂": # 0x22c2 (en: 'intersection', MathPlayer: 'Durchschnitt', google: 'überschneidung')
- "⋃": # 0x22c3 (en: 'union', MathPlayer: 'Vereinigung', google: 'union')
- "⋄": # 0x22c4 (en: 'diamond operator', MathPlayer: 'diamond operator', google: 'diamantbetreiber')
- "⋅": # 0x22c5
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'times', MathPlayer: 'dot')
- "⋆": # 0x22c6 (en: 'times', MathPlayer: 'star', google: 'mal')
- "⋇": # 0x22c7 (en: 'division times', MathPlayer: 'division times', google: 'divisionszeiten')
- "⋈": # 0x22c8 (en: 'bowtie', MathPlayer: 'bowtie', google: 'krawatte')
- "⋉": # 0x22c9
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "linkes halbdirektes Produkt" # (en: 'the left normal factor semidirect product of', MathPlayer: 'left normal factor semidirect product', google: 'das linke normale faktor semidirekte produkt von')
- "⋊": # 0x22ca
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "rechtes halbdirektes Produkt" # (en: 'the right normal factor semidirect product of', MathPlayer: 'right normal factor semidirect product', google: 'der richtige normale faktor semidirect -produkt von')
- "⋋": # 0x22cb
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "linkes halbdirektes Produkt" # (en: 'the left semidirect product of', MathPlayer: 'left semidirect product', google: 'das linke semidirect -produkt von')
- "⋌": # 0x22cc
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "rechtes halbdirektes Produkt" # (en: 'the right semidirect product of', MathPlayer: 'right semidirect product', google: 'das richtige semidirect -produkt von')
- "⋍": # 0x22cd (en: 'reversed tilde equals', MathPlayer: 'reversed tilde equals', google: 'umgekehrte tilde gleich')
- "⋎": # 0x22ce (en: 'curly logical or', MathPlayer: 'curly logical or', google: 'lockiges logisch oder')
- "⋏": # 0x22cf (en: 'curly logical and', MathPlayer: 'curly logical and', google: 'lockiges logisch und')
- "⋐": # 0x22d0
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "doppelte Teilmenge" # (en: 'a double subset of', MathPlayer: 'double subset', google: 'eine doppelte untergruppe von')
- "⋑": # 0x22d1
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "doppelte Obermenge" # (en: 'a double superset of', MathPlayer: 'double superset', google: 'ein doppeltes superset von')
- "⋒": # 0x22d2
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "doppelter Durchschnitt" # (en: 'double intersection of', MathPlayer: 'double intersection', google: 'doppelte kreuzung von')
- "⋓": # 0x22d3
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "doppelte Vereinigung" # (en: 'double union of', MathPlayer: 'double union', google: 'doppelte vereinigung von')
- "⋔": # 0x22d4
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'the', google translation)
- T: "echter Durchschnitt" # (en: 'proper intersection of', MathPlayer: 'pitchfork', google: 'richtige schnittpunkt von')
- "⋕": # 0x22d5
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleich und parallel" # (en: 'equal to and parallel to', MathPlayer: 'equal and parallel to', google: 'gleich und parallel zu')
- "⋖": # 0x22d6 (en: 'less than with dot', MathPlayer: 'less than with dot', google: 'weniger als mit punkt')
- "⋗": # 0x22d7 (en: 'greater than with dot', MathPlayer: 'greater than with dot', google: 'größer als mit punkt')
- "⋘": # 0x22d8
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "sehr viel kleiner als" # (en: 'very much less than', MathPlayer: 'very much less than', google: 'sehr viel weniger als')
- "⋙": # 0x22d9
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "sehr viel größer als" # (en: 'very much greater than', MathPlayer: 'very much greater than')
- "⋚": # 0x22da
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kleiner als, gleich oder größer als" # (en: 'less than equal to or greater than', MathPlayer: 'less than equal to or greater than', google: 'weniger als gleich oder größer als')
- "⋛": # 0x22db
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "größer als, gleich oder kleiner als" # (en: 'greater than equal to or less than', MathPlayer: 'greater than equal to or less than', google: 'größer als gleich oder weniger als')
- "⋜": # 0x22dc
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleich oder kleiner als" # (en: 'equal to or less than', MathPlayer: 'equal to or less than', google: 'gleich oder weniger als')
- "⋝": # 0x22dd
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleich oder größer als" # (en: 'equal to or greater than', MathPlayer: 'equal to or greater than')
- "⋞": # 0x22de
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleich oder vorangehend" # (en: 'equal to or precedes', MathPlayer: 'equal to or precedes', google: 'gleich oder voraus')
- "⋟": # 0x22df
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "gleich oder nachfolgend" # (en: 'equal to or succeeds', MathPlayer: 'equal to or succeeds', google: 'gleich oder erfolgreich')
- "⋠": # 0x22e0 (en: 'does not precede nor is equal to', MathPlayer: 'does not precede or equal', google: 'geht nicht voraus und ist nicht gleich')
- "⋡": # 0x22e1 (en: 'does not succeed nor is equal to', MathPlayer: 'does not succeed or equal', google: 'gelingt weder noch ist es gleich')
- "⋢": # 0x22e2 (en: 'not square image of or equal to', MathPlayer: 'not square image of or equal to', google: 'kein quadratisches bild von oder gleich')
- "⋣": # 0x22e3 (en: 'not square original of or equal to', MathPlayer: 'not square original of or equal to', google: 'kein quadratisches original von oder gleich')
- "⋤": # 0x22e4 (en: 'square image of or not equal to', MathPlayer: 'square image of or not equal to', google: 'quadratisches bild von oder nicht gleich')
- "⋥": # 0x22e5 (en: 'square original of or not equal to', MathPlayer: 'square original of or not equal to', google: 'square original von oder nicht gleich')
- "⋦": # 0x22e6
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kleiner als, aber nicht äquivalent" # (en: 'less than but not equivalent to', MathPlayer: 'less than but not equivalent to', google: 'weniger als aber nicht gleichbedeutend mit')
- "⋧": # 0x22e7
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "größer als, aber nicht äquivalent" # (en: 'greater than but not equivalent to', MathPlayer: 'greater than but not equivalent to', google: 'größer als aber nicht gleichbedeutend mit')
- "⋨": # 0x22e8 (en: 'precedes but is not equivalent to', MathPlayer: 'precedes but not equivalent to', google: 'vorausgesetzt, ist aber nicht gleichwertig zu')
- "⋩": # 0x22e9 (en: 'succeeds but is not equivalent to', MathPlayer: 'succeeds but not equivalent to', google: 'erfolg, ist aber nicht gleichwertig zu')
- "⋪": # 0x22ea
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "nicht normale Untergruppe von" # (en: 'not a normal subgroup of', MathPlayer: 'not normal subgroup of', google: 'keine normale untergruppe von')
- "⋫": # 0x22eb (en: 'does not contain as a normal subgroup', MathPlayer: 'does not contain as normal subgroup', google: 'enthält nicht als normale untergruppe')
- "⋬": # 0x22ec
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "keine normale Untergruppe von oder gleich" # (en: 'not a normal subgroup of nor is equal to', MathPlayer: 'not normal subgroup of or equal to', google: 'keine normale untergruppe von und nicht gleich')
- "⋭": # 0x22ed (en: 'does not contain as a normal subgroup nor is equal to', MathPlayer: 'does not contain as normal subgroup or equal', google: 'enthält weder eine normale untergruppe noch')
- "⋮": # 0x22ee (en: 'vertical ellipsis', MathPlayer: 'vertical ellipsis', google: 'vertikale ellipse')
- "⋯": # 0x22ef (en: 'dot dot dot', MathPlayer: 'math axis ellipsis', google: 'punkt punkt punkt')
- "⋰": # 0x22f0 (en: 'upwards diagonal ellipsis', MathPlayer: 'up right diagonal ellipsis', google: 'aufwärts diagonale ellipsis')
- "⋱": # 0x22f1 (en: 'diagonal ellipsis', MathPlayer: 'down right diagonal ellipsis', google: 'diagonale ellipsis')
- "⋲": # 0x22f2 (en: 'element of with long horizontal stroke', MathPlayer: 'element of with long horizontal stroke', google: 'element von mit langem horizontalem schlaganfall')
- "⋳": # 0x22f3 (en: 'element of with vertical bar at end of horizontal stroke', MathPlayer: 'element of with vertical bar at end of horizontal stroke', google: 'element von mit vertikalem balken am ende des horizontalen strich')
- "⋴": # 0x22f4 (en: 'element of with vertical bar at end of horizontal stroke', MathPlayer: 'element of with vertical bar at end of horizontal stroke', google: 'element von mit vertikalem balken am ende des horizontalen strich')
- "⋵": # 0x22f5 (en: 'element of with dot above', MathPlayer: 'element of with dot above', google: 'element von mit punkt oben')
- "⋶": # 0x22f6 (en: 'element of with overbar', MathPlayer: 'element of with overbar', google: 'element von overbar')
- "⋷": # 0x22f7 (en: 'element of with overbar', MathPlayer: 'element of or equal to', google: 'element von overbar')
- "⋸": # 0x22f8 (en: 'element of with underbar', MathPlayer: 'element of with underbar', google: 'element von mit unterbar')
- "⋹": # 0x22f9 (en: 'element of with two horizontal strokes', MathPlayer: 'element of with two horizontal strokes', google: 'element von mit zwei horizontalen strichen')
- "⋺": # 0x22fa (en: 'contains with long horizontal stroke', MathPlayer: 'contains with long horizontal stroke', google: 'enthält mit langem horizontalem schlaganfall')
- "⋻": # 0x22fb (en: 'contains with vertical bar at end of horizontal stroke', MathPlayer: 'contains with vertical bar at end of horizontal stroke', google: 'enthält mit vertikaler balken am ende des horizontalen schlaganfalls')
- "⋼": # 0x22fc (en: 'contains with vertical bar at end of horizontal stroke', MathPlayer: 'contains with vertical bar at end of horizontal stroke', google: 'enthält mit vertikaler balken am ende des horizontalen schlaganfalls')
- "⋽": # 0x22fd (en: 'contains with overbar', MathPlayer: 'contains or equal to', google: 'enthält mit überbar')
- "⋾": # 0x22fe (en: 'contains with overbar', MathPlayer: 'small contains with overbar', google: 'enthält mit überbar')
- "⋿": # 0x22ff (en: 'z notation bag membership', MathPlayer: 'z notation bag membership', google: 'z notation bag mitgliedschaft')
- "⌀": # 0x2300 (en: 'diameter', MathPlayer: 'diameter', google: 'durchmesser')
- "⌁": # 0x2301 (en: 'electric arrow', google: 'elektrischer pfeil')
- "⌂": # 0x2302 (en: 'house', MathPlayer: 'house', google: 'haus')
- "⌃": # 0x2303 (en: 'up arrowhead', google: 'auf pfeilspitze')
- "⌄": # 0x2304 (en: 'down arrowhead', google: 'pfeilspitze')
- "⌅": # 0x2305 (en: 'projective', MathPlayer: 'projective', google: 'projektiv')
- "⌆": # 0x2306 (en: 'perspective', MathPlayer: 'perspective', google: 'perspektive')
- "⌇": # 0x2307 (en: 'wavy line', google: 'schlangenlinie')
- "⌈": # 0x2308 (en: 'left ceiling', MathPlayer: 'left ceiling', google: 'linke decke')
- "⌉": # 0x2309 (en: 'right ceiling', MathPlayer: 'right ceiling', google: 'rechte decke')
- "⌊": # 0x230a (en: 'left floor', MathPlayer: 'left floor', google: 'linker boden')
- "⌋": # 0x230b (en: 'right floor', MathPlayer: 'right floor', google: 'rechts boden')
- "⌌": # 0x230c (en: 'bottom right crop', MathPlayer: 'bottom right crop', google: 'unten rechts ernte')
- "⌍": # 0x230d (en: 'bottom left crop', MathPlayer: 'bottom left crop', google: 'unten linke ernte')
- "⌎": # 0x230e (en: 'top right crop', MathPlayer: 'top right crop', google: 'oben rechts ernte')
- "⌏": # 0x230f (en: 'top left crop', MathPlayer: 'top left crop', google: 'oben linke ernte')
- "⌐": # 0x2310 (en: 'reversed not sign', MathPlayer: 'reversed not', google: 'umgekehrt nicht unterschreiben')
- "⌑": # 0x2311 (en: 'square lozenge', google: 'square rautege')
- "⌒": # 0x2312 (en: 'arc', MathPlayer: 'arc', google: 'bogen')
- "⌓": # 0x2313 (SRE: 'Segment')
- "⌔": # 0x2314 (en: 'sector', google: 'sektor')
- "⌕": # 0x2315 (google: 'telefonrekorder')
- "⌖": # 0x2316 (en: 'position indicator crosshairs', google: 'positionsindikator crosshairs')
- "⌗": # 0x2317 (google translation)
- "⌘": # 0x2318 (google: 'spole von interschlage')
- "⌙": # 0x2319 (en: 'turned not sign', google translation)
- "⌚": # 0x231a (google: 'betrachten')
- "⌛": # 0x231b (en: 'hourglass', google translation)
- "⌜": # 0x231c (en: 'top left corner', MathPlayer: 'top left corner', google: 'obere linke ecke')
- "⌝": # 0x231d (en: 'top right corner', MathPlayer: 'top right corner', google: 'obere rechte ecke')
- "⌞": # 0x231e (en: 'bottom left corner', MathPlayer: 'bottom left corner', google: 'untere linke ecke')
- "⌟": # 0x231f (en: 'bottom right corner', MathPlayer: 'bottom right corner', google: 'rechte untere ecke')
- "⌠": # 0x2320 (en: 'top half integral', MathPlayer: 'top half integral', google: 'top -hälfte integral')
- "⌡": # 0x2321 (en: 'bottom half integral', MathPlayer: 'bottom half integral', google: 'untere hälfte integral')
- "⌢": # 0x2322 (google: 'stirnrunzeln')
- "⌣": # 0x2323 (google: 'lächeln')
- "⌤": # 0x2324 (en: 'up arrowhead between two horizontal bars', google: 'auf der pfeilspitze zwischen zwei horizontalen balken')
- "⌥": # 0x2325 (en: 'option key', google translation)
- "⌦": # 0x2326 (en: 'erase to the right', google translation)
- "⌧": # 0x2327 (en: 'x in a rectangle box', google translation)
- "⌨": # 0x2328 (en: 'keyboard', google translation)
- "〈": # 0x2329 (en: 'left pointing angle bracket', MathPlayer: 'left pointing angle bracket', google: 'links zeigewinkelhalterung')
- "〉": # 0x232a (en: 'right pointing angle bracket', MathPlayer: 'right pointing angle bracket', google: 'rechte zeigewinkelhalterung')
- "⌫": # 0x232b (en: 'erase to the left', google translation)
- "⌬": # 0x232c (en: 'benzene ring', google translation)
- "⌭": # 0x232d (google: 'zylinderheit')
- "⌮": # 0x232e (google: 'rund um das profil')
- "⌯": # 0x232f (en: 'symmetry', google translation)
- "⌰": # 0x2330 (en: 'total runout', google translation)
- "⌱": # 0x2331 (en: 'dimension origin', google translation)
- "⌲": # 0x2332 (en: 'conical taper', google translation)
- "⌳": # 0x2333 (en: 'slope', google translation)
- "⌴": # 0x2334 (en: 'counterbore', google translation)
- "⌵": # 0x2335 (en: 'countersink', google translation)
- "⍰": # 0x2370 (en: 'unknown box', google: 'unbekannte box')
- "⎕": # 0x2395 (en: 'box', google translation)
- "⏞": # 0x23DE (en: 'top brace', MathPlayer: 'top curly bracket', google: 'spitzenklammer')
- "⏟": # 0x23DF (en: 'bottom brace', MathPlayer: 'bottom curly bracket', google: 'bottom -klammer')
- "①-⑨": # 0x2460 - 0x2469
- T: "umkreiste" # (en: 'circled', MathPlayer: 'bottom curly bracket', google: 'eingekreist')
- spell: "translate('.', '①②③④⑤⑥⑦⑧⑨', '123456789')"
- "⑩": # 0x2469 (en: 'circled ten', google translation)
- "⑪": # 0x246a (en: 'circled eleven', google translation)
- "⑫": # 0x246b (en: 'circled twelve', google translation)
- "⑬": # 0x246c (en: 'circled thirteen', google translation)
- "⑭": # 0x246d (en: 'circled fourteen', google translation)
- "⑮": # 0x246e (en: 'circled fifteen', google translation)
- "⑯": # 0x246f (en: 'circled sixteen', google translation)
- "⑰": # 0x2470 (en: 'circled seventeen', google translation)
- "⑱": # 0x2471 (en: 'circled eighteen', google translation)
- "⑳": # 0x2473 (en: 'circled twenty', google translation)
- "⑴-⑼": # 0x2474 - 0x247d
- T: "klammern" # (en: 'parenthesized', google translation)
- spell: "translate('.', '⑴⑵⑶⑷⑸⑹⑺⑻⑼', '123456789')"
- "⑽": # 0x247d (en: 'parenthesized ten', google translation)
- "⑾": # 0x247e (en: 'parenthesized eleven', google translation)
- "⑿": # 0x247f (en: 'parenthesized twelve', google translation)
- "⒀": # 0x2480 (en: 'parenthesized thirteen', google translation)
- "⒁": # 0x2481 (en: 'parenthesized fourteen', google translation)
- "⒂": # 0x2482 (en: 'parenthesized fifteen', google translation)
- "⒃": # 0x2483 (en: 'parenthesized sixteen', google translation)
- "⒄": # 0x2484 (en: 'parenthesized seventeen', google translation)
- "⒅": # 0x2485 (en: 'parenthesized eighteen', google translation)
- "⒆": # 0x2486 (en: 'parenthesized nineteen', google translation)
- "⒇": # 0x2487 (en: 'parenthesized twenty', google translation)
- "⒈-⒐": # 0x2488 - 0x2491
- spell: "translate('.', '⒈⒉⒊⒋⒌⒍⒎⒏⒐', '123456789')"
- T: "mit periode" # (en: 'with period', google translation)
- "⒑": # 0x2491 (en: 'ten with period', google translation)
- "⒒": # 0x2492 (en: 'eleven with period', google translation)
- "⒓": # 0x2493 (en: 'twelve with period', google translation)
- "⒔": # 0x2494 (en: 'thirteen with period', google translation)
- "⒕": # 0x2495 (en: 'fourteen with period', google translation)
- "⒖": # 0x2496 (en: 'fifteen with period', google translation)
- "⒗": # 0x2497 (en: 'sixteen with period', google translation)
- "⒘": # 0x2498 (en: 'seventeen with period', google translation)
- "⒙": # 0x2499 (en: 'eighteen with period', google translation)
- "⒚": # 0x249a (en: 'nineteen with period', google translation)
- "⒛": # 0x249b (en: 'twenty with period', google translation)
- "⒜-⒵": # 0x249c - 0x24b5
- T: "klammern" # (en: 'parenthesized', google translation)
- spell: "translate('.', '⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵', 'abcdefghijklmnopqrstuvwxyz')"
- "Ⓐ-Ⓩ":
- T: "eingekreist" # (en: 'circled', google translation)
- spell: "translate('.', 'ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "ⓐ-ⓩ": # 0x24d0 - 0x24e9
- T: "eingekreist" # (en: 'circled', google translation)
- spell: "translate('.', 'ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ', 'abcdefghijklmnopqrstuvwxyz')"
- "⓪": # 0x24ea (en: 'circled zero', google translation)
- "⓫": # 0x24eb (en: 'black circled eleven', google translation)
- "⓬": # 0x24ec (en: 'black circled twelve', google translation)
- "⓭": # 0x24ed (en: 'black circled thirteen', google translation)
- "⓮": # 0x24ee (en: 'black circled fourteen', google translation)
- "⓯": # 0x24ef (en: 'black circled fifteen', google translation)
- "⓰": # 0x24f0 (en: 'black circled sixteen', google translation)
- "⓱": # 0x24f1 (en: 'black circled seventeen', google translation)
- "⓲": # 0x24f2 (en: 'black circled eighteen', google translation)
- "⓳": # 0x24f3 (en: 'black circled nineteen', google translation)
- "⓴": # 0x24f4 (en: 'black circled twenty', google translation)
- "⓵-⓽": # 0x24f5 - 0x24fe
- T: "doppelt umkreist" # (en: 'double circled', google translation)
- spell: "translate('.', '⓵⓶⓷⓸⓹⓺⓻⓼⓽', '123456789')"
- "⓾": # 0x24fe (en: 'double circled ten', google translation)
- "⓿": # 0x24ff (en: 'black circled zero', google translation)
- "■": # 0x25a0 (en: 'black square', MathPlayer: 'black square', google: 'schwarzes quadrat')
- "□": # 0x25a1 (en: 'white square', MathPlayer: 'white square', google: 'weißes quadrat')
- "▢": # 0x25a2 (en: 'white square with rounded corners', google: 'weißes quadrat mit abgerundeten ecken')
- "▣": # 0x25a3 (en: 'white square containing small black square', google: 'weißes quadrat mit kleinem schwarzem quadrat')
- "▤": # 0x25a4 (en: 'square with horizontal fill', google: 'quadrat mit horizontaler füllung')
- "▥": # 0x25a5 (en: 'square with vertical fill', google: 'quadrat mit vertikaler füllung')
- "▦": # 0x25a6 (en: 'square with orthogonal crosshatch fill', google: 'quadrat mit orthogonaler kreuzungsfüllung')
- "▧": # 0x25a7 (en: 'square with upper left to lower right fill', google: 'quadratisch mit oberen links nach unten rechts füllung')
- "▨": # 0x25a8 (en: 'square with upper right to lower left fill', google: 'quadrat mit der oberen rechten linken füllung')
- "▩": # 0x25a9 (en: 'square with diagonal crosshatch fill', google: 'quadrat mit diagonaler kreuzungsfüllung')
- "▪": # 0x25aa (en: 'black small square', MathPlayer: 'black square', google: 'schwarzes kleines quadrat')
- "▫": # 0x25ab (en: 'white small square', MathPlayer: 'white square', google: 'weißes kleines quadrat')
- "▬": # 0x25ac (en: 'black rectangle', google: 'schwarzes rechteck')
- "▭": # 0x25ad (en: 'white rectangle', MathPlayer: 'white rectangle', google: 'weißes rechteck')
- "▮": # 0x25ae (en: 'black vertical rectangle', MathPlayer: 'black vertical rectangle', google: 'schwarzes vertikales rechteck')
- "▯": # 0x25af (en: 'white vertical rectangle', MathPlayer: 'white vertical rectangle', google: 'weißes vertikales rechteck')
- "▰": # 0x25b0 (en: 'black parallelogram', google: 'schwarzes parallelogramm')
- "▱": # 0x25b1 (en: 'white parallelogram', MathPlayer: 'white parallelogram', google: 'weißes parallelogramm')
- "▲": # 0x25b2 (en: 'black up pointing triangle', MathPlayer: 'black up pointing triangle', google: 'schwarz nach oben zeigt dreieck')
- "△": # 0x25b3 (en: 'white up pointing triangle', MathPlayer: 'white up pointing triangle', google: 'weiß nach oben zeigendreieck')
- "▴": # 0x25b4 (en: 'black up pointing small triangle', MathPlayer: 'black up pointing triangle', google: 'schwarz nach oben zeigt ein kleines dreieck')
- "▵": # 0x25b5 (en: 'white up pointing small triangle', MathPlayer: 'white up pointing triangle', google: 'weiß nach oben zeigt ein kleines dreieck')
- "▶": # 0x25b6 (en: 'black right pointing triangle', MathPlayer: 'black right pointing triangle', google: 'schwarzes rechte dreieck')
- "▷": # 0x25b7 (en: 'white right pointing triangle', MathPlayer: 'white right pointing triangle', google: 'weißes rechtes dreieck')
- "▸": # 0x25b8 (en: 'black right pointing small triangle', MathPlayer: 'black right pointing triangle', google: 'schwarzer rechts kleines dreieck')
- "▹": # 0x25b9 (en: 'white right pointing small triangle', MathPlayer: 'right pointing triangle', google: 'weißer rechts kleines dreieck')
- "►": # 0x25ba (en: 'black right pointing pointer', google: 'schwarzer rechter zeiger')
- "▻": # 0x25bb (en: 'white right pointing pointer', google: 'weißer rechts zeiger')
- "▼": # 0x25bc (en: 'black down pointing triangle', MathPlayer: 'black down pointing triangle', google: 'schwarzes down -dreieck')
- "▽": # 0x25bd (en: 'white down pointing triangle', MathPlayer: 'white down pointing triangle', google: 'weiß down dreieck')
- "▾": # 0x25be (en: 'black down pointing small triangle', MathPlayer: 'black down pointing triangle', google: 'schwarz unten zeigt ein kleines dreieck')
- "▿": # 0x25bf (en: 'white down pointing small triangle', MathPlayer: 'white down pointing triangle', google: 'weiß down zeigt kleines dreieck')
- "◀": # 0x25c0 (en: 'black left pointing triangle', MathPlayer: 'black left pointing triangle', google: 'schwarzes linker dreieck')
- "◁": # 0x25c1 (en: 'white left pointing triangle', MathPlayer: 'white left pointing triangle', google: 'weißes linker dreieck')
- "◂": # 0x25c2 (en: 'black left pointing small triangle', MathPlayer: 'black left pointing triangle', google: 'schwarz links zeigt ein kleines dreieck')
- "◃": # 0x25c3 (en: 'white left pointing small triangle', MathPlayer: 'white left pointing triangle', google: 'weiß links kleines dreieck')
- "◄": # 0x25c4 (en: 'black left pointing pointer', MathPlayer: 'black left pointing pointer', google: 'schwarzer links zeigter zeiger')
- "◅": # 0x25c5 (en: 'white left pointing pointer', MathPlayer: 'white left pointing pointer', google: 'weißer links zeiger zeiger')
- "◆": # 0x25c6 (en: 'black diamond', MathPlayer: 'black diamond', google: 'schwarzer diamant')
- "◇": # 0x25c7 (en: 'white diamond', MathPlayer: 'white diamond', google: 'weißer diamant')
- "◈": # 0x25c8 (en: 'white diamond containing black small diamond', MathPlayer: 'white diamond containing black diamond', google: 'weißer diamant mit schwarzem kleinem diamanten')
- "◉": # 0x25c9 (SRE: 'Fischauge')
- "◊": # 0x25ca (en: 'lozenge', MathPlayer: 'lozenge', google: 'pastille')
- "○": # 0x25cb (en: 'white circle', MathPlayer: 'white circle', google: 'weißer kreis')
- "◌": # 0x25cc (en: 'dotted circle', MathPlayer: 'dotted circle', google: 'gepunkteter kreis')
- "◍": # 0x25cd (en: 'circle with vertical fill', MathPlayer: 'circle with vertical fill', google: 'kreis mit vertikaler füllung')
- "◎": # 0x25ce (SRE: 'Bullseye')
- "●": # 0x25cf (en: 'black circle', MathPlayer: 'black circle', google: 'schwarzer kreis')
- "◐": # 0x25d0 (en: 'circle with left half black', MathPlayer: 'circle with left half black', google: 'kreis mit dem linken halben schwarz')
- "◑": # 0x25d1 (en: 'circle with right half black', MathPlayer: 'circle with right half black', google: 'kreis mit dem rechten halb schwarz')
- "◒": # 0x25d2 (en: 'circle with lower half black', MathPlayer: 'circle with lower half black', google: 'kreis mit unterer halb schwarz')
- "◓": # 0x25d3 (en: 'circle with upper half black', MathPlayer: 'circle with upper half black', google: 'kreis mit der oberen hälfte schwarz')
- "◔": # 0x25d4 (en: 'circle with upper right quadrant black', MathPlayer: 'circle with upper right quadrant black', google: 'kreis mit dem oberen rechten quadranten schwarz')
- "◕": # 0x25d5 (en: 'circle with all but upper left quadrant black', MathPlayer: 'circle with all but upper left quadrant black', google: 'kreisen sie mit allen außer oberen linken quadranten schwarz')
- "◖": # 0x25d6 (en: 'left half black circle', MathPlayer: 'left half black circle', google: 'links halb schwarzer kreis')
- "◗": # 0x25d7 (en: 'right half black circle', MathPlayer: 'right half black circle', google: 'rechte halbe schwarze kreis')
- "◘": # 0x25d8 (en: 'inverse bullet', MathPlayer: 'inverse bullet', google: 'inverse kugel')
- "◙": # 0x25d9 (en: 'inverse white circle', MathPlayer: 'inverse white circle', google: 'inverser weißer kreis')
- "◚": # 0x25da (en: 'upper half inverse white circle', MathPlayer: 'upper half inverse white circle', google: 'inverse weißer kreis der oberen hälfte')
- "◛": # 0x25db (en: 'lower half inverse white circle', MathPlayer: 'lower half inverse white circle', google: 'untere hälfte inverser weißer kreis')
- "◜": # 0x25dc (en: 'upper left quadrant circular arc', MathPlayer: 'upper left quadrant circular arc', google: 'oberer linker quadrantenkreisbogen')
- "◝": # 0x25dd (en: 'upper right quadrant circular arc', MathPlayer: 'upper right quadrant circular arc', google: 'oberer rechter quadrant kreisbogen')
- "◞": # 0x25de (en: 'lower right quadrant circular arc', MathPlayer: 'lower right quadrant circular arc', google: 'unterer rechts quadrant zirkularbogen')
- "◟": # 0x25df (en: 'lower left quadrant circular arc', MathPlayer: 'lower left quadrant circular arc', google: 'unterer linker quadrantenkreisbogen')
- "◠": # 0x25e0 (en: 'upper half circle', MathPlayer: 'upper half circle', google: 'oberer halbkreis')
- "◡": # 0x25e1 (en: 'lower half circle', MathPlayer: 'lower half circle', google: 'unterer halbkreis')
- "◢": # 0x25e2 (en: 'black lower right triangle', MathPlayer: 'black lower right triangle', google: 'schwarz unten rechts dreieck')
- "◣": # 0x25e3 (en: 'black lower left triangle', MathPlayer: 'black lower left triangle', google: 'schwarzes unteres linke dreieck')
- "◤": # 0x25e4 (en: 'black upper left triangle', MathPlayer: 'black upper left triangle', google: 'schwarzes oberes linksdreieck')
- "◥": # 0x25e5 (en: 'black upper right triangle', MathPlayer: 'black upper right triangle', google: 'schwarzes oberes rechtes dreieck')
- "◦": # 0x25e6 (en: 'composition', MathPlayer: 'composition', google: 'komposition')
- "◧": # 0x25e7 (en: 'square with left half black', MathPlayer: 'square with left half black', google: 'quadrat mit linksem halb schwarz')
- "◨": # 0x25e8 (en: 'square with right half black', MathPlayer: 'square with right half black', google: 'quadrat mit dem rechten halben schwarz')
- "◩": # 0x25e9 (en: 'square with upper left half black', MathPlayer: 'square with upper left half black', google: 'quadrat mit oberen linken halben schwarz')
- "◪": # 0x25ea (en: 'square with lower right half black', MathPlayer: 'square with lower right half black', google: 'quadratisch mit unterer rechter halb schwarz')
- "◫": # 0x25eb (en: 'white square with bisecting line', MathPlayer: 'white square with bisecting line', google: 'weißes quadrat mit halbierender linie')
- "◬": # 0x25ec (en: 'white up pointing triangle with dot', MathPlayer: 'white up pointing triangle with dot', google: 'weiß nach oben zeigte dreieck mit punkt')
- "◭": # 0x25ed (en: 'up pointing triangle with left half black', MathPlayer: 'up pointing triangle with left half black', google: 'dreieck mit dem linken halben schwarz zeigen')
- "◮": # 0x25ee (en: 'up pointing triangle with right half black', MathPlayer: 'up pointing triangle with right half black', google: 'dreieck mit dem rechten halben schwarz zeigen')
- "◯": # 0x25ef (en: 'large circle', MathPlayer: 'large circle', google: 'großer kreis')
- "◰": # 0x25f0 (en: 'white square with upper left quadrant', google: 'weißes quadrat mit oberen linken quadrant')
- "◱": # 0x25f1 (en: 'white square with lower left quadrant', google: 'weißes quadrat mit unteren linken quadranten')
- "◲": # 0x25f2 (en: 'white square with lower right quadrant', google: 'weißes quadrat mit unten rechts quadrant')
- "◳": # 0x25f3 (en: 'white square with upper right quadrant', google: 'weißes quadrat mit oberen rechten quadrant')
- "◴": # 0x25f4 (en: 'white circle with upper left quadrant', google: 'weißer kreis mit oberen linken quadrant')
- "◵": # 0x25f5 (en: 'white circle with lower left quadrant', google: 'weißer kreis mit unteren linken quadranten')
- "◶": # 0x25f6 (en: 'white circle with lower right quadrant', google: 'weißer kreis mit unten rechts quadrant')
- "◷": # 0x25f7 (en: 'white circle with upper right quadrant', google: 'weißer kreis mit oben rechts quadrant')
- "◸": # 0x25f8 (en: 'upper left triangle', MathPlayer: 'upper left triangle', google: 'oberes linker dreieck')
- "◹": # 0x25f9 (en: 'upper right triangle', MathPlayer: 'upper right triangle triangle', google: 'ober rechtes dreieck')
- "◺": # 0x25fa (en: 'lower left triangle', MathPlayer: 'lower left triangle', google: 'unteres linker dreieck')
- "◻": # 0x25fb (en: 'white medium square', MathPlayer: 'white medium square', google: 'weißes mittleres quadrat')
- "◼": # 0x25fc (en: 'black medium square', MathPlayer: 'black medium square', google: 'schwarzes mittleres quadrat')
- "◽": # 0x25fd (en: 'white medium small square', MathPlayer: 'white medium square', google: 'weißes mittleres kleines quadrat')
- "◾": # 0x25fe (en: 'black medium small square', MathPlayer: 'black medium square', google: 'schwarzes mittel kleiner quadrat')
- "◿": # 0x25ff (en: 'lower right triangle', MathPlayer: 'lower right triangle', google: 'unten rechts dreieck')
- "♠": # 0x2660 (google: 'schwarzer spatenanzug')
- "♡": # 0x2661 (google: 'weißer herzanzug')
- "♢": # 0x2662 (google: 'weißer diamantanzug')
- "♣": # 0x2663 (google: 'schwarzer clubanzug')
- "♤": # 0x2664 (google: 'weißer spatenanzug')
- "♥": # 0x2665 (google: 'schwarzer herzanzug')
- "♦": # 0x2666 (google: 'schwarzer diamantanzug')
- "♧": # 0x2667 (google: 'weißer clubanzug')
- "❨": # 0x2768 (en: 'medium left parentheses ornament', google: 'mittel linke klammern')
- "❩": # 0x2769 (en: 'medium right parentheses ornament', google: 'mittel rechts klammernsthesis ornament')
- "❪": # 0x276a (en: 'medium flattened left parentheses ornament', google: 'medium abgeflachtes linker klammern')
- "❫": # 0x276b (en: 'medium flattened right parentheses ornament', google: 'mittel abgeflacht rechte klammerthese -ornament')
- "❬": # 0x276c (en: 'medium left-pointing angle bracket ornament', google: 'mittelgroße linkswinkel-klammerverzierung')
- "❭": # 0x276d (en: 'medium right-pointing angle bracket ornament', google: 'mittel mit dem rechten zeigungswinkelhalterung')
- "❮": # 0x276e (en: 'heavy left-pointing angle quotation mark ornament', google: 'schwerer zitat für den linken zeigungswinkel mark ornament')
- "❯": # 0x276f (en: 'heavy right-pointing angle quotation mark ornament', google: 'schwerer rechts zeigter winkel zitat mark ornament')
- "❰": # 0x2770 (en: 'heavy left-pointing angle bracket ornament', google: 'schwere linkswinkel-halterung')
- "❱": # 0x2771 (en: 'heavy right-pointing angle bracket ornament', google: 'schwere rechtshalterung mit rechts zeigter winkel')
- "❲": # 0x2772 (en: 'light left tortoise shell bracket ornament', google: 'leichte linke schildkröte -hülle -halterung')
- "❳": # 0x2773 (en: 'light right tortoise shell bracket ornament', google: 'leichte rechte schildkröte -hülle -halterung')
- "❴": # 0x2774 (en: 'medium left brace ornament', google: 'medium linke klammerverzierung')
- "❵": # 0x2775 (en: 'medium right brace ornament', google: 'mittlere rechte klammerverzierung')
- "❶": # 0x2776 (en: 'black circled one', google translation)
- "❷": # 0x2777 (en: 'black circled two', google translation)
- "❸": # 0x2778 (en: 'black circled three', google translation)
- "❹": # 0x2779 (en: 'black circled four', google translation)
- "❺": # 0x277a (en: 'black circled five', google translation)
- "❻": # 0x277b (en: 'black circled six', google translation)
- "❼": # 0x277c (en: 'black circled seven', google translation)
- "❽": # 0x277d (en: 'black circled eight', google translation)
- "❾": # 0x277e (en: 'black circled nine', google translation)
- "❿": # 0x277f (en: 'black circled ten', google translation)
- "➀": # 0x2780 (en: 'circled sans serif one', google translation)
- "➁": # 0x2781 (en: 'circled sans serif two', google translation)
- "➂": # 0x2782 (en: 'circled sans serif three', google translation)
- "➃": # 0x2783 (en: 'circled sans serif four', google translation)
- "➄": # 0x2784 (en: 'circled sans serif five', google translation)
- "➅": # 0x2785 (en: 'circled sans serif six', google translation)
- "➆": # 0x2786 (en: 'circled sans serif seven', google translation)
- "➇": # 0x2787 (en: 'circled sans serif eight', google translation)
- "➈": # 0x2788 (en: 'circled sans serif nine', google translation)
- "➉": # 0x2789 (en: 'circled sans serif ten', google translation)
- "➊": # 0x278a (en: 'black circled sans serif one', google translation)
- "➋": # 0x278b (en: 'black circled sans serif two', google translation)
- "➌": # 0x278c (en: 'black circled sans serif three', google translation)
- "➍": # 0x278d (en: 'black circled sans serif four', google translation)
- "➎": # 0x278e (en: 'black circled sans serif five', google translation)
- "➏": # 0x278f (en: 'black circled sans serif six', google translation)
- "➐": # 0x2790 (en: 'black circled sans serif seven', google translation)
- "➑": # 0x2791 (en: 'black circled sans serif eight', google translation)
- "➒": # 0x2792 (en: 'black circled sans serif nine', google translation)
- "➓": # 0x2793 (en: 'black circled sans serif ten', google translation)
- "➔": # 0x2794 (en: 'heavy wide-headed rightwards arrow', google: 'schwerer breiter arrow')
- "➕": # 0x2795 (en: 'heavy plus sign', google: 'schweres pluszeichen')
- "➖": # 0x2796 (en: 'heavy minus sign', google: 'schweres minuszeichen')
- "➗": # 0x2797 (en: 'heavy division sign', google: 'schweres divisionszeichen')
- "➘": # 0x2798 (en: 'heavy south east arrow', google: 'schwerer südostpfeil')
- "➙": # 0x2799 (en: 'heavy rightwards arrow', google: 'schwerer rechts pfeil')
- "➚": # 0x279a (en: 'heavy north east arrow', google: 'schwerer nordostpfeil')
- "➛": # 0x279b (en: 'drafting point rightwards arrow', google: 'ausgangspunkt rechts von pfeil')
- "➜": # 0x279c (en: 'heavy round-tipped rightwards arrow', google: 'schwerer pfeil nach rechts')
- "➝": # 0x279d (en: 'triangle-headed rightwards arrow', google: 'dreieck köpfig mit rechtsem pfeil')
- "➞": # 0x279e (en: 'heavy triangle-headed rightwards arrow', google: 'schwerer pfeil mit dreieck-köpfen')
- "➟": # 0x279f (en: 'dashed triangle-headed rightwards arrow', google: 'dreieck köpfig nach rechtsem pfeil')
- "➠": # 0x27a0 (en: 'heavy dashed triangle-headed rightwards arrow', google: 'schwerer, geschnittenes dreieck-köpfiger pfeil nach rechts')
- "➡": # 0x27a1 (en: 'black rightwards arrow', google: 'schwarzer pfeil nach rechts')
- "➢": # 0x27a2 (en: 'three d top lighted rightwards arrow', google: 'drei d top leuchtet nach rechts')
- "➣": # 0x27a3 (en: 'three d bottom lighted rightwards arrow', google: 'drei d bottom beleuchtet nach rechts')
- "➤": # 0x27a4 (en: 'black rightwards arrowhead', google: 'schwarz rechts pfeilspitze')
- "➥": # 0x27a5 (en: 'heavy black curved downwards and rightwards arrow', google: 'schwerer schwarz gebrüht nach unten und rechts pfeil')
- "➦": # 0x27a6 (en: 'heavy black curved upwards and rightwards arrow', google: 'schwerer schwarz nach oben gebogen und rechts pfeil')
- "➧": # 0x27a7 (en: 'squat black rightwards arrow', google: 'hocke black rightwards pfeil')
- "➨": # 0x27a8 (en: 'heavy concave-pointed black rightwards arrow', google: 'schwerer konkavspunkter schwarzer pfeil nach rechts')
- "➩": # 0x27a9 (en: 'right-shaded white rightwards arrow', google: 'right shaded white rightwards pfeil')
- "➪": # 0x27aa (en: 'left-shaded white rightwards arrow', google: 'linksschattierte weiße pfeil nach rechts')
- "➫": # 0x27ab (en: 'back-tilted shadowed white rightwards arrow', google: 'rückgedünnter weißer weißer pfeil nach rechts')
- "➬": # 0x27ac (en: 'front-tilted shadowed white rightwards arrow', google: 'frontgeflodeltes weißer weißer pfeil nach rechts')
- "➭": # 0x27ad (en: 'heavy lower right-shadowed white rightwards arrow', google: 'schwere, rechte schatten mit weißem recht nach rechts')
- "➮": # 0x27ae (en: 'heavy upper right-shadowed white rightwards arrow', google: 'schwere obere rechte schattenhafte weiße rechts pfeil')
- "➯": # 0x27af (en: 'notched lower right-shadowed white rightwards arrow', google: 'gekerbte rechte rechten weißen pfeil nach rechts')
- "➱": # 0x27b1 (en: 'notched upper right-shadowed white rightwards arrow', google: 'gekerbte obere rechte schattenhafte weiße pfeil nach rechts')
- "➲": # 0x27b2 (en: 'circled heavy white rightwards arrow', google: 'umgekreist schweren weißen pfeil nach rechts')
- "➳": # 0x27b3 (en: 'white-feathered rightwards arrow', google: 'weiß gefiederter pfeil nach rechts')
- "➴": # 0x27b4 (en: 'black-feathered south east arrow', google: 'schwarz gefiederter südöstlicher pfeil')
- "➵": # 0x27b5 (en: 'black-feathered rightwards arrow', google: 'schwarz gefiederter pfeil nach rechts')
- "➶": # 0x27b6 (en: 'black-feathered north east arrow', google: 'schwarz gefiederter nordostpfeil')
- "➷": # 0x27b7 (en: 'heavy black-feathered south east arrow', google: 'schwerer schwarz gefiederter südostpfeil')
- "➸": # 0x27b8 (en: 'heavy black-feathered rightwards arrow', google: 'schwerer schwarz gefiederter pfeil nach rechts')
- "➹": # 0x27b9 (en: 'heavy black-feathered north east arrow', google: 'schwerer schwarz gefiederter nordostpfeil')
- "➺": # 0x27ba (en: 'teradrop-barbed rightwards arrow', google: 'teradrop-barded mit rechtsem pfeil')
- "➻": # 0x27bb (en: 'heavy teardrop-shanked rightwards arrow', google: 'schwere tränenverschiebung nach rechts pfeil')
- "➼": # 0x27bc (en: 'wedge-tailed rightwards arrow', google: 'keilschwanz rechts pfeil')
- "➽": # 0x27bd (en: 'heavy wedge-tailed rightwards arrow', google: 'schwerer keilschwanz rechts pfeil')
- "➾": # 0x27be (en: 'open-outlined rightwards arrow', google: 'open-out-line-rightwards-pfeil')
- "⟀": # 0x27c0 (en: 'three dimensional angle', MathPlayer: 'three dimensional angle', google: 'dreidimensionaler winkel')
- "⟁": # 0x27c1 (en: 'white triangle containing small white triangle', MathPlayer: 'white triangle containing small white triangle', google: 'weißes dreieck mit einem kleinen weißen dreieck')
- "⟂": # 0x27c2
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Aufrecht" # (en: 'perpendicular to', MathPlayer: 'perpendicular', google: 'senkrecht zu')
- "⟃": # 0x27c3
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Subset öffnen" # (en: 'an open subset of', MathPlayer: 'open subset', google: 'eine offene teilmenge von')
- "⟄": # 0x27c4
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "Superset öffnen" # (en: 'an open superset of', MathPlayer: 'open superset', google: 'ein offenes superet von')
- "⟅": # 0x27c5 (en: 'left s-shaped bag delimiter', MathPlayer: 'left s-shaped bag delimiter', google: 'links s-förmiger tasche gremiter')
- "⟆": # 0x27c6 (en: 'right s-shaped bag delimiter', MathPlayer: 'right s-shaped bag delimiter', google: 'rechte s-förmige tasche grenzwerbung')
- "⟇": # 0x27c7 (en: 'or with dot inside', MathPlayer: 'or with dot inside', google: 'oder mit punkt im inneren')
- "⟈": # 0x27c8 (en: 'reverse solidus preceding subset', MathPlayer: 'back slash preceeding subset', google: 'reverse solidus vor der untergruppe')
- "⟉": # 0x27c9 (en: 'superset preceding solidus', MathPlayer: 'superset preceeding slash', google: 'superset vor solidus')
- "⟊": # 0x27ca (en: 'vertical bar with horizontal stroke', MathPlayer: 'vertical bar with horizontal stroke', google: 'vertikale balken mit horizontalem schlaganfall')
- "⟋": # 0x27cb (en: 'mathematical rising diagonal', google: 'mathematische steigende diagonale')
- "⟌": # 0x27cc (en: 'long division', MathPlayer: 'long division', google: 'lange division')
- "⟍": # 0x27cd (en: 'mathematical falling diagonal', google: 'mathematische fallende diagonale')
- "⟎": # 0x27ce (en: 'squared logical and', google: 'quadratisch logisch und')
- "⟏": # 0x27cf (en: 'squared logical or', google: 'quadratisch logisch oder')
- "⟐": # 0x27d0 (en: 'white diamond with centered dot', google: 'weißer diamant mit zentriertem punkt')
- "⟑": # 0x27d1 (en: 'and with dot', MathPlayer: 'and with dot inside', google: 'und mit punkt')
- "⟒": # 0x27d2 (en: 'element of opening upwards', MathPlayer: 'element of openning upwards', google: 'element der öffnung nach oben')
- "⟓": # 0x27d3 (en: 'lower right corner with dot', MathPlayer: 'lower right corner with dot', google: 'untere rechte ecke mit punkt')
- "⟔": # 0x27d4 (en: 'upper left corner with dot', MathPlayer: 'lower left corner with dot', google: 'obere linke ecke mit punkt')
- "⟕": # 0x27d5 (en: 'left outer join', MathPlayer: 'left outer join', google: 'linke äußere verbindung')
- "⟖": # 0x27d6 (en: 'right outer join', MathPlayer: 'right outer join', google: 'rechts äußerer join')
- "⟗": # 0x27d7 (en: 'full outer join', MathPlayer: 'full outer join', google: 'voller äußerer join')
- "⟘": # 0x27d8 (en: 'large up tack', MathPlayer: 'large up tack', google: 'groß nach oben')
- "⟙": # 0x27d9 (en: 'large down tack', MathPlayer: 'large down tack', google: 'groß nach unten')
- "⟚": # 0x27da (en: 'left and right double turnstile', MathPlayer: 'left and right double turnstile', google: 'linke und rechte doppeldrehung')
- "⟛": # 0x27db (en: 'left and right tack', MathPlayer: 'left and right tack', google: 'linker und rechter angriff')
- "⟜": # 0x27dc (en: 'left multimap', MathPlayer: 'left multimap', google: 'links multimap')
- "⟝": # 0x27dd (en: 'long right tack', MathPlayer: 'long right tack', google: 'langer richtiger tack')
- "⟞": # 0x27de (en: 'long left tack', MathPlayer: 'long left tack', google: 'lange linke tack')
- "⟟": # 0x27df (en: 'up tack with circle above', MathPlayer: 'up tack with circle above', google: 'auf kreis oben')
- "⟠": # 0x27e0 (en: 'lozenge divided by horizontal rule', MathPlayer: 'lozenge divided by horizontal rule', google: 'rautengeschwindigkeit geteilt durch horizontale herrschaft')
- "⟡": # 0x27e1 (en: 'white concave sided diamond', MathPlayer: 'white concave sided diamond', google: 'weißer konkaves diamant')
- "⟢": # 0x27e2 (en: 'white concave sided diamond with leftwards tick', MathPlayer: 'white concave sided diamond with leftwards tick', google: 'weißer konkaves diamant mit linkser zecke')
- "⟣": # 0x27e3 (en: 'white concave sided diamond with rightwards tick', MathPlayer: 'white concave sided diamond with rightwards tick', google: 'weißer konkaves diamant mit rightwards tick')
- "⟤": # 0x27e4 (en: 'white square with leftwards tick', MathPlayer: 'white square with leftwards tick', google: 'weißes quadrat mit links. tick')
- "⟥": # 0x27e5 (en: 'white square with rightwards tick', MathPlayer: 'white square with rightwards tick', google: 'weißes quadrat mit rechtsem häkchen')
- "⟦": # 0x27e6 (en: 'left white square bracket', MathPlayer: 'left white square bracket', google: 'linke weiße quadratklammer')
- "⟧": # 0x27e7 (en: 'right white square bracket', MathPlayer: 'right white square bracket', google: 'rechte weiße quadratklasse')
- "⟨": # 0x27e8 (en: 'left angle bracket', MathPlayer: 'left angle bracket', google: 'linkswinkelhalter')
- "⟩": # 0x27e9 (en: 'right angle bracket', MathPlayer: 'right angle bracket', google: 'rechtswinkelhalterung')
- "⟪": # 0x27ea (en: 'left double angle bracket', MathPlayer: 'left double angle bracket', google: 'links zwei winkelhalterungen')
- "⟫": # 0x27eb (en: 'right double angle bracket', MathPlayer: 'right double angle bracket', google: 'rechte doppelwinkelhalterung')
- "⟬": # 0x27ec (en: 'left white tortoise shell bracket', MathPlayer: 'left white tortoise shell bracket', google: 'links weiße schildkröte')
- "⟭": # 0x27ed (en: 'right white tortoise shell bracket', MathPlayer: 'right white tortoise shell bracket', google: 'richtige weiße schildkrabbungshalterung')
- "⟮": # 0x27ee (en: 'left flattened parenthesis', MathPlayer: 'left flattened parenthesis', google: 'links abgeflachte klammern')
- "⟯": # 0x27ef (en: 'right flattened parenthesis', MathPlayer: 'right flattened parenthesis', google: 'rechte abgeflachte klammern')
- "⟰": # 0x27f0 (en: 'upwards quadruple arrow', google: 'vierfache pfeil nach oben')
- "⟱": # 0x27f1 (en: 'downwards quadruple arrow', google: 'abwärtsvervierter pfeil')
- "⟲": # 0x27f2 (en: 'anticlockwise gapped circle arrow', google: 'gezitterkreis pfeil gegen den gegen den lockzuseigersinn')
- "⟳": # 0x27f3 (en: 'clockwise gapped circle arrow', google: 'geteilte kreispfeil im uhrzeigersinn')
- "⟴": # 0x27f4 (en: 'right arrow with circled plus', google: 'richtiger pfeil mit eingekreistem plus')
- "⟵": # 0x27f5 (en: 'long leftwards arrow', MathPlayer: 'long leftwards arrow', google: 'langer pfeil nach links')
- "⟶": # 0x27f6 (en: 'long rightwards arrow', MathPlayer: 'long rightwards arrow', google: 'langer rechts pfeil')
- "⟷": # 0x27f7 (en: 'long left right arrow', MathPlayer: 'long left right arrow', google: 'langer links rechts pfeil')
- "⟸": # 0x27f8 (en: 'long leftwards double arrow', MathPlayer: 'long leftwards double arrow', google: 'langer links doppelpfeil')
- "⟹": # 0x27f9 (en: 'long rightwards double arrow', MathPlayer: 'long rightwards double arrow', google: 'langer rechts doppelpfeil')
- "⟺": # 0x27fa (en: 'long left right double arrow', MathPlayer: 'long left right double arrow', google: 'langer links rechts doppelpfeil')
- "⟻": # 0x27fb (en: 'long leftwards arrow from bar', google: 'langer links pfeil aus der bar')
- "⟼": # 0x27fc (en: 'long rightwards arrow from bar', MathPlayer: 'long rightwards arrow from bar', google: 'langer rechts pfeil aus der bar')
- "⟽": # 0x27fd (en: 'long leftwards double arrow from bar', google: 'langer links doppelpfeil aus der bar')
- "⟾": # 0x27fe (en: 'long rightwards double arrow from bar', google: 'langer rechts doppelpfeil aus der bar')
- "⟿": # 0x27ff (en: 'long rightwards squiggle arrow', MathPlayer: 'long rightwards squiggle arrow', google: 'langer rechts squiggle -pfeil')
- "⤀": # 0x2900 (en: 'rightwards two headed arrow with vertical stroke', google: 'rechten zweiköpfigen pfeil mit vertikalem schlaganfall')
- "⤁": # 0x2901 (en: 'rightwards two headed arrow with double vertical stroke', google: 'rechten zweiköpfigen pfeil mit doppelter vertikaler hub')
- "⤂": # 0x2902 (en: 'leftwards double arrow with vertical stroke', google: 'links doppelpfeil mit vertikalem schlaganfall')
- "⤃": # 0x2903 (en: 'rightwards double arrow with vertical stroke', google: 'richtiger doppelpfeil mit vertikalem schlaganfall')
- "⤄": # 0x2904 (en: 'left right double arrow with vertical stroke', google: 'links rechts doppelpfeil mit vertikalem schlaganfall')
- "⤅": # 0x2905 (en: 'rightwards two headed arrow from bar', MathPlayer: 'rightwards two headed arrow from bar', google: 'rightwards zwei köpfe pfeil aus der bar')
- "⤆": # 0x2906 (en: 'leftwards double arrow from bar', google: 'links doppelpfeil aus der bar')
- "⤇": # 0x2907 (en: 'rightwards double arrow from bar', google: 'richtiger doppelpfeil aus der bar')
- "⤈": # 0x2908 (en: 'downwards arrow with horizontal stroke', google: 'nach unten pfeil mit horizontalem schlaganfall nach unten')
- "⤉": # 0x2909 (en: 'upwards arrow with horizontal stroke', google: 'aufwärter pfeil mit horizontalem schlaganfall')
- "⤊": # 0x290a (en: 'upwards triple arrow', google: 'dreifach pfeil nach oben')
- "⤋": # 0x290b (en: 'downwards triple arrow', google: 'dreifach pfeil nach unten')
- "⤌": # 0x290c (en: 'leftwards double dash arrow', MathPlayer: 'leftwards double dash arrow', google: 'links -doppel -dash -pfeil')
- "⤍": # 0x290d (en: 'rightwards double dash arrow', MathPlayer: 'rightwards double dash arrow', google: 'rightwards double dash -pfeil')
- "⤎": # 0x290e (en: 'leftwards triple dash arrow', MathPlayer: 'leftwards triple dash arrow', google: 'links dreifach dash -pfeil')
- "⤏": # 0x290f (en: 'rightwards triple dash arrow', MathPlayer: 'rightwards triple dash arrow', google: 'rightwards triple dash pfeil')
- "⤐": # 0x2910 (en: 'rightwards two headed triple dash arrow', MathPlayer: 'rightwards two headed triple dash arrow', google: 'rightwards zwei köpfe triple dash -pfeil')
- "⤑": # 0x2911 (en: 'rightwards arrow with dotted stem', MathPlayer: 'rightwards arrow with dotted stem', google: 'richtiger pfeil mit gepunktetem stiel')
- "⤒": # 0x2912 (en: 'upwards arrow to bar', MathPlayer: 'upwards arrow to bar', google: 'aufwärter pfeil in die bar')
- "⤓": # 0x2913 (en: 'downwards arrow to bar', MathPlayer: 'downwards arrow to bar', google: 'nach unten pfeil in die bar')
- "⤔": # 0x2914 (en: 'rightwards arrow with tail and vertical stroke', google: 'rechten pfeil mit schwanz und vertikalem schlaganfall')
- "⤕": # 0x2915 (en: 'rightwards arrow with tail and double vertical stroke', google: 'rechten pfeil mit schwanz und doppelter vertikaler schlaganfall')
- "⤖": # 0x2916 (en: 'rightwards two headed arrow with tail', MathPlayer: 'rightwards two headed arrow with tail', google: 'rechten zweiköpfigen pfeil mit schwanz')
- "⤗": # 0x2917 (en: 'rightwards two headed arrow with tail with vertical stroke', google: 'rechten zweiköpfigen pfeil mit schwanz mit vertikalem schlaganfall')
- "⤘": # 0x2918 (en: 'rightwards two headed arrow with tail with double vertical stroke', google: 'rechten zweiköpfigen pfeil mit schwanz mit doppelter vertikaler hub')
- "⤙": # 0x2919 (en: 'leftwards arrow tail', MathPlayer: 'leftwards arrow tail', google: 'links pfeilschwanz')
- "⤚": # 0x291a (en: 'rightwards arrow tail', google: 'richtiger pfeilschwanz')
- "⤛": # 0x291b (en: 'leftwards double arrow tail', MathPlayer: 'leftwards double arrow tail', google: 'links doppelpfeilschwanz')
- "⤜": # 0x291c (en: 'rightwards double arrow tail', MathPlayer: 'rightwards double arrow tail', google: 'rightwards double pfeilschwanz')
- "⤝": # 0x291d (en: 'leftwards arrow to filled diamond', MathPlayer: 'leftwards arrow to filled diamond', google: 'pfeil nach links zum gefüllten diamanten')
- "⤞": # 0x291e (en: 'rightwards arrow to filled diamond', MathPlayer: 'rightwards arrow to filled diamond', google: 'richtiger pfeil zum gefüllten diamanten')
- "⤟": # 0x291f (en: 'leftwards arrow from bar to filled diamond', MathPlayer: 'leftwards arrow from bar to filled diamond', google: 'pfeil von der bar zum gefüllten diamanten links')
- "⤠": # 0x2920 (en: 'rightwards arrow from bar to filled diamond', MathPlayer: 'rightwards arrow from bar to filled diamond', google: 'richtiger pfeil von bar zum gefüllten diamanten')
- "⤡": # 0x2921 (en: 'north west and south east arrow', google: 'nordwest- und südostpfeil')
- "⤢": # 0x2922 (en: 'north east and south west arrow', google: 'nordost- und südwestpfeil')
- "⤣": # 0x2923 (en: 'north west arrow with hook', MathPlayer: 'north west arrow with hook', google: 'nordwestpfeil mit haken')
- "⤤": # 0x2924 (en: 'north east arrow with hook', MathPlayer: 'north east arrow with hook', google: 'nordostpfeil mit haken')
- "⤥": # 0x2925 (en: 'south east arrow with hook', MathPlayer: 'south east arrow with hook', google: 'südostpfeil mit haken')
- "⤦": # 0x2926 (en: 'south west arrow with hook', MathPlayer: 'south west arrow with hook', google: 'südwestpfeil mit haken')
- "⤧": # 0x2927 (en: 'north west arrow and north east arrow', MathPlayer: 'north west arrow and north east arrow', google: 'north west arrow und north east pfeil')
- "⤨": # 0x2928 (en: 'north east arrow and south east arrow', MathPlayer: 'north east arrow and south east arrow', google: 'north east arrow und south east pfeil')
- "⤩": # 0x2929 (en: 'south east arrow and south west arrow', MathPlayer: 'south east arrow and south west arrow', google: 'south east arrow und south west arrow')
- "⤪": # 0x292a (en: 'south west arrow and north west arrow', MathPlayer: 'south west arrow and north west arrow', google: 'südwestpfeil und nordwestpfeil')
- "⤫": # 0x292b (en: 'rising diagonal crossing falling diagonal', google: 'steigende diagonale kreuzung fallende diagonale')
- "⤬": # 0x292c (en: 'falling diagonal crossing rising diagonal', google: 'fallende diagonale kreuzende diagonale diagonale kreuzung')
- "⤭": # 0x292d (en: 'south east arrow crossing north east arrow', google: 'south east arrow crossed north east pfeil')
- "⤮": # 0x292e (en: 'north east arrow crossing south east arrow', google: 'north east arrow crossed south east pfeil')
- "⤯": # 0x292f (en: 'falling diagonal crossing north east arrow', google: 'fallende diagonale kreuzung north east pfeil')
- "⤰": # 0x2930 (en: 'rising diagonal crossing south east arrow', google: 'steigende diagonale kreuzung südostpfeil')
- "⤱": # 0x2931 (en: 'north east arrow crossing north west arrow', google: 'nordostpfeil der nordwestpfeil')
- "⤲": # 0x2932 (en: 'north west arrow crossing north east arrow', google: 'nordwest -pfeil überqueren north east pfeil')
- "⤳": # 0x2933 (en: 'wave arrow pointing directly right', MathPlayer: 'wave arrow pointing directly to the right', google: 'wellenpfeil direkt nach rechts zeigen')
- "⤴": # 0x2934 (en: 'arrow pointing rightwards then curving upwards', google: 'pfeil nach rechts zeigt und dann nach oben krümmt')
- "⤵": # 0x2935 (en: 'arrow pointing rightwards then curving downwards', MathPlayer: 'arrow pointing rightwards then curving downwards', google: 'pfeil nach rechts zeigt und dann nach unten krümmt')
- "⤶": # 0x2936 (en: 'arrow pointing downwards then curving leftwards', MathPlayer: 'arrow pointing downwards then curving leftwards', google: 'pfeil nach unten zeigt und dann nach links krümmt')
- "⤷": # 0x2937 (en: 'arrow pointing downwards then curving rightwards', MathPlayer: 'arrow pointing downwards then curving rightwards', google: 'pfeil nach unten zeigt und dann nach rechts krümmt')
- "⤸": # 0x2938 (en: 'right side arc clockwise arrow', MathPlayer: 'clockwise right semicircle arrow', google: 'rechte seite arc im uhrzeigersinn')
- "⤹": # 0x2939 (en: 'left side arc anticlockwise arrow', MathPlayer: 'anticlockwise left semicircle arrow', google: 'linker side arc arc gegen den pfeil gegen gesamtzusehen')
- "⤺": # 0x293a (en: 'top arc anticlockwise arrow', google: 'top -arc -arc gegen den pfeil gegen den uhrzeigersinn')
- "⤻": # 0x293b (en: 'bottom arc anticlockwise arrow', google: 'bogenzeigero -pfeil gegen den unteren lichtbogen')
- "⤼": # 0x293c (en: 'top arc clockwise arrow with minus', MathPlayer: 'clockwise top semicircle arrow with minus', google: 'bogenzusuell -pfeil mit minus')
- "⤽": # 0x293d (en: 'top arc anticlockwise arrow with plus', MathPlayer: 'anticlockwise top semicircle arrow with plus', google: 'top -arc -arc gegen plus gegen den arrow')
- "⤾": # 0x293e (en: 'lower right semicircular clockwise arrow', google: 'unterhalb des rechten halbkreisförmigen pfeils im uhrzeigersinn')
- "⤿": # 0x293f (en: 'lower left semicircular anticlockwise arrow', google: 'unterer linker halbkreisförmiger arrow gegen den gegen den gegen den uhrzeigersinn')
- "⥀": # 0x2940 (en: 'anticlockwise closed circle arrow', google: 'schleigender kirckeisprohl')
- "⥁": # 0x2941 (en: 'clockwise closed circle arrow', google: 'pfeil im uhrzeigersinn geschlossen')
- "⥂": # 0x2942 (en: 'rightwards arrow above short leftwards arrow', google: 'rechten pfeil über dem kurzen linken pfeil')
- "⥃": # 0x2943 (en: 'leftwards arrow above short rightwards arrow', google: 'links pfeil über kurzer rechts pfeil')
- "⥄": # 0x2944 (en: 'short rightwards arrow above leftwards arrow', google: 'kurz nach rechts pfeil über links')
- "⥅": # 0x2945 (en: 'rightwards arrow with plus below', MathPlayer: 'rightwards arrow with plus below', google: 'rightwards pfeil mit plus unten')
- "⥆": # 0x2946 (en: 'leftwards arrow with plus below', google: 'links pfeil mit plus unten')
- "⥇": # 0x2947 (en: 'rightwards arrow through x', google: 'richtiger pfeil durch x')
- "⥈": # 0x2948 (en: 'left right arrow through circle', MathPlayer: 'left right arrow through circle', google: 'links rechts pfeil durch den kreis')
- "⥉": # 0x2949 (en: 'upwards two headed arrow from circle', MathPlayer: 'upwards two headed arrow from circle', google: 'auf zwei köpfe pfeil aus dem kreis')
- "⥊": # 0x294a (en: 'left barb up right barb down harpoon', MathPlayer: 'left barb up right barb down harpoon', google: 'links barb oben rechte barb down harpoon')
- "⥋": # 0x294b (en: 'left barb down right barb up harpoon', MathPlayer: 'left barb down right barb up harpoon', google: 'linker barb unten rechte barb auf harpoon')
- "⥌": # 0x294c (en: 'up barb right down barb left harpoon', google: 'auf barb rechts runter barb links harpune')
- "⥍": # 0x294d (en: 'up barb left down barb right harpoon', google: 'auf barb nach links nach unten abharpoon')
- "⥎": # 0x294e (en: 'left barb up right barb up harpoon', MathPlayer: 'left right harpoon up', google: 'links barby up up barb up harpoon')
- "⥏": # 0x294f (en: 'up barb right down barb right harpoon', MathPlayer: 'up down harpoon right', google: 'auf barb direkt nach barb rechts rechts harpune')
- "⥐": # 0x2950 (en: 'left barb down right barb down harpoon', MathPlayer: 'left right harpoon down', google: 'linker barb unten rechte barb nach unten harpoon')
- "⥑": # 0x2951 (en: 'up barb left down barb left harpoon', MathPlayer: 'up down harpoon left', google: 'auf barb ließ barb nach barb ließ harpoon')
- "⥒": # 0x2952 (en: 'leftwards harpoon with barb up to bar', MathPlayer: 'leftwards harpoon to bar with barb upwards', google: 'links harpoon mit barb bis zur bar')
- "⥓": # 0x2953 (en: 'rightwards harpoon with barb up to bar', MathPlayer: 'rightwards harpoon to bar with barb upwards', google: 'rightwards harpoon mit barb bis zur bar')
- "⥔": # 0x2954 (en: 'upwards harpoon with barb right to bar', MathPlayer: 'upwards harpoon to bar with barb rightwards', google: 'harpune nach oben mit barb right to bar')
- "⥕": # 0x2955 (en: 'downwards harpoon with barb right to bar', MathPlayer: 'downwards harpoon to bar with barb rightwards', google: 'nach unten harpoon mit barb right to bar')
- "⥖": # 0x2956 (en: 'leftwards harpoon with barb down to bar', MathPlayer: 'leftwards harpoon to bar with barb downwards', google: 'links harpoon mit barb in die bar')
- "⥗": # 0x2957 (en: 'rightwards harpoon with barb down to bar', MathPlayer: 'rightwards harpoon to bar with barb downwards', google: 'rightwards harpoon mit barb nach unten in die bar')
- "⥘": # 0x2958 (en: 'upwards harpoon with barb left to bar', MathPlayer: 'upwards harpoon to bar with barb leftwards', google: 'harpoon mit barb in der bar nach oben')
- "⥙": # 0x2959 (en: 'downwards harpoon with barb left to bar', MathPlayer: 'downwards harpoon to bar with barb leftwards', google: 'abwärtsharpune mit barb in der bar nach unten')
- "⥚": # 0x295a (en: 'leftwards harpoon with barb up from bar', MathPlayer: 'leftwards harpoon from bar with barb upwards', google: 'links -harpoon mit barb aus der bar')
- "⥛": # 0x295b (en: 'rightwards harpoon with barb up from bar', MathPlayer: 'rightwards harpoon from bar with barb upwards', google: 'rightwards harpoon mit barb auf der bar')
- "⥜": # 0x295c (en: 'upwards harpoon with barb right from bar', MathPlayer: 'upwards harpoon from bar with barb rightwards', google: 'harpune nach oben mit barb direkt aus der bar')
- "⥝": # 0x295d (en: 'downwards harpoon with barb right from bar', MathPlayer: 'downwards harpoon from bar with barb rightwards', google: 'harpunen nach unten mit barb direkt aus der bar')
- "⥞": # 0x295e (en: 'leftwards harpoon with barb down from bar', MathPlayer: 'leftwards harpoon from bar with barb downwards', google: 'links harpoon mit barb von bar aus der bar')
- "⥟": # 0x295f (en: 'rightwards harpoon with barb down from bar', MathPlayer: 'rightwards harpoon from bar with barb downwards', google: 'rightwards harpoon mit barb von bar aus der bar')
- "⥠": # 0x2960 (en: 'upwards harpoon with barb left from bar', MathPlayer: 'upwards harpoon from bar with barb leftwards', google: 'harpoon mit barb aus der bar nach oben')
- "⥡": # 0x2961 (en: 'downwards harpoon with barb left from bar', MathPlayer: 'downwards harpoon from bar with barb leftwards', google: 'abwärtsharpune mit barb aus der bar weg')
- "⥢": # 0x2962 (en: 'leftwards harpoon with barb up above leftwards harpoon with barb down', MathPlayer: 'leftwards harpoon with barb up above leftwards harpoon with barb down', google: 'links harpoon mit barb oben links harpoon mit barb nach unten')
- "⥣": # 0x2963 (en: 'upwards harpoon with barb left beside upwards harpoon with barb right', MathPlayer: 'upwards harpoon with barb left beside upwards harpoon with barb right', google: 'harpoon nach oben mit barb neben harpoon nach oben mit barb rechts')
- "⥤": # 0x2964 (en: 'rightwards harpoon with barb up above rightwards harpoon with barb down', MathPlayer: 'rightwards harpoon with barb up above rightwards harpoon with barb down', google: 'rightwards harpoon mit barb oben rechts harpoon mit barb down')
- "⥥": # 0x2965 (en: 'downwards harpoon with barb left beside downwards harpoon with barb right', MathPlayer: 'downwards harpoon with barb left beside downwards harpoon with barb right', google: 'harpoon nach unten mit barb neben der abwärtsharpoon mit barb rechts')
- "⥦": # 0x2966 (en: 'leftwards harpoon with barb up above rightwards harpoon with barb up', MathPlayer: 'leftwards harpoon with barb up above rightwards harpoon with barb up', google: 'links harpoon mit barb oben rechts harpoon mit barb hoch')
- "⥧": # 0x2967 (en: 'leftwards harpoon with barb down above rightwards harpoon with barb down', MathPlayer: 'leftwards harpoon with barb down above rightwards harpoon with barb down', google: 'links harpoon mit barb oben rechts harpoon mit barb nach unten')
- "⥨": # 0x2968 (en: 'rightwards harpoon with barb up above leftwards harpoon with barb up', MathPlayer: 'rightwards harpoon with barb up above leftwards harpoon with barb up', google: 'harpoon nach rechts mit barb oben links mit barb auf harpoon')
- "⥩": # 0x2969 (en: 'rightwards harpoon with barb down above leftwards harpoon with barb down', MathPlayer: 'rightwards harpoon with barb down above leftwards harpoon with barb down', google: 'harpoon nach rechts mit barb oben links mit barb mit barb')
- "⥪": # 0x296a (en: 'leftwards harpoon with barb up above long dash', MathPlayer: 'leftwards harpoon over bar', google: 'links -harpoon mit barb über langen schuss')
- "⥫": # 0x296b (en: 'leftwards harpoon with barb down below long dash', MathPlayer: 'leftwards harpoon under bar', google: 'links -harpoon mit barb unter longem armaturenbrett')
- "⥬": # 0x296c (en: 'rightwards harpoon with barb up above long dash', MathPlayer: 'rightwards harpoon over bar', google: 'rightwards harpoon mit barb über langen schuss')
- "⥭": # 0x296d (en: 'rightwards harpoon with barb down below long dash', MathPlayer: 'rightwards harpoon under bar', google: 'rightwards harpoon mit barb unter longem armaturenbrett')
- "⥮": # 0x296e (en: 'upwards harpoon with barb left beside downwards harpoon with barb right', MathPlayer: 'upwards harpoon to the left of downwards harpoon', google: 'harpune nach oben mit barb, der neben der abwärtsharpoon mit barb rechts bleibt')
- "⥯": # 0x296f (en: 'downwards harpoon with barb left beside upwards harpoon with barb right', MathPlayer: 'upwards harpoon to the right of downwards harpoon', google: 'harpoon nach unten mit barb neben harpoon nach oben mit barb rechts')
- "⥰": # 0x2970 (en: 'right double arrow with rounded head')
- "⥱": # 0x2971 (en: 'equals above rightwards arrow', MathPlayer: 'equals above rightwards arrow', google: 'entspricht dem rechten pfeil')
- "⥲": # 0x2972 (en: 'tilde operator above rightwards arrow', MathPlayer: 'tilde operator above rightwards arrow', google: 'tilde -operator über rechtsem pfeil')
- "⥳": # 0x2973 (en: 'leftwards arrow above tilde operator', MathPlayer: 'leftwards arrow over tilde', google: 'pfeil links über dem tilde -operator')
- "⥴": # 0x2974 (en: 'rightwards arrow above tilde operator', MathPlayer: 'rightwards arrow over tilde', google: 'rightwards pfeil über dem tilde -operator')
- "⥵": # 0x2975 (en: 'rightwards arrow above almost equal to', MathPlayer: 'rightwards arrow above almost equal to', google: 'richtiger pfeil über fast gleich')
- "⥶": # 0x2976 (en: 'less than above leftwards arrow', MathPlayer: 'less than above leftwards arrow', google: 'weniger als links in pfeil')
- "⥷": # 0x2977 (en: 'leftwards arrow through less than', google: 'links pfeil durch weniger als')
- "⥸": # 0x2978 (en: 'greater than above rightwards arrow', MathPlayer: 'greater than above rightwards arrow', google: 'größer als über rechts nach rechts')
- "⥹": # 0x2979 (en: 'subset above rightwards arrow', MathPlayer: 'subset above rightwards arrow', google: 'untergruppe über rechts nach rechts')
- "⥺": # 0x297a (en: 'leftwards arrow through subset', google: 'pfeil durch die teilmenge links')
- "⥻": # 0x297b (en: 'superset above leftwards arrow', MathPlayer: 'superset above leftwards arrow', google: 'superset über dem linken pfeil')
- "⥼": # 0x297c (en: 'left fish tail', MathPlayer: 'left fish tail', google: 'links fischschwanz')
- "⥽": # 0x297d (en: 'right fish tail', MathPlayer: 'right fish tail', google: 'rechts fischschwanz')
- "⥾": # 0x297e (en: 'up fish tail', MathPlayer: 'vertical bar with double hook', google: 'up fischschwanz')
- "⥿": # 0x297f (en: 'down fish tail', MathPlayer: 'down fish tail', google: 'down fischschwanz')
- "⦀": # 0x2980 (en: 'triple vertical bar delimiter', google: 'triple vertical bar gremiter')
- "⦁": # 0x2981 (en: 'z notation spot', google: 'z notationspunkt')
- "⦂": # 0x2982 (en: 'z notation type colon', google: 'z notation typ dickdarm')
- "⦃": # 0x2983 (en: 'left white brace', google: 'links weiße klammer')
- "⦄": # 0x2984 (en: 'right white brace', google: 'rechte weiße klammer')
- "⦅": # 0x2985 (en: 'left white parenthesis', MathPlayer: 'left white paren', google: 'linke weiße klammern')
- "⦆": # 0x2986 (en: 'right white parenthesis', MathPlayer: 'right white paren', google: 'rechte weiße klammern')
- "⦇": # 0x2987 (en: 'z notation left image bracket', google: 'z notation linke bildklasse')
- "⦈": # 0x2988 (en: 'z notation right image bracket', google: 'z notation rechtsbildklasse')
- "⦉": # 0x2989 (en: 'z notation left binding bracket', MathPlayer: 'z notation left binding bracket', google: 'z notation links bindungshalterung')
- "⦊": # 0x298a (en: 'z notation right binding bracket', MathPlayer: 'z notation right binding bracket', google: 'z notation recht bindungshalterung')
- "⦋": # 0x298b (en: 'left square bracket with underbar', MathPlayer: 'left bracket with underbar', google: 'linksquadratische klammer mit unterbar')
- "⦌": # 0x298c (en: 'right square bracket with underbar', MathPlayer: 'right bracket with underbar', google: 'rechte quadratische halterung mit unterbar')
- "⦍": # 0x298d (en: 'left square bracket with tick in top corner', MathPlayer: 'left bracket with tick in top corner', google: 'linksquadratische halterung mit zecke in der oberen ecke')
- "⦎": # 0x298e (en: 'right square bracket with tick in bottom corner', MathPlayer: 'right bracket with tick in bottom corner', google: 'rechte quadratische halterung mit tick in der unteren ecke')
- "⦏": # 0x298f (en: 'left square bracket with tick in bottom corner', MathPlayer: 'left bracket with tick in bottom corner', google: 'links quadratische halterung mit tick in der unteren ecke')
- "⦐": # 0x2990 (en: 'right square bracket with tick in top corner', MathPlayer: 'right bracket with tick in top corner', google: 'rechte quadratische halterung mit zecke in der oberen ecke')
- "⦑": # 0x2991 (en: 'left angle bracket with dot', MathPlayer: 'left angle bracket with dot', google: 'linkswinkelhalter mit punkt')
- "⦒": # 0x2992 (en: 'right angle bracket with dot', MathPlayer: 'right angle bracket with dot', google: 'rechtswinkelhalterung mit punkt')
- "⦓": # 0x2993 (en: 'left arc less than bracket', MathPlayer: 'left arc less than bracket', google: 'links bogen weniger als klammer')
- "⦔": # 0x2994 (en: 'right arc greater than bracket', MathPlayer: 'right arc greater than bracket', google: 'richtiger bogen größer als die klammer')
- "⦕": # 0x2995 (en: 'double left arc greater than bracket', MathPlayer: 'double left arc greater than bracket', google: 'doppelter linker bogen größer als die klammer')
- "⦖": # 0x2996 (en: 'double right arc less than bracket', MathPlayer: 'double right arc less than bracket', google: 'doppeler rechts bogen weniger als klammer')
- "⦗": # 0x2997 (en: 'left black tortoise shell bracket', google: 'links black tortoise muschelhalterung')
- "⦘": # 0x2998 (en: 'right black tortoise shell bracket', google: 'rechte schwarze schildkröte')
- "⦙": # 0x2999 (en: 'dotted fence', google: 'gepunkteter zaun')
- "⦚": # 0x299a (en: 'vertical zigzag line', MathPlayer: 'vertical zigzag line', google: 'vertikale zick -zack -linie')
- "⦛": # 0x299b (en: 'measured angle opening left', google: 'gemessene winkelöffnung links')
- "⦜": # 0x299c (en: 'right angle variant with square', google: 'rechtswinkelvariante mit quadrat')
- "⦝": # 0x299d (en: 'measured right angle with dot', MathPlayer: 'measured right angle with dot', google: 'gemessener rechter winkel mit punkt')
- "⦞": # 0x299e (en: 'angle with s inside', google: 'winkel mit s im inneren')
- "⦟": # 0x299f (en: 'acute angle', google: 'spitzer winkel')
- "⦠": # 0x29a0 (en: 'spherical angle opening left', google: 'kugelwinkelöffnung nach links')
- "⦡": # 0x29a1 (en: 'spherical angle opening up', google: 'kugelwinkel öffnen sich')
- "⦢": # 0x29a2 (en: 'turned angle', google: 'drehwinkel')
- "⦣": # 0x29a3 (en: 'reversed angle', google: 'umgekehrter winkel')
- "⦤": # 0x29a4 (en: 'angle with underbar', MathPlayer: 'angle with underbar', google: 'winkel mit unterbar')
- "⦥": # 0x29a5 (en: 'reversed angle with underbar', MathPlayer: 'reversed angle with underbar', google: 'umgekehrter winkel mit unterbar')
- "⦦": # 0x29a6 (en: 'oblique angle opening up', MathPlayer: 'oblique angle opening up', google: 'schräge winkelöffnung')
- "⦧": # 0x29a7 (en: 'oblique angle opening down', MathPlayer: 'oblique angle opening down', google: 'schräge winkel öffnet sich')
- "⦨": # 0x29a8 (en: 'measured angle with open arm ending in arrow pointing up and to the right', MathPlayer: 'measured angle with open arm ending in arrow pointing up and to the right', google: 'der gemessene winkel mit offenem arm in pfeil und nach rechts')
- "⦩": # 0x29a9 (en: 'measured angle with open arm ending in arrow pointing up and to the left', MathPlayer: 'measured angle with open arm ending in arrow pointing up and to the left', google: 'der gemessene winkel mit offenem arm in pfeil und nach links')
- "⦪": # 0x29aa (en: 'measured angle with open arm ending in arrow pointing down and to the right', MathPlayer: 'measured angle with open arm ending in arrow pointing down and to the right', google: 'der gemessene winkel mit offenem arm in pfeil nach unten und nach rechts')
- "⦫": # 0x29ab (en: 'measured angle with open arm ending in arrow pointing down and to the left', MathPlayer: 'measured angle with open arm ending in arrow pointing down and to the left', google: 'der gemessene winkel mit offenem arm in pfeil, der nach unten und nach links zeigt')
- "⦬": # 0x29ac (en: 'measured angle with open arm ending in arrow pointing right and up', MathPlayer: 'measured angle with open arm ending in arrow pointing right and up', google: 'der gemessene winkel mit offenem arm in pfeil nach rechts und nach oben zeigt')
- "⦭": # 0x29ad (en: 'measured angle with open arm ending in arrow pointing left and up', MathPlayer: 'measured angle with open arm ending in arrow pointing left and up', google: 'der gemessene winkel mit offenem arm in pfeil nach links und nach oben zeigt')
- "⦮": # 0x29ae (en: 'measured angle with open arm ending in arrow pointing right and down', MathPlayer: 'measured angle with open arm ending in arrow pointing right and down', google: 'der gemessene winkel mit offenem arm in pfeil nach rechts und unten zeigt')
- "⦯": # 0x29af (en: 'measured angle with open arm ending in arrow pointing left and down', MathPlayer: 'measured angle with open arm ending in arrow pointing left and down', google: 'der gemessene winkel mit offenem arm in pfeil nach links und unten zeigt')
- "⦰": # 0x29b0 (en: 'reversed empty set', MathPlayer: 'reversed empty set', google: 'umgekehrter leerer satz')
- "⦱": # 0x29b1 (en: 'empty set with overbar', MathPlayer: 'empty set with overbar', google: 'leeres set mit überbar')
- "⦲": # 0x29b2 (en: 'empty set with small circle above', MathPlayer: 'empty set with circle above', google: 'leeres set mit kleinem kreis oben')
- "⦳": # 0x29b3 (en: 'empty set with right arrow above', MathPlayer: 'empty set with right arrow above', google: 'leer mit dem rechten pfeil oben')
- "⦴": # 0x29b4 (en: 'empty set with left arrow above', MathPlayer: 'empty set with left arrow above', google: 'leeres set mit dem linken pfeil oben')
- "⦵": # 0x29b5 (en: 'circle with horizontal bar', MathPlayer: 'circle with horizontal bar', google: 'kreis mit horizontaler balken')
- "⦶": # 0x29b6
- "⦷": # 0x29b7 (en: 'circled parallel', MathPlayer: 'circled parallel', google: 'parallel eingekreist')
- "⦸": # 0x29b8 (en: 'circled reverse solidus', google: 'umgekreist reverse solidus')
- "⦹": # 0x29b9 (en: 'circled perpendicular', MathPlayer: 'circled perpendicular', google: 'senkrecht umkreist')
- "⦺": # 0x29ba (en: 'circled divided by horizontal bar and top half divided by vertical bar', google: 'durch den horizontalen balken und die obere hälfte geteilt durch vertikale balken eingekreist')
- "⦻": # 0x29bb (en: 'circle with superimposed x', MathPlayer: 'circle with superimposed x', google: 'kreis mit überlagertem x')
- "⦼": # 0x29bc (en: 'circled anticlockwise rotated division sign', MathPlayer: 'circled anticlockwise rotated division', google: 'umgedrehtes divisionszeichen gegen den uhrzeigersinn')
- "⦽": # 0x29bd (en: 'up arrow through circle', google: 'pfeil durch den kreis')
- "⦾": # 0x29be (en: 'circled white bullet', MathPlayer: 'circled white bullet', google: 'eingekreiste weiße kugel')
- "⦿": # 0x29bf (en: 'circled bullet', MathPlayer: 'circled bullet', google: 'eingekreist')
- "⧀": # 0x29c0 (en: 'circled less than', MathPlayer: 'circled less than', google: 'kreiste weniger als')
- "⧁": # 0x29c1 (en: 'circled greater than', MathPlayer: 'circled greater than', google: 'umgekreist größer als')
- "⧂": # 0x29c2 (en: 'circle with small circle to the right', MathPlayer: 'circle with circle to the right', google: 'kreis mit kleinem kreis nach rechts')
- "⧃": # 0x29c3 (en: 'circle with two horizontal strokes to the right', MathPlayer: 'circle with two horizontal strokes to the right', google: 'kreisen sie mit zwei horizontalen strichen rechts')
- "⧄": # 0x29c4 (en: 'squared rising diagonal slash', MathPlayer: 'squared rising diagonal slash', google: 'quadratischer steigender diagonaler schrägstrich')
- "⧅": # 0x29c5 (en: 'squared falling diagonal slash', MathPlayer: 'squared falling diagonal slash', google: 'quadratische fallende diagonale schrägstriche')
- "⧆": # 0x29c6 (en: 'squared asterisk', google: 'quadratischer sternchen')
- "⧇": # 0x29c7 (en: 'squared small circle', google: 'quadratischer kleiner kreis')
- "⧈": # 0x29c8 (en: 'squared square', google: 'quadratisch quadratisch')
- "⧉": # 0x29c9 (en: 'two joined squares', MathPlayer: 'two joined squares', google: 'zwei traten quadrate an')
- "⧊": # 0x29ca (en: 'triangle with dot above', google: 'dreieck mit punkt oben')
- "⧋": # 0x29cb (en: 'triangle with underbar', google: 'dreieck mit underbar')
- "⧌": # 0x29cc (en: 's in triangle', google: 's im dreieck')
- "⧍": # 0x29cd (en: 'triangle with serifs at bottom', MathPlayer: 'triangle with serifs at bottom', google: 'dreieck mit serifen unten')
- "⧎": # 0x29ce (en: 'right triangle above left triangle', MathPlayer: 'right triangle above left triangle', google: 'rechts dreieck über dem linken dreieck')
- "⧏": # 0x29cf (en: 'left triangle beside vertical bar', MathPlayer: 'normal subgroup of with bar', google: 'links dreieck neben vertikaler balken')
- "⧐": # 0x29d0 (en: 'vertical bar beside right triangle', MathPlayer: 'contains as normal subgroup with bar', google: 'vertikale bar neben dem rechten dreieck')
- "⧑": # 0x29d1 (en: 'bowtie with left half black', google: 'bowtie mit linksem halb schwarz')
- "⧒": # 0x29d2 (en: 'bowtie with right half black', google: 'bowtie mit rechts halb schwarz')
- "⧓": # 0x29d3 (en: 'black bowtie', google: 'schwarzer bowtie')
- "⧔": # 0x29d4 (en: 'times with left half black', google: 'mal mit links halb schwarz')
- "⧕": # 0x29d5 (en: 'times with right half black', google: 'mal mit dem rechten halb schwarz')
- "⧖": # 0x29d6 (en: 'white hourglass', google: 'weiße sanduhr')
- "⧗": # 0x29d7 (en: 'black hourglass', google: 'schwarze sanduhr')
- "⧘": # 0x29d8 (en: 'left wiggly fence', google: 'links wackeliger zaun')
- "⧙": # 0x29d9 (en: 'right wiggly fence', google: 'rechts wackeliges zaun')
- "⧚": # 0x29da (en: 'left double wiggly fence', MathPlayer: 'left double wiggly fence', google: 'links doppelter wackeliger zaun')
- "⧛": # 0x29db (en: 'right double wiggly fence', MathPlayer: 'right double wiggly fence', google: 'rechts doppelter wackeliger zaun')
- "⧜": # 0x29dc (en: 'incomplete infinity', MathPlayer: 'incomplete infinity', google: 'unvollständige unendlichkeit')
- "⧝": # 0x29dd (en: 'tie over infinity', google: 'unendlich binden')
- "⧞": # 0x29de (en: 'infinity negated with vertical bar', MathPlayer: 'infinity negated with vertical bar', google: 'unendlich negiert mit vertikaler balken')
- "⧟": # 0x29df (en: 'double-ended multimap', google: 'doppel-multimap')
- "⧠": # 0x29e0 (en: 'square with contoured outline', google: 'quadrat mit konturierten umriss')
- "⧡": # 0x29e1 (en: 'increases as', google: 'erhöht sich als')
- "⧢": # 0x29e2 (en: 'shuffle product', google: 'shuffle -produkt')
- "⧣": # 0x29e3 (en: 'equals sign and slanted parallel', MathPlayer: 'equals sign and slanted parallel', google: 'gleicher zeichen und schräg parallel')
- "⧤": # 0x29e4 (en: 'equals sign and slanted parallel with tilde above', MathPlayer: 'equals sign and slanted parallel with tilde above', google: 'gleicher zeichen und schräg parallel zu tilde oben')
- "⧥": # 0x29e5 (en: 'identical to and slanted parallel', MathPlayer: 'identical to with double slash', google: 'identisch mit und schräg parallel')
- "⧦": # 0x29e6 (en: 'gleich stark', google: 'gleich stark')
- "⧧": # 0x29e7 (en: 'thermodynamic', google: 'thermodynamisch')
- "⧨": # 0x29e8 (en: 'down pointing triangle with left half black', google: 'down dreieck mit linksem halb schwarz')
- "⧩": # 0x29e9 (en: 'down pointing triangle with right half black', google: 'down dreieck mit dem rechten halben schwarz')
- "⧪": # 0x29ea (en: 'black diamond with down arrow', google: 'schwarzer diamant mit pfeil')
- "⧫": # 0x29eb (en: 'black lozenge', MathPlayer: 'filled lozenge', google: 'schwarze raute')
- "⧬": # 0x29ec (en: 'white circle with down arrow', google: 'weißer kreis mit pfeil')
- "⧭": # 0x29ed (en: 'black circle with down arrow', google: 'schwarzer kreis mit pfeil')
- "⧮": # 0x29ee (en: 'error-barred white square', google: 'irrtum mit dem irrtümlichen weißen quadrat')
- "⧯": # 0x29ef (en: 'error-barred black square', google: 'fehler mit dem schwarzen quadrat')
- "⧰": # 0x29f0 (en: 'error-barred white diamond', google: 'fehler mit dem fehler mit weißem diamanten')
- "⧱": # 0x29f1 (en: 'error-barred black diamond', google: 'fehlerfreier schwarzer diamant')
- "⧲": # 0x29f2 (en: 'error-barred white circle', google: 'fehlerer weißer weißer kreis')
- "⧳": # 0x29f3 (en: 'error-barred black circle', google: 'fehlerer schwarzer kreis')
- "⧴": # 0x29f4 (en: 'rule-delayed')
- "⧵": # 0x29f5 (en: 'reverse solidus operator', google: 'umgekehrter solidus -operator')
- "⧶": # 0x29f6 (en: 'solidus with overbar', MathPlayer: 'solidus with overbar', google: 'solidus mit overbar')
- "⧷": # 0x29f7 (en: 'reverse solidus with horizontal stroke', google: 'mit horizontalem schlaganfall solidus umkehren')
- "⧸": # 0x29f8 (en: 'big solidus', google: 'big solidus')
- "⧹": # 0x29f9 (en: 'big reverse solidus', google: 'big reverse solidus')
- "⧺": # 0x29fa (en: 'double plus', google: 'doppelte plus')
- "⧻": # 0x29fb (en: 'triple plus', google: 'triple plus')
- "⧼": # 0x29fc (en: 'left pointing curved angle bracket', google: 'links gezeigt, gekrümmte winkelhalterung')
- "⧽": # 0x29fd (en: 'right pointing curved angle bracket', google: 'rechte spitze gekrümmte winkelhalterung')
- "⧾": # 0x29fe (en: 'tiny', google: 'winzig')
- "⧿": # 0x29ff (en: 'miny', google: 'miny')
- "⨀": # 0x2a00 (en: 'circled dot operator', google: 'eingekreister punktbetreiber')
- "⨁": # 0x2a01 (en: 'circled plus operator', google: 'kreis plus operator')
- "⨂": # 0x2a02 (en: 'circled times operator', google: 'eingekreistes times operator')
- "⨃": # 0x2a03 (en: 'union operator with dot', google: 'gewerkschaftsbetreiber mit punkt')
- "⨄": # 0x2a04 (en: 'union operator with plus', google: 'gewerkschaftsbetreiber mit plus')
- "⨅": # 0x2a05 (en: 'square intersection operator', google: 'square intersection operator')
- "⨆": # 0x2a06 (en: 'square union operator', google: 'square union operator')
- "⨇": # 0x2a07 (en: 'two logical and operator', google: 'zwei logische und operator')
- "⨈": # 0x2a08 (en: 'two logical or operator', google: 'zwei logische oder operator')
- "⨉": # 0x2a09 (en: 'times operator', google: 'times operator')
- "⨊": # 0x2a0a (en: 'modulo two sum', google: 'modulo zwei summe')
- "⨋": # 0x2a0b (en: 'summation with integral', google: 'summierung mit integral')
- "⨌": # 0x2a0c (SRE: 'Vierfach-Integral-Operator')
- "⨍": # 0x2a0d (en: 'finite part integral', MathPlayer: 'finite part integral', google: 'finite -teil -integral')
- "⨎": # 0x2a0e (en: 'integral with double stroke', google: 'integral mit doppelter hub')
- "⨏": # 0x2a0f (en: 'integral average with slash', google: 'integraler durchschnitt mit schrägstrich')
- "⨐": # 0x2a10 (en: 'circulation function', MathPlayer: 'circulation function', google: 'zirkulationsfunktion')
- "⨑": # 0x2a11 (en: 'anticlockwise integration', MathPlayer: 'anticlockwise integration', google: 'integration gegen den uhrzeigersinn')
- "⨒": # 0x2a12 (en: 'line integration with rectangular path around pole', MathPlayer: 'line integration with rectangular path around pole', google: 'linienintegration mit einem rechteckigen pfad um pol')
- "⨓": # 0x2a13 (en: 'line integration with semicircular path around pole', MathPlayer: 'line integration with semicircular path around pole', google: 'linienintegration mit halbkreisförmigem pfad um pol')
- "⨔": # 0x2a14 (en: 'line integration not including the pole', MathPlayer: 'line integration not including the pole', google: 'linienintegration ohne stange')
- "⨕": # 0x2a15 (en: 'integral around a point operator', MathPlayer: 'integral around a point operator', google: 'integral um einen punktbetreiber')
- "⨖": # 0x2a16 (SRE: 'Quaternion Integral Operator')
- "⨗": # 0x2a17 (en: 'integral with leftwards arrow with hook', MathPlayer: 'integral with leftwards arrow with hook', google: 'integraler mit linksem pfeil mit haken')
- "⨘": # 0x2a18 (en: 'integral with times sign', google: 'integral mit times sign')
- "⨙": # 0x2a19 (en: 'integral with intersection', google: 'integral mit der kreuzung')
- "⨚": # 0x2a1a (en: 'integral with union', google: 'integral mit union')
- "⨛": # 0x2a1b (en: 'integral with overbar', google: 'integral mit overbar')
- "⨜": # 0x2a1c (en: 'integral with underbar', google: 'integral mit underbar')
- "⨝": # 0x2a1d (en: 'join', google: 'verbinden')
- "⨞": # 0x2a1e (en: 'large left triangle operator', google: 'großer linker dreieck operator')
- "⨟": # 0x2a1f (en: 'z notation schema composition', google: 'z notationschema -zusammensetzung')
- "⨠": # 0x2a20 (en: 'z notation schema piping', google: 'z notationschema -rohrleitungen')
- "⨡": # 0x2a21 (en: 'z notation schema projection', google: 'z notationschemaprojektion')
- "⨢": # 0x2a22 (en: 'plus sign with circle above', MathPlayer: 'plus sign with circle above', google: 'plus zeichen mit kreis oben')
- "⨣": # 0x2a23 (en: 'plus sign with circumflex accent above', MathPlayer: 'plus sign with circumflex accent above', google: 'plus -zeichen mit dem obigen zirkelakzent')
- "⨤": # 0x2a24 (en: 'plus sign with tilde above', MathPlayer: 'tilde with plus below', google: 'plus zeichen mit tilde oben')
- "⨥": # 0x2a25 (en: 'plus sign with dot below', MathPlayer: 'plus sign with dot below', google: 'plus zeichen mit punkt unten')
- "⨦": # 0x2a26 (en: 'plus sign with tilde below', MathPlayer: 'tilde with plus above', google: 'plus zeichen mit tilde unten')
- "⨧": # 0x2a27 (en: 'plus sign with subscript two', MathPlayer: 'plus sign with subscript two', google: 'plus sign sign mit dem index two')
- "⨨": # 0x2a28 (en: 'plus sign with black triangle', google: 'plus zeichen mit schwarzem dreieck')
- "⨩": # 0x2a29 (en: 'minus sign with comma above', MathPlayer: 'minus sign with comma above', google: 'minus zeichen mit komma oben')
- "⨪": # 0x2a2a (en: 'minus sign with dot below', MathPlayer: 'minus sign with dot below', google: 'minus zeichen mit punkt unten')
- "⨫": # 0x2a2b (en: 'minus sign with falling dots', google: 'minus zeichen mit fallenden punkten')
- "⨬": # 0x2a2c (en: 'minus sign with rising dots', google: 'minus zeichen mit steigenden punkten')
- "⨭": # 0x2a2d (en: 'plus sign in left half circle', MathPlayer: 'plus sign in left half circle', google: 'plus melden sie sich im linken halbkreis an')
- "⨮": # 0x2a2e (en: 'plus sign in right half circle', MathPlayer: 'plus sign in right half circle', google: 'plus im rechten halbkreis anzeigen')
- "⨯": # 0x2a2f (en: 'cross product', MathPlayer: 'vector or cross product', google: 'kreuzprodukt')
- "⨰": # 0x2a30 (en: 'multiplication sign with dot above', MathPlayer: 'multiplication sign with dot above', google: 'multiplikationszeichen mit punkt oben')
- "⨱": # 0x2a31 (en: 'multiplication sign with underbar', MathPlayer: 'multiplication sign with underbar', google: 'multiplikationszeichen mit underbar')
- "⨲": # 0x2a32 (en: 'semidirect product with bottom closed', google: 'semidirect -produkt mit unten geschlossen')
- "⨳": # 0x2a33
- "⨴": # 0x2a34 (en: 'multiplication sign in left half circle', MathPlayer: 'multiplication sign in left half circle', google: 'multiplikationszeichen im linken halbkreis')
- "⨵": # 0x2a35 (en: 'multiplication sign in right half circle', MathPlayer: 'multiplication sign in right half circle', google: 'multiplikationszeichen im rechten halbkreis')
- "⨶": # 0x2a36 (en: 'circled multiplication sign with circumflex accent', MathPlayer: 'circled multiplication sign with circumflex accent', google: 'umkreistes multiplikationszeichen mit circumflex -akzent')
- "⨷": # 0x2a37 (en: 'multiplication sign in double circle', MathPlayer: 'multiplication sign in double circle', google: 'multiplikationszeichen im doppelkreis')
- "⨸": # 0x2a38
- "⨹": # 0x2a39 (en: 'plus sign in triangle', MathPlayer: 'plus sign in triangle', google: 'plus melden sie sich im dreieck an')
- "⨺": # 0x2a3a (en: 'minus sign in triangle', MathPlayer: 'minus sign in triangle', google: 'minus zeichen im dreieck')
- "⨻": # 0x2a3b (en: 'multiplication sign in triangle', MathPlayer: 'multiplication sign in triangle', google: 'multiplikationszeichen im dreieck')
- "⨼": # 0x2a3c (en: 'interior product', MathPlayer: 'interior product', google: 'innenprodukt')
- "⨽": # 0x2a3d (en: 'righthand interior product', google: 'righthand innenprodukt')
- "⨿": # 0x2a3f (en: 'amalgamation or coproduct', MathPlayer: 'amalgamation or coproduct', google: 'verschmelzung oder koprodukt')
- "⩀": # 0x2a40 (en: 'intersection with dot', MathPlayer: 'intersection with dot', google: 'kreuzung mit punkt')
- "⩁": # 0x2a41 (en: 'union with minus sign', google: 'gewerkschaft mit minus zeichen')
- "⩂": # 0x2a42 (en: 'union with overbar', MathPlayer: 'union with overbar', google: 'gewerkschaft mit overbar')
- "⩃": # 0x2a43 (en: 'intersection with overbar', MathPlayer: 'intersection with overbar', google: 'kreuzung mit überbär')
- "⩄": # 0x2a44 (en: 'intersection with logical and', MathPlayer: 'intersection with logical and', google: 'schnittpunkt mit logisch und')
- "⩅": # 0x2a45 (en: 'union with logical or', MathPlayer: 'union with logical or', google: 'vereinigung mit logisch oder')
- "⩆": # 0x2a46 (en: 'union above intersection', MathPlayer: 'union above intersection', google: 'union über der kreuzung')
- "⩇": # 0x2a47 (en: 'intersection above union', MathPlayer: 'intersection above union', google: 'kreuzung über union')
- "⩈": # 0x2a48 (en: 'union above bar above intersection', MathPlayer: 'union above bar above intersection', google: 'gewerkschaft über der bar über der kreuzung')
- "⩉": # 0x2a49 (en: 'intersection above bar above union', MathPlayer: 'intersection above bar above union', google: 'kreuzung über bar über union')
- "⩊": # 0x2a4a (en: 'union beside and joined with union', MathPlayer: 'union beside and joined with union', google: 'gewerkschaft neben der union')
- "⩋": # 0x2a4b (en: 'intersection beside and joined with intersection', MathPlayer: 'intersection beside and joined with intersection', google: 'kreuzung neben und zusammen mit der kreuzung')
- "⩌": # 0x2a4c (en: 'closed union with serifs', MathPlayer: 'closed union with serifs', google: 'geschlossene vereinigung mit serifen')
- "⩍": # 0x2a4d (en: 'closed intersection with serifs', MathPlayer: 'closed intersection with serifs', google: 'geschlossener kreuzung mit serifen')
- "⩎": # 0x2a4e (en: 'double square intersection', google: 'doppelquadratische kreuzung')
- "⩏": # 0x2a4f (en: 'double square union', google: 'doppelquadratische gewerkschaft')
- "⩐": # 0x2a50 (en: 'closed union with serifs and smash product', MathPlayer: 'closed union with serifs and smash product', google: 'geschlossene vereinigung mit serifen und smash -produkt')
- "⩑": # 0x2a51 (en: 'logical and with dot above', google: 'logisch und mit punkt oben')
- "⩒": # 0x2a52 (en: 'logical or with dot above', google: 'logisch oder mit punkt oben')
- "⩓": # 0x2a53
- "⩔": # 0x2a54
- "⩕": # 0x2a55 (en: 'two intersecting logical and', MathPlayer: 'two intersecting logical and', google: 'zwei kreuzende logische und')
- "⩖": # 0x2a56 (en: 'two intersecting logical or', MathPlayer: 'two intersecting logical or', google: 'zwei kreuzende logische oder')
- "⩗": # 0x2a57 (en: 'sloping large or', MathPlayer: 'sloping large or', google: 'groß oder')
- "⩘": # 0x2a58 (en: 'sloping large and', MathPlayer: 'sloping large and', google: 'groß und')
- "⩙": # 0x2a59 (en: 'logical or overlapping logical and', google: 'logisch oder überlappend logisch und')
- "⩚": # 0x2a5a (en: 'logical and with middle stem', MathPlayer: 'logical and with middle stem', google: 'logisch und mit mittlerem stiel')
- "⩛": # 0x2a5b (en: 'logical or with middle stem', MathPlayer: 'logical or with middle stem', google: 'logisch oder mit mittlerem stiel')
- "⩜": # 0x2a5c (en: 'logical and with horizontal dash', MathPlayer: 'logical and with horizontal dash', google: 'logisch und mit horizontalem armaturenbrett')
- "⩝": # 0x2a5d (en: 'logical or with horizontal dash', MathPlayer: 'logical or with horizontal dash', google: 'logisch oder mit horizontalem strich')
- "⩞": # 0x2a5e (en: 'logical and with double overbar', google: 'logisch und mit doppelter überbärung')
- "⩟": # 0x2a5f (en: 'logical and with underbar', MathPlayer: 'logical and with underbar', google: 'logisch und mit unterbar')
- "⩠": # 0x2a60 (en: 'logical and with double underbar', google: 'logisch und mit doppelter unterbarung')
- "⩡": # 0x2a61 (en: 'small vee with underbar', google: 'kleiner vee mit unterbar')
- "⩢": # 0x2a62 (en: 'logical or with double overbar', google: 'logisch oder mit doppelter überbärung')
- "⩣": # 0x2a63 (en: 'logical or with double underbar', google: 'logisch oder mit doppelter unterbarung')
- "⩤": # 0x2a64 (en: 'z notation domain antirestriction', google: 'z notation domain antirestriktion')
- "⩥": # 0x2a65 (en: 'z notation range antirestriction', google: 'z notation range antirestriktion')
- "⩦": # 0x2a66 (en: 'equals sign with dot below', MathPlayer: 'equal with dot below', google: 'gleiches zeichen mit punkt unten')
- "⩧": # 0x2a67 (en: 'identical with dot above', google: 'identisch mit punkt oben')
- "⩨": # 0x2a68 (en: 'triple horizontal bar with double vertical stroke', google: 'dreifache horizontale balken mit doppelter vertikaler hub')
- "⩩": # 0x2a69 (en: 'triple horizontal bar with triple vertical stroke', google: 'dreifache horizontale stange mit dreifachem vertikalem schlaganfall')
- "⩪": # 0x2a6a (en: 'tilde operator with dot above', MathPlayer: 'tilde with dot', google: 'tilde -operator mit punkt oben')
- "⩫": # 0x2a6b (en: 'tilde operator with rising dots', google: 'tilde -operator mit steigenden punkten')
- "⩬": # 0x2a6c (en: 'similar minus similar', google: 'ähnlich minus ähnlich')
- "⩭": # 0x2a6d (en: 'congruent with dot above', MathPlayer: 'congruent with dot above', google: 'kongruent mit punkten oben')
- "⩮": # 0x2a6e (en: 'equals with asterisk', google: 'entspricht mit sternchen')
- "⩯": # 0x2a6f (en: 'almost equal to with circumflex accent', MathPlayer: 'almost equal to with circumflex accent', google: 'fast gleich mit dem zirkumflexakzent')
- "⩰": # 0x2a70 (en: 'approximately equal to or equal to', google: 'ungefähr gleich oder gleich')
- "⩱": # 0x2a71 (en: 'equals sign above plus sign', MathPlayer: 'equals with plus below', google: 'gleiches zeichen oben plus zeichen')
- "⩲": # 0x2a72 (en: 'plus sign above equals sign', MathPlayer: 'equals with plus above', google: 'plus -zeichen oben gleiches zeichen')
- "⩳": # 0x2a73 (en: 'equals sign above tilde operator', MathPlayer: 'equals sign above tilde operator', google: 'gleicher vorzeichen über dem tilde -operator')
- "⩴": # 0x2a74 (en: 'double colon equal', MathPlayer: 'double colon equal', google: 'doppelter dickdarm gleich')
- "⩵": # 0x2a75 (en: 'two consecutive equals signs')
- "⩶": # 0x2a76 (en: 'three consecutive equals signs', google: 'drei aufeinanderfolgende anzeichen')
- "⩷": # 0x2a77 (en: 'equals sign with two dots above and two dots below', MathPlayer: 'equals sign with two dots above and two dots below', google: 'gleiches zeichen mit zwei punkten oben und zwei punkten unten')
- "⩸": # 0x2a78 (en: 'equivalent with four dots above', MathPlayer: 'equivalent with four dots above', google: 'äquivalent mit vier punkten oben')
- "⩹": # 0x2a79 (en: 'less than with circle inside', MathPlayer: 'less than with circle inside', google: 'weniger als mit kreis im inneren')
- "⩺": # 0x2a7a (en: 'greater than with circle inside', MathPlayer: 'greater than with circle inside', google: 'größer als mit kreis im inneren')
- "⩻": # 0x2a7b (en: 'less than with question mark above', MathPlayer: 'less than with question mark above', google: 'weniger als mit fragezeichen oben')
- "⩼": # 0x2a7c (en: 'greater than with question mark above', MathPlayer: 'greater than with question mark above', google: 'größer als mit dem obigen fragezeichen')
- "⩽": # 0x2a7d (en: 'less than or slanted equal to', MathPlayer: 'less than or slanted equal to', google: 'weniger als oder schräg gleich')
- "⩾": # 0x2a7e (en: 'greater than or slanted equal to', MathPlayer: 'greater than or slanted equal', google: 'größer als oder schräg gleich')
- "⩿": # 0x2a7f (en: 'less than or slanted equal to with dot inside', MathPlayer: 'less than or slanted equal to with dot inside', google: 'weniger als oder schräg gleich mit punkt im inneren')
- "⪀": # 0x2a80 (en: 'greater than or slanted equal to with dot inside', MathPlayer: 'greater than or slanted equal to with dot inside', google: 'größer als oder schräg gleich mit punkt im inneren')
- "⪁": # 0x2a81 (en: 'less than or slanted equal to with dot above', MathPlayer: 'less than or slanted equal to with dot above', google: 'weniger als oder schräg gleich mit punkt oben')
- "⪂": # 0x2a82 (en: 'greater than or slanted equal to with dot above', MathPlayer: 'greater than or slanted equal to with dot above', google: 'größer als oder schräg gleich mit punkt oben')
- "⪃": # 0x2a83 (en: 'less than or slanted equal to with dot above right', MathPlayer: 'less than or slanted equal to with dot above right', google: 'weniger oder schräg gleich mit dem punkt oben rechts')
- "⪄": # 0x2a84 (en: 'greater than or slanted equal to with dot above left', MathPlayer: 'greater than or slanted equal to with dot above left', google: 'größer als oder schräg gleich mit punkt oben links')
- "⪅": # 0x2a85 (en: 'less than or approximate', google: 'weniger als oder ungefähr')
- "⪆": # 0x2a86 (en: 'greater than or approximate', google: 'größer als oder ungefähr')
- "⪇": # 0x2a87 (en: 'less than and single line not equal to', google: 'weniger als und eine einzelne linie nicht gleich')
- "⪈": # 0x2a88 (en: 'greater than and single line not equal to', google: 'größer als und eine einzelne linie nicht gleich')
- "⪉": # 0x2a89 (en: 'less than and not approximate', MathPlayer: 'less than but not approximately equal to', google: 'weniger als und nicht ungefähr')
- "⪊": # 0x2a8a (en: 'greater than and not approximate', MathPlayer: 'greater than but not approximately equal to', google: 'größer als und nicht ungefähr')
- "⪋": # 0x2a8b (en: 'less than above double line equal above greater than', google: 'weniger als über der doppelten linie gleich über größer als höher als')
- "⪌": # 0x2a8c (en: 'greater than above double line equal above less than', google: 'größer als über der doppelten linie, die über weniger als über weniger als übertroffen werden')
- "⪍": # 0x2a8d (en: 'less than above similar or equal', MathPlayer: 'less than above similar or equal', google: 'weniger als über ähnlich oder gleich')
- "⪎": # 0x2a8e (en: 'greater than above similar or equal', MathPlayer: 'greater than above similar or equal', google: 'größer als über ähnlich oder gleich')
- "⪏": # 0x2a8f (en: 'less than above similar above greater than', MathPlayer: 'less than above similar above greater than', google: 'weniger als über ähnlich oben höher als größer als')
- "⪐": # 0x2a90 (en: 'greater than above similar above less than', MathPlayer: 'greater than above similar above less than', google: 'größer als über ähnlich über ähnlichem')
- "⪑": # 0x2a91 (en: 'less than above greater than above double line equal')
- "⪒": # 0x2a92 (en: 'greater than above less than above double line equal')
- "⪓": # 0x2a93 (en: 'less than above slanted equal above greater than above slanted equal', MathPlayer: 'less than above slanted equal above greater than above slanted equal', google: 'weniger als über dem überdurchschnittlich überdurchschnittlich überdurchschnittlich ist es gleich')
- "⪔": # 0x2a94 (en: 'greater than above slanted equal above less than above slanted equal', MathPlayer: 'greater than above slanted equal above less than above slanted equal', google: 'größer als über dem schrägen gleich über dem gleichen schrägen gleich')
- "⪕": # 0x2a95 (en: 'slanted equal to or less than', google: 'schräg gleich oder weniger als')
- "⪖": # 0x2a96 (en: 'slanted equal to or greater than', google: 'schräg gleich oder größer als')
- "⪗": # 0x2a97 (en: 'slanted equal to or less than with dot inside', MathPlayer: 'slanted equal to or less than with dot inside', google: 'schräg gleich oder weniger als mit punkt im inneren')
- "⪘": # 0x2a98 (en: 'slanted equal to or greater than with dot inside', MathPlayer: 'slanted equal to or greater than with dot inside', google: 'schräg gleich oder größer als mit punkt im inneren')
- "⪙": # 0x2a99 (en: 'double line equal to or less than', MathPlayer: 'equal (double) over less than', google: 'doppellinie gleich oder weniger als')
- "⪚": # 0x2a9a (en: 'double line equal to or greater than', MathPlayer: 'equal to or greater than', google: 'doppellinie gleich oder größer als')
- "⪛": # 0x2a9b (en: 'double line slanted equal to or less than', google: 'doppelzeile, die gleich oder weniger als weniger als')
- "⪜": # 0x2a9c (en: 'double line slanted equal to or greater than', google: 'doppelte linie schräg gleich oder größer als')
- "⪝": # 0x2a9d (en: 'similar or less than', MathPlayer: 'equivalent to or less than', google: 'ähnlich oder weniger als')
- "⪞": # 0x2a9e (en: 'similar or greater than', MathPlayer: 'similar or greater than', google: 'ähnlich oder größer als')
- "⪟": # 0x2a9f (en: 'similar above less than above equals sign', MathPlayer: 'similar above less than above equals sign', google: 'ähnlich oben weniger als über oben gleiches zeichen')
- "⪠": # 0x2aa0 (en: 'similar above greater than above equals sign', MathPlayer: 'similar above greater than above equals sign', google: 'ähnlich oben größer als über oben gleiches zeichen')
- "⪡": # 0x2aa1 (en: 'double nested less than', MathPlayer: 'nested less than', google: 'doppelt weniger verschachtelt als')
- "⪢": # 0x2aa2 (en: 'double nested greater than', MathPlayer: 'nested greater than', google: 'doppelt verschachtelt größer als')
- "⪣": # 0x2aa3 (en: 'double nested less than with underbar', google: 'doppelte verschachtel weniger als mit underbar')
- "⪤": # 0x2aa4 (en: 'greater than overlapping less than')
- "⪥": # 0x2aa5 (en: 'greater than beside less than', MathPlayer: 'greater than beside less than', google: 'größer als weniger als weniger als')
- "⪦": # 0x2aa6 (en: 'less than closed by curve', MathPlayer: 'less than closed by curve', google: 'weniger als durch kurve geschlossen')
- "⪧": # 0x2aa7 (en: 'greater than closed by curve', MathPlayer: 'greater than closed by curve', google: 'größer als durch kurve geschlossen')
- "⪨": # 0x2aa8 (en: 'less than closed by curve above slanted equal', MathPlayer: 'less than closed by curve above slanted equal', google: 'weniger als geschlossen durch kurve über schräg gleich')
- "⪩": # 0x2aa9 (en: 'greater than closed by curve above slanted equal', MathPlayer: 'greater than closed by curve above slanted equal', google: 'größer als durch kurve über schräg gleich geschlossen')
- "⪪": # 0x2aaa (en: 'smaller than', MathPlayer: 'smaller than')
- "⪫": # 0x2aab (en: 'larger than', MathPlayer: 'larger than', google: 'größer als')
- "⪬": # 0x2aac (en: 'smaller than or equal to', MathPlayer: 'smaller than or equal to')
- "⪭": # 0x2aad (en: 'larger than or equal to', MathPlayer: 'larger than or equal to', google: 'größer als oder gleich')
- "⪮": # 0x2aae (en: 'equals sign with bumpy above', MathPlayer: 'difference between (variant)', google: 'gleiches zeichen mit holprigem oben')
- "⪯": # 0x2aaf (en: 'precedes above single line equals sign', MathPlayer: 'precedes above single line equals sign', google: 'vorausgesetzt über ein einzelner zeile ist gleich ein zeichen')
- "⪰": # 0x2ab0 (en: 'succeeds above single line equals sign', google: 'nachfolger über eine einzelne zeile gleich zeichen')
- "⪱": # 0x2ab1 (en: 'precedes above single line not equal to', google: 'vor voraussichtlich nicht gleich einzelner linie gleich')
- "⪲": # 0x2ab2 (en: 'succeeds above single line not equal to', google: 'nachfolger über eine einzelne linie nicht gleich')
- "⪳": # 0x2ab3 (en: 'precedes above equals sign', google: 'vor dem gleichen vorzeichen voraus')
- "⪴": # 0x2ab4 (en: 'succeeds above equals sign', google: 'nachfolger über gleiches zeichen')
- "⪵": # 0x2ab5 (en: 'precedes above not equal to')
- "⪶": # 0x2ab6 (en: 'succeeds above not equal to')
- "⪷": # 0x2ab7 (en: 'precedes above almost equal to', google: 'vor voraussichtlich fast gleich gleich')
- "⪸": # 0x2ab8 (en: 'succeeds above almost equal to', google: 'erfolgreich ist über fast gleich')
- "⪹": # 0x2ab9 (en: 'precedes above not almost equal to', google: 'vorkommen oben nicht annähernd gleich')
- "⪺": # 0x2aba (en: 'succeeds above not almost equal to', google: 'es ist nicht annähernd gleich')
- "⪻": # 0x2abb (en: 'double precedes', MathPlayer: 'double precedes', google: 'double geht vor')
- "⪼": # 0x2abc (en: 'double succeeds', MathPlayer: 'double succeeds', google: 'doppelt erfolgreich')
- "⪽": # 0x2abd (en: 'subset with dot', MathPlayer: 'subset of with dot; is included in as sub relation', google: 'untergruppe mit punkt')
- "⪾": # 0x2abe (en: 'superset with dot', MathPlayer: 'superset of with dot; includes as sub relation', google: 'superset mit punkt')
- "⪿": # 0x2abf (en: 'subset with plus sign below', MathPlayer: 'subset with plus sign below', google: 'untergruppe mit pluszeichen unten')
- "⫀": # 0x2ac0 (en: 'superset with plus sign below', MathPlayer: 'superset with plus sign below', google: 'superset mit plus -zeichen unten')
- "⫁": # 0x2ac1 (en: 'subset with multiplication sign below', MathPlayer: 'subset with multiplication sign below', google: 'untergruppe mit multiplikationszeichen unten')
- "⫂": # 0x2ac2 (en: 'superset with multiplication sign below', MathPlayer: 'superset with multiplication sign below', google: 'superset mit multiplikationszeichen unten')
- "⫃": # 0x2ac3 (en: 'subset of or equal to with dot above', MathPlayer: 'subset of or equal to with dot above', google: 'teilmenge von oder gleich mit punkt oben')
- "⫄": # 0x2ac4 (en: 'superset of or equal to with dot above', MathPlayer: 'superset of or equal to with dot above', google: 'superset von oder gleich mit punkt oben')
- "⫅": # 0x2ac5 (en: 'subset of above equals sign', google: 'teilmenge von oben gleichen vorzeichen')
- "⫆": # 0x2ac6 (en: 'superset of above equals sign', google: 'superset von oben gleichen vorzeichen')
- "⫇": # 0x2ac7 (en: 'subset of above tilde operator')
- "⫈": # 0x2ac8 (en: 'superset of above tilde operator')
- "⫉": # 0x2ac9 (en: 'subset of above almost equal to', google: 'untergruppe von oben fast gleich')
- "⫊": # 0x2aca (en: 'superset of above almost equal to', google: 'superset von oben fast gleich')
- "⫋": # 0x2acb (en: 'subset above not equal to', google: 'untergruppe oben nicht gleich')
- "⫌": # 0x2acc (en: 'superset of above not equal to', google: 'superset von oben nicht gleich')
- "⫍": # 0x2acd (en: 'square left open box operator', google: 'quadratische linke offene box -bediener')
- "⫎": # 0x2ace (en: 'square right open box operator', google: 'square right open box operator')
- "⫏": # 0x2acf (en: 'closed subset', MathPlayer: 'closed subset', google: 'geschlossene untergruppe')
- "⫐": # 0x2ad0 (en: 'closed superset', MathPlayer: 'closed superset', google: 'geschlossener superset')
- "⫑": # 0x2ad1 (en: 'closed subset or equal to', MathPlayer: 'closed subset or equal to', google: 'geschlossene untergruppe oder gleich')
- "⫒": # 0x2ad2 (en: 'closed superset or equal to', MathPlayer: 'closed superset or equal to', google: 'geschlossene superset oder gleich')
- "⫓": # 0x2ad3 (en: 'subset above superset')
- "⫔": # 0x2ad4 (en: 'superset above subset')
- "⫕": # 0x2ad5 (en: 'subset above subset')
- "⫖": # 0x2ad6 (en: 'superset above superset')
- "⫗": # 0x2ad7 (en: 'superset beside subset', MathPlayer: 'superset beside subset', google: 'superset neben untergruppe')
- "⫘": # 0x2ad8 (en: 'superset beside and joined by dash with subset', MathPlayer: 'superset beside and joined by dash with subset', google: 'superset neben dem dash mit der untergruppe')
- "⫙": # 0x2ad9 (en: 'element of opening downwards', MathPlayer: 'element of opening downwards', google: 'element der abwärts öffnen')
- "⫚": # 0x2ada (en: 'pitchfork with tee top', MathPlayer: 'pitchfork with tee top', google: 'pitchfork mit t -shirt top')
- "⫛": # 0x2adb (en: 'transversal intersection', MathPlayer: 'transversal intersection', google: 'transversal -kreuzung')
- "⫝̸": # 0x2adc (en: 'forking', google: 'gabel')
- "⫝": # 0x2add (en: 'nonforking', google: 'nicht -forking')
- "⫞": # 0x2ade (en: 'short left tack', google: 'kurzer linker tack')
- "⫟": # 0x2adf (en: 'short down tack', google: 'kurzer tack')
- "⫠": # 0x2ae0 (en: 'short up tack', google: 'kurzer tack')
- "⫡": # 0x2ae1 (en: 'perpendicular with s', google: 'senkrecht mit s')
- "⫢": # 0x2ae2 (en: 'vertical bar triple right turnstile', google: 'vertikale bar dreifache rechte drehstil')
- "⫣": # 0x2ae3 (en: 'double vertical bar left turnstile', google: 'doppelte vertikale balken linke drehkreuze')
- "⫤": # 0x2ae4 (en: 'vertical bar double left turnstile')
- "⫥": # 0x2ae5 (en: 'double vertical bar double left turnstile', google: 'doppelte vertikale balken doppelte linke drehkreuze')
- "⫦": # 0x2ae6 (en: 'long dash from left member of double vertical', MathPlayer: 'long dash from left member of double vertical', google: 'langer dash vom linken mitglied des doppel vertikalen')
- "⫧": # 0x2ae7 (en: 'short down tack with overbar', MathPlayer: 'short down tack with overbar', google: 'kurzer tack mit overbar')
- "⫨": # 0x2ae8 (en: 'short up tack with underbar')
- "⫩": # 0x2ae9 (en: 'short up tack above short down tack', MathPlayer: 'short up tack above short down tack', google: 'kurzschluss über kurzer tack')
- "⫪": # 0x2aea (en: 'double down tack', google: 'double down tack')
- "⫫": # 0x2aeb (en: 'double up tack', MathPlayer: 'double up tack', google: 'doppelte tack')
- "⫬": # 0x2aec (en: 'double stroke not sign', MathPlayer: 'double stroke not sign', google: 'doppelhub nicht unterschreiben')
- "⫭": # 0x2aed (en: 'reversed double stroke not sign', MathPlayer: 'reversed double stroke not sign', google: 'umgekehrter doppelstrich nicht unterschreiben')
- "⫮": # 0x2aee (en: 'does not divide with reversed negation slash', MathPlayer: 'does not divide with reversed negation slash', google: 'teilt sich nicht mit umgekehrter negationsschrägung')
- "⫯": # 0x2aef (en: 'vertical line with circle above', MathPlayer: 'vertical line with circle above', google: 'vertikale linie mit dem obigen kreis')
- "⫰": # 0x2af0 (en: 'vertical line with circle below', MathPlayer: 'vertical line with circle below', google: 'vertikale linie mit kreis unten')
- "⫱": # 0x2af1 (en: 'down tack with circle below', MathPlayer: 'down tack with circle below', google: 'down tack mit kreis unten')
- "⫲": # 0x2af2 (en: 'parallel with horizontal stroke', MathPlayer: 'parallel with horizontal stroke', google: 'parallel zu horizontalem schlaganfall')
- "⫳": # 0x2af3 (en: 'parallel with tilde operator', MathPlayer: 'parallel with tilde operator', google: 'parallel zum tilde -operator')
- "⫴": # 0x2af4 (en: 'triple vertical bar binary relation', google: 'triple vertical bar binärbeziehung')
- "⫵": # 0x2af5 (en: 'triple vertical bar with horizontal stroke', google: 'dreifache vertikale balken mit horizontalem schlaganfall')
- "⫶": # 0x2af6 (en: 'triple colon operator', google: 'dreifacher dickdarmbetreiber')
- "⫷": # 0x2af7 (en: 'triple nested less than', google: 'dreifach verschachtelte weniger als')
- "⫸": # 0x2af8 (en: 'triple nested greater than', google: 'dreifach verschachteltes als')
- "⫹": # 0x2af9 (en: 'double line slanted less than or equal to', google: 'doppelzeile, die weniger oder gleich sind')
- "⫺": # 0x2afa (en: 'double line slanted greater than or equal to', google: 'doppelte linie schräg größer als oder gleich')
- "⫻": # 0x2afb (en: 'triple solidus binary relation', google: 'triple solidus binärbeziehung')
- "⫼": # 0x2afc (en: 'large triple vertical bar operator', google: 'großer dreifacher vertikaler barbetreiber')
- "⫽": # 0x2afd (en: 'double solidus operator', google: 'doppeler solidus -operator')
- "⫾": # 0x2afe (en: 'white vertical bar', google: 'weiße vertikale balken')
- "⫿": # 0x2aff (en: 'white vertical bar', google: 'weiße vertikale balken')
- "⬀": # 0x2b00 (en: 'north east white arrow', google: 'north east white arrow')
- "⬁": # 0x2b01 (en: 'north west white arrow', google: 'north west white arrow')
- "⬂": # 0x2b02 (en: 'south east white arrow', google: 'südostweißer pfeil')
- "⬃": # 0x2b03 (en: 'south west white arrow', google: 'south west white arrow')
- "⬄": # 0x2b04 (en: 'left right white arrow', google: 'links rechts weißer pfeil')
- "⬅": # 0x2b05 (en: 'leftwards black arrow', google: 'links schwarzer pfeil')
- "⬆": # 0x2b06 (en: 'upwards black arrow', google: 'aufwärts schwarze pfeil')
- "⬇": # 0x2b07 (en: 'downwards black arrow', google: 'nach unten schwarzen pfeil')
- "⬈": # 0x2b08 (en: 'north east black arrow', google: 'nordostschwarzer pfeil')
- "⬉": # 0x2b09 (en: 'north west black arrow', google: 'nordwesten schwarzer pfeil')
- "⬊": # 0x2b0a (en: 'south east black arrow', google: 'südostschwarzer pfeil')
- "⬋": # 0x2b0b (en: 'south west black arrow', google: 'südwesten schwarzer pfeil')
- "⬌": # 0x2b0c (en: 'left right black arrow', google: 'links rechts schwarzer pfeil')
- "⬍": # 0x2b0d (en: 'up down black arrow', google: 'runter schwarze pfeil')
- "⬎": # 0x2b0e (en: 'rightwards arrow with tip downwards', google: 'richtiger pfeil mit tipp nach unten')
- "⬏": # 0x2b0f (en: 'rightwards arrow with tip upwards', google: 'richtiger pfeil mit tipp nach oben')
- "⬐": # 0x2b10 (en: 'leftwards arrow with tip downwards', google: 'links pfeil mit tipp nach unten')
- "⬑": # 0x2b11 (en: 'leftwards arrow with tip upwards', google: 'linkspfeil mit tipp nach oben')
- "⬒": # 0x2b12 (en: 'square with top half black', google: 'quadrat mit der oberen halbzeit')
- "⬓": # 0x2b13 (en: 'square with bottom half black', google: 'quadrat mit unterer halb schwarz')
- "⬔": # 0x2b14 (en: 'square with upper right diagonal half black', google: 'quadrat mit der oberen rechten diagonalen halbschwarz')
- "⬕": # 0x2b15 (en: 'square with lower left diagonal half black', google: 'quadrat mit der unteren linken diagonalen halbschwarz')
- "⬖": # 0x2b16 (en: 'diamond with left half black', google: 'diamant mit linksem halb schwarz')
- "⬗": # 0x2b17 (en: 'diamond with right half black', google: 'diamant mit rechter halb schwarz')
- "⬘": # 0x2b18 (en: 'diamond with top half black', google: 'diamant mit oberem halben schwarz')
- "⬙": # 0x2b19 (en: 'diamond with bottom half black', google: 'diamant mit unterer halb schwarz')
- "⬚": # 0x2b1a (en: 'box', google: 'kasten')
- "⬛": # 0x2b1b (en: 'black large square', google: 'schwarzes großes quadrat')
- "⬜": # 0x2b1c (en: 'white large square', google: 'weiß großes quadrat')
- "⬝": # 0x2b1d (en: 'black very small square', google: 'schwarz, sehr kleines quadrat')
- "⬞": # 0x2b1e (en: 'white very small square', google: 'weiß sehr kleines quadrat')
- "⬟": # 0x2b1f (en: 'black pentagon', google: 'schwarzes pentagon')
- "⬠": # 0x2b20 (en: 'white pentagon', google: 'weißes pentagon')
- "⬡": # 0x2b21 (en: 'white hexagon', google: 'weißes sechseck')
- "⬢": # 0x2b22 (en: 'black hexagon', google: 'schwarzes sechseck')
- "⬣": # 0x2b23 (en: 'horizontal black hexagon', google: 'horizontales schwarzes sechseck')
- "⬤": # 0x2b24 (en: 'black large circle', google: 'schwarzer großer kreis')
- "⬥": # 0x2b25 (en: 'black medium diamond', google: 'schwarzer medium diamond')
- "⬦": # 0x2b26 (en: 'white medium diamond', google: 'weißer medium diamant')
- "⬧": # 0x2b27 (en: 'black medium lozenge', google: 'schwarze mittelgroße rauten')
- "⬨": # 0x2b28 (en: 'white medium lozenge', google: 'weiße mittelgroße rauten')
- "⬩": # 0x2b29 (en: 'black small diamond', google: 'schwarzer kleiner diamant')
- "⬪": # 0x2b2a (en: 'black small lozenge', google: 'schwarze kleine rauten')
- "⬫": # 0x2b2b (en: 'white small lozenge', google: 'weiße kleine raute')
- "⬬": # 0x2b2c (en: 'black horizontal ellipse', google: 'schwarze horizontale ellipse')
- "⬭": # 0x2b2d (en: 'white horizontal ellipse', google: 'weiße horizontale ellipse')
- "⬮": # 0x2b2e (en: 'black vertical ellipse', google: 'schwarze vertikale ellipse')
- "⬯": # 0x2b2f (en: 'white vertical ellipse', google: 'weiße vertikale ellipse')
- "⬰": # 0x2b30 (en: 'left arrow with small circle', google: 'links pfeil mit kleinem kreis')
- "⬱": # 0x2b31 (en: 'three leftwards arrows', google: 'drei linke pfeile')
- "⬲": # 0x2b32 (en: 'left arrow with circled plus', google: 'links pfeil mit eingekreistem plus')
- "⬳": # 0x2b33 (en: 'long leftwards squiggle arrow', google: 'langer linkskundiger pfeil')
- "⬴": # 0x2b34 (en: 'leftwards two headed arrow with vertical stroke', google: 'links zwei köpfe pfeil mit vertikalem schlaganfall')
- "⬵": # 0x2b35 (en: 'leftwards two headed arrow with double vertical stroke', google: 'links zwei köpfe pfeil mit doppelter vertikaler hub')
- "⬶": # 0x2b36 (en: 'leftwards two headed arrow from bar', google: 'links zwei köpfe pfeil aus der bar')
- "⬷": # 0x2b37 (en: 'leftwards two headed triple dash arrow', google: 'links zwei köpfe triple dash pfeil')
- "⬸": # 0x2b38 (en: 'leftwards arrow with dotted stem', google: 'links pfeil mit gepunktetem stiel')
- "⬹": # 0x2b39 (en: 'leftwards arrow with tail with vertical stroke', google: 'linkspfeil mit schwanz mit vertikalem schlaganfall')
- "⬺": # 0x2b3a (en: 'leftwards arrow with tail with double vertical stroke', google: 'linkspfeil mit schwanz mit doppelter vertikaler hub')
- "⬻": # 0x2b3b (en: 'leftwards two headed arrow with tail', google: 'links zwei köpfe pfeil mit schwanz')
- "⬼": # 0x2b3c (en: 'leftwards two headed arrow with tail with vertical stroke', google: 'links zwei köpfe pfeil mit schwanz mit vertikalem schlaganfall')
- "⬽": # 0x2b3d (en: 'leftwards two headed arrow with tail with double vertical stroke', google: 'links zwei köpfe pfeil mit schwanz mit doppelter vertikaler hub')
- "⬾": # 0x2b3e (en: 'leftwards arrow through x', google: 'links pfeil durch x')
- "⬿": # 0x2b3f (en: 'wave arrow pointing directly left', google: 'wellenpfeil direkt nach links zeigen')
- "⭀": # 0x2b40 (en: 'equals sign above leftwards arrow', google: 'gleiches zeichen über dem linken pfeil')
- "⭁": # 0x2b41 (en: 'reverse tilde operator above leftwards arrow', google: 'operator umgekehrter tilde über dem linken pfeil')
- "⭂": # 0x2b42 (en: 'leftwards arrow above reverse almost equal to', google: 'linksspfeil über der rückseite fast gleich')
- "⭃": # 0x2b43 (en: 'rightwards arrow through greater than', google: 'richtiger pfeil durch größer als')
- "⭄": # 0x2b44 (en: 'rightwards arrow through superset', google: 'richtiger pfeil durch superset')
- "⭅": # 0x2b45 (en: 'leftwards quadruple arrow', google: 'linksvierter pfeil')
- "⭆": # 0x2b46 (en: 'rightwards quadruple arrow', google: 'richtiger vierfachpfeil')
- "⭇": # 0x2b47 (en: 'reverse tilde operator above rightwards arrow', google: 'operator umgekehrter tilde oberhalb rechts pfeil')
- "⭈": # 0x2b48 (en: 'rightwards arrow above reverse almost equal to', google: 'rightwards pfeil über der rückseite fast gleich')
- "⭉": # 0x2b49 (en: 'tilde operator above leftwards arrow', google: 'tilde -operator über linksem pfeil')
- "⭊": # 0x2b4a (en: 'leftwards arrow above almost equal to', google: 'links über den pfeil über fast gleich')
- "⭋": # 0x2b4b (en: 'leftwards arrow above reverse tilde operator', google: 'links -pfeil über dem operator des umgekehrten tilde')
- "⭌": # 0x2b4c (en: 'rightwards arrow above reverse tilde operator', google: 'rightwards pfeil über dem operator des umgekehrten tilde')
- "⭐": # 0x2b50 (en: 'white medium star', MathPlayer: 'white medium star', google: 'weißer mittelstern')
- "⭑": # 0x2b51 (en: 'black small star', MathPlayer: 'black small star', google: 'schwarzer kleiner stern')
- "⭒": # 0x2b52 (en: 'white small star', MathPlayer: 'white small star', google: 'weißer kleiner stern')
- "⭓": # 0x2b53 (en: 'black right pointing pentagon', google: 'schwarzer rechter pentagon')
- "⭔": # 0x2b54 (en: 'white right pointing pentagon', google: 'weißer rechts pentagon')
- "⭕": # 0x2b55 (en: 'heavy large circle', google: 'schwerer großer kreis')
- "⭖": # 0x2b56 (en: 'heavy oval with oval inside', google: 'schweres oval mit oval im inneren')
- "⭗": # 0x2b57 (en: 'heavy circle with circle inside', google: 'schwerer kreis mit kreis im inneren')
- "⭘": # 0x2b58 (en: 'heavy circle', google: 'schwerer kreis')
- "⭙": # 0x2b59 (en: 'heavy circled saltire', google: 'schwer umgekreistes salzire')
- "⸀": # 0x2e00 (en: 'right angle substitution marker', google translation)
- "⸁": # 0x2e01 (en: 'right angle dotted substitution marker', google translation)
- "⸂": # 0x2e02 (en: 'left substitution bracket', google translation)
- "⸃": # 0x2e03 (en: 'right substitution bracket', google translation)
- "⸄": # 0x2e04 (en: 'left dotted substitution bracket', google translation)
- "⸅": # 0x2e05 (en: 'right dotted substitution bracket', google translation)
- "⸆": # 0x2e06 (en: 'raised interpolation marker', google translation)
- "⸇": # 0x2e07 (en: 'raised dotted interpolation marker', google translation)
- "⸈": # 0x2e08 (en: 'dotted transposition marker marker', google translation)
- "⸉": # 0x2e09 (en: 'left transposition bracket', google translation)
- "⸊": # 0x2e0a (en: 'right transposition bracket', google translation)
- "⸋": # 0x2e0b (en: 'raised square', google translation)
- "⸌": # 0x2e0c (en: 'left raised omission bracket', google translation)
- "⸍": # 0x2e0d (en: 'right raised omission bracket', google translation)
- "⸎": # 0x2e0e (en: 'editorial coronis', google translation)
- "⸏": # 0x2e0f (en: 'paragraphos', google translation)
- "⸐": # 0x2e10 (en: 'forked paragraphos', google translation)
- "⸑": # 0x2e11 (en: 'reversed forked paragraphos', google translation)
- "⸒": # 0x2e12 (google translation)
- "⸓": # 0x2e13 (en: 'dotted obelos', google translation)
- "⸔": # 0x2e14 (en: 'downwards ancora', google translation)
- "⸕": # 0x2e15 (en: 'upwards ancora', google translation)
- "⸖": # 0x2e16 (en: 'dotted right pointing angle', google translation)
- "⸗": # 0x2e17 (en: 'double oblique hyphen', google translation)
- "⸘": # 0x2e18 (en: 'inverted interrobang', google translation)
- "⸙": # 0x2e19 (en: 'palm branch', google translation)
- "⸚": # 0x2e1a (en: 'hyphen with diaeresis', google translation)
- "⸛": # 0x2e1b (en: 'tilde with ring above', google translation)
- "⸜": # 0x2e1c (en: 'left low paraphrase bracket', google translation)
- "⸝": # 0x2e1d (en: 'right low paraphrase bracket', google translation)
- "⸞": # 0x2e1e (en: 'tilde with dot above', google translation)
- "⸟": # 0x2e1f (en: 'tilde with dot below', google translation)
- "⸠": # 0x2e20 (en: 'left vertical bar with quill', google translation)
- "⸡": # 0x2e21 (en: 'right vertical bar with quill', google translation)
- "⸢": # 0x2e22 (en: 'top left half bracket', google: 'oben links halbe halterung')
- "⸣": # 0x2e23 (en: 'top right half bracket', google: 'oben rechts halbhalterung')
- "⸤": # 0x2e24 (en: 'bottom left half bracket', google: 'unten linke halbe klammer')
- "⸥": # 0x2e25 (en: 'bottom right half bracket', google: 'unten rechts halbe klammer')
- "⸦": # 0x2e26 (en: 'left sideways u bracket', google: 'links seitwärts u klammer')
- "⸧": # 0x2e27 (en: 'right sideways u bracket', google: 'rechte seitwärtshalterung')
- "⸨": # 0x2e28 (en: 'left double parentheses', google: 'links doppelte klammern')
- "⸩": # 0x2e29 (en: 'right double parentheses', google: 'rechte doppelte klammern')
- "⸪": # 0x2e2a (en: 'two dots over one dot punctuation', google translation)
- "⸫": # 0x2e2b (en: 'one dot over two dots punctuation', google translation)
- "⸬": # 0x2e2c (en: 'squared four dot punctuation', google translation)
- "⸭": # 0x2e2d (en: 'five dot mark', google translation)
- "⸮": # 0x2e2e (en: 'reversed question mark', google translation)
- "ⸯ": # 0x2e2f (en: 'vertical tilde', google translation)
- "⸰": # 0x2e30 (en: 'ring point', google translation)
- "⸱": # 0x2e31 (en: 'word separator middle dot', google translation)
- "⸲": # 0x2e32 (en: 'turned comma', google translation)
- "⸳": # 0x2e33 (en: 'raised dot', google translation)
- "⸴": # 0x2e34 (en: 'raised comma', google translation)
- "⸵": # 0x2e35 (en: 'turned semicolon', google translation)
- "⸶": # 0x2e36 (en: 'dagger with left guard', google translation)
- "⸷": # 0x2e37 (en: 'dagger with right guard', google translation)
- "⸸": # 0x2e38 (en: 'turned dagger', google translation)
- "⸹": # 0x2e39 (en: 'top half section sign', google translation)
- "⸺": # 0x2e3a (en: 'two em dash', google translation)
- "⸻": # 0x2e3b (en: 'three em dash', google translation)
- "〃": # 0x3003 (en: 'ditto mark', google translation)
- "〈": # 0x3008 (en: 'left angle bracket', google: 'linkswinkelhalter')
- "〉": # 0x3009 (en: 'right angle bracket', google: 'rechtswinkelhalterung')
- "《": # 0x300a (en: 'left double angle bracket', MathPlayer: 'left double angle bracket', google: 'links zwei winkelhalterungen')
- "》": # 0x300b (en: 'right double angle bracket', MathPlayer: 'right double angle bracket', google: 'rechte doppelwinkelhalterung')
- "「": # 0x300c (en: 'left corner bracket', google: 'linke eckhalterung')
- "」": # 0x300d (en: 'right corner bracket', google: 'rechte eckhalterung')
- "『": # 0x300e (en: 'left white corner bracket', google: 'links weiße eckhalterung')
- "』": # 0x300f (en: 'right white corner bracket', google: 'rechte weiße eckhalterung')
- "【": # 0x3010 (en: 'left black lenticular bracket', google: 'links schwarze linsenhalterung')
- "】": # 0x3011 (en: 'right black lenticular bracket', google: 'rechte schwarze linsenhalterung')
- "〔": # 0x3014 (en: 'left tortoise shell bracket', MathPlayer: 'left tortoise shell bracket', google: 'links schildkrötenhalterung')
- "〕": # 0x3015 (en: 'right tortoise shell bracket', MathPlayer: 'right tortoise shell bracket', google: 'rechte schildkrötenhalterung')
- "〖": # 0x3016 (en: 'left white lenticular bracket', google: 'links weiße linsenhalterung')
- "〗": # 0x3017 (en: 'right white lenticular bracket', google: 'rechte weiße linsenhalterung')
- "〘": # 0x3018 (en: 'left white tortoise shell bracket', google: 'links weiße schildkröte')
- "〙": # 0x3019 (en: 'right white tortoise shell bracket', google: 'richtige weiße schildkrabbungshalterung')
- "〚": # 0x301a (en: 'left white square bracket', MathPlayer: 'left white square bracket', google: 'linke weiße quadratklammer')
- "〛": # 0x301b (en: 'right white square bracket', MathPlayer: 'right white square bracket', google: 'rechte weiße quadratklasse')
- "〜": # 0x301c (en: 'wave dash', google: 'wave dash')
- "〰": # 0x3030 (en: 'wavy dash', google: 'welliger armaturenbrett')
- "㉈": # 0x3248 (en: 'circled number ten on black square', google: 'kreiste nummer zehn auf black square')
- "㉉": # 0x3249 (en: 'circled number twenty on black square', google: 'kreiste nummer zwanzig auf dem schwarzen quadrat')
- "㉊": # 0x324a (en: 'circled number thirty on black square', google: 'kreiste nummer dreißig auf dem schwarzen platz')
- "㉋": # 0x324b (en: 'circled number forty on blacks square', google: 'kreiste nummer vierzig auf dem blacks square')
- "㉌": # 0x324c (en: 'circled number fifty on black square', google: 'auf dem schwarzen platz um fünfzig umkreiste')
- "㉍": # 0x324d (en: 'circled number sixty on black square', google: 'kreiste nummer sechzig auf black square')
- "㉎": # 0x324e (en: 'circled number seventy on black square', google: 'kreiste nummer siebzig auf dem schwarzen quadrat')
- "㉏": # 0x324f (en: 'circled number eighty on black square', google: 'eingekreiste nummer auf dem black square')
- "㉑": # 0x3251 (en: 'circled number twenty one', google translation)
- "㉒": # 0x3252 (en: 'circled number twenty two', google translation)
- "㉓": # 0x3253 (en: 'circled number twenty three', google translation)
- "㉔": # 0x3254 (en: 'circled number twenty four', google translation)
- "㉕": # 0x3255 (en: 'circled number twenty five', google translation)
- "㉖": # 0x3256 (en: 'circled number twenty six', google translation)
- "㉗": # 0x3257 (en: 'circled number twenty seven', google translation)
- "㉘": # 0x3258 (en: 'circled number twenty eight', google translation)
- "㉙": # 0x3259 (en: 'circled number twenty nine', google translation)
- "㉚": # 0x325a (en: 'circled number thirty', google translation)
- "㉛": # 0x325b (en: 'circled number thirty one', google translation)
- "㉜": # 0x325c (en: 'circled number thirty two', google translation)
- "㉝": # 0x325d (en: 'circled number thirty three', google translation)
- "㉞": # 0x325e (en: 'circled number thirty four', google translation)
- "㉟": # 0x325f (en: 'circled number thirty five', google translation)
- "㊱": # 0x32b1 (en: 'circled number thirty six', google translation)
- "㋌": # 0x32cc (en: 'mercury', google translation)
- "㋍": # 0x32cd (google translation)
- "㋎": # 0x32ce (en: 'electron volts', google translation)
- "㋏": # 0x32cf (en: 'limited liability sign', google translation)
- "㍱": # 0x3371 (google translation)
- "㍲": # 0x3372 (google translation)
- "㍳": # 0x3373 (en: 'astronomical units', google translation)
- "㍴": # 0x3374 (en: 'bars', google translation)
- "㍵": # 0x3375 (google translation)
- "㍶": # 0x3376 (google translation)
- "㍷": # 0x3377 (en: 'decimeters', google translation)
- "㍸": # 0x3378 (en: 'decimeters squared', google translation)
- "㍹": # 0x3379 (en: 'decimeters cubed', google translation)
- "㍺": # 0x337a (en: 'instrumental units', google translation)
- "㎀": # 0x3380 (google translation)
- "㎁": # 0x3381 (google translation)
- "㎂": # 0x3382 (en: 'microamps', google translation)
- "㎃": # 0x3383 (google translation)
- "㎄": # 0x3384 (google translation)
- "㎅": # 0x3385 (google translation)
- "㎆": # 0x3386 (en: 'megabytes', google translation)
- "㎇": # 0x3387 (en: 'gigabytes', google translation)
- "㎈": # 0x3388 (en: 'calories', google translation)
- "㎉": # 0x3389 (en: 'kilocalories', google translation)
- "㎊": # 0x338a (google translation)
- "㎋": # 0x338b (google translation)
- "㎌": # 0x338c (en: 'microfarads', google translation)
- "㎍": # 0x338d (en: 'micrograms', google translation)
- "㎎": # 0x338e (en: 'milligrams', google translation)
- "㎏": # 0x338f (en: 'kilograms', google translation)
- "㎐": # 0x3390 (google translation)
- "㎑": # 0x3391 (google translation)
- "㎒": # 0x3392 (google translation)
- "㎓": # 0x3393 (google translation)
- "㎔": # 0x3394 (google translation)
- "㎕": # 0x3395 (en: 'microliters', google translation)
- "㎖": # 0x3396 (en: 'milliliters', google translation)
- "㎗": # 0x3397 (en: 'deciliters', google translation)
- "㎘": # 0x3398 (en: 'kiloliters', google translation)
- "㎙": # 0x3399 (en: 'femtometers', google translation)
- "㎚": # 0x339a (en: 'nanometers', google translation)
- "㎛": # 0x339b (en: 'micrometers', google translation)
- "㎜": # 0x339c (en: 'millimeters', google translation)
- "㎝": # 0x339d (en: 'centimeters', google translation)
- "㎞": # 0x339e (en: 'kilometers', google translation)
- "㎟": # 0x339f (en: 'millimeters squared', google translation)
- "㎠": # 0x33a0 (en: 'centimeters squared', google translation)
- "㎡": # 0x33a1 (en: 'meters squared', google translation)
- "㎢": # 0x33a2 (en: 'kilometers squared', google translation)
- "㎣": # 0x33a3 (en: 'millimeters cubed', google translation)
- "㎤": # 0x33a4 (en: 'centimeters cubed', google translation)
- "㎥": # 0x33a5 (en: 'meters cubed', google translation)
- "㎦": # 0x33a6 (en: 'kilometers cubed', google translation)
- "㎧": # 0x33a7 (en: 'meters per second', google translation)
- "㎨": # 0x33a8 (en: 'meters per second squared', google translation)
- "㎩": # 0x33a9 (google translation)
- "㎪": # 0x33aa (google translation)
- "㎫": # 0x33ab (google translation)
- "㎬": # 0x33ac (google translation)
- "㎭": # 0x33ad (google translation)
- "㎮": # 0x33ae (en: 'rads per second', google translation)
- "㎯": # 0x33af (en: 'rads per second squared', google translation)
- "㎰": # 0x33b0 (en: 'picoseconds', google translation)
- "㎱": # 0x33b1 (en: 'nanoseconds', google translation)
- "㎲": # 0x33b2 (en: 'microseconds', google translation)
- "㎳": # 0x33b3 (en: 'milliseconds', google translation)
- "㎴": # 0x33b4 (google translation)
- "㎵": # 0x33b5 (google translation)
- "㎶": # 0x33b6 (en: 'microvolts', google translation)
- "㎷": # 0x33b7 (google translation)
- "㎸": # 0x33b8 (google translation)
- "㎹": # 0x33b9 (google translation)
- "㎺": # 0x33ba (google translation)
- "㎻": # 0x33bb (google translation)
- "㎼": # 0x33bc (en: 'microwatts', google translation)
- "㎽": # 0x33bd (en: 'milliwatts', google translation)
- "㎾": # 0x33be (en: 'kilowatts', google translation)
- "㎿": # 0x33bf (en: 'megawatts', google translation)
- "㏀": # 0x33c0 (en: 'kilo-ohms', google translation)
- "㏁": # 0x33c1 (en: 'megaohms', google translation)
- "㏂": # 0x33c2 (en: 'attometers', google translation)
- "㏃": # 0x33c3 (google translation)
- "㏄": # 0x33c4 (en: 'cubic centimeters', google translation)
- "㏅": # 0x33c5 (google translation)
- "㏆": # 0x33c6 (en: 'coulombs per kilogram', google translation)
- "㏇": # 0x33c7 (en: 'cardiac output', google translation)
- "㏈": # 0x33c8 (en: 'decibels', google translation)
- "㏉": # 0x33c9 (en: 'grays', google translation)
- "㏊": # 0x33ca (en: 'hectares', google translation)
- "㏋": # 0x33cb (en: 'horsepower', google translation)
- "㏌": # 0x33cc (en: 'inches', google translation)
- "㏍": # 0x33cd (google translation)
- "㏎": # 0x33ce (en: 'kilometers', google translation)
- "㏏": # 0x33cf (en: 'knots', google translation)
- "㏐": # 0x33d0 (en: 'lumens', google translation)
- "㏑": # 0x33d1 (google translation)
- "㏒": # 0x33d2 (en: 'logarithm', google translation)
- "㏓": # 0x33d3 (google translation)
- "㏔": # 0x33d4 (google translation)
- "㏕": # 0x33d5 (en: 'mills', google translation)
- "㏖": # 0x33d6 (en: 'moles', google translation)
- "㏗": # 0x33d7 (google translation)
- "㏘": # 0x33d8 (en: 'picometers', google translation)
- "㏙": # 0x33d9 (en: 'parts per million', google translation)
- "㏚": # 0x33da (google translation)
- "㏛": # 0x33db (en: 'steradians', google translation)
- "㏜": # 0x33dc (google translation)
- "㏝": # 0x33dd (google translation)
- "㏞": # 0x33de (en: 'volts per meter', google translation)
- "㏟": # 0x33df (en: 'amps per meter', google translation)
- "㏿": # 0x33ff (en: 'gallons', google translation)
- "": # 0xe900 (en: 'equals with hat below', google translation)
- "": # 0xe901 (en: 'equals with plus above', google translation)
- "": # 0xe902 (en: 'equals with plus below', google translation)
- "": # 0xe903 (en: 'tilde with plus above', google translation)
- "": # 0xe904 (en: 'tilde with plus below', google translation)
- "": # 0xe908 (en: 'equal double over greater than', google translation)
- "": # 0xe909 (en: 'equal double over less than', google translation)
- "": # 0xe90a (en: 'contains or equal to', google translation)
- "": # 0xe90b (en: 'superset of or equal to', google translation)
- "": # 0xe90c (en: 'subset of or equal to', google translation)
- "": # 0xe90d (en: 'equal over less than', google translation)
- "": # 0xe912 (en: 'element of or equal to', google translation)
- "": # 0xe913 (en: 'equal to or greater than', google translation)
- "": # 0xe914 (en: 'approximate superset of', google translation)
- "": # 0xe915 (en: 'approximate subset of', google translation)
- "": # 0xe916 (en: 'superset of with dot includes as sub relation', google translation)
- "": # 0xe917 (en: 'subset of with dot is included in as sub relation', google translation)
- "": # 0xe918 (en: 'equal with dot below', google translation)
- "": # 0xe919 (en: 'left dot over minus over right dot', google translation)
- "": # 0xe91a (en: 'right dot over minus over left dot', google translation)
- "": # 0xe91f (en: 'almost equal to minus', google translation)
- "": # 0xe920 (en: 'double square cup', google translation)
- "": # 0xe921 (en: 'double square cap', google translation)
- "": # 0xe922 (en: 'less than equal to or greater than', google translation)
- "": # 0xe924 (en: 'tilde with dot', google translation)
- "": # 0xe925 (en: 'tilde with two dots', google translation)
- "": # 0xe926 (en: 'less than greater than or equal to', google translation)
- "": # 0xe927 (en: 'greater than less than or equal to', google translation)
- "": # 0xe928 (en: 'equivalent to or less than', google translation)
- "": # 0xe929 (en: 'equivalent to or greater than', google translation)
- "": # 0xe92a (en: 'left open box operator', google translation)
- "": # 0xe92b (en: 'right open box operator', google translation)
- "": # 0xe92c (en: 'identical to with dot', google translation)
- "": # 0xe92d (en: 'greater than equal to or less than', google translation)
- "": # 0xe92e (en: 'bar operator', google translation)
- "": # 0xe92f (en: 'double bar operator', google translation)
- "": # 0xe930 (en: 'triple bar operator', google translation)
- "": # 0xe932 (en: 'less than or approximately equal to', google translation)
- "": # 0xe933 (en: 'greater than or approximately equal to', google translation)
- "": # 0xe936 (en: 'nested less than', google translation)
- "": # 0xe937 (en: 'nested greater than', google translation)
- "": # 0xe93a (en: 'precedes or equivalent to', google translation)
- "": # 0xe93b (en: 'succeeds or equivalent to', google translation)
- "": # 0xe940 (en: 'precedes over equal', google translation)
- "": # 0xe941 (en: 'succeeds over equal', google translation)
- "": # 0xe942 (en: 'less equal slanted greater', google translation)
- "": # 0xe943 (en: 'greater equal slanted less', google translation)
- "": # 0xe948 (en: 'satisfied by', google translation)
- "": # 0xe949 (en: 'lazy s', google translation)
- "": # 0xe94a (en: 'not assertion', google translation)
- "": # 0xe94b (en: 'double equal', google translation)
- "": # 0xe94c (en: 'triple equal', google translation)
- "": # 0xe94d (en: 'rule delayed', google translation)
- "": # 0xe94e (en: 'alias delimiter', google translation)
- "": # 0xe950 (en: 'normal subgroup of with bar', google translation)
- "": # 0xe951 (en: 'contains as normal subgroup with bar', google translation)
- "": # 0xe954 (en: 'round implies', google translation)
- "": # 0xe955 (en: 'smile under bar', google translation)
- "": # 0xe956 (en: 'frown over bar', google translation)
- "": # 0xe957 (en: 'superset of or almost equal to', google translation)
- "": # 0xe958 (en: 'subset of or almost equal to', google translation)
- "": # 0xe959 (en: 'greater than almost equal to or less than', google translation)
- "": # 0xe95a (en: 'less than almost equal or greater than', google translation)
- "": # 0xe95c (en: 'double logical or', google translation)
- "": # 0xe95d (en: 'double logical and', google translation)
- "": # 0xe95e (en: 'logical or with double bar below', google translation)
- "": # 0xe95f (en: 'logical or with bar below', google translation)
- "": # 0xe962 (en: 'almost equal over equal', google translation)
- "": # 0xe964 (en: 'left pointing triangle with bisecting bar', google translation)
- "": # 0xe965 (en: 'right pointing triangle with bisecting bar', google translation)
- "": # 0xe966 (en: 'equals with dotted top line', google translation)
- "": # 0xe967 (en: 'precedes with colon', google translation)
- "": # 0xe968 (en: 'succeeds with colon', google translation)
- "": # 0xe969 (en: 'smaller than or equal slanted', google translation)
- "": # 0xe96a (en: 'larger than or equal slanted', google translation)
- "": # 0xe96b (en: 'nested very much less than', google translation)
- "": # 0xe96c (en: 'nested very much greater than', google translation)
- "": # 0xe96d (en: 'difference between variant', google translation)
- "": # 0xe96e (en: 'less than greater than overlay', google translation)
- "": # 0xe96f (en: 'logical or logical and overlay', google translation)
- "": # 0xe970 (en: 'superset over superset', google translation)
- "": # 0xe971 (en: 'subset over subset', google translation)
- "": # 0xe972 (en: 'superset over subset', google translation)
- "": # 0xe973 (en: 'subset over superset', google translation)
- "": # 0xe979 (en: 'triple vertical bar', google translation)
- "": # 0xe97a (en: 'paired quadruple vertical dots', google translation)
- "": # 0xe97b (en: 'perpendicular over bar', google translation)
- "": # 0xe97c (en: 'left turnstile double vertical bar', google translation)
- "": # 0xe97d (en: 'double left turnstile double vertical bar', google translation)
- "": # 0xe97e (en: 'perpendicular over inverted perpendicular', google translation)
- "": # 0xe97f (en: 'double left turnstile vertical bar', google translation)
- "": # 0xe980 (en: 'spherical angle opening up', google translation)
- "": # 0xe981 (en: 'double slash', google translation)
- "": # 0xe982 (en: 'right angle with corner', google translation)
- "": # 0xe984 (en: 'circled vertical bar', google translation)
- "": # 0xe985 (en: 'circled division sign', google translation)
- "": # 0xe986 (en: 'dashed solidus', google translation)
- "": # 0xe987 (en: 'dashed backslash', google translation)
- "": # 0xe988 (en: 'dashed mid line', google translation)
- "": # 0xe989 (en: 'dashed vertical bar', google translation)
- "": # 0xe98a (en: 'perpendicular with s', google translation)
- "": # 0xe98b (en: 'angle with s', google translation)
- "": # 0xe98c (en: 'spherical angle opening left', google translation)
- "": # 0xe98d (en: 'angle opening left', google translation)
- "": # 0xe98e (en: 'vertical bar with double hook', google translation)
- "": # 0xe98f (en: 'medium dot operator free radical', google translation)
- "": # 0xe990 (en: 'white up pointing triangle above bar', google translation)
- "": # 0xe991 (en: 'identical and parallel to', google translation)
- "": # 0xe992 (en: 'smash product', google translation)
- "": # 0xe993 (en: 'triple bar operator with horizontal bar', google translation)
- "": # 0xe994 (en: 'identical to with double slash', google translation)
- "": # 0xe995 (en: 'triple crossed bars', google translation)
- "": # 0xe996 (en: 'vertical bar over circle', google translation)
- "": # 0xe997 (en: 'vertical proportional to', google translation)
- "": # 0xe998 (en: 'black last quarter moon', google translation)
- "": # 0xe999 (en: 'black first quarter moon', google translation)
- "": # 0xe9a0 (en: 'negative sine wave', google translation)
- "": # 0xe9a1 (en: 'parenthesized dot', google translation)
- "": # 0xe9a2 (en: 'parens', google translation)
- "": # 0xe9a3 (en: 'white smile', google translation)
- "": # 0xe9a4 (en: 'white frown', google translation)
- "": # 0xe9a5 (google translation)
- "": # 0xe9a6 (en: 'equivalent to over plus', google translation)
- "": # 0xe9a7 (en: 'plus over equivalent to', google translation)
- "": # 0xe9b0 (en: 'intersection serifs', google translation)
- "": # 0xe9b1 (en: 'union serifs', google translation)
- "": # 0xe9b2 (en: 'square intersection serifs', google translation)
- "": # 0xe9b3 (en: 'square union serifs', google translation)
- "": # 0xe9e0 (en: 'precedes equivalent to or succeeds', google translation)
- "": # 0xe9e1 (en: 'succeeds equivalent to or precedes', google translation)
- "": # 0xe9e2 (en: 'precedes almost equal to or succeeds', google translation)
- "": # 0xe9e3 (en: 'succeeds almost equal to or precedes', google translation)
- "": # 0xe9f0 (en: 'less than equivalent to or greater than', google translation)
- "": # 0xe9f1 (en: 'greater than equivalent to or less than', google translation)
- "": # 0xea00 (en: 'not vert much less than', google translation)
- "": # 0xea01 (en: 'not vert much greater than', google translation)
- "": # 0xea02 (en: 'not much less than variant', google translation)
- "": # 0xea03 (en: 'not much greater than variant', google translation)
- "": # 0xea04 (en: 'less vert not double equals', google translation)
- "": # 0xea05 (en: 'gt vert not double equals', google translation)
- "": # 0xea06 (en: 'not less than or equal to', google translation)
- "": # 0xea07 (en: 'not greater than or equal to', google translation)
- "": # 0xea09 (en: 'neither equal to nor less than', google translation)
- "": # 0xea0a (en: 'does not contain or equal to', google translation)
- "": # 0xea0b (en: 'neither superset of nor equal to', google translation)
- "": # 0xea0c (en: 'neither subset of nor equal to', google translation)
- "": # 0xea0d (en: 'reverse solidus subset', google translation)
- "": # 0xea0e (en: 'neither equal to nor greater than', google translation)
- "": # 0xea0f (en: 'not minus tilde operator', google translation)
- "": # 0xea10 (en: 'neither equal to nor less than', google translation)
- "": # 0xea11 (en: 'not tilde operator', google translation)
- "": # 0xea12 (en: 'not element of or equal to', google translation)
- "": # 0xea13 (en: 'neither equal to nor greater than', google translation)
- "": # 0xea14 (en: 'not almost equal', google translation)
- "": # 0xea15 (en: 'not succeeds similar', google translation)
- "": # 0xea16 (en: 'less than or slanted equal to with slash', google translation)
- "": # 0xea17 (en: 'greater than or slanted equal to with slash', google translation)
- "": # 0xea1a (google translation)
- "": # 0xea1b (en: 'does not contain', google translation)
- "": # 0xea1d (en: 'not less than or equal to', google translation)
- "": # 0xea1e (en: 'not greater than or equal to', google translation)
- "": # 0xea1f (en: 'not almost equal to minus', google translation)
- "": # 0xea22 (en: 'negated set membership dot above', google translation)
- "": # 0xea2c (en: 'not vert angle', google translation)
- "": # 0xea2d (en: 'not parallel slanted', google translation)
- "": # 0xea2e (en: 'not bar operator', google translation)
- "": # 0xea2f (en: 'not double bar operator', google translation)
- "": # 0xea30 (en: 'not triple bar operator', google translation)
- "": # 0xea32 (en: 'less than but not approximately equal to', google translation)
- "": # 0xea33 (en: 'greater than but not approximately equal to', google translation)
- "": # 0xea34 (en: 'less than or not equal to', google translation)
- "": # 0xea35 (en: 'greater than or not equal to', google translation)
- "": # 0xea36 (en: 'not nested less than', google translation)
- "": # 0xea37 (en: 'not nested greater than', google translation)
- "": # 0xea38 (en: 'not much less than', google translation)
- "": # 0xea39 (en: 'not much greater than', google translation)
- "": # 0xea3a (en: 'precedes but not equivalent to', google translation)
- "": # 0xea3b (en: 'succeeds but not equivalent to', google translation)
- "": # 0xea3c (en: 'precedes but not equal to', google translation)
- "": # 0xea3d (en: 'succeeds but not equal to', google translation)
- "": # 0xea3e (en: 'does not equal or precede', google translation)
- "": # 0xea3f (en: 'does not equal or succeed', google translation)
- "": # 0xea40 (en: 'precedes but not equal to', google translation)
- "": # 0xea41 (en: 'succeeds but not equal to', google translation)
- "": # 0xea42 (en: 'not subset of nor equal to', google translation)
- "": # 0xea43 (en: 'not superset of nor equal to', google translation)
- "": # 0xea44 (en: 'subset of or not equal to', google translation)
- "": # 0xea45 (en: 'superset of or not equal to', google translation)
- "": # 0xea46 (en: 'not subset of nor equal to', google translation)
- "": # 0xea47 (en: 'not superset of nor equal to', google translation)
- "": # 0xea48 (en: 'not triple less than', google translation)
- "": # 0xea49 (en: 'not triple greater than', google translation)
- "": # 0xea4c (en: 'not precedes equals', google translation)
- "": # 0xea4d (en: 'not succeeds equals', google translation)
- "": # 0xea50 (en: 'not normal subgroup of with bar', google translation)
- "": # 0xea51 (en: 'does not contain as normal subgroup with bar', google translation)
- "": # 0xea52 (en: 'not difference between', google translation)
- "": # 0xea53 (en: 'not geometrically equivalent to', google translation)
- "": # 0xea54 (en: 'not vert similar', google translation)
- "": # 0xea55 (en: 'not equal or similar', google translation)
- "": # 0xea56 (en: 'not vert approximate', google translation)
- "": # 0xea57 (en: 'not approximately identical to', google translation)
- "": # 0xea58 (en: 'not bumpy equals', google translation)
- "": # 0xea59 (en: 'not bumpy single equals', google translation)
- "": # 0xea5a (en: 'not equal dot', google translation)
- "": # 0xea5b (en: 'reverse not equivalent', google translation)
- "": # 0xea60 (en: 'not square subset', google translation)
- "": # 0xea61 (en: 'not square superset', google translation)
- "": # 0xea62 (en: 'not almost equal over equal', google translation)
- "": # 0xea63 (en: 'not strictly equivalent to', google translation)
- "": # 0xea64 (en: 'not congruent dot', google translation)
- "": # 0xea65 (en: 'reverse not equal', google translation)
- "": # 0xea70 (en: 'not vert left triangle equals', google translation)
- "": # 0xea71 (en: 'not vert right triangle equals', google translation)
- "": # 0xea80 (en: 'not partial', google translation)
- "": # 0xeb00 (en: 'arrow embellishment extender', google translation)
- "": # 0xeb01 (en: 'arrow rightwards over arrow leftwards', google translation)
- "": # 0xeb02 (en: 'arrow rightwards over arrow leftwards', google translation)
- "": # 0xeb03 (en: 'harpoon right over harpoon left', google translation)
- "": # 0xeb04 (en: 'harpoon right over harpoon left', google translation)
- "": # 0xeb05 (en: 'double arrow northeast southwest', google translation)
- "": # 0xeb06 (en: 'double arrow northwest southeast', google translation)
- "": # 0xeb07 (en: 'horizontal harpoon extender', google translation)
- "": # 0xeb08 (en: 'anticlockwise arc leftwards arrow', google translation)
- "": # 0xeb09 (en: 'anticlockwise arc rightwards arrow', google translation)
- "": # 0xeb0b (en: 'large rightwards arrow accent', google translation)
- "": # 0xeb0c (en: 'large leftwards arrow accent', google translation)
- "": # 0xeb0d (en: 'leftwards arrowhead', google translation)
- "": # 0xeb0e (en: 'rightwards arrowhead', google translation)
- "": # 0xeb0f (en: 'large left right arrow with stroke', google translation)
- "": # 0xeb10 (en: 'horizontal double arrow extender', google translation)
- "": # 0xeb11 (en: 'large left right double arrow with stroke', google translation)
- "": # 0xeb12 (en: 'downwards arrow leftwards of upwards arrow', google translation)
- "": # 0xeb13 (en: 'leftwards arrow with corner downwards', google translation)
- "": # 0xeb14 (en: 'rightwards arrow with corner upwards', google translation)
- "": # 0xeb15 (en: 'leftwards arrow with corner upwards', google translation)
- "": # 0xeb16 (en: 'anticlockwise top semicircle arrow with plus', google translation)
- "": # 0xeb17 (en: 'clockwise top semicircle arrow with minus', google translation)
- "": # 0xeb18 (en: 'rightwards arrow with tail with stroke', google translation)
- "": # 0xeb19 (en: 'right harpoon down', google translation)
- "": # 0xeb1a (en: 'left harpoon down', google translation)
- "": # 0xeb1b (en: 'left right harpoon down', google translation)
- "": # 0xeb1c (en: 'left right harpoon up', google translation)
- "": # 0xeb1d (en: 'up down harpoon left', google translation)
- "": # 0xeb1e (en: 'up down harpoon right', google translation)
- "": # 0xeb1f (en: 'upwards arrow to the right of downwards arrow', google translation)
- "": # 0xeb20 (en: 'leftwards harpoon to bar with barb upwards', google translation)
- "": # 0xeb21 (en: 'rightwards harpoon to bar with barb upwards', google translation)
- "": # 0xeb22 (en: 'leftwards harpoon to bar with barb downwards', google translation)
- "": # 0xeb23 (en: 'rightwards harpoon to bar with barb downwards', google translation)
- "": # 0xeb24 (en: 'leftwards harpoon from bar with barb upwards', google translation)
- "": # 0xeb25 (en: 'rightwards harpoon from bar with barb upwards', google translation)
- "": # 0xeb26 (en: 'leftwards harpoon from bar with barb downwards', google translation)
- "": # 0xeb27 (en: 'rightwards harpoon from bar with barb downwards', google translation)
- "": # 0xeb28 (en: 'upwards harpoon to bar with barb leftwards', google translation)
- "": # 0xeb29 (en: 'downwards harpoon to bar with barb leftwards', google translation)
- "": # 0xeb2a (en: 'upwards harpoon to bar with barb rightwards', google translation)
- "": # 0xeb2b (en: 'downwards harpoon to bar with barb rightwards', google translation)
- "": # 0xeb2c (en: 'upwards harpoon from bar with barb leftwards', google translation)
- "": # 0xeb2d (en: 'downwards harpoon from bar with barb leftwards', google translation)
- "": # 0xeb2e (en: 'upwards harpoon from bar with barb rightwards', google translation)
- "": # 0xeb2f (en: 'downwards harpoon from bar with barb rightwards', google translation)
- "": # 0xeb30 (en: 'upwards arrow to bar', google translation)
- "": # 0xeb31 (en: 'downwards arrow to bar', google translation)
- "": # 0xeb32 (en: 'upwards harpoon to the left of downwards harpoon', google translation)
- "": # 0xeb33 (en: 'upwards harpoon to the right of downwards harpoon', google translation)
- "": # 0xeb34 (en: 'upwards arrowhead', google translation)
- "": # 0xeb35 (en: 'downwards arrowhead', google translation)
- "": # 0xeb36 (en: 'double harpoon with leftwards barb down rightwards barb up', google translation)
- "": # 0xeb37 (en: 'double harpoon with leftwards barb up rightwards barb down', google translation)
- "": # 0xeb38 (en: 'leftwards arrow over bar', google translation)
- "": # 0xeb39 (en: 'rightwards arrow over bar', google translation)
- "": # 0xeb3a (en: 'leftwards arrow under bar', google translation)
- "": # 0xeb3b (en: 'rightwards arrow under bar', google translation)
- "": # 0xeb3c (en: 'left right triple arrow', google translation)
- "": # 0xeb3f (en: 'double arrow northeast southeast', google translation)
- "": # 0xeb40 (en: 'anticlockwise left semicircle arrow', google translation)
- "": # 0xeb41 (en: 'clockwise left semicircle arrow', google translation)
- "": # 0xeb42 (en: 'left open circle left right arrow', google translation)
- "": # 0xeb44 (en: 'rightwards arrow over tilde', google translation)
- "": # 0xeb45 (en: 'leftwards arrow over tilde', google translation)
- "": # 0xeb48 (en: 'leftwards harpoon over bar', google translation)
- "": # 0xeb49 (en: 'rightwards harpoon over bar', google translation)
- "": # 0xeb4a (en: 'leftwards harpoon under bar', google translation)
- "": # 0xeb4b (en: 'rightwards harpoon under bar', google translation)
- "": # 0xeb4c (en: 'squat black leftwards arrow', google translation)
- "": # 0xeb50 (en: 'clockwise right semicircle arrow', google translation)
- "": # 0xeb51 (en: 'anticlockwise right semicircle arrow', google translation)
- "": # 0xeb52 (en: 'left open circle left right harpoon', google translation)
- "": # 0xeb58 (en: 'upwards arrow leftwards of vertical bar', google translation)
- "": # 0xeb59 (en: 'downwards arrow leftwards of vertical bar', google translation)
- "": # 0xeb5a (en: 'upwards arrow rightwards of vertical bar', google translation)
- "": # 0xeb5b (en: 'downwards arrow rightwards of vertical bar', google translation)
- "": # 0xeb5c (en: 'rightwards arrow with extended downwards hook', google translation)
- "": # 0xeb5d (en: 'leftwards arrow with extended hook', google translation)
- "": # 0xeb5e (en: 'leftwards arrow with extended downwards hook', google translation)
- "": # 0xeb5f (en: 'rightwards arrow with extended hook', google translation)
- "": # 0xeb60 (en: 'not right arrow wavy', google translation)
- "": # 0xeb61 (en: 'not right arrow curved', google translation)
- "": # 0xeb68 (en: 'upwards harpoon leftwards of vertical bar', google translation)
- "": # 0xeb69 (en: 'downwards harpoon leftwards of vertical bar', google translation)
- "": # 0xeb6a (en: 'upwards harpoon rightwards of vertical bar', google translation)
- "": # 0xeb6b (en: 'downwards harpoon rightwards of vertical bar', google translation)
- "": # 0xeb6c (en: 'vertical double arrow extender', google translation)
- "": # 0xeb6d (en: 'vertical harpoon with barb left extender', google translation)
- "": # 0xeb6e (en: 'vertical harpoon with barb right extender', google translation)
- "": # 0xeb6f (en: 'right harpoon over left harpoon right', google translation)
- "": # 0xeb70 (en: 'right harpoon over left harpoon left', google translation)
- "": # 0xeb71 (en: 'left harpoon over right harpoon right', google translation)
- "": # 0xeb72 (en: 'left harpoon over right harpoon left', google translation)
- "": # 0xeb73 (en: 'leftwards arrow from bar arrowhead', google translation)
- "": # 0xeb74 (en: 'leftwards rightwards arrow from bar extender', google translation)
- "": # 0xeb75 (en: 'leftwards arrow from bar tail', google translation)
- "": # 0xeb76 (en: 'rightwards arrow from bar tail', google translation)
- "": # 0xeb77 (en: 'rightwards arrow from bar arrowhead', google translation)
- "": # 0xeb78 (en: 'upwards harpoon from bar with barb leftwards arrowhead', google translation)
- "": # 0xeb79 (en: 'rightwards arrow over leftwards arrow right', google translation)
- "": # 0xeb7a (en: 'rightwards arrow over leftwards arrow left', google translation)
- "": # 0xeb7b (en: 'leftwards arrow over rightwards arrow right', google translation)
- "": # 0xeb7c (en: 'leftwards arrow over rightwards arrow left', google translation)
- "": # 0xeb7d (en: 'upwards arrow from bar arrowhead', google translation)
- "": # 0xeb7e (en: 'upwards arrow from bar tail', google translation)
- "": # 0xeb7f (en: 'downwards arrow from bar tail', google translation)
- "": # 0xeb80 (en: 'downwards arrow from bar arrowhead', google translation)
- "": # 0xeb81 (en: 'downwards harpoon from bar with barb rightwards arrowhead', google translation)
- "": # 0xeb82 (en: 'upwards harpoon to the left of downwards harpoon bottom', google translation)
- "": # 0xeb83 (en: 'upwards harpoon to the left of downwards harpoon extender', google translation)
- "": # 0xeb84 (en: 'downwards harpoon to the left of upwards harpoon top', google translation)
- "": # 0xeb85 (en: 'upwards harpoon to the left of downwards harpoon top', google translation)
- "": # 0xeb86 (en: 'downwards harpoon to the left of the upwards harpoon extender', google translation)
- "": # 0xeb87 (en: 'downwards harpoon to the left of the upwards harpoon bottom', google translation)
- "": # 0xeb88 (en: 'upwards arrow leftwards of downwards arrow bottom', google translation)
- "": # 0xeb89 (en: 'downwards arrow leftwards of upwards arrow top', google translation)
- "": # 0xeb8a (en: 'upwards arrow leftwards of downwards arrow top', google translation)
- "": # 0xeb8b (en: 'downwards arrow leftwards of upwards arrow bottom', google translation)
- "": # 0xeb8c (en: 'leftwards rightwards arrows extender', google translation)
- "": # 0xeb8d (google translation)
- "": # 0xeb8e (google translation)
- "": # 0xec00 (en: 'down pointing brace left', google translation)
- "": # 0xec01 (en: 'down pointing brace mid', google translation)
- "": # 0xec02 (en: 'down pointing brace right', google translation)
- "": # 0xec03 (en: 'horizontal brace extender', google translation)
- "": # 0xec04 (en: 'up pointing brace left', google translation)
- "": # 0xec05 (en: 'up pointing brace mid', google translation)
- "": # 0xec06 (en: 'up-pointing brace right', google translation)
- "": # 0xec07 (en: 'left vertical bar', google translation)
- "": # 0xec08 (en: 'right vertical bar', google translation)
- "": # 0xec09 (en: 'left double vertical bar', google translation)
- "": # 0xec0a (en: 'right double vertical bar', google translation)
- "": # 0xec0b (en: 'horizontal bracket extender', google translation)
- "": # 0xec0c (en: 'under square bracket', google translation)
- "⎵": # 0x23b5 (en: 'under square bracket', MathPlayer: 'under square bracket', google: 'unter quadratischer klammer')
- "": # 0xec0d (en: 'over square bracket', google translation)
- "⎴": # 0x23b4 (en: 'over square bracket', MathPlayer: 'over square bracket', google: 'über quadratischer klammer')
- "": # 0xec0e (en: 'under bracket left', google translation)
- "": # 0xec0f (en: 'under bracket right', google translation)
- "": # 0xec10 (en: 'over bracket left', google translation)
- "": # 0xec11 (en: 'over bracket right', google translation)
- "": # 0xec12 (en: 'left parens 1', google translation)
- "": # 0xec13 (en: 'left parens 2', google translation)
- "": # 0xec14 (en: 'left parens 3', google translation)
- "": # 0xec15 (en: 'left parens 4', google translation)
- "": # 0xec16 (en: 'right parens 1', google translation)
- "": # 0xec17 (en: 'right parens 2', google translation)
- "": # 0xec18 (en: 'right parens 3', google translation)
- "": # 0xec19 (en: 'right parens 4', google translation)
- "": # 0xec1a (en: 'radical 1', google translation)
- "": # 0xec1b (en: 'radical 2', google translation)
- "": # 0xec1c (en: 'radical 3', google translation)
- "": # 0xec1d (en: 'radical 4', google translation)
- "": # 0xec1e (en: 'radical 5', google translation)
- "": # 0xec1f (en: 'radical bottom', google translation)
- "": # 0xec20 (en: 'radical vertical extender', google translation)
- "": # 0xec21 (en: 'radical top', google translation)
- "": # 0xec22 (en: 'left white bracket top', google translation)
- "": # 0xec23 (en: 'left white bracket extender', google translation)
- "": # 0xec24 (en: 'left white bracket bottom', google translation)
- "": # 0xec25 (en: 'right white bracket top', google translation)
- "": # 0xec26 (en: 'right white bracket extender', google translation)
- "": # 0xec27 (en: 'right white bracket bottom', google translation)
- "": # 0xec30 (en: 'left white curly bracket', google translation)
- "": # 0xec31 (en: 'right white curly bracket', google translation)
- "": # 0xec32 (en: 'long division sign', google translation)
- "": # 0xec33 (en: 'long division sign extender', google translation)
- "": # 0xec34 (en: 'short division', google translation)
- "": # 0xec40 (en: 'double southwest to northeast em bond', google translation)
- "": # 0xec41 (en: 'double northwest to southeast em bond', google translation)
- "": # 0xec42 (en: 'single horizontal em bond', google translation)
- "": # 0xec43 (en: 'double horizontal em bond', google translation)
- "": # 0xec44 (en: 'triple horizontal em bond', google translation)
- "": # 0xec45 (en: 'single vertical em bond', google translation)
- "": # 0xec46 (en: 'double vertical em bond', google translation)
- "": # 0xec47 (en: 'triple vertical em bond', google translation)
- "": # 0xec48 (en: 'less than em bond', google translation)
- "": # 0xec49 (en: 'greater than em bond', google translation)
- "": # 0xec4a (en: 'single horizontal en bond', google translation)
- "": # 0xec4b (en: 'double horizontal en bond', google translation)
- "": # 0xec4c (en: 'triple horizontal en bond', google translation)
- "": # 0xec80 (en: 'top left rectangle', google translation)
- "": # 0xec81 (en: 'bottom left rectangle', google translation)
- "": # 0xec90 (en: 'top right rectangle', google translation)
- "": # 0xec91 (en: 'bottom right rectangle', google translation)
- "": # 0xec92 (en: 'synthetic division corner', google translation)
- "": # 0xec93 (en: 'synthetic division horizontal extender', google translation)
- "": # 0xec94 (en: 'synthetic division vertical extender', google translation)
- "": # 0xec95 (en: 'left ceiling floor extender', google translation)
- "": # 0xec96 (en: 'right ceiling floor extender', google translation)
- "": # 0xec97 (en: 'over bracket extender', google translation)
- "": # 0xec98 (en: 'vertical bar extender', google translation)
- "": # 0xec99 (en: 'left double vertical bar extender', google translation)
- "": # 0xec9a (en: 'horizontal bar extender', google translation)
- "": # 0xec9c (en: 'under bracket extender', google translation)
- "": # 0xec9d (en: 'down pointing paren right', google translation)
- "": # 0xec9e (en: 'down pointing paren extender', google translation)
- "": # 0xec9f (en: 'down pointing paren left', google translation)
- "": # 0xeca0 (en: 'up pointing brace extender', google translation)
- "": # 0xeca1 (en: 'up pointing paren left', google translation)
- "": # 0xeca2 (en: 'up pointing paren extender', google translation)
- "": # 0xeca3 (en: 'up pointing paren right', google translation)
- "": # 0xeca4 (en: 'down pointing brace extender', google translation)
- "": # 0xed00 (en: 'planck constant over two pi bar', google translation)
- "": # 0xed01 (en: 'mirror g', google translation)
- "": # 0xed02 (google translation)
- "": # 0xed03 (google translation)
- "ϝ": # 0x3dd
- "": # 0xed10 (en: 'd', google translation)
- "ⅆ": # 0x2146 (en: 'd', MathPlayer: 'd', google: 'ⅆ')
- "": # 0xed11 (en: 'e', google translation)
- "ⅇ": # 0x2147 (en: 'e', MathPlayer: 'e', google: 'ⅇ')
- "": # 0xed12 (en: 'i', google translation)
- "ⅈ": # 0x2148 (en: 'i', MathPlayer: 'i', google: 'ⅈ')
- "": # 0xed13 (en: 'j', google translation)
- "ⅅ":
- spell: "translate('.', 'ⅅ', 'DD')" # 0xed16, 0x2145
# The private use chars are from MathType
- "": # 0xee00 (en: 'anticlockwise contour integral loop', google translation)
- "": # 0xee01 (en: 'clockwise contour integral loop', google translation)
- "": # 0xee04
- "": # 0xee05
- "": # 0xee06
- "": # 0xee07
- "": # 0xee08
- "": # 0xee09
- "": # 0xee0a
- "": # 0xee0b
- "": # 0xee0c
- "": # 0xee0d (en: 'joint status embellishment', google translation)
- "": # 0xee0e (en: 'joint status embellishment left', google translation)
- "": # 0xee0f (en: 'joint status embellishment right', google translation)
- "": # 0xee10 (en: 'joint status embellishment extender', google translation)
- "": # 0xee11 (en: 'integral loop', google translation)
- "": # 0xee12 (google translation)
- "": # 0xee13 (google translation)
- "": # 0xee15 (en: 'expanding integral loop double', google translation)
- "": # 0xee16 (en: 'expanding integral loop triple', google translation)
- "": # 0xee17 (en: 'asymptotically equal to accent', google translation)
- "": # 0xee18 (en: 'equal sign accent', google translation)
- "": # 0xee19 (en: 'quadruple prime', google translation)
- "": # 0xee1a (en: 'bar accent with open circle left', google translation)
- "": # 0xee1b (en: 'bar accent with closed circle left', google translation)
- "": # 0xee1c (en: 'bar accent with open circle right', google translation)
- "": # 0xee1d (en: 'bar accent with over dot', google translation)
- "": # 0xee1e (en: 'bar accent with under dot', google translation)
- "": # 0xee1f (en: 'bar accent with double over dot', google translation)
- "": # 0xee20 (en: 'bar accent with double under dot', google translation)
- "": # 0xee21 (en: 'bar accent with caret', google translation)
- "": # 0xee22 (en: 'thick under bar accent', google translation)
- "": # 0xee23 (en: 'bar accent with closed circle right', google translation)
- "": # 0xee24 (en: 'large dot above', google translation)
- "": # 0xef00 (en: 'alignment mark', google translation)
- "": # 0xef01
- "": # 0x200b
- "": # 0xef02
- " ": # 0x2009
- "": # 0xef03
- " ": # 0x205f
- "": # 0xef04
- "": # 0xef05
- " ": # 0x2003
- "": # 0xef06
- "": # 0xef07
- "": # 0xef08
- "": # 0xef09
- "": # 0xef0a
- " ": # 0x200a
- "": # 0xef22
- "": # 0xef23
- "": # 0xef24
- "": # 0xef29
- "": # 0xef41 (en: 'missing term', google translation)
- "": # 0xef80 (en: 'clockwise contour integral arrow on left', google translation)
- "": # 0xef81 (en: 'integral with square', google translation)
- "": # 0xef82 (en: 'integral with slash', google translation)
- "": # 0xef83 (en: 'reversed integral', google translation)
- "": # 0xef90 (en: 'double zero over double zero', google translation)
- "": # 0xef91 (en: 'zero with slash', google translation)
# fraktur chars in math alphabetic block and also MathType private use area
# Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display
- "𝔄-𝔜": # 0x1d504 - 0x1d51d ('z' version is reserved)
- T: "fraktur" # (google translation)
- spell: "translate('.', '𝔄𝔅𝔇𝔈𝔉𝔊𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔𝔖𝔗𝔘𝔙𝔚𝔛𝔜', 'ABCDEFGHIJKLMNOPQRSTUVWXY')"
- "-": # 0xf000 - 0xf018
- T: "fraktur" # (google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXY')"
- "𝔞-𝔷": # 0x1d51e - 0x1d537
- T: "fraktur" # (google translation)
- spell: "translate('.', '𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf01a - 0xf033
- T: "fraktur" # (google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝕬-𝖅": # 0x1D56C - 0x1D585
- T: "fraktur mutig" # (en: 'fraktur bold', google translation)
- spell: "translate('.', '𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf040 - 0xf059
- T: "fraktur mutig" # (en: 'fraktur bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝖆-𝖟": # 0x1d586 - 0x1d59f
- T: "fraktur mutig" # (en: 'fraktur bold', google translation)
- spell: "translate('.', '𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf05a - 0xf073
- T: "fraktur mutig" # (en: 'fraktur bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
# double struck (blackboard bold) chars in math alphabetic block and also MathType private use area
# Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display
- "𝔸-𝕐": # 0x1d504 - 0x1d51d ('z' version is reserved)
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '𝔸𝔹𝔻𝔼𝔽𝔾𝕀𝕁𝕂𝕃𝕄𝕆𝕊𝕋𝕌𝕍𝕎𝕏𝕐', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf080 - 0xf098
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝕒-𝕫": # 0x1d552 - 0x1d56b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf09a - 0xf0b3
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝟘-𝟡": # 0x1d7d8 - 0x1d7e1
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡', '0123456789')"
- "-": # 0xf0c0 - 0xf0c9
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '', '0123456789')"
- "": # 0xf0ca (en: 'double struck nabla', google translation)
- "": # 0xf0cb (en: 'double struck euler constant', google translation)
# script chars in math alphabetic block and also MathType private use area
- "𝒜-𝒵": # 0x1d49c - 0x1d4b5
- T: "skript" # (en: 'script', google translation)
- spell: "translate('.', '𝒜𝒞𝒟𝒢𝒥𝒦𝒩𝒪𝒫𝒬𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf100 - 0xf119
- T: "skript" # (en: 'script', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝒶-𝓏": # 0x1d4b6 - 0x1d4cf
- T: "skript" # (en: 'script', google translation)
- spell: "translate('.', '𝒶𝒷𝒸𝒹𝒻𝒽𝒾𝒿𝓀𝓁𝓂𝓃𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf11a - 0xf133
- T: "skript" # (en: 'script', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
# bold script chars in math alphabetic block and also MathType private use area
- "𝓐-𝓩": # 0x1d4d0 - 0x1d4e9
- T: "skript mutig" # (en: 'script bold', google translation)
- spell: "translate('.', '𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf140 - 0xf159
- T: "skript mutig" # (en: 'script bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝓪-𝔃": # 0x1d4ea - 0x1d503
- T: "skript mutig" # (en: 'script bold', google translation)
- spell: "translate('.', '𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf15a - 0xf173
- T: "skript mutig" # (en: 'script bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf180 - 0xf199
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "": # 0xf19a
- test:
if: "$CapitalLetters_Beep"
then:
- audio:
value: "beep.mp4"
replace:
- test:
if: "$CapitalLetters_UseWord"
then_test:
if: "$SpeechOverrides_CapitalLetters = ''"
then_test:
if: "$Impairment = 'Blindness'"
then: # (en: 'cap', google translation)
else:
- pitch:
value: "$CapitalLetters_Pitch"
replace: # (en: 'ligature ae', google translation)
- "": # 0xf19b
- test:
if: "$CapitalLetters_Beep"
then:
- audio:
value: "beep.mp4"
replace:
- test:
if: "$CapitalLetters_UseWord"
then_test:
if: "$SpeechOverrides_CapitalLetters = ''"
then_test:
if: "$Impairment = 'Blindness'"
then: # (en: 'cap', google translation)
else:
- pitch:
value: "$CapitalLetters_Pitch"
replace: # (en: 'sharp s', google translation)
- "": # 0xf19c
- test:
if: "$CapitalLetters_Beep"
then:
- audio:
value: "beep.mp4"
replace:
- test:
if: "$CapitalLetters_UseWord"
then_test:
if: "$SpeechOverrides_CapitalLetters = ''"
then_test:
if: "$Impairment = 'Blindness'"
then: # (en: 'cap', google translation)
else:
- pitch:
value: "$CapitalLetters_Pitch"
replace: # (en: 'o with stroke', google translation)
# MathType only has a few of the cap Greek letters in PUA
- "": # 0xf201 - 0xf209
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '', 'ΔΨΛΠΣΘΓΩΥ')"
- "-": # 0xf220 - 0xf236
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'double struck', google translation)
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "": # 0xf237 (en: 'double struck final sigma', google translation)
- "": # 0xf250 (en: 'double struck rho', google translation)
- "": # 0xf251 (en: 'double struck phi', google translation)
- "𝐀-𝐙": # 0x1d400 - 0x1d419
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf260 - 0xf279
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝐚-𝐳": # 0x1d41a - 0x1d433
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf27a - 0xf293
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝐴-𝑍": # 0x1d434 - 0x1d44d
- spell: "translate('.', '𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf294 - 0xf2ad
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝑎-𝑧": # 0x1d44e - 0x1d467
- spell: "translate('.', '𝑎𝑏𝑐𝑑𝑒𝑓𝑔𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf2ae - 0xf2c7
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝑨-𝒁": # 0x1d468 - 0x1d481
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf2c8 - 0xf2e1
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝒂-𝒛": # 0x1d482 - 0x1d49b
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf2e2 - 0xf2fb
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝖠-𝖹": # 0x1d5a0 - 0x1d5b9
- spell: "translate('.', '𝖠𝖡𝖢𝖣𝖤𝖥𝖦𝖧𝖨𝖩𝖪𝖫𝖬𝖭𝖮𝖯𝖰𝖱𝖲𝖳𝖴𝖵𝖶𝖷𝖸𝖹', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf300 - 0xf319
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝖺-𝗓": # 0x1d5ba - 0x1d5d3
- spell: "translate('.', '𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf31a - 0xf333
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝗔-𝗭": # 0x1d5d4 - 0x1d5ed
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf334 - 0xf34d
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝗮-𝘇": # 0x1d5ee - 0x1d607
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf34e - 0xf367
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝘈-𝘡": # 0x1d608 - 0x1d621
# - T: "italic"
- spell: "translate('.', '𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf368 - 0xf381
# - T: "italic"
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝘢-𝘻": # 0x1d622 - 0x1d63b
# - T: "italic"
- spell: "translate('.', '𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf382 - 0xf39b
# - T: "italic"
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝘼-𝙕": # 0x1d63c - 0x1d655
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf39c - 0xf3b5
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝙖-𝙯": # 0x1d656 - 0x1d66f
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf3b6 - 0xf3cf
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝙰-𝚉": # 0x1d670 - 0x1d689
- spell: "translate('.', '𝙰𝙱𝙲𝙳𝙴𝙵𝙶𝙷𝙸𝙹𝙺𝙻𝙼𝙽𝙾𝙿𝚀𝚁𝚂𝚃𝚄𝚅𝚆𝚇𝚈𝚉', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf3d0 - 0xf3e9
- spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝚊-𝚣": # 0x1d68a - 0x1d6a3
- spell: "translate('.', '𝚊𝚋𝚌𝚍𝚎𝚏𝚐𝚑𝚒𝚓𝚔𝚕𝚖𝚗𝚘𝚙𝚚𝚛𝚜𝚝𝚞𝚟𝚠𝚡𝚢𝚣', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf3ea - 0xf403
- spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "": # 0xf404 (google translation)
- "𝚤": # 0x1d6a4 (en: 'dotless i', google: 'dotless i')
- "𝚥": # 0x1d6a5 (en: 'dotless j', google: 'dotless j')
- "𝚨-𝛀": # 0x1d6a8 - 0x1d6c0
- T: "punktloses j kursiv" # (en: 'bold', google: 'deutlich')
- spell: "translate('.', '𝚨𝚩𝚪𝚫𝚬𝚭𝚮𝚯𝚰𝚱𝚲𝚳𝚴𝚵𝚶𝚷𝚸𝚹𝚺𝚻𝚼𝚽𝚾𝚿𝛀', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf408 - 0xf420
- T: "punktloses j kursiv" # (en: 'bold', google: 'deutlich')
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝛂-𝛚": # 0x1d6c2 - 0x1d6da
- T: "punktloses j kursiv" # (en: 'bold', google: 'deutlich')
- spell: "translate('.', '𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf422 - 0xf43a
- T: "punktloses j kursiv" # (en: 'bold', google: 'deutlich')
- spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "": # 0xf421 (en: 'bold nabla', google translation)
- "𝛁": # 0x1d6c1 (en: 'bold nabla', google translation)
- "𝛛𝛜𝛝𝛞𝛟𝛠𝛡": # 0x1D6DB - 0x1D6E1
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝛛𝛜𝛝𝛞𝛟𝛠𝛡', '∂εθκφρπ')"
- "": # 0xF43C - 0xF441
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', '∂εθκφρπ')"
- "𝛢-𝛺": # 0x1d6e2 - 0x1d6fa
# - T: "italic"
- spell: "translate('.', '𝛢𝛣𝛤𝛥𝛦𝛧𝛨𝛩𝛪𝛫𝛬𝛭𝛮𝛯𝛰𝛱𝛲𝛳𝛴𝛵𝛶𝛷𝛸𝛹𝛺', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf442 - 0xf45a
# - T: "italic"
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝛼-𝜔": # 0x1d6fc - 0x1d714
# - T: "italic"
- spell: "translate('.', '𝛼𝛽𝛾𝛿𝜀𝜁𝜂𝜃𝜄𝜅𝜆𝜇𝜈𝜉𝜊𝜋𝜌𝜍𝜎𝜏𝜐𝜑𝜒𝜓𝜔', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf45c - 0xf474
# - T: "italic"
- spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "": # 0xf45b (en: 'italic nabla', google translation)
- "𝛻": # 0x1d6fb (en: 'italic nabla', google translation)
- "𝜕𝜖𝜗𝜘𝜙𝜚𝜛": # 0x1d715 - 0x1d71b
# - T: "italic"
- spell: "translate('.', '𝜕𝜖𝜗𝜘𝜙𝜚𝜛', '∂εθκφρπ')"
- "": # 0xf475 - 0xf47b
# - T: "italic"
- spell: "translate('.', '', '∂εθκφρπ')"
- "𝜜-𝜴": # 0x1d71c - 0x1d734
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝜜𝜝𝜞𝜟𝜠𝜡𝜢𝜣𝜤𝜥𝜦𝜧𝜨𝜩𝜪𝜫𝜬𝜭𝜮𝜯𝜰𝜱𝜲𝜳𝜴', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf47c - 0xf494
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝜶-𝝎": # 0x1d736 - 0x1d74e
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf496 - 0xf4ae
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝝏𝝐𝝑𝝒𝝓𝝔𝝕": # 0x1d74f - 0x1d755
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝝏𝝐𝝑𝝒𝝓𝝔𝝕', '∂εθκφρπ')"
- "": # 0xf422 - 0xf43a
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', '∂εθκφρπ')"
- "𝜵": # 0x1d735 (en: 'bold italic nabla', google translation)
- "": # 0xf495 (en: 'bold italic nabla', google translation)
- "𝝖-𝝮": # 0x1d756 - 0x1d76e
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf4b6 - 0xf4ce
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝝰-𝞈": # 0x1d770 - 0x1d788
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf4d0 - 0xf4e8
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝞉𝞊𝞋𝞌𝞍𝞎𝞏": # 0x1d789 - 0x1d78f
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝞉𝞊𝞋𝞌𝞍𝞎𝞏', '∂εθκφρπ')"
- "": # 0xf4e9 - 0xf4ef
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', '∂εθκφρπ')"
- "": # 0xf4cf (en: 'bold nabla', google translation)
- "𝝯": # 0x1d76f (en: 'bold nabla', google translation)
- "𝞐-𝞨": # 0x1d790 - 0x1d7a8
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝞐𝞑𝞒𝞓𝞔𝞕𝞖𝞗𝞘𝞙𝞚𝞛𝞜𝞝𝞞𝞟𝞠𝞡𝞢𝞣𝞤𝞥𝞦𝞧𝞨', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf4f0 - 0xf508
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝞪-𝟂": # 0x1d7aa - 0x1d7c2
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf50a - 0xf522
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝟃𝟄𝟅𝟆𝟇𝟈𝟉": # 0x1d7c3 - 0x1d7c9
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '𝟃𝟄𝟅𝟆𝟇𝟈𝟉', '∂εθκφρπ')"
- "": # 0xf523 - 0xf529
# - T: "bold italic"
- T: "deutlich" # (en: 'bold', google translation)
- spell: "translate('.', '', '∂εθκφρπ')"
- "": # 0xf509 (en: 'bold nabla', google translation)
- "𝞩": # 0x1d7a9 (en: 'bold nabla', google translation)
- "": # 0xf52e (en: 'bold zero', google translation)
- "𝟎": # 0x1d7ce (en: 'bold zero', google translation)
- "": # 0xf52f (en: 'bold one', google translation)
- "𝟏": # 0x1d7cf (en: 'bold one', google translation)
- "": # 0xf530 (en: 'bold two', google translation)
- "𝟐": # 0x1d7d0 (en: 'bold two', google translation)
- "": # 0xf531 (en: 'bold three', google translation)
- "𝟑": # 0x1d7d1 (en: 'bold three', google translation)
- "": # 0xf532 (en: 'bold four', google translation)
- "𝟒": # 0x1d7d2 (en: 'bold four', google translation)
- "": # 0xf533 (en: 'bold five', google translation)
- "𝟓": # 0x1d7d3 (en: 'bold five', google translation)
- "": # 0xf534 (en: 'bold six', google translation)
- "𝟔": # 0x1d7d4 (en: 'bold six', google translation)
- "": # 0xf535 (en: 'bold seven', google translation)
- "𝟕": # 0x1d7d5 (en: 'bold seven', google translation)
- "": # 0xf536 (en: 'bold eight', google translation)
- "𝟖": # 0x1d7d6 (en: 'bold eight', google translation)
- "": # 0xf537 (en: 'bold nine', google translation)
- "𝟗": # 0x1d7d7 (en: 'bold nine', google translation)
- "": # 0xf542 (en: 'zero', google translation)
- "𝟢": # 0x1d7e2 (en: 'zero', google translation)
- "": # 0xf543 (en: 'one', google translation)
- "𝟣": # 0x1d7e3 (en: 'one', google translation)
- "": # 0xf544 (en: 'two', google translation)
- "𝟤": # 0x1d7e4 (en: 'two', google translation)
- "": # 0xf545 (en: 'three', google translation)
- "𝟥": # 0x1d7e5 (en: 'three', google translation)
- "": # 0xf546 (en: 'four', google translation)
- "𝟦": # 0x1d7e6 (en: 'four', google translation)
- "": # 0xf547 (en: 'five', google translation)
- "𝟧": # 0x1d7e7 (en: 'five', google translation)
- "": # 0xf548 (en: 'six', google translation)
- "𝟨": # 0x1d7e8 (en: 'six', google translation)
- "": # 0xf549 (en: 'seven', google translation)
- "𝟩": # 0x1d7e9 (en: 'seven', google translation)
- "": # 0xf54a (en: 'eight', google translation)
- "𝟪": # 0x1d7ea (en: 'eight', google translation)
- "": # 0xf54b (en: 'nine', google translation)
- "𝟫": # 0x1d7eb (en: 'nine', google translation)
- "": # 0xf54c (en: 'bold zero', google translation)
- "𝟬": # 0x1d7ec (en: 'bold zero', google translation)
- "": # 0xf54d (en: 'bold one', google translation)
- "𝟭": # 0x1d7ed (en: 'bold one', google translation)
- "": # 0xf54e (en: 'bold two', google translation)
- "𝟮": # 0x1d7ee (en: 'bold two', google translation)
- "": # 0xf54f (en: 'bold three', google translation)
- "𝟯": # 0x1d7ef (en: 'bold three', google translation)
- "": # 0xf550 (en: 'bold four', google translation)
- "𝟰": # 0x1d7f0 (en: 'bold four', google translation)
- "": # 0xf551 (en: 'bold five', google translation)
- "𝟱": # 0x1d7f1 (en: 'bold five', google translation)
- "": # 0xf552 (en: 'bold six', google translation)
- "𝟲": # 0x1d7f2 (en: 'bold six', google translation)
- "": # 0xf553 (en: 'bold seven', google translation)
- "𝟳": # 0x1d7f3 (en: 'bold seven', google translation)
- "": # 0xf554 (en: 'bold eight', google translation)
- "𝟴": # 0x1d7f4 (en: 'bold eight', google translation)
- "": # 0xf555 (en: 'bold nine', google translation)
- "𝟵": # 0x1d7f5 (en: 'bold nine', google translation)
- "": # 0xf556 (en: 'zero', google translation)
- "𝟶": # 0x1d7f6 (en: 'zero', google translation)
- "": # 0xf557 (en: 'one', google translation)
- "𝟷": # 0x1d7f7 (en: 'one', google translation)
- "": # 0xf558 (en: 'two', google translation)
- "𝟸": # 0x1d7f8 (en: 'two', google translation)
- "": # 0xf559 (en: 'three', google translation)
- "𝟹": # 0x1d7f9 (en: 'three', google translation)
- "": # 0xf55a (en: 'four', google translation)
- "𝟺": # 0x1d7fa (en: 'four', google translation)
- "": # 0xf55b (en: 'five', google translation)
- "𝟻": # 0x1d7fb (en: 'five', google translation)
- "": # 0xf55c (en: 'six', google translation)
- "𝟼": # 0x1d7fc (en: 'six', google translation)
- "": # 0xf55d (en: 'seven', google translation)
- "𝟽": # 0x1d7fd (en: 'seven', google translation)
- "": # 0xf55e (en: 'eight', google translation)
- "𝟾": # 0x1d7fe (en: 'eight', google translation)
- "": # 0xf55f (en: 'nine', google translation)
- "𝟿": # 0x1d7ff (en: 'nine', google translation)
- "": # 0xf700 (en: 'unknown character', google translation)
- "": # 0xf726 (en: 'lower right and lower left triangles', google translation)
- "": # 0xf72d (en: 'horizontal ellipsis extender', google translation)
- "": # 0xf72e (en: 'midline horizontal ellipsis extender', google translation)
- "": # 0xf8e5 (en: 'radical extender', google translation)
- "": # 0xf8e6 (en: 'vertical arrow extender', google translation)
- "": # 0xf8e7 (en: 'horizontal arrow extender', google translation)
- "": # 0xf8e8 (en: 'registered sign sans serif', google translation)
- "": # 0xf8e9 (en: 'copyright sign sans serif', google translation)
- "": # 0xf8ea (en: 'trade mark sign sans serif', google translation)
- "": # 0xf8eb (en: 'left paren top', google translation)
- "": # 0xf8ec (en: 'left paren extender', google translation)
- "": # 0xf8ed (en: 'left paren bottom', google translation)
- "": # 0xf8ee (en: 'left bracket top', google translation)
- "": # 0xf8ef (en: 'left bracket extender', google translation)
- "": # 0xf8f0 (en: 'left bracket bottom', google translation)
- "": # 0xf8f1 (en: 'left brace top', google translation)
- "": # 0xf8f2 (en: 'left brace mid', google translation)
- "": # 0xf8f3 (en: 'left brace bottom', google translation)
- "": # 0xf8f4 (en: 'brace extender', google translation)
- "": # 0xf8f5 (en: 'integral extender', google translation)
- "": # 0xf8f6 (en: 'right paren top', google translation)
- "": # 0xf8f7 (en: 'right paren extender', google translation)
- "": # 0xf8f8 (en: 'right paren bottom', google translation)
- "": # 0xf8f9 (en: 'right bracket top', google translation)
- "": # 0xf8fa (en: 'right bracket extender', google translation)
- "": # 0xf8fb (en: 'right bracket bottom', google translation)
- "": # 0xf8fc (en: 'right brace top', google translation)
- "": # 0xf8fd (en: 'right brace mid', google translation)
- "": # 0xf8fe (en: 'right brace bottom', google translation)
- "": # 0xf8ff (google translation)
- "ff": # 0xfb00 (en: 'ff', google: 'ff')
- "fi": # 0xfb01 (en: 'fi', google: 'fi')
- "fl": # 0xfb02 (en: 'fl', google: 'fl')
- "ffi": # 0xfb03 (en: 'ffi', google: 'ffi')
- "ffl": # 0xfb04 (en: 'ffl', google: 'ffl')
- "ſt": # 0xfb05 (google translation)
- "st": # 0xfb06 (google translation)
- "︠": # 0xfe20 (en: 'ligature left half embellishment', google translation)
- "︡": # 0xfe21 (en: 'ligature right half embellishment', google translation)
- "︢": # 0xfe22 (en: 'double tilde left half embellishment', google translation)
- "︣": # 0xfe23 (en: 'double tilde right half embellishment', google translation)
- "︤": # 0xfe24 (en: 'macron left half embellishment', google translation)
- "︥": # 0xfe25 (en: 'macron right half embellishment', google translation)
- "︦": # 0xfe26 (en: 'conjoining macron embellishment', google translation)
- "︵": # 0xfe35 (en: 'over paren', MathPlayer: 'over paren', google: 'über klammern')
- "︶": # 0xfe36 (en: 'under paren', MathPlayer: 'under paren', google: 'unter klammern')
- "︷": # 0xfe37 (en: 'over brace', MathPlayer: 'over curly bracket', google: 'über klammer')
- "︸": # 0xfe38 (en: 'under brace', MathPlayer: 'under curly bracket', google: 'unter klammer')
- "︿": # 0xfe3f (en: 'over angle bracket', MathPlayer: 'over angle bracket', google: 'über winkelhalterung')
- "﹀": # 0xfe40 (en: 'under angle bracket', MathPlayer: 'under angle bracket', google: 'unter winkelklasse')
- "﹨": # 0xfe68 (en: 'integer divide', MathPlayer: 'integer divide', google: 'ganzzahl teilt')
- "": # 0xfffc (en: 'unknown or missing object', google translation)
- "�": # 0xfffd (google: 'unbekannter oder fehlender charakter')