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
---
# Translated with the help of https://jkorpela.fi/merkkien-nimet.html
- "¢": # 0xa2 (en: 'cents')
- "£": # 0xa3 (en: 'pounds')
- "¤": # 0xa4 (en: 'currency sign')
- "¥": # 0xa5 (en: 'yen', google: 'jeni')
- "¦": # 0xa6 (en: 'broken bar', google: 'rikkoutunut palkki')
- "§": # 0xa7 (en: 'section', google: 'osa')
- "¨": # 0xa8 (en: 'double dot', google: 'kaksinkertainen piste') # FI: use case with derivative?
- "©": # 0xa9 (en: 'copyright', google: 'tekijänoikeudet') # FI: in NVDA it's written "copyright"
- "ª": # 0xaa (en: 'feminine ordinal indicator', google: 'naisellinen ordinaaliindikaattori')
- "¬": # 0xac (en: 'not', google: 'ei')
- "«": # 0xab (en: 'left-pointing double angle quote mark', google: 'vasemman potentiaalinen kaksoiskulma lainausmerkki')
- "¯": # 0xaf
- test:
if: "ancestor::m:modified-variable and preceding-sibling::*[1][self::m:mi]"
then: # (en: 'bar', google translation)
else: # (en: 'line', google: 'linja')
- "²": # 0xb2 (en: 'two', google: 'kaksi')
- "³": # 0xb3 (en: 'three', google: 'kolme')
- "´": # 0xb4 (en: 'acute')
- "µ": # 0xb5 (en: 'micro')
- "¹": # 0xb9 (en: 'one', google: 'yksi')
- "º": # 0xb9 (en: 'masculine ordinal indicator', google: 'maskuliininen ordinaaliindikaattori') # should be 0xba
- "·":
- test:
if: "$SpeechStyle != 'ClearSpeak' or $ClearSpeak_MultSymbolDot = 'Auto'"
then: # (en: 'times', google translation)
else: # (en: 'dot', google: 'piste')
- "×": # 0xd7
- test:
if: "$SpeechStyle != 'ClearSpeak' or $ClearSpeak_MultSymbolX = 'Auto'"
then: # (en: 'times', google translation)
else_test:
if: $ClearSpeak_MultSymbolX = 'By'
then: # (google translation)
else: # (en: 'cross', google: 'ylittää')
- "÷": # 0xf7 (en: 'divided by')
- "ʰ": # 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: "yläindeksi käännetty R" # (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 translation) # FI: derivated once -> "pilkku"
- "ʺ": # 0x2ba (en: 'modifier double prime', google translation) # FI: derivated twice -> "pilkku pilkku"
- "ʻ": # 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: 'muokkain oikea puolirengas')
- "ʿ": # 0x2bf (en: 'modifier left half ring', google: 'muokkain vasemmalla puolirengas')
- "ˀ": # 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: 'modifikaattorin ympäryssuoja aksentti') # FI: should maybe be "hat", "hattu"
- "ˇ": # 0x2c7 (en: 'caron', google: 'caron') # FI: "inverted hat"? "käännetty hattu"
- "ˈ": # 0x2c8 (en: 'modifier vertical line', google translation)
- "ˉ": # 0x2c9 (en: 'modifier macron', google: 'muokkain macron')
- "ˊ": # 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 (en: 'breve', google: 'breve')
- "˙": # 0x2d9 (en: 'dot', google: 'piste')
- "˚": # 0x2da (en: 'ring above', google: 'rengas yläpuolella')
- "˛": # 0x2db
- "˜": # 0x2dc (en: 'small tilde', google: 'pieni tilde')
- "˝": # 0x2dd (en: 'double acute accent', google: 'kaksinkertainen akuutti aksentti')
- "˞": # 0x2de (en: 'modifier rhotic hook', google translation)
- "˟": # 0x2df (en: 'modifier cross accent', google translation)
- "ˠ": # 0x2e0 (en: 'modifier small gamma', google translation) # FI: should these be without "pieni" ("small")?
- "ˡ": # 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) # FI: unclear
- "˫": # 0x2eb (en: 'modifier yang departing tone mark', google translation) # FI: unclear
- "ˬ": # 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: 'vakava korostuskoriste')
- "́": # 0x301 (en: 'acute accent embellishment', google: 'akuutti korostuskoriste')
- "̂": # 0x302 (en: 'circumflex accent embellishment', google: 'ympyräkorotuskoriste')
- "̃": # 0x303 (en: 'tilde embellishment', google: 'tilde -koriste')
- "̄": # 0x304 (en: 'macron embellishment', google: 'macronin koriste')
- "̅": # 0x305 (en: 'overbar embellishment', google: 'ylipalkin koriste')
- "̆": # 0x306 (en: 'breve embellishment', google: 'breven koriste')
- "̇": # 0x307 (en: 'dot above embellishment', google: 'piste koristelun yläpuolella')
- "̈": # 0x308 (en: 'diaeresis embellishment', google: 'diaeresis -koriste')
- "̉": # 0x309 (en: 'hook above embellishment', google translation)
- "̊": # 0x30a (en: 'ring above embellishment', google: 'rengas koristelun yläpuolella')
- "̋": # 0x30b (en: 'double acute accent embellishment', google translation)
- "̌": # 0x30c (en: 'check', google: 'tarkistaa')
- "̍": # 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: 'käänteinen breve -koriste')
- "̒": # 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 (en: 'dot below embellishment', google: 'piste koristelun alapuolella')
- "̤": # 0x324 (en: 'diaeresis below embellishment', google: 'diaeresis koristelun alapuolella')
- "̥": # 0x325 (en: 'ring below embellishment', google translation)
- "̦": # 0x326 (en: 'comma below embellishment', google translation)
- "̧": # 0x327 (en: 'cedilla embellishment', google: 'cedilla -koriste')
- "̨": # 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 koristelun alapuolella')
- "̯": # 0x32f (en: 'inverted breve below embellishment', google translation)
- "̰": # 0x330 (en: 'tilde below embellishment', google: 'tilde koristelun alapuolella')
- "̱": # 0x331 (en: 'macron below embellishment', google: 'macron koristelun alapuolella')
- "̲": # 0x332 (en: 'low line embellishment', google: 'matala linjakoriste')
- "̳": # 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: 'pitkä solidus -päällekkäisyys')
- "̹": # 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: "dialyytikalla" # (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 (en: 'beta', google: 'beeta')
- "ϑ": # 0x3d1 (en: 'theta', google: 'theta')
- "ϒ": # 0x3d2 (en: 'upsilon with hook', google: 'upsilon koukkuun')
- "ϓ": # 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 (en: 'kai', google: 'kai')
- "ϵ": # 0x3f5
- "϶": # 0x3f6 (en: 'reversed epsilon', google: 'kääntynyt 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: 'olla')
- "в": # 0x432
- "г": # 0x433
- "д": # 0x434
- "е": # 0x435 (google: 'eli')
- "ж": # 0x436
- "з": # 0x437
- "и": # 0x438 (google: 'и')
- "й": # 0x439 (en: 'short i')
- "к": # 0x43a
- "л": # 0x43b
- "м": # 0x43c
- "н": # 0x43d (google: 'fi')
- "о": # 0x43e (google: 'о')
- "п": # 0x43f
- "р": # 0x440
- "с": # 0x441
- "т": # 0x442
- "у": # 0x443 (google: 'у')
- "ф": # 0x444
- "х": # 0x445
- "ц": # 0x446
- "ч": # 0x447
- "ш": # 0x448
- "щ": # 0x449
- "ъ": # 0x44a (en: 'hard sign')
- "ы": # 0x44b
- "ь": # 0x44c (en: 'soft sign')
- "э": # 0x44d (google: 'э')
- "ю": # 0x44e
- "я": # 0x44f
- "‐": # 0x2010 (en: 'hyphen', google: 'tavuviiva')
- "‑": # 0x2011 (en: 'hyphen', google translation)
- "‒": # 0x2012 (en: 'figure dash', google translation)
- "–": # 0x2013 (en: 'en dash', google: 'fi dash')
- "—": # 0x2014 (en: 'em dash', google: 'em dash')
- "―": # 0x2015 (en: 'horizontal bar', google: 'vaakasuora viiva')
- "‖": # 0x2016 (en: 'double vertical line', google: 'kaksinkertainen pystysuora viiva')
- "†": # 0x2020 (en: 'dagger', google: 'tikari')
- "‡": # 0x2021 (en: 'double dagger', google: 'kaksinkertainen tikari')
- "•": # 0x2022
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'bullet', google: 'luoti')
- "…": # 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][.='…']"
then: # (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', google: 'ja niin edelleen')
- "‰": # 0x2030 (en: 'per mille', google: 'per milli')
- "‱": # 0x2031 (en: 'per ten thousand', google: 'kymmenentuhatta')
- "′": # 0x2032 (en: 'prime', google: 'ensisijainen') # FI: "pilkku", like before
- "″": # 0x2033 (en: 'double prime', google: 'kaksinkertainen prime')
- "‴": # 0x2034 (en: 'triple prime', google: 'kolminkertainen')
- "‵": # 0x2035 (en: 'reversed prime', google: 'kääntynyt pääministeri') # FI: "käänteinen pilkku" and for the next ones
- "‶": # 0x2036 (en: 'reversed double prime', google: 'kääntynyt kaksinkertainen prime')
- "‷": # 0x2037 (en: 'reversed triple prime', google translation)
- "‸": # 0x2038
- "‹": # 0x2039 (en: 'single left pointing angle quote mark', google: 'yksi vasen piste -kulman lainausmerkki')
- "›": # 0x203a (en: 'single right pointing angle quote mark', google: 'yksi oikea osoituskulma lainausmerkki')
- "‼": # 0x203c (en: 'double factorial', google translation)
- "⁄": # 0x2044 (en: 'divided by', google: 'jaettuna') # FI: check how this works in a sentence
- "⁅": # 0x2045 (en: 'left square bracket with quill', google translation)
- "⁆": # 0x2046 (en: 'right square bracket with quill', google translation)
- "⁗": # 0x2057 (en: 'quadruple prime', google: 'neljänneksen prime') # FI: maybe "pilkku pilkku pilkku pilkku"
- "": # 0x2060
- "⁰": # 0x2070 (en: 'to the zeroth power', google translation)
- "ⁱ": # 0x2071 (en: 'to the eihth power', google translation)
- "⁴": # 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 translation)
- "⁻": # 0x207b (en: 'superscript minus', google translation)
- "⁼": # 0x207c (en: 'superscript equals sign', google translation)
- "⁽": # 0x207d (en: 'superscript left parenthesis', google translation)
- "⁾": # 0x207e (en: 'superscript right parenthesis', google translation)
- "ⁿ": # 0x207f (en: 'to the ennth power', google translation)
- "₀": # 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 (google translation)
- "₆": # 0x2086 (google translation)
- "₇": # 0x2087 (en: 'sub seven', google translation)
- "₈": # 0x2088 (en: 'sub eight', google translation)
- "₉": # 0x2089 (en: 'sub nine', google translation)
- "₊": # 0x208a (en: 'subscript plus sign', google translation)
- "₋": # 0x208b (en: 'subscript minus sign', google translation)
- "₌": # 0x208c (en: 'subscript equals sign', google translation)
- "₍": # 0x208d (en: 'subscript left parenthesis', google translation)
- "₎": # 0x208e (en: 'subscript right parenthesis', google translation)
- "ₐ": # 0x2090 (en: 'sub A', google translation)
- "ₑ": # 0x2091 (en: 'sub E', google translation)
- "ₒ": # 0x2092 (en: 'sub O', google translation)
- "ₓ": # 0x2093 (en: 'sub X', google translation)
- "ₕ": # 0x2095 (en: 'sub H', google translation)
- "ₖ": # 0x2096 (en: 'sub K', google translation)
- "ₗ": # 0x2097 (en: 'sub L', google translation)
- "ₘ": # 0x2098 (en: 'sub M', google translation)
- "ₙ": # 0x2099 (en: 'sub N', google translation)
- "ₚ": # 0x209a (en: 'sub P', google translation)
- "ₛ": # 0x209b (en: 'sub S', google translation)
- "ₜ": # 0x209c (en: 'sub T', google translation)
- "₠": # 0x20a0 (en: 'european currenty units', google translation)
- "₡": # 0x20a1 (en: 'colons', google: 'colons')
- "₢": # 0x20a2 (en: 'cruzeiro', google: 'cruzeiro')
- "₣": # 0x20a3 (en: 'franc', google: 'frangi')
- "₤": # 0x20a4 (en: 'lira', google: 'liira')
- "₥": # 0x20a5 (en: 'mills', google: 'myllyt')
- "₦": # 0x20a6 (en: 'naira', google: 'naira')
- "₧": # 0x20a7 (en: 'peseta', google: 'peseta')
- "₨": # 0x20a8 (en: 'rupees', google: 'rupia')
- "₩": # 0x20a9 (en: 'won', google: 'voitti')
- "₪": # 0x20aa (en: 'new sheqels', google: 'uudet sheqels')
- "₫": # 0x20ab (en: 'dong', google: 'dong')
- "€": # 0x20ac (en: 'euros', google: 'eurot')
- "₭": # 0x20ad (en: 'kip', google: 'kip')
- "₮": # 0x20ae (en: 'tugrik', google: 'tugrik')
- "₯": # 0x20af (en: 'drachma', google: 'drachma')
- "₰": # 0x20b0 (en: 'german pennies', google: 'saksalaiset penniä')
- "₱": # 0x20b1 (en: 'pesos', google: 'pesot')
- "₲": # 0x20b2 (en: 'guaranis', google: 'guaranis')
- "₳": # 0x20b3 (en: 'australs', google: 'itävaltait')
- "₴": # 0x20b4 (en: 'hryvnias', google: 'hryvnias')
- "₵": # 0x20b5 (en: 'cedis', google: 'cedis')
- "₶": # 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: 'vasen harppuon koristelun yläpuolella')
- "⃑": # 0x20d1 (en: 'right harpoon above embellishment', google: 'oikea harppuuna koristelun yläpuolella')
- "⃒": # 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: 'vasen nuoli koristelun yläpuolella')
- "⃗": # 0x20d7 (en: 'right arrow above embellishment', google: 'oikea nuoli koristelun yläpuolella')
- "⃘": # 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: 'kolminkertainen piste')
- "⃜": # 0x20dc (en: 'quadruple dot', google: 'nelinkertainen piste')
- "⃝": # 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: 'vasen oikea nuoli koristelun yläpuolella')
- "⃢": # 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: 'annuity symbol embellishment', 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: 'hoito')
- "℆": # 0x2106 (google translation)
- "ℇ": # 0x2107 (en: 'euler's constant', google: 'eulerin jatkuva') # FI: more German pronunciation?
- "℈": # 0x2108 (en: 'scruples', google translation)
- "℉": # 0x2109 (en: 'degrees fahrenheit', google: 'fahrenheit-astetta') # FI: more German pronunciation?
- "ℊ": # 0x210a (en: 'script g', google: 'käsikirjoitus g')
- "ℌℑℨℭ": # 0x210c, 0x2111, 0x2128, 0x212d
- T: "fraktuura" # (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', google: 'planck constant')
- "ℏ": # 0x210f
- test:
if: "($Verbosity='Terse')"
then: # (google translation)
else: # (en: 'reduced planck constant', google: 'vähentynyt planck -vakio')
- "ℐℒ℘ℬℰℱℳ": # 0x2110, 0x2112, 0x2118, 0x2130, 0x2131, 0x2133
- T: "kauno" # (en: 'script', google: 'käsikirjoitus')
- SPELL: "translate('.', 'ℐℒ℘ℬℰℱℳ', 'ILPBEFM')"
- "ℓ": # 0x2113 (en: 'script l', google: 'käsikirjoitus l')
- "℔": # 0x2114 (en: 'pounds', google translation)
- "№": # 0x2116 (en: 'number', google: 'määrä')
- "℥": # 0x2125 (en: 'ounces', google: 'unssi')
- "Ω": # 0x2126 (en: 'ohms', google: 'ohmit')
- "℧": # 0x2127 (en: 'mhos', google: 'mhos')
- "℩": # 0x2129 (en: 'turned iota', google: 'kääntyi iota')
- "K": # 0x212a (en: 'kelvin', google: 'kelvin')
- "Å": # 0x212b (en: 'angstroms', google: 'angstroms')
- "ℯ": # 0x212f (en: 'script e', google: 'käsikirjoitus 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: 'kääntyi sans-serif')
- SPELL: "translate('.', 'Ⅎ℺⅁⅂⅃⅄', 'FQGLLY')"
- "ℴ": # 0x2134 (en: 'script o', google: 'käsikirjoitus o')
- "ℵ": # 0x2135 (en: 'first transfinite cardinal', google: 'ensimmäinen transfinite kardinaali')
- "ℶ": # 0x2136 (en: 'second transfinite cardinal', google: 'toinen transfinite kardinaali')
- "ℷ": # 0x2137 (en: 'third transfinite cardinal', google: 'kolmas transfinite kardinaali')
- "ℸ": # 0x2138 (en: 'fourth transfinite cardinal', google: 'neljäs transfinite kardinaali')
- "ℼ": # 0x213c (en: 'double struck pi', google translation)
- "ℽ": # 0x213d (en: 'double struck gamma', google translation)
- "⅀": # 0x2140 (en: 'double struck n-ary summation', google translation)
- "⅋": # 0x214b (en: 'turned ampersand', google translation)
- "⅌": # 0x214c (google translation)
- "ⅎ": # 0x214e (en: 'turned F', google translation)
- "⅐": # 0x2150 (en: 'one seventh', google translation)
- "⅑": # 0x2151 (en: 'one ninth', google translation)
- "⅒": # 0x2152 (en: 'one tenth', google translation)
- "⅓": # 0x2153 (en: 'one third', google: 'kolmasosa')
- "⅔": # 0x2154 (en: 'two thirds')
- "⅕": # 0x2155 (en: 'one fifth', google: 'viidesosa')
- "⅖": # 0x2156 (en: 'two fifths')
- "⅗": # 0x2157 (en: 'three fifths')
- "⅘": # 0x2158 (en: 'four fifths')
- "⅙": # 0x2159 (en: 'one sixth', google: 'kuudesosa')
- "⅚": # 0x215a (en: 'five sixths')
- "⅛": # 0x215b (en: 'one eighth', google: 'yksi ath')
- "⅜": # 0x215c (en: 'three eighths', google: 'kolme aths')
- "⅝": # 0x215d (en: 'five eighths', google: 'viisi aths')
- "⅞": # 0x215e (en: 'seven eighths', google: 'seitsemän aths')
- "⅟": # 0x215f (en: 'one over', google translation)
- "Ⅰ": # 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', google translation)
- "←": # 0x2190 (en: 'leftwards arrow', google: 'vasen nuoli')
- "↑": # 0x2191 (en: 'upwards arrow', google: 'ylöspäin nuoli')
- "→": # 0x2192 (en: 'rightwards arrow', google: 'oikea nuoli')
- "↓": # 0x2193 (en: 'downwards arrow', google: 'alaspäin nuoli')
- "↔": # 0x2194 (en: 'left right arrow', google: 'vasen oikea nuoli')
- "↕": # 0x2195 (en: 'up down arrow', google: 'ylöspäin nuoli')
- "↖": # 0x2196 (en: 'north west arrow', google: 'luoteis -nuoli')
- "↗": # 0x2197
- test:
if: "ancestor::*[2][self::m:limit]"
then: # (en: 'approaches from below', google translation)
else: # (en: 'north east arrow', google: 'koillis -nuoli')
- "↘": # 0x2198
- test:
if: "ancestor::*[2][self::m:limit]"
then: # (en: 'approaches from above', google translation)
else: # (en: 'south east arrow', google: 'kaakkois -nuoli')
- "↙": # 0x2199 (en: 'south west arrow', google: 'lounais -nuoli')
- "↚": # 0x219a (en: 'leftwards arrow with stroke', google: 'vasen nuoli aivohalvauksella')
- "↛": # 0x219b (en: 'rightwards arrow with stroke', google: 'oikealla nuolella aivohalvauksella')
- "↜": # 0x219c (en: 'leftwards wave arrow', google: 'vasen aalto nuoli')
- "↝": # 0x219d (en: 'rightwards wave arrow', google: 'oikealla aalto nuoli')
- "↞": # 0x219e (en: 'leftwards two headed arrow', google: 'vasen kaksi päätä nuoli')
- "↟": # 0x219f (en: 'upwards two headed arrow', google: 'ylöspäin kaksi pääistä nuolta')
- "↠": # 0x21a0 (en: 'rightwards two headed arrow', google: 'oikealle kaksi pääistä nuolta')
- "↡": # 0x21a1 (en: 'downwards two headed arrow', google: 'alaspäin kaksi päätä nuolta')
- "↢": # 0x21a2 (en: 'leftwards arrow with tail', google: 'vasen nuoli hännän kanssa')
- "↣": # 0x21a3 (en: 'rightwards arrow with tail', google: 'oikealla nuolella hännän kanssa')
- "↤": # 0x21a4 (en: 'leftwards arrow from bar', google: 'vasen nuoli baarista')
- "↥": # 0x21a5 (en: 'upwards arrow from bar', google: 'nuoli ylöspäin baarista')
- "↦": # 0x21a6 (en: 'rightwards arrow from bar', google: 'oikein nuoli baarista')
- "↧": # 0x21a7 (en: 'downwards arrow from bar', google: 'alaspäin nuoli baarista')
- "↨": # 0x21a8 (en: 'up down arrow with base', google: 'ylös nuoli pohjassa')
- "↩": # 0x21a9 (en: 'leftwards arrow with hook', google: 'vasen nuoli koukussa')
- "↪": # 0x21aa (en: 'rightwards arrow with hook', google: 'oikealla nuolella koukkulla')
- "↫": # 0x21ab (en: 'leftwards arrow with loop', google: 'vasen nuoli silmukka')
- "↬": # 0x21ac (en: 'rightwards arrow with loop', google: 'oikea nuoli silmukka')
- "↭": # 0x21ad (en: 'left right wave arrow', google: 'vasen oikea aalto nuoli')
- "↮": # 0x21ae (en: 'left right arrow with stroke', google: 'vasen oikea nuoli aivohalvauksella')
- "↯": # 0x21af (en: 'downwards zigzag arrow', google: 'alaspäin zigzag -nuoli')
- "↰": # 0x21b0 (en: 'upwards arrow with tip leftwards', google: 'ylöspäin nuoli vasemmalla kärkillä')
- "↱": # 0x21b1 (en: 'upwards arrow with tip rightwards', google: 'ylöspäin nuoli, joka on kärki oikealla')
- "↲": # 0x21b2 (en: 'downwards arrow with tip leftwards', google: 'alaspäin nuoli vasemmalla kärkillä')
- "↳": # 0x21b3 (en: 'downwards arrow with tip rightwards', google: 'alaspäin nuoli kärjen oikealla puolella')
- "↴": # 0x21b4 (en: 'rightwards arrow with corner downwards', google: 'oikealla nuolella nurkkaan alaspäin')
- "↵": # 0x21b5 (en: 'downwards arrow with corner leftwards', google: 'alaspäin nuoli vasemmalla kulmassa')
- "↶": # 0x21b6 (en: 'anticlockwise top semicircle arrow', google: 'vastapäivään puolipyöriin nuoli')
- "↷": # 0x21b7 (en: 'clockwise top semicircle arrow', google: 'myötäpäivään puolipyöriin nuoli')
- "↸": # 0x21b8 (en: 'north west arrow to long bar', google: 'luoteis -nuoli pitkään baariin')
- "↹": # 0x21b9 (en: 'leftwards arrow to bar over rightwards arrow to bar', google: 'vasen nuoli baariin oikeanpuoleisen nuolen yli baariin')
- "↺": # 0x21ba (en: 'anticlockwise open circle arrow', google: 'vastapäivään avoin ympyrä nuoli')
- "↻": # 0x21bb (en: 'clockwise open circle arrow', google: 'myötäpäivään avoin ympyrä nuoli')
- "↼": # 0x21bc (en: 'left harpoon up', google: 'vasen harppuon ylös')
- "↽": # 0x21bd (en: 'left harpoon down', google: 'vasen harppuon alas')
- "↾": # 0x21be (en: 'up harpoon right', google: 'up harpoon oikeassa')
- "↿": # 0x21bf (en: 'up harpoon left', google: 'up harpoon vasemmalle')
- "⇀": # 0x21c0 (en: 'right harpoon up', google: 'oikea harppuun')
- "⇁": # 0x21c1 (en: 'right harpoon down', google: 'oikea harppuuna alas')
- "⇂": # 0x21c2 (en: 'down harpoon right', google: 'alas harppuon oikealla')
- "⇃": # 0x21c3 (en: 'down harpoon left', google: 'alas harppuun vasemmalle')
- "⇄": # 0x21c4 (en: 'rightwards arrow over leftwards arrow', google: 'oikealla nuolella vasemmanpuoleisen nuolen yli')
- "⇅": # 0x21c5 (en: 'upwards arrow leftwards of downwards arrow', google: 'ylöspäin nuoli vasemmalle alaspäin nuolesta')
- "⇆": # 0x21c6 (en: 'leftwards arrow over rightwards arrow', google: 'vasen nuoli oikealla nuolella')
- "⇇": # 0x21c7 (en: 'leftwards paired arrows', google: 'vasen parit nuolet')
- "⇈": # 0x21c8 (en: 'upwards paired arrows', google: 'ylöspäin parilliset nuolet')
- "⇉": # 0x21c9 (en: 'rightwards paired arrows', google: 'oikealla puolella nuolet')
- "⇊": # 0x21ca (en: 'downwards paired arrows', google: 'alaspäin parit nuolet')
- "⇋": # 0x21cb (en: 'left harpoon over right harpoon', google: 'vasen harpoon oikean harppuunin yli')
- "⇌": # 0x21cc (en: 'right harpoon over left harpoon', google: 'oikea harppuuna vasemman harppuunin yli')
- "⇍": # 0x21cd (en: 'leftwards double arrow with stroke', google: 'vasen kaksinkertainen nuoli aivohalvauksella')
- "⇎": # 0x21ce (en: 'left right double arrow with stroke', google: 'vasen oikea kaksinkertainen nuoli aivohalvauksella')
- "⇏": # 0x21cf (en: 'rightwards double arrow with stroke', google: 'oikeasti kaksinkertainen nuoli aivohalvauksella')
- "⇐": # 0x21d0 (en: 'leftwards double arrow', google: 'vasen kaksinkertainen nuoli')
- "⇑": # 0x21d1 (en: 'upwards double arrow', google: 'ylöspäin kaksoisnuoli')
- "⇒": # 0x21d2 (en: 'rightwards double arrow', google: 'oikealla kaksinkertaisella nuolella')
- "⇓": # 0x21d3 (en: 'downwards double arrow', google: 'alaspäin kaksinkertainen nuoli')
- "⇔": # 0x21d4 (en: 'left right double arrow', google: 'vasen oikea kaksinkertainen nuoli')
- "⇕": # 0x21d5 (en: 'up down double arrow', google: 'ylös alas kaksinkertainen nuoli')
- "⇖": # 0x21d6 (en: 'north west double arrow', google: 'luoteisosan kaksinkertainen nuoli')
- "⇗": # 0x21d7 (en: 'north east double arrow', google: 'koillis -kaksinkertainen nuoli')
- "⇘": # 0x21d8 (en: 'south east double arrow', google: 'kaakkois -kaksinkertainen nuoli')
- "⇙": # 0x21d9 (en: 'south west double arrow', google: 'lounais -kaksinkertainen nuoli')
- "⇚": # 0x21da (en: 'leftwards triple arrow', google: 'vasen kolminkertainen nuoli')
- "⇛": # 0x21db (en: 'rightwards triple arrow', google: 'oikealle kolminkertainen nuoli')
- "⇜": # 0x21dc (en: 'leftwards squiggle arrow', google: 'vasen nuoli')
- "⇝": # 0x21dd (en: 'rightwards squiggle arrow', google: 'oikealla puolella nuoli')
- "⇞": # 0x21de (en: 'upwards arrow with double stroke', google: 'ylöspäin nuoli kaksinkertaisella iskulla')
- "⇟": # 0x21df (en: 'downwards arrow with double stroke', google: 'alaspäin nuoli kaksinkertaisella iskulla')
- "⇠": # 0x21e0 (en: 'leftwards dashed arrow', google: 'vasen katkoviiva nuoli')
- "⇡": # 0x21e1 (en: 'upwards dashed arrow', google: 'ylöspäin katkoviiva nuoli')
- "⇢": # 0x21e2 (en: 'rightwards dashed arrow', google: 'oikealla katkoviivalla nuolella')
- "⇣": # 0x21e3 (en: 'downwards dashed arrow', google: 'alaspäin katkoviiva nuoli')
- "⇤": # 0x21e4 (en: 'leftwards arrow to bar', google: 'vasen nuoli baariin')
- "⇥": # 0x21e5 (en: 'rightwards arrow to bar', google: 'oikein nuoli baariin')
- "⇦": # 0x21e6 (en: 'leftwards white arrow', google: 'vasen valkoinen nuoli')
- "⇧": # 0x21e7 (en: 'upwards white arrow', google: 'ylöspäin valkoinen nuoli')
- "⇨": # 0x21e8 (en: 'rightwards white arrow', google: 'oikealle valkoinen nuoli')
- "⇩": # 0x21e9 (en: 'downwards white arrow', google: 'alaspäin valkoinen nuoli')
- "⇪": # 0x21ea (en: 'upwards white arrow from bar', google: 'ylöspäin valkoinen nuoli baarista')
- "⇫": # 0x21eb (en: 'upwards white arrow on pedestal', google translation)
- "⇬": # 0x21ec (en: 'upwards white arrow on pedestal with horizontal bar', google translation)
- "⇭": # 0x21ed (en: 'upwards white arrow on pedestal with vertical bar', google translation)
- "⇮": # 0x21ee (en: 'upwards white double arrow', google translation)
- "⇯": # 0x21ef (en: 'upwards white double arrow on pedestal', google translation)
- "⇰": # 0x21f0 (en: 'rightwards white arrow from wall', google translation)
- "⇱": # 0x21f1 (en: 'north west arrow to corner', google translation)
- "⇲": # 0x21f2 (en: 'south east arrow to corner', google translation)
- "⇳": # 0x21f3 (en: 'up down white arrow', google translation)
- "⇴": # 0x21f4 (en: 'right arrow with small circle', google translation)
- "⇵": # 0x21f5 (en: 'downwards arrow leftwards of upwards arrow', google: 'alaspäin nuoli ylöspäin ylöspäin nuolesta')
- "⇶": # 0x21f6 (en: 'three rightwards arrows', google translation)
- "⇷": # 0x21f7 (en: 'leftwards arrow with vertical stroke', google translation)
- "⇸": # 0x21f8 (en: 'rightwards arrow with vertical stroke', google translation)
- "⇹": # 0x21f9 (en: 'left right arrow with vertical stroke', google translation)
- "⇺": # 0x21fa (en: 'leftwards arrow with double vertical stroke', google translation)
- "⇻": # 0x21fb (en: 'rightwards arrow with double vertical stroke', google translation)
- "⇼": # 0x21fc (en: 'left right arrow with double vertical stroke', google translation)
- "⇽": # 0x21fd (en: 'leftwards open headed arrow', google: 'vasen auki pää nuoli')
- "⇾": # 0x21fe (en: 'rightwards open headed arrow', google: 'oikea avaa pään nutrow')
- "⇿": # 0x21ff (en: 'left right open headed arrow', google: 'vasen oikeaa auki nuoli')
- "∀": # 0x2200 (en: 'for all')
- "∁": # 0x2201
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "komplementti" # (en: 'complement of', google: 'täydennys')
- "∂": # 0x2202
- test:
if: "$Verbosity='Terse'"
then: # (en: 'partial', google translation)
else: # (en: 'partial derivative', google: 'osittainen johdannainen')
- "∃": # 0x2203 (en: 'there exists')
- "∄": # 0x2204 (en: 'there does not exist', google: 'ei ole')
- "∅": # 0x2205 (en: 'empty set', google: 'tyhjä sarja')
- "∆": # 0x2206
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "delta" # (en: 'laplacian of', google: 'laplacian of')
- "∇": # 0x2207
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "nabla" # (en: 'gradient of', google: 'gradientti')
- "∈": # 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: # (en: 'in', 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', google: 'kuulua')
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', google: 'kuuluu')
- "∉": # 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', google: 'ei kuulu')
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', google: 'ei kuulu')
- "∊": # 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: # (en: 'in', 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', google: 'kuulua')
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', google: 'kuuluu')
- "∋": # 0x220b (en: 'contains the member', google: 'sisältää jäsenen')
- "∌": # 0x220c (en: 'does not contain the member', google: 'ei sisällä jäsentä')
- "∍": # 0x220d (en: 'contains the member', google: 'sisältää jäsenen')
- "∎": # 0x220e (en: 'end of proof', google: 'todistuksen loppu')
- "∏": # 0x220f (en: 'product', google: 'tuote')
- "∐": # 0x2210 (google: 'kopiointi')
- "∑": # 0x2211 (en: 'sum')
- "−": # 0x2212 (en: 'minus')
- "∓": # 0x2213 (en: 'minus or plus') # FI: check how the hyphen behaves
- "∔": # 0x2214 (en: 'dot plus', google: 'dot plus') # FI: check how the hyphen behaves
- "∕": # 0x2215 (en: 'divided by', google: 'jaettuna')
- "∖": # 0x2216 (en: 'set minus', google: 'aseta miinus')
- "∗": # 0x2217 (en: 'times', google: 'ajat')
- "∘": # 0x2218 (en: 'composed with', google: 'koostuu')
- "∙": # 0x2219
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'times', google: 'ajat')
- "√": # 0x221a
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "neliöjuuri" # (en: 'square root of')
- "∛": # 0x221b
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "kuutiojuuri" # (en: 'cube root of')
- "∜": # 0x221c
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "neljäs juuri" # (en: 'fourth root of')
- "∝": # 0x221d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "verrannollinen" # (en: 'proportional to', google: 'suhteessa')
- "∞": # 0x221e (en: 'infinity')
- "∟": # 0x221f (en: 'right angle', google: 'oikea kulma')
- "∠": # 0x2220 (en: 'angle')
- "∡": # 0x2221 (en: 'measured angle')
- "∢": # 0x2222 (en: 'spherical angle', google: 'pallomainen kulma')
- "∣": # 0x2223 (en: 'divides')
- "∤": # 0x2224 (en: 'does not divide')
- "∧": # 0x2227 (en: 'and', google: 'ja')
- "∨": # 0x2228 (en: 'or', google: 'tai')
- "∩": # 0x2229 (en: 'intersection', google: 'risteys')
- "∪": # 0x222a (en: 'union', google: 'liitto')
- "∫": # 0x222b (en: 'integral', google: 'olennainen')
- "∬": # 0x222c (en: 'double integral', google: 'kaksinkertainen integraali')
- "∭": # 0x222d (en: 'triple integral', google: 'kolminkertainen integraali')
- "∮": # 0x222e (en: 'contour integral', google: 'muoto -integraali')
- "∯": # 0x222f (en: 'surface integral', google: 'pinta -integraali')
- "∰": # 0x2230 (en: 'volume integral', google: 'volyymin integraali')
- "∱": # 0x2231 (en: 'clockwise integral', google: 'myötäpäivään olennainen')
- "∲": # 0x2232 (en: 'clockwise contour integral', google: 'myötäpäivään ääriviivat')
- "∳": # 0x2233 (en: 'anticlockwise contour integral', google: 'vastapäivään ääriviivat')
- "∴": # 0x2234 (en: 'therefore', google: 'siksi')
- "∵": # 0x2235 (en: 'because')
- "∶": # 0x2236
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "suhde" # (en: 'to', google: 'to')
- "∷": # 0x2237 (en: 'as', google: 'kuten')
- "∸": # 0x2238 (en: 'dot minus')
- "∹": # 0x2239 (en: 'has excess compared to', google: 'on ylimääräinen verrattuna')
- "∺": # 0x223a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrisesti verrannollinen" # (en: 'geometrically proportional to', google: 'geometrisesti verrannollinen') # FI: "geometrisesti verranollinen"?
- "∻": # 0x223b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "homoteettinen" # (en: 'homothetic to', google: 'homotetiikka')
- "∼": # 0x223c (en: 'varies with', google: 'vaihtelee')
- "∽": # 0x223d (en: 'reversed tilde', google: 'kääntynyt tilde')
- "∾": # 0x223e # FI: apparently has to do with inverse hyperbolic cosine
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "positiivisin" # (en: 'most positive', google: 'positiivisin') # FI: unclear translation
- "∿": # 0x223f (en: 'sine wave', google: 'siniaalto')
- "≀": # 0x2240 (en: 'wreath product', google: 'seppele tuote')
- "≁": # 0x2241 (en: 'not tilde')
- "≂": # 0x2242 (en: 'minus tilde')
- "≃": # 0x2243
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "asymptoottisesti yhtä suuri kuin" # (en: 'asymptotically equal to', google: 'asymptoottisesti yhtä suuri kuin')
- "≄": # 0x2244
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei asymptoottisesti yhtäsuuri kuin" # (en: 'not asymptotically equal to', google: 'ei asymptoottisesti yhtä suuri kuin')
- "≅": # 0x2245
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "likimäärin yhtä suuri kuin" # (en: 'approximately equal to', google: 'suunnilleen yhtä suuri kuin')
- "≆": # 0x2246
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "likimäärin mutta ei yhtä suuri kuin" # (en: 'approximately but not actually equal to', google: 'suunnilleen, mutta ei oikeastaan yhtä suuri kuin')
- "≇": # 0x2247
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei likimäärin eikä yhtä suuri kuin" # (en: 'neither approximately nor actually equal to', google: 'ei suunnilleen eikä oikeastaan yhtä suuri kuin')
- "≈": # 0x2248
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "likimäärin yhtä suuri kuin" # (en: 'almost equal to', google: 'melkein yhtä suuri kuin')
- "≉": # 0x2249
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei likimäärin yhtä suuri kuin" # (en: 'not almost equal to', google: 'ei melkein yhtä suuri kuin')
- "≊": # 0x224a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "lähes tai tasan yhtä suuri kuin" # (en: 'almost equal or equal to', google: 'melkein yhtä suuri tai yhtä suuri kuin')
- "≋": # 0x224b (en: 'triple tilde', google: 'kolminkertainen tilde')
- "≌": # 0x224c (en: 'are all equal to', google: 'ovat kaikki yhtä suuret kuin')
- "≍": # 0x224d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtäpitävä" # (en: 'equivalent to', google: 'vastaa')
- "≎": # 0x224e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrisesti yhtäpitävä" # (en: 'geometrically equivalent to', google: 'geometrisesti vastaavat')
- "≏": # 0x224f
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "ero välillä" # (en: 'difference between', google: 'ero välillä')
- "≐": # 0x2250 (en: 'approaches the limit')
- "≑": # 0x2251
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "geometrisesti yhtä kuin" # (en: 'geometrically equal to', google: 'geometrisesti yhtä suuri kuin')
- "≒": # 0x2252
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "likimäärin yhtä suuri kuin tai kohteen kuva" # (google: 'suunnilleen yhtä suuri tai kuva')
- "≓": # 0x2253
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is the', google translation)
- T: "kohteen kuva tai likimäärin yhtä suuri kuin" # (google: 'kuva tai suunnilleen yhtä suuri kuin')
- "≔": # 0x2254 (en: 'colon equals', google: 'colol -eaksi')
- "≕": # 0x2255 (en: 'equals colon', google: 'vastaa kaksoispistettä')
- "≖": # 0x2256 (en: 'ring in equal to', google: 'rengas yhtä suuri kuin')
- "≗": # 0x2257
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ympyrä yhtä suuri kuin" # (en: 'approximately equal to', google: 'suunnilleen yhtä suuri kuin')
- "≘": # 0x2258 (en: 'corresponds to', google: 'vastaa')
- "≙": # 0x2259 (en: 'estimates', google: 'arviot')
- "≚": # 0x225a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "samakulmainen kuin" # (en: 'equiangular to', google: 'tasa -arvoinen')
- "≛": # 0x225b (en: 'star equals', google: 'tähti on yhtä suuri kuin')
- "≜": # 0x225c (en: 'delta equals', google: 'delta on tasa -arvoinen')
- "≝": # 0x225d (en: 'is defined to be', google: 'on määritelty olevan')
- "≞": # 0x225e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "mitatusti yhtä suuri kuin" # (en: 'measured by', google: 'mitattu')
- "≟": # 0x225f (en: 'has an unknown relationship with', google: 'on tuntematon suhde')
- "≠": # 0x2260
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "erisuuri kuin" # (en: 'not equal to', google: 'ei yhtä suuri kuin')
- "≡": # 0x2261
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "identtinen" # (en: 'identical to', google: 'yhtäläinen')
- "≢": # 0x2262
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "identtisesti eri kuin" # (en: 'not identical to', google: 'ei identtinen')
- "≣": # 0x2263
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "vahvasti ekvivalentti" # (en: 'strictly equivalent to', google: 'tiukasti vastaa')
- "≦": # 0x2266 (en: 'less than over equal to', google: 'vähemmän kuin yli yhtä suuri kuin')
- "≧": # 0x2267 (en: 'greater than over equal to', google: 'suurempi kuin yli yhtä suuri kuin')
- "≨": # 0x2268
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "pienempi mutta ei yhtä suuri kuin" # (en: 'less than but not equal to', google: 'vähemmän kuin, mutta ei yhtä suuri kuin')
- "≩": # 0x2269
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "suurempi mutta ei yhtä suuri kuin" # (en: 'greater than but not equal to', google: 'suurempi kuin, mutta ei yhtä suuri kuin')
- "≪": # 0x226a
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "paljon pienempi kuin" # (en: 'much less than', google: 'paljon vähemmän kuin')
- "≫": # 0x226b
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "paljon suurempi kuin" # (en: 'much greater than')
- "≬": # 0x226c
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "välissä" # (en: 'between', google: 'välillä')
- "≭": # 0x226d
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei yhtäpitävä" # (en: 'not equivalent to', google: 'ei vastaa')
- "≮": # 0x226e
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei aidosti pienempi kuin" # (en: 'not less than', google: 'ei vähempää kuin')
- "≯": # 0x226f
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei aidosti suurempi kuin" # (en: 'not greater than', google: 'enintään')
- "≰": # 0x2270
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei pienempi eikä yhtäsuuri kuin" # (en: 'neither less than nor equal to', google: 'ei vähemmän kuin yhtä suuri kuin')
- "≱": # 0x2271
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei suurempi eikä yhtäsuuri kuin" # (en: 'neither greater than nor equal to', google: 'ei suurempi kuin yhtä suuri kuin')
- "≲": # 0x2272
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "pienempi tai yhtäpitävä" # (en: 'less than or equivalent to', google: 'vähemmän tai vastaavat')
- "≳": # 0x2273
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "suurempi tai yhtäpitävä" # (en: 'greater than or equivalent to', google: 'suurempi tai vastaa')
- "≴": # 0x2274
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei pienempi eikä yhtäpitävä" # (en: 'neither less than nor equivalent to', google: 'ei vähemmän kuin vastaa')
- "≵": # 0x2275
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei suurempi eikä yhtäpitävä" # (en: 'neither greater than nor equivalent to', google: 'ei suurempi kuin vastaava')
- "≶": # 0x2276
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "aidosti pienempi tai suurempi kuin" # (en: 'less than or greater than', google: 'vähemmän tai suurempi kuin')
- "≷": # 0x2277
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "aidosti suurempi tai pienempi kuin" # (en: 'greater than or less than', google: 'suurempi tai vähemmän kuin')
- "≸": # 0x2278
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei aidosti pienempi eikä suurempi kuin" # (en: 'neither less than nor greater than', google: 'ei vähemmän kuin suurempi kuin')
- "≹": # 0x2279
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei aidosti suurempi eikä pienempi kuin" # (en: 'neither greater than nor less than', google: 'ei suurempi kuin vähemmän kuin')
- "≺": # 0x227a (en: 'precedes')
- "≻": # 0x227b (en: 'succeeds', google: 'onnistuu')
- "≼": # 0x227c (en: 'precedes or is equal to', google: 'edeltää tai on yhtä suuri kuin')
- "≽": # 0x227d (en: 'succeeds or is equal to', google: 'onnistuu tai on yhtä suuri')
- "≾": # 0x227e (en: 'precedes or is equivalent to', google: 'edeltää tai vastaa')
- "≿": # 0x227f (en: 'succeeds or is equivalent to', google: 'onnistuu tai vastaa')
- "⊀": # 0x2280 (en: 'does not precede', google: 'ei edeltä')
- "⊁": # 0x2281 (en: 'does not succeed', google: 'ei onnistu')
- "⊂": # 0x2282
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "osajoukko" # (en: 'subset of', google: 'alajoukko')
- "⊃": # 0x2283
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "sisältää osajoukon" # (en: 'superset of', google: 'superset of')
- "⊄": # 0x2284
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei ole osajoukko" # (en: 'not a subset of', google: 'ei osa')
- "⊅": # 0x2285
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei sisällä osajoukkoa" # (en: 'not a superset of', google: 'ei ylimääräistä')
- "⊆": # 0x2286
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "osajoukko tai yhtä kuin" # (en: 'subset of or equal to', google: 'alajoukko tai yhtä suuri kuin')
- "⊇": # 0x2287
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is a', google translation)
- T: "sisältää osajoukon tai on yhtä kuin" # (en: 'superset of or equal to', google: 'superset tai yhtä suuri kuin')
- "⊈": # 0x2288
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei osajoukko eikä yhtä kuin" # (en: 'neither a subset of nor equal to', google: 'ei alajoukko eikä yhtä suuri kuin')
- "⊉": # 0x2289
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei sisällä osajoukkoa eikä yhtä kuin" # (en: 'neither a superset of nor equal to', google: 'ei ylenmääräinen eikä yhtä suuri kuin')
- "⊊": # 0x228a (en: 'subset of with not equal to', google: 'osajoukko, joka ei ole yhtä suuri kuin')
- "⊋": # 0x228b (en: 'superset of with not equal to', google: 'superset of with ei ole yhtä suuri kuin')
- "⊌": # 0x228c (en: 'multiset', google: 'multiset')
- "⊍": # 0x228d (en: 'multiset multiplication', google: 'multiset -kertolasku')
- "⊎": # 0x228e (en: 'multiset union', google: 'multiset union')
- "⊏": # 0x228f (en: 'square image of', google: 'neliökuva')
- "⊐": # 0x2290 (en: 'square original of', google: 'neliön alkuperäinen')
- "⊑": # 0x2291 (en: 'square image of or equal to', google: 'neliökuva tai yhtä suuri kuin')
- "⊒": # 0x2292 (en: 'square original of or equal to', google: 'neliön alkuperäinen tai yhtä suuri kuin')
- "⊓": # 0x2293 (en: 'square cap', google: 'neliö -isot')
- "⊔": # 0x2294 (en: 'square cup', google: 'square cup')
- "⊕": # 0x2295 (en: 'circled plus')
- "⊖": # 0x2296 (en: 'circled minus')
- "⊗": # 0x2297 (en: 'circled times', google: 'ympyräajat')
- "⊘": # 0x2298 (en: 'circled slash', google: 'ympyräviiva')
- "⊙": # 0x2299 (en: 'circled dot operator', google: 'ympyräpisteoperaattori')
- "⊚": # 0x229a (en: 'circled ring', google: 'ympyrä rengas')
- "⊛": # 0x229b (en: 'circled asterisk', google: 'ympyrä tähdellä')
- "⊜": # 0x229c (en: 'circled equals', google: 'ympyröity tasa -arvoinen')
- "⊝": # 0x229d (en: 'circled dash')
- "⊞": # 0x229e (en: 'squared plus', google: 'squared plus')
- "⊟": # 0x229f (en: 'squared minus', google: 'neliö miinus')
- "⊠": # 0x22a0 (en: 'squared times', google: 'neliöajat')
- "⊡": # 0x22a1 (en: 'squared dot operator', google: 'squared dot -operaattori')
- "⊢": # 0x22a2 (en: 'proves', google: 'todistaa')
- "⊣": # 0x22a3 (en: 'does not yield', google: 'ei tuota')
- "⊤": # 0x22a4 (google: 'ylhäältä')
- "⊥": # 0x22a5
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ylös osoittava nupi" # (google: 'pohja')
- "⊦": # 0x22a6 (en: 'reduces to', google: 'vähentää')
- "⊧": # 0x22a7 (en: 'models', google: 'malleja')
- "⊨": # 0x22a8
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "tosi" # (en: 'true', google: 'totta')
- "⊩": # 0x22a9 (en: 'forces', google: 'voimat')
- "⊪": # 0x22aa (en: 'triple vertical bar right turnstile', google: 'kolminkertainen pystysuora palkki oikean kääntölaite')
- "⊫": # 0x22ab (en: 'double vertical bar double right turnstile', google: 'kaksois pystysuora palkki kaksinkertainen oikea käänne')
- "⊬": # 0x22ac (en: 'does not prove', google: 'ei todista')
- "⊭": # 0x22ad
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "epätosi" # (en: 'not true', google: 'ei totta')
- "⊮": # 0x22ae (en: 'does not force', google: 'ei pakota')
- "⊯": # 0x22af (en: 'negated double vertical bar double right turnstile', google: 'kielteinen kaksinkertainen pystysuora palkki kaksinkertainen oikea käänne')
- "⊰": # 0x22b0 (en: 'precedes under relation', google: 'edeltää suhteessa')
- "⊱": # 0x22b1 (en: 'succeeds under relation', google: 'onnistuu suhteessa')
- "⊲": # 0x22b2
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "normaali aliryhmä" # (en: 'a normal subgroup of', google: 'normaali alaryhmä')
- "⊳": # 0x22b3 (en: 'contains as a normal subgroup', google: 'sisältää normaalina alaryhmänä')
- "⊴": # 0x22b4
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "normaali aliryhmä tai yhtä kuin" # (en: 'a normal subgroup of or equal to', google: 'normaali alaryhmä tai yhtä suuri')
- "⊵": # 0x22b5 (en: 'contains as a normal subgroup or equal to', google: 'sisältää normaalina alaryhmänä tai yhtä suuri kuin')
- "⊶": # 0x22b6
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "alkukuva" # (en: 'the original of', google: 'alkuperäinen')
- "⊷": # 0x22b7
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kuva" # (en: 'an image of', google: 'kuva')
- "⊸": # 0x22b8
- "⊹": # 0x22b9 (en: 'hermitian conjugate matrix', google: 'hermitian konjugaattimatriisi')
- "⊺": # 0x22ba (google: 'interkalaatti')
- "⊻": # 0x22bb
- "⊼": # 0x22bc
- "⊽": # 0x22bd (google: 'ei myöskään')
- "⊾": # 0x22be (en: 'right angle with arc', google: 'suorakulma kaarilla')
- "⊿": # 0x22bf (en: 'right triangle')
- "⋀": # 0x22c0 (en: 'logical and', google: 'looginen ja')
- "⋁": # 0x22c1 (en: 'logical or', google: 'looginen tai')
- "⋂": # 0x22c2 (en: 'intersection', google: 'risteys')
- "⋃": # 0x22c3 (en: 'union', google: 'liitto')
- "⋄": # 0x22c4 (en: 'diamond operator', google: 'timanttioperaattori')
- "⋅": # 0x22c5
- test:
if: "@data-chem-formula-op"
then: # (en: 'dot', google translation)
else: # (en: 'times', google: 'ajat')
- "⋆": # 0x22c6 (en: 'times', google: 'ajat')
- "⋇": # 0x22c7 (en: 'division times', google: 'jako -ajat')
- "⋈": # 0x22c8 (en: 'bowtie', google: 'rusetti')
- "⋉": # 0x22c9
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "vasemmanpuoleinen normaalitekijäinen puolisuora tulo" # (en: 'the left normal factor semidirect product of', google: 'vasen normaali tekijä semidirect -tuote')
- "⋊": # 0x22ca
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "oikeanpuoleinen normaalitekijäinen puolisuora tulo" # (en: 'the right normal factor semidirect product of', google: 'oikea normaali tekijä semidirect -tuote')
- "⋋": # 0x22cb
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "vasemmanpuoleinen puolisuora tulo" # (en: 'the left semidirect product of', google: 'vasen puolisirektin tuote')
- "⋌": # 0x22cc
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "oikeanpuoleinen puolisuora tulo" # (en: 'the right semidirect product of', google: 'oikea semidirect -tuote')
- "⋍": # 0x22cd (en: 'reversed tilde equals', google: 'käänteinen tilde on tasa -arvoinen')
- "⋎": # 0x22ce (en: 'curly logical or', google: 'kihara looginen tai')
- "⋏": # 0x22cf (en: 'curly logical and', google: 'curly looginen ja')
- "⋐": # 0x22d0
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kaksoisosajoukko" # (en: 'a double subset of', google: 'kaksinkertainen osajoukko')
- "⋑": # 0x22d1
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kaksoisylijoukko" # (en: 'a double superset of', google: 'kaksinkertainen superset')
- "⋒": # 0x22d2
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "kaksoisleikkaus" # (en: 'double intersection of', google: 'kaksinkertainen risteys')
- "⋓": # 0x22d3
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "kaksoisunioni" # (en: 'double union of', google: 'kaksinkertainen liitto')
- "⋔": # 0x22d4
- test:
if: "$Verbosity!='Terse'"
then: # (google translation)
- T: "hanko" # (en: 'proper intersection of', google: 'oikea risteys')
- "⋕": # 0x22d5
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtäsuuri ja yhdensuuntainen" # (en: 'equal to and parallel to', google: 'yhtä suuri kuin sen kanssa ja yhdensuuntainen')
- "⋖": # 0x22d6 (en: 'less than with dot', google: 'vähemmän kuin pisteellä')
- "⋗": # 0x22d7 (en: 'greater than with dot', google: 'suurempi kuin pisteellä')
- "⋘": # 0x22d8
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "hyvin paljon pienempi kuin" # (en: 'very much less than', google: 'hyvin vähemmän kuin')
- "⋙": # 0x22d9
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "hyvin paljon suurempi kuin" # (en: 'very much greater than', google: 'erittäin suurempi kuin')
- "⋚": # 0x22da
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "pienempi, yhtäsuuri tai suurempi kuin" # (en: 'less than equal to or greater than', google: 'vähemmän kuin yhtä suuri tai suurempi kuin')
- "⋛": # 0x22db
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "suurempi, yhtäsuuri tai pienempi kuin" # (en: 'greater than equal to or less than', google: 'suurempi kuin yhtä suuri tai vähemmän kuin')
- "⋜": # 0x22dc
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtäsuuri tai pienempi kuin" # (en: 'equal to or less than', google: 'yhtä suuri tai vähemmän kuin')
- "⋝": # 0x22dd
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtäsuuri tai suurempi kuin" # (en: 'equal to or greater than', google: 'yhtä suuri tai suurempi kuin')
- "⋞": # 0x22de
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtä kuin tai edeltää" # (en: 'equal to or precedes', google: 'yhtä suuri tai edeltää')
- "⋟": # 0x22df
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "yhtä kuin tai seuraa" # (en: 'equal to or succeeds', google: 'yhtä suuri tai onnistuu')
- "⋠": # 0x22e0 (en: 'does not precede nor is equal to', google: 'ei edeltä eikä ole yhtä suuri kuin')
- "⋡": # 0x22e1 (en: 'does not succeed nor is equal to', google: 'ei onnistu eikä ole yhtä suuri kuin')
- "⋢": # 0x22e2 (en: 'not square image of or equal to', google: 'ei neliökuva tai yhtä suuri kuin')
- "⋣": # 0x22e3 (en: 'not square original of or equal to', google: 'ei neliömäinen alkuperäinen tai yhtä suuri kuin')
- "⋤": # 0x22e4 (en: 'square image of or not equal to', google: 'neliökuva tai ei ole yhtä suuri kuin')
- "⋥": # 0x22e5 (en: 'square original of or not equal to', google: 'neliön alkuperäinen tai ei ole yhtä suuri kuin')
- "⋦": # 0x22e6
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "pienempi kuin mutta ei ekvivalentti" # (en: 'less than but not equivalent to', google: 'vähemmän kuin, mutta ei vastaava')
- "⋧": # 0x22e7
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "suurempi kuin mutta ei ekvivalentti" # (en: 'greater than but not equivalent to', google: 'suurempi kuin mutta ei vastaa')
- "⋨": # 0x22e8 (en: 'precedes but is not equivalent to', google: 'edeltää, mutta ei vastaa')
- "⋩": # 0x22e9 (en: 'succeeds but is not equivalent to', google: 'onnistuu, mutta ei vastaa')
- "⋪": # 0x22ea
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei ole normaali aliryhmä" # (en: 'not a normal subgroup of', google: 'ei normaali alaryhmä')
- "⋫": # 0x22eb (en: 'does not contain as a normal subgroup', google: 'ei sisällä normaalia alaryhmää')
- "⋬": # 0x22ec
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "ei ole normaali aliryhmä tai yhtä kuin" # (en: 'not a normal subgroup of nor is equal to', google: 'ei normaali alaryhmä, joka ei ole yhtä suuri')
- "⋭": # 0x22ed (en: 'does not contain as a normal subgroup nor is equal to', google: 'ei sisällä normaalia alaryhmää eikä ole yhtä suuri kuin')
- "⋮": # 0x22ee (en: 'vertical ellipsis', google: 'pystysuora ellipsis') # FI: context? used in matrices?
- "⋯": # 0x22ef (en: 'dot dot dot', google: 'dot dot dot')
- "⋰": # 0x22f0 (en: 'upwards diagonal ellipsis', google: 'ylöspäin diagonaalinen ellipsi') # FI: context? used in matrices?
- "⋱": # 0x22f1 (en: 'diagonal ellipsis', google: 'diagonaalinen ellipsis') # FI: context? used in matrices?
- "⋲": # 0x22f2 (en: 'element of with long horizontal stroke', google: 'elementti pitkällä vaakasuoralla iskulla')
- "⋳": # 0x22f3 (en: 'element of with vertical bar at end of horizontal stroke', google: 'elementti pystysuoralla tankolla vaakasuoran iskun lopussa')
- "⋴": # 0x22f4 (en: 'element of with vertical bar at end of horizontal stroke', google: 'elementti pystysuoralla tankolla vaakasuoran iskun lopussa')
- "⋵": # 0x22f5 (en: 'element of with dot above', google: 'elementti yllä olevalla pisteellä')
- "⋶": # 0x22f6 (en: 'element of with overbar', google: 'elementti ylikuormituksella')
- "⋷": # 0x22f7 (en: 'element of with overbar', google: 'elementti ylikuormituksella')
- "⋸": # 0x22f8 (en: 'element of with underbar', google: 'elementti alakerroksella')
- "⋹": # 0x22f9 (en: 'element of with two horizontal strokes', google: 'elementti kahdella vaakasuuntaisella iskulla')
- "⋺": # 0x22fa (en: 'contains with long horizontal stroke', google: 'sisältää pitkällä vaakasuoralla iskulla')
- "⋻": # 0x22fb (en: 'contains with vertical bar at end of horizontal stroke', google: 'sisältää pystysuoran palkin vaakasuoran iskun lopussa')
- "⋼": # 0x22fc (en: 'contains with vertical bar at end of horizontal stroke', google: 'sisältää pystysuoran palkin vaakasuoran iskun lopussa')
- "⋽": # 0x22fd (en: 'contains with overbar', google: 'sisältää ylikuormituksen kanssa')
- "⋾": # 0x22fe (en: 'contains with overbar', google: 'sisältää ylikuormituksen kanssa')
- "⋿": # 0x22ff (google: 'z -merkintälaukun jäsenyys')
- "⌀": # 0x2300 (en: 'diameter')
- "⌁": # 0x2301 (en: 'electric arrow', google translation)
- "⌂": # 0x2302 (en: 'house')
- "⌃": # 0x2303 (en: 'up arrowhead', google translation)
- "⌄": # 0x2304 (en: 'down arrowhead', google translation)
- "⌅": # 0x2305 (en: 'projective', google: 'projektiivinen')
- "⌆": # 0x2306 (en: 'perspective', google: 'näkökulma')
- "⌇": # 0x2307 (en: 'wavy line', google translation)
- "⌈": # 0x2308 (en: 'left ceiling')
- "⌉": # 0x2309 (en: 'right ceiling')
- "⌊": # 0x230a (en: 'left floor')
- "⌋": # 0x230b (en: 'right floor', google: 'oikea kerros')
- "⌌": # 0x230c (en: 'bottom right crop', google: 'oikea alareuna')
- "⌍": # 0x230d (en: 'bottom left crop', google: 'vasen alakulma')
- "⌎": # 0x230e (en: 'top right crop', google: 'oikea yläosa')
- "⌏": # 0x230f (en: 'top left crop', google: 'vasen yläosa sato')
- "⌐": # 0x2310 (en: 'reversed not sign', google: 'kääntynyt ei allekirjoitettu')
- "⌑": # 0x2311 (google translation)
- "⌒": # 0x2312 (en: 'arc', google: 'kaari')
- "⌓": # 0x2313 (en: 'segment')
- "⌔": # 0x2314 (en: 'sector', google translation)
- "⌕": # 0x2315 (google: 'puhelintallistin')
- "⌖": # 0x2316 (en: 'position indicator crosshairs', google: 'aseman ilmaisimen ristikkäit')
- "⌗": # 0x2317 (en: 'viewdata square', google translation)
- "⌘": # 0x2318 (en: 'place of interest sign', google: 'kiinnostuksen kohteena oleva merkki')
- "⌙": # 0x2319 (en: 'turned not sign', google translation)
- "⌚": # 0x231a (en: 'watch', google: 'katsella')
- "⌛": # 0x231b (en: 'hourglass', google translation)
- "⌜": # 0x231c (en: 'top left corner', google: 'vasen yläkulma')
- "⌝": # 0x231d (en: 'top right corner', google: 'oikea yläkulma')
- "⌞": # 0x231e (en: 'bottom left corner', google: 'vasen alakulma')
- "⌟": # 0x231f (en: 'bottom right corner', google: 'oikea alakulma')
- "⌠": # 0x2320 (en: 'top half integral', google: 'top -puoliksi olennainen')
- "⌡": # 0x2321 (en: 'bottom half integral', google: 'pohjapuoliskon integraali')
- "⌢": # 0x2322 (en: 'frown', google: 'kulma')
- "⌣": # 0x2323 (en: 'smile', google: 'hymy')
- "⌤": # 0x2324 (en: 'up arrowhead between two horizontal bars', google translation)
- "⌥": # 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', google: 'vasen osoituskulmakiinnike')
- "〉": # 0x232a (en: 'right pointing angle bracket', google: 'oikea osoituskulmakiinnike')
- "⌫": # 0x232b (en: 'erase to the left', google translation)
- "⌬": # 0x232c (en: 'benzene ring', google translation)
- "⌭": # 0x232d (google: 'sylinteryys')
- "⌮": # 0x232e (en: "all around profile" google: 'ympäri profiilia') # FI: translation unclear
- "⌯": # 0x232f (en: 'symmetry', google translation)
- "⌰": # 0x2330 (en: 'total runout', google translation) # FI: meaning bit unclear, placeholder for correct
- "⌱": # 0x2331 (en: 'dimension origin', google translation) # FI: translation unclear
- "⌲": # 0x2332 (en: 'conical taper', google translation) # FI: translation unclear
- "⌳": # 0x2333 (en: 'slope', google translation)
- "⌴": # 0x2334 (en: 'counterbore', google translation)
- "⌵": # 0x2335 (en: 'countersink', google translation)
- "⍰": # 0x2370 (en: 'unknown box', google: 'tuntematon laatikko')
- "⎕": # 0x2395 (en: 'box', google translation)
- "⏞": # 0x23DE (en: 'top brace', google: 'ylä ahdin')
- "⏟": # 0x23DF (en: 'bottom brace', google: 'pohja ahdin')
- "①-⑨": # 0x2460 - 0x2469
- T: "ympyröity" # (en: 'circled', google: 'ympyröi')
- 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: "suluissa" # (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 # FI: should these be ordinals?
- SPELL: "translate('.', '⒈⒉⒊⒋⒌⒍⒎⒏⒐', '123456789')"
- T: "pisteellä" # (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: "suluissa" # (en: 'parenthesized', google translation)
- SPELL: "translate('.', '⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵', 'abcdefghijklmnopqrstuvwxyz')"
- "Ⓐ-Ⓩ":
- T: "ympyröity" # (en: 'circled', google translation)
- SPELL: "translate('.', 'ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "ⓐ-ⓩ": # 0x24d0 - 0x24e9
- T: "ympyröity" # (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: "kaksinkertaisesti ympyröity" # (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')
- "□": # 0x25a1 (en: 'white square')
- "▢": # 0x25a2 (en: 'white square with rounded corners', google translation)
- "▣": # 0x25a3 (en: 'white square containing small black square', google translation)
- "▤": # 0x25a4 (en: 'square with horizontal fill', google translation)
- "▥": # 0x25a5 (en: 'square with vertical fill', google translation)
- "▦": # 0x25a6 (en: 'square with orthogonal crosshatch fill', google translation)
- "▧": # 0x25a7 (en: 'square with upper left to lower right fill', google translation)
- "▨": # 0x25a8 (en: 'square with upper right to lower left fill', google translation)
- "▩": # 0x25a9 (en: 'square with diagonal crosshatch fill', google translation)
- "▪": # 0x25aa (en: 'black small square', google: 'musta pieni neliö')
- "▫": # 0x25ab (en: 'white small square', google: 'valkoinen pieni neliö')
- "▬": # 0x25ac (en: 'black rectangle', google translation)
- "▭": # 0x25ad (en: 'white rectangle', google: 'valkoinen suorakulmio')
- "▮": # 0x25ae (en: 'black vertical rectangle', google: 'musta pystysuora suorakulmio')
- "▯": # 0x25af (en: 'white vertical rectangle', google: 'valkoinen pystysuora suorakulmio')
- "▰": # 0x25b0 (en: 'black parallelogram', google translation)
- "▱": # 0x25b1 (en: 'white parallelogram', google: 'valkoinen rinnakkainen ohjelma')
- "▲": # 0x25b2 (en: 'black up pointing triangle', google: 'musta ylöspäin osoittava kolmio')
- "△": # 0x25b3 (en: 'white up pointing triangle', google: 'valkoinen osoitus kolmio')
- "▴": # 0x25b4 (en: 'black up pointing small triangle', google: 'musta ylös osoittaen pientä kolmiota')
- "▵": # 0x25b5 (en: 'white up pointing small triangle', google: 'valkoinen osoittaen pientä kolmiota')
- "▶": # 0x25b6 (en: 'black right pointing triangle', google: 'musta oikea osoitus kolmio')
- "▷": # 0x25b7 (en: 'white right pointing triangle', google: 'valkoinen oikea osoitus kolmio')
- "▸": # 0x25b8 (en: 'black right pointing small triangle', google: 'musta oikea osoittaen pieni kolmio')
- "▹": # 0x25b9 (en: 'white right pointing small triangle', google: 'valkoinen oikea osoittaen pieni kolmio')
- "►": # 0x25ba (en: 'black right pointing pointer', google translation)
- "▻": # 0x25bb (en: 'white right pointing pointer', google translation)
- "▼": # 0x25bc (en: 'black down pointing triangle', google: 'musta alaspäin osoittava kolmio')
- "▽": # 0x25bd (en: 'white down pointing triangle', google: 'valkoinen alaspäin osoittava kolmio')
- "▾": # 0x25be (en: 'black down pointing small triangle', google: 'musta alaspäin osoittaen pieni kolmio')
- "▿": # 0x25bf (en: 'white down pointing small triangle', google: 'valkoinen alas osoittaen pieni kolmio')
- "◀": # 0x25c0 (en: 'black left pointing triangle', google: 'musta vasen osoitus kolmio')
- "◁": # 0x25c1 (en: 'white left pointing triangle', google: 'valkoinen vasen osoitus kolmio')
- "◂": # 0x25c2 (en: 'black left pointing small triangle', google: 'musta vasen osoittaa pieni kolmio')
- "◃": # 0x25c3 (en: 'white left pointing small triangle', google: 'valkoinen vasen osoitus pieni kolmio')
- "◄": # 0x25c4 (en: 'black left pointing pointer', google: 'musta vasen osoitin')
- "◅": # 0x25c5 (en: 'white left pointing pointer', google: 'valkoinen vasen osoitin')
- "◆": # 0x25c6 (en: 'black diamond', google: 'musta timantti')
- "◇": # 0x25c7 (en: 'white diamond', google: 'valkoinen timantti')
- "◈": # 0x25c8 (en: 'white diamond containing black small diamond', google: 'valkoinen timantti, joka sisältää mustan pienen timantin')
- "◉": # 0x25c9 (en: 'fisheye', google: 'kalake')
- "◊": # 0x25ca (en: 'lozenge', google: 'pastilli')
- "○": # 0x25cb (en: 'white circle')
- "◌": # 0x25cc (en: 'dotted circle', google: 'pisteympyrä')
- "◍": # 0x25cd (en: 'circle with vertical fill', google: 'ympyrä pystysuoralla täyttöä')
- "◎": # 0x25ce (en: 'bullseye', google: 'bullseye')
- "●": # 0x25cf (en: 'black circle')
- "◐": # 0x25d0 (en: 'circle with left half black', google: 'ympyrä vasemmalla puoliksi mustalla')
- "◑": # 0x25d1 (en: 'circle with right half black', google: 'ympyrä oikealla puoliksi mustalla')
- "◒": # 0x25d2 (en: 'circle with lower half black', google: 'ympyrä, jossa on alaosa musta')
- "◓": # 0x25d3 (en: 'circle with upper half black', google: 'ympyrä yläpuoliskolla mustalla')
- "◔": # 0x25d4 (en: 'circle with upper right quadrant black', google: 'ympyrä oikealla yläkulmalla kvadrantti musta')
- "◕": # 0x25d5 (en: 'circle with all but upper left quadrant black', google: 'ympyrä kaikilla paitsi vasemmalla yläosalla mustaa')
- "◖": # 0x25d6 (en: 'left half black circle', google: 'vasen puoli musta ympyrä')
- "◗": # 0x25d7 (en: 'right half black circle', google: 'oikea puoli musta ympyrä')
- "◘": # 0x25d8 (en: 'inverse bullet', google: 'käänteinen luoti')
- "◙": # 0x25d9 (en: 'inverse white circle', google: 'käänteinen valkoinen ympyrä')
- "◚": # 0x25da (en: 'upper half inverse white circle', google: 'yläosa käänteinen valkoinen ympyrä')
- "◛": # 0x25db (en: 'lower half inverse white circle', google: 'alempi puoli käänteinen valkoinen ympyrä')
- "◜": # 0x25dc (en: 'upper left quadrant circular arc', google: 'vasen yläosa kvadrantti pyöreä kaari')
- "◝": # 0x25dd (en: 'upper right quadrant circular arc', google: 'oikea yläosa kvadrantti pyöreä kaari')
- "◞": # 0x25de (en: 'lower right quadrant circular arc', google: 'oikea alaosa neljänneksen pyöreä kaari')
- "◟": # 0x25df (en: 'lower left quadrant circular arc', google: 'vasen alakulmainen kvadrantti pyöreä kaari')
- "◠": # 0x25e0 (en: 'upper half circle', google: 'yläosa ympyrä')
- "◡": # 0x25e1 (en: 'lower half circle', google: 'alempi puoli ympyrä')
- "◢": # 0x25e2 (en: 'black lower right triangle', google: 'musta alaosa oikea kolmio')
- "◣": # 0x25e3 (en: 'black lower left triangle', google: 'musta vasen alaosa kolmio')
- "◤": # 0x25e4 (en: 'black upper left triangle', google: 'musta vasen yläosa kolmio')
- "◥": # 0x25e5 (en: 'black upper right triangle', google: 'musta oikea yläosa kolmio')
- "◦": # 0x25e6 (en: 'composition', google: 'sävellys')
- "◧": # 0x25e7 (en: 'square with left half black', google: 'neliö vasemmalla puoliksi mustalla')
- "◨": # 0x25e8 (en: 'square with right half black', google: 'neliö oikealla puoliksi mustalla')
- "◩": # 0x25e9 (en: 'square with upper left half black', google: 'neliö vasemmalla yläosa mustalla')
- "◪": # 0x25ea (en: 'square with lower right half black', google: 'neliö oikealla alaosa mustalla')
- "◫": # 0x25eb (en: 'white square with bisecting line', google: 'valkoinen neliö puolustamisviivalla')
- "◬": # 0x25ec (en: 'white up pointing triangle with dot', google: 'valkoinen osoittava kolmio pisteellä')
- "◭": # 0x25ed (en: 'up pointing triangle with left half black', google: 'ylöspäin osoittaen kolmio vasemmalla puoliksi mustalla')
- "◮": # 0x25ee (en: 'up pointing triangle with right half black', google: 'ylös osoittaen kolmio oikealla puoliksi mustalla')
- "◯": # 0x25ef (en: 'large circle', google: 'suuri ympyrä')
- "◰": # 0x25f0 (en: 'white square with upper left quadrant', google translation)
- "◱": # 0x25f1 (en: 'white square with lower left quadrant', google translation)
- "◲": # 0x25f2 (en: 'white square with lower right quadrant', google translation)
- "◳": # 0x25f3 (en: 'white square with upper right quadrant', google translation)
- "◴": # 0x25f4 (en: 'white circle with upper left quadrant', google translation)
- "◵": # 0x25f5 (en: 'white circle with lower left quadrant', google translation)
- "◶": # 0x25f6 (en: 'white circle with lower right quadrant', google translation)
- "◷": # 0x25f7 (en: 'white circle with upper right quadrant', google translation)
- "◸": # 0x25f8 (en: 'upper left triangle', google: 'vasen yläosa kolmio')
- "◹": # 0x25f9 (en: 'upper right triangle', google: 'oikea yläosa kolmio')
- "◺": # 0x25fa (en: 'lower left triangle', google: 'vasen alaosa kolmio')
- "◻": # 0x25fb (en: 'white medium square', google: 'valkoinen keskipitkä neliö')
- "◼": # 0x25fc (en: 'black medium square', google: 'musta keskipitkä neliö')
- "◽": # 0x25fd (en: 'white medium small square', google: 'valkoinen keskipitkä pieni neliö')
- "◾": # 0x25fe (en: 'black medium small square', google: 'musta keskipitkä pieni neliö')
- "◿": # 0x25ff (en: 'lower right triangle', google: 'oikea alaosa kolmio')
- "♠": # 0x2660 (en: 'black spade suit', google: 'musta lapio puku')
- "♡": # 0x2661 (en: 'white heart suit', google: 'valkoinen sydänpuku')
- "♢": # 0x2662 (en: 'white diamond suit', google: 'valkoinen timanttipuku')
- "♣": # 0x2663 (en: 'black club suit', google: 'mustakerhopuku')
- "♤": # 0x2664 (en: 'white spade suit', google: 'valkoinen lapiopuku')
- "♥": # 0x2665 (en: 'black heart suit', google: 'musta sydänpuku')
- "♦": # 0x2666 (en: 'black diamond suit', google: 'musta timanttipuku')
- "♧": # 0x2667 (en: 'white club suit', google: 'valkoinen klubipuku')
- "❨": # 0x2768 (en: 'medium left parentheses ornament', google translation)
- "❩": # 0x2769 (en: 'medium right parentheses ornament', google translation)
- "❪": # 0x276a (en: 'medium flattened left parentheses ornament', google translation)
- "❫": # 0x276b (en: 'medium flattened right parentheses ornament', google translation)
- "❬": # 0x276c (en: 'medium left-pointing angle bracket ornament', google translation)
- "❭": # 0x276d (en: 'medium right-pointing angle bracket ornament', google translation)
- "❮": # 0x276e (en: 'heavy left-pointing angle quotation mark ornament', google translation)
- "❯": # 0x276f (en: 'heavy right-pointing angle quotation mark ornament', google translation)
- "❰": # 0x2770 (en: 'heavy left-pointing angle bracket ornament', google translation)
- "❱": # 0x2771 (en: 'heavy right-pointing angle bracket ornament', google translation)
- "❲": # 0x2772 (en: 'light left tortoise shell bracket ornament', google translation)
- "❳": # 0x2773 (en: 'light right tortoise shell bracket ornament', google translation)
- "❴": # 0x2774 (en: 'medium left brace ornament', google translation)
- "❵": # 0x2775 (en: 'medium right brace ornament', google translation)
- "❶": # 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 translation)
- "➕": # 0x2795 (en: 'heavy plus sign', google translation)
- "➖": # 0x2796 (en: 'heavy minus sign', google translation)
- "➗": # 0x2797 (en: 'heavy division sign', google translation)
- "➘": # 0x2798 (en: 'heavy south east arrow', google translation)
- "➙": # 0x2799 (en: 'heavy rightwards arrow', google translation)
- "➚": # 0x279a (en: 'heavy north east arrow', google translation)
- "➛": # 0x279b (en: 'drafting point rightwards arrow', google translation)
- "➜": # 0x279c (en: 'heavy round-tipped rightwards arrow', google translation)
- "➝": # 0x279d (en: 'triangle-headed rightwards arrow', google translation)
- "➞": # 0x279e (en: 'heavy triangle-headed rightwards arrow', google translation)
- "➟": # 0x279f (en: 'dashed triangle-headed rightwards arrow', google translation)
- "➠": # 0x27a0 (en: 'heavy dashed triangle-headed rightwards arrow', google translation)
- "➡": # 0x27a1 (en: 'black rightwards arrow', google translation)
- "➢": # 0x27a2 (en: 'three d top lighted rightwards arrow', google translation)
- "➣": # 0x27a3 (en: 'three d bottom lighted rightwards arrow', google translation)
- "➤": # 0x27a4 (en: 'black rightwards arrowhead', google translation)
- "➥": # 0x27a5 (en: 'heavy black curved downwards and rightwards arrow', google translation)
- "➦": # 0x27a6 (en: 'heavy black curved upwards and rightwards arrow', google translation)
- "➧": # 0x27a7 (en: 'squat black rightwards arrow', google translation)
- "➨": # 0x27a8 (en: 'heavy concave-pointed black rightwards arrow', google translation)
- "➩": # 0x27a9 (en: 'right-shaded white rightwards arrow', google translation)
- "➪": # 0x27aa (en: 'left-shaded white rightwards arrow', google translation)
- "➫": # 0x27ab (en: 'back-tilted shadowed white rightwards arrow', google translation)
- "➬": # 0x27ac (en: 'front-tilted shadowed white rightwards arrow', google translation)
- "➭": # 0x27ad (en: 'heavy lower right-shadowed white rightwards arrow', google translation)
- "➮": # 0x27ae (en: 'heavy upper right-shadowed white rightwards arrow', google translation)
- "➯": # 0x27af (en: 'notched lower right-shadowed white rightwards arrow', google translation)
- "➱": # 0x27b1 (en: 'notched upper right-shadowed white rightwards arrow', google translation)
- "➲": # 0x27b2 (en: 'circled heavy white rightwards arrow', google translation)
- "➳": # 0x27b3 (en: 'white-feathered rightwards arrow', google translation)
- "➴": # 0x27b4 (en: 'black-feathered south east arrow', google translation)
- "➵": # 0x27b5 (en: 'black-feathered rightwards arrow', google translation)
- "➶": # 0x27b6 (en: 'black-feathered north east arrow', google translation)
- "➷": # 0x27b7 (en: 'heavy black-feathered south east arrow', google translation)
- "➸": # 0x27b8 (en: 'heavy black-feathered rightwards arrow', google translation)
- "➹": # 0x27b9 (en: 'heavy black-feathered north east arrow', google translation)
- "➺": # 0x27ba (en: 'teradrop-barbed rightwards arrow', google translation)
- "➻": # 0x27bb (en: 'heavy teardrop-shanked rightwards arrow', google translation)
- "➼": # 0x27bc (en: 'wedge-tailed rightwards arrow', google translation)
- "➽": # 0x27bd (en: 'heavy wedge-tailed rightwards arrow', google translation)
- "➾": # 0x27be (en: 'open-outlined rightwards arrow', google translation)
- "⟀": # 0x27c0 (en: 'three dimensional angle')
- "⟁": # 0x27c1 (en: 'white triangle containing small white triangle', google: 'valkoinen kolmio, joka sisältää pientä valkoista kolmiota')
- "⟂": # 0x27c2
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "kohtisuora" # (en: 'perpendicular to', google: 'kohtisuorassa')
- "⟃": # 0x27c3
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "avoin osajoukko" # (en: 'an open subset of')
- "⟄": # 0x27c4
- test:
if: "$Verbosity!='Terse'"
then: # (en: 'is', google translation)
- T: "avoin yläjoukko" # (en: 'an open superset of', google: 'avoin superset')
- "⟅": # 0x27c5 (google: 'vasen s-muotoinen laukku')
- "⟆": # 0x27c6 (google: 'oikea s-muotoinen laukku')
- "⟇": # 0x27c7 (en: 'or with dot inside', google: 'tai pisteellä sisällä')
- "⟈": # 0x27c8 (en: 'reverse solidus preceding subset', google: 'käänteinen solidus edeltävä alajoukko')
- "⟉": # 0x27c9 (en: 'superset preceding solidus', google: 'superset edeltävä solidus')
- "⟊": # 0x27ca (en: 'vertical bar with horizontal stroke', google: 'pystysuora palkki vaakasuuntaisella iskulla')
- "⟋": # 0x27cb (en: 'mathematical rising diagonal', google translation)
- "⟌": # 0x27cc (en: 'long division', google: 'jakolaskutoimitus')
- "⟍": # 0x27cd (en: 'mathematical falling diagonal', google translation)
- "⟎": # 0x27ce (en: 'squared logical and', google translation)
- "⟏": # 0x27cf (en: 'squared logical or', google translation)
- "⟐": # 0x27d0 (en: 'white diamond with centered dot', google translation)
- "⟑": # 0x27d1 (en: 'and with dot', google: 'ja pisteellä')
- "⟒": # 0x27d2 (en: 'element of opening upwards', google: 'elementti avaamisesta ylöspäin')
- "⟓": # 0x27d3 (en: 'lower right corner with dot', google: 'oikea alakulma pisteellä')
- "⟔": # 0x27d4 (en: 'upper left corner with dot', google: 'vasen yläkulma pisteellä')
- "⟕": # 0x27d5 (google: 'vasen ulkoinen liittyminen')
- "⟖": # 0x27d6 (google: 'oikea ulkoinen liittyminen')
- "⟗": # 0x27d7 (google: 'täysi ulkoinen liittyminen')
- "⟘": # 0x27d8 (google: 'suuri ylöspäin')
- "⟙": # 0x27d9 (google: 'suuri alaspäin')
- "⟚": # 0x27da (google: 'vasen ja oikea kaksoiskivi')
- "⟛": # 0x27db (google: 'vasen ja oikea tarttuva')
- "⟜": # 0x27dc (google: 'vasen multimep') # FI: meaning unclear
- "⟝": # 0x27dd (google: 'pitkä oikea tarttuva')
- "⟞": # 0x27de (google: 'pitkä vasen tarttuva')
- "⟟": # 0x27df (en: 'up tack with circle above', google: 'yllä oleva ympyrä')
- "⟠": # 0x27e0 (google: 'lozenge jaettuna vaakasuunnassa')
- "⟡": # 0x27e1 (google: 'valkoinen koverapuolinen timantti')
- "⟢": # 0x27e2 (en: 'white concave sided diamond with leftwards tick', google: 'valkoinen koverapuolinen timantti vasemmalla rastilla')
- "⟣": # 0x27e3 (en: 'white concave sided diamond with rightwards tick', google: 'valkoinen koverapuolinen timantti oikealla puolella')
- "⟤": # 0x27e4 (en: 'white square with leftwards tick', google: 'valkoinen neliö vasemmalla rastilla')
- "⟥": # 0x27e5 (en: 'white square with rightwards tick', google: 'valkoinen neliö oikealla puolella')
- "⟦": # 0x27e6 (en: 'left white square bracket', google: 'vasen valkoinen neliömäki')
- "⟧": # 0x27e7 (en: 'right white square bracket', google: 'oikea valkoinen neliömäki')
- "⟨": # 0x27e8 (en: 'left angle bracket', google: 'vasemman kulman kiinnike')
- "⟩": # 0x27e9 (en: 'right angle bracket', google: 'suoren kulman kiinnike')
- "⟪": # 0x27ea (en: 'left double angle bracket', google: 'vasen kaksoiskulma kiinnike')
- "⟫": # 0x27eb (en: 'right double angle bracket', google: 'oikea kaksoiskulma kiinnike')
- "⟬": # 0x27ec (google: 'vasen valkoinen kilpikonnakuoren kiinnike')
- "⟭": # 0x27ed (google: 'oikea valkoinen kilpikonnakuoren kiinnike')
- "⟮": # 0x27ee (google: 'vasen litistetty sulkuteesi')
- "⟯": # 0x27ef (google: 'oikea litistetty sulkuteesi')
- "⟰": # 0x27f0 (en: 'upwards quadruple arrow', google translation)
- "⟱": # 0x27f1 (en: 'downwards quadruple arrow', google translation)
- "⟲": # 0x27f2 (en: 'anticlockwise gapped circle arrow', google translation)
- "⟳": # 0x27f3 (en: 'clockwise gapped circle arrow', google translation)
- "⟴": # 0x27f4 (en: 'right arrow with circled plus', google translation)
- "⟵": # 0x27f5 (en: 'long leftwards arrow', google: 'pitkä vasen nuoli')
- "⟶": # 0x27f6 (en: 'long rightwards arrow', google: 'pitkä oikea nuoli')
- "⟷": # 0x27f7 (en: 'long left right arrow', google: 'pitkä vasen oikea nuoli')
- "⟸": # 0x27f8 (en: 'long leftwards double arrow', google: 'pitkä vasen kaksinkertainen nuoli')
- "⟹": # 0x27f9 (en: 'long rightwards double arrow', google: 'pitkä oikea kaksinkertainen nuoli')
- "⟺": # 0x27fa (en: 'long left right double arrow', google: 'pitkä vasen oikea kaksinkertainen nuoli')
- "⟻": # 0x27fb (en: 'long leftwards arrow from bar', google translation)
- "⟼": # 0x27fc (en: 'long rightwards arrow from bar', google: 'pitkä oikea nuoli baarista')
- "⟽": # 0x27fd (en: 'long leftwards double arrow from bar', google translation)
- "⟾": # 0x27fe (en: 'long rightwards double arrow from bar', google translation)
- "⟿": # 0x27ff (en: 'long rightwards squiggle arrow', google: 'pitkä oikeassa nuoli')
- "⤀": # 0x2900 (en: 'rightwards two headed arrow with vertical stroke', google translation)
- "⤁": # 0x2901 (en: 'rightwards two headed arrow with double vertical stroke', google translation)
- "⤂": # 0x2902 (en: 'leftwards double arrow with vertical stroke', google translation)
- "⤃": # 0x2903 (en: 'rightwards double arrow with vertical stroke', google translation)
- "⤄": # 0x2904 (en: 'left right double arrow with vertical stroke', google translation)
- "⤅": # 0x2905 (google: 'oikealle kaksi päätä nuoli baarista')
- "⤆": # 0x2906 (en: 'leftwards double arrow from bar', google translation)
- "⤇": # 0x2907 (en: 'rightwards double arrow from bar', google translation)
- "⤈": # 0x2908 (en: 'downwards arrow with horizontal stroke', google translation)
- "⤉": # 0x2909 (en: 'upwards arrow with horizontal stroke', google translation)
- "⤊": # 0x290a (en: 'upwards triple arrow', google translation)
- "⤋": # 0x290b (en: 'downwards triple arrow', google translation)
- "⤌": # 0x290c (google: 'vasen kaksinkertainen viiva nuoli')
- "⤍": # 0x290d (google: 'oikealla puolella kaksoisnauhaa')
- "⤎": # 0x290e (google: 'vasen kolminkertainen viiva nuoli')
- "⤏": # 0x290f (google: 'oikealle kolminkertainen dash -nuoli')
- "⤐": # 0x2910 (google: 'oikealle kaksi päätä kolminkertainen viiva nuoli')
- "⤑": # 0x2911 (en: 'rightwards arrow with dotted stem', google: 'oikealla nuolella katkoviivalla')
- "⤒": # 0x2912 (google: 'nuoli ylöspäin baariin')
- "⤓": # 0x2913 (google: 'alaspäin nuoli baariin')
- "⤔": # 0x2914 (en: 'rightwards arrow with tail and vertical stroke', google translation)
- "⤕": # 0x2915 (en: 'rightwards arrow with tail and double vertical stroke', google translation)
- "⤖": # 0x2916 (en: 'rightwards two headed arrow with tail', google: 'oikealle kaksi päätä nuoli hännän kanssa')
- "⤗": # 0x2917 (en: 'rightwards two headed arrow with tail with vertical stroke', google translation)
- "⤘": # 0x2918 (en: 'rightwards two headed arrow with tail with double vertical stroke', google translation)
- "⤙": # 0x2919 (google: 'vasen nuoli häntä')
- "⤚": # 0x291a (en: 'rightwards arrow tail', google translation)
- "⤛": # 0x291b (google: 'vasen kaksinkertainen nuoli häntä')
- "⤜": # 0x291c (google: 'oikealla kaksoisnuoli')
- "⤝": # 0x291d (google: 'vasen nuoli täytetylle timantille')
- "⤞": # 0x291e (google: 'oikealla nuolella täytetylle timantille')
- "⤟": # 0x291f (google: 'vasen nuoli baarista täytetylle timantille')
- "⤠": # 0x2920 (google: 'suoraan nuoli baarista täytetylle timantille')
- "⤡": # 0x2921 (en: 'north west and south east arrow', google translation)
- "⤢": # 0x2922 (en: 'north east and south west arrow', google translation)
- "⤣": # 0x2923 (en: 'north west arrow with hook', google: 'luoteis -nuoli koukulla')
- "⤤": # 0x2924 (en: 'north east arrow with hook', google: 'koillis -nuoli koukulla')
- "⤥": # 0x2925 (en: 'south east arrow with hook', google: 'kaakkois -nuoli koukulla')
- "⤦": # 0x2926 (en: 'south west arrow with hook', google: 'lounais -nuoli koukulla')
- "⤧": # 0x2927 (google: 'luoteis arrow ja koillis -nuoli')
- "⤨": # 0x2928 (google: 'koillis -nuoli ja kaakkois -nuoli')
- "⤩": # 0x2929 (google: 'kaakkois arrow ja south west arrow')
- "⤪": # 0x292a (google: 'south west arrow ja north west arrow')
- "⤫": # 0x292b (en: 'rising diagonal crossing falling diagonal', google translation)
- "⤬": # 0x292c (en: 'falling diagonal crossing rising diagonal', google translation)
- "⤭": # 0x292d (en: 'south east arrow crossing north east arrow', google translation)
- "⤮": # 0x292e (en: 'north east arrow crossing south east arrow', google translation)
- "⤯": # 0x292f (en: 'falling diagonal crossing north east arrow', google translation)
- "⤰": # 0x2930 (en: 'rising diagonal crossing south east arrow', google translation)
- "⤱": # 0x2931 (en: 'north east arrow crossing north west arrow', google translation)
- "⤲": # 0x2932 (en: 'north west arrow crossing north east arrow', google translation)
- "⤳": # 0x2933 (en: 'wave arrow pointing directly right', google: 'aalto nuoli osoittaa suoraan oikealle')
- "⤴": # 0x2934 (en: 'arrow pointing rightwards then curving upwards', google translation)
- "⤵": # 0x2935 (google: 'nuoli osoittaa oikealle ja kaareutuu alaspäin')
- "⤶": # 0x2936 (google: 'nuoli osoittaa alaspäin ja kaareutuu vasemmalle')
- "⤷": # 0x2937 (google: 'nuoli osoittaa alaspäin ja kaareutuu oikealle')
- "⤸": # 0x2938 (en: 'right side arc clockwise arrow', google: 'oikea sivukaari myötäpäivään nuoli')
- "⤹": # 0x2939 (en: 'left side arc anticlockwise arrow', google: 'vasen sivukaari vastapäivään')
- "⤺": # 0x293a (en: 'top arc anticlockwise arrow', google translation)
- "⤻": # 0x293b (en: 'bottom arc anticlockwise arrow', google translation)
- "⤼": # 0x293c (en: 'top arc clockwise arrow with minus', google: 'yläkaari myötäpäivään nuoli miinus')
- "⤽": # 0x293d (en: 'top arc anticlockwise arrow with plus', google: 'yläkaari vastapäivään nuoli plus')
- "⤾": # 0x293e (en: 'lower right semicircular clockwise arrow', google translation)
- "⤿": # 0x293f (en: 'lower left semicircular anticlockwise arrow', google translation)
- "⥀": # 0x2940 (en: 'anticlockwise closed circle arrow', google translation)
- "⥁": # 0x2941 (en: 'clockwise closed circle arrow', google translation)
- "⥂": # 0x2942 (en: 'rightwards arrow above short leftwards arrow', google translation)
- "⥃": # 0x2943 (en: 'leftwards arrow above short rightwards arrow', google translation)
- "⥄": # 0x2944 (en: 'short rightwards arrow above leftwards arrow', google translation)
- "⥅": # 0x2945 (en: 'rightwards arrow with plus below', google: 'oikealla nuolella, jonka alla on plus')
- "⥆": # 0x2946 (en: 'leftwards arrow with plus below', google translation)
- "⥇": # 0x2947 (en: 'rightwards arrow through x', google translation)
- "⥈": # 0x2948 (google: 'vasen oikea nuoli ympyrän läpi')
- "⥉": # 0x2949 (google: 'ylöspäin kaksi pääistä nuolta ympyrästä')
- "⥊": # 0x294a (google: 'vasen barb ylös oikealle barb down harpoon')
- "⥋": # 0x294b (google: 'vasen barb alas oikealla barb up harpoon')
- "⥌": # 0x294c (en: 'up barb right down barb left harpoon', google translation)
- "⥍": # 0x294d (en: 'up barb left down barb right harpoon', google translation)
- "⥎": # 0x294e (en: 'left barb up right barb up harpoon', google: 'vasen barb ylös oikealle barb up harpoon')
- "⥏": # 0x294f (en: 'up barb right down barb right harpoon', google: 'ylös barb oikealla barbilla oikealla harpoonilla')
- "⥐": # 0x2950 (en: 'left barb down right barb down harpoon', google: 'vasen barb alas oikealla barb down harpoon')
- "⥑": # 0x2951 (en: 'up barb left down barb left harpoon', google: 'ylös barb vasemmalle barb vasen harpooni')
- "⥒": # 0x2952 (en: 'leftwards harpoon with barb up to bar', google: 'vasen harppuuna barbin kanssa baariin')
- "⥓": # 0x2953 (en: 'rightwards harpoon with barb up to bar', google: 'oikea harpoon barbin kanssa baariin')
- "⥔": # 0x2954 (en: 'upwards harpoon with barb right to bar', google: 'ylöspäin harppuun barbin oikealla baarilla')
- "⥕": # 0x2955 (en: 'downwards harpoon with barb right to bar', google: 'downward harpoon barbin oikealla baarilla')
- "⥖": # 0x2956 (en: 'leftwards harpoon with barb down to bar', google: 'vasen harppuuna barbin kanssa baariin')
- "⥗": # 0x2957 (en: 'rightwards harpoon with barb down to bar', google: 'oikea harpoon barbin kanssa baariin')
- "⥘": # 0x2958 (en: 'upwards harpoon with barb left to bar', google: 'ylös harppuon barbin kanssa vasemmalle baariin')
- "⥙": # 0x2959 (en: 'downwards harpoon with barb left to bar', google: 'downward harpoon barbin kanssa vasemmalle baariin')
- "⥚": # 0x295a (en: 'leftwards harpoon with barb up from bar', google: 'vasen harppuuna barb ylös baarista')
- "⥛": # 0x295b (en: 'rightwards harpoon with barb up from bar', google: 'oikealla harppuuna barbin kanssa baarista')
- "⥜": # 0x295c (en: 'upwards harpoon with barb right from bar', google: 'ylöspäin harppuun barbin kanssa heti baarista')
- "⥝": # 0x295d (en: 'downwards harpoon with barb right from bar', google: 'downward harpoon barbin kanssa heti baarista')
- "⥞": # 0x295e (en: 'leftwards harpoon with barb down from bar', google: 'vasen harppuuna barbin kanssa baarista')
- "⥟": # 0x295f (en: 'rightwards harpoon with barb down from bar', google: 'oikea harpoon barbin kanssa baarista')
- "⥠": # 0x2960 (en: 'upwards harpoon with barb left from bar', google: 'ylös harppuun barbin vasemmalla baarista')
- "⥡": # 0x2961 (en: 'downwards harpoon with barb left from bar', google: 'downward harpoon barbin vasemmalla baarista')
- "⥢": # 0x2962 (en: 'leftwards harpoon with barb up above leftwards harpoon with barb down', google: 'vasen harppuuna barb ylös vasemmanpuoleisen harpoonin yläpuolella barb down')
- "⥣": # 0x2963 (en: 'upwards harpoon with barb left beside upwards harpoon with barb right', google: 'yläpuolella harppuunia vasemmalla vasemmalla harpoon vieressä barbilla oikealla')
- "⥤": # 0x2964 (en: 'rightwards harpoon with barb up above rightwards harpoon with barb down', google: 'oikealla harpoonilla barb ylös oikeanpuoleisen harpoonin yläpuolella barb down')
- "⥥": # 0x2965 (en: 'downwards harpoon with barb left beside downwards harpoon with barb right', google: 'downwards harpoon vasemmalla vasemmalla harppuunan vieressä barbilla oikealla')
- "⥦": # 0x2966 (en: 'leftwards harpoon with barb up above rightwards harpoon with barb up', google: 'vasen harppuuna barb ylös oikeanpuoleisen harpoonin yläpuolella barb up')
- "⥧": # 0x2967 (en: 'leftwards harpoon with barb down above rightwards harpoon with barb down', google: 'vasen harppuuna barb alas oikeanpuoleisen harpoonin yläpuolella barb down')
- "⥨": # 0x2968 (en: 'rightwards harpoon with barb up above leftwards harpoon with barb up', google: 'oikealla harpounalla barb ylös vasemmanpuoleisen harpoonin yläpuolella barb up')
- "⥩": # 0x2969 (en: 'rightwards harpoon with barb down above leftwards harpoon with barb down', google: 'oikealla harpounalla barbin kanssa vasemmanpuoleisen harpoonin yläpuolella barb down')
- "⥪": # 0x296a (en: 'leftwards harpoon with barb up above long dash', google: 'vasen harppuuna barb ylös pitkän viivan yläpuolella')
- "⥫": # 0x296b (en: 'leftwards harpoon with barb down below long dash', google: 'vasen harppuuna barbin alapuolella pitkän viivan alapuolella')
- "⥬": # 0x296c (en: 'rightwards harpoon with barb up above long dash', google: 'oikealla harppuunilla barb up long dashin yläpuolella')
- "⥭": # 0x296d (en: 'rightwards harpoon with barb down below long dash', google: 'oikealla harppuuna barbin alapuolella pitkän viivan alapuolella')
- "⥮": # 0x296e (en: 'upwards harpoon with barb left beside downwards harpoon with barb right', google: 'ylös harppuunaa vasemmalla vasemmalla harpoonin vieressä barbilla oikealla')
- "⥯": # 0x296f (en: 'downwards harpoon with barb left beside upwards harpoon with barb right', google: 'downwards harpoon vasemmalla vasemmalla harppuunin vieressä barbilla oikealla')
- "⥰": # 0x2970 (en: 'right double arrow with rounded head', google: 'oikea kaksinkertainen nuoli pyöristetyllä pään kanssa')
- "⥱": # 0x2971 (google: 'vastaa oikeanpuoleista nuolta')
- "⥲": # 0x2972 (google: 'tilde -operaattori oikeanpuoleisen nuolen yläpuolella')
- "⥳": # 0x2973 (en: 'leftwards arrow above tilde operator', google: 'vasen nuoli tilde -operaattorin yläpuolella')
- "⥴": # 0x2974 (en: 'rightwards arrow above tilde operator', google: 'oikealla nuolella tilde -operaattorin yläpuolella')
- "⥵": # 0x2975 (google: 'oikea nuoli yläpuolelle melkein yhtä suuri kuin')
- "⥶": # 0x2976 (google: 'alle kuin vasemmanpuoleinen nuoli')
- "⥷": # 0x2977 (en: 'leftwards arrow through less than', google translation)
- "⥸": # 0x2978 (google: 'suurempi kuin oikeanpuoleinen nuoli')
- "⥹": # 0x2979 (google: 'oikeanpuoleinen nuolen yläpuolella')
- "⥺": # 0x297a (en: 'leftwards arrow through subset', google translation)
- "⥻": # 0x297b (google: 'superset vasemmanpuoleisen nuolen yläpuolella')
- "⥼": # 0x297c (google: 'vasen kala häntä')
- "⥽": # 0x297d (google: 'oikea kala häntä')
- "⥾": # 0x297e (en: 'up fish tail', google: 'ylös kalanhäntä')
- "⥿": # 0x297f (google: 'alas kalan hännä')
- "⦀": # 0x2980 (en: 'triple vertical bar delimiter', google translation)
- "⦁": # 0x2981 (en: 'z notation spot', google translation)
- "⦂": # 0x2982 (en: 'z notation type colon', google translation)
- "⦃": # 0x2983 (en: 'left white brace', google translation)
- "⦄": # 0x2984 (en: 'right white brace', google translation)
- "⦅": # 0x2985 (en: 'left white parenthesis', google: 'vasen valkoinen sulkuteesi')
- "⦆": # 0x2986 (en: 'right white parenthesis', google: 'oikea valkoinen sulkuteesi')
- "⦇": # 0x2987 (en: 'z notation left image bracket', google translation)
- "⦈": # 0x2988 (en: 'z notation right image bracket', google translation)
- "⦉": # 0x2989 (google: 'z -merkintä jätti sitovan kiinnikkeen')
- "⦊": # 0x298a (google: 'z -merkintä oikea sitova kiinnike')
- "⦋": # 0x298b (en: 'left square bracket with underbar', google: 'vasen neliökiinnike alapalkin kanssa')
- "⦌": # 0x298c (en: 'right square bracket with underbar', google: 'oikea neliökiinnike alapalkin kanssa')
- "⦍": # 0x298d (en: 'left square bracket with tick in top corner', google: 'vasen neliö kiinnike, punkki yläkulmassa')
- "⦎": # 0x298e (en: 'right square bracket with tick in bottom corner', google: 'oikea neliökiinnike, jossa punkki alakulmassa')
- "⦏": # 0x298f (en: 'left square bracket with tick in bottom corner', google: 'vasen neliö kiinnike, punkki alakulmassa')
- "⦐": # 0x2990 (en: 'right square bracket with tick in top corner', google: 'oikea neliö kiinnike, punkki yläkulmassa')
- "⦑": # 0x2991 (en: 'left angle bracket with dot', google: 'vasemman kulman kiinnike pisteellä')
- "⦒": # 0x2992 (en: 'right angle bracket with dot', google: 'suoren kulman kiinnike pisteellä')
- "⦓": # 0x2993 (google: 'vasen kaari vähemmän kuin kiinnike')
- "⦔": # 0x2994 (google: 'oikea kaari suurempi kuin kiinnike')
- "⦕": # 0x2995 (google: 'kaksinkertainen vasen kaari on suurempi kuin kiinnike')
- "⦖": # 0x2996 (google: 'kaksinkertainen oikea kaari vähemmän kuin kiinnike')
- "⦗": # 0x2997 (en: 'left black tortoise shell bracket', google translation)
- "⦘": # 0x2998 (en: 'right black tortoise shell bracket', google translation)
- "⦙": # 0x2999 (en: 'dotted fence', google translation)
- "⦚": # 0x299a (google: 'pystysuora siksak -linja')
- "⦛": # 0x299b (en: 'measured angle opening left', google translation)
- "⦜": # 0x299c (en: 'right angle variant with square', google translation)
- "⦝": # 0x299d (en: 'measured right angle with dot', google: 'mitattu oikea kulma pisteellä')
- "⦞": # 0x299e (en: 'angle with s inside', google translation)
- "⦟": # 0x299f (en: 'acute angle', google translation)
- "⦠": # 0x29a0 (en: 'spherical angle opening left', google translation)
- "⦡": # 0x29a1 (en: 'spherical angle opening up', google translation)
- "⦢": # 0x29a2 (en: 'turned angle', google translation)
- "⦣": # 0x29a3 (en: 'reversed angle', google translation)
- "⦤": # 0x29a4 (en: 'angle with underbar', google: 'kulma alapalkin kanssa')
- "⦥": # 0x29a5 (en: 'reversed angle with underbar', google: 'käännetty kulma alapalkin kanssa')
- "⦦": # 0x29a6 (google: 'vino kulma avautuu')
- "⦧": # 0x29a7 (google: 'vino kulma avautuu')
- "⦨": # 0x29a8 (en: 'measured angle with open arm ending in arrow pointing up and to the right', google: 'mitattu kulma, kun avoin käsivarsi päättyy nuoleen osoittaen ylös ja oikealle')
- "⦩": # 0x29a9 (en: 'measured angle with open arm ending in arrow pointing up and to the left', google: 'mitattu kulma, jonka avoin käsivarsi päättyy nuoleen osoittaen ylös ja vasemmalle')
- "⦪": # 0x29aa (en: 'measured angle with open arm ending in arrow pointing down and to the right', google: 'mitattu kulma, kun avoin käsivarsi päättyy nuolessa alaspäin ja oikealle')
- "⦫": # 0x29ab (en: 'measured angle with open arm ending in arrow pointing down and to the left', google: 'mitattu kulma, kun avoin käsivarsi päättyy nuolessa alaspäin ja vasemmalle')
- "⦬": # 0x29ac (en: 'measured angle with open arm ending in arrow pointing right and up', google: 'mitattu kulma, kun avoin käsivarsi päättyy nuoleen osoittaen oikealle ja ylöspäin')
- "⦭": # 0x29ad (en: 'measured angle with open arm ending in arrow pointing left and up', google: 'mitattu kulma, jonka avoin käsivarsi päättyy nuoleen osoittaen vasemmalle ja ylöspäin')
- "⦮": # 0x29ae (en: 'measured angle with open arm ending in arrow pointing right and down', google: 'mitattu kulma, kun avoin käsivarsi päättyy nuoleen osoittaen oikealle ja alas')
- "⦯": # 0x29af (en: 'measured angle with open arm ending in arrow pointing left and down', google: 'mitattu kulma, jonka nuolessa päättyy avoimeen käsivarteen, osoittaen vasemmalle ja alas')
- "⦰": # 0x29b0 (google: 'kääntynyt tyhjä sarja')
- "⦱": # 0x29b1 (en: 'empty set with overbar', google: 'tyhjä sarja ylikuormituksella')
- "⦲": # 0x29b2 (en: 'empty set with small circle above', google: 'tyhjä sarja, jossa on pieni ympyrä yllä')
- "⦳": # 0x29b3 (en: 'empty set with right arrow above', google: 'tyhjä sarja oikealla nuolella yllä')
- "⦴": # 0x29b4 (en: 'empty set with left arrow above', google: 'tyhjä sarja vasemmalla nuolella yllä')
- "⦵": # 0x29b5 (en: 'circle with horizontal bar', google: 'ympyrä vaakasuuntaisella palkilla')
- "⦶": # 0x29b6 (google: 'ympyrä pystysuora palkki')
- "⦷": # 0x29b7 (google: 'ympyröi rinnakkain')
- "⦸": # 0x29b8 (en: 'circled reverse solidus', google translation)
- "⦹": # 0x29b9 (google: 'ympyräsi kohtisuorassa')
- "⦺": # 0x29ba (en: 'circled divided by horizontal bar and top half divided by vertical bar', google translation)
- "⦻": # 0x29bb (en: 'circle with superimposed x', google: 'ympyrä päällekkäin x')
- "⦼": # 0x29bc (en: 'circled anticlockwise rotated division sign', google: 'ympyröity vastapäivään kierretty jakomerkki')
- "⦽": # 0x29bd (en: 'up arrow through circle', google translation)
- "⦾": # 0x29be (google: 'ympyrävalkoinen luoti')
- "⦿": # 0x29bf (google: 'ympyrä luoti')
- "⧀": # 0x29c0 (google: 'ympyräsi vähemmän kuin')
- "⧁": # 0x29c1 (google: 'ympyräsi suurempi kuin')
- "⧂": # 0x29c2 (en: 'circle with small circle to the right', google: 'ympyrä pienellä ympyrällä oikealla')
- "⧃": # 0x29c3 (en: 'circle with two horizontal strokes to the right', google: 'ympyrä kahdella vaakasuuntaisella iskulla oikealle')
- "⧄": # 0x29c4 (google: 'neliö nousevat diagonaaliset viiva')
- "⧅": # 0x29c5 (google: 'neliö putoava diagonaalinen viiva')
- "⧆": # 0x29c6 (en: 'squared asterisk', google translation)
- "⧇": # 0x29c7 (en: 'squared small circle', google translation)
- "⧈": # 0x29c8 (en: 'squared square', google translation)
- "⧉": # 0x29c9 (google: 'kaksi liittyi neliötä')
- "⧊": # 0x29ca (en: 'triangle with dot above', google translation)
- "⧋": # 0x29cb (en: 'triangle with underbar', google translation)
- "⧌": # 0x29cc (en: 's in triangle', google translation)
- "⧍": # 0x29cd (en: 'triangle with serifs at bottom', google: 'kolmio alaosassa')
- "⧎": # 0x29ce (google: 'oikea kolmio vasemman kolmion yläpuolella')
- "⧏": # 0x29cf (en: 'left triangle beside vertical bar', google: 'vasen kolmio pystysuoran palkin vieressä')
- "⧐": # 0x29d0 (en: 'vertical bar beside right triangle', google: 'pystysuora palkki oikean kolmion vieressä')
- "⧑": # 0x29d1 (en: 'bowtie with left half black', google translation)
- "⧒": # 0x29d2 (en: 'bowtie with right half black', google translation)
- "⧓": # 0x29d3 (en: 'black bowtie', google translation)
- "⧔": # 0x29d4 (en: 'times with left half black', google translation)
- "⧕": # 0x29d5 (en: 'times with right half black', google translation)
- "⧖": # 0x29d6 (en: 'white hourglass', google translation)
- "⧗": # 0x29d7 (en: 'black hourglass', google translation)
- "⧘": # 0x29d8 (en: 'left wiggly fence', google translation)
- "⧙": # 0x29d9 (en: 'right wiggly fence', google translation)
- "⧚": # 0x29da (en: 'left double wiggly fence', google: 'vasen kaksinkertainen aita')
- "⧛": # 0x29db (en: 'right double wiggly fence', google: 'oikea kaksinkertainen aita')
- "⧜": # 0x29dc (google: 'epätäydellinen äärettömyys')
- "⧝": # 0x29dd (en: 'tie over infinity', google translation)
- "⧞": # 0x29de (en: 'infinity negated with vertical bar', google: 'äärettömyys kielsi pystysuoralla palkilla')
- "⧟": # 0x29df (en: 'double-ended multimap', google translation) # FI: "multimap", "monikuvaus" translation questionable
- "⧠": # 0x29e0 (en: 'square with contoured outline', google translation)
- "⧡": # 0x29e1 (en: 'increases as', google translation)
- "⧢": # 0x29e2 (en: 'shuffle product', google translation)
- "⧣": # 0x29e3 (google: 'vastaa merkkiä ja viistot rinnakkain')
- "⧤": # 0x29e4 (en: 'equals sign and slanted parallel with tilde above', google: 'vastaa merkkiä ja viistot yhdensuuntaisen kanssa tilden kanssa yllä')
- "⧥": # 0x29e5 (en: 'identical to and slanted parallel', google: 'identtinen ja vino rinnakkain')
- "⧦": # 0x29e6 (google translation)
- "⧧": # 0x29e7 (en: 'thermodynamic', google translation)
- "⧨": # 0x29e8 (en: 'down pointing triangle with left half black', google translation)
- "⧩": # 0x29e9 (en: 'down pointing triangle with right half black', google translation)
- "⧪": # 0x29ea (en: 'black diamond with down arrow', google translation)
- "⧫": # 0x29eb (en: 'black lozenge', google: 'musta lozenge')
- "⧬": # 0x29ec (en: 'white circle with down arrow', google translation)
- "⧭": # 0x29ed (en: 'black circle with down arrow', google translation)
- "⧮": # 0x29ee (en: 'error-barred white square', google translation)
- "⧯": # 0x29ef (en: 'error-barred black square', google translation)
- "⧰": # 0x29f0 (en: 'error-barred white diamond', google translation)
- "⧱": # 0x29f1 (en: 'error-barred black diamond', google translation)
- "⧲": # 0x29f2 (en: 'error-barred white circle', google translation)
- "⧳": # 0x29f3 (en: 'error-barred black circle', google translation)
- "⧴": # 0x29f4 (en: 'rule-delayed', google: 'sääntöviitettu')
- "⧵": # 0x29f5 (en: 'reverse solidus operator', google translation)
- "⧶": # 0x29f6 (en: 'solidus with overbar', google: 'solidus ylikuormituksen kanssa')
- "⧷": # 0x29f7 (en: 'reverse solidus with horizontal stroke', google translation)
- "⧸": # 0x29f8 (google translation)
- "⧹": # 0x29f9 (en: 'big reverse solidus', google translation)
- "⧺": # 0x29fa (en: 'double plus', google translation)
- "⧻": # 0x29fb (google translation)
- "⧼": # 0x29fc (en: 'left pointing curved angle bracket', google translation)
- "⧽": # 0x29fd (en: 'right pointing curved angle bracket', google translation)
- "⧾": # 0x29fe (en: 'tiny', google translation)
- "⧿": # 0x29ff (google translation)
- "⨀": # 0x2a00 (en: 'circled dot operator', google translation)
- "⨁": # 0x2a01 (en: 'circled plus operator', google translation)
- "⨂": # 0x2a02 (en: 'circled times operator', google translation)
- "⨃": # 0x2a03 (en: 'union operator with dot', google translation)
- "⨄": # 0x2a04 (en: 'union operator with plus', google translation)
- "⨅": # 0x2a05 (en: 'square intersection operator', google translation)
- "⨆": # 0x2a06 (en: 'square union operator', google translation)
- "⨇": # 0x2a07 (en: 'two logical and operator', google translation)
- "⨈": # 0x2a08 (en: 'two logical or operator', google translation)
- "⨉": # 0x2a09 (en: 'times operator', google translation)
- "⨊": # 0x2a0a (en: 'modulo two sum', google translation)
- "⨋": # 0x2a0b (en: 'summation with integral', google translation)
- "⨌": # 0x2a0c (google: 'neljänneksen kiinteä operaattori')
- "⨍": # 0x2a0d (google: 'äärellinen osa integraali')
- "⨎": # 0x2a0e (en: 'integral with double stroke', google translation)
- "⨏": # 0x2a0f (en: 'integral average with slash', google translation)
- "⨐": # 0x2a10 (google: 'kiertotoiminto')
- "⨑": # 0x2a11 (google: 'vastapäivään integraatio')
- "⨒": # 0x2a12 (en: 'line integration with rectangular path around pole', google: 'line -integraatio suorakaiteen muotoisella polulla navan ympärillä')
- "⨓": # 0x2a13 (en: 'line integration with semicircular path around pole', google: 'line -integrointi puolipyöreällä polulla navan ympärillä')
- "⨔": # 0x2a14 (google: 'linjan integrointi ei sisällä napaa')
- "⨕": # 0x2a15 (google: 'integroitu pisteen operaattorin ympärillä')
- "⨖": # 0x2a16 en: 'quaternion integral operator' google: 'kvaternionin kiinteä operaattori'
- "⨗": # 0x2a17 (en: 'integral with leftwards arrow with hook', google: 'integraali vasemmanpuoleisella nuolella koukussa')
- "⨘": # 0x2a18 (en: 'integral with times sign', google translation)
- "⨙": # 0x2a19 (en: 'integral with intersection', google translation)
- "⨚": # 0x2a1a (en: 'integral with union', google translation)
- "⨛": # 0x2a1b (en: 'integral with overbar', google translation)
- "⨜": # 0x2a1c (en: 'integral with underbar', google translation)
- "⨝": # 0x2a1d (en: 'join', google translation)
- "⨞": # 0x2a1e (en: 'large left triangle operator', google translation)
- "⨟": # 0x2a1f (en: 'z notation schema composition', google translation)
- "⨠": # 0x2a20 (en: 'z notation schema piping', google translation)
- "⨡": # 0x2a21 (en: 'z notation schema projection', google translation)
- "⨢": # 0x2a22 (en: 'plus sign with circle above', google: 'plus -merkki yllä olevalla ympyrällä')
- "⨣": # 0x2a23 (en: 'plus sign with circumflex accent above', google: 'plus -merkki yllä olevalla ympyrä -aksentilla') # FI: should this be "hat", "hattu"?
- "⨤": # 0x2a24 (en: 'plus sign with tilde above', google: 'plus -merkki yllä olevan tilden kanssa')
- "⨥": # 0x2a25 (en: 'plus sign with dot below', google: 'plus -merkki alla olevalla pisteellä')
- "⨦": # 0x2a26 (en: 'plus sign with tilde below', google: 'plus -merkki alla olevilla tildeillä')
- "⨧": # 0x2a27 (en: 'plus sign with subscript two', google: 'plus -merkki alaindeksi kaksi')
- "⨨": # 0x2a28 (en: 'plus sign with black triangle', google translation)
- "⨩": # 0x2a29 (en: 'minus sign with comma above', google: 'miinus merkki yllä olevalla pilkulla')
- "⨪": # 0x2a2a (en: 'minus sign with dot below', google: 'miinusmerkki alla olevalla pisteellä')
- "⨫": # 0x2a2b (en: 'minus sign with falling dots', google translation)
- "⨬": # 0x2a2c (en: 'minus sign with rising dots', google translation)
- "⨭": # 0x2a2d (google: 'plus kirjaudu vasemmassa puolivälissä')
- "⨮": # 0x2a2e (google: 'plus kirjaudu oikeaan puoliväliin')
- "⨯": # 0x2a2f (en: 'cross product', google: 'ristituote')
- "⨰": # 0x2a30 (en: 'multiplication sign with dot above', google: 'kertolaskulla olevan pisteen kanssa')
- "⨱": # 0x2a31 (en: 'multiplication sign with underbar', google: 'kertolasku aluskokouksella')
- "⨲": # 0x2a32 (en: 'semidirect product with bottom closed', google translation)
- "⨳": # 0x2a33 (en: 'smash product' google: 'smash -tuote') # FI: translation unclear
- "⨴": # 0x2a34 (google: 'kertolaskenta vasemmassa puolivälissä')
- "⨵": # 0x2a35 (google: 'kertokultaan oikea puoli ympyrä')
- "⨶": # 0x2a36 (en: 'circled multiplication sign with circumflex accent', google: 'ympyräkerroin merkki kehäkykyt aksentilla') # FI: should this be with "hat", "hattu"?
- "⨷": # 0x2a37 (google: 'kertolaskenta kaksoisympyrässä')
- "⨸": # 0x2a38 (google: 'ympyrädivisioonan merkki')
- "⨹": # 0x2a39 (google: 'plus kirjaudu kolmioon')
- "⨺": # 0x2a3a (google: 'miinus kirjaudu kolmioon')
- "⨻": # 0x2a3b (google: 'kertokultaan kolmiossa')
- "⨼": # 0x2a3c (google: 'sisätuote')
- "⨽": # 0x2a3d (en: 'righthand interior product', google translation)
- "⨿": # 0x2a3f (en: "amalgamation or coproduct", google: 'yhdistäminen tai yhteistyö') # FI: translation unclear
- "⩀": # 0x2a40 (en: 'intersection with dot', google: 'risteys pisteellä')
- "⩁": # 0x2a41 (en: 'union with minus sign', google translation)
- "⩂": # 0x2a42 (en: 'union with overbar', google: 'unioni ylikuormituksen kanssa')
- "⩃": # 0x2a43 (en: 'intersection with overbar', google: 'risteys ylikuormituksen kanssa')
- "⩄": # 0x2a44 (en: 'intersection with logical and', google: 'risteys loogisella ja')
- "⩅": # 0x2a45 (en: 'union with logical or', google: 'union loogisen tai')
- "⩆": # 0x2a46 (google: 'unioni risteyksen yläpuolella')
- "⩇": # 0x2a47 (google: 'risteys liiton yläpuolella')
- "⩈": # 0x2a48 (google: 'unioni yläpuolella risteyksen yläpuolella')
- "⩉": # 0x2a49 (google: 'risteys yläpuolella liiton yläpuolella')
- "⩊": # 0x2a4a (en: 'union beside and joined with union', google: 'unionin vieressä ja liittyi unioniin')
- "⩋": # 0x2a4b (en: 'intersection beside and joined with intersection', google: 'risteys risteyksen vieressä ja liitetty')
- "⩌": # 0x2a4c (en: 'closed union with serifs', google: 'suljettu liitto serifien kanssa')
- "⩍": # 0x2a4d (en: 'closed intersection with serifs', google: 'suljettu risteys serifien kanssa')
- "⩎": # 0x2a4e (en: 'double square intersection', google translation)
- "⩏": # 0x2a4f (google translation)
- "⩐": # 0x2a50 (en: 'closed union with serifs and smash product', google: 'suljettu liitto serifien ja smash -tuotteen kanssa')
- "⩑": # 0x2a51 (en: 'logical and with dot above', google translation)
- "⩒": # 0x2a52 (en: 'logical or with dot above', google translation)
- "⩓": # 0x2a53 (google: 'kaksinkertainen looginen ja')
- "⩔": # 0x2a54 (google: 'kaksinkertainen looginen tai')
- "⩕": # 0x2a55 (google: 'kaksi risteävää loogista ja')
- "⩖": # 0x2a56 (google: 'kaksi risteävää loogista tai')
- "⩗": # 0x2a57 (google: 'kalteva suuri tai')
- "⩘": # 0x2a58 (google: 'kalteva iso ja')
- "⩙": # 0x2a59 (en: 'logical or overlapping logical and', google translation)
- "⩚": # 0x2a5a (en: 'logical and with middle stem', google: 'looginen ja keskimmäisellä varrella')
- "⩛": # 0x2a5b (en: 'logical or with middle stem', google: 'looginen tai keskimmäisellä varrella')
- "⩜": # 0x2a5c (en: 'logical and with horizontal dash', google: 'looginen ja vaakasuuntaisella viivalla')
- "⩝": # 0x2a5d (en: 'logical or with horizontal dash', google: 'looginen tai vaakasuuntaisella viivalla')
- "⩞": # 0x2a5e (en: 'logical and with double overbar', google translation)
- "⩟": # 0x2a5f (en: 'logical and with underbar', google: 'looginen ja alikarjan kanssa')
- "⩠": # 0x2a60 (en: 'logical and with double underbar', google translation)
- "⩡": # 0x2a61 (en: 'small vee with underbar', google translation)
- "⩢": # 0x2a62 (en: 'logical or with double overbar', google translation)
- "⩣": # 0x2a63 (en: 'logical or with double underbar', google translation)
- "⩤": # 0x2a64 (en: 'z notation domain antirestriction', google translation) # FI: unclear translation
- "⩥": # 0x2a65 (en: 'z notation range antirestriction', google translation) # FI: unclear translation
- "⩦": # 0x2a66 (en: 'equals sign with dot below', google: 'vastaa alla olevaa pistettä')
- "⩧": # 0x2a67 (en: 'identical with dot above', google translation)
- "⩨": # 0x2a68 (en: 'triple horizontal bar with double vertical stroke', google translation)
- "⩩": # 0x2a69 (en: 'triple horizontal bar with triple vertical stroke', google translation)
- "⩪": # 0x2a6a (en: 'tilde operator with dot above', google: 'tilde -operaattori, jossa on pisteen yllä')
- "⩫": # 0x2a6b (en: 'tilde operator with rising dots', google translation)
- "⩬": # 0x2a6c (en: 'similar minus similar', google translation)
- "⩭": # 0x2a6d (en: 'congruent with dot above', google: 'yhteydet yllä olevan dot: n kanssa')
- "⩮": # 0x2a6e (en: 'equals with asterisk', google translation)
- "⩯": # 0x2a6f (en: 'almost equal to with circumflex accent', google: 'lähes')
- "⩰": # 0x2a70 (en: 'approximately equal to or equal to', google translation)
- "⩱": # 0x2a71 (en: 'equals sign above plus sign', google: 'vastaa merkkiä yllä plus merkki')
- "⩲": # 0x2a72 (en: 'plus sign above equals sign', google: 'plus -merkki yllä on yhtä suuri merkki')
- "⩳": # 0x2a73 (google: 'yhtä suuri kuin merkki tilde -operaattorin yläpuolella')
- "⩴": # 0x2a74 (google: 'kaksinkertainen paksusuolen tasainen')
- "⩵": # 0x2a75 (en: 'two consecutive equals signs', google: 'kaksi peräkkäistä vastaa merkkejä')
- "⩶": # 0x2a76 (en: 'three consecutive equals signs', google translation)
- "⩷": # 0x2a77 (en: 'equals sign with two dots above and two dots below', google: 'yhtä suuri kuin kaksi pistettä yllä ja kaksi pistettä alla')
- "⩸": # 0x2a78 (en: 'equivalent with four dots above', google: 'vastaa neljällä pisteellä yllä')
- "⩹": # 0x2a79 (en: 'less than with circle inside', google: 'vähemmän kuin ympyrällä sisällä')
- "⩺": # 0x2a7a (en: 'greater than with circle inside', google: 'suurempi kuin ympyrällä sisällä')
- "⩻": # 0x2a7b (en: 'less than with question mark above', google: 'vähemmän kuin yllä oleva kysymys')
- "⩼": # 0x2a7c (en: 'greater than with question mark above', google: 'suurempi kuin yllä oleva kysymys')
- "⩽": # 0x2a7d (google: 'vähemmän kuin vino kuin')
- "⩾": # 0x2a7e (en: 'greater than or slanted equal to', google: 'suurempi kuin vino yhtä suuri kuin')
- "⩿": # 0x2a7f (en: 'less than or slanted equal to with dot inside', google: 'vähemmän tai vino yhtä suuri kuin pisteellä')
- "⪀": # 0x2a80 (en: 'greater than or slanted equal to with dot inside', google: 'suurempi tai viistot yhtä suuri kuin pisteellä')
- "⪁": # 0x2a81 (en: 'less than or slanted equal to with dot above', google: 'vähemmän kuin vino yhtä suuri kuin yllä olevalla pisteellä')
- "⪂": # 0x2a82 (en: 'greater than or slanted equal to with dot above', google: 'suurempi kuin vino kuin yllä olevalla pisteellä')
- "⪃": # 0x2a83 (en: 'less than or slanted equal to with dot above right', google: 'vähemmän tai viistot yhtä suuri kuin oikean yläpuolella')
- "⪄": # 0x2a84 (en: 'greater than or slanted equal to with dot above left', google: 'suurempi kuin vino kuin vasemman yläpuolella oleva piste')
- "⪅": # 0x2a85 (en: 'less than or approximate', google translation)
- "⪆": # 0x2a86 (en: 'greater than or approximate', google translation)
- "⪇": # 0x2a87 (en: 'less than and single line not equal to', google translation)
- "⪈": # 0x2a88 (en: 'greater than and single line not equal to', google translation)
- "⪉": # 0x2a89 (en: 'less than and not approximate', google: 'vähemmän kuin ja ei likimääräinen')
- "⪊": # 0x2a8a (en: 'greater than and not approximate', google: 'suurempi kuin ja ei likimääräinen')
- "⪋": # 0x2a8b (en: 'less than above double line equal above greater than', google translation)
- "⪌": # 0x2a8c (en: 'greater than above double line equal above less than', google translation)
- "⪍": # 0x2a8d (google: 'vähemmän kuin samanlainen tai tasainen')
- "⪎": # 0x2a8e (google: 'suurempi kuin samanlainen tai tasainen')
- "⪏": # 0x2a8f (google: 'vähemmän kuin yläpuolella yläpuolella suurempi kuin')
- "⪐": # 0x2a90 (google: 'suurempi kuin edellä mainitussa yläpuolella')
- "⪑": # 0x2a91 (en: 'less than above greater than above double line equal', google: 'alle enemmän kuin yli suurempi kuin kaksoisviiva on yhtä suuri')
- "⪒": # 0x2a92 (en: 'greater than above less than above double line equal', google: 'suurempi kuin yläpuolella vähemmän kuin kaksoisviiva on yhtä suuri')
- "⪓": # 0x2a93 (google: 'vähemmän kuin yläpuolella viistot ovat yhtä suurempia kuin yläpuolella viistot ovat yhtä suuret')
- "⪔": # 0x2a94 (google: 'suurempi kuin yläpuolella viistot ovat yhtä suurempia kuin viistojen yläpuolella yhtä suuret')
- "⪕": # 0x2a95 (en: 'slanted equal to or less than', google translation)
- "⪖": # 0x2a96 (en: 'slanted equal to or greater than', google translation)
- "⪗": # 0x2a97 (en: 'slanted equal to or less than with dot inside', google: 'viisto yhtä tai vähemmän kuin pisteellä sisällä')
- "⪘": # 0x2a98 (en: 'slanted equal to or greater than with dot inside', google: 'viisto yhtä tai suurempi kuin pisteellä sisällä')
- "⪙": # 0x2a99 (en: 'double line equal to or less than', google: 'kaksoisviiva, joka on yhtä suuri tai vähemmän kuin')
- "⪚": # 0x2a9a (en: 'double line equal to or greater than', google: 'kaksoisviiva, joka on yhtä suuri tai suurempi')
- "⪛": # 0x2a9b (en: 'double line slanted equal to or less than', google translation)
- "⪜": # 0x2a9c (en: 'double line slanted equal to or greater than', google translation)
- "⪝": # 0x2a9d (en: 'similar or less than', google: 'samanlainen tai vähemmän kuin')
- "⪞": # 0x2a9e (google: 'samanlainen tai suurempi kuin')
- "⪟": # 0x2a9f (google: 'samanlainen yläpuolella vähemmän kuin yllä oleva merkki')
- "⪠": # 0x2aa0 (google: 'samanlainen yläpuolella suurempi kuin yllä oleva merkki')
- "⪡": # 0x2aa1 (en: 'double nested less than', google: 'kaksinkertainen sisäkkäin vähemmän kuin')
- "⪢": # 0x2aa2 (en: 'double nested greater than', google: 'kaksinkertainen sisäkkäinen suurempi kuin')
- "⪣": # 0x2aa3 (en: 'double nested less than with underbar', google translation)
- "⪤": # 0x2aa4 (en: 'greater than overlapping less than', google: 'suurempi kuin päällekkäisyys vähemmän kuin')
- "⪥": # 0x2aa5 (google: 'suurempi kuin vähemmän kuin')
- "⪦": # 0x2aa6 (google: 'vähemmän kuin käyrä suljettu')
- "⪧": # 0x2aa7 (google: 'suurempi kuin käyrä suljettu')
- "⪨": # 0x2aa8 (google: 'vähemmän kuin suljettuna käyrällä viistolla tasavertaisesti')
- "⪩": # 0x2aa9 (google: 'suurempi kuin suljettu kaarulla, joka on viistolla yhtä suuri')
- "⪪": # 0x2aaa (google: 'pienempi kuin')
- "⪫": # 0x2aab (google: 'suurempi kuin')
- "⪬": # 0x2aac (google: 'pienempi tai yhtä suuri kuin')
- "⪭": # 0x2aad (google: 'suurempi tai yhtä suuri kuin')
- "⪮": # 0x2aae (en: 'equals sign with bumpy above', google: 'yhtä suuri kuin kuohuttava yllä') # FI: translation unclear
- "⪯": # 0x2aaf (google: 'ennen yhden rivin yläpuolella on yhtä suuri kuin merkki')
- "⪰": # 0x2ab0 (en: 'succeeds above single line equals sign', google translation)
- "⪱": # 0x2ab1 (en: 'precedes above single line not equal to', google translation)
- "⪲": # 0x2ab2 (en: 'succeeds above single line not equal to', google translation)
- "⪳": # 0x2ab3 (en: 'precedes above equals sign', google translation)
- "⪴": # 0x2ab4 (en: 'succeeds above equals sign', google translation)
- "⪵": # 0x2ab5 (en: 'precedes above not equal to', google: 'edellä on edellä, joka ei ole yhtä suuri kuin')
- "⪶": # 0x2ab6 (en: 'succeeds above not equal to', google: 'onnistuu yläpuolella, ei ole yhtä suuri kuin')
- "⪷": # 0x2ab7 (en: 'precedes above almost equal to', google translation)
- "⪸": # 0x2ab8 (en: 'succeeds above almost equal to', google translation)
- "⪹": # 0x2ab9 (en: 'precedes above not almost equal to', google translation)
- "⪺": # 0x2aba (en: 'succeeds above not almost equal to', google translation)
- "⪻": # 0x2abb (google: 'kaksinkertainen edeltävä')
- "⪼": # 0x2abc (google: 'double onnistuu')
- "⪽": # 0x2abd (en: 'subset with dot', google: 'alajoukko pisteellä')
- "⪾": # 0x2abe (en: 'superset with dot', google: 'superset pisteellä')
- "⪿": # 0x2abf (en: 'subset with plus sign below', google: 'alajoukko plus -merkki alla')
- "⫀": # 0x2ac0 (en: 'superset with plus sign below', google: 'superset alla olevalla merkinnällä')
- "⫁": # 0x2ac1 (en: 'subset with multiplication sign below', google: 'alajoukko alla olevalla kertolaskulla')
- "⫂": # 0x2ac2 (en: 'superset with multiplication sign below', google: 'superset alla olevalla kertolaskulla')
- "⫃": # 0x2ac3 (en: 'subset of or equal to with dot above', google: 'alajoukko tai yhtä suuri kuin yllä olevalla pisteellä')
- "⫄": # 0x2ac4 (en: 'superset of or equal to with dot above', google: 'superset tai yhtä suuri kuin yllä olevalla pisteellä')
- "⫅": # 0x2ac5 (en: 'subset of above equals sign', google translation)
- "⫆": # 0x2ac6 (en: 'superset of above equals sign', google translation)
- "⫇": # 0x2ac7 (en: 'subset of above tilde operator', google: 'yllä olevan tilde -operaattorin osajoukko')
- "⫈": # 0x2ac8 (en: 'superset of above tilde operator', google: 'tilde -operaattorin yläpuolella')
- "⫉": # 0x2ac9 (en: 'subset of above almost equal to', google translation)
- "⫊": # 0x2aca (en: 'superset of above almost equal to', google translation)
- "⫋": # 0x2acb (en: 'subset above not equal to', google translation)
- "⫌": # 0x2acc (en: 'superset of above not equal to', google translation)
- "⫍": # 0x2acd (en: 'square left open box operator', google translation) # FI: translation unclear
- "⫎": # 0x2ace (en: 'square right open box operator', google translation) # FI: translation unclear
- "⫏": # 0x2acf (google: 'suljettu alajoukko')
- "⫐": # 0x2ad0 (google: 'suljettu superset')
- "⫑": # 0x2ad1 (google: 'suljettu osajoukko tai yhtä suuri kuin')
- "⫒": # 0x2ad2 (google: 'suljettu superset tai yhtä suuri kuin')
- "⫓": # 0x2ad3 (en: 'subset above superset', google: 'supersetin yläpuolella')
- "⫔": # 0x2ad4 (en: 'superset above subset', google: 'superset alajoukon yläpuolella')
- "⫕": # 0x2ad5 (en: 'subset above subset', google: 'alajoukko alajoukossa')
- "⫖": # 0x2ad6 (en: 'superset above superset', google: 'superset supersetin yläpuolella')
- "⫗": # 0x2ad7 (google: 'superset alajoukon vieressä')
- "⫘": # 0x2ad8 (en: 'superset beside and joined by dash with subset', google: 'superset vieressä ja liittyi viivalla alajoukkoon')
- "⫙": # 0x2ad9 (google: 'elementti avautumisesta alaspäin')
- "⫚": # 0x2ada (en: 'pitchfork with tee top', google: 'pitchfork tee -top') # FI: translation unclear
- "⫛": # 0x2adb (google: 'poikittainen risteys') # FI: translation unclear
- "⫝̸": # 0x2adc (en: 'forking', google translation) # FI: translation unclear
- "⫝": # 0x2add (en: 'nonforking', google translation) # FI: translation unclear
- "⫞": # 0x2ade (en: 'short left tack', google translation)
- "⫟": # 0x2adf (en: 'short down tack', google translation)
- "⫠": # 0x2ae0 (en: 'short up tack', google translation)
- "⫡": # 0x2ae1 (en: 'perpendicular with s', google translation)
- "⫢": # 0x2ae2 (en: 'vertical bar triple right turnstile', google translation)
- "⫣": # 0x2ae3 (en: 'double vertical bar left turnstile', google translation)
- "⫤": # 0x2ae4 (en: 'vertical bar double left turnstile', google: 'pystysuora palkki kaksinkertainen vasen kääntölaite')
- "⫥": # 0x2ae5 (en: 'double vertical bar double left turnstile', google translation)
- "⫦": # 0x2ae6 (google: 'pitkä viiva double pystysuoran vasemmalta jäseneltä')
- "⫧": # 0x2ae7 (en: 'short down tack with overbar', google: 'lyhyt alaspäin tarttuva ylikuormitus')
- "⫨": # 0x2ae8 (en: 'short up tack with underbar', google: 'lyhyt up takki alapalkissa')
- "⫩": # 0x2ae9 (google: 'lyhyt ylösnopeus lyhyen alaspäin')
- "⫪": # 0x2aea (en: 'double down tack', google translation)
- "⫫": # 0x2aeb (google: 'kaksinkertainen tarttuva')
- "⫬": # 0x2aec (en: "double stroke not sign" google: 'kaksinkertainen isku ei allekirjoittaa')
- "⫭": # 0x2aed (en: "reversed double stroke not sign" google: 'käänteinen kaksoishalvaus ei allekirjoittaa')
- "⫮": # 0x2aee (en: 'does not divide with reversed negation slash', google: 'ei jaa käännetyn kielteisen viivan kanssa')
- "⫯": # 0x2aef (en: 'vertical line with circle above', google: 'pystysuora viiva ympyrän kanssa')
- "⫰": # 0x2af0 (en: 'vertical line with circle below', google: 'pystysuora viiva, jossa ympyrä alla')
- "⫱": # 0x2af1 (en: 'down tack with circle below', google: 'alaspäin ympyrä alla')
- "⫲": # 0x2af2 (en: 'parallel with horizontal stroke', google: 'yhdensuuntainen vaakasuuntaisen iskun kanssa')
- "⫳": # 0x2af3 (en: 'parallel with tilde operator', google: 'rinnakkain tilde -operaattorin kanssa')
- "⫴": # 0x2af4 (en: 'triple vertical bar binary relation', google translation)
- "⫵": # 0x2af5 (en: 'triple vertical bar with horizontal stroke', google translation)
- "⫶": # 0x2af6 (en: 'triple colon operator', google translation)
- "⫷": # 0x2af7 (en: 'triple nested less than', google translation)
- "⫸": # 0x2af8 (en: 'triple nested greater than', google translation)
- "⫹": # 0x2af9 (en: 'double line slanted less than or equal to', google translation)
- "⫺": # 0x2afa (en: 'double line slanted greater than or equal to', google translation)
- "⫻": # 0x2afb (en: 'triple solidus binary relation', google translation)
- "⫼": # 0x2afc (en: 'large triple vertical bar operator', google translation)
- "⫽": # 0x2afd (en: 'double solidus operator', google translation)
- "⫾": # 0x2afe (en: 'white vertical bar', google translation)
- "⫿": # 0x2aff (en: 'white vertical bar', google translation)
- "⬀": # 0x2b00 (en: 'north east white arrow', google translation)
- "⬁": # 0x2b01 (en: 'north west white arrow', google translation)
- "⬂": # 0x2b02 (en: 'south east white arrow', google translation)
- "⬃": # 0x2b03 (en: 'south west white arrow', google translation)
- "⬄": # 0x2b04 (en: 'left right white arrow', google translation)
- "⬅": # 0x2b05 (en: 'leftwards black arrow', google translation)
- "⬆": # 0x2b06 (en: 'upwards black arrow', google translation)
- "⬇": # 0x2b07 (en: 'downwards black arrow', google translation)
- "⬈": # 0x2b08 (en: 'north east black arrow', google translation)
- "⬉": # 0x2b09 (en: 'north west black arrow', google translation)
- "⬊": # 0x2b0a (en: 'south east black arrow', google translation)
- "⬋": # 0x2b0b (en: 'south west black arrow', google translation)
- "⬌": # 0x2b0c (en: 'left right black arrow', google translation)
- "⬍": # 0x2b0d (en: 'up down black arrow', google translation)
- "⬎": # 0x2b0e (en: 'rightwards arrow with tip downwards', google translation)
- "⬏": # 0x2b0f (en: 'rightwards arrow with tip upwards', google translation)
- "⬐": # 0x2b10 (en: 'leftwards arrow with tip downwards', google translation)
- "⬑": # 0x2b11 (en: 'leftwards arrow with tip upwards', google translation)
- "⬒": # 0x2b12 (en: 'square with top half black', google translation)
- "⬓": # 0x2b13 (en: 'square with bottom half black', google translation)
- "⬔": # 0x2b14 (en: 'square with upper right diagonal half black', google translation)
- "⬕": # 0x2b15 (en: 'square with lower left diagonal half black', google translation)
- "⬖": # 0x2b16 (en: 'diamond with left half black', google translation)
- "⬗": # 0x2b17 (en: 'diamond with right half black', google translation)
- "⬘": # 0x2b18 (en: 'diamond with top half black', google translation)
- "⬙": # 0x2b19 (en: 'diamond with bottom half black', google translation)
- "⬚": # 0x2b1a (en: 'box', google translation)
- "⬛": # 0x2b1b (en: 'black large square', google translation)
- "⬜": # 0x2b1c (en: 'white large square', google translation)
- "⬝": # 0x2b1d (en: 'black very small square', google translation)
- "⬞": # 0x2b1e (en: 'white very small square', google translation)
- "⬟": # 0x2b1f (en: 'black pentagon', google translation)
- "⬠": # 0x2b20 (en: 'white pentagon', google translation)
- "⬡": # 0x2b21 (en: 'white hexagon', google translation)
- "⬢": # 0x2b22 (en: 'black hexagon', google translation)
- "⬣": # 0x2b23 (en: 'horizontal black hexagon', google translation)
- "⬤": # 0x2b24 (en: 'black large circle', google translation)
- "⬥": # 0x2b25 (en: 'black medium diamond', google translation)
- "⬦": # 0x2b26 (en: 'white medium diamond', google translation)
- "⬧": # 0x2b27 (en: 'black medium lozenge', google translation)
- "⬨": # 0x2b28 (en: 'white medium lozenge', google translation)
- "⬩": # 0x2b29 (en: 'black small diamond', google translation)
- "⬪": # 0x2b2a (en: 'black small lozenge', google translation)
- "⬫": # 0x2b2b (en: 'white small lozenge', google translation)
- "⬬": # 0x2b2c (en: 'black horizontal ellipse', google translation)
- "⬭": # 0x2b2d (en: 'white horizontal ellipse', google translation)
- "⬮": # 0x2b2e (en: 'black vertical ellipse', google translation)
- "⬯": # 0x2b2f (en: 'white vertical ellipse', google translation)
- "⬰": # 0x2b30 (en: 'left arrow with small circle', google translation)
- "⬱": # 0x2b31 (en: 'three leftwards arrows', google translation)
- "⬲": # 0x2b32 (en: 'left arrow with circled plus', google translation)
- "⬳": # 0x2b33 (en: 'long leftwards squiggle arrow', google translation)
- "⬴": # 0x2b34 (en: 'leftwards two headed arrow with vertical stroke', google translation)
- "⬵": # 0x2b35 (en: 'leftwards two headed arrow with double vertical stroke', google translation)
- "⬶": # 0x2b36 (en: 'leftwards two headed arrow from bar', google translation)
- "⬷": # 0x2b37 (en: 'leftwards two headed triple dash arrow', google translation)
- "⬸": # 0x2b38 (en: 'leftwards arrow with dotted stem', google translation)
- "⬹": # 0x2b39 (en: 'leftwards arrow with tail with vertical stroke', google translation)
- "⬺": # 0x2b3a (en: 'leftwards arrow with tail with double vertical stroke', google translation)
- "⬻": # 0x2b3b (en: 'leftwards two headed arrow with tail', google translation)
- "⬼": # 0x2b3c (en: 'leftwards two headed arrow with tail with vertical stroke', google translation)
- "⬽": # 0x2b3d (en: 'leftwards two headed arrow with tail with double vertical stroke', google translation)
- "⬾": # 0x2b3e (en: 'leftwards arrow through x', google translation)
- "⬿": # 0x2b3f (en: 'wave arrow pointing directly left', google translation)
- "⭀": # 0x2b40 (en: 'equals sign above leftwards arrow', google translation)
- "⭁": # 0x2b41 (en: 'reverse tilde operator above leftwards arrow', google translation)
- "⭂": # 0x2b42 (en: 'leftwards arrow above reverse almost equal to', google translation)
- "⭃": # 0x2b43 (en: 'rightwards arrow through greater than', google translation)
- "⭄": # 0x2b44 (en: 'rightwards arrow through superset', google translation)
- "⭅": # 0x2b45 (en: 'leftwards quadruple arrow', google translation)
- "⭆": # 0x2b46 (en: 'rightwards quadruple arrow', google translation)
- "⭇": # 0x2b47 (en: 'reverse tilde operator above rightwards arrow', google translation)
- "⭈": # 0x2b48 (en: 'rightwards arrow above reverse almost equal to', google translation)
- "⭉": # 0x2b49 (en: 'tilde operator above leftwards arrow', google translation)
- "⭊": # 0x2b4a (en: 'leftwards arrow above almost equal to', google translation)
- "⭋": # 0x2b4b (en: 'leftwards arrow above reverse tilde operator', google translation)
- "⭌": # 0x2b4c (en: 'rightwards arrow above reverse tilde operator', google translation)
- "⭐": # 0x2b50 (google: 'valkoinen keskisuuri tähti')
- "⭑": # 0x2b51 (google: 'musta pieni tähti')
- "⭒": # 0x2b52 (google: 'valkoinen pieni tähti')
- "⭓": # 0x2b53 (en: 'black right pointing pentagon', google translation)
- "⭔": # 0x2b54 (en: 'white right pointing pentagon', google translation)
- "⭕": # 0x2b55 (en: 'heavy large circle', google translation)
- "⭖": # 0x2b56 (en: 'heavy oval with oval inside', google translation)
- "⭗": # 0x2b57 (en: 'heavy circle with circle inside', google translation)
- "⭘": # 0x2b58 (en: 'heavy circle', google translation)
- "⭙": # 0x2b59 (en: 'heavy circled saltire', google translation)
- "⸀": # 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 (en: 'hypodiastole', 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 translation)
- "⸣": # 0x2e23 (en: 'top right half bracket', google translation)
- "⸤": # 0x2e24 (en: 'bottom left half bracket', google translation)
- "⸥": # 0x2e25 (en: 'bottom right half bracket', google translation)
- "⸦": # 0x2e26 (en: 'left sideways u bracket', google translation)
- "⸧": # 0x2e27 (en: 'right sideways u bracket', google translation)
- "⸨": # 0x2e28 (en: 'left double parentheses', google translation)
- "⸩": # 0x2e29 (en: 'right double parentheses', google translation)
- "⸪": # 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) # FI: translation unclear
- "⸺": # 0x2e3a (en: 'two em dash', google translation)
- "⸻": # 0x2e3b (en: 'three em dash', google translation)
- "〃": # 0x3003 (google translation)
- "〈": # 0x3008 (en: 'left angle bracket', google translation)
- "〉": # 0x3009 (en: 'right angle bracket', google translation)
- "《": # 0x300a (google: 'vasen kaksoiskulma kiinnike')
- "》": # 0x300b (google: 'oikea kaksoiskulma kiinnike')
- "「": # 0x300c (en: 'left corner bracket', google translation)
- "」": # 0x300d (en: 'right corner bracket', google translation)
- "『": # 0x300e (en: 'left white corner bracket', google translation)
- "』": # 0x300f (en: 'right white corner bracket', google translation)
- "【": # 0x3010 (en: 'left black lenticular bracket', google translation)
- "】": # 0x3011 (en: 'right black lenticular bracket', google translation)
- "〔": # 0x3014 (google: 'vasen kilpikonnan kuoren kiinnike')
- "〕": # 0x3015 (google: 'oikea kilpikonnakuoren kiinnike')
- "〖": # 0x3016 (en: 'left white lenticular bracket', google translation)
- "〗": # 0x3017 (en: 'right white lenticular bracket', google translation)
- "〘": # 0x3018 (en: 'left white tortoise shell bracket', google translation)
- "〙": # 0x3019 (en: 'right white tortoise shell bracket', google translation)
- "〚": # 0x301a (google: 'vasen valkoinen neliömäki')
- "〛": # 0x301b (google: 'oikea valkoinen neliömäki')
- "〜": # 0x301c (en: 'wave dash', google translation)
- "〰": # 0x3030 (en: 'wavy dash', google: 'aaltoileva viiva')
- "㉈": # 0x3248 (en: 'circled number ten on black square', google translation)
- "㉉": # 0x3249 (en: 'circled number twenty on black square', google translation)
- "㉊": # 0x324a (en: 'circled number thirty on black square', google translation)
- "㉋": # 0x324b (en: 'circled number forty on blacks square', google translation)
- "㉌": # 0x324c (en: 'circled number fifty on black square', google translation)
- "㉍": # 0x324d (en: 'circled number sixty on black square', google translation)
- "㉎": # 0x324e (en: 'circled number seventy on black square', google translation)
- "㉏": # 0x324f (en: 'circled number eighty on black square', google translation)
- "㉑": # 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 (en: 'hectopascals', google translation)
- "㍲": # 0x3372 (en: 'daltons', 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 (en: 'milliamps', google translation)
- "㎄": # 0x3384 (google translation)
- "㎅": # 0x3385 (en: 'kilobytes', 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 (en: 'nanofarads', 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 (en: 'kilohertz', google translation)
- "㎒": # 0x3392 (en: 'megahertz', google translation)
- "㎓": # 0x3393 (en: 'gigahertz', google translation)
- "㎔": # 0x3394 (en: 'terahertz', google translation)
- "㎕": # 0x3395 (en: 'microliters', google translation)
- "㎖": # 0x3396 (en: 'milliliters', google translation)
- "㎗": # 0x3397 (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 (en: 'rads', 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 (en: 'nanovolts', google translation)
- "㎶": # 0x33b6 (en: 'microvolts', google translation)
- "㎷": # 0x33b7 (google translation)
- "㎸": # 0x33b8 (en: 'kilovolts', google translation)
- "㎹": # 0x33b9 (google translation)
- "㎺": # 0x33ba (google translation)
- "㎻": # 0x33bb (en: 'nanowatts', google translation)
- "㎼": # 0x33bc (en: 'microwatts', google translation)
- "㎽": # 0x33bd (google translation)
- "㎾": # 0x33be (en: 'kilowatts', google translation)
- "㎿": # 0x33bf (google translation)
- "㏀": # 0x33c0 (google translation)
- "㏁": # 0x33c1 (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 (google translation)
- "㏑": # 0x33d1 (en: 'natural log', 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 (en: 'sieverts', 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) # FI: translation unclear
- "": # 0xe917 (en: 'subset of with dot is included in as sub relation', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xe943 (en: 'greater equal slanted less', google translation)
- "": # 0xe948 (en: 'satisfied by', google translation) # FI: translation unclear
- "": # 0xe949 (en: 'lazy s', google translation)
- "": # 0xe94a (en: 'not assertion', google translation) # FI: translation unclear
- "": # 0xe94b (en: 'double equal', google translation)
- "": # 0xe94c (en: 'triple equal', google translation)
- "": # 0xe94d (en: 'rule delayed', google translation) # FI: translation unclear
- "": # 0xe94e (google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xe955 (en: 'smile under bar', google translation) # FI: translation unclear
- "": # 0xe956 (en: 'frown over bar', google translation) # FI: translation unclear
- "": # 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) # FI: : translation unclear
- "": # 0xe96a (en: 'larger than or equal slanted', google translation) # FI: : translation unclear
- "": # 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) # FI: unclear 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) # FI: translation unclear
- "": # 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) # FI: : translation unclear
- "": # 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) # FI: meaning unclear
- "": # 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) # FI: : translation unclear
- "": # 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) # FI: translation unclear, "parenthesis"?
- "": # 0xe9a3 (en: 'white smile', google translation)
- "": # 0xe9a4 (en: 'white frown', google translation)
- "": # 0xe9a5 (en: 'hexagon', 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 (google translation)
- "": # 0xe9b2 (en: 'square intersection serifs', google translation)
- "": # 0xe9b3 (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) # FI: translation unclear, not sure if vert is very or vertical
- "": # 0xea01 (en: 'not vert much greater than', google translation) # FI: translation unclear, not sure if vert is very or vertical
- "": # 0xea02 (en: 'not much less than variant', google translation) # FI: translation unclear
- "": # 0xea03 (en: 'not much greater than variant', google translation) # FI: translation unclear
- "": # 0xea04 (en: 'less vert not double equals', google translation) # FI: translation unclear
- "": # 0xea05 (en: 'gt vert not double equals', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xea37 (en: 'not nested greater than', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xea59 (en: 'not bumpy single equals', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xea71 (en: 'not vert right triangle equals', google translation) # FI: translation unclear
- "": # 0xea80 (en: 'not partial', google translation)
- "": # 0xeb00 (en: 'arrow embellishment extender', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xeb08 (en: 'anticlockwise arc leftwards arrow', google translation)
- "": # 0xeb09 (en: 'anticlockwise arc rightwards arrow', google translation)
- "": # 0xeb0b (en: 'large rightwards arrow accent', google translation) # FI: translation unclear
- "": # 0xeb0c (en: 'large leftwards arrow accent', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xeb61 (en: 'not right arrow curved', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xeb70 (en: 'right harpoon over left harpoon left', google translation) # FI: translation unclear
- "": # 0xeb71 (en: 'left harpoon over right harpoon right', google translation) # FI: translation unclear
- "": # 0xeb72 (en: 'left harpoon over right harpoon left', google translation) # FI: translation unclear
- "": # 0xeb73 (en: 'leftwards arrow from bar arrowhead', google translation) # FI: translation unclear
- "": # 0xeb74 (en: 'leftwards rightwards arrow from bar extender', google translation)
- "": # 0xeb75 (en: 'leftwards arrow from bar tail', google translation) # FI: translation unclear
- "": # 0xeb76 (en: 'rightwards arrow from bar tail', google translation) # FI: translation unclear
- "": # 0xeb77 (en: 'rightwards arrow from bar arrowhead', google translation) # FI: translation unclear
- "": # 0xeb78 (en: 'upwards harpoon from bar with barb leftwards arrowhead', google translation) # FI: translation unclear
- "": # 0xeb79 (en: 'rightwards arrow over leftwards arrow right', google translation) # FI: translation unclear
- "": # 0xeb7a (en: 'rightwards arrow over leftwards arrow left', google translation) # FI: translation unclear
- "": # 0xeb7b (en: 'leftwards arrow over rightwards arrow right', google translation) # FI: translation unclear
- "": # 0xeb7c (en: 'leftwards arrow over rightwards arrow left', google translation) # FI: translation unclear
- "": # 0xeb7d (en: 'upwards arrow from bar arrowhead', google translation) # FI: translation unclear
- "": # 0xeb7e (en: 'upwards arrow from bar tail', google translation) # FI: translation unclear
- "": # 0xeb7f (en: 'downwards arrow from bar tail', google translation) # FI: translation unclear
- "": # 0xeb80 (en: 'downwards arrow from bar arrowhead', google translation) # FI: translation unclear
- "": # 0xeb81 (en: 'downwards harpoon from bar with barb rightwards arrowhead', google translation) # FI: translation unclear
- "": # 0xeb82 (en: 'upwards harpoon to the left of downwards harpoon bottom', google translation) # FI: translation unclear
- "": # 0xeb83 (en: 'upwards harpoon to the left of downwards harpoon', google translation)
- "": # 0xeb84 (en: 'downwards harpoon to the left of upwards harpoon top', google translation) # FI: translation unclear
- "": # 0xeb85 (en: 'upwards harpoon to the left of downwards harpoon top', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xeb88 (en: 'upwards arrow leftwards of downwards arrow bottom', google translation) # FI: translation unclear
- "": # 0xeb89 (en: 'downwards arrow leftwards of upwards arrow top', google translation) # FI: translation unclear
- "": # 0xeb8a (en: 'upwards arrow leftwards of downwards arrow top', google translation) # FI: translation unclear
- "": # 0xeb8b (en: 'downwards arrow leftwards of upwards arrow bottom', google translation) # FI: translation unclear
- "": # 0xeb8c (en: 'leftwards rightwards arrows extender', google translation)
- "": # 0xeb8d (en: 'north east arrow extender', google translation)
- "": # 0xeb8e (en: 'north west arrow extender', 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) # FI: translation unclear
- "⎵": # 0x23b5 (google: 'neliön alla') # FI: translation unclear
- "": # 0xec0d (en: 'over square bracket', google translation) # FI: translation unclear
- "⎴": # 0x23b4 (google: 'neliömäisen kiinnikkeen yli') # FI: translation unclear
- "": # 0xec0e (en: 'under bracket left', google translation) # FI: translation unclear
- "": # 0xec0f (en: 'under bracket right', google translation) # FI: translation unclear
- "": # 0xec10 (en: 'over bracket left', google translation) # FI: translation unclear
- "": # 0xec11 (en: 'over bracket right', google translation) # FI: translation unclear
- "": # 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) # FI: context? Radical as in root sign?
- "": # 0xec1b (en: 'radical 2', google translation) # FI: context?
- "": # 0xec1c (en: 'radical 3', google translation) # FI: context?
- "": # 0xec1d (en: 'radical 4', google translation) # FI: context?
- "": # 0xec1e (en: 'radical 5', google translation) # FI: context?
- "": # 0xec1f (en: 'radical bottom', google translation) # FI: context?
- "": # 0xec20 (en: 'radical vertical extender', google translation) # FI: context?
- "": # 0xec21 (en: 'radical top', google translation) # FI: context?
- "": # 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) # FI: not happy with translations
- "": # 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) # FI: translation unclear
- "": # 0xec93 (en: 'synthetic division horizontal extender', google translation) # FI: translation unclear
- "": # 0xec94 (en: 'synthetic division vertical extender', google translation) # FI: translation unclear
- "": # 0xec95 (en: 'left ceiling floor extender', google translation)
- "": # 0xec96 (en: 'right ceiling floor extender', google translation)
- "": # 0xec97 (en: 'over bracket extender', google translation) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 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) # FI: translation unclear
- "": # 0xed01 (en: 'mirror g', google translation)
- "": # 0xed02 (google translation)
- "": # 0xed03 (google translation) # FI: translation unclear
- "ϝ": # 0x3dd # FI: : translation unclear
- "": # 0xed10 (en: 'd', google translation)
- "ⅆ": # 0x2146 (google: 'ⅆ')
- "": # 0xed11 (en: 'e', google translation)
- "ⅇ": # 0x2147 (google: 'ⅇ')
- "": # 0xed12 (en: 'i', google translation)
- "ⅈ": # 0x2148 (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) # FI: translation unclear, context?
- "": # 0xee0e (en: 'joint status embellishment left', google translation) # FI: translation unclear, context?
- "": # 0xee0f (en: 'joint status embellishment right', google translation) # FI: translation unclear, context?
- "": # 0xee10 (en: 'joint status embellishment extender', google translation) # FI: translation unclear, context?
- "": # 0xee11 (en: 'integral loop', google translation)
- "": # 0xee12 (en: 'integral loop double', google translation)
- "": # 0xee13 (en: 'integral loop triple', 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) # FI: 4th derivative?
- "": # 0xee1a (en: 'bar accent with open circle left', google translation) # FI: translation unclear
- "": # 0xee1b (en: 'bar accent with closed circle left', google translation) # FI: translation unclear
- "": # 0xee1c (en: 'bar accent with open circle right', google translation) # FI: translation unclear
- "": # 0xee1d (en: 'bar accent with over dot', google translation) # FI: translation unclear
- "": # 0xee1e (en: 'bar accent with under dot', google translation) # FI: translation unclear
- "": # 0xee1f (en: 'bar accent with double over dot', google translation) # FI: translation unclear
- "": # 0xee20 (en: 'bar accent with double under dot', google translation) # FI: translation unclear
- "": # 0xee21 (en: 'bar accent with caret', google translation) # FI: translation unclear
- "": # 0xee22 (en: 'thick under bar accent', google translation) # FI: translation unclear
- "": # 0xee23 (en: 'bar accent with closed circle right', google translation) # FI: translation unclear
- "": # 0xee24 (en: 'large dot above', google translation) # FI: translation unclear
- "": # 0xef00 (en: 'alignment mark', google translation) # FI: translation unclear
- "": # 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: "fraktuura" # (google translation)
- SPELL: "translate('.', '𝔄𝔅𝔇𝔈𝔉𝔊𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔𝔖𝔗𝔘𝔙𝔚𝔛𝔜', 'ABCDEFGHIJKLMNOPQRSTUVWXY')"
- "-": # 0xf000 - 0xf018
- T: "fraktuura" # (google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXY')"
- "𝔞-𝔷": # 0x1d51e - 0x1d537
- T: "fraktuura" # (google translation)
- SPELL: "translate('.', '𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf01a - 0xf033
- T: "fraktuura" # (google translation)
- SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
- "𝕬-𝖅": # 0x1D56C - 0x1D585
- T: "fraktuura lihavoitu" # (google translation)
- SPELL: "translate('.', '𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf040 - 0xf059
- T: "fraktuura lihavoitu" # (google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝖆-𝖟": # 0x1d586 - 0x1d59f
- T: "fraktuura lihavoitu" # (google translation)
- SPELL: "translate('.', '𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf05a - 0xf073
- T: "fraktuura lihavoitu" # (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: "kauno" # (en: 'script', google translation)
- SPELL: "translate('.', '𝒜𝒞𝒟𝒢𝒥𝒦𝒩𝒪𝒫𝒬𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf100 - 0xf119
- T: "kauno" # (en: 'script', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝒶-𝓏": # 0x1d4b6 - 0x1d4cf
- T: "kauno" # (en: 'script', google translation)
- SPELL: "translate('.', '𝒶𝒷𝒸𝒹𝒻𝒽𝒾𝒿𝓀𝓁𝓂𝓃𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf11a - 0xf133
- T: "kauno" # (en: 'script', google translation)
- SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')"
# bold script chars in math alphabetic block and also MathType private use area
- "𝓐-𝓩": # 0x1d4d0 - 0x1d4e9
- T: "lihavoitu kauno" # (en: 'script bold', google translation)
- SPELL: "translate('.', '𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf140 - 0xf159
- T: "lihavoitu kauno" # (en: 'script bold', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝓪-𝔃": # 0x1d4ea - 0x1d503
- T: "lihavoitu kauno" # (en: 'script bold', google translation)
- SPELL: "translate('.', '𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf15a - 0xf173
- T: "lihavoitu kauno" # (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: # (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) # FI: : translation unclear
- "": # 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 (google translation)
- "𝐀-𝐙": # 0x1d400 - 0x1d419
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf260 - 0xf279
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝐚-𝐳": # 0x1d41a - 0x1d433
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf27a - 0xf293
- T: "lihavoitu" # (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: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf2c8 - 0xf2e1
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝒂-𝒛": # 0x1d482 - 0x1d49b
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf2e2 - 0xf2fb
# - t: "bold italic"
- T: "lihavoitu" # (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: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf334 - 0xf34d
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝗮-𝘇": # 0x1d5ee - 0x1d607
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf34e - 0xf367
- T: "lihavoitu" # (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: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "-": # 0xf39c - 0xf3b5
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"
- "𝙖-𝙯": # 0x1d656 - 0x1d66f
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯', 'abcdefghijklmnopqrstuvwxyz')"
- "-": # 0xf3b6 - 0xf3cf
# - t: "bold italic"
- T: "lihavoitu" # (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: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝚨𝚩𝚪𝚫𝚬𝚭𝚮𝚯𝚰𝚱𝚲𝚳𝚴𝚵𝚶𝚷𝚸𝚹𝚺𝚻𝚼𝚽𝚾𝚿𝛀', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf408 - 0xf420
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝛂-𝛚": # 0x1d6c2 - 0x1d6da
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf422 - 0xf43a
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "": # 0xf421 (en: 'bold nabla', google translation)
- "𝛁": # 0x1d6c1 (en: 'bold nabla')
- "𝛛𝛜𝛝𝛞𝛟𝛠𝛡": # 0x1D6DB - 0x1D6E1
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝛛𝛜𝛝𝛞𝛟𝛠𝛡', '∂εθκφρπ')"
- "": # 0xF43C - 0xF441
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- 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: 'kursivoitu nabla')
- "𝜕𝜖𝜗𝜘𝜙𝜚𝜛": # 0x1d715 - 0x1d71b
# - t: "italic"
- SPELL: "translate('.', '𝜕𝜖𝜗𝜘𝜙𝜚𝜛', '∂εθκφρπ')"
- "": # 0xf475 - 0xf47b
# - t: "italic"
- SPELL: "translate('.', '', '∂εθκφρπ')"
- "𝜜-𝜴": # 0x1d71c - 0x1d734
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝜜𝜝𝜞𝜟𝜠𝜡𝜢𝜣𝜤𝜥𝜦𝜧𝜨𝜩𝜪𝜫𝜬𝜭𝜮𝜯𝜰𝜱𝜲𝜳𝜴', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf47c - 0xf494
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝜶-𝝎": # 0x1d736 - 0x1d74e
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf496 - 0xf4ae
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝝏𝝐𝝑𝝒𝝓𝝔𝝕": # 0x1d74f - 0x1d755
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝝏𝝐𝝑𝝒𝝓𝝔𝝕', '∂εθκφρπ')"
- "": # 0xf422 - 0xf43a
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', '∂εθκφρπ')"
- "𝜵": # 0x1d735 (en: 'bold italic nabla', google: 'rohkea kursivoitu nabla')
- "": # 0xf495 (en: 'bold italic nabla', google translation)
- "𝝖-𝝮": # 0x1d756 - 0x1d76e
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf4b6 - 0xf4ce
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝝰-𝞈": # 0x1d770 - 0x1d788
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf4d0 - 0xf4e8
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝞉𝞊𝞋𝞌𝞍𝞎𝞏": # 0x1d789 - 0x1d78f
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '𝞉𝞊𝞋𝞌𝞍𝞎𝞏', '∂εθκφρπ')"
- "": # 0xf4e9 - 0xf4ef
- T: "lihavoitu" # (en: 'bold', google translation)
- SPELL: "translate('.', '', '∂εθκφρπ')"
- "": # 0xf4cf (en: 'bold nabla', google translation)
- "𝝯": # 0x1d76f (en: 'bold nabla')
- "𝞐-𝞨": # 0x1d790 - 0x1d7a8
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝞐𝞑𝞒𝞓𝞔𝞕𝞖𝞗𝞘𝞙𝞚𝞛𝞜𝞝𝞞𝞟𝞠𝞡𝞢𝞣𝞤𝞥𝞦𝞧𝞨', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "-": # 0xf4f0 - 0xf508
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩ')"
- "𝞪-𝟂": # 0x1d7aa - 0x1d7c2
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "-": # 0xf50a - 0xf522
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')"
- "𝟃𝟄𝟅𝟆𝟇𝟈𝟉": # 0x1d7c3 - 0x1d7c9
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '𝟃𝟄𝟅𝟆𝟇𝟈𝟉', '∂εθκφρπ')"
- "": # 0xf523 - 0xf529
# - t: "bold italic"
- T: "lihavoitu" # (en: 'bold', google: 'lihavoitu')
- SPELL: "translate('.', '', '∂εθκφρπ')"
- "": # 0xf509 (en: 'bold nabla', google translation)
- "𝞩": # 0x1d7a9 (en: 'bold nabla')
- "": # 0xf52e (en: 'bold zero', google translation)
- "𝟎": # 0x1d7ce (en: 'bold zero')
- "": # 0xf52f (en: 'bold one', google translation)
- "𝟏": # 0x1d7cf (en: 'bold one', google: 'lihavoitu')
- "": # 0xf530 (en: 'bold two', google translation)
- "𝟐": # 0x1d7d0 (en: 'bold two')
- "": # 0xf531 (en: 'bold three', google translation)
- "𝟑": # 0x1d7d1 (en: 'bold three')
- "": # 0xf532 (en: 'bold four', google translation)
- "𝟒": # 0x1d7d2 (en: 'bold four', google: 'bold neljä')
- "": # 0xf533 (en: 'bold five', google translation)
- "𝟓": # 0x1d7d3 (en: 'bold five')
- "": # 0xf534 (en: 'bold six', google translation)
- "𝟔": # 0x1d7d4 (en: 'bold six')
- "": # 0xf535 (en: 'bold seven', google translation)
- "𝟕": # 0x1d7d5 (en: 'bold seven', google: 'rohkea seitsemän')
- "": # 0xf536 (en: 'bold eight', google translation)
- "𝟖": # 0x1d7d6 (en: 'bold eight', google: 'lihavoitu')
- "": # 0xf537 (en: 'bold nine', google translation)
- "𝟗": # 0x1d7d7 (en: 'bold nine')
- "": # 0xf542 (en: 'zero', google translation)
- "𝟢": # 0x1d7e2 (en: 'zero')
- "": # 0xf543 (en: 'one', google translation)
- "𝟣": # 0x1d7e3 (en: 'one')
- "": # 0xf544 (en: 'two', google translation)
- "𝟤": # 0x1d7e4 (en: 'two')
- "": # 0xf545 (en: 'three', google translation)
- "𝟥": # 0x1d7e5 (en: 'three')
- "": # 0xf546 (en: 'four', google translation)
- "𝟦": # 0x1d7e6 (en: 'four')
- "": # 0xf547 (en: 'five', google translation)
- "𝟧": # 0x1d7e7 (en: 'five')
- "": # 0xf548 (en: 'six', google translation)
- "𝟨": # 0x1d7e8 (en: 'six')
- "": # 0xf549 (en: 'seven', google translation)
- "𝟩": # 0x1d7e9 (en: 'seven')
- "": # 0xf54a (en: 'eight', google translation)
- "𝟪": # 0x1d7ea (en: 'eight', google: 'at')
- "": # 0xf54b (en: 'nine', google translation)
- "𝟫": # 0x1d7eb (en: 'nine')
- "": # 0xf54c (en: 'bold zero', google translation)
- "𝟬": # 0x1d7ec (en: 'bold zero')
- "": # 0xf54d (en: 'bold one', google translation)
- "𝟭": # 0x1d7ed (en: 'bold one', google: 'lihavoitu')
- "": # 0xf54e (en: 'bold two', google translation)
- "𝟮": # 0x1d7ee (en: 'bold two')
- "": # 0xf54f (en: 'bold three', google translation)
- "𝟯": # 0x1d7ef (en: 'bold three')
- "": # 0xf550 (en: 'bold four', google translation)
- "𝟰": # 0x1d7f0 (en: 'bold four', google: 'bold neljä')
- "": # 0xf551 (en: 'bold five', google translation)
- "𝟱": # 0x1d7f1 (en: 'bold five')
- "": # 0xf552 (en: 'bold six', google translation)
- "𝟲": # 0x1d7f2 (en: 'bold six')
- "": # 0xf553 (en: 'bold seven', google translation)
- "𝟳": # 0x1d7f3 (en: 'bold seven', google: 'rohkea seitsemän')
- "": # 0xf554 (en: 'bold eight', google translation)
- "𝟴": # 0x1d7f4 (en: 'bold eight', google: 'lihavoitu')
- "": # 0xf555 (en: 'bold nine', google translation)
- "𝟵": # 0x1d7f5 (en: 'bold nine')
- "": # 0xf556 (en: 'zero', google translation)
- "𝟶": # 0x1d7f6 (en: 'zero')
- "": # 0xf557 (en: 'one', google translation)
- "𝟷": # 0x1d7f7 (en: 'one')
- "": # 0xf558 (en: 'two', google translation)
- "𝟸": # 0x1d7f8 (en: 'two')
- "": # 0xf559 (en: 'three', google translation)
- "𝟹": # 0x1d7f9 (en: 'three')
- "": # 0xf55a (en: 'four', google translation)
- "𝟺": # 0x1d7fa (en: 'four')
- "": # 0xf55b (en: 'five', google translation)
- "𝟻": # 0x1d7fb (en: 'five')
- "": # 0xf55c (en: 'six', google translation)
- "𝟼": # 0x1d7fc (en: 'six')
- "": # 0xf55d (en: 'seven', google translation)
- "𝟽": # 0x1d7fd (en: 'seven')
- "": # 0xf55e (en: 'eight', google translation)
- "𝟾": # 0x1d7fe (en: 'eight', google: 'at')
- "": # 0xf55f (en: 'nine', google translation)
- "𝟿": # 0x1d7ff (en: 'nine')
- "": # 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) # FI: unclear translation, root?
- "": # 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 (en: 'apple logo', 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) # FI: : translation unclear
- "︡": # 0xfe21 (en: 'ligature right half embellishment', google translation) # FI: : translation unclear
- "︢": # 0xfe22 (en: 'double tilde left half embellishment', google translation) # FI: : translation unclear
- "︣": # 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 (google: 'yli sulku')
- "︶": # 0xfe36 (google: 'suluissa')
- "︷": # 0xfe37 (en: 'over brace', google: 'yli ahdin')
- "︸": # 0xfe38 (en: 'under brace', google: 'ahdin alla')
- "︿": # 0xfe3f (google: 'yli kulmakiinnike')
- "﹀": # 0xfe40 (google: 'kulmakiinnikkeessä')
- "﹨": # 0xfe68 (google: 'kokonaislukujako')
- "": # 0xfffc (en: 'unknown or missing object', google translation)
- "�": # 0xfffd (en: 'unknown or missing character')