@scalar/api-client 0.12.11 → 0.12.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/components/ApiClient/AddressBar.vue.d.ts +1 -1
- package/dist/components/ApiClient/AddressBar.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/ApiClient.vue.d.ts +1 -1
- package/dist/components/ApiClient/ApiClient.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Request/Request.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestAuth.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestBody.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestBody.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Request/RequestCookies.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestCookies.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Request/RequestHeaders.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestHeaders.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Request/RequestQuery.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestQuery.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Request/RequestVariables.vue.d.ts +1 -1
- package/dist/components/ApiClient/Request/RequestVariables.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/RequestHistory.vue.d.ts +1 -1
- package/dist/components/ApiClient/RequestHistoryItem.vue.d.ts +1 -1
- package/dist/components/ApiClient/RequestHistoryItem.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/RequestMethodSelect.vue.d.ts +1 -1
- package/dist/components/ApiClient/RequestMethodSelect.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Response/Response.vue.d.ts +1 -1
- package/dist/components/ApiClient/Response/ResponseBody.vue.d.ts +1 -1
- package/dist/components/ApiClient/Response/ResponseBody.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Response/ResponseHeaders.vue.d.ts +1 -1
- package/dist/components/ApiClient/Response/ResponseHeaders.vue.d.ts.map +1 -1
- package/dist/components/ApiClient/Response/ResponseMetaInformation.vue.d.ts +1 -1
- package/dist/components/ApiClient/Response/ResponseMetaInformation.vue.d.ts.map +1 -1
- package/dist/components/CollapsibleSection/CollapsibleSection.vue.d.ts +1 -1
- package/dist/components/CollapsibleSection/CollapsibleSection.vue.d.ts.map +1 -1
- package/dist/components/Grid/Grid.vue.d.ts +1 -1
- package/dist/components/Grid/Grid.vue.d.ts.map +1 -1
- package/dist/components/Grid/SimpleGrid.vue.d.ts +1 -1
- package/dist/components/Grid/SimpleGrid.vue.d.ts.map +1 -1
- package/dist/components/HelpfulLink.vue.d.ts +1 -1
- package/dist/components/HelpfulLink.vue.d.ts.map +1 -1
- package/dist/components/HttpMethod.vue.d.ts +1 -1
- package/dist/components/HttpMethod.vue.d.ts.map +1 -1
- package/dist/components/SimpleTable/SimpleCell.vue.d.ts +1 -1
- package/dist/components/SimpleTable/SimpleCell.vue.d.ts.map +1 -1
- package/dist/components/SimpleTable/SimpleHeader.vue.d.ts +1 -1
- package/dist/components/SimpleTable/SimpleHeader.vue.d.ts.map +1 -1
- package/dist/components/SimpleTable/SimpleRow.vue.d.ts +1 -1
- package/dist/components/SimpleTable/SimpleRow.vue.d.ts.map +1 -1
- package/dist/components/SimpleTable/SimpleTable.vue.d.ts +1 -1
- package/dist/components/SimpleTable/SimpleTable.vue.d.ts.map +1 -1
- package/dist/{index-C5vzTwLa.js → index-CpJxdgyL.js} +2224 -252
- package/dist/index.js +8749 -4067
- package/package.json +5 -5
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
var dom$1 = {};
|
|
2
2
|
var conventions$2 = {};
|
|
3
|
+
function find$1(list, predicate, ac) {
|
|
4
|
+
if (ac === void 0) {
|
|
5
|
+
ac = Array.prototype;
|
|
6
|
+
}
|
|
7
|
+
if (list && typeof ac.find === "function") {
|
|
8
|
+
return ac.find.call(list, predicate);
|
|
9
|
+
}
|
|
10
|
+
for (var i = 0; i < list.length; i++) {
|
|
11
|
+
if (Object.prototype.hasOwnProperty.call(list, i)) {
|
|
12
|
+
var item = list[i];
|
|
13
|
+
if (predicate.call(void 0, item, i, list)) {
|
|
14
|
+
return item;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
3
19
|
function freeze(object, oc) {
|
|
4
20
|
if (oc === void 0) {
|
|
5
21
|
oc = Object;
|
|
@@ -112,10 +128,12 @@ var NAMESPACE$3 = freeze({
|
|
|
112
128
|
XMLNS: "http://www.w3.org/2000/xmlns/"
|
|
113
129
|
});
|
|
114
130
|
conventions$2.assign = assign;
|
|
131
|
+
conventions$2.find = find$1;
|
|
115
132
|
conventions$2.freeze = freeze;
|
|
116
133
|
conventions$2.MIME_TYPE = MIME_TYPE;
|
|
117
134
|
conventions$2.NAMESPACE = NAMESPACE$3;
|
|
118
135
|
var conventions$1 = conventions$2;
|
|
136
|
+
var find = conventions$1.find;
|
|
119
137
|
var NAMESPACE$2 = conventions$1.NAMESPACE;
|
|
120
138
|
function notEmptyString(input) {
|
|
121
139
|
return input !== "";
|
|
@@ -228,7 +246,7 @@ NodeList.prototype = {
|
|
|
228
246
|
* The node at the indexth position in the NodeList, or null if that is not a valid index.
|
|
229
247
|
*/
|
|
230
248
|
item: function(index2) {
|
|
231
|
-
return this[index2]
|
|
249
|
+
return index2 >= 0 && index2 < this.length ? this[index2] : null;
|
|
232
250
|
},
|
|
233
251
|
toString: function(isHTML, nodeFilter) {
|
|
234
252
|
for (var buf = [], i = 0; i < this.length; i++) {
|
|
@@ -236,14 +254,6 @@ NodeList.prototype = {
|
|
|
236
254
|
}
|
|
237
255
|
return buf.join("");
|
|
238
256
|
},
|
|
239
|
-
/**
|
|
240
|
-
* @private
|
|
241
|
-
* @param {function (Node):boolean} predicate
|
|
242
|
-
* @returns {Node | undefined}
|
|
243
|
-
*/
|
|
244
|
-
find: function(predicate) {
|
|
245
|
-
return Array.prototype.find.call(this, predicate);
|
|
246
|
-
},
|
|
247
257
|
/**
|
|
248
258
|
* @private
|
|
249
259
|
* @param {function (Node):boolean} predicate
|
|
@@ -268,16 +278,23 @@ function LiveNodeList(node, refresh) {
|
|
|
268
278
|
}
|
|
269
279
|
function _updateLiveList(list) {
|
|
270
280
|
var inc = list._node._inc || list._node.ownerDocument._inc;
|
|
271
|
-
if (list._inc
|
|
281
|
+
if (list._inc !== inc) {
|
|
272
282
|
var ls = list._refresh(list._node);
|
|
273
283
|
__set__(list, "length", ls.length);
|
|
284
|
+
if (!list.$$length || ls.length < list.$$length) {
|
|
285
|
+
for (var i = ls.length; i in list; i++) {
|
|
286
|
+
if (Object.prototype.hasOwnProperty.call(list, i)) {
|
|
287
|
+
delete list[i];
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
274
291
|
copy(ls, list);
|
|
275
292
|
list._inc = inc;
|
|
276
293
|
}
|
|
277
294
|
}
|
|
278
295
|
LiveNodeList.prototype.item = function(i) {
|
|
279
296
|
_updateLiveList(this);
|
|
280
|
-
return this[i];
|
|
297
|
+
return this[i] || null;
|
|
281
298
|
};
|
|
282
299
|
_extends(LiveNodeList, NodeList);
|
|
283
300
|
function NamedNodeMap() {
|
|
@@ -486,7 +503,7 @@ Node.prototype = {
|
|
|
486
503
|
return _insertBefore(this, newChild, refChild);
|
|
487
504
|
},
|
|
488
505
|
replaceChild: function(newChild, oldChild) {
|
|
489
|
-
this
|
|
506
|
+
_insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
|
|
490
507
|
if (oldChild) {
|
|
491
508
|
this.removeChild(oldChild);
|
|
492
509
|
}
|
|
@@ -592,6 +609,7 @@ function _visitNode(node, callback) {
|
|
|
592
609
|
}
|
|
593
610
|
}
|
|
594
611
|
function Document() {
|
|
612
|
+
this.ownerDocument = this;
|
|
595
613
|
}
|
|
596
614
|
function _onAddAttribute(doc, el, newAttr) {
|
|
597
615
|
doc && doc._inc++;
|
|
@@ -661,57 +679,109 @@ function isTextNode(node) {
|
|
|
661
679
|
}
|
|
662
680
|
function isElementInsertionPossible(doc, child) {
|
|
663
681
|
var parentChildNodes = doc.childNodes || [];
|
|
664
|
-
if (
|
|
682
|
+
if (find(parentChildNodes, isElementNode) || isDocTypeNode(child)) {
|
|
683
|
+
return false;
|
|
684
|
+
}
|
|
685
|
+
var docTypeNode = find(parentChildNodes, isDocTypeNode);
|
|
686
|
+
return !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));
|
|
687
|
+
}
|
|
688
|
+
function isElementReplacementPossible(doc, child) {
|
|
689
|
+
var parentChildNodes = doc.childNodes || [];
|
|
690
|
+
function hasElementChildThatIsNotChild(node) {
|
|
691
|
+
return isElementNode(node) && node !== child;
|
|
692
|
+
}
|
|
693
|
+
if (find(parentChildNodes, hasElementChildThatIsNotChild)) {
|
|
665
694
|
return false;
|
|
666
695
|
}
|
|
667
|
-
var docTypeNode =
|
|
696
|
+
var docTypeNode = find(parentChildNodes, isDocTypeNode);
|
|
668
697
|
return !(child && docTypeNode && parentChildNodes.indexOf(docTypeNode) > parentChildNodes.indexOf(child));
|
|
669
698
|
}
|
|
670
|
-
function
|
|
699
|
+
function assertPreInsertionValidity1to5(parent, node, child) {
|
|
671
700
|
if (!hasValidParentNodeType(parent)) {
|
|
672
701
|
throw new DOMException(HIERARCHY_REQUEST_ERR, "Unexpected parent node type " + parent.nodeType);
|
|
673
702
|
}
|
|
674
703
|
if (child && child.parentNode !== parent) {
|
|
675
704
|
throw new DOMException(NOT_FOUND_ERR, "child not in parent");
|
|
676
705
|
}
|
|
677
|
-
if (
|
|
678
|
-
|
|
679
|
-
|
|
706
|
+
if (
|
|
707
|
+
// 4. If `node` is not a DocumentFragment, DocumentType, Element, or CharacterData node, then throw a "HierarchyRequestError" DOMException.
|
|
708
|
+
!hasInsertableNodeType(node) || // 5. If either `node` is a Text node and `parent` is a document,
|
|
709
|
+
// the sax parser currently adds top level text nodes, this will be fixed in 0.9.0
|
|
710
|
+
// || (node.nodeType === Node.TEXT_NODE && parent.nodeType === Node.DOCUMENT_NODE)
|
|
711
|
+
// or `node` is a doctype and `parent` is not a document, then throw a "HierarchyRequestError" DOMException.
|
|
712
|
+
isDocTypeNode(node) && parent.nodeType !== Node.DOCUMENT_NODE
|
|
713
|
+
) {
|
|
680
714
|
throw new DOMException(
|
|
681
715
|
HIERARCHY_REQUEST_ERR,
|
|
682
716
|
"Unexpected node type " + node.nodeType + " for parent node type " + parent.nodeType
|
|
683
717
|
);
|
|
684
718
|
}
|
|
719
|
+
}
|
|
720
|
+
function assertPreInsertionValidityInDocument(parent, node, child) {
|
|
685
721
|
var parentChildNodes = parent.childNodes || [];
|
|
686
722
|
var nodeChildNodes = node.childNodes || [];
|
|
687
|
-
if (
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
throw new DOMException(HIERARCHY_REQUEST_ERR, "More than one element or text in fragment");
|
|
692
|
-
}
|
|
693
|
-
if (nodeChildElements.length === 1 && !isElementInsertionPossible(parent, child)) {
|
|
694
|
-
throw new DOMException(HIERARCHY_REQUEST_ERR, "Element in fragment can not be inserted before doctype");
|
|
695
|
-
}
|
|
723
|
+
if (node.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
|
|
724
|
+
var nodeChildElements = nodeChildNodes.filter(isElementNode);
|
|
725
|
+
if (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {
|
|
726
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "More than one element or text in fragment");
|
|
696
727
|
}
|
|
697
|
-
if (
|
|
698
|
-
|
|
699
|
-
throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one element can be added and only after doctype");
|
|
700
|
-
}
|
|
728
|
+
if (nodeChildElements.length === 1 && !isElementInsertionPossible(parent, child)) {
|
|
729
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Element in fragment can not be inserted before doctype");
|
|
701
730
|
}
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
let parentElementChild = parentChildNodes.find(isElementNode);
|
|
707
|
-
if (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {
|
|
708
|
-
throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can only be inserted before an element");
|
|
709
|
-
}
|
|
710
|
-
if (!child && parentElementChild) {
|
|
711
|
-
throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can not be appended since element is present");
|
|
712
|
-
}
|
|
731
|
+
}
|
|
732
|
+
if (isElementNode(node)) {
|
|
733
|
+
if (!isElementInsertionPossible(parent, child)) {
|
|
734
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one element can be added and only after doctype");
|
|
713
735
|
}
|
|
714
736
|
}
|
|
737
|
+
if (isDocTypeNode(node)) {
|
|
738
|
+
if (find(parentChildNodes, isDocTypeNode)) {
|
|
739
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one doctype is allowed");
|
|
740
|
+
}
|
|
741
|
+
var parentElementChild = find(parentChildNodes, isElementNode);
|
|
742
|
+
if (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {
|
|
743
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can only be inserted before an element");
|
|
744
|
+
}
|
|
745
|
+
if (!child && parentElementChild) {
|
|
746
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can not be appended since element is present");
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
function assertPreReplacementValidityInDocument(parent, node, child) {
|
|
751
|
+
var parentChildNodes = parent.childNodes || [];
|
|
752
|
+
var nodeChildNodes = node.childNodes || [];
|
|
753
|
+
if (node.nodeType === Node.DOCUMENT_FRAGMENT_NODE) {
|
|
754
|
+
var nodeChildElements = nodeChildNodes.filter(isElementNode);
|
|
755
|
+
if (nodeChildElements.length > 1 || find(nodeChildNodes, isTextNode)) {
|
|
756
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "More than one element or text in fragment");
|
|
757
|
+
}
|
|
758
|
+
if (nodeChildElements.length === 1 && !isElementReplacementPossible(parent, child)) {
|
|
759
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Element in fragment can not be inserted before doctype");
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
if (isElementNode(node)) {
|
|
763
|
+
if (!isElementReplacementPossible(parent, child)) {
|
|
764
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one element can be added and only after doctype");
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
if (isDocTypeNode(node)) {
|
|
768
|
+
let hasDoctypeChildThatIsNotChild = function(node2) {
|
|
769
|
+
return isDocTypeNode(node2) && node2 !== child;
|
|
770
|
+
};
|
|
771
|
+
if (find(parentChildNodes, hasDoctypeChildThatIsNotChild)) {
|
|
772
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Only one doctype is allowed");
|
|
773
|
+
}
|
|
774
|
+
var parentElementChild = find(parentChildNodes, isElementNode);
|
|
775
|
+
if (child && parentChildNodes.indexOf(parentElementChild) < parentChildNodes.indexOf(child)) {
|
|
776
|
+
throw new DOMException(HIERARCHY_REQUEST_ERR, "Doctype can only be inserted before an element");
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
function _insertBefore(parent, node, child, _inDocumentAssertion) {
|
|
781
|
+
assertPreInsertionValidity1to5(parent, node, child);
|
|
782
|
+
if (parent.nodeType === Node.DOCUMENT_NODE) {
|
|
783
|
+
(_inDocumentAssertion || assertPreInsertionValidityInDocument)(parent, node, child);
|
|
784
|
+
}
|
|
715
785
|
var cp = node.parentNode;
|
|
716
786
|
if (cp) {
|
|
717
787
|
cp.removeChild(node);
|
|
@@ -799,6 +869,16 @@ Document.prototype = {
|
|
|
799
869
|
}
|
|
800
870
|
return _removeChild(this, oldChild);
|
|
801
871
|
},
|
|
872
|
+
replaceChild: function(newChild, oldChild) {
|
|
873
|
+
_insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
|
|
874
|
+
newChild.ownerDocument = this;
|
|
875
|
+
if (oldChild) {
|
|
876
|
+
this.removeChild(oldChild);
|
|
877
|
+
}
|
|
878
|
+
if (isElementNode(newChild)) {
|
|
879
|
+
this.documentElement = newChild;
|
|
880
|
+
}
|
|
881
|
+
},
|
|
802
882
|
// Introduced in DOM Level 2:
|
|
803
883
|
importNode: function(importedNode, deep) {
|
|
804
884
|
return importNode(this, importedNode, deep);
|
|
@@ -896,7 +976,7 @@ Document.prototype = {
|
|
|
896
976
|
createProcessingInstruction: function(target, data) {
|
|
897
977
|
var node = new ProcessingInstruction();
|
|
898
978
|
node.ownerDocument = this;
|
|
899
|
-
node.tagName = node.target = target;
|
|
979
|
+
node.tagName = node.nodeName = node.target = target;
|
|
900
980
|
node.nodeValue = node.data = data;
|
|
901
981
|
return node;
|
|
902
982
|
},
|
|
@@ -1452,249 +1532,2139 @@ var domParser = {};
|
|
|
1452
1532
|
var entities$1 = {};
|
|
1453
1533
|
(function(exports) {
|
|
1454
1534
|
var freeze2 = conventions$2.freeze;
|
|
1455
|
-
exports.XML_ENTITIES = freeze2({
|
|
1456
|
-
exports.HTML_ENTITIES = freeze2({
|
|
1457
|
-
lt: "<",
|
|
1458
|
-
gt: ">",
|
|
1535
|
+
exports.XML_ENTITIES = freeze2({
|
|
1459
1536
|
amp: "&",
|
|
1460
|
-
quot: '"',
|
|
1461
1537
|
apos: "'",
|
|
1462
|
-
|
|
1538
|
+
gt: ">",
|
|
1539
|
+
lt: "<",
|
|
1540
|
+
quot: '"'
|
|
1541
|
+
});
|
|
1542
|
+
exports.HTML_ENTITIES = freeze2({
|
|
1463
1543
|
Aacute: "Á",
|
|
1544
|
+
aacute: "á",
|
|
1545
|
+
Abreve: "Ă",
|
|
1546
|
+
abreve: "ă",
|
|
1547
|
+
ac: "∾",
|
|
1548
|
+
acd: "∿",
|
|
1549
|
+
acE: "∾̳",
|
|
1464
1550
|
Acirc: "Â",
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1551
|
+
acirc: "â",
|
|
1552
|
+
acute: "´",
|
|
1553
|
+
Acy: "А",
|
|
1554
|
+
acy: "а",
|
|
1468
1555
|
AElig: "Æ",
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
Igrave: "Ì",
|
|
1475
|
-
Iacute: "Í",
|
|
1476
|
-
Icirc: "Î",
|
|
1477
|
-
Iuml: "Ï",
|
|
1478
|
-
ETH: "Ð",
|
|
1479
|
-
Ntilde: "Ñ",
|
|
1480
|
-
Ograve: "Ò",
|
|
1481
|
-
Oacute: "Ó",
|
|
1482
|
-
Ocirc: "Ô",
|
|
1483
|
-
Otilde: "Õ",
|
|
1484
|
-
Ouml: "Ö",
|
|
1485
|
-
Oslash: "Ø",
|
|
1486
|
-
Ugrave: "Ù",
|
|
1487
|
-
Uacute: "Ú",
|
|
1488
|
-
Ucirc: "Û",
|
|
1489
|
-
Uuml: "Ü",
|
|
1490
|
-
Yacute: "Ý",
|
|
1491
|
-
THORN: "Þ",
|
|
1492
|
-
szlig: "ß",
|
|
1556
|
+
aelig: "æ",
|
|
1557
|
+
af: "",
|
|
1558
|
+
Afr: "𝔄",
|
|
1559
|
+
afr: "𝔞",
|
|
1560
|
+
Agrave: "À",
|
|
1493
1561
|
agrave: "à",
|
|
1494
|
-
|
|
1495
|
-
|
|
1562
|
+
alefsym: "ℵ",
|
|
1563
|
+
aleph: "ℵ",
|
|
1564
|
+
Alpha: "Α",
|
|
1565
|
+
alpha: "α",
|
|
1566
|
+
Amacr: "Ā",
|
|
1567
|
+
amacr: "ā",
|
|
1568
|
+
amalg: "⨿",
|
|
1569
|
+
AMP: "&",
|
|
1570
|
+
amp: "&",
|
|
1571
|
+
And: "⩓",
|
|
1572
|
+
and: "∧",
|
|
1573
|
+
andand: "⩕",
|
|
1574
|
+
andd: "⩜",
|
|
1575
|
+
andslope: "⩘",
|
|
1576
|
+
andv: "⩚",
|
|
1577
|
+
ang: "∠",
|
|
1578
|
+
ange: "⦤",
|
|
1579
|
+
angle: "∠",
|
|
1580
|
+
angmsd: "∡",
|
|
1581
|
+
angmsdaa: "⦨",
|
|
1582
|
+
angmsdab: "⦩",
|
|
1583
|
+
angmsdac: "⦪",
|
|
1584
|
+
angmsdad: "⦫",
|
|
1585
|
+
angmsdae: "⦬",
|
|
1586
|
+
angmsdaf: "⦭",
|
|
1587
|
+
angmsdag: "⦮",
|
|
1588
|
+
angmsdah: "⦯",
|
|
1589
|
+
angrt: "∟",
|
|
1590
|
+
angrtvb: "⊾",
|
|
1591
|
+
angrtvbd: "⦝",
|
|
1592
|
+
angsph: "∢",
|
|
1593
|
+
angst: "Å",
|
|
1594
|
+
angzarr: "⍼",
|
|
1595
|
+
Aogon: "Ą",
|
|
1596
|
+
aogon: "ą",
|
|
1597
|
+
Aopf: "𝔸",
|
|
1598
|
+
aopf: "𝕒",
|
|
1599
|
+
ap: "≈",
|
|
1600
|
+
apacir: "⩯",
|
|
1601
|
+
apE: "⩰",
|
|
1602
|
+
ape: "≊",
|
|
1603
|
+
apid: "≋",
|
|
1604
|
+
apos: "'",
|
|
1605
|
+
ApplyFunction: "",
|
|
1606
|
+
approx: "≈",
|
|
1607
|
+
approxeq: "≊",
|
|
1608
|
+
Aring: "Å",
|
|
1609
|
+
aring: "å",
|
|
1610
|
+
Ascr: "𝒜",
|
|
1611
|
+
ascr: "𝒶",
|
|
1612
|
+
Assign: "≔",
|
|
1613
|
+
ast: "*",
|
|
1614
|
+
asymp: "≈",
|
|
1615
|
+
asympeq: "≍",
|
|
1616
|
+
Atilde: "Ã",
|
|
1496
1617
|
atilde: "ã",
|
|
1618
|
+
Auml: "Ä",
|
|
1497
1619
|
auml: "ä",
|
|
1498
|
-
|
|
1499
|
-
|
|
1620
|
+
awconint: "∳",
|
|
1621
|
+
awint: "⨑",
|
|
1622
|
+
backcong: "≌",
|
|
1623
|
+
backepsilon: "϶",
|
|
1624
|
+
backprime: "‵",
|
|
1625
|
+
backsim: "∽",
|
|
1626
|
+
backsimeq: "⋍",
|
|
1627
|
+
Backslash: "∖",
|
|
1628
|
+
Barv: "⫧",
|
|
1629
|
+
barvee: "⊽",
|
|
1630
|
+
Barwed: "⌆",
|
|
1631
|
+
barwed: "⌅",
|
|
1632
|
+
barwedge: "⌅",
|
|
1633
|
+
bbrk: "⎵",
|
|
1634
|
+
bbrktbrk: "⎶",
|
|
1635
|
+
bcong: "≌",
|
|
1636
|
+
Bcy: "Б",
|
|
1637
|
+
bcy: "б",
|
|
1638
|
+
bdquo: "„",
|
|
1639
|
+
becaus: "∵",
|
|
1640
|
+
Because: "∵",
|
|
1641
|
+
because: "∵",
|
|
1642
|
+
bemptyv: "⦰",
|
|
1643
|
+
bepsi: "϶",
|
|
1644
|
+
bernou: "ℬ",
|
|
1645
|
+
Bernoullis: "ℬ",
|
|
1646
|
+
Beta: "Β",
|
|
1647
|
+
beta: "β",
|
|
1648
|
+
beth: "ℶ",
|
|
1649
|
+
between: "≬",
|
|
1650
|
+
Bfr: "𝔅",
|
|
1651
|
+
bfr: "𝔟",
|
|
1652
|
+
bigcap: "⋂",
|
|
1653
|
+
bigcirc: "◯",
|
|
1654
|
+
bigcup: "⋃",
|
|
1655
|
+
bigodot: "⨀",
|
|
1656
|
+
bigoplus: "⨁",
|
|
1657
|
+
bigotimes: "⨂",
|
|
1658
|
+
bigsqcup: "⨆",
|
|
1659
|
+
bigstar: "★",
|
|
1660
|
+
bigtriangledown: "▽",
|
|
1661
|
+
bigtriangleup: "△",
|
|
1662
|
+
biguplus: "⨄",
|
|
1663
|
+
bigvee: "⋁",
|
|
1664
|
+
bigwedge: "⋀",
|
|
1665
|
+
bkarow: "⤍",
|
|
1666
|
+
blacklozenge: "⧫",
|
|
1667
|
+
blacksquare: "▪",
|
|
1668
|
+
blacktriangle: "▴",
|
|
1669
|
+
blacktriangledown: "▾",
|
|
1670
|
+
blacktriangleleft: "◂",
|
|
1671
|
+
blacktriangleright: "▸",
|
|
1672
|
+
blank: "␣",
|
|
1673
|
+
blk12: "▒",
|
|
1674
|
+
blk14: "░",
|
|
1675
|
+
blk34: "▓",
|
|
1676
|
+
block: "█",
|
|
1677
|
+
bne: "=⃥",
|
|
1678
|
+
bnequiv: "≡⃥",
|
|
1679
|
+
bNot: "⫭",
|
|
1680
|
+
bnot: "⌐",
|
|
1681
|
+
Bopf: "𝔹",
|
|
1682
|
+
bopf: "𝕓",
|
|
1683
|
+
bot: "⊥",
|
|
1684
|
+
bottom: "⊥",
|
|
1685
|
+
bowtie: "⋈",
|
|
1686
|
+
boxbox: "⧉",
|
|
1687
|
+
boxDL: "╗",
|
|
1688
|
+
boxDl: "╖",
|
|
1689
|
+
boxdL: "╕",
|
|
1690
|
+
boxdl: "┐",
|
|
1691
|
+
boxDR: "╔",
|
|
1692
|
+
boxDr: "╓",
|
|
1693
|
+
boxdR: "╒",
|
|
1694
|
+
boxdr: "┌",
|
|
1695
|
+
boxH: "═",
|
|
1696
|
+
boxh: "─",
|
|
1697
|
+
boxHD: "╦",
|
|
1698
|
+
boxHd: "╤",
|
|
1699
|
+
boxhD: "╥",
|
|
1700
|
+
boxhd: "┬",
|
|
1701
|
+
boxHU: "╩",
|
|
1702
|
+
boxHu: "╧",
|
|
1703
|
+
boxhU: "╨",
|
|
1704
|
+
boxhu: "┴",
|
|
1705
|
+
boxminus: "⊟",
|
|
1706
|
+
boxplus: "⊞",
|
|
1707
|
+
boxtimes: "⊠",
|
|
1708
|
+
boxUL: "╝",
|
|
1709
|
+
boxUl: "╜",
|
|
1710
|
+
boxuL: "╛",
|
|
1711
|
+
boxul: "┘",
|
|
1712
|
+
boxUR: "╚",
|
|
1713
|
+
boxUr: "╙",
|
|
1714
|
+
boxuR: "╘",
|
|
1715
|
+
boxur: "└",
|
|
1716
|
+
boxV: "║",
|
|
1717
|
+
boxv: "│",
|
|
1718
|
+
boxVH: "╬",
|
|
1719
|
+
boxVh: "╫",
|
|
1720
|
+
boxvH: "╪",
|
|
1721
|
+
boxvh: "┼",
|
|
1722
|
+
boxVL: "╣",
|
|
1723
|
+
boxVl: "╢",
|
|
1724
|
+
boxvL: "╡",
|
|
1725
|
+
boxvl: "┤",
|
|
1726
|
+
boxVR: "╠",
|
|
1727
|
+
boxVr: "╟",
|
|
1728
|
+
boxvR: "╞",
|
|
1729
|
+
boxvr: "├",
|
|
1730
|
+
bprime: "‵",
|
|
1731
|
+
Breve: "˘",
|
|
1732
|
+
breve: "˘",
|
|
1733
|
+
brvbar: "¦",
|
|
1734
|
+
Bscr: "ℬ",
|
|
1735
|
+
bscr: "𝒷",
|
|
1736
|
+
bsemi: "⁏",
|
|
1737
|
+
bsim: "∽",
|
|
1738
|
+
bsime: "⋍",
|
|
1739
|
+
bsol: "\\",
|
|
1740
|
+
bsolb: "⧅",
|
|
1741
|
+
bsolhsub: "⟈",
|
|
1742
|
+
bull: "•",
|
|
1743
|
+
bullet: "•",
|
|
1744
|
+
bump: "≎",
|
|
1745
|
+
bumpE: "⪮",
|
|
1746
|
+
bumpe: "≏",
|
|
1747
|
+
Bumpeq: "≎",
|
|
1748
|
+
bumpeq: "≏",
|
|
1749
|
+
Cacute: "Ć",
|
|
1750
|
+
cacute: "ć",
|
|
1751
|
+
Cap: "⋒",
|
|
1752
|
+
cap: "∩",
|
|
1753
|
+
capand: "⩄",
|
|
1754
|
+
capbrcup: "⩉",
|
|
1755
|
+
capcap: "⩋",
|
|
1756
|
+
capcup: "⩇",
|
|
1757
|
+
capdot: "⩀",
|
|
1758
|
+
CapitalDifferentialD: "ⅅ",
|
|
1759
|
+
caps: "∩︀",
|
|
1760
|
+
caret: "⁁",
|
|
1761
|
+
caron: "ˇ",
|
|
1762
|
+
Cayleys: "ℭ",
|
|
1763
|
+
ccaps: "⩍",
|
|
1764
|
+
Ccaron: "Č",
|
|
1765
|
+
ccaron: "č",
|
|
1766
|
+
Ccedil: "Ç",
|
|
1500
1767
|
ccedil: "ç",
|
|
1501
|
-
|
|
1768
|
+
Ccirc: "Ĉ",
|
|
1769
|
+
ccirc: "ĉ",
|
|
1770
|
+
Cconint: "∰",
|
|
1771
|
+
ccups: "⩌",
|
|
1772
|
+
ccupssm: "⩐",
|
|
1773
|
+
Cdot: "Ċ",
|
|
1774
|
+
cdot: "ċ",
|
|
1775
|
+
cedil: "¸",
|
|
1776
|
+
Cedilla: "¸",
|
|
1777
|
+
cemptyv: "⦲",
|
|
1778
|
+
cent: "¢",
|
|
1779
|
+
CenterDot: "·",
|
|
1780
|
+
centerdot: "·",
|
|
1781
|
+
Cfr: "ℭ",
|
|
1782
|
+
cfr: "𝔠",
|
|
1783
|
+
CHcy: "Ч",
|
|
1784
|
+
chcy: "ч",
|
|
1785
|
+
check: "✓",
|
|
1786
|
+
checkmark: "✓",
|
|
1787
|
+
Chi: "Χ",
|
|
1788
|
+
chi: "χ",
|
|
1789
|
+
cir: "○",
|
|
1790
|
+
circ: "ˆ",
|
|
1791
|
+
circeq: "≗",
|
|
1792
|
+
circlearrowleft: "↺",
|
|
1793
|
+
circlearrowright: "↻",
|
|
1794
|
+
circledast: "⊛",
|
|
1795
|
+
circledcirc: "⊚",
|
|
1796
|
+
circleddash: "⊝",
|
|
1797
|
+
CircleDot: "⊙",
|
|
1798
|
+
circledR: "®",
|
|
1799
|
+
circledS: "Ⓢ",
|
|
1800
|
+
CircleMinus: "⊖",
|
|
1801
|
+
CirclePlus: "⊕",
|
|
1802
|
+
CircleTimes: "⊗",
|
|
1803
|
+
cirE: "⧃",
|
|
1804
|
+
cire: "≗",
|
|
1805
|
+
cirfnint: "⨐",
|
|
1806
|
+
cirmid: "⫯",
|
|
1807
|
+
cirscir: "⧂",
|
|
1808
|
+
ClockwiseContourIntegral: "∲",
|
|
1809
|
+
CloseCurlyDoubleQuote: "”",
|
|
1810
|
+
CloseCurlyQuote: "’",
|
|
1811
|
+
clubs: "♣",
|
|
1812
|
+
clubsuit: "♣",
|
|
1813
|
+
Colon: "∷",
|
|
1814
|
+
colon: ":",
|
|
1815
|
+
Colone: "⩴",
|
|
1816
|
+
colone: "≔",
|
|
1817
|
+
coloneq: "≔",
|
|
1818
|
+
comma: ",",
|
|
1819
|
+
commat: "@",
|
|
1820
|
+
comp: "∁",
|
|
1821
|
+
compfn: "∘",
|
|
1822
|
+
complement: "∁",
|
|
1823
|
+
complexes: "ℂ",
|
|
1824
|
+
cong: "≅",
|
|
1825
|
+
congdot: "⩭",
|
|
1826
|
+
Congruent: "≡",
|
|
1827
|
+
Conint: "∯",
|
|
1828
|
+
conint: "∮",
|
|
1829
|
+
ContourIntegral: "∮",
|
|
1830
|
+
Copf: "ℂ",
|
|
1831
|
+
copf: "𝕔",
|
|
1832
|
+
coprod: "∐",
|
|
1833
|
+
Coproduct: "∐",
|
|
1834
|
+
COPY: "©",
|
|
1835
|
+
copy: "©",
|
|
1836
|
+
copysr: "℗",
|
|
1837
|
+
CounterClockwiseContourIntegral: "∳",
|
|
1838
|
+
crarr: "↵",
|
|
1839
|
+
Cross: "⨯",
|
|
1840
|
+
cross: "✗",
|
|
1841
|
+
Cscr: "𝒞",
|
|
1842
|
+
cscr: "𝒸",
|
|
1843
|
+
csub: "⫏",
|
|
1844
|
+
csube: "⫑",
|
|
1845
|
+
csup: "⫐",
|
|
1846
|
+
csupe: "⫒",
|
|
1847
|
+
ctdot: "⋯",
|
|
1848
|
+
cudarrl: "⤸",
|
|
1849
|
+
cudarrr: "⤵",
|
|
1850
|
+
cuepr: "⋞",
|
|
1851
|
+
cuesc: "⋟",
|
|
1852
|
+
cularr: "↶",
|
|
1853
|
+
cularrp: "⤽",
|
|
1854
|
+
Cup: "⋓",
|
|
1855
|
+
cup: "∪",
|
|
1856
|
+
cupbrcap: "⩈",
|
|
1857
|
+
CupCap: "≍",
|
|
1858
|
+
cupcap: "⩆",
|
|
1859
|
+
cupcup: "⩊",
|
|
1860
|
+
cupdot: "⊍",
|
|
1861
|
+
cupor: "⩅",
|
|
1862
|
+
cups: "∪︀",
|
|
1863
|
+
curarr: "↷",
|
|
1864
|
+
curarrm: "⤼",
|
|
1865
|
+
curlyeqprec: "⋞",
|
|
1866
|
+
curlyeqsucc: "⋟",
|
|
1867
|
+
curlyvee: "⋎",
|
|
1868
|
+
curlywedge: "⋏",
|
|
1869
|
+
curren: "¤",
|
|
1870
|
+
curvearrowleft: "↶",
|
|
1871
|
+
curvearrowright: "↷",
|
|
1872
|
+
cuvee: "⋎",
|
|
1873
|
+
cuwed: "⋏",
|
|
1874
|
+
cwconint: "∲",
|
|
1875
|
+
cwint: "∱",
|
|
1876
|
+
cylcty: "⌭",
|
|
1877
|
+
Dagger: "‡",
|
|
1878
|
+
dagger: "†",
|
|
1879
|
+
daleth: "ℸ",
|
|
1880
|
+
Darr: "↡",
|
|
1881
|
+
dArr: "⇓",
|
|
1882
|
+
darr: "↓",
|
|
1883
|
+
dash: "‐",
|
|
1884
|
+
Dashv: "⫤",
|
|
1885
|
+
dashv: "⊣",
|
|
1886
|
+
dbkarow: "⤏",
|
|
1887
|
+
dblac: "˝",
|
|
1888
|
+
Dcaron: "Ď",
|
|
1889
|
+
dcaron: "ď",
|
|
1890
|
+
Dcy: "Д",
|
|
1891
|
+
dcy: "д",
|
|
1892
|
+
DD: "ⅅ",
|
|
1893
|
+
dd: "ⅆ",
|
|
1894
|
+
ddagger: "‡",
|
|
1895
|
+
ddarr: "⇊",
|
|
1896
|
+
DDotrahd: "⤑",
|
|
1897
|
+
ddotseq: "⩷",
|
|
1898
|
+
deg: "°",
|
|
1899
|
+
Del: "∇",
|
|
1900
|
+
Delta: "Δ",
|
|
1901
|
+
delta: "δ",
|
|
1902
|
+
demptyv: "⦱",
|
|
1903
|
+
dfisht: "⥿",
|
|
1904
|
+
Dfr: "𝔇",
|
|
1905
|
+
dfr: "𝔡",
|
|
1906
|
+
dHar: "⥥",
|
|
1907
|
+
dharl: "⇃",
|
|
1908
|
+
dharr: "⇂",
|
|
1909
|
+
DiacriticalAcute: "´",
|
|
1910
|
+
DiacriticalDot: "˙",
|
|
1911
|
+
DiacriticalDoubleAcute: "˝",
|
|
1912
|
+
DiacriticalGrave: "`",
|
|
1913
|
+
DiacriticalTilde: "˜",
|
|
1914
|
+
diam: "⋄",
|
|
1915
|
+
Diamond: "⋄",
|
|
1916
|
+
diamond: "⋄",
|
|
1917
|
+
diamondsuit: "♦",
|
|
1918
|
+
diams: "♦",
|
|
1919
|
+
die: "¨",
|
|
1920
|
+
DifferentialD: "ⅆ",
|
|
1921
|
+
digamma: "ϝ",
|
|
1922
|
+
disin: "⋲",
|
|
1923
|
+
div: "÷",
|
|
1924
|
+
divide: "÷",
|
|
1925
|
+
divideontimes: "⋇",
|
|
1926
|
+
divonx: "⋇",
|
|
1927
|
+
DJcy: "Ђ",
|
|
1928
|
+
djcy: "ђ",
|
|
1929
|
+
dlcorn: "⌞",
|
|
1930
|
+
dlcrop: "⌍",
|
|
1931
|
+
dollar: "$",
|
|
1932
|
+
Dopf: "𝔻",
|
|
1933
|
+
dopf: "𝕕",
|
|
1934
|
+
Dot: "¨",
|
|
1935
|
+
dot: "˙",
|
|
1936
|
+
DotDot: "⃜",
|
|
1937
|
+
doteq: "≐",
|
|
1938
|
+
doteqdot: "≑",
|
|
1939
|
+
DotEqual: "≐",
|
|
1940
|
+
dotminus: "∸",
|
|
1941
|
+
dotplus: "∔",
|
|
1942
|
+
dotsquare: "⊡",
|
|
1943
|
+
doublebarwedge: "⌆",
|
|
1944
|
+
DoubleContourIntegral: "∯",
|
|
1945
|
+
DoubleDot: "¨",
|
|
1946
|
+
DoubleDownArrow: "⇓",
|
|
1947
|
+
DoubleLeftArrow: "⇐",
|
|
1948
|
+
DoubleLeftRightArrow: "⇔",
|
|
1949
|
+
DoubleLeftTee: "⫤",
|
|
1950
|
+
DoubleLongLeftArrow: "⟸",
|
|
1951
|
+
DoubleLongLeftRightArrow: "⟺",
|
|
1952
|
+
DoubleLongRightArrow: "⟹",
|
|
1953
|
+
DoubleRightArrow: "⇒",
|
|
1954
|
+
DoubleRightTee: "⊨",
|
|
1955
|
+
DoubleUpArrow: "⇑",
|
|
1956
|
+
DoubleUpDownArrow: "⇕",
|
|
1957
|
+
DoubleVerticalBar: "∥",
|
|
1958
|
+
DownArrow: "↓",
|
|
1959
|
+
Downarrow: "⇓",
|
|
1960
|
+
downarrow: "↓",
|
|
1961
|
+
DownArrowBar: "⤓",
|
|
1962
|
+
DownArrowUpArrow: "⇵",
|
|
1963
|
+
DownBreve: "̑",
|
|
1964
|
+
downdownarrows: "⇊",
|
|
1965
|
+
downharpoonleft: "⇃",
|
|
1966
|
+
downharpoonright: "⇂",
|
|
1967
|
+
DownLeftRightVector: "⥐",
|
|
1968
|
+
DownLeftTeeVector: "⥞",
|
|
1969
|
+
DownLeftVector: "↽",
|
|
1970
|
+
DownLeftVectorBar: "⥖",
|
|
1971
|
+
DownRightTeeVector: "⥟",
|
|
1972
|
+
DownRightVector: "⇁",
|
|
1973
|
+
DownRightVectorBar: "⥗",
|
|
1974
|
+
DownTee: "⊤",
|
|
1975
|
+
DownTeeArrow: "↧",
|
|
1976
|
+
drbkarow: "⤐",
|
|
1977
|
+
drcorn: "⌟",
|
|
1978
|
+
drcrop: "⌌",
|
|
1979
|
+
Dscr: "𝒟",
|
|
1980
|
+
dscr: "𝒹",
|
|
1981
|
+
DScy: "Ѕ",
|
|
1982
|
+
dscy: "ѕ",
|
|
1983
|
+
dsol: "⧶",
|
|
1984
|
+
Dstrok: "Đ",
|
|
1985
|
+
dstrok: "đ",
|
|
1986
|
+
dtdot: "⋱",
|
|
1987
|
+
dtri: "▿",
|
|
1988
|
+
dtrif: "▾",
|
|
1989
|
+
duarr: "⇵",
|
|
1990
|
+
duhar: "⥯",
|
|
1991
|
+
dwangle: "⦦",
|
|
1992
|
+
DZcy: "Џ",
|
|
1993
|
+
dzcy: "џ",
|
|
1994
|
+
dzigrarr: "⟿",
|
|
1995
|
+
Eacute: "É",
|
|
1502
1996
|
eacute: "é",
|
|
1997
|
+
easter: "⩮",
|
|
1998
|
+
Ecaron: "Ě",
|
|
1999
|
+
ecaron: "ě",
|
|
2000
|
+
ecir: "≖",
|
|
2001
|
+
Ecirc: "Ê",
|
|
1503
2002
|
ecirc: "ê",
|
|
2003
|
+
ecolon: "≕",
|
|
2004
|
+
Ecy: "Э",
|
|
2005
|
+
ecy: "э",
|
|
2006
|
+
eDDot: "⩷",
|
|
2007
|
+
Edot: "Ė",
|
|
2008
|
+
eDot: "≑",
|
|
2009
|
+
edot: "ė",
|
|
2010
|
+
ee: "ⅇ",
|
|
2011
|
+
efDot: "≒",
|
|
2012
|
+
Efr: "𝔈",
|
|
2013
|
+
efr: "𝔢",
|
|
2014
|
+
eg: "⪚",
|
|
2015
|
+
Egrave: "È",
|
|
2016
|
+
egrave: "è",
|
|
2017
|
+
egs: "⪖",
|
|
2018
|
+
egsdot: "⪘",
|
|
2019
|
+
el: "⪙",
|
|
2020
|
+
Element: "∈",
|
|
2021
|
+
elinters: "⏧",
|
|
2022
|
+
ell: "ℓ",
|
|
2023
|
+
els: "⪕",
|
|
2024
|
+
elsdot: "⪗",
|
|
2025
|
+
Emacr: "Ē",
|
|
2026
|
+
emacr: "ē",
|
|
2027
|
+
empty: "∅",
|
|
2028
|
+
emptyset: "∅",
|
|
2029
|
+
EmptySmallSquare: "◻",
|
|
2030
|
+
emptyv: "∅",
|
|
2031
|
+
EmptyVerySmallSquare: "▫",
|
|
2032
|
+
emsp: " ",
|
|
2033
|
+
emsp13: " ",
|
|
2034
|
+
emsp14: " ",
|
|
2035
|
+
ENG: "Ŋ",
|
|
2036
|
+
eng: "ŋ",
|
|
2037
|
+
ensp: " ",
|
|
2038
|
+
Eogon: "Ę",
|
|
2039
|
+
eogon: "ę",
|
|
2040
|
+
Eopf: "𝔼",
|
|
2041
|
+
eopf: "𝕖",
|
|
2042
|
+
epar: "⋕",
|
|
2043
|
+
eparsl: "⧣",
|
|
2044
|
+
eplus: "⩱",
|
|
2045
|
+
epsi: "ε",
|
|
2046
|
+
Epsilon: "Ε",
|
|
2047
|
+
epsilon: "ε",
|
|
2048
|
+
epsiv: "ϵ",
|
|
2049
|
+
eqcirc: "≖",
|
|
2050
|
+
eqcolon: "≕",
|
|
2051
|
+
eqsim: "≂",
|
|
2052
|
+
eqslantgtr: "⪖",
|
|
2053
|
+
eqslantless: "⪕",
|
|
2054
|
+
Equal: "⩵",
|
|
2055
|
+
equals: "=",
|
|
2056
|
+
EqualTilde: "≂",
|
|
2057
|
+
equest: "≟",
|
|
2058
|
+
Equilibrium: "⇌",
|
|
2059
|
+
equiv: "≡",
|
|
2060
|
+
equivDD: "⩸",
|
|
2061
|
+
eqvparsl: "⧥",
|
|
2062
|
+
erarr: "⥱",
|
|
2063
|
+
erDot: "≓",
|
|
2064
|
+
Escr: "ℰ",
|
|
2065
|
+
escr: "ℯ",
|
|
2066
|
+
esdot: "≐",
|
|
2067
|
+
Esim: "⩳",
|
|
2068
|
+
esim: "≂",
|
|
2069
|
+
Eta: "Η",
|
|
2070
|
+
eta: "η",
|
|
2071
|
+
ETH: "Ð",
|
|
2072
|
+
eth: "ð",
|
|
2073
|
+
Euml: "Ë",
|
|
1504
2074
|
euml: "ë",
|
|
1505
|
-
|
|
2075
|
+
euro: "€",
|
|
2076
|
+
excl: "!",
|
|
2077
|
+
exist: "∃",
|
|
2078
|
+
Exists: "∃",
|
|
2079
|
+
expectation: "ℰ",
|
|
2080
|
+
ExponentialE: "ⅇ",
|
|
2081
|
+
exponentiale: "ⅇ",
|
|
2082
|
+
fallingdotseq: "≒",
|
|
2083
|
+
Fcy: "Ф",
|
|
2084
|
+
fcy: "ф",
|
|
2085
|
+
female: "♀",
|
|
2086
|
+
ffilig: "ffi",
|
|
2087
|
+
fflig: "ff",
|
|
2088
|
+
ffllig: "ffl",
|
|
2089
|
+
Ffr: "𝔉",
|
|
2090
|
+
ffr: "𝔣",
|
|
2091
|
+
filig: "fi",
|
|
2092
|
+
FilledSmallSquare: "◼",
|
|
2093
|
+
FilledVerySmallSquare: "▪",
|
|
2094
|
+
fjlig: "fj",
|
|
2095
|
+
flat: "♭",
|
|
2096
|
+
fllig: "fl",
|
|
2097
|
+
fltns: "▱",
|
|
2098
|
+
fnof: "ƒ",
|
|
2099
|
+
Fopf: "𝔽",
|
|
2100
|
+
fopf: "𝕗",
|
|
2101
|
+
ForAll: "∀",
|
|
2102
|
+
forall: "∀",
|
|
2103
|
+
fork: "⋔",
|
|
2104
|
+
forkv: "⫙",
|
|
2105
|
+
Fouriertrf: "ℱ",
|
|
2106
|
+
fpartint: "⨍",
|
|
2107
|
+
frac12: "½",
|
|
2108
|
+
frac13: "⅓",
|
|
2109
|
+
frac14: "¼",
|
|
2110
|
+
frac15: "⅕",
|
|
2111
|
+
frac16: "⅙",
|
|
2112
|
+
frac18: "⅛",
|
|
2113
|
+
frac23: "⅔",
|
|
2114
|
+
frac25: "⅖",
|
|
2115
|
+
frac34: "¾",
|
|
2116
|
+
frac35: "⅗",
|
|
2117
|
+
frac38: "⅜",
|
|
2118
|
+
frac45: "⅘",
|
|
2119
|
+
frac56: "⅚",
|
|
2120
|
+
frac58: "⅝",
|
|
2121
|
+
frac78: "⅞",
|
|
2122
|
+
frasl: "⁄",
|
|
2123
|
+
frown: "⌢",
|
|
2124
|
+
Fscr: "ℱ",
|
|
2125
|
+
fscr: "𝒻",
|
|
2126
|
+
gacute: "ǵ",
|
|
2127
|
+
Gamma: "Γ",
|
|
2128
|
+
gamma: "γ",
|
|
2129
|
+
Gammad: "Ϝ",
|
|
2130
|
+
gammad: "ϝ",
|
|
2131
|
+
gap: "⪆",
|
|
2132
|
+
Gbreve: "Ğ",
|
|
2133
|
+
gbreve: "ğ",
|
|
2134
|
+
Gcedil: "Ģ",
|
|
2135
|
+
Gcirc: "Ĝ",
|
|
2136
|
+
gcirc: "ĝ",
|
|
2137
|
+
Gcy: "Г",
|
|
2138
|
+
gcy: "г",
|
|
2139
|
+
Gdot: "Ġ",
|
|
2140
|
+
gdot: "ġ",
|
|
2141
|
+
gE: "≧",
|
|
2142
|
+
ge: "≥",
|
|
2143
|
+
gEl: "⪌",
|
|
2144
|
+
gel: "⋛",
|
|
2145
|
+
geq: "≥",
|
|
2146
|
+
geqq: "≧",
|
|
2147
|
+
geqslant: "⩾",
|
|
2148
|
+
ges: "⩾",
|
|
2149
|
+
gescc: "⪩",
|
|
2150
|
+
gesdot: "⪀",
|
|
2151
|
+
gesdoto: "⪂",
|
|
2152
|
+
gesdotol: "⪄",
|
|
2153
|
+
gesl: "⋛︀",
|
|
2154
|
+
gesles: "⪔",
|
|
2155
|
+
Gfr: "𝔊",
|
|
2156
|
+
gfr: "𝔤",
|
|
2157
|
+
Gg: "⋙",
|
|
2158
|
+
gg: "≫",
|
|
2159
|
+
ggg: "⋙",
|
|
2160
|
+
gimel: "ℷ",
|
|
2161
|
+
GJcy: "Ѓ",
|
|
2162
|
+
gjcy: "ѓ",
|
|
2163
|
+
gl: "≷",
|
|
2164
|
+
gla: "⪥",
|
|
2165
|
+
glE: "⪒",
|
|
2166
|
+
glj: "⪤",
|
|
2167
|
+
gnap: "⪊",
|
|
2168
|
+
gnapprox: "⪊",
|
|
2169
|
+
gnE: "≩",
|
|
2170
|
+
gne: "⪈",
|
|
2171
|
+
gneq: "⪈",
|
|
2172
|
+
gneqq: "≩",
|
|
2173
|
+
gnsim: "⋧",
|
|
2174
|
+
Gopf: "𝔾",
|
|
2175
|
+
gopf: "𝕘",
|
|
2176
|
+
grave: "`",
|
|
2177
|
+
GreaterEqual: "≥",
|
|
2178
|
+
GreaterEqualLess: "⋛",
|
|
2179
|
+
GreaterFullEqual: "≧",
|
|
2180
|
+
GreaterGreater: "⪢",
|
|
2181
|
+
GreaterLess: "≷",
|
|
2182
|
+
GreaterSlantEqual: "⩾",
|
|
2183
|
+
GreaterTilde: "≳",
|
|
2184
|
+
Gscr: "𝒢",
|
|
2185
|
+
gscr: "ℊ",
|
|
2186
|
+
gsim: "≳",
|
|
2187
|
+
gsime: "⪎",
|
|
2188
|
+
gsiml: "⪐",
|
|
2189
|
+
Gt: "≫",
|
|
2190
|
+
GT: ">",
|
|
2191
|
+
gt: ">",
|
|
2192
|
+
gtcc: "⪧",
|
|
2193
|
+
gtcir: "⩺",
|
|
2194
|
+
gtdot: "⋗",
|
|
2195
|
+
gtlPar: "⦕",
|
|
2196
|
+
gtquest: "⩼",
|
|
2197
|
+
gtrapprox: "⪆",
|
|
2198
|
+
gtrarr: "⥸",
|
|
2199
|
+
gtrdot: "⋗",
|
|
2200
|
+
gtreqless: "⋛",
|
|
2201
|
+
gtreqqless: "⪌",
|
|
2202
|
+
gtrless: "≷",
|
|
2203
|
+
gtrsim: "≳",
|
|
2204
|
+
gvertneqq: "≩︀",
|
|
2205
|
+
gvnE: "≩︀",
|
|
2206
|
+
Hacek: "ˇ",
|
|
2207
|
+
hairsp: " ",
|
|
2208
|
+
half: "½",
|
|
2209
|
+
hamilt: "ℋ",
|
|
2210
|
+
HARDcy: "Ъ",
|
|
2211
|
+
hardcy: "ъ",
|
|
2212
|
+
hArr: "⇔",
|
|
2213
|
+
harr: "↔",
|
|
2214
|
+
harrcir: "⥈",
|
|
2215
|
+
harrw: "↭",
|
|
2216
|
+
Hat: "^",
|
|
2217
|
+
hbar: "ℏ",
|
|
2218
|
+
Hcirc: "Ĥ",
|
|
2219
|
+
hcirc: "ĥ",
|
|
2220
|
+
hearts: "♥",
|
|
2221
|
+
heartsuit: "♥",
|
|
2222
|
+
hellip: "…",
|
|
2223
|
+
hercon: "⊹",
|
|
2224
|
+
Hfr: "ℌ",
|
|
2225
|
+
hfr: "𝔥",
|
|
2226
|
+
HilbertSpace: "ℋ",
|
|
2227
|
+
hksearow: "⤥",
|
|
2228
|
+
hkswarow: "⤦",
|
|
2229
|
+
hoarr: "⇿",
|
|
2230
|
+
homtht: "∻",
|
|
2231
|
+
hookleftarrow: "↩",
|
|
2232
|
+
hookrightarrow: "↪",
|
|
2233
|
+
Hopf: "ℍ",
|
|
2234
|
+
hopf: "𝕙",
|
|
2235
|
+
horbar: "―",
|
|
2236
|
+
HorizontalLine: "─",
|
|
2237
|
+
Hscr: "ℋ",
|
|
2238
|
+
hscr: "𝒽",
|
|
2239
|
+
hslash: "ℏ",
|
|
2240
|
+
Hstrok: "Ħ",
|
|
2241
|
+
hstrok: "ħ",
|
|
2242
|
+
HumpDownHump: "≎",
|
|
2243
|
+
HumpEqual: "≏",
|
|
2244
|
+
hybull: "⁃",
|
|
2245
|
+
hyphen: "‐",
|
|
2246
|
+
Iacute: "Í",
|
|
1506
2247
|
iacute: "í",
|
|
2248
|
+
ic: "",
|
|
2249
|
+
Icirc: "Î",
|
|
1507
2250
|
icirc: "î",
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
ocirc: "ô",
|
|
1514
|
-
otilde: "õ",
|
|
1515
|
-
ouml: "ö",
|
|
1516
|
-
oslash: "ø",
|
|
1517
|
-
ugrave: "ù",
|
|
1518
|
-
uacute: "ú",
|
|
1519
|
-
ucirc: "û",
|
|
1520
|
-
uuml: "ü",
|
|
1521
|
-
yacute: "ý",
|
|
1522
|
-
thorn: "þ",
|
|
1523
|
-
yuml: "ÿ",
|
|
1524
|
-
nbsp: " ",
|
|
2251
|
+
Icy: "И",
|
|
2252
|
+
icy: "и",
|
|
2253
|
+
Idot: "İ",
|
|
2254
|
+
IEcy: "Е",
|
|
2255
|
+
iecy: "е",
|
|
1525
2256
|
iexcl: "¡",
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
2257
|
+
iff: "⇔",
|
|
2258
|
+
Ifr: "ℑ",
|
|
2259
|
+
ifr: "𝔦",
|
|
2260
|
+
Igrave: "Ì",
|
|
2261
|
+
igrave: "ì",
|
|
2262
|
+
ii: "ⅈ",
|
|
2263
|
+
iiiint: "⨌",
|
|
2264
|
+
iiint: "∭",
|
|
2265
|
+
iinfin: "⧜",
|
|
2266
|
+
iiota: "℩",
|
|
2267
|
+
IJlig: "IJ",
|
|
2268
|
+
ijlig: "ij",
|
|
2269
|
+
Im: "ℑ",
|
|
2270
|
+
Imacr: "Ī",
|
|
2271
|
+
imacr: "ī",
|
|
2272
|
+
image: "ℑ",
|
|
2273
|
+
ImaginaryI: "ⅈ",
|
|
2274
|
+
imagline: "ℐ",
|
|
2275
|
+
imagpart: "ℑ",
|
|
2276
|
+
imath: "ı",
|
|
2277
|
+
imof: "⊷",
|
|
2278
|
+
imped: "Ƶ",
|
|
2279
|
+
Implies: "⇒",
|
|
2280
|
+
in: "∈",
|
|
2281
|
+
incare: "℅",
|
|
2282
|
+
infin: "∞",
|
|
2283
|
+
infintie: "⧝",
|
|
2284
|
+
inodot: "ı",
|
|
2285
|
+
Int: "∬",
|
|
2286
|
+
int: "∫",
|
|
2287
|
+
intcal: "⊺",
|
|
2288
|
+
integers: "ℤ",
|
|
2289
|
+
Integral: "∫",
|
|
2290
|
+
intercal: "⊺",
|
|
2291
|
+
Intersection: "⋂",
|
|
2292
|
+
intlarhk: "⨗",
|
|
2293
|
+
intprod: "⨼",
|
|
2294
|
+
InvisibleComma: "",
|
|
2295
|
+
InvisibleTimes: "",
|
|
2296
|
+
IOcy: "Ё",
|
|
2297
|
+
iocy: "ё",
|
|
2298
|
+
Iogon: "Į",
|
|
2299
|
+
iogon: "į",
|
|
2300
|
+
Iopf: "𝕀",
|
|
2301
|
+
iopf: "𝕚",
|
|
2302
|
+
Iota: "Ι",
|
|
2303
|
+
iota: "ι",
|
|
2304
|
+
iprod: "⨼",
|
|
2305
|
+
iquest: "¿",
|
|
2306
|
+
Iscr: "ℐ",
|
|
2307
|
+
iscr: "𝒾",
|
|
2308
|
+
isin: "∈",
|
|
2309
|
+
isindot: "⋵",
|
|
2310
|
+
isinE: "⋹",
|
|
2311
|
+
isins: "⋴",
|
|
2312
|
+
isinsv: "⋳",
|
|
2313
|
+
isinv: "∈",
|
|
2314
|
+
it: "",
|
|
2315
|
+
Itilde: "Ĩ",
|
|
2316
|
+
itilde: "ĩ",
|
|
2317
|
+
Iukcy: "І",
|
|
2318
|
+
iukcy: "і",
|
|
2319
|
+
Iuml: "Ï",
|
|
2320
|
+
iuml: "ï",
|
|
2321
|
+
Jcirc: "Ĵ",
|
|
2322
|
+
jcirc: "ĵ",
|
|
2323
|
+
Jcy: "Й",
|
|
2324
|
+
jcy: "й",
|
|
2325
|
+
Jfr: "𝔍",
|
|
2326
|
+
jfr: "𝔧",
|
|
2327
|
+
jmath: "ȷ",
|
|
2328
|
+
Jopf: "𝕁",
|
|
2329
|
+
jopf: "𝕛",
|
|
2330
|
+
Jscr: "𝒥",
|
|
2331
|
+
jscr: "𝒿",
|
|
2332
|
+
Jsercy: "Ј",
|
|
2333
|
+
jsercy: "ј",
|
|
2334
|
+
Jukcy: "Є",
|
|
2335
|
+
jukcy: "є",
|
|
2336
|
+
Kappa: "Κ",
|
|
2337
|
+
kappa: "κ",
|
|
2338
|
+
kappav: "ϰ",
|
|
2339
|
+
Kcedil: "Ķ",
|
|
2340
|
+
kcedil: "ķ",
|
|
2341
|
+
Kcy: "К",
|
|
2342
|
+
kcy: "к",
|
|
2343
|
+
Kfr: "𝔎",
|
|
2344
|
+
kfr: "𝔨",
|
|
2345
|
+
kgreen: "ĸ",
|
|
2346
|
+
KHcy: "Х",
|
|
2347
|
+
khcy: "х",
|
|
2348
|
+
KJcy: "Ќ",
|
|
2349
|
+
kjcy: "ќ",
|
|
2350
|
+
Kopf: "𝕂",
|
|
2351
|
+
kopf: "𝕜",
|
|
2352
|
+
Kscr: "𝒦",
|
|
2353
|
+
kscr: "𝓀",
|
|
2354
|
+
lAarr: "⇚",
|
|
2355
|
+
Lacute: "Ĺ",
|
|
2356
|
+
lacute: "ĺ",
|
|
2357
|
+
laemptyv: "⦴",
|
|
2358
|
+
lagran: "ℒ",
|
|
2359
|
+
Lambda: "Λ",
|
|
2360
|
+
lambda: "λ",
|
|
2361
|
+
Lang: "⟪",
|
|
2362
|
+
lang: "⟨",
|
|
2363
|
+
langd: "⦑",
|
|
2364
|
+
langle: "⟨",
|
|
2365
|
+
lap: "⪅",
|
|
2366
|
+
Laplacetrf: "ℒ",
|
|
1535
2367
|
laquo: "«",
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
2368
|
+
Larr: "↞",
|
|
2369
|
+
lArr: "⇐",
|
|
2370
|
+
larr: "←",
|
|
2371
|
+
larrb: "⇤",
|
|
2372
|
+
larrbfs: "⤟",
|
|
2373
|
+
larrfs: "⤝",
|
|
2374
|
+
larrhk: "↩",
|
|
2375
|
+
larrlp: "↫",
|
|
2376
|
+
larrpl: "⤹",
|
|
2377
|
+
larrsim: "⥳",
|
|
2378
|
+
larrtl: "↢",
|
|
2379
|
+
lat: "⪫",
|
|
2380
|
+
lAtail: "⤛",
|
|
2381
|
+
latail: "⤙",
|
|
2382
|
+
late: "⪭",
|
|
2383
|
+
lates: "⪭︀",
|
|
2384
|
+
lBarr: "⤎",
|
|
2385
|
+
lbarr: "⤌",
|
|
2386
|
+
lbbrk: "❲",
|
|
2387
|
+
lbrace: "{",
|
|
2388
|
+
lbrack: "[",
|
|
2389
|
+
lbrke: "⦋",
|
|
2390
|
+
lbrksld: "⦏",
|
|
2391
|
+
lbrkslu: "⦍",
|
|
2392
|
+
Lcaron: "Ľ",
|
|
2393
|
+
lcaron: "ľ",
|
|
2394
|
+
Lcedil: "Ļ",
|
|
2395
|
+
lcedil: "ļ",
|
|
2396
|
+
lceil: "⌈",
|
|
2397
|
+
lcub: "{",
|
|
2398
|
+
Lcy: "Л",
|
|
2399
|
+
lcy: "л",
|
|
2400
|
+
ldca: "⤶",
|
|
2401
|
+
ldquo: "“",
|
|
2402
|
+
ldquor: "„",
|
|
2403
|
+
ldrdhar: "⥧",
|
|
2404
|
+
ldrushar: "⥋",
|
|
2405
|
+
ldsh: "↲",
|
|
2406
|
+
lE: "≦",
|
|
2407
|
+
le: "≤",
|
|
2408
|
+
LeftAngleBracket: "⟨",
|
|
2409
|
+
LeftArrow: "←",
|
|
2410
|
+
Leftarrow: "⇐",
|
|
2411
|
+
leftarrow: "←",
|
|
2412
|
+
LeftArrowBar: "⇤",
|
|
2413
|
+
LeftArrowRightArrow: "⇆",
|
|
2414
|
+
leftarrowtail: "↢",
|
|
2415
|
+
LeftCeiling: "⌈",
|
|
2416
|
+
LeftDoubleBracket: "⟦",
|
|
2417
|
+
LeftDownTeeVector: "⥡",
|
|
2418
|
+
LeftDownVector: "⇃",
|
|
2419
|
+
LeftDownVectorBar: "⥙",
|
|
2420
|
+
LeftFloor: "⌊",
|
|
2421
|
+
leftharpoondown: "↽",
|
|
2422
|
+
leftharpoonup: "↼",
|
|
2423
|
+
leftleftarrows: "⇇",
|
|
2424
|
+
LeftRightArrow: "↔",
|
|
2425
|
+
Leftrightarrow: "⇔",
|
|
2426
|
+
leftrightarrow: "↔",
|
|
2427
|
+
leftrightarrows: "⇆",
|
|
2428
|
+
leftrightharpoons: "⇋",
|
|
2429
|
+
leftrightsquigarrow: "↭",
|
|
2430
|
+
LeftRightVector: "⥎",
|
|
2431
|
+
LeftTee: "⊣",
|
|
2432
|
+
LeftTeeArrow: "↤",
|
|
2433
|
+
LeftTeeVector: "⥚",
|
|
2434
|
+
leftthreetimes: "⋋",
|
|
2435
|
+
LeftTriangle: "⊲",
|
|
2436
|
+
LeftTriangleBar: "⧏",
|
|
2437
|
+
LeftTriangleEqual: "⊴",
|
|
2438
|
+
LeftUpDownVector: "⥑",
|
|
2439
|
+
LeftUpTeeVector: "⥠",
|
|
2440
|
+
LeftUpVector: "↿",
|
|
2441
|
+
LeftUpVectorBar: "⥘",
|
|
2442
|
+
LeftVector: "↼",
|
|
2443
|
+
LeftVectorBar: "⥒",
|
|
2444
|
+
lEg: "⪋",
|
|
2445
|
+
leg: "⋚",
|
|
2446
|
+
leq: "≤",
|
|
2447
|
+
leqq: "≦",
|
|
2448
|
+
leqslant: "⩽",
|
|
2449
|
+
les: "⩽",
|
|
2450
|
+
lescc: "⪨",
|
|
2451
|
+
lesdot: "⩿",
|
|
2452
|
+
lesdoto: "⪁",
|
|
2453
|
+
lesdotor: "⪃",
|
|
2454
|
+
lesg: "⋚︀",
|
|
2455
|
+
lesges: "⪓",
|
|
2456
|
+
lessapprox: "⪅",
|
|
2457
|
+
lessdot: "⋖",
|
|
2458
|
+
lesseqgtr: "⋚",
|
|
2459
|
+
lesseqqgtr: "⪋",
|
|
2460
|
+
LessEqualGreater: "⋚",
|
|
2461
|
+
LessFullEqual: "≦",
|
|
2462
|
+
LessGreater: "≶",
|
|
2463
|
+
lessgtr: "≶",
|
|
2464
|
+
LessLess: "⪡",
|
|
2465
|
+
lesssim: "≲",
|
|
2466
|
+
LessSlantEqual: "⩽",
|
|
2467
|
+
LessTilde: "≲",
|
|
2468
|
+
lfisht: "⥼",
|
|
2469
|
+
lfloor: "⌊",
|
|
2470
|
+
Lfr: "𝔏",
|
|
2471
|
+
lfr: "𝔩",
|
|
2472
|
+
lg: "≶",
|
|
2473
|
+
lgE: "⪑",
|
|
2474
|
+
lHar: "⥢",
|
|
2475
|
+
lhard: "↽",
|
|
2476
|
+
lharu: "↼",
|
|
2477
|
+
lharul: "⥪",
|
|
2478
|
+
lhblk: "▄",
|
|
2479
|
+
LJcy: "Љ",
|
|
2480
|
+
ljcy: "љ",
|
|
2481
|
+
Ll: "⋘",
|
|
2482
|
+
ll: "≪",
|
|
2483
|
+
llarr: "⇇",
|
|
2484
|
+
llcorner: "⌞",
|
|
2485
|
+
Lleftarrow: "⇚",
|
|
2486
|
+
llhard: "⥫",
|
|
2487
|
+
lltri: "◺",
|
|
2488
|
+
Lmidot: "Ŀ",
|
|
2489
|
+
lmidot: "ŀ",
|
|
2490
|
+
lmoust: "⎰",
|
|
2491
|
+
lmoustache: "⎰",
|
|
2492
|
+
lnap: "⪉",
|
|
2493
|
+
lnapprox: "⪉",
|
|
2494
|
+
lnE: "≨",
|
|
2495
|
+
lne: "⪇",
|
|
2496
|
+
lneq: "⪇",
|
|
2497
|
+
lneqq: "≨",
|
|
2498
|
+
lnsim: "⋦",
|
|
2499
|
+
loang: "⟬",
|
|
2500
|
+
loarr: "⇽",
|
|
2501
|
+
lobrk: "⟦",
|
|
2502
|
+
LongLeftArrow: "⟵",
|
|
2503
|
+
Longleftarrow: "⟸",
|
|
2504
|
+
longleftarrow: "⟵",
|
|
2505
|
+
LongLeftRightArrow: "⟷",
|
|
2506
|
+
Longleftrightarrow: "⟺",
|
|
2507
|
+
longleftrightarrow: "⟷",
|
|
2508
|
+
longmapsto: "⟼",
|
|
2509
|
+
LongRightArrow: "⟶",
|
|
2510
|
+
Longrightarrow: "⟹",
|
|
2511
|
+
longrightarrow: "⟶",
|
|
2512
|
+
looparrowleft: "↫",
|
|
2513
|
+
looparrowright: "↬",
|
|
2514
|
+
lopar: "⦅",
|
|
2515
|
+
Lopf: "𝕃",
|
|
2516
|
+
lopf: "𝕝",
|
|
2517
|
+
loplus: "⨭",
|
|
2518
|
+
lotimes: "⨴",
|
|
2519
|
+
lowast: "∗",
|
|
2520
|
+
lowbar: "_",
|
|
2521
|
+
LowerLeftArrow: "↙",
|
|
2522
|
+
LowerRightArrow: "↘",
|
|
2523
|
+
loz: "◊",
|
|
2524
|
+
lozenge: "◊",
|
|
2525
|
+
lozf: "⧫",
|
|
2526
|
+
lpar: "(",
|
|
2527
|
+
lparlt: "⦓",
|
|
2528
|
+
lrarr: "⇆",
|
|
2529
|
+
lrcorner: "⌟",
|
|
2530
|
+
lrhar: "⇋",
|
|
2531
|
+
lrhard: "⥭",
|
|
2532
|
+
lrm: "",
|
|
2533
|
+
lrtri: "⊿",
|
|
2534
|
+
lsaquo: "‹",
|
|
2535
|
+
Lscr: "ℒ",
|
|
2536
|
+
lscr: "𝓁",
|
|
2537
|
+
Lsh: "↰",
|
|
2538
|
+
lsh: "↰",
|
|
2539
|
+
lsim: "≲",
|
|
2540
|
+
lsime: "⪍",
|
|
2541
|
+
lsimg: "⪏",
|
|
2542
|
+
lsqb: "[",
|
|
2543
|
+
lsquo: "‘",
|
|
2544
|
+
lsquor: "‚",
|
|
2545
|
+
Lstrok: "Ł",
|
|
2546
|
+
lstrok: "ł",
|
|
2547
|
+
Lt: "≪",
|
|
2548
|
+
LT: "<",
|
|
2549
|
+
lt: "<",
|
|
2550
|
+
ltcc: "⪦",
|
|
2551
|
+
ltcir: "⩹",
|
|
2552
|
+
ltdot: "⋖",
|
|
2553
|
+
lthree: "⋋",
|
|
2554
|
+
ltimes: "⋉",
|
|
2555
|
+
ltlarr: "⥶",
|
|
2556
|
+
ltquest: "⩻",
|
|
2557
|
+
ltri: "◃",
|
|
2558
|
+
ltrie: "⊴",
|
|
2559
|
+
ltrif: "◂",
|
|
2560
|
+
ltrPar: "⦖",
|
|
2561
|
+
lurdshar: "⥊",
|
|
2562
|
+
luruhar: "⥦",
|
|
2563
|
+
lvertneqq: "≨︀",
|
|
2564
|
+
lvnE: "≨︀",
|
|
1539
2565
|
macr: "¯",
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
2566
|
+
male: "♂",
|
|
2567
|
+
malt: "✠",
|
|
2568
|
+
maltese: "✠",
|
|
2569
|
+
Map: "⤅",
|
|
2570
|
+
map: "↦",
|
|
2571
|
+
mapsto: "↦",
|
|
2572
|
+
mapstodown: "↧",
|
|
2573
|
+
mapstoleft: "↤",
|
|
2574
|
+
mapstoup: "↥",
|
|
2575
|
+
marker: "▮",
|
|
2576
|
+
mcomma: "⨩",
|
|
2577
|
+
Mcy: "М",
|
|
2578
|
+
mcy: "м",
|
|
2579
|
+
mdash: "—",
|
|
2580
|
+
mDDot: "∺",
|
|
2581
|
+
measuredangle: "∡",
|
|
2582
|
+
MediumSpace: " ",
|
|
2583
|
+
Mellintrf: "ℳ",
|
|
2584
|
+
Mfr: "𝔐",
|
|
2585
|
+
mfr: "𝔪",
|
|
2586
|
+
mho: "℧",
|
|
1545
2587
|
micro: "µ",
|
|
1546
|
-
|
|
2588
|
+
mid: "∣",
|
|
2589
|
+
midast: "*",
|
|
2590
|
+
midcir: "⫰",
|
|
1547
2591
|
middot: "·",
|
|
1548
|
-
cedil: "¸",
|
|
1549
|
-
sup1: "¹",
|
|
1550
|
-
ordm: "º",
|
|
1551
|
-
raquo: "»",
|
|
1552
|
-
frac14: "¼",
|
|
1553
|
-
frac12: "½",
|
|
1554
|
-
frac34: "¾",
|
|
1555
|
-
iquest: "¿",
|
|
1556
|
-
times: "×",
|
|
1557
|
-
divide: "÷",
|
|
1558
|
-
forall: "∀",
|
|
1559
|
-
part: "∂",
|
|
1560
|
-
exist: "∃",
|
|
1561
|
-
empty: "∅",
|
|
1562
|
-
nabla: "∇",
|
|
1563
|
-
isin: "∈",
|
|
1564
|
-
notin: "∉",
|
|
1565
|
-
ni: "∋",
|
|
1566
|
-
prod: "∏",
|
|
1567
|
-
sum: "∑",
|
|
1568
2592
|
minus: "−",
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
2593
|
+
minusb: "⊟",
|
|
2594
|
+
minusd: "∸",
|
|
2595
|
+
minusdu: "⨪",
|
|
2596
|
+
MinusPlus: "∓",
|
|
2597
|
+
mlcp: "⫛",
|
|
2598
|
+
mldr: "…",
|
|
2599
|
+
mnplus: "∓",
|
|
2600
|
+
models: "⊧",
|
|
2601
|
+
Mopf: "𝕄",
|
|
2602
|
+
mopf: "𝕞",
|
|
2603
|
+
mp: "∓",
|
|
2604
|
+
Mscr: "ℳ",
|
|
2605
|
+
mscr: "𝓂",
|
|
2606
|
+
mstpos: "∾",
|
|
2607
|
+
Mu: "Μ",
|
|
2608
|
+
mu: "μ",
|
|
2609
|
+
multimap: "⊸",
|
|
2610
|
+
mumap: "⊸",
|
|
2611
|
+
nabla: "∇",
|
|
2612
|
+
Nacute: "Ń",
|
|
2613
|
+
nacute: "ń",
|
|
2614
|
+
nang: "∠⃒",
|
|
2615
|
+
nap: "≉",
|
|
2616
|
+
napE: "⩰̸",
|
|
2617
|
+
napid: "≋̸",
|
|
2618
|
+
napos: "ʼn",
|
|
2619
|
+
napprox: "≉",
|
|
2620
|
+
natur: "♮",
|
|
2621
|
+
natural: "♮",
|
|
2622
|
+
naturals: "ℕ",
|
|
2623
|
+
nbsp: " ",
|
|
2624
|
+
nbump: "≎̸",
|
|
2625
|
+
nbumpe: "≏̸",
|
|
2626
|
+
ncap: "⩃",
|
|
2627
|
+
Ncaron: "Ň",
|
|
2628
|
+
ncaron: "ň",
|
|
2629
|
+
Ncedil: "Ņ",
|
|
2630
|
+
ncedil: "ņ",
|
|
2631
|
+
ncong: "≇",
|
|
2632
|
+
ncongdot: "⩭̸",
|
|
2633
|
+
ncup: "⩂",
|
|
2634
|
+
Ncy: "Н",
|
|
2635
|
+
ncy: "н",
|
|
2636
|
+
ndash: "–",
|
|
1583
2637
|
ne: "≠",
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
2638
|
+
nearhk: "⤤",
|
|
2639
|
+
neArr: "⇗",
|
|
2640
|
+
nearr: "↗",
|
|
2641
|
+
nearrow: "↗",
|
|
2642
|
+
nedot: "≐̸",
|
|
2643
|
+
NegativeMediumSpace: "",
|
|
2644
|
+
NegativeThickSpace: "",
|
|
2645
|
+
NegativeThinSpace: "",
|
|
2646
|
+
NegativeVeryThinSpace: "",
|
|
2647
|
+
nequiv: "≢",
|
|
2648
|
+
nesear: "⤨",
|
|
2649
|
+
nesim: "≂̸",
|
|
2650
|
+
NestedGreaterGreater: "≫",
|
|
2651
|
+
NestedLessLess: "≪",
|
|
2652
|
+
NewLine: "\n",
|
|
2653
|
+
nexist: "∄",
|
|
2654
|
+
nexists: "∄",
|
|
2655
|
+
Nfr: "𝔑",
|
|
2656
|
+
nfr: "𝔫",
|
|
2657
|
+
ngE: "≧̸",
|
|
2658
|
+
nge: "≱",
|
|
2659
|
+
ngeq: "≱",
|
|
2660
|
+
ngeqq: "≧̸",
|
|
2661
|
+
ngeqslant: "⩾̸",
|
|
2662
|
+
nges: "⩾̸",
|
|
2663
|
+
nGg: "⋙̸",
|
|
2664
|
+
ngsim: "≵",
|
|
2665
|
+
nGt: "≫⃒",
|
|
2666
|
+
ngt: "≯",
|
|
2667
|
+
ngtr: "≯",
|
|
2668
|
+
nGtv: "≫̸",
|
|
2669
|
+
nhArr: "⇎",
|
|
2670
|
+
nharr: "↮",
|
|
2671
|
+
nhpar: "⫲",
|
|
2672
|
+
ni: "∋",
|
|
2673
|
+
nis: "⋼",
|
|
2674
|
+
nisd: "⋺",
|
|
2675
|
+
niv: "∋",
|
|
2676
|
+
NJcy: "Њ",
|
|
2677
|
+
njcy: "њ",
|
|
2678
|
+
nlArr: "⇍",
|
|
2679
|
+
nlarr: "↚",
|
|
2680
|
+
nldr: "‥",
|
|
2681
|
+
nlE: "≦̸",
|
|
2682
|
+
nle: "≰",
|
|
2683
|
+
nLeftarrow: "⇍",
|
|
2684
|
+
nleftarrow: "↚",
|
|
2685
|
+
nLeftrightarrow: "⇎",
|
|
2686
|
+
nleftrightarrow: "↮",
|
|
2687
|
+
nleq: "≰",
|
|
2688
|
+
nleqq: "≦̸",
|
|
2689
|
+
nleqslant: "⩽̸",
|
|
2690
|
+
nles: "⩽̸",
|
|
2691
|
+
nless: "≮",
|
|
2692
|
+
nLl: "⋘̸",
|
|
2693
|
+
nlsim: "≴",
|
|
2694
|
+
nLt: "≪⃒",
|
|
2695
|
+
nlt: "≮",
|
|
2696
|
+
nltri: "⋪",
|
|
2697
|
+
nltrie: "⋬",
|
|
2698
|
+
nLtv: "≪̸",
|
|
2699
|
+
nmid: "∤",
|
|
2700
|
+
NoBreak: "",
|
|
2701
|
+
NonBreakingSpace: " ",
|
|
2702
|
+
Nopf: "ℕ",
|
|
2703
|
+
nopf: "𝕟",
|
|
2704
|
+
Not: "⫬",
|
|
2705
|
+
not: "¬",
|
|
2706
|
+
NotCongruent: "≢",
|
|
2707
|
+
NotCupCap: "≭",
|
|
2708
|
+
NotDoubleVerticalBar: "∦",
|
|
2709
|
+
NotElement: "∉",
|
|
2710
|
+
NotEqual: "≠",
|
|
2711
|
+
NotEqualTilde: "≂̸",
|
|
2712
|
+
NotExists: "∄",
|
|
2713
|
+
NotGreater: "≯",
|
|
2714
|
+
NotGreaterEqual: "≱",
|
|
2715
|
+
NotGreaterFullEqual: "≧̸",
|
|
2716
|
+
NotGreaterGreater: "≫̸",
|
|
2717
|
+
NotGreaterLess: "≹",
|
|
2718
|
+
NotGreaterSlantEqual: "⩾̸",
|
|
2719
|
+
NotGreaterTilde: "≵",
|
|
2720
|
+
NotHumpDownHump: "≎̸",
|
|
2721
|
+
NotHumpEqual: "≏̸",
|
|
2722
|
+
notin: "∉",
|
|
2723
|
+
notindot: "⋵̸",
|
|
2724
|
+
notinE: "⋹̸",
|
|
2725
|
+
notinva: "∉",
|
|
2726
|
+
notinvb: "⋷",
|
|
2727
|
+
notinvc: "⋶",
|
|
2728
|
+
NotLeftTriangle: "⋪",
|
|
2729
|
+
NotLeftTriangleBar: "⧏̸",
|
|
2730
|
+
NotLeftTriangleEqual: "⋬",
|
|
2731
|
+
NotLess: "≮",
|
|
2732
|
+
NotLessEqual: "≰",
|
|
2733
|
+
NotLessGreater: "≸",
|
|
2734
|
+
NotLessLess: "≪̸",
|
|
2735
|
+
NotLessSlantEqual: "⩽̸",
|
|
2736
|
+
NotLessTilde: "≴",
|
|
2737
|
+
NotNestedGreaterGreater: "⪢̸",
|
|
2738
|
+
NotNestedLessLess: "⪡̸",
|
|
2739
|
+
notni: "∌",
|
|
2740
|
+
notniva: "∌",
|
|
2741
|
+
notnivb: "⋾",
|
|
2742
|
+
notnivc: "⋽",
|
|
2743
|
+
NotPrecedes: "⊀",
|
|
2744
|
+
NotPrecedesEqual: "⪯̸",
|
|
2745
|
+
NotPrecedesSlantEqual: "⋠",
|
|
2746
|
+
NotReverseElement: "∌",
|
|
2747
|
+
NotRightTriangle: "⋫",
|
|
2748
|
+
NotRightTriangleBar: "⧐̸",
|
|
2749
|
+
NotRightTriangleEqual: "⋭",
|
|
2750
|
+
NotSquareSubset: "⊏̸",
|
|
2751
|
+
NotSquareSubsetEqual: "⋢",
|
|
2752
|
+
NotSquareSuperset: "⊐̸",
|
|
2753
|
+
NotSquareSupersetEqual: "⋣",
|
|
2754
|
+
NotSubset: "⊂⃒",
|
|
2755
|
+
NotSubsetEqual: "⊈",
|
|
2756
|
+
NotSucceeds: "⊁",
|
|
2757
|
+
NotSucceedsEqual: "⪰̸",
|
|
2758
|
+
NotSucceedsSlantEqual: "⋡",
|
|
2759
|
+
NotSucceedsTilde: "≿̸",
|
|
2760
|
+
NotSuperset: "⊃⃒",
|
|
2761
|
+
NotSupersetEqual: "⊉",
|
|
2762
|
+
NotTilde: "≁",
|
|
2763
|
+
NotTildeEqual: "≄",
|
|
2764
|
+
NotTildeFullEqual: "≇",
|
|
2765
|
+
NotTildeTilde: "≉",
|
|
2766
|
+
NotVerticalBar: "∤",
|
|
2767
|
+
npar: "∦",
|
|
2768
|
+
nparallel: "∦",
|
|
2769
|
+
nparsl: "⫽⃥",
|
|
2770
|
+
npart: "∂̸",
|
|
2771
|
+
npolint: "⨔",
|
|
2772
|
+
npr: "⊀",
|
|
2773
|
+
nprcue: "⋠",
|
|
2774
|
+
npre: "⪯̸",
|
|
2775
|
+
nprec: "⊀",
|
|
2776
|
+
npreceq: "⪯̸",
|
|
2777
|
+
nrArr: "⇏",
|
|
2778
|
+
nrarr: "↛",
|
|
2779
|
+
nrarrc: "⤳̸",
|
|
2780
|
+
nrarrw: "↝̸",
|
|
2781
|
+
nRightarrow: "⇏",
|
|
2782
|
+
nrightarrow: "↛",
|
|
2783
|
+
nrtri: "⋫",
|
|
2784
|
+
nrtrie: "⋭",
|
|
2785
|
+
nsc: "⊁",
|
|
2786
|
+
nsccue: "⋡",
|
|
2787
|
+
nsce: "⪰̸",
|
|
2788
|
+
Nscr: "𝒩",
|
|
2789
|
+
nscr: "𝓃",
|
|
2790
|
+
nshortmid: "∤",
|
|
2791
|
+
nshortparallel: "∦",
|
|
2792
|
+
nsim: "≁",
|
|
2793
|
+
nsime: "≄",
|
|
2794
|
+
nsimeq: "≄",
|
|
2795
|
+
nsmid: "∤",
|
|
2796
|
+
nspar: "∦",
|
|
2797
|
+
nsqsube: "⋢",
|
|
2798
|
+
nsqsupe: "⋣",
|
|
1589
2799
|
nsub: "⊄",
|
|
1590
|
-
|
|
1591
|
-
|
|
2800
|
+
nsubE: "⫅̸",
|
|
2801
|
+
nsube: "⊈",
|
|
2802
|
+
nsubset: "⊂⃒",
|
|
2803
|
+
nsubseteq: "⊈",
|
|
2804
|
+
nsubseteqq: "⫅̸",
|
|
2805
|
+
nsucc: "⊁",
|
|
2806
|
+
nsucceq: "⪰̸",
|
|
2807
|
+
nsup: "⊅",
|
|
2808
|
+
nsupE: "⫆̸",
|
|
2809
|
+
nsupe: "⊉",
|
|
2810
|
+
nsupset: "⊃⃒",
|
|
2811
|
+
nsupseteq: "⊉",
|
|
2812
|
+
nsupseteqq: "⫆̸",
|
|
2813
|
+
ntgl: "≹",
|
|
2814
|
+
Ntilde: "Ñ",
|
|
2815
|
+
ntilde: "ñ",
|
|
2816
|
+
ntlg: "≸",
|
|
2817
|
+
ntriangleleft: "⋪",
|
|
2818
|
+
ntrianglelefteq: "⋬",
|
|
2819
|
+
ntriangleright: "⋫",
|
|
2820
|
+
ntrianglerighteq: "⋭",
|
|
2821
|
+
Nu: "Ν",
|
|
2822
|
+
nu: "ν",
|
|
2823
|
+
num: "#",
|
|
2824
|
+
numero: "№",
|
|
2825
|
+
numsp: " ",
|
|
2826
|
+
nvap: "≍⃒",
|
|
2827
|
+
nVDash: "⊯",
|
|
2828
|
+
nVdash: "⊮",
|
|
2829
|
+
nvDash: "⊭",
|
|
2830
|
+
nvdash: "⊬",
|
|
2831
|
+
nvge: "≥⃒",
|
|
2832
|
+
nvgt: ">⃒",
|
|
2833
|
+
nvHarr: "⤄",
|
|
2834
|
+
nvinfin: "⧞",
|
|
2835
|
+
nvlArr: "⤂",
|
|
2836
|
+
nvle: "≤⃒",
|
|
2837
|
+
nvlt: "<⃒",
|
|
2838
|
+
nvltrie: "⊴⃒",
|
|
2839
|
+
nvrArr: "⤃",
|
|
2840
|
+
nvrtrie: "⊵⃒",
|
|
2841
|
+
nvsim: "∼⃒",
|
|
2842
|
+
nwarhk: "⤣",
|
|
2843
|
+
nwArr: "⇖",
|
|
2844
|
+
nwarr: "↖",
|
|
2845
|
+
nwarrow: "↖",
|
|
2846
|
+
nwnear: "⤧",
|
|
2847
|
+
Oacute: "Ó",
|
|
2848
|
+
oacute: "ó",
|
|
2849
|
+
oast: "⊛",
|
|
2850
|
+
ocir: "⊚",
|
|
2851
|
+
Ocirc: "Ô",
|
|
2852
|
+
ocirc: "ô",
|
|
2853
|
+
Ocy: "О",
|
|
2854
|
+
ocy: "о",
|
|
2855
|
+
odash: "⊝",
|
|
2856
|
+
Odblac: "Ő",
|
|
2857
|
+
odblac: "ő",
|
|
2858
|
+
odiv: "⨸",
|
|
2859
|
+
odot: "⊙",
|
|
2860
|
+
odsold: "⦼",
|
|
2861
|
+
OElig: "Œ",
|
|
2862
|
+
oelig: "œ",
|
|
2863
|
+
ofcir: "⦿",
|
|
2864
|
+
Ofr: "𝔒",
|
|
2865
|
+
ofr: "𝔬",
|
|
2866
|
+
ogon: "˛",
|
|
2867
|
+
Ograve: "Ò",
|
|
2868
|
+
ograve: "ò",
|
|
2869
|
+
ogt: "⧁",
|
|
2870
|
+
ohbar: "⦵",
|
|
2871
|
+
ohm: "Ω",
|
|
2872
|
+
oint: "∮",
|
|
2873
|
+
olarr: "↺",
|
|
2874
|
+
olcir: "⦾",
|
|
2875
|
+
olcross: "⦻",
|
|
2876
|
+
oline: "‾",
|
|
2877
|
+
olt: "⧀",
|
|
2878
|
+
Omacr: "Ō",
|
|
2879
|
+
omacr: "ō",
|
|
2880
|
+
Omega: "Ω",
|
|
2881
|
+
omega: "ω",
|
|
2882
|
+
Omicron: "Ο",
|
|
2883
|
+
omicron: "ο",
|
|
2884
|
+
omid: "⦶",
|
|
2885
|
+
ominus: "⊖",
|
|
2886
|
+
Oopf: "𝕆",
|
|
2887
|
+
oopf: "𝕠",
|
|
2888
|
+
opar: "⦷",
|
|
2889
|
+
OpenCurlyDoubleQuote: "“",
|
|
2890
|
+
OpenCurlyQuote: "‘",
|
|
2891
|
+
operp: "⦹",
|
|
1592
2892
|
oplus: "⊕",
|
|
2893
|
+
Or: "⩔",
|
|
2894
|
+
or: "∨",
|
|
2895
|
+
orarr: "↻",
|
|
2896
|
+
ord: "⩝",
|
|
2897
|
+
order: "ℴ",
|
|
2898
|
+
orderof: "ℴ",
|
|
2899
|
+
ordf: "ª",
|
|
2900
|
+
ordm: "º",
|
|
2901
|
+
origof: "⊶",
|
|
2902
|
+
oror: "⩖",
|
|
2903
|
+
orslope: "⩗",
|
|
2904
|
+
orv: "⩛",
|
|
2905
|
+
oS: "Ⓢ",
|
|
2906
|
+
Oscr: "𝒪",
|
|
2907
|
+
oscr: "ℴ",
|
|
2908
|
+
Oslash: "Ø",
|
|
2909
|
+
oslash: "ø",
|
|
2910
|
+
osol: "⊘",
|
|
2911
|
+
Otilde: "Õ",
|
|
2912
|
+
otilde: "õ",
|
|
2913
|
+
Otimes: "⨷",
|
|
1593
2914
|
otimes: "⊗",
|
|
2915
|
+
otimesas: "⨶",
|
|
2916
|
+
Ouml: "Ö",
|
|
2917
|
+
ouml: "ö",
|
|
2918
|
+
ovbar: "⌽",
|
|
2919
|
+
OverBar: "‾",
|
|
2920
|
+
OverBrace: "⏞",
|
|
2921
|
+
OverBracket: "⎴",
|
|
2922
|
+
OverParenthesis: "⏜",
|
|
2923
|
+
par: "∥",
|
|
2924
|
+
para: "¶",
|
|
2925
|
+
parallel: "∥",
|
|
2926
|
+
parsim: "⫳",
|
|
2927
|
+
parsl: "⫽",
|
|
2928
|
+
part: "∂",
|
|
2929
|
+
PartialD: "∂",
|
|
2930
|
+
Pcy: "П",
|
|
2931
|
+
pcy: "п",
|
|
2932
|
+
percnt: "%",
|
|
2933
|
+
period: ".",
|
|
2934
|
+
permil: "‰",
|
|
1594
2935
|
perp: "⊥",
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
Gamma: "Γ",
|
|
1599
|
-
Delta: "Δ",
|
|
1600
|
-
Epsilon: "Ε",
|
|
1601
|
-
Zeta: "Ζ",
|
|
1602
|
-
Eta: "Η",
|
|
1603
|
-
Theta: "Θ",
|
|
1604
|
-
Iota: "Ι",
|
|
1605
|
-
Kappa: "Κ",
|
|
1606
|
-
Lambda: "Λ",
|
|
1607
|
-
Mu: "Μ",
|
|
1608
|
-
Nu: "Ν",
|
|
1609
|
-
Xi: "Ξ",
|
|
1610
|
-
Omicron: "Ο",
|
|
1611
|
-
Pi: "Π",
|
|
1612
|
-
Rho: "Ρ",
|
|
1613
|
-
Sigma: "Σ",
|
|
1614
|
-
Tau: "Τ",
|
|
1615
|
-
Upsilon: "Υ",
|
|
2936
|
+
pertenk: "‱",
|
|
2937
|
+
Pfr: "𝔓",
|
|
2938
|
+
pfr: "𝔭",
|
|
1616
2939
|
Phi: "Φ",
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
gamma: "γ",
|
|
1623
|
-
delta: "δ",
|
|
1624
|
-
epsilon: "ε",
|
|
1625
|
-
zeta: "ζ",
|
|
1626
|
-
eta: "η",
|
|
1627
|
-
theta: "θ",
|
|
1628
|
-
iota: "ι",
|
|
1629
|
-
kappa: "κ",
|
|
1630
|
-
lambda: "λ",
|
|
1631
|
-
mu: "μ",
|
|
1632
|
-
nu: "ν",
|
|
1633
|
-
xi: "ξ",
|
|
1634
|
-
omicron: "ο",
|
|
2940
|
+
phi: "φ",
|
|
2941
|
+
phiv: "ϕ",
|
|
2942
|
+
phmmat: "ℳ",
|
|
2943
|
+
phone: "☎",
|
|
2944
|
+
Pi: "Π",
|
|
1635
2945
|
pi: "π",
|
|
2946
|
+
pitchfork: "⋔",
|
|
2947
|
+
piv: "ϖ",
|
|
2948
|
+
planck: "ℏ",
|
|
2949
|
+
planckh: "ℎ",
|
|
2950
|
+
plankv: "ℏ",
|
|
2951
|
+
plus: "+",
|
|
2952
|
+
plusacir: "⨣",
|
|
2953
|
+
plusb: "⊞",
|
|
2954
|
+
pluscir: "⨢",
|
|
2955
|
+
plusdo: "∔",
|
|
2956
|
+
plusdu: "⨥",
|
|
2957
|
+
pluse: "⩲",
|
|
2958
|
+
PlusMinus: "±",
|
|
2959
|
+
plusmn: "±",
|
|
2960
|
+
plussim: "⨦",
|
|
2961
|
+
plustwo: "⨧",
|
|
2962
|
+
pm: "±",
|
|
2963
|
+
Poincareplane: "ℌ",
|
|
2964
|
+
pointint: "⨕",
|
|
2965
|
+
Popf: "ℙ",
|
|
2966
|
+
popf: "𝕡",
|
|
2967
|
+
pound: "£",
|
|
2968
|
+
Pr: "⪻",
|
|
2969
|
+
pr: "≺",
|
|
2970
|
+
prap: "⪷",
|
|
2971
|
+
prcue: "≼",
|
|
2972
|
+
prE: "⪳",
|
|
2973
|
+
pre: "⪯",
|
|
2974
|
+
prec: "≺",
|
|
2975
|
+
precapprox: "⪷",
|
|
2976
|
+
preccurlyeq: "≼",
|
|
2977
|
+
Precedes: "≺",
|
|
2978
|
+
PrecedesEqual: "⪯",
|
|
2979
|
+
PrecedesSlantEqual: "≼",
|
|
2980
|
+
PrecedesTilde: "≾",
|
|
2981
|
+
preceq: "⪯",
|
|
2982
|
+
precnapprox: "⪹",
|
|
2983
|
+
precneqq: "⪵",
|
|
2984
|
+
precnsim: "⋨",
|
|
2985
|
+
precsim: "≾",
|
|
2986
|
+
Prime: "″",
|
|
2987
|
+
prime: "′",
|
|
2988
|
+
primes: "ℙ",
|
|
2989
|
+
prnap: "⪹",
|
|
2990
|
+
prnE: "⪵",
|
|
2991
|
+
prnsim: "⋨",
|
|
2992
|
+
prod: "∏",
|
|
2993
|
+
Product: "∏",
|
|
2994
|
+
profalar: "⌮",
|
|
2995
|
+
profline: "⌒",
|
|
2996
|
+
profsurf: "⌓",
|
|
2997
|
+
prop: "∝",
|
|
2998
|
+
Proportion: "∷",
|
|
2999
|
+
Proportional: "∝",
|
|
3000
|
+
propto: "∝",
|
|
3001
|
+
prsim: "≾",
|
|
3002
|
+
prurel: "⊰",
|
|
3003
|
+
Pscr: "𝒫",
|
|
3004
|
+
pscr: "𝓅",
|
|
3005
|
+
Psi: "Ψ",
|
|
3006
|
+
psi: "ψ",
|
|
3007
|
+
puncsp: " ",
|
|
3008
|
+
Qfr: "𝔔",
|
|
3009
|
+
qfr: "𝔮",
|
|
3010
|
+
qint: "⨌",
|
|
3011
|
+
Qopf: "ℚ",
|
|
3012
|
+
qopf: "𝕢",
|
|
3013
|
+
qprime: "⁗",
|
|
3014
|
+
Qscr: "𝒬",
|
|
3015
|
+
qscr: "𝓆",
|
|
3016
|
+
quaternions: "ℍ",
|
|
3017
|
+
quatint: "⨖",
|
|
3018
|
+
quest: "?",
|
|
3019
|
+
questeq: "≟",
|
|
3020
|
+
QUOT: '"',
|
|
3021
|
+
quot: '"',
|
|
3022
|
+
rAarr: "⇛",
|
|
3023
|
+
race: "∽̱",
|
|
3024
|
+
Racute: "Ŕ",
|
|
3025
|
+
racute: "ŕ",
|
|
3026
|
+
radic: "√",
|
|
3027
|
+
raemptyv: "⦳",
|
|
3028
|
+
Rang: "⟫",
|
|
3029
|
+
rang: "⟩",
|
|
3030
|
+
rangd: "⦒",
|
|
3031
|
+
range: "⦥",
|
|
3032
|
+
rangle: "⟩",
|
|
3033
|
+
raquo: "»",
|
|
3034
|
+
Rarr: "↠",
|
|
3035
|
+
rArr: "⇒",
|
|
3036
|
+
rarr: "→",
|
|
3037
|
+
rarrap: "⥵",
|
|
3038
|
+
rarrb: "⇥",
|
|
3039
|
+
rarrbfs: "⤠",
|
|
3040
|
+
rarrc: "⤳",
|
|
3041
|
+
rarrfs: "⤞",
|
|
3042
|
+
rarrhk: "↪",
|
|
3043
|
+
rarrlp: "↬",
|
|
3044
|
+
rarrpl: "⥅",
|
|
3045
|
+
rarrsim: "⥴",
|
|
3046
|
+
Rarrtl: "⤖",
|
|
3047
|
+
rarrtl: "↣",
|
|
3048
|
+
rarrw: "↝",
|
|
3049
|
+
rAtail: "⤜",
|
|
3050
|
+
ratail: "⤚",
|
|
3051
|
+
ratio: "∶",
|
|
3052
|
+
rationals: "ℚ",
|
|
3053
|
+
RBarr: "⤐",
|
|
3054
|
+
rBarr: "⤏",
|
|
3055
|
+
rbarr: "⤍",
|
|
3056
|
+
rbbrk: "❳",
|
|
3057
|
+
rbrace: "}",
|
|
3058
|
+
rbrack: "]",
|
|
3059
|
+
rbrke: "⦌",
|
|
3060
|
+
rbrksld: "⦎",
|
|
3061
|
+
rbrkslu: "⦐",
|
|
3062
|
+
Rcaron: "Ř",
|
|
3063
|
+
rcaron: "ř",
|
|
3064
|
+
Rcedil: "Ŗ",
|
|
3065
|
+
rcedil: "ŗ",
|
|
3066
|
+
rceil: "⌉",
|
|
3067
|
+
rcub: "}",
|
|
3068
|
+
Rcy: "Р",
|
|
3069
|
+
rcy: "р",
|
|
3070
|
+
rdca: "⤷",
|
|
3071
|
+
rdldhar: "⥩",
|
|
3072
|
+
rdquo: "”",
|
|
3073
|
+
rdquor: "”",
|
|
3074
|
+
rdsh: "↳",
|
|
3075
|
+
Re: "ℜ",
|
|
3076
|
+
real: "ℜ",
|
|
3077
|
+
realine: "ℛ",
|
|
3078
|
+
realpart: "ℜ",
|
|
3079
|
+
reals: "ℝ",
|
|
3080
|
+
rect: "▭",
|
|
3081
|
+
REG: "®",
|
|
3082
|
+
reg: "®",
|
|
3083
|
+
ReverseElement: "∋",
|
|
3084
|
+
ReverseEquilibrium: "⇋",
|
|
3085
|
+
ReverseUpEquilibrium: "⥯",
|
|
3086
|
+
rfisht: "⥽",
|
|
3087
|
+
rfloor: "⌋",
|
|
3088
|
+
Rfr: "ℜ",
|
|
3089
|
+
rfr: "𝔯",
|
|
3090
|
+
rHar: "⥤",
|
|
3091
|
+
rhard: "⇁",
|
|
3092
|
+
rharu: "⇀",
|
|
3093
|
+
rharul: "⥬",
|
|
3094
|
+
Rho: "Ρ",
|
|
1636
3095
|
rho: "ρ",
|
|
1637
|
-
|
|
3096
|
+
rhov: "ϱ",
|
|
3097
|
+
RightAngleBracket: "⟩",
|
|
3098
|
+
RightArrow: "→",
|
|
3099
|
+
Rightarrow: "⇒",
|
|
3100
|
+
rightarrow: "→",
|
|
3101
|
+
RightArrowBar: "⇥",
|
|
3102
|
+
RightArrowLeftArrow: "⇄",
|
|
3103
|
+
rightarrowtail: "↣",
|
|
3104
|
+
RightCeiling: "⌉",
|
|
3105
|
+
RightDoubleBracket: "⟧",
|
|
3106
|
+
RightDownTeeVector: "⥝",
|
|
3107
|
+
RightDownVector: "⇂",
|
|
3108
|
+
RightDownVectorBar: "⥕",
|
|
3109
|
+
RightFloor: "⌋",
|
|
3110
|
+
rightharpoondown: "⇁",
|
|
3111
|
+
rightharpoonup: "⇀",
|
|
3112
|
+
rightleftarrows: "⇄",
|
|
3113
|
+
rightleftharpoons: "⇌",
|
|
3114
|
+
rightrightarrows: "⇉",
|
|
3115
|
+
rightsquigarrow: "↝",
|
|
3116
|
+
RightTee: "⊢",
|
|
3117
|
+
RightTeeArrow: "↦",
|
|
3118
|
+
RightTeeVector: "⥛",
|
|
3119
|
+
rightthreetimes: "⋌",
|
|
3120
|
+
RightTriangle: "⊳",
|
|
3121
|
+
RightTriangleBar: "⧐",
|
|
3122
|
+
RightTriangleEqual: "⊵",
|
|
3123
|
+
RightUpDownVector: "⥏",
|
|
3124
|
+
RightUpTeeVector: "⥜",
|
|
3125
|
+
RightUpVector: "↾",
|
|
3126
|
+
RightUpVectorBar: "⥔",
|
|
3127
|
+
RightVector: "⇀",
|
|
3128
|
+
RightVectorBar: "⥓",
|
|
3129
|
+
ring: "˚",
|
|
3130
|
+
risingdotseq: "≓",
|
|
3131
|
+
rlarr: "⇄",
|
|
3132
|
+
rlhar: "⇌",
|
|
3133
|
+
rlm: "",
|
|
3134
|
+
rmoust: "⎱",
|
|
3135
|
+
rmoustache: "⎱",
|
|
3136
|
+
rnmid: "⫮",
|
|
3137
|
+
roang: "⟭",
|
|
3138
|
+
roarr: "⇾",
|
|
3139
|
+
robrk: "⟧",
|
|
3140
|
+
ropar: "⦆",
|
|
3141
|
+
Ropf: "ℝ",
|
|
3142
|
+
ropf: "𝕣",
|
|
3143
|
+
roplus: "⨮",
|
|
3144
|
+
rotimes: "⨵",
|
|
3145
|
+
RoundImplies: "⥰",
|
|
3146
|
+
rpar: ")",
|
|
3147
|
+
rpargt: "⦔",
|
|
3148
|
+
rppolint: "⨒",
|
|
3149
|
+
rrarr: "⇉",
|
|
3150
|
+
Rrightarrow: "⇛",
|
|
3151
|
+
rsaquo: "›",
|
|
3152
|
+
Rscr: "ℛ",
|
|
3153
|
+
rscr: "𝓇",
|
|
3154
|
+
Rsh: "↱",
|
|
3155
|
+
rsh: "↱",
|
|
3156
|
+
rsqb: "]",
|
|
3157
|
+
rsquo: "’",
|
|
3158
|
+
rsquor: "’",
|
|
3159
|
+
rthree: "⋌",
|
|
3160
|
+
rtimes: "⋊",
|
|
3161
|
+
rtri: "▹",
|
|
3162
|
+
rtrie: "⊵",
|
|
3163
|
+
rtrif: "▸",
|
|
3164
|
+
rtriltri: "⧎",
|
|
3165
|
+
RuleDelayed: "⧴",
|
|
3166
|
+
ruluhar: "⥨",
|
|
3167
|
+
rx: "℞",
|
|
3168
|
+
Sacute: "Ś",
|
|
3169
|
+
sacute: "ś",
|
|
3170
|
+
sbquo: "‚",
|
|
3171
|
+
Sc: "⪼",
|
|
3172
|
+
sc: "≻",
|
|
3173
|
+
scap: "⪸",
|
|
3174
|
+
Scaron: "Š",
|
|
3175
|
+
scaron: "š",
|
|
3176
|
+
sccue: "≽",
|
|
3177
|
+
scE: "⪴",
|
|
3178
|
+
sce: "⪰",
|
|
3179
|
+
Scedil: "Ş",
|
|
3180
|
+
scedil: "ş",
|
|
3181
|
+
Scirc: "Ŝ",
|
|
3182
|
+
scirc: "ŝ",
|
|
3183
|
+
scnap: "⪺",
|
|
3184
|
+
scnE: "⪶",
|
|
3185
|
+
scnsim: "⋩",
|
|
3186
|
+
scpolint: "⨓",
|
|
3187
|
+
scsim: "≿",
|
|
3188
|
+
Scy: "С",
|
|
3189
|
+
scy: "с",
|
|
3190
|
+
sdot: "⋅",
|
|
3191
|
+
sdotb: "⊡",
|
|
3192
|
+
sdote: "⩦",
|
|
3193
|
+
searhk: "⤥",
|
|
3194
|
+
seArr: "⇘",
|
|
3195
|
+
searr: "↘",
|
|
3196
|
+
searrow: "↘",
|
|
3197
|
+
sect: "§",
|
|
3198
|
+
semi: ";",
|
|
3199
|
+
seswar: "⤩",
|
|
3200
|
+
setminus: "∖",
|
|
3201
|
+
setmn: "∖",
|
|
3202
|
+
sext: "✶",
|
|
3203
|
+
Sfr: "𝔖",
|
|
3204
|
+
sfr: "𝔰",
|
|
3205
|
+
sfrown: "⌢",
|
|
3206
|
+
sharp: "♯",
|
|
3207
|
+
SHCHcy: "Щ",
|
|
3208
|
+
shchcy: "щ",
|
|
3209
|
+
SHcy: "Ш",
|
|
3210
|
+
shcy: "ш",
|
|
3211
|
+
ShortDownArrow: "↓",
|
|
3212
|
+
ShortLeftArrow: "←",
|
|
3213
|
+
shortmid: "∣",
|
|
3214
|
+
shortparallel: "∥",
|
|
3215
|
+
ShortRightArrow: "→",
|
|
3216
|
+
ShortUpArrow: "↑",
|
|
3217
|
+
shy: "",
|
|
3218
|
+
Sigma: "Σ",
|
|
1638
3219
|
sigma: "σ",
|
|
3220
|
+
sigmaf: "ς",
|
|
3221
|
+
sigmav: "ς",
|
|
3222
|
+
sim: "∼",
|
|
3223
|
+
simdot: "⩪",
|
|
3224
|
+
sime: "≃",
|
|
3225
|
+
simeq: "≃",
|
|
3226
|
+
simg: "⪞",
|
|
3227
|
+
simgE: "⪠",
|
|
3228
|
+
siml: "⪝",
|
|
3229
|
+
simlE: "⪟",
|
|
3230
|
+
simne: "≆",
|
|
3231
|
+
simplus: "⨤",
|
|
3232
|
+
simrarr: "⥲",
|
|
3233
|
+
slarr: "←",
|
|
3234
|
+
SmallCircle: "∘",
|
|
3235
|
+
smallsetminus: "∖",
|
|
3236
|
+
smashp: "⨳",
|
|
3237
|
+
smeparsl: "⧤",
|
|
3238
|
+
smid: "∣",
|
|
3239
|
+
smile: "⌣",
|
|
3240
|
+
smt: "⪪",
|
|
3241
|
+
smte: "⪬",
|
|
3242
|
+
smtes: "⪬︀",
|
|
3243
|
+
SOFTcy: "Ь",
|
|
3244
|
+
softcy: "ь",
|
|
3245
|
+
sol: "/",
|
|
3246
|
+
solb: "⧄",
|
|
3247
|
+
solbar: "⌿",
|
|
3248
|
+
Sopf: "𝕊",
|
|
3249
|
+
sopf: "𝕤",
|
|
3250
|
+
spades: "♠",
|
|
3251
|
+
spadesuit: "♠",
|
|
3252
|
+
spar: "∥",
|
|
3253
|
+
sqcap: "⊓",
|
|
3254
|
+
sqcaps: "⊓︀",
|
|
3255
|
+
sqcup: "⊔",
|
|
3256
|
+
sqcups: "⊔︀",
|
|
3257
|
+
Sqrt: "√",
|
|
3258
|
+
sqsub: "⊏",
|
|
3259
|
+
sqsube: "⊑",
|
|
3260
|
+
sqsubset: "⊏",
|
|
3261
|
+
sqsubseteq: "⊑",
|
|
3262
|
+
sqsup: "⊐",
|
|
3263
|
+
sqsupe: "⊒",
|
|
3264
|
+
sqsupset: "⊐",
|
|
3265
|
+
sqsupseteq: "⊒",
|
|
3266
|
+
squ: "□",
|
|
3267
|
+
Square: "□",
|
|
3268
|
+
square: "□",
|
|
3269
|
+
SquareIntersection: "⊓",
|
|
3270
|
+
SquareSubset: "⊏",
|
|
3271
|
+
SquareSubsetEqual: "⊑",
|
|
3272
|
+
SquareSuperset: "⊐",
|
|
3273
|
+
SquareSupersetEqual: "⊒",
|
|
3274
|
+
SquareUnion: "⊔",
|
|
3275
|
+
squarf: "▪",
|
|
3276
|
+
squf: "▪",
|
|
3277
|
+
srarr: "→",
|
|
3278
|
+
Sscr: "𝒮",
|
|
3279
|
+
sscr: "𝓈",
|
|
3280
|
+
ssetmn: "∖",
|
|
3281
|
+
ssmile: "⌣",
|
|
3282
|
+
sstarf: "⋆",
|
|
3283
|
+
Star: "⋆",
|
|
3284
|
+
star: "☆",
|
|
3285
|
+
starf: "★",
|
|
3286
|
+
straightepsilon: "ϵ",
|
|
3287
|
+
straightphi: "ϕ",
|
|
3288
|
+
strns: "¯",
|
|
3289
|
+
Sub: "⋐",
|
|
3290
|
+
sub: "⊂",
|
|
3291
|
+
subdot: "⪽",
|
|
3292
|
+
subE: "⫅",
|
|
3293
|
+
sube: "⊆",
|
|
3294
|
+
subedot: "⫃",
|
|
3295
|
+
submult: "⫁",
|
|
3296
|
+
subnE: "⫋",
|
|
3297
|
+
subne: "⊊",
|
|
3298
|
+
subplus: "⪿",
|
|
3299
|
+
subrarr: "⥹",
|
|
3300
|
+
Subset: "⋐",
|
|
3301
|
+
subset: "⊂",
|
|
3302
|
+
subseteq: "⊆",
|
|
3303
|
+
subseteqq: "⫅",
|
|
3304
|
+
SubsetEqual: "⊆",
|
|
3305
|
+
subsetneq: "⊊",
|
|
3306
|
+
subsetneqq: "⫋",
|
|
3307
|
+
subsim: "⫇",
|
|
3308
|
+
subsub: "⫕",
|
|
3309
|
+
subsup: "⫓",
|
|
3310
|
+
succ: "≻",
|
|
3311
|
+
succapprox: "⪸",
|
|
3312
|
+
succcurlyeq: "≽",
|
|
3313
|
+
Succeeds: "≻",
|
|
3314
|
+
SucceedsEqual: "⪰",
|
|
3315
|
+
SucceedsSlantEqual: "≽",
|
|
3316
|
+
SucceedsTilde: "≿",
|
|
3317
|
+
succeq: "⪰",
|
|
3318
|
+
succnapprox: "⪺",
|
|
3319
|
+
succneqq: "⪶",
|
|
3320
|
+
succnsim: "⋩",
|
|
3321
|
+
succsim: "≿",
|
|
3322
|
+
SuchThat: "∋",
|
|
3323
|
+
Sum: "∑",
|
|
3324
|
+
sum: "∑",
|
|
3325
|
+
sung: "♪",
|
|
3326
|
+
Sup: "⋑",
|
|
3327
|
+
sup: "⊃",
|
|
3328
|
+
sup1: "¹",
|
|
3329
|
+
sup2: "²",
|
|
3330
|
+
sup3: "³",
|
|
3331
|
+
supdot: "⪾",
|
|
3332
|
+
supdsub: "⫘",
|
|
3333
|
+
supE: "⫆",
|
|
3334
|
+
supe: "⊇",
|
|
3335
|
+
supedot: "⫄",
|
|
3336
|
+
Superset: "⊃",
|
|
3337
|
+
SupersetEqual: "⊇",
|
|
3338
|
+
suphsol: "⟉",
|
|
3339
|
+
suphsub: "⫗",
|
|
3340
|
+
suplarr: "⥻",
|
|
3341
|
+
supmult: "⫂",
|
|
3342
|
+
supnE: "⫌",
|
|
3343
|
+
supne: "⊋",
|
|
3344
|
+
supplus: "⫀",
|
|
3345
|
+
Supset: "⋑",
|
|
3346
|
+
supset: "⊃",
|
|
3347
|
+
supseteq: "⊇",
|
|
3348
|
+
supseteqq: "⫆",
|
|
3349
|
+
supsetneq: "⊋",
|
|
3350
|
+
supsetneqq: "⫌",
|
|
3351
|
+
supsim: "⫈",
|
|
3352
|
+
supsub: "⫔",
|
|
3353
|
+
supsup: "⫖",
|
|
3354
|
+
swarhk: "⤦",
|
|
3355
|
+
swArr: "⇙",
|
|
3356
|
+
swarr: "↙",
|
|
3357
|
+
swarrow: "↙",
|
|
3358
|
+
swnwar: "⤪",
|
|
3359
|
+
szlig: "ß",
|
|
3360
|
+
Tab: " ",
|
|
3361
|
+
target: "⌖",
|
|
3362
|
+
Tau: "Τ",
|
|
1639
3363
|
tau: "τ",
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
3364
|
+
tbrk: "⎴",
|
|
3365
|
+
Tcaron: "Ť",
|
|
3366
|
+
tcaron: "ť",
|
|
3367
|
+
Tcedil: "Ţ",
|
|
3368
|
+
tcedil: "ţ",
|
|
3369
|
+
Tcy: "Т",
|
|
3370
|
+
tcy: "т",
|
|
3371
|
+
tdot: "⃛",
|
|
3372
|
+
telrec: "⌕",
|
|
3373
|
+
Tfr: "𝔗",
|
|
3374
|
+
tfr: "𝔱",
|
|
3375
|
+
there4: "∴",
|
|
3376
|
+
Therefore: "∴",
|
|
3377
|
+
therefore: "∴",
|
|
3378
|
+
Theta: "Θ",
|
|
3379
|
+
theta: "θ",
|
|
1645
3380
|
thetasym: "ϑ",
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
Scaron: "Š",
|
|
1651
|
-
scaron: "š",
|
|
1652
|
-
Yuml: "Ÿ",
|
|
1653
|
-
fnof: "ƒ",
|
|
1654
|
-
circ: "ˆ",
|
|
1655
|
-
tilde: "˜",
|
|
1656
|
-
ensp: " ",
|
|
1657
|
-
emsp: " ",
|
|
3381
|
+
thetav: "ϑ",
|
|
3382
|
+
thickapprox: "≈",
|
|
3383
|
+
thicksim: "∼",
|
|
3384
|
+
ThickSpace: " ",
|
|
1658
3385
|
thinsp: " ",
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
3386
|
+
ThinSpace: " ",
|
|
3387
|
+
thkap: "≈",
|
|
3388
|
+
thksim: "∼",
|
|
3389
|
+
THORN: "Þ",
|
|
3390
|
+
thorn: "þ",
|
|
3391
|
+
Tilde: "∼",
|
|
3392
|
+
tilde: "˜",
|
|
3393
|
+
TildeEqual: "≃",
|
|
3394
|
+
TildeFullEqual: "≅",
|
|
3395
|
+
TildeTilde: "≈",
|
|
3396
|
+
times: "×",
|
|
3397
|
+
timesb: "⊠",
|
|
3398
|
+
timesbar: "⨱",
|
|
3399
|
+
timesd: "⨰",
|
|
3400
|
+
tint: "∭",
|
|
3401
|
+
toea: "⤨",
|
|
3402
|
+
top: "⊤",
|
|
3403
|
+
topbot: "⌶",
|
|
3404
|
+
topcir: "⫱",
|
|
3405
|
+
Topf: "𝕋",
|
|
3406
|
+
topf: "𝕥",
|
|
3407
|
+
topfork: "⫚",
|
|
3408
|
+
tosa: "⤩",
|
|
3409
|
+
tprime: "‴",
|
|
3410
|
+
TRADE: "™",
|
|
1682
3411
|
trade: "™",
|
|
1683
|
-
|
|
3412
|
+
triangle: "▵",
|
|
3413
|
+
triangledown: "▿",
|
|
3414
|
+
triangleleft: "◃",
|
|
3415
|
+
trianglelefteq: "⊴",
|
|
3416
|
+
triangleq: "≜",
|
|
3417
|
+
triangleright: "▹",
|
|
3418
|
+
trianglerighteq: "⊵",
|
|
3419
|
+
tridot: "◬",
|
|
3420
|
+
trie: "≜",
|
|
3421
|
+
triminus: "⨺",
|
|
3422
|
+
TripleDot: "⃛",
|
|
3423
|
+
triplus: "⨹",
|
|
3424
|
+
trisb: "⧍",
|
|
3425
|
+
tritime: "⨻",
|
|
3426
|
+
trpezium: "⏢",
|
|
3427
|
+
Tscr: "𝒯",
|
|
3428
|
+
tscr: "𝓉",
|
|
3429
|
+
TScy: "Ц",
|
|
3430
|
+
tscy: "ц",
|
|
3431
|
+
TSHcy: "Ћ",
|
|
3432
|
+
tshcy: "ћ",
|
|
3433
|
+
Tstrok: "Ŧ",
|
|
3434
|
+
tstrok: "ŧ",
|
|
3435
|
+
twixt: "≬",
|
|
3436
|
+
twoheadleftarrow: "↞",
|
|
3437
|
+
twoheadrightarrow: "↠",
|
|
3438
|
+
Uacute: "Ú",
|
|
3439
|
+
uacute: "ú",
|
|
3440
|
+
Uarr: "↟",
|
|
3441
|
+
uArr: "⇑",
|
|
1684
3442
|
uarr: "↑",
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
3443
|
+
Uarrocir: "⥉",
|
|
3444
|
+
Ubrcy: "Ў",
|
|
3445
|
+
ubrcy: "ў",
|
|
3446
|
+
Ubreve: "Ŭ",
|
|
3447
|
+
ubreve: "ŭ",
|
|
3448
|
+
Ucirc: "Û",
|
|
3449
|
+
ucirc: "û",
|
|
3450
|
+
Ucy: "У",
|
|
3451
|
+
ucy: "у",
|
|
3452
|
+
udarr: "⇅",
|
|
3453
|
+
Udblac: "Ű",
|
|
3454
|
+
udblac: "ű",
|
|
3455
|
+
udhar: "⥮",
|
|
3456
|
+
ufisht: "⥾",
|
|
3457
|
+
Ufr: "𝔘",
|
|
3458
|
+
ufr: "𝔲",
|
|
3459
|
+
Ugrave: "Ù",
|
|
3460
|
+
ugrave: "ù",
|
|
3461
|
+
uHar: "⥣",
|
|
3462
|
+
uharl: "↿",
|
|
3463
|
+
uharr: "↾",
|
|
3464
|
+
uhblk: "▀",
|
|
3465
|
+
ulcorn: "⌜",
|
|
3466
|
+
ulcorner: "⌜",
|
|
3467
|
+
ulcrop: "⌏",
|
|
3468
|
+
ultri: "◸",
|
|
3469
|
+
Umacr: "Ū",
|
|
3470
|
+
umacr: "ū",
|
|
3471
|
+
uml: "¨",
|
|
3472
|
+
UnderBar: "_",
|
|
3473
|
+
UnderBrace: "⏟",
|
|
3474
|
+
UnderBracket: "⎵",
|
|
3475
|
+
UnderParenthesis: "⏝",
|
|
3476
|
+
Union: "⋃",
|
|
3477
|
+
UnionPlus: "⊎",
|
|
3478
|
+
Uogon: "Ų",
|
|
3479
|
+
uogon: "ų",
|
|
3480
|
+
Uopf: "𝕌",
|
|
3481
|
+
uopf: "𝕦",
|
|
3482
|
+
UpArrow: "↑",
|
|
3483
|
+
Uparrow: "⇑",
|
|
3484
|
+
uparrow: "↑",
|
|
3485
|
+
UpArrowBar: "⤒",
|
|
3486
|
+
UpArrowDownArrow: "⇅",
|
|
3487
|
+
UpDownArrow: "↕",
|
|
3488
|
+
Updownarrow: "⇕",
|
|
3489
|
+
updownarrow: "↕",
|
|
3490
|
+
UpEquilibrium: "⥮",
|
|
3491
|
+
upharpoonleft: "↿",
|
|
3492
|
+
upharpoonright: "↾",
|
|
3493
|
+
uplus: "⊎",
|
|
3494
|
+
UpperLeftArrow: "↖",
|
|
3495
|
+
UpperRightArrow: "↗",
|
|
3496
|
+
Upsi: "ϒ",
|
|
3497
|
+
upsi: "υ",
|
|
3498
|
+
upsih: "ϒ",
|
|
3499
|
+
Upsilon: "Υ",
|
|
3500
|
+
upsilon: "υ",
|
|
3501
|
+
UpTee: "⊥",
|
|
3502
|
+
UpTeeArrow: "↥",
|
|
3503
|
+
upuparrows: "⇈",
|
|
3504
|
+
urcorn: "⌝",
|
|
3505
|
+
urcorner: "⌝",
|
|
3506
|
+
urcrop: "⌎",
|
|
3507
|
+
Uring: "Ů",
|
|
3508
|
+
uring: "ů",
|
|
3509
|
+
urtri: "◹",
|
|
3510
|
+
Uscr: "𝒰",
|
|
3511
|
+
uscr: "𝓊",
|
|
3512
|
+
utdot: "⋰",
|
|
3513
|
+
Utilde: "Ũ",
|
|
3514
|
+
utilde: "ũ",
|
|
3515
|
+
utri: "▵",
|
|
3516
|
+
utrif: "▴",
|
|
3517
|
+
uuarr: "⇈",
|
|
3518
|
+
Uuml: "Ü",
|
|
3519
|
+
uuml: "ü",
|
|
3520
|
+
uwangle: "⦧",
|
|
3521
|
+
vangrt: "⦜",
|
|
3522
|
+
varepsilon: "ϵ",
|
|
3523
|
+
varkappa: "ϰ",
|
|
3524
|
+
varnothing: "∅",
|
|
3525
|
+
varphi: "ϕ",
|
|
3526
|
+
varpi: "ϖ",
|
|
3527
|
+
varpropto: "∝",
|
|
3528
|
+
vArr: "⇕",
|
|
3529
|
+
varr: "↕",
|
|
3530
|
+
varrho: "ϱ",
|
|
3531
|
+
varsigma: "ς",
|
|
3532
|
+
varsubsetneq: "⊊︀",
|
|
3533
|
+
varsubsetneqq: "⫋︀",
|
|
3534
|
+
varsupsetneq: "⊋︀",
|
|
3535
|
+
varsupsetneqq: "⫌︀",
|
|
3536
|
+
vartheta: "ϑ",
|
|
3537
|
+
vartriangleleft: "⊲",
|
|
3538
|
+
vartriangleright: "⊳",
|
|
3539
|
+
Vbar: "⫫",
|
|
3540
|
+
vBar: "⫨",
|
|
3541
|
+
vBarv: "⫩",
|
|
3542
|
+
Vcy: "В",
|
|
3543
|
+
vcy: "в",
|
|
3544
|
+
VDash: "⊫",
|
|
3545
|
+
Vdash: "⊩",
|
|
3546
|
+
vDash: "⊨",
|
|
3547
|
+
vdash: "⊢",
|
|
3548
|
+
Vdashl: "⫦",
|
|
3549
|
+
Vee: "⋁",
|
|
3550
|
+
vee: "∨",
|
|
3551
|
+
veebar: "⊻",
|
|
3552
|
+
veeeq: "≚",
|
|
3553
|
+
vellip: "⋮",
|
|
3554
|
+
Verbar: "‖",
|
|
3555
|
+
verbar: "|",
|
|
3556
|
+
Vert: "‖",
|
|
3557
|
+
vert: "|",
|
|
3558
|
+
VerticalBar: "∣",
|
|
3559
|
+
VerticalLine: "|",
|
|
3560
|
+
VerticalSeparator: "❘",
|
|
3561
|
+
VerticalTilde: "≀",
|
|
3562
|
+
VeryThinSpace: " ",
|
|
3563
|
+
Vfr: "𝔙",
|
|
3564
|
+
vfr: "𝔳",
|
|
3565
|
+
vltri: "⊲",
|
|
3566
|
+
vnsub: "⊂⃒",
|
|
3567
|
+
vnsup: "⊃⃒",
|
|
3568
|
+
Vopf: "𝕍",
|
|
3569
|
+
vopf: "𝕧",
|
|
3570
|
+
vprop: "∝",
|
|
3571
|
+
vrtri: "⊳",
|
|
3572
|
+
Vscr: "𝒱",
|
|
3573
|
+
vscr: "𝓋",
|
|
3574
|
+
vsubnE: "⫋︀",
|
|
3575
|
+
vsubne: "⊊︀",
|
|
3576
|
+
vsupnE: "⫌︀",
|
|
3577
|
+
vsupne: "⊋︀",
|
|
3578
|
+
Vvdash: "⊪",
|
|
3579
|
+
vzigzag: "⦚",
|
|
3580
|
+
Wcirc: "Ŵ",
|
|
3581
|
+
wcirc: "ŵ",
|
|
3582
|
+
wedbar: "⩟",
|
|
3583
|
+
Wedge: "⋀",
|
|
3584
|
+
wedge: "∧",
|
|
3585
|
+
wedgeq: "≙",
|
|
3586
|
+
weierp: "℘",
|
|
3587
|
+
Wfr: "𝔚",
|
|
3588
|
+
wfr: "𝔴",
|
|
3589
|
+
Wopf: "𝕎",
|
|
3590
|
+
wopf: "𝕨",
|
|
3591
|
+
wp: "℘",
|
|
3592
|
+
wr: "≀",
|
|
3593
|
+
wreath: "≀",
|
|
3594
|
+
Wscr: "𝒲",
|
|
3595
|
+
wscr: "𝓌",
|
|
3596
|
+
xcap: "⋂",
|
|
3597
|
+
xcirc: "◯",
|
|
3598
|
+
xcup: "⋃",
|
|
3599
|
+
xdtri: "▽",
|
|
3600
|
+
Xfr: "𝔛",
|
|
3601
|
+
xfr: "𝔵",
|
|
3602
|
+
xhArr: "⟺",
|
|
3603
|
+
xharr: "⟷",
|
|
3604
|
+
Xi: "Ξ",
|
|
3605
|
+
xi: "ξ",
|
|
3606
|
+
xlArr: "⟸",
|
|
3607
|
+
xlarr: "⟵",
|
|
3608
|
+
xmap: "⟼",
|
|
3609
|
+
xnis: "⋻",
|
|
3610
|
+
xodot: "⨀",
|
|
3611
|
+
Xopf: "𝕏",
|
|
3612
|
+
xopf: "𝕩",
|
|
3613
|
+
xoplus: "⨁",
|
|
3614
|
+
xotime: "⨂",
|
|
3615
|
+
xrArr: "⟹",
|
|
3616
|
+
xrarr: "⟶",
|
|
3617
|
+
Xscr: "𝒳",
|
|
3618
|
+
xscr: "𝓍",
|
|
3619
|
+
xsqcup: "⨆",
|
|
3620
|
+
xuplus: "⨄",
|
|
3621
|
+
xutri: "△",
|
|
3622
|
+
xvee: "⋁",
|
|
3623
|
+
xwedge: "⋀",
|
|
3624
|
+
Yacute: "Ý",
|
|
3625
|
+
yacute: "ý",
|
|
3626
|
+
YAcy: "Я",
|
|
3627
|
+
yacy: "я",
|
|
3628
|
+
Ycirc: "Ŷ",
|
|
3629
|
+
ycirc: "ŷ",
|
|
3630
|
+
Ycy: "Ы",
|
|
3631
|
+
ycy: "ы",
|
|
3632
|
+
yen: "¥",
|
|
3633
|
+
Yfr: "𝔜",
|
|
3634
|
+
yfr: "𝔶",
|
|
3635
|
+
YIcy: "Ї",
|
|
3636
|
+
yicy: "ї",
|
|
3637
|
+
Yopf: "𝕐",
|
|
3638
|
+
yopf: "𝕪",
|
|
3639
|
+
Yscr: "𝒴",
|
|
3640
|
+
yscr: "𝓎",
|
|
3641
|
+
YUcy: "Ю",
|
|
3642
|
+
yucy: "ю",
|
|
3643
|
+
Yuml: "Ÿ",
|
|
3644
|
+
yuml: "ÿ",
|
|
3645
|
+
Zacute: "Ź",
|
|
3646
|
+
zacute: "ź",
|
|
3647
|
+
Zcaron: "Ž",
|
|
3648
|
+
zcaron: "ž",
|
|
3649
|
+
Zcy: "З",
|
|
3650
|
+
zcy: "з",
|
|
3651
|
+
Zdot: "Ż",
|
|
3652
|
+
zdot: "ż",
|
|
3653
|
+
zeetrf: "ℨ",
|
|
3654
|
+
ZeroWidthSpace: "",
|
|
3655
|
+
Zeta: "Ζ",
|
|
3656
|
+
zeta: "ζ",
|
|
3657
|
+
Zfr: "ℨ",
|
|
3658
|
+
zfr: "𝔷",
|
|
3659
|
+
ZHcy: "Ж",
|
|
3660
|
+
zhcy: "ж",
|
|
3661
|
+
zigrarr: "⇝",
|
|
3662
|
+
Zopf: "ℤ",
|
|
3663
|
+
zopf: "𝕫",
|
|
3664
|
+
Zscr: "𝒵",
|
|
3665
|
+
zscr: "𝓏",
|
|
3666
|
+
zwj: "",
|
|
3667
|
+
zwnj: ""
|
|
1698
3668
|
});
|
|
1699
3669
|
exports.entityMap = exports.HTML_ENTITIES;
|
|
1700
3670
|
})(entities$1);
|
|
@@ -1960,7 +3930,9 @@ function parseElementStartPart(source, start, el, currentNSMap, entityReplacer,
|
|
|
1960
3930
|
el.closed = true;
|
|
1961
3931
|
case S_ATTR_NOQUOT_VALUE:
|
|
1962
3932
|
case S_ATTR:
|
|
3933
|
+
break;
|
|
1963
3934
|
case S_ATTR_SPACE:
|
|
3935
|
+
el.closed = true;
|
|
1964
3936
|
break;
|
|
1965
3937
|
default:
|
|
1966
3938
|
throw new Error("attribute invalid close char('/')");
|