This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opdict.html
17299 lines (13351 loc) · 571 KB
/
opdict.html
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Opt Dict</title>
<style>
body {max-width:60em;font-family:"Stix Two Math", "Cambria Math", "STIX Math", "Asana Math"}
dt {font-weight: bold}
th {text-align:left;}
</style>
<script type="text/javascript" src="sorttable.js"></script>
</head>
<body>
<h1>MathML Operator Dictionary</h1>
<hr>
<ul>
<li><a href="#compressed">Compressed View</a></li>
<li><a href="#stable">Sortable Table View</a></li>
</ul>
<hr>
<h2 id="compressed">Compressed view</h2>
<dl>
<dt>form:infix lspace:0 rspace:0</dt>
<dd>
<dl>
<dt>Priority: 40</dt>
<dd><span title="U+2063
invisible separator">⟨<span style="font-size:80%;font-style:italic">invisible separator</span>⟩</span></dd>
<dt>Priority: 390</dt>
<dd><span title="U+2062
invisible times">⟨<span style="font-size:80%;font-style:italic">invisible times</span>⟩</span></dd>
<dt>Priority: 650</dt>
<dd><span title="U+005C
reverse solidus">\</span></dd>
<dt>Priority: 690</dt>
<dd><span title="U+2206
increment">∆</span></dd>
<dt>Priority: 850</dt>
<dd><span title="U+2061
function application">⟨<span style="font-size:80%;font-style:italic">function application</span>⟩</span></dd>
<dt>Priority: 880</dt>
<dd><span title="U+2064
invisible plus">⟨<span style="font-size:80%;font-style:italic">invisible plus</span>⟩</span></dd>
<dt>Priority: 900</dt>
<dd><span title="U+005F
low line">_</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:infix lspace:0 rspace:3</dt>
<dd>
<dl>
<dt>Priority: 30</dt>
<dd><span title="U+003B
semicolon">;</span></dd>
<dt>Priority: 40</dt>
<dd><span title="U+002C
comma">,</span></dd>
<dt>Priority: 60</dt>
<dd><span title="U+003A
colon">:</span>, <span title="U+2982
z notation type colon">⦂</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:infix lspace:3 rspace:3</dt>
<dd>
<dl>
<dt>Priority: 360</dt>
<dd><span title="U+0040
commercial at">@</span></dd>
<dt>Priority: 390</dt>
<dd><span title="U+002A
asterisk">*</span>, <span title="U+002E
full stop">.</span>, <span title="U+00B7
middle dot">·</span>, <span title="U+00D7
multiplication sign">×</span>, <span title="U+2022
bullet">•</span>, <span title="U+2043
hyphen bullet">⁃</span>, <span title="U+2217
asterisk operator">∗</span>, <span title="U+2219
bullet operator">∙</span>, <span title="U+2240
wreath product">≀</span>, <span title="U+2297
circled times">⊗</span>, <span title="U+2299
circled dot operator">⊙</span>, <span title="U+229B
circled asterisk operator">⊛</span>, <span title="U+22A0
squared times">⊠</span>, <span title="U+22A1
squared dot operator">⊡</span>, <span title="U+22BA
intercalate">⊺</span>, <span title="U+22C5
dot operator">⋅</span>, <span title="U+22C6
star operator">⋆</span>, <span title="U+22C7
division times">⋇</span>, <span title="U+22C9
left normal factor semidirect product">⋉</span>, <span title="U+22CA
right normal factor semidirect product">⋊</span>, <span title="U+22CB
left semidirect product">⋋</span>, <span title="U+22CC
right semidirect product">⋌</span>, <span title="U+2305
projective">⌅</span>, <span title="U+2306
perspective">⌆</span>, <span title="U+29C6
squared asterisk">⧆</span>, <span title="U+29C8
squared square">⧈</span>, <span title="U+29D4
times with left half black">⧔</span>, <span title="U+29D5
times with right half black">⧕</span>, <span title="U+29D6
white hourglass">⧖</span>, <span title="U+29D7
black hourglass">⧗</span>, <span title="U+29E2
shuffle product">⧢</span>, <span title="U+2A1D
join">⨝</span>, <span title="U+2A1E
large left triangle operator">⨞</span>, <span title="U+2A2F
vector or cross product">⨯</span>, <span title="U+2A30
multiplication sign with dot above">⨰</span>, <span title="U+2A31
multiplication sign with underbar">⨱</span>, <span title="U+2A32
semidirect product with bottom closed">⨲</span>, <span title="U+2A33
smash product">⨳</span>, <span title="U+2A34
multiplication sign in left half circle">⨴</span>, <span title="U+2A35
multiplication sign in right half circle">⨵</span>, <span title="U+2A36
circled multiplication sign with circumflex accent">⨶</span>, <span title="U+2A37
multiplication sign in double circle">⨷</span>, <span title="U+2A3B
multiplication sign in triangle">⨻</span>, <span title="U+2A3C
interior product">⨼</span>, <span title="U+2A3D
righthand interior product">⨽</span>, <span title="U+2A3F
amalgamation or coproduct">⨿</span>, <span title="U+2A50
closed union with serifs and smash product">⩐</span></dd>
<dt>Priority: 640</dt>
<dd><span title="U+0025
percent sign">%</span></dd>
<dt>Priority: 680</dt>
<dd><span title="U+27CB
mathematical rising diagonal">⟋</span>, <span title="U+27CD
mathematical falling diagonal">⟍</span>, <span title="U+2AFE
white vertical bar">⫾</span></dd>
<dt>Priority: 685</dt>
<dd><span title="U+2A64
z notation domain antirestriction">⩤</span>, <span title="U+2A65
z notation range antirestriction">⩥</span></dd>
<dt>Priority: 700</dt>
<dd><span title="U+2ADC
forking">⫝̸</span>, <span title="U+2ADD
nonforking">⫝</span></dd>
<dt>Priority: 720</dt>
<dd><span title="U+002A U+002A
multiple character operator: **">**</span></dd>
<dt>Priority: 780</dt>
<dd><span title="U+003C U+003E
multiple character operator: <>"><></span>, <span title="U+005E
circumflex accent">^</span></dd>
<dt>Priority: 835</dt>
<dd><span title="U+003F
question mark">?</span></dd>
<dt>Priority: 860</dt>
<dd><span title="U+2218
ring operator">∘</span>, <span title="U+229A
circled ring operator">⊚</span>, <span title="U+22C4
diamond operator">⋄</span>, <span title="U+29C7
squared small circle">⧇</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:infix lspace:4 rspace:4</dt>
<dd>
<dl>
<dt>Priority: 274</dt>
<dd><span title="U+222A
union">∪</span>, <span title="U+228C
multiset">⊌</span>, <span title="U+228D
multiset multiplication">⊍</span>, <span title="U+228E
multiset union">⊎</span>, <span title="U+2294
square cup">⊔</span>, <span title="U+22D3
double union">⋓</span>, <span title="U+2A41
union with minus sign">⩁</span>, <span title="U+2A42
union with overbar">⩂</span>, <span title="U+2A45
union with logical or">⩅</span>, <span title="U+2A4A
union beside and joined with union">⩊</span>, <span title="U+2A4C
closed union with serifs">⩌</span>, <span title="U+2A4F
double square union">⩏</span></dd>
<dt>Priority: 277</dt>
<dd><span title="U+2229
intersection">∩</span>, <span title="U+2293
square cap">⊓</span>, <span title="U+22D2
double intersection">⋒</span>, <span title="U+2A1F
z notation schema composition">⨟</span>, <span title="U+2A20
z notation schema piping">⨠</span>, <span title="U+2A21
z notation schema projection">⨡</span>, <span title="U+2A3E
z notation relational composition">⨾</span>, <span title="U+2A40
intersection with dot">⩀</span>, <span title="U+2A43
intersection with overbar">⩃</span>, <span title="U+2A44
intersection with logical and">⩄</span>, <span title="U+2A46
union above intersection">⩆</span>, <span title="U+2A47
intersection above union">⩇</span>, <span title="U+2A48
union above bar above intersection">⩈</span>, <span title="U+2A49
intersection above bar above union">⩉</span>, <span title="U+2A4B
intersection beside and joined with intersection">⩋</span>, <span title="U+2A4D
closed intersection with serifs">⩍</span>, <span title="U+2A4E
double square intersection">⩎</span>, <span title="U+2ADB
transversal intersection">⫛</span></dd>
<dt>Priority: 280</dt>
<dd><span title="U+002B
plus sign">+</span>, <span title="U+002D
hyphen-minus">-</span>, <span title="U+00B1
plus-minus sign">±</span>, <span title="U+2212
minus sign">−</span>, <span title="U+2213
minus-or-plus sign">∓</span>, <span title="U+2214
dot plus">∔</span>, <span title="U+2216
set minus">∖</span>, <span title="U+2228
logical or">∨</span>, <span title="U+2238
dot minus">∸</span>, <span title="U+2295
circled plus">⊕</span>, <span title="U+2296
circled minus">⊖</span>, <span title="U+229D
circled dash">⊝</span>, <span title="U+229E
squared plus">⊞</span>, <span title="U+229F
squared minus">⊟</span>, <span title="U+22BD
nor">⊽</span>, <span title="U+22CE
curly logical or">⋎</span>, <span title="U+2795
heavy plus sign">➕</span>, <span title="U+2796
heavy minus sign">➖</span>, <span title="U+29B8
circled reverse solidus">⦸</span>, <span title="U+29C5
squared falling diagonal slash">⧅</span>, <span title="U+29F5
reverse solidus operator">⧵</span>, <span title="U+29F7
reverse solidus with horizontal stroke">⧷</span>, <span title="U+29F9
big reverse solidus">⧹</span>, <span title="U+29FA
double plus">⧺</span>, <span title="U+29FB
triple plus">⧻</span>, <span title="U+2A22
plus sign with small circle above">⨢</span>, <span title="U+2A23
plus sign with circumflex accent above">⨣</span>, <span title="U+2A24
plus sign with tilde above">⨤</span>, <span title="U+2A25
plus sign with dot below">⨥</span>, <span title="U+2A26
plus sign with tilde below">⨦</span>, <span title="U+2A27
plus sign with subscript two">⨧</span>, <span title="U+2A28
plus sign with black triangle">⨨</span>, <span title="U+2A29
minus sign with comma above">⨩</span>, <span title="U+2A2A
minus sign with dot below">⨪</span>, <span title="U+2A2B
minus sign with falling dots">⨫</span>, <span title="U+2A2C
minus sign with rising dots">⨬</span>, <span title="U+2A2D
plus sign in left half circle">⨭</span>, <span title="U+2A2E
plus sign in right half circle">⨮</span>, <span title="U+2A39
plus sign in triangle">⨹</span>, <span title="U+2A3A
minus sign in triangle">⨺</span>, <span title="U+2A52
logical or with dot above">⩒</span>, <span title="U+2A54
double logical or">⩔</span>, <span title="U+2A56
two intersecting logical or">⩖</span>, <span title="U+2A57
sloping large or">⩗</span>, <span title="U+2A5B
logical or with middle stem">⩛</span>, <span title="U+2A5D
logical or with horizontal dash">⩝</span>, <span title="U+2A61
small vee with underbar">⩡</span>, <span title="U+2A62
logical or with double overbar">⩢</span>, <span title="U+2A63
logical or with double underbar">⩣</span></dd>
<dt>Priority: 285</dt>
<dd><span title="U+22BB
xor">⊻</span></dd>
<dt>Priority: 380</dt>
<dd><span title="U+0026 U+0026
multiple character operator: &&">&&</span>, <span title="U+2227
logical and">∧</span>, <span title="U+22BC
nand">⊼</span>, <span title="U+22CF
curly logical and">⋏</span>, <span title="U+2A51
logical and with dot above">⩑</span>, <span title="U+2A53
double logical and">⩓</span>, <span title="U+2A55
two intersecting logical and">⩕</span>, <span title="U+2A58
sloping large and">⩘</span>, <span title="U+2A59
logical or overlapping logical and">⩙</span>, <span title="U+2A5A
logical and with middle stem">⩚</span>, <span title="U+2A5C
logical and with horizontal dash">⩜</span>, <span title="U+2A5E
logical and with double overbar">⩞</span>, <span title="U+2A5F
logical and with underbar">⩟</span>, <span title="U+2A60
logical and with double underbar">⩠</span></dd>
<dt>Priority: 680</dt>
<dd><span title="U+002F
solidus">/</span>, <span title="U+00F7
division sign">÷</span>, <span title="U+2044
fraction slash">⁄</span>, <span title="U+2215
division slash">∕</span>, <span title="U+2236
ratio">∶</span>, <span title="U+2298
circled division slash">⊘</span>, <span title="U+2797
heavy division sign">➗</span>, <span title="U+29BC
circled anticlockwise-rotated division sign">⦼</span>, <span title="U+29C4
squared rising diagonal slash">⧄</span>, <span title="U+29F6
solidus with overbar">⧶</span>, <span title="U+29F8
big solidus">⧸</span>, <span title="U+2A38
circled division sign">⨸</span>, <span title="U+2AF6
triple colon operator">⫶</span>, <span title="U+2AFB
triple solidus binary relation">⫻</span>, <span title="U+2AFD
double solidus operator">⫽</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:infix lspace:5 rspace:5</dt>
<dd>
<dl>
<dt>Priority: 30</dt>
<dd><span title="U+2981
z notation spot">⦁</span></dd>
<dt>Priority: 70</dt>
<dd><span title="U+2234
therefore">∴</span>, <span title="U+2235
because">∵</span></dd>
<dt>Priority: 90</dt>
<dd><span title="U+002D U+003E
multiple character operator: ->">-></span>, <span title="U+22B6
original of">⊶</span>, <span title="U+22B7
image of">⊷</span>, <span title="U+22B8
multimap">⊸</span>, <span title="U+29F4
rule-delayed">⧴</span></dd>
<dt>Priority: 140</dt>
<dd><span title="U+002F U+002F
multiple character operator: //">//</span></dd>
<dt>Priority: 170</dt>
<dd><span title="U+22A2
right tack">⊢</span>, <span title="U+22A3
left tack">⊣</span>, <span title="U+22A7
models">⊧</span>, <span title="U+22A8
true">⊨</span>, <span title="U+22A9
forces">⊩</span>, <span title="U+22AA
triple vertical bar right turnstile">⊪</span>, <span title="U+22AB
double vertical bar double right turnstile">⊫</span>, <span title="U+22AC
does not prove">⊬</span>, <span title="U+22AD
not true">⊭</span>, <span title="U+22AE
does not force">⊮</span>, <span title="U+22AF
negated double vertical bar double right turnstile">⊯</span>, <span title="U+2ADE
short left tack">⫞</span>, <span title="U+2ADF
short down tack">⫟</span>, <span title="U+2AE0
short up tack">⫠</span>, <span title="U+2AE1
perpendicular with s">⫡</span>, <span title="U+2AE2
vertical bar triple right turnstile">⫢</span>, <span title="U+2AE3
double vertical bar left turnstile">⫣</span>, <span title="U+2AE4
vertical bar double left turnstile">⫤</span>, <span title="U+2AE5
double vertical bar double left turnstile">⫥</span>, <span title="U+2AE6
long dash from left member of double vertical">⫦</span>, <span title="U+2AE7
short down tack with overbar">⫧</span>, <span title="U+2AE8
short up tack with underbar">⫨</span>, <span title="U+2AE9
short up tack above short down tack">⫩</span>, <span title="U+2AEA
double down tack">⫪</span>, <span title="U+2AEB
double up tack">⫫</span></dd>
<dt>Priority: 240</dt>
<dd><span title="U+2208
element of">∈</span>, <span title="U+2209
not an element of">∉</span>, <span title="U+220A
small element of">∊</span>, <span title="U+220B
contains as member">∋</span>, <span title="U+220C
does not contain as member">∌</span>, <span title="U+220D
small contains as member">∍</span>, <span title="U+2282
subset of">⊂</span>, <span title="U+2283
superset of">⊃</span>, <span title="U+2284
not a subset of">⊄</span>, <span title="U+2285
not a superset of">⊅</span>, <span title="U+2286
subset of or equal to">⊆</span>, <span title="U+2287
superset of or equal to">⊇</span>, <span title="U+2288
neither a subset of nor equal to">⊈</span>, <span title="U+2289
neither a superset of nor equal to">⊉</span>, <span title="U+228A
subset of with not equal to">⊊</span>, <span title="U+228B
superset of with not equal to">⊋</span>, <span title="U+228F
square image of">⊏</span>, <span title="U+2290
square original of">⊐</span>, <span title="U+2291
square image of or equal to">⊑</span>, <span title="U+2292
square original of or equal to">⊒</span>, <span title="U+22B0
precedes under relation">⊰</span>, <span title="U+22B1
succeeds under relation">⊱</span>, <span title="U+22B2
normal subgroup of">⊲</span>, <span title="U+22B3
contains as normal subgroup">⊳</span>, <span title="U+22D0
double subset">⋐</span>, <span title="U+22D1
double superset">⋑</span>, <span title="U+22E2
not square image of or equal to">⋢</span>, <span title="U+22E3
not square original of or equal to">⋣</span>, <span title="U+22E4
square image of or not equal to">⋤</span>, <span title="U+22E5
square original of or not equal to">⋥</span>, <span title="U+22EA
not normal subgroup of">⋪</span>, <span title="U+22EB
does not contain as normal subgroup">⋫</span>, <span title="U+22EC
not normal subgroup of or equal to">⋬</span>, <span title="U+22ED
does not contain as normal subgroup or equal">⋭</span>, <span title="U+22F2
element of with long horizontal stroke">⋲</span>, <span title="U+22F3
element of with vertical bar at end of horizontal stroke">⋳</span>, <span title="U+22F4
small element of with vertical bar at end of horizontal stroke">⋴</span>, <span title="U+22F5
element of with dot above">⋵</span>, <span title="U+22F6
element of with overbar">⋶</span>, <span title="U+22F7
small element of with overbar">⋷</span>, <span title="U+22F8
element of with underbar">⋸</span>, <span title="U+22F9
element of with two horizontal strokes">⋹</span>, <span title="U+22FA
contains with long horizontal stroke">⋺</span>, <span title="U+22FB
contains with vertical bar at end of horizontal stroke">⋻</span>, <span title="U+22FC
small contains with vertical bar at end of horizontal stroke">⋼</span>, <span title="U+22FD
contains with overbar">⋽</span>, <span title="U+22FE
small contains with overbar">⋾</span>, <span title="U+22FF
z notation bag membership">⋿</span>, <span title="U+2979
subset above rightwards arrow">⥹</span>, <span title="U+297A
leftwards arrow through subset">⥺</span>, <span title="U+297B
superset above leftwards arrow">⥻</span>, <span title="U+2ABD
subset with dot">⪽</span>, <span title="U+2ABE
superset with dot">⪾</span>, <span title="U+2ABF
subset with plus sign below">⪿</span>, <span title="U+2AC0
superset with plus sign below">⫀</span>, <span title="U+2AC1
subset with multiplication sign below">⫁</span>, <span title="U+2AC2
superset with multiplication sign below">⫂</span>, <span title="U+2AC3
subset of or equal to with dot above">⫃</span>, <span title="U+2AC4
superset of or equal to with dot above">⫄</span>, <span title="U+2AC5
subset of above equals sign">⫅</span>, <span title="U+2AC6
superset of above equals sign">⫆</span>, <span title="U+2AC7
subset of above tilde operator">⫇</span>, <span title="U+2AC8
superset of above tilde operator">⫈</span>, <span title="U+2AC9
subset of above almost equal to">⫉</span>, <span title="U+2ACA
superset of above almost equal to">⫊</span>, <span title="U+2ACB
subset of above not equal to">⫋</span>, <span title="U+2ACC
superset of above not equal to">⫌</span>, <span title="U+2ACD
square left open box operator">⫍</span>, <span title="U+2ACE
square right open box operator">⫎</span>, <span title="U+2ACF
closed subset">⫏</span>, <span title="U+2AD0
closed superset">⫐</span>, <span title="U+2AD1
closed subset or equal to">⫑</span>, <span title="U+2AD2
closed superset or equal to">⫒</span>, <span title="U+2AD3
subset above superset">⫓</span>, <span title="U+2AD4
superset above subset">⫔</span>, <span title="U+2AD5
subset above subset">⫕</span>, <span title="U+2AD6
superset above superset">⫖</span>, <span title="U+2AD7
superset beside subset">⫗</span>, <span title="U+2AD8
superset beside and joined by dash with subset">⫘</span>, <span title="U+2AD9
element of opening downwards">⫙</span></dd>
<dt>Priority: 260</dt>
<dd><span title="U+0021 U+003D
multiple character operator: !=">!=</span>, <span title="U+002A U+003D
multiple character operator: *=">*=</span>, <span title="U+002B U+003D
multiple character operator: +=">+=</span>, <span title="U+002D U+003D
multiple character operator: -=">-=</span>, <span title="U+002F U+003D
multiple character operator: /=">/=</span>, <span title="U+003A U+003D
multiple character operator: :=">:=</span>, <span title="U+003C
less-than sign"><</span>, <span title="U+003C U+003D
multiple character operator: <="><=</span>, <span title="U+003D
equals sign">=</span>, <span title="U+003D U+003D
multiple character operator: ==">==</span>, <span title="U+003E
greater-than sign">></span>, <span title="U+003E U+003D
multiple character operator: >=">>=</span>, <span title="U+007C
fence
vertical line">|</span>, <span title="U+007C U+007C
fence
multiple character operator: ||">||</span>, <span title="U+221D
proportional to">∝</span>, <span title="U+2223
divides">∣</span>, <span title="U+2224
does not divide">∤</span>, <span title="U+2225
parallel to">∥</span>, <span title="U+2226
not parallel to">∦</span>, <span title="U+2237
proportion">∷</span>, <span title="U+2239
excess">∹</span>, <span title="U+223A
geometric proportion">∺</span>, <span title="U+223B
homothetic">∻</span>, <span title="U+223C
tilde operator">∼</span>, <span title="U+223D
reversed tilde">∽</span>, <span title="U+223E
inverted lazy s">∾</span>, <span title="U+2241
not tilde">≁</span>, <span title="U+2242
minus tilde">≂</span>, <span title="U+2243
asymptotically equal to">≃</span>, <span title="U+2244
not asymptotically equal to">≄</span>, <span title="U+2245
approximately equal to">≅</span>, <span title="U+2246
approximately but not actually equal to">≆</span>, <span title="U+2247
neither approximately nor actually equal to">≇</span>, <span title="U+2248
almost equal to">≈</span>, <span title="U+2249
not almost equal to">≉</span>, <span title="U+224A
almost equal or equal to">≊</span>, <span title="U+224B
triple tilde">≋</span>, <span title="U+224C
all equal to">≌</span>, <span title="U+224D
equivalent to">≍</span>, <span title="U+224E
geometrically equivalent to">≎</span>, <span title="U+224F
difference between">≏</span>, <span title="U+2250
approaches the limit">≐</span>, <span title="U+2251
geometrically equal to">≑</span>, <span title="U+2252
approximately equal to or the image of">≒</span>, <span title="U+2253
image of or approximately equal to">≓</span>, <span title="U+2254
colon equals">≔</span>, <span title="U+2255
equals colon">≕</span>, <span title="U+2256
ring in equal to">≖</span>, <span title="U+2257
ring equal to">≗</span>, <span title="U+2258
corresponds to">≘</span>, <span title="U+2259
estimates">≙</span>, <span title="U+225A
equiangular to">≚</span>, <span title="U+225B
star equals">≛</span>, <span title="U+225C
delta equal to">≜</span>, <span title="U+225D
equal to by definition">≝</span>, <span title="U+225E
measured by">≞</span>, <span title="U+225F
questioned equal to">≟</span>, <span title="U+2260
not equal to">≠</span>, <span title="U+2261
identical to">≡</span>, <span title="U+2262
not identical to">≢</span>, <span title="U+2263
strictly equivalent to">≣</span>, <span title="U+2264
less-than or equal to">≤</span>, <span title="U+2265
greater-than or equal to">≥</span>, <span title="U+2266
less-than over equal to">≦</span>, <span title="U+2267
greater-than over equal to">≧</span>, <span title="U+2268
less-than but not equal to">≨</span>, <span title="U+2269
greater-than but not equal to">≩</span>, <span title="U+226A
much less-than">≪</span>, <span title="U+226B
much greater-than">≫</span>, <span title="U+226C
between">≬</span>, <span title="U+226D
not equivalent to">≭</span>, <span title="U+226E
not less-than">≮</span>, <span title="U+226F
not greater-than">≯</span>, <span title="U+2270
neither less-than nor equal to">≰</span>, <span title="U+2271
neither greater-than nor equal to">≱</span>, <span title="U+2272
less-than or equivalent to">≲</span>, <span title="U+2273
greater-than or equivalent to">≳</span>, <span title="U+2274
neither less-than nor equivalent to">≴</span>, <span title="U+2275
neither greater-than nor equivalent to">≵</span>, <span title="U+2276
less-than or greater-than">≶</span>, <span title="U+2277
greater-than or less-than">≷</span>, <span title="U+2278
neither less-than nor greater-than">≸</span>, <span title="U+2279
neither greater-than nor less-than">≹</span>, <span title="U+227A
precedes">≺</span>, <span title="U+227B
succeeds">≻</span>, <span title="U+227C
precedes or equal to">≼</span>, <span title="U+227D
succeeds or equal to">≽</span>, <span title="U+227E
precedes or equivalent to">≾</span>, <span title="U+227F
succeeds or equivalent to">≿</span>, <span title="U+2280
does not precede">⊀</span>, <span title="U+2281
does not succeed">⊁</span>, <span title="U+229C
circled equals">⊜</span>, <span title="U+22A6
assertion">⊦</span>, <span title="U+22B4
normal subgroup of or equal to">⊴</span>, <span title="U+22B5
contains as normal subgroup or equal to">⊵</span>, <span title="U+22C8
bowtie">⋈</span>, <span title="U+22CD
reversed tilde equals">⋍</span>, <span title="U+22D4
pitchfork">⋔</span>, <span title="U+22D5
equal and parallel to">⋕</span>, <span title="U+22D6
less-than with dot">⋖</span>, <span title="U+22D7
greater-than with dot">⋗</span>, <span title="U+22D8
very much less-than">⋘</span>, <span title="U+22D9
very much greater-than">⋙</span>, <span title="U+22DA
less-than equal to or greater-than">⋚</span>, <span title="U+22DB
greater-than equal to or less-than">⋛</span>, <span title="U+22DC
equal to or less-than">⋜</span>, <span title="U+22DD
equal to or greater-than">⋝</span>, <span title="U+22DE
equal to or precedes">⋞</span>, <span title="U+22DF
equal to or succeeds">⋟</span>, <span title="U+22E0
does not precede or equal">⋠</span>, <span title="U+22E1
does not succeed or equal">⋡</span>, <span title="U+22E6
less-than but not equivalent to">⋦</span>, <span title="U+22E7
greater-than but not equivalent to">⋧</span>, <span title="U+22E8
precedes but not equivalent to">⋨</span>, <span title="U+22E9
succeeds but not equivalent to">⋩</span>, <span title="U+27C2
perpendicular">⟂</span>, <span title="U+2976
less-than above leftwards arrow">⥶</span>, <span title="U+2977
leftwards arrow through less-than">⥷</span>, <span title="U+2978
greater-than above rightwards arrow">⥸</span>, <span title="U+29B6
circled vertical bar">⦶</span>, <span title="U+29B7
circled parallel">⦷</span>, <span title="U+29B9
circled perpendicular">⦹</span>, <span title="U+29C0
circled less-than">⧀</span>, <span title="U+29C1
circled greater-than">⧁</span>, <span title="U+29CE
right triangle above left triangle">⧎</span>, <span title="U+29CF
left triangle beside vertical bar">⧏</span>, <span title="U+29CF U+0338
left triangle beside vertical bar with slash">⧏̸</span>, <span title="U+29D0
vertical bar beside right triangle">⧐</span>, <span title="U+29D0 U+0338
vertical bar beside right triangle with slash">⧐̸</span>, <span title="U+29D1
bowtie with left half black">⧑</span>, <span title="U+29D2
bowtie with right half black">⧒</span>, <span title="U+29D3
black bowtie">⧓</span>, <span title="U+29E1
increases as">⧡</span>, <span title="U+29E3
equals sign and slanted parallel">⧣</span>, <span title="U+29E4
equals sign and slanted parallel with tilde above">⧤</span>, <span title="U+29E5
identical to and slanted parallel">⧥</span>, <span title="U+29E6
gleich stark">⧦</span>, <span title="U+2A66
equals sign with dot below">⩦</span>, <span title="U+2A67
identical with dot above">⩧</span>, <span title="U+2A68
triple horizontal bar with double vertical stroke">⩨</span>, <span title="U+2A69
triple horizontal bar with triple vertical stroke">⩩</span>, <span title="U+2A6A
tilde operator with dot above">⩪</span>, <span title="U+2A6B
tilde operator with rising dots">⩫</span>, <span title="U+2A6C
similar minus similar">⩬</span>, <span title="U+2A6D
congruent with dot above">⩭</span>, <span title="U+2A6E
equals with asterisk">⩮</span>, <span title="U+2A6F
almost equal to with circumflex accent">⩯</span>, <span title="U+2A70
approximately equal or equal to">⩰</span>, <span title="U+2A71
equals sign above plus sign">⩱</span>, <span title="U+2A72
plus sign above equals sign">⩲</span>, <span title="U+2A73
equals sign above tilde operator">⩳</span>, <span title="U+2A74
double colon equal">⩴</span>, <span title="U+2A75
two consecutive equals signs">⩵</span>, <span title="U+2A76
three consecutive equals signs">⩶</span>, <span title="U+2A77
equals sign with two dots above and two dots below">⩷</span>, <span title="U+2A78
equivalent with four dots above">⩸</span>, <span title="U+2A79
less-than with circle inside">⩹</span>, <span title="U+2A7A
greater-than with circle inside">⩺</span>, <span title="U+2A7B
less-than with question mark above">⩻</span>, <span title="U+2A7C
greater-than with question mark above">⩼</span>, <span title="U+2A7D
less-than or slanted equal to">⩽</span>, <span title="U+2A7E
greater-than or slanted equal to">⩾</span>, <span title="U+2A7F
less-than or slanted equal to with dot inside">⩿</span>, <span title="U+2A80
greater-than or slanted equal to with dot inside">⪀</span>, <span title="U+2A81
less-than or slanted equal to with dot above">⪁</span>, <span title="U+2A82
greater-than or slanted equal to with dot above">⪂</span>, <span title="U+2A83
less-than or slanted equal to with dot above right">⪃</span>, <span title="U+2A84
greater-than or slanted equal to with dot above left">⪄</span>, <span title="U+2A85
less-than or approximate">⪅</span>, <span title="U+2A86
greater-than or approximate">⪆</span>, <span title="U+2A87
less-than and single-line not equal to">⪇</span>, <span title="U+2A88
greater-than and single-line not equal to">⪈</span>, <span title="U+2A89
less-than and not approximate">⪉</span>, <span title="U+2A8A
greater-than and not approximate">⪊</span>, <span title="U+2A8B
less-than above double-line equal above greater-than">⪋</span>, <span title="U+2A8C
greater-than above double-line equal above less-than">⪌</span>, <span title="U+2A8D
less-than above similar or equal">⪍</span>, <span title="U+2A8E
greater-than above similar or equal">⪎</span>, <span title="U+2A8F
less-than above similar above greater-than">⪏</span>, <span title="U+2A90
greater-than above similar above less-than">⪐</span>, <span title="U+2A91
less-than above greater-than above double-line equal">⪑</span>, <span title="U+2A92
greater-than above less-than above double-line equal">⪒</span>, <span title="U+2A93
less-than above slanted equal above greater-than above slanted equal">⪓</span>, <span title="U+2A94
greater-than above slanted equal above less-than above slanted equal">⪔</span>, <span title="U+2A95
slanted equal to or less-than">⪕</span>, <span title="U+2A96
slanted equal to or greater-than">⪖</span>, <span title="U+2A97
slanted equal to or less-than with dot inside">⪗</span>, <span title="U+2A98
slanted equal to or greater-than with dot inside">⪘</span>, <span title="U+2A99
double-line equal to or less-than">⪙</span>, <span title="U+2A9A
double-line equal to or greater-than">⪚</span>, <span title="U+2A9B
double-line slanted equal to or less-than">⪛</span>, <span title="U+2A9C
double-line slanted equal to or greater-than">⪜</span>, <span title="U+2A9D
similar or less-than">⪝</span>, <span title="U+2A9E
similar or greater-than">⪞</span>, <span title="U+2A9F
similar above less-than above equals sign">⪟</span>, <span title="U+2AA0
similar above greater-than above equals sign">⪠</span>, <span title="U+2AA1
double nested less-than">⪡</span>, <span title="U+2AA2
double nested greater-than">⪢</span>, <span title="U+2AA3
double nested less-than with underbar">⪣</span>, <span title="U+2AA4
greater-than overlapping less-than">⪤</span>, <span title="U+2AA5
greater-than beside less-than">⪥</span>, <span title="U+2AA6
less-than closed by curve">⪦</span>, <span title="U+2AA7
greater-than closed by curve">⪧</span>, <span title="U+2AA8
less-than closed by curve above slanted equal">⪨</span>, <span title="U+2AA9
greater-than closed by curve above slanted equal">⪩</span>, <span title="U+2AAA
smaller than">⪪</span>, <span title="U+2AAB
larger than">⪫</span>, <span title="U+2AAC
smaller than or equal to">⪬</span>, <span title="U+2AAD
larger than or equal to">⪭</span>, <span title="U+2AAE
equals sign with bumpy above">⪮</span>, <span title="U+2AAF
precedes above single-line equals sign">⪯</span>, <span title="U+2AB0
succeeds above single-line equals sign">⪰</span>, <span title="U+2AB1
precedes above single-line not equal to">⪱</span>, <span title="U+2AB2
succeeds above single-line not equal to">⪲</span>, <span title="U+2AB3
precedes above equals sign">⪳</span>, <span title="U+2AB4
succeeds above equals sign">⪴</span>, <span title="U+2AB5
precedes above not equal to">⪵</span>, <span title="U+2AB6
succeeds above not equal to">⪶</span>, <span title="U+2AB7
precedes above almost equal to">⪷</span>, <span title="U+2AB8
succeeds above almost equal to">⪸</span>, <span title="U+2AB9
precedes above not almost equal to">⪹</span>, <span title="U+2ABA
succeeds above not almost equal to">⪺</span>, <span title="U+2ABB
double precedes">⪻</span>, <span title="U+2ABC
double succeeds">⪼</span>, <span title="U+2ADA
pitchfork with tee top">⫚</span>, <span title="U+2AEE
does not divide with reversed negation slash">⫮</span>, <span title="U+2AF2
parallel with horizontal stroke">⫲</span>, <span title="U+2AF3
parallel with tilde operator">⫳</span>, <span title="U+2AF4
triple vertical bar binary relation">⫴</span>, <span title="U+2AF5
triple vertical bar with horizontal stroke">⫵</span>, <span title="U+2AF7
triple nested less-than">⫷</span>, <span title="U+2AF8
triple nested greater-than">⫸</span>, <span title="U+2AF9
double-line slanted less-than or equal to">⫹</span>, <span title="U+2AFA
double-line slanted greater-than or equal to">⫺</span>, <span title="U+2BD1
uncertainty sign">⯑</span></dd>
<dt>Priority: 270</dt>
<dd><span title="U+2190
stretchy
leftwards arrow">←</span>, <span title="U+2191
stretchy
upwards arrow">↑</span>, <span title="U+2192
stretchy
rightwards arrow">→</span>, <span title="U+2193
stretchy
downwards arrow">↓</span>, <span title="U+2194
stretchy
left right arrow">↔</span>, <span title="U+2195
stretchy
up down arrow">↕</span>, <span title="U+2196
north west arrow">↖</span>, <span title="U+2197
north east arrow">↗</span>, <span title="U+2198
south east arrow">↘</span>, <span title="U+2199
south west arrow">↙</span>, <span title="U+219A
stretchy
leftwards arrow with stroke">↚</span>, <span title="U+219B
stretchy
rightwards arrow with stroke">↛</span>, <span title="U+219C
stretchy
leftwards wave arrow">↜</span>, <span title="U+219D
stretchy
rightwards wave arrow">↝</span>, <span title="U+219E
stretchy
leftwards two headed arrow">↞</span>, <span title="U+219F
stretchy
upwards two headed arrow">↟</span>, <span title="U+21A0
stretchy
rightwards two headed arrow">↠</span>, <span title="U+21A1
stretchy
downwards two headed arrow">↡</span>, <span title="U+21A2
stretchy
leftwards arrow with tail">↢</span>, <span title="U+21A3
stretchy
rightwards arrow with tail">↣</span>, <span title="U+21A4
stretchy
leftwards arrow from bar">↤</span>, <span title="U+21A5
stretchy
upwards arrow from bar">↥</span>, <span title="U+21A6
stretchy
rightwards arrow from bar">↦</span>, <span title="U+21A7
stretchy
downwards arrow from bar">↧</span>, <span title="U+21A8
stretchy
up down arrow with base">↨</span>, <span title="U+21A9
stretchy
leftwards arrow with hook">↩</span>, <span title="U+21AA
stretchy
rightwards arrow with hook">↪</span>, <span title="U+21AB
stretchy
leftwards arrow with loop">↫</span>, <span title="U+21AC
stretchy
rightwards arrow with loop">↬</span>, <span title="U+21AD
stretchy
left right wave arrow">↭</span>, <span title="U+21AE
stretchy
left right arrow with stroke">↮</span>, <span title="U+21AF
downwards zigzag arrow">↯</span>, <span title="U+21B0
stretchy
upwards arrow with tip leftwards">↰</span>, <span title="U+21B1
stretchy
upwards arrow with tip rightwards">↱</span>, <span title="U+21B2
stretchy
downwards arrow with tip leftwards">↲</span>, <span title="U+21B3
stretchy
downwards arrow with tip rightwards">↳</span>, <span title="U+21B4
stretchy
rightwards arrow with corner downwards">↴</span>, <span title="U+21B5
stretchy
downwards arrow with corner leftwards">↵</span>, <span title="U+21B6
anticlockwise top semicircle arrow">↶</span>, <span title="U+21B7
clockwise top semicircle arrow">↷</span>, <span title="U+21B8
north west arrow to long bar">↸</span>, <span title="U+21B9
stretchy
leftwards arrow to bar over rightwards arrow to bar">↹</span>, <span title="U+21BA
anticlockwise open circle arrow">↺</span>, <span title="U+21BB
clockwise open circle arrow">↻</span>, <span title="U+21BC
stretchy
leftwards harpoon with barb upwards">↼</span>, <span title="U+21BD
stretchy
leftwards harpoon with barb downwards">↽</span>, <span title="U+21BE
stretchy
upwards harpoon with barb rightwards">↾</span>, <span title="U+21BF
stretchy
upwards harpoon with barb leftwards">↿</span>, <span title="U+21C0
stretchy
rightwards harpoon with barb upwards">⇀</span>, <span title="U+21C1
stretchy
rightwards harpoon with barb downwards">⇁</span>, <span title="U+21C2
stretchy
downwards harpoon with barb rightwards">⇂</span>, <span title="U+21C3
stretchy
downwards harpoon with barb leftwards">⇃</span>, <span title="U+21C4
stretchy
rightwards arrow over leftwards arrow">⇄</span>, <span title="U+21C5
stretchy
upwards arrow leftwards of downwards arrow">⇅</span>, <span title="U+21C6
stretchy
leftwards arrow over rightwards arrow">⇆</span>, <span title="U+21C7
stretchy
leftwards paired arrows">⇇</span>, <span title="U+21C8
stretchy
upwards paired arrows">⇈</span>, <span title="U+21C9
stretchy
rightwards paired arrows">⇉</span>, <span title="U+21CA
stretchy
downwards paired arrows">⇊</span>, <span title="U+21CB
stretchy
leftwards harpoon over rightwards harpoon">⇋</span>, <span title="U+21CC
stretchy
rightwards harpoon over leftwards harpoon">⇌</span>, <span title="U+21CD
stretchy
leftwards double arrow with stroke">⇍</span>, <span title="U+21CE
stretchy
left right double arrow with stroke">⇎</span>, <span title="U+21CF
stretchy
rightwards double arrow with stroke">⇏</span>, <span title="U+21D0
stretchy
leftwards double arrow">⇐</span>, <span title="U+21D1
stretchy
upwards double arrow">⇑</span>, <span title="U+21D2
stretchy
rightwards double arrow">⇒</span>, <span title="U+21D3
stretchy
downwards double arrow">⇓</span>, <span title="U+21D4
stretchy
left right double arrow">⇔</span>, <span title="U+21D5
stretchy
up down double arrow">⇕</span>, <span title="U+21D6
north west double arrow">⇖</span>, <span title="U+21D7
north east double arrow">⇗</span>, <span title="U+21D8
south east double arrow">⇘</span>, <span title="U+21D9
south west double arrow">⇙</span>, <span title="U+21DA
stretchy
leftwards triple arrow">⇚</span>, <span title="U+21DB
stretchy
rightwards triple arrow">⇛</span>, <span title="U+21DC
stretchy
leftwards squiggle arrow">⇜</span>, <span title="U+21DD
stretchy
rightwards squiggle arrow">⇝</span>, <span title="U+21DE
stretchy
upwards arrow with double stroke">⇞</span>, <span title="U+21DF
stretchy
downwards arrow with double stroke">⇟</span>, <span title="U+21E0
stretchy
leftwards dashed arrow">⇠</span>, <span title="U+21E1
stretchy
upwards dashed arrow">⇡</span>, <span title="U+21E2
stretchy
rightwards dashed arrow">⇢</span>, <span title="U+21E3
stretchy
downwards dashed arrow">⇣</span>, <span title="U+21E4
stretchy
leftwards arrow to bar">⇤</span>, <span title="U+21E5
stretchy
rightwards arrow to bar">⇥</span>, <span title="U+21E6
stretchy
leftwards white arrow">⇦</span>, <span title="U+21E7
stretchy
upwards white arrow">⇧</span>, <span title="U+21E8
stretchy
rightwards white arrow">⇨</span>, <span title="U+21E9
stretchy
downwards white arrow">⇩</span>, <span title="U+21EA
stretchy
upwards white arrow from bar">⇪</span>, <span title="U+21EB
stretchy
upwards white arrow on pedestal">⇫</span>, <span title="U+21EC
stretchy
upwards white arrow on pedestal with horizontal bar">⇬</span>, <span title="U+21ED
stretchy
upwards white arrow on pedestal with vertical bar">⇭</span>, <span title="U+21EE
stretchy
upwards white double arrow">⇮</span>, <span title="U+21EF
stretchy
upwards white double arrow on pedestal">⇯</span>, <span title="U+21F0
stretchy
rightwards white arrow from wall">⇰</span>, <span title="U+21F1
north west arrow to corner">⇱</span>, <span title="U+21F2
south east arrow to corner">⇲</span>, <span title="U+21F3
stretchy
up down white arrow">⇳</span>, <span title="U+21F4
stretchy
right arrow with small circle">⇴</span>, <span title="U+21F5
stretchy
downwards arrow leftwards of upwards arrow">⇵</span>, <span title="U+21F6
stretchy
three rightwards arrows">⇶</span>, <span title="U+21F7
stretchy
leftwards arrow with vertical stroke">⇷</span>, <span title="U+21F8
stretchy
rightwards arrow with vertical stroke">⇸</span>, <span title="U+21F9
stretchy
left right arrow with vertical stroke">⇹</span>, <span title="U+21FA
stretchy
leftwards arrow with double vertical stroke">⇺</span>, <span title="U+21FB
stretchy
rightwards arrow with double vertical stroke">⇻</span>, <span title="U+21FC
stretchy
left right arrow with double vertical stroke">⇼</span>, <span title="U+21FD
stretchy
leftwards open-headed arrow">⇽</span>, <span title="U+21FE
stretchy
rightwards open-headed arrow">⇾</span>, <span title="U+21FF
stretchy
left right open-headed arrow">⇿</span>, <span title="U+2301
electric arrow">⌁</span>, <span title="U+237C
right angle with downwards zigzag arrow">⍼</span>, <span title="U+238B
broken circle with northwest arrow">⎋</span>, <span title="U+2794
stretchy
heavy wide-headed rightwards arrow">➔</span>, <span title="U+2798
heavy south east arrow">➘</span>, <span title="U+2799
stretchy
heavy rightwards arrow">➙</span>, <span title="U+279A
heavy north east arrow">➚</span>, <span title="U+279B
stretchy
drafting point rightwards arrow">➛</span>, <span title="U+279C
stretchy
heavy round-tipped rightwards arrow">➜</span>, <span title="U+279D
stretchy
triangle-headed rightwards arrow">➝</span>, <span title="U+279E
stretchy
heavy triangle-headed rightwards arrow">➞</span>, <span title="U+279F
stretchy
dashed triangle-headed rightwards arrow">➟</span>, <span title="U+27A0
stretchy
heavy dashed triangle-headed rightwards arrow">➠</span>, <span title="U+27A1
stretchy
black rightwards arrow">➡</span>, <span title="U+27A5
stretchy
heavy black curved downwards and rightwards arrow">➥</span>, <span title="U+27A6
stretchy
heavy black curved upwards and rightwards arrow">➦</span>, <span title="U+27A7
squat black rightwards arrow">➧</span>, <span title="U+27A8
stretchy
heavy concave-pointed black rightwards arrow">➨</span>, <span title="U+27A9
stretchy
right-shaded white rightwards arrow">➩</span>, <span title="U+27AA
stretchy
left-shaded white rightwards arrow">➪</span>, <span title="U+27AB
stretchy
back-tilted shadowed white rightwards arrow">➫</span>, <span title="U+27AC
stretchy
front-tilted shadowed white rightwards arrow">➬</span>, <span title="U+27AD
stretchy
heavy lower right-shadowed white rightwards arrow">➭</span>, <span title="U+27AE
stretchy
heavy upper right-shadowed white rightwards arrow">➮</span>, <span title="U+27AF
stretchy
notched lower right-shadowed white rightwards arrow">➯</span>, <span title="U+27B1
stretchy
notched upper right-shadowed white rightwards arrow">➱</span>, <span title="U+27B2
circled heavy white rightwards arrow">➲</span>, <span title="U+27B3
stretchy
white-feathered rightwards arrow">➳</span>, <span title="U+27B4
black-feathered south east arrow">➴</span>, <span title="U+27B5
stretchy
black-feathered rightwards arrow">➵</span>, <span title="U+27B6
black-feathered north east arrow">➶</span>, <span title="U+27B7
heavy black-feathered south east arrow">➷</span>, <span title="U+27B8
stretchy
heavy black-feathered rightwards arrow">➸</span>, <span title="U+27B9
heavy black-feathered north east arrow">➹</span>, <span title="U+27BA
stretchy
teardrop-barbed rightwards arrow">➺</span>, <span title="U+27BB
stretchy
heavy teardrop-shanked rightwards arrow">➻</span>, <span title="U+27BC
stretchy
wedge-tailed rightwards arrow">➼</span>, <span title="U+27BD
stretchy
heavy wedge-tailed rightwards arrow">➽</span>, <span title="U+27BE
stretchy
open-outlined rightwards arrow">➾</span>, <span title="U+27F0
stretchy
upwards quadruple arrow">⟰</span>, <span title="U+27F1
stretchy
downwards quadruple arrow">⟱</span>, <span title="U+27F2
anticlockwise gapped circle arrow">⟲</span>, <span title="U+27F3
clockwise gapped circle arrow">⟳</span>, <span title="U+27F4
stretchy
right arrow with circled plus">⟴</span>, <span title="U+27F5
stretchy
long leftwards arrow">⟵</span>, <span title="U+27F6
stretchy
long rightwards arrow">⟶</span>, <span title="U+27F7
stretchy
long left right arrow">⟷</span>, <span title="U+27F8
stretchy
long leftwards double arrow">⟸</span>, <span title="U+27F9
stretchy
long rightwards double arrow">⟹</span>, <span title="U+27FA
stretchy
long left right double arrow">⟺</span>, <span title="U+27FB
stretchy
long leftwards arrow from bar">⟻</span>, <span title="U+27FC
stretchy
long rightwards arrow from bar">⟼</span>, <span title="U+27FD
stretchy
long leftwards double arrow from bar">⟽</span>, <span title="U+27FE
stretchy
long rightwards double arrow from bar">⟾</span>, <span title="U+27FF
stretchy
long rightwards squiggle arrow">⟿</span>, <span title="U+2900
stretchy
rightwards two-headed arrow with vertical stroke">⤀</span>, <span title="U+2901
stretchy
rightwards two-headed arrow with double vertical stroke">⤁</span>, <span title="U+2902
stretchy
leftwards double arrow with vertical stroke">⤂</span>, <span title="U+2903
stretchy
rightwards double arrow with vertical stroke">⤃</span>, <span title="U+2904
stretchy
left right double arrow with vertical stroke">⤄</span>, <span title="U+2905
stretchy
rightwards two-headed arrow from bar">⤅</span>, <span title="U+2906
stretchy
leftwards double arrow from bar">⤆</span>, <span title="U+2907
stretchy
rightwards double arrow from bar">⤇</span>, <span title="U+2908
stretchy
downwards arrow with horizontal stroke">⤈</span>, <span title="U+2909
stretchy
upwards arrow with horizontal stroke">⤉</span>, <span title="U+290A
stretchy
upwards triple arrow">⤊</span>, <span title="U+290B
stretchy
downwards triple arrow">⤋</span>, <span title="U+290C
stretchy
leftwards double dash arrow">⤌</span>, <span title="U+290D
stretchy
rightwards double dash arrow">⤍</span>, <span title="U+290E
stretchy
leftwards triple dash arrow">⤎</span>, <span title="U+290F
stretchy
rightwards triple dash arrow">⤏</span>, <span title="U+2910
stretchy
rightwards two-headed triple dash arrow">⤐</span>, <span title="U+2911
stretchy
rightwards arrow with dotted stem">⤑</span>, <span title="U+2912
stretchy
upwards arrow to bar">⤒</span>, <span title="U+2913
stretchy
downwards arrow to bar">⤓</span>, <span title="U+2914
stretchy
rightwards arrow with tail with vertical stroke">⤔</span>, <span title="U+2915
stretchy
rightwards arrow with tail with double vertical stroke">⤕</span>, <span title="U+2916
stretchy
rightwards two-headed arrow with tail">⤖</span>, <span title="U+2917
stretchy
rightwards two-headed arrow with tail with vertical stroke">⤗</span>, <span title="U+2918
stretchy
rightwards two-headed arrow with tail with double vertical stroke">⤘</span>, <span title="U+2919
stretchy
leftwards arrow-tail">⤙</span>, <span title="U+291A
stretchy
rightwards arrow-tail">⤚</span>, <span title="U+291B
stretchy
leftwards double arrow-tail">⤛</span>, <span title="U+291C
stretchy
rightwards double arrow-tail">⤜</span>, <span title="U+291D
stretchy
leftwards arrow to black diamond">⤝</span>, <span title="U+291E
stretchy
rightwards arrow to black diamond">⤞</span>, <span title="U+291F
stretchy
leftwards arrow from bar to black diamond">⤟</span>, <span title="U+2920
stretchy
rightwards arrow from bar to black diamond">⤠</span>, <span title="U+2921
north west and south east arrow">⤡</span>, <span title="U+2922
north east and south west arrow">⤢</span>, <span title="U+2923
north west arrow with hook">⤣</span>, <span title="U+2924
north east arrow with hook">⤤</span>, <span title="U+2925
south east arrow with hook">⤥</span>, <span title="U+2926
south west arrow with hook">⤦</span>, <span title="U+2927
north west arrow and north east arrow">⤧</span>, <span title="U+2928
north east arrow and south east arrow">⤨</span>, <span title="U+2929
south east arrow and south west arrow">⤩</span>, <span title="U+292A
south west arrow and north west arrow">⤪</span>, <span title="U+292B
rising diagonal crossing falling diagonal">⤫</span>, <span title="U+292C
falling diagonal crossing rising diagonal">⤬</span>, <span title="U+292D
south east arrow crossing north east arrow">⤭</span>, <span title="U+292E
north east arrow crossing south east arrow">⤮</span>, <span title="U+292F
falling diagonal crossing north east arrow">⤯</span>, <span title="U+2930
rising diagonal crossing south east arrow">⤰</span>, <span title="U+2931
north east arrow crossing north west arrow">⤱</span>, <span title="U+2932
north west arrow crossing north east arrow">⤲</span>, <span title="U+2933
wave arrow pointing directly right">⤳</span>, <span title="U+2934
stretchy
arrow pointing rightwards then curving upwards">⤴</span>, <span title="U+2935
stretchy
arrow pointing rightwards then curving downwards">⤵</span>, <span title="U+2936
stretchy
arrow pointing downwards then curving leftwards">⤶</span>, <span title="U+2937
stretchy
arrow pointing downwards then curving rightwards">⤷</span>, <span title="U+2938
right-side arc clockwise arrow">⤸</span>, <span title="U+2939
left-side arc anticlockwise arrow">⤹</span>, <span title="U+293A
top arc anticlockwise arrow">⤺</span>, <span title="U+293B
bottom arc anticlockwise arrow">⤻</span>, <span title="U+293C
top arc clockwise arrow with minus">⤼</span>, <span title="U+293D
top arc anticlockwise arrow with plus">⤽</span>, <span title="U+293E
lower right semicircular clockwise arrow">⤾</span>, <span title="U+293F
lower left semicircular anticlockwise arrow">⤿</span>, <span title="U+2940
anticlockwise closed circle arrow">⥀</span>, <span title="U+2941
clockwise closed circle arrow">⥁</span>, <span title="U+2942
stretchy
rightwards arrow above short leftwards arrow">⥂</span>, <span title="U+2943
stretchy
leftwards arrow above short rightwards arrow">⥃</span>, <span title="U+2944
stretchy
short rightwards arrow above leftwards arrow">⥄</span>, <span title="U+2945
stretchy
rightwards arrow with plus below">⥅</span>, <span title="U+2946
stretchy
leftwards arrow with plus below">⥆</span>, <span title="U+2947
stretchy
rightwards arrow through x">⥇</span>, <span title="U+2948
stretchy
left right arrow through small circle">⥈</span>, <span title="U+2949
stretchy
upwards two-headed arrow from small circle">⥉</span>, <span title="U+294A
stretchy
left barb up right barb down harpoon">⥊</span>, <span title="U+294B
stretchy
left barb down right barb up harpoon">⥋</span>, <span title="U+294C
stretchy
up barb right down barb left harpoon">⥌</span>, <span title="U+294D
stretchy
up barb left down barb right harpoon">⥍</span>, <span title="U+294E
stretchy
left barb up right barb up harpoon">⥎</span>, <span title="U+294F
stretchy
up barb right down barb right harpoon">⥏</span>, <span title="U+2950
stretchy
left barb down right barb down harpoon">⥐</span>, <span title="U+2951
stretchy
up barb left down barb left harpoon">⥑</span>, <span title="U+2952
stretchy
leftwards harpoon with barb up to bar">⥒</span>, <span title="U+2953
stretchy
rightwards harpoon with barb up to bar">⥓</span>, <span title="U+2954
stretchy
upwards harpoon with barb right to bar">⥔</span>, <span title="U+2955
stretchy
downwards harpoon with barb right to bar">⥕</span>, <span title="U+2956
stretchy
leftwards harpoon with barb down to bar">⥖</span>, <span title="U+2957
stretchy
rightwards harpoon with barb down to bar">⥗</span>, <span title="U+2958
stretchy
upwards harpoon with barb left to bar">⥘</span>, <span title="U+2959
stretchy
downwards harpoon with barb left to bar">⥙</span>, <span title="U+295A
stretchy
leftwards harpoon with barb up from bar">⥚</span>, <span title="U+295B
stretchy
rightwards harpoon with barb up from bar">⥛</span>, <span title="U+295C
stretchy
upwards harpoon with barb right from bar">⥜</span>, <span title="U+295D
stretchy
downwards harpoon with barb right from bar">⥝</span>, <span title="U+295E
stretchy
leftwards harpoon with barb down from bar">⥞</span>, <span title="U+295F
stretchy
rightwards harpoon with barb down from bar">⥟</span>, <span title="U+2960
stretchy
upwards harpoon with barb left from bar">⥠</span>, <span title="U+2961
stretchy
downwards harpoon with barb left from bar">⥡</span>, <span title="U+2962
stretchy
leftwards harpoon with barb up above leftwards harpoon with barb down">⥢</span>, <span title="U+2963
stretchy
upwards harpoon with barb left beside upwards harpoon with barb right">⥣</span>, <span title="U+2964
stretchy
rightwards harpoon with barb up above rightwards harpoon with barb down">⥤</span>, <span title="U+2965
stretchy
downwards harpoon with barb left beside downwards harpoon with barb right">⥥</span>, <span title="U+2966
stretchy
leftwards harpoon with barb up above rightwards harpoon with barb up">⥦</span>, <span title="U+2967
stretchy
leftwards harpoon with barb down above rightwards harpoon with barb down">⥧</span>, <span title="U+2968
stretchy
rightwards harpoon with barb up above leftwards harpoon with barb up">⥨</span>, <span title="U+2969
stretchy
rightwards harpoon with barb down above leftwards harpoon with barb down">⥩</span>, <span title="U+296A
stretchy
leftwards harpoon with barb up above long dash">⥪</span>, <span title="U+296B
stretchy
leftwards harpoon with barb down below long dash">⥫</span>, <span title="U+296C
stretchy
rightwards harpoon with barb up above long dash">⥬</span>, <span title="U+296D
stretchy
rightwards harpoon with barb down below long dash">⥭</span>, <span title="U+296E
stretchy
upwards harpoon with barb left beside downwards harpoon with barb right">⥮</span>, <span title="U+296F
stretchy
downwards harpoon with barb left beside upwards harpoon with barb right">⥯</span>, <span title="U+2970
stretchy
right double arrow with rounded head">⥰</span>, <span title="U+2971
stretchy
equals sign above rightwards arrow">⥱</span>, <span title="U+2972
stretchy
tilde operator above rightwards arrow">⥲</span>, <span title="U+2973
stretchy
leftwards arrow above tilde operator">⥳</span>, <span title="U+2974
stretchy
rightwards arrow above tilde operator">⥴</span>, <span title="U+2975
stretchy
rightwards arrow above almost equal to">⥵</span>, <span title="U+297C
stretchy
left fish tail">⥼</span>, <span title="U+297D
stretchy
right fish tail">⥽</span>, <span title="U+297E
stretchy
up fish tail">⥾</span>, <span title="U+297F
stretchy
down fish tail">⥿</span>, <span title="U+29DF
double-ended multimap">⧟</span>, <span title="U+2B00
north east white arrow">⬀</span>, <span title="U+2B01
north west white arrow">⬁</span>, <span title="U+2B02
south east white arrow">⬂</span>, <span title="U+2B03
south west white arrow">⬃</span>, <span title="U+2B04
stretchy
left right white arrow">⬄</span>, <span title="U+2B05
stretchy
leftwards black arrow">⬅</span>, <span title="U+2B06
stretchy
upwards black arrow">⬆</span>, <span title="U+2B07
stretchy
downwards black arrow">⬇</span>, <span title="U+2B08
north east black arrow">⬈</span>, <span title="U+2B09
north west black arrow">⬉</span>, <span title="U+2B0A
south east black arrow">⬊</span>, <span title="U+2B0B
south west black arrow">⬋</span>, <span title="U+2B0C
stretchy
left right black arrow">⬌</span>, <span title="U+2B0D
stretchy
up down black arrow">⬍</span>, <span title="U+2B0E
stretchy
rightwards arrow with tip downwards">⬎</span>, <span title="U+2B0F
stretchy
rightwards arrow with tip upwards">⬏</span>, <span title="U+2B10
stretchy
leftwards arrow with tip downwards">⬐</span>, <span title="U+2B11
stretchy
leftwards arrow with tip upwards">⬑</span>, <span title="U+2B30
stretchy
left arrow with small circle">⬰</span>, <span title="U+2B31
stretchy
three leftwards arrows">⬱</span>, <span title="U+2B32
stretchy
left arrow with circled plus">⬲</span>, <span title="U+2B33
stretchy
long leftwards squiggle arrow">⬳</span>, <span title="U+2B34
stretchy
leftwards two-headed arrow with vertical stroke">⬴</span>, <span title="U+2B35
stretchy
leftwards two-headed arrow with double vertical stroke">⬵</span>, <span title="U+2B36
stretchy
leftwards two-headed arrow from bar">⬶</span>, <span title="U+2B37
stretchy
leftwards two-headed triple dash arrow">⬷</span>, <span title="U+2B38
stretchy
leftwards arrow with dotted stem">⬸</span>, <span title="U+2B39
stretchy
leftwards arrow with tail with vertical stroke">⬹</span>, <span title="U+2B3A
stretchy
leftwards arrow with tail with double vertical stroke">⬺</span>, <span title="U+2B3B
stretchy
leftwards two-headed arrow with tail">⬻</span>, <span title="U+2B3C
stretchy
leftwards two-headed arrow with tail with vertical stroke">⬼</span>, <span title="U+2B3D
stretchy
leftwards two-headed arrow with tail with double vertical stroke">⬽</span>, <span title="U+2B3E
stretchy
leftwards arrow through x">⬾</span>, <span title="U+2B3F
wave arrow pointing directly left">⬿</span>, <span title="U+2B40
stretchy
equals sign above leftwards arrow">⭀</span>, <span title="U+2B41
stretchy
reverse tilde operator above leftwards arrow">⭁</span>, <span title="U+2B42
stretchy
leftwards arrow above reverse almost equal to">⭂</span>, <span title="U+2B43
stretchy
rightwards arrow through greater-than">⭃</span>, <span title="U+2B44
stretchy
rightwards arrow through superset">⭄</span>, <span title="U+2B45
stretchy
leftwards quadruple arrow">⭅</span>, <span title="U+2B46
stretchy
rightwards quadruple arrow">⭆</span>, <span title="U+2B47
stretchy
reverse tilde operator above rightwards arrow">⭇</span>, <span title="U+2B48
stretchy
rightwards arrow above reverse almost equal to">⭈</span>, <span title="U+2B49
stretchy
tilde operator above leftwards arrow">⭉</span>, <span title="U+2B4A
stretchy
leftwards arrow above almost equal to">⭊</span>, <span title="U+2B4B
stretchy
leftwards arrow above reverse tilde operator">⭋</span>, <span title="U+2B4C
stretchy
rightwards arrow above reverse tilde operator">⭌</span>, <span title="U+2B4D
downwards triangle-headed zigzag arrow">⭍</span>, <span title="U+2B4E
short slanted north arrow">⭎</span>, <span title="U+2B4F
short backslanted south arrow">⭏</span>, <span title="U+2B5A
slanted north arrow with hooked head">⭚</span>, <span title="U+2B5B
backslanted south arrow with hooked tail">⭛</span>, <span title="U+2B5C
slanted north arrow with horizontal tail">⭜</span>, <span title="U+2B5D
backslanted south arrow with horizontal tail">⭝</span>, <span title="U+2B5E
bent arrow pointing downwards then north east">⭞</span>, <span title="U+2B5F
short bent arrow pointing downwards then north east">⭟</span>, <span title="U+2B60
stretchy
leftwards triangle-headed arrow">⭠</span>, <span title="U+2B61
stretchy
upwards triangle-headed arrow">⭡</span>, <span title="U+2B62
stretchy
rightwards triangle-headed arrow">⭢</span>, <span title="U+2B63
stretchy
downwards triangle-headed arrow">⭣</span>, <span title="U+2B64
stretchy
left right triangle-headed arrow">⭤</span>, <span title="U+2B65
stretchy
up down triangle-headed arrow">⭥</span>, <span title="U+2B66
north west triangle-headed arrow">⭦</span>, <span title="U+2B67
north east triangle-headed arrow">⭧</span>, <span title="U+2B68
south east triangle-headed arrow">⭨</span>, <span title="U+2B69
south west triangle-headed arrow">⭩</span>, <span title="U+2B6A
stretchy
leftwards triangle-headed dashed arrow">⭪</span>, <span title="U+2B6B
stretchy
upwards triangle-headed dashed arrow">⭫</span>, <span title="U+2B6C
stretchy
rightwards triangle-headed dashed arrow">⭬</span>, <span title="U+2B6D
stretchy
downwards triangle-headed dashed arrow">⭭</span>, <span title="U+2B6E
clockwise triangle-headed open circle arrow">⭮</span>, <span title="U+2B6F
anticlockwise triangle-headed open circle arrow">⭯</span>, <span title="U+2B70
stretchy
leftwards triangle-headed arrow to bar">⭰</span>, <span title="U+2B71
stretchy
upwards triangle-headed arrow to bar">⭱</span>, <span title="U+2B72
stretchy
rightwards triangle-headed arrow to bar">⭲</span>, <span title="U+2B73
stretchy
downwards triangle-headed arrow to bar">⭳</span>, <span title="U+2B76
north west triangle-headed arrow to bar">⭶</span>, <span title="U+2B77
north east triangle-headed arrow to bar">⭷</span>, <span title="U+2B78
south east triangle-headed arrow to bar">⭸</span>, <span title="U+2B79
south west triangle-headed arrow to bar">⭹</span>, <span title="U+2B7A
stretchy
leftwards triangle-headed arrow with double horizontal stroke">⭺</span>, <span title="U+2B7B
stretchy
upwards triangle-headed arrow with double horizontal stroke">⭻</span>, <span title="U+2B7C
stretchy
rightwards triangle-headed arrow with double horizontal stroke">⭼</span>, <span title="U+2B7D
stretchy
downwards triangle-headed arrow with double horizontal stroke">⭽</span>, <span title="U+2B80
stretchy
leftwards triangle-headed arrow over rightwards triangle-headed arrow">⮀</span>, <span title="U+2B81
stretchy
upwards triangle-headed arrow leftwards of downwards triangle-headed arrow">⮁</span>, <span title="U+2B82
stretchy
rightwards triangle-headed arrow over leftwards triangle-headed arrow">⮂</span>, <span title="U+2B83
stretchy
downwards triangle-headed arrow leftwards of upwards triangle-headed arrow">⮃</span>, <span title="U+2B84
stretchy
leftwards triangle-headed paired arrows">⮄</span>, <span title="U+2B85
stretchy
upwards triangle-headed paired arrows">⮅</span>, <span title="U+2B86
stretchy
rightwards triangle-headed paired arrows">⮆</span>, <span title="U+2B87
stretchy
downwards triangle-headed paired arrows">⮇</span>, <span title="U+2B88
leftwards black circled white arrow">⮈</span>, <span title="U+2B89
upwards black circled white arrow">⮉</span>, <span title="U+2B8A
rightwards black circled white arrow">⮊</span>, <span title="U+2B8B
downwards black circled white arrow">⮋</span>, <span title="U+2B8C
anticlockwise triangle-headed right u-shaped arrow">⮌</span>, <span title="U+2B8D
anticlockwise triangle-headed bottom u-shaped arrow">⮍</span>, <span title="U+2B8E
anticlockwise triangle-headed left u-shaped arrow">⮎</span>, <span title="U+2B8F
anticlockwise triangle-headed top u-shaped arrow">⮏</span>, <span title="U+2B94
four corner arrows circling anticlockwise">⮔</span>, <span title="U+2B95
stretchy
rightwards black arrow">⮕</span>, <span title="U+2BA0
stretchy
downwards triangle-headed arrow with long tip leftwards">⮠</span>, <span title="U+2BA1
stretchy
downwards triangle-headed arrow with long tip rightwards">⮡</span>, <span title="U+2BA2
stretchy
upwards triangle-headed arrow with long tip leftwards">⮢</span>, <span title="U+2BA3
stretchy
upwards triangle-headed arrow with long tip rightwards">⮣</span>, <span title="U+2BA4
stretchy
leftwards triangle-headed arrow with long tip upwards">⮤</span>, <span title="U+2BA5
stretchy
rightwards triangle-headed arrow with long tip upwards">⮥</span>, <span title="U+2BA6
stretchy
leftwards triangle-headed arrow with long tip downwards">⮦</span>, <span title="U+2BA7
stretchy
rightwards triangle-headed arrow with long tip downwards">⮧</span>, <span title="U+2BA8
stretchy
black curved downwards and leftwards arrow">⮨</span>, <span title="U+2BA9
stretchy
black curved downwards and rightwards arrow">⮩</span>, <span title="U+2BAA
stretchy
black curved upwards and leftwards arrow">⮪</span>, <span title="U+2BAB
stretchy
black curved upwards and rightwards arrow">⮫</span>, <span title="U+2BAC
stretchy
black curved leftwards and upwards arrow">⮬</span>, <span title="U+2BAD
stretchy
black curved rightwards and upwards arrow">⮭</span>, <span title="U+2BAE
stretchy
black curved leftwards and downwards arrow">⮮</span>, <span title="U+2BAF
stretchy
black curved rightwards and downwards arrow">⮯</span>, <span title="U+2BB0
ribbon arrow down left">⮰</span>, <span title="U+2BB1
ribbon arrow down right">⮱</span>, <span title="U+2BB2
ribbon arrow up left">⮲</span>, <span title="U+2BB3
ribbon arrow up right">⮳</span>, <span title="U+2BB4
ribbon arrow left up">⮴</span>, <span title="U+2BB5
ribbon arrow right up">⮵</span>, <span title="U+2BB6
ribbon arrow left down">⮶</span>, <span title="U+2BB7
ribbon arrow right down">⮷</span>, <span title="U+2BB8
stretchy
upwards white arrow from bar with horizontal bar">⮸</span>, <span title="U+1F800
stretchy
leftwards arrow with small triangle arrowhead">🠀</span>, <span title="U+1F801
stretchy
upwards arrow with small triangle arrowhead">🠁</span>, <span title="U+1F802
stretchy
rightwards arrow with small triangle arrowhead">🠂</span>, <span title="U+1F803
stretchy
downwards arrow with small triangle arrowhead">🠃</span>, <span title="U+1F804
stretchy
leftwards arrow with medium triangle arrowhead">🠄</span>, <span title="U+1F805
stretchy
upwards arrow with medium triangle arrowhead">🠅</span>, <span title="U+1F806
stretchy
rightwards arrow with medium triangle arrowhead">🠆</span>, <span title="U+1F807
stretchy
downwards arrow with medium triangle arrowhead">🠇</span>, <span title="U+1F808
stretchy
leftwards arrow with large triangle arrowhead">🠈</span>, <span title="U+1F809
stretchy
upwards arrow with large triangle arrowhead">🠉</span>, <span title="U+1F80A
stretchy
rightwards arrow with large triangle arrowhead">🠊</span>, <span title="U+1F80B
stretchy
downwards arrow with large triangle arrowhead">🠋</span>, <span title="U+1F810
stretchy
leftwards arrow with small equilateral arrowhead">🠐</span>, <span title="U+1F811
stretchy
upwards arrow with small equilateral arrowhead">🠑</span>, <span title="U+1F812
stretchy
rightwards arrow with small equilateral arrowhead">🠒</span>, <span title="U+1F813
stretchy
downwards arrow with small equilateral arrowhead">🠓</span>, <span title="U+1F814
stretchy
leftwards arrow with equilateral arrowhead">🠔</span>, <span title="U+1F815
stretchy
upwards arrow with equilateral arrowhead">🠕</span>, <span title="U+1F816
stretchy
rightwards arrow with equilateral arrowhead">🠖</span>, <span title="U+1F817
stretchy
downwards arrow with equilateral arrowhead">🠗</span>, <span title="U+1F818
stretchy
heavy leftwards arrow with equilateral arrowhead">🠘</span>, <span title="U+1F819
stretchy
heavy upwards arrow with equilateral arrowhead">🠙</span>, <span title="U+1F81A
stretchy
heavy rightwards arrow with equilateral arrowhead">🠚</span>, <span title="U+1F81B
stretchy
heavy downwards arrow with equilateral arrowhead">🠛</span>, <span title="U+1F81C
stretchy
heavy leftwards arrow with large equilateral arrowhead">🠜</span>, <span title="U+1F81D
stretchy
heavy upwards arrow with large equilateral arrowhead">🠝</span>, <span title="U+1F81E
stretchy
heavy rightwards arrow with large equilateral arrowhead">🠞</span>, <span title="U+1F81F
stretchy
heavy downwards arrow with large equilateral arrowhead">🠟</span>, <span title="U+1F820
stretchy
leftwards triangle-headed arrow with narrow shaft">🠠</span>, <span title="U+1F821
stretchy
upwards triangle-headed arrow with narrow shaft">🠡</span>, <span title="U+1F822
stretchy
rightwards triangle-headed arrow with narrow shaft">🠢</span>, <span title="U+1F823
stretchy
downwards triangle-headed arrow with narrow shaft">🠣</span>, <span title="U+1F824
stretchy
leftwards triangle-headed arrow with medium shaft">🠤</span>, <span title="U+1F825
stretchy
upwards triangle-headed arrow with medium shaft">🠥</span>, <span title="U+1F826
stretchy
rightwards triangle-headed arrow with medium shaft">🠦</span>, <span title="U+1F827
stretchy
downwards triangle-headed arrow with medium shaft">🠧</span>, <span title="U+1F828
stretchy
leftwards triangle-headed arrow with bold shaft">🠨</span>, <span title="U+1F829
stretchy
upwards triangle-headed arrow with bold shaft">🠩</span>, <span title="U+1F82A
stretchy
rightwards triangle-headed arrow with bold shaft">🠪</span>, <span title="U+1F82B
stretchy
downwards triangle-headed arrow with bold shaft">🠫</span>, <span title="U+1F82C
stretchy
leftwards triangle-headed arrow with heavy shaft">🠬</span>, <span title="U+1F82D
stretchy
upwards triangle-headed arrow with heavy shaft">🠭</span>, <span title="U+1F82E
stretchy
rightwards triangle-headed arrow with heavy shaft">🠮</span>, <span title="U+1F82F
stretchy
downwards triangle-headed arrow with heavy shaft">🠯</span>, <span title="U+1F830
stretchy
leftwards triangle-headed arrow with very heavy shaft">🠰</span>, <span title="U+1F831
stretchy
upwards triangle-headed arrow with very heavy shaft">🠱</span>, <span title="U+1F832
stretchy
rightwards triangle-headed arrow with very heavy shaft">🠲</span>, <span title="U+1F833
stretchy
downwards triangle-headed arrow with very heavy shaft">🠳</span>, <span title="U+1F834
stretchy
leftwards finger-post arrow">🠴</span>, <span title="U+1F835
stretchy
upwards finger-post arrow">🠵</span>, <span title="U+1F836
stretchy
rightwards finger-post arrow">🠶</span>, <span title="U+1F837
stretchy
downwards finger-post arrow">🠷</span>, <span title="U+1F838
leftwards squared arrow">🠸</span>, <span title="U+1F839
upwards squared arrow">🠹</span>, <span title="U+1F83A
rightwards squared arrow">🠺</span>, <span title="U+1F83B
downwards squared arrow">🠻</span>, <span title="U+1F83C
leftwards compressed arrow">🠼</span>, <span title="U+1F83D
upwards compressed arrow">🠽</span>, <span title="U+1F83E
rightwards compressed arrow">🠾</span>, <span title="U+1F83F
downwards compressed arrow">🠿</span>, <span title="U+1F840
leftwards heavy compressed arrow">🡀</span>, <span title="U+1F841
upwards heavy compressed arrow">🡁</span>, <span title="U+1F842
rightwards heavy compressed arrow">🡂</span>, <span title="U+1F843
downwards heavy compressed arrow">🡃</span>, <span title="U+1F844
stretchy
leftwards heavy arrow">🡄</span>, <span title="U+1F845
stretchy
upwards heavy arrow">🡅</span>, <span title="U+1F846
stretchy
rightwards heavy arrow">🡆</span>, <span title="U+1F847
stretchy
downwards heavy arrow">🡇</span>, <span title="U+1F850
stretchy
leftwards sans-serif arrow">🡐</span>, <span title="U+1F851
stretchy
upwards sans-serif arrow">🡑</span>, <span title="U+1F852
stretchy
rightwards sans-serif arrow">🡒</span>, <span title="U+1F853
stretchy
downwards sans-serif arrow">🡓</span>, <span title="U+1F854
north west sans-serif arrow">🡔</span>, <span title="U+1F855
north east sans-serif arrow">🡕</span>, <span title="U+1F856
south east sans-serif arrow">🡖</span>, <span title="U+1F857
south west sans-serif arrow">🡗</span>, <span title="U+1F858
stretchy
left right sans-serif arrow">🡘</span>, <span title="U+1F859
stretchy
up down sans-serif arrow">🡙</span>, <span title="U+1F860
stretchy
wide-headed leftwards light barb arrow">🡠</span>, <span title="U+1F861
stretchy
wide-headed upwards light barb arrow">🡡</span>, <span title="U+1F862
stretchy
wide-headed rightwards light barb arrow">🡢</span>, <span title="U+1F863
stretchy
wide-headed downwards light barb arrow">🡣</span>, <span title="U+1F864
wide-headed north west light barb arrow">🡤</span>, <span title="U+1F865
wide-headed north east light barb arrow">🡥</span>, <span title="U+1F866
wide-headed south east light barb arrow">🡦</span>, <span title="U+1F867
wide-headed south west light barb arrow">🡧</span>, <span title="U+1F868
stretchy
wide-headed leftwards barb arrow">🡨</span>, <span title="U+1F869
stretchy
wide-headed upwards barb arrow">🡩</span>, <span title="U+1F86A
stretchy
wide-headed rightwards barb arrow">🡪</span>, <span title="U+1F86B
stretchy
wide-headed downwards barb arrow">🡫</span>, <span title="U+1F86C
wide-headed north west barb arrow">🡬</span>, <span title="U+1F86D
wide-headed north east barb arrow">🡭</span>, <span title="U+1F86E
wide-headed south east barb arrow">🡮</span>, <span title="U+1F86F
wide-headed south west barb arrow">🡯</span>, <span title="U+1F870
stretchy
wide-headed leftwards medium barb arrow">🡰</span>, <span title="U+1F871
stretchy
wide-headed upwards medium barb arrow">🡱</span>, <span title="U+1F872
stretchy
wide-headed rightwards medium barb arrow">🡲</span>, <span title="U+1F873
stretchy
wide-headed downwards medium barb arrow">🡳</span>, <span title="U+1F874
wide-headed north west medium barb arrow">🡴</span>, <span title="U+1F875
wide-headed north east medium barb arrow">🡵</span>, <span title="U+1F876
wide-headed south east medium barb arrow">🡶</span>, <span title="U+1F877
wide-headed south west medium barb arrow">🡷</span>, <span title="U+1F878
stretchy
wide-headed leftwards heavy barb arrow">🡸</span>, <span title="U+1F879
stretchy
wide-headed upwards heavy barb arrow">🡹</span>, <span title="U+1F87A
stretchy
wide-headed rightwards heavy barb arrow">🡺</span>, <span title="U+1F87B
stretchy
wide-headed downwards heavy barb arrow">🡻</span>, <span title="U+1F87C
wide-headed north west heavy barb arrow">🡼</span>, <span title="U+1F87D
wide-headed north east heavy barb arrow">🡽</span>, <span title="U+1F87E
wide-headed south east heavy barb arrow">🡾</span>, <span title="U+1F87F
wide-headed south west heavy barb arrow">🡿</span>, <span title="U+1F880
stretchy
wide-headed leftwards very heavy barb arrow">🢀</span>, <span title="U+1F881
stretchy
wide-headed upwards very heavy barb arrow">🢁</span>, <span title="U+1F882
stretchy
wide-headed rightwards very heavy barb arrow">🢂</span>, <span title="U+1F883
stretchy
wide-headed downwards very heavy barb arrow">🢃</span>, <span title="U+1F884
wide-headed north west very heavy barb arrow">🢄</span>, <span title="U+1F885
wide-headed north east very heavy barb arrow">🢅</span>, <span title="U+1F886
wide-headed south east very heavy barb arrow">🢆</span>, <span title="U+1F887
wide-headed south west very heavy barb arrow">🢇</span>, <span title="U+1F898
stretchy
leftwards arrow with notched tail">🢘</span>, <span title="U+1F899
stretchy
upwards arrow with notched tail">🢙</span>, <span title="U+1F89A
stretchy
rightwards arrow with notched tail">🢚</span>, <span title="U+1F89B
stretchy
downwards arrow with notched tail">🢛</span>, <span title="U+1F8A0
stretchy
leftwards bottom-shaded white arrow">🢠</span>, <span title="U+1F8A1
stretchy
rightwards bottom shaded white arrow">🢡</span>, <span title="U+1F8A2
stretchy
leftwards top shaded white arrow">🢢</span>, <span title="U+1F8A3
stretchy
rightwards top shaded white arrow">🢣</span>, <span title="U+1F8A4
stretchy
leftwards left-shaded white arrow">🢤</span>, <span title="U+1F8A5
stretchy
rightwards right-shaded white arrow">🢥</span>, <span title="U+1F8A6
stretchy
leftwards right-shaded white arrow">🢦</span>, <span title="U+1F8A7
stretchy
rightwards left-shaded white arrow">🢧</span>, <span title="U+1F8A8
stretchy
leftwards back-tilted shadowed white arrow">🢨</span>, <span title="U+1F8A9
stretchy
rightwards back-tilted shadowed white arrow">🢩</span>, <span title="U+1F8AA
stretchy
leftwards front-tilted shadowed white arrow">🢪</span>, <span title="U+1F8AB
stretchy
rightwards front-tilted shadowed white arrow">🢫</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:postfix lspace:0 rspace:0</dt>
<dd>
<dl>
<dt>Priority: 10</dt>
<dd><span title="U+2019
fence
right single quotation mark">’</span>, <span title="U+201D
fence
right double quotation mark">”</span></dd>
<dt>Priority: 20</dt>
<dd><span title="U+0029
fence
stretchy
symmetric
right parenthesis">)</span>, <span title="U+005D
fence
stretchy
symmetric
right square bracket">]</span>, <span title="U+007C
fence
stretchy
symmetric
vertical line">|</span>, <span title="U+007C U+007C
fence
multiple character operator: ||">||</span>, <span title="U+007D
fence
stretchy
symmetric
right curly bracket">}</span>, <span title="U+2016
fence
stretchy
symmetric
double vertical line">‖</span>, <span title="U+2309
fence
stretchy
symmetric
right ceiling">⌉</span>, <span title="U+230B
fence
stretchy
symmetric
right floor">⌋</span>, <span title="U+232A
fence
stretchy
symmetric
right-pointing angle bracket">〉</span>, <span title="U+2773
fence
stretchy
symmetric
light right tortoise shell bracket ornament">❳</span>, <span title="U+27E7
fence
stretchy
symmetric
mathematical right white square bracket">⟧</span>, <span title="U+27E9
fence
stretchy
symmetric
mathematical right angle bracket">⟩</span>, <span title="U+27EB
fence
stretchy
symmetric
mathematical right double angle bracket">⟫</span>, <span title="U+27ED
fence
stretchy
symmetric
mathematical right white tortoise shell bracket">⟭</span>, <span title="U+27EF
fence
stretchy
symmetric
mathematical right flattened parenthesis">⟯</span>, <span title="U+2980
fence
stretchy
symmetric
triple vertical bar delimiter">⦀</span>, <span title="U+2984
fence
stretchy
symmetric
right white curly bracket">⦄</span>, <span title="U+2986
fence
stretchy
symmetric
right white parenthesis">⦆</span>, <span title="U+2988
fence
stretchy
symmetric
z notation right image bracket">⦈</span>, <span title="U+298A
fence
stretchy
symmetric
z notation right binding bracket">⦊</span>, <span title="U+298C
fence
stretchy
symmetric
right square bracket with underbar">⦌</span>, <span title="U+298E
fence
stretchy
symmetric
right square bracket with tick in bottom corner">⦎</span>, <span title="U+2990
fence
stretchy
symmetric
right square bracket with tick in top corner">⦐</span>, <span title="U+2992
fence
stretchy
symmetric
right angle bracket with dot">⦒</span>, <span title="U+2994
fence
stretchy
symmetric
right arc greater-than bracket">⦔</span>, <span title="U+2996
fence
stretchy
symmetric
double right arc less-than bracket">⦖</span>, <span title="U+2998
fence
stretchy
symmetric
right black tortoise shell bracket">⦘</span>, <span title="U+2999
fence
stretchy
symmetric
dotted fence">⦙</span>, <span title="U+29D9
fence
stretchy
symmetric
right wiggly fence">⧙</span>, <span title="U+29DB
fence
stretchy
symmetric
right double wiggly fence">⧛</span>, <span title="U+29FD
fence
stretchy
symmetric
right-pointing curved angle bracket">⧽</span></dd>
<dt>Priority: 800</dt>
<dd><span title="U+2032
prime">′</span></dd>
<dt>Priority: 810</dt>
<dd><span title="U+0021
exclamation mark">!</span>, <span title="U+0021 U+0021
multiple character operator: !!">!!</span></dd>
<dt>Priority: 880</dt>
<dd><span title="U+0022
quotation mark">"</span>, <span title="U+0026
ampersand">&</span>, <span title="U+0027
apostrophe">'</span>, <span title="U+002B U+002B
multiple character operator: ++">++</span>, <span title="U+002D U+002D
multiple character operator: --">--</span>, <span title="U+005E
stretchy
circumflex accent">^</span>, <span title="U+005F
stretchy
low line">_</span>, <span title="U+0060
grave accent">`</span>, <span title="U+007E
stretchy
tilde">~</span>, <span title="U+00A8
diaeresis">¨</span>, <span title="U+00AF
stretchy
macron">¯</span>, <span title="U+00B0
degree sign">°</span>, <span title="U+00B2
superscript two">²</span>, <span title="U+00B3
superscript three">³</span>, <span title="U+00B4
acute accent">´</span>, <span title="U+00B8
cedilla">¸</span>, <span title="U+00B9
superscript one">¹</span>, <span title="U+02C6
stretchy
modifier letter circumflex accent">ˆ</span>, <span title="U+02C7
stretchy
caron">ˇ</span>, <span title="U+02C9
stretchy
modifier letter macron">ˉ</span>, <span title="U+02CA
modifier letter acute accent">ˊ</span>, <span title="U+02CB
modifier letter grave accent">ˋ</span>, <span title="U+02CD
stretchy
modifier letter low macron">ˍ</span>, <span title="U+02D8
breve">˘</span>, <span title="U+02D9
dot above">˙</span>, <span title="U+02DA
ring above">˚</span>, <span title="U+02DC
stretchy
small tilde">˜</span>, <span title="U+02DD
double acute accent">˝</span>, <span title="U+02F7
stretchy
modifier letter low tilde">˷</span>, <span title="U+0302
stretchy
combining circumflex accent">̂</span>, <span title="U+0311
combining inverted breve">̑</span>, <span title="U+201A
single low-9 quotation mark">‚</span>, <span title="U+201B
single high-reversed-9 quotation mark">‛</span>, <span title="U+201E
double low-9 quotation mark">„</span>, <span title="U+201F
double high-reversed-9 quotation mark">‟</span>, <span title="U+2033
double prime">″</span>, <span title="U+2034
triple prime">‴</span>, <span title="U+2035
reversed prime">‵</span>, <span title="U+2036
reversed double prime">‶</span>, <span title="U+2037
reversed triple prime">‷</span>, <span title="U+203E
stretchy
overline">‾</span>, <span title="U+2057
quadruple prime">⁗</span>, <span title="U+20DB
combining three dots above">⃛</span>, <span title="U+20DC
combining four dots above">⃜</span>, <span title="U+2322
stretchy
frown">⌢</span>, <span title="U+2323
stretchy
smile">⌣</span>, <span title="U+23B4
stretchy
top square bracket">⎴</span>, <span title="U+23B5
stretchy
bottom square bracket">⎵</span>, <span title="U+23CD
square foot">⏍</span>, <span title="U+23DC
stretchy
top parenthesis">⏜</span>, <span title="U+23DD
stretchy
bottom parenthesis">⏝</span>, <span title="U+23DE
stretchy
top curly bracket">⏞</span>, <span title="U+23DF
stretchy
bottom curly bracket">⏟</span>, <span title="U+23E0
stretchy
top tortoise shell bracket">⏠</span>, <span title="U+23E1
stretchy
bottom tortoise shell bracket">⏡</span>, <span title="U+1EEF0
stretchy
arabic mathematical operator meem with hah with tatweel">⟨<span style="font-size:80%;font-style:italic">arabic mathematical operator meem with hah with tatweel</span>⟩</span>, <span title="U+1EEF1
stretchy
arabic mathematical operator hah with dal">⟨<span style="font-size:80%;font-style:italic">arabic mathematical operator hah with dal</span>⟩</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:prefix lspace:0 rspace:0</dt>
<dd>
<dl>
<dt>Priority: 10</dt>
<dd><span title="U+2018
fence
left single quotation mark">‘</span>, <span title="U+201C
fence
left double quotation mark">“</span></dd>
<dt>Priority: 20</dt>
<dd><span title="U+0028
fence
stretchy
symmetric
left parenthesis">(</span>, <span title="U+005B
fence
stretchy
symmetric
left square bracket">[</span>, <span title="U+007B
fence
stretchy
symmetric
left curly bracket">{</span>, <span title="U+007C
fence
stretchy
symmetric
vertical line">|</span>, <span title="U+007C U+007C
fence
multiple character operator: ||">||</span>, <span title="U+2016
fence
stretchy
symmetric
double vertical line">‖</span>, <span title="U+2308
fence
stretchy
symmetric
left ceiling">⌈</span>, <span title="U+230A
fence
stretchy
symmetric
left floor">⌊</span>, <span title="U+2329
fence
stretchy
symmetric
left-pointing angle bracket">〈</span>, <span title="U+2772
fence
stretchy
symmetric
light left tortoise shell bracket ornament">❲</span>, <span title="U+27E6
fence
stretchy
symmetric
mathematical left white square bracket">⟦</span>, <span title="U+27E8
fence
stretchy
symmetric
mathematical left angle bracket">⟨</span>, <span title="U+27EA
fence
stretchy
symmetric
mathematical left double angle bracket">⟪</span>, <span title="U+27EC
fence
stretchy
symmetric
mathematical left white tortoise shell bracket">⟬</span>, <span title="U+27EE
fence
stretchy
symmetric
mathematical left flattened parenthesis">⟮</span>, <span title="U+2980
fence
stretchy
symmetric
triple vertical bar delimiter">⦀</span>, <span title="U+2983
fence
stretchy
symmetric
left white curly bracket">⦃</span>, <span title="U+2985
fence
stretchy
symmetric
left white parenthesis">⦅</span>, <span title="U+2987
fence
stretchy
symmetric
z notation left image bracket">⦇</span>, <span title="U+2989
fence
stretchy
symmetric
z notation left binding bracket">⦉</span>, <span title="U+298B
fence
stretchy
symmetric
left square bracket with underbar">⦋</span>, <span title="U+298D
fence
stretchy
symmetric
left square bracket with tick in top corner">⦍</span>, <span title="U+298F
fence
stretchy
symmetric
left square bracket with tick in bottom corner">⦏</span>, <span title="U+2991
fence
stretchy
symmetric
left angle bracket with dot">⦑</span>, <span title="U+2993
fence
stretchy
symmetric
left arc less-than bracket">⦓</span>, <span title="U+2995
fence
stretchy
symmetric
double left arc greater-than bracket">⦕</span>, <span title="U+2997
fence
stretchy
symmetric
left black tortoise shell bracket">⦗</span>, <span title="U+2999
fence
stretchy
symmetric
dotted fence">⦙</span>, <span title="U+29D8
fence
stretchy
symmetric
left wiggly fence">⧘</span>, <span title="U+29DA
fence
stretchy
symmetric
left double wiggly fence">⧚</span>, <span title="U+29FC
fence
stretchy
symmetric
left-pointing curved angle bracket">⧼</span></dd>
<dt>Priority: 70</dt>
<dd><span title="U+2234
therefore">∴</span>, <span title="U+2235
because">∵</span></dd>
<dt>Priority: 230</dt>
<dd><span title="U+0021
exclamation mark">!</span>, <span title="U+00AC
not sign">¬</span>, <span title="U+2200
for all">∀</span>, <span title="U+2203
there exists">∃</span>, <span title="U+2204
there does not exist">∄</span>, <span title="U+223C
tilde operator">∼</span>, <span title="U+2310
reversed not sign">⌐</span>, <span title="U+2319
turned not sign">⌙</span>, <span title="U+2AEC
double stroke not sign">⫬</span>, <span title="U+2AED
reversed double stroke not sign">⫭</span></dd>
<dt>Priority: 370</dt>
<dd><span title="U+221F
right angle">∟</span>, <span title="U+2220
angle">∠</span>, <span title="U+2221
measured angle">∡</span>, <span title="U+2222
spherical angle">∢</span>, <span title="U+22BE
right angle with arc">⊾</span>, <span title="U+22BF
right triangle">⊿</span>, <span title="U+27C0
three dimensional angle">⟀</span>, <span title="U+299B
measured angle opening left">⦛</span>, <span title="U+299C
right angle variant with square">⦜</span>, <span title="U+299D
measured right angle with dot">⦝</span>, <span title="U+299E
angle with s inside">⦞</span>, <span title="U+299F
acute angle">⦟</span>, <span title="U+29A0
spherical angle opening left">⦠</span>, <span title="U+29A1
spherical angle opening up">⦡</span>, <span title="U+29A2
turned angle">⦢</span>, <span title="U+29A3
reversed angle">⦣</span>, <span title="U+29A4
angle with underbar">⦤</span>, <span title="U+29A5
reversed angle with underbar">⦥</span>, <span title="U+29A6
oblique angle opening up">⦦</span>, <span title="U+29A7
oblique angle opening down">⦧</span>, <span title="U+29A8
measured angle with open arm ending in arrow pointing up and right">⦨</span>, <span title="U+29A9
measured angle with open arm ending in arrow pointing up and left">⦩</span>, <span title="U+29AA
measured angle with open arm ending in arrow pointing down and right">⦪</span>, <span title="U+29AB
measured angle with open arm ending in arrow pointing down and left">⦫</span>, <span title="U+29AC
measured angle with open arm ending in arrow pointing right and up">⦬</span>, <span title="U+29AD
measured angle with open arm ending in arrow pointing left and up">⦭</span>, <span title="U+29AE
measured angle with open arm ending in arrow pointing right and down">⦮</span>, <span title="U+29AF
measured angle with open arm ending in arrow pointing left and down">⦯</span></dd>
<dt>Priority: 690</dt>
<dd><span title="U+002B
plus sign">+</span>, <span title="U+002D
hyphen-minus">-</span>, <span title="U+00B1
plus-minus sign">±</span>, <span title="U+2201
complement">∁</span>, <span title="U+2212
minus sign">−</span>, <span title="U+2213
minus-or-plus sign">∓</span>, <span title="U+2795
heavy plus sign">➕</span>, <span title="U+2796
heavy minus sign">➖</span></dd>
<dt>Priority: 740</dt>
<dd><span title="U+2207
nabla">∇</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:prefix lspace:3 rspace:0</dt>
<dd>
<dl>
<dt>Priority: 740</dt>
<dd><span title="U+2145
double-struck italic capital d">ⅅ</span>, <span title="U+2146
double-struck italic small d">ⅆ</span>, <span title="U+2202
partial differential">∂</span></dd>
<dt>Priority: 845</dt>
<dd><span title="U+221A
square root">√</span>, <span title="U+221B
cube root">∛</span>, <span title="U+221C
fourth root">∜</span></dd>
</dl>
</dd>
</dl>
<dl>
<dt>form:prefix lspace:3 rspace:3</dt>
<dd>
<dl>
<dt>Priority: 290</dt>
<dd><span title="U+2211
largeop
symmetric
movablelimits
n-ary summation">∑</span>, <span title="U+2A0A
largeop
symmetric
movablelimits
modulo two sum">⨊</span>, <span title="U+2A0B
largeop
symmetric
summation with integral">⨋</span>, <span title="U+2A1D
largeop
symmetric
movablelimits
join">⨝</span>, <span title="U+2A1E
largeop
symmetric
movablelimits
large left triangle operator">⨞</span></dd>
<dt>Priority: 300</dt>
<dd><span title="U+2A01
largeop
symmetric
movablelimits
n-ary circled plus operator">⨁</span></dd>
<dt>Priority: 310</dt>
<dd><span title="U+222B
largeop
symmetric
integral">∫</span>, <span title="U+222C
largeop
symmetric
double integral">∬</span>, <span title="U+222D
largeop
symmetric
triple integral">∭</span>, <span title="U+222E
largeop
symmetric
contour integral">∮</span>, <span title="U+222F
largeop
symmetric
surface integral">∯</span>, <span title="U+2230
largeop
symmetric
volume integral">∰</span>, <span title="U+2231
largeop
symmetric
clockwise integral">∱</span>, <span title="U+2232
largeop
symmetric
clockwise contour integral">∲</span>, <span title="U+2233
largeop
symmetric
anticlockwise contour integral">∳</span>, <span title="U+2A0C
largeop
symmetric
quadruple integral operator">⨌</span>, <span title="U+2A0D
largeop
symmetric
finite part integral">⨍</span>, <span title="U+2A0E
largeop
symmetric
integral with double stroke">⨎</span>, <span title="U+2A0F
largeop
symmetric
integral average with slash">⨏</span>, <span title="U+2A10
largeop
symmetric
circulation function">⨐</span>, <span title="U+2A11
largeop
symmetric
anticlockwise integration">⨑</span>, <span title="U+2A12
largeop
symmetric
line integration with rectangular path around pole">⨒</span>, <span title="U+2A13
largeop
symmetric
line integration with semicircular path around pole">⨓</span>, <span title="U+2A14
largeop
symmetric
line integration not including the pole">⨔</span>, <span title="U+2A15
largeop
symmetric
integral around a point operator">⨕</span>, <span title="U+2A16
largeop
symmetric
quaternion integral operator">⨖</span>, <span title="U+2A17
largeop
symmetric
integral with leftwards arrow with hook">⨗</span>, <span title="U+2A18
largeop
symmetric
integral with times sign">⨘</span>, <span title="U+2A19
largeop
symmetric
integral with intersection">⨙</span>, <span title="U+2A1A
largeop
symmetric
integral with union">⨚</span>, <span title="U+2A1B
largeop
symmetric
integral with overbar">⨛</span>, <span title="U+2A1C
largeop
symmetric
integral with underbar">⨜</span></dd>
<dt>Priority: 320</dt>
<dd><span title="U+22C3
largeop
symmetric
movablelimits
n-ary union">⋃</span>, <span title="U+2A03
largeop
symmetric
movablelimits
n-ary union operator with dot">⨃</span>, <span title="U+2A04
largeop
symmetric
movablelimits
n-ary union operator with plus">⨄</span></dd>
<dt>Priority: 330</dt>
<dd><span title="U+22C0
largeop
symmetric
movablelimits
n-ary logical and">⋀</span>, <span title="U+22C1
largeop
symmetric
movablelimits
n-ary logical or">⋁</span>, <span title="U+22C2
largeop
symmetric
movablelimits
n-ary intersection">⋂</span>, <span title="U+2A00
largeop
symmetric
movablelimits
n-ary circled dot operator">⨀</span>, <span title="U+2A02
largeop
symmetric
movablelimits
n-ary circled times operator">⨂</span>, <span title="U+2A05
largeop
symmetric
movablelimits
n-ary square intersection operator">⨅</span>, <span title="U+2A06
largeop
symmetric
movablelimits
n-ary square union operator">⨆</span>, <span title="U+2A07
largeop
symmetric
movablelimits
two logical and operator">⨇</span>, <span title="U+2A08
largeop
symmetric
movablelimits
two logical or operator">⨈</span>, <span title="U+2A09
largeop
symmetric
movablelimits
n-ary times operator">⨉</span>, <span title="U+2AFC
largeop
symmetric
movablelimits
large triple vertical bar operator">⫼</span>, <span title="U+2AFF
largeop
symmetric
movablelimits
n-ary white vertical bar">⫿</span></dd>
<dt>Priority: 350</dt>
<dd><span title="U+220F
largeop
symmetric
movablelimits
n-ary product">∏</span>, <span title="U+2210
largeop
symmetric
movablelimits
n-ary coproduct">∐</span></dd>
</dl>
</dd>
</dl>
<h2 id="stable">Sortable Table View</h2>
<table class="sortable">
<thead>
<tr>
<th>Character</th>
<th>Glyph</th>
<th>Name</th>
<th>form</th>
<th>priority</th>
<th>lspace</th>
<th>rspace</th>
<th>Properties</th>
</tr>
</thead>
<tbody>
<tr>
<th abbr="8216">&#x2018;</th>
<th>‘</th>
<th class="uname">left single quotation mark</th>
<th>prefix</th>
<td>10</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="8217">&#x2019;</th>
<th>’</th>
<th class="uname">right single quotation mark</th>
<th>postfix</th>
<td>10</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="8220">&#x201C;</th>
<th>“</th>
<th class="uname">left double quotation mark</th>
<th>prefix</th>
<td>10</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="8221">&#x201D;</th>
<th>”</th>
<th class="uname">right double quotation mark</th>
<th>postfix</th>
<td>10</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="40">(</th>
<th>(</th>
<th class="uname">left parenthesis</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="41">)</th>
<th>)</th>
<th class="uname">right parenthesis</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="91">[</th>
<th>[</th>
<th class="uname">left square bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="93">]</th>
<th>]</th>
<th class="uname">right square bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="123">{</th>
<th>{</th>
<th class="uname">left curly bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="124">|</th>
<th>|</th>
<th class="uname">vertical line</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="124">|</th>
<th>|</th>
<th class="uname">vertical line</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="124">||</th>
<th>||</th>
<th class="uname">multiple character operator: ||</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="124">||</th>
<th>||</th>
<th class="uname">multiple character operator: ||</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence</td>
</tr>
<tr>
<th abbr="125">}</th>
<th>}</th>
<th class="uname">right curly bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8214">&#x2016;</th>
<th>‖</th>
<th class="uname">double vertical line</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8214">&#x2016;</th>
<th>‖</th>
<th class="uname">double vertical line</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8968">&#x2308;</th>
<th>⌈</th>
<th class="uname">left ceiling</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8969">&#x2309;</th>
<th>⌉</th>
<th class="uname">right ceiling</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8970">&#x230A;</th>
<th>⌊</th>
<th class="uname">left floor</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="8971">&#x230B;</th>
<th>⌋</th>
<th class="uname">right floor</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="9001">&#x2329;</th>
<th>〈</th>
<th class="uname">left-pointing angle bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="9002">&#x232A;</th>
<th>〉</th>
<th class="uname">right-pointing angle bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10098">&#x2772;</th>
<th>❲</th>
<th class="uname">light left tortoise shell bracket ornament</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10099">&#x2773;</th>
<th>❳</th>
<th class="uname">light right tortoise shell bracket ornament</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10214">&#x27E6;</th>
<th>⟦</th>
<th class="uname">mathematical left white square bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10215">&#x27E7;</th>
<th>⟧</th>
<th class="uname">mathematical right white square bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10216">&#x27E8;</th>
<th>⟨</th>
<th class="uname">mathematical left angle bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10217">&#x27E9;</th>
<th>⟩</th>
<th class="uname">mathematical right angle bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10218">&#x27EA;</th>
<th>⟪</th>
<th class="uname">mathematical left double angle bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10219">&#x27EB;</th>
<th>⟫</th>
<th class="uname">mathematical right double angle bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10220">&#x27EC;</th>
<th>⟬</th>
<th class="uname">mathematical left white tortoise shell bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10221">&#x27ED;</th>
<th>⟭</th>
<th class="uname">mathematical right white tortoise shell bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10222">&#x27EE;</th>
<th>⟮</th>
<th class="uname">mathematical left flattened parenthesis</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10223">&#x27EF;</th>
<th>⟯</th>
<th class="uname">mathematical right flattened parenthesis</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10624">&#x2980;</th>
<th>⦀</th>
<th class="uname">triple vertical bar delimiter</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10624">&#x2980;</th>
<th>⦀</th>
<th class="uname">triple vertical bar delimiter</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10627">&#x2983;</th>
<th>⦃</th>
<th class="uname">left white curly bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10628">&#x2984;</th>
<th>⦄</th>
<th class="uname">right white curly bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10629">&#x2985;</th>
<th>⦅</th>
<th class="uname">left white parenthesis</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10630">&#x2986;</th>
<th>⦆</th>
<th class="uname">right white parenthesis</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10631">&#x2987;</th>
<th>⦇</th>
<th class="uname">z notation left image bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10632">&#x2988;</th>
<th>⦈</th>
<th class="uname">z notation right image bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10633">&#x2989;</th>
<th>⦉</th>
<th class="uname">z notation left binding bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10634">&#x298A;</th>
<th>⦊</th>
<th class="uname">z notation right binding bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10635">&#x298B;</th>
<th>⦋</th>
<th class="uname">left square bracket with underbar</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10636">&#x298C;</th>
<th>⦌</th>
<th class="uname">right square bracket with underbar</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10637">&#x298D;</th>
<th>⦍</th>
<th class="uname">left square bracket with tick in top corner</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10638">&#x298E;</th>
<th>⦎</th>
<th class="uname">right square bracket with tick in bottom corner</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10639">&#x298F;</th>
<th>⦏</th>
<th class="uname">left square bracket with tick in bottom corner</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10640">&#x2990;</th>
<th>⦐</th>
<th class="uname">right square bracket with tick in top corner</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10641">&#x2991;</th>
<th>⦑</th>
<th class="uname">left angle bracket with dot</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10642">&#x2992;</th>
<th>⦒</th>
<th class="uname">right angle bracket with dot</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10643">&#x2993;</th>
<th>⦓</th>
<th class="uname">left arc less-than bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10644">&#x2994;</th>
<th>⦔</th>
<th class="uname">right arc greater-than bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10645">&#x2995;</th>
<th>⦕</th>
<th class="uname">double left arc greater-than bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10646">&#x2996;</th>
<th>⦖</th>
<th class="uname">double right arc less-than bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10647">&#x2997;</th>
<th>⦗</th>
<th class="uname">left black tortoise shell bracket</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10648">&#x2998;</th>
<th>⦘</th>
<th class="uname">right black tortoise shell bracket</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10649">&#x2999;</th>
<th>⦙</th>
<th class="uname">dotted fence</th>
<th>prefix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10649">&#x2999;</th>
<th>⦙</th>
<th class="uname">dotted fence</th>
<th>postfix</th>
<td>20</td>
<td>0</td>
<td>0</td>
<td>fence, stretchy, symmetric</td>
</tr>
<tr>
<th abbr="10712">&#x29D8;</th>
<th>⧘</th>
<th class="uname">left wiggly fence</th>