@eggjs/mock 6.1.0-beta.3 → 6.1.0-beta.5
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/dist/_virtual/rolldown_runtime.js +24 -1
- package/dist/bootstrap.d.ts +1 -1
- package/dist/bootstrap.js +1 -1
- package/dist/index.js +0 -1
- package/dist/inject_mocha.d.ts +1 -0
- package/dist/inject_mocha.js +35 -0
- package/dist/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles/index.js +142 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/index.js +157 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/templates.js +97 -0
- package/dist/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/source/util.js +40 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/conversions.js +812 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/index.js +50 -0
- package/dist/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert/route.js +68 -0
- package/dist/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js +752 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/browser.js +203 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/common.js +209 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/index.js +18 -0
- package/dist/node_modules/.pnpm/debug@4.4.3_supports-color@8.1.1/node_modules/debug/src/node.js +215 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/convert/dmp.js +24 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/convert/xml.js +33 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/array.js +29 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/base.js +185 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/character.js +23 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/css.js +26 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/json.js +83 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/line.js +51 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/sentence.js +26 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/diff/word.js +151 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/index.js +178 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/apply.js +168 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/create.js +301 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/line-endings.js +137 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/merge.js +367 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/parse.js +91 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/patch/reverse.js +99 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/array.js +23 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/distance-iterator.js +30 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/params.js +22 -0
- package/dist/node_modules/.pnpm/diff@7.0.0/node_modules/diff/lib/util/string.js +97 -0
- package/dist/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js +14 -0
- package/dist/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js +16 -0
- package/dist/node_modules/.pnpm/he@1.2.0/node_modules/he/he.js +4093 -0
- package/dist/node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported/index.js +14 -0
- package/dist/node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols/index.js +27 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/index.js +12 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/context.js +83 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/error-constants.js +35 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/errors.js +392 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/hook.js +86 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/bdd.js +104 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/common.js +99 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/exports.js +65 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/index.js +18 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/qunit.js +95 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/interfaces/tdd.js +105 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/mocha.js +1037 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/mocharc.js +24 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/buffered-worker-pool.js +152 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/esm-utils.js +74 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/file-unloader.js +22 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/parallel-buffered-runner.js +329 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/nodejs/serializer.js +314 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/pending.js +22 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/base.js +417 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/doc.js +79 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/dot.js +75 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/html.js +283 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/index.js +40 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/json-stream.js +90 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/json.js +145 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/landing.js +107 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/list.js +77 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/markdown.js +106 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/min.js +57 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/nyan.js +233 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/progress.js +92 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/spec.js +91 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/tap.js +261 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/reporters/xunit.js +166 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/runnable.js +346 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/runner.js +922 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/stats-collector.js +72 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/suite.js +517 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/test.js +105 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/lib/utils.js +505 -0
- package/dist/node_modules/.pnpm/mocha@11.7.2/node_modules/mocha/package.js +225 -0
- package/dist/node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js +124 -0
- package/dist/node_modules/.pnpm/randombytes@2.1.0/node_modules/randombytes/index.js +11 -0
- package/dist/node_modules/.pnpm/serialize-javascript@6.0.2/node_modules/serialize-javascript/index.js +114 -0
- package/dist/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js +76 -0
- package/dist/node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color/index.js +89 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/Pool.js +366 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/Promise.js +248 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/WorkerHandler.js +419 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/debug-port-allocator.js +27 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/environment.js +18 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/generated/embeddedWorker.js +16 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/index.js +63 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/transfer.js +21 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/validateOptions.js +9 -0
- package/dist/node_modules/.pnpm/workerpool@9.3.4/node_modules/workerpool/src/worker.js +277 -0
- package/dist/register.d.ts +0 -2
- package/dist/register.js +1 -26
- package/package.json +10 -8
|
@@ -0,0 +1,4093 @@
|
|
|
1
|
+
import { __commonJS } from "../../../../../_virtual/rolldown_runtime.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../node_modules/.pnpm/he@1.2.0/node_modules/he/he.js
|
|
4
|
+
var require_he = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/he@1.2.0/node_modules/he/he.js": ((exports, module) => {
|
|
5
|
+
(function(root) {
|
|
6
|
+
var freeExports = typeof exports == "object" && exports;
|
|
7
|
+
var freeModule = typeof module == "object" && module && module.exports == freeExports && module;
|
|
8
|
+
var freeGlobal = typeof global == "object" && global;
|
|
9
|
+
if (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) root = freeGlobal;
|
|
10
|
+
var regexAstralSymbols = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g;
|
|
11
|
+
var regexAsciiWhitelist = /[\x01-\x7F]/g;
|
|
12
|
+
var regexBmpWhitelist = /[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g;
|
|
13
|
+
var regexEncodeNonAscii = /<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g;
|
|
14
|
+
var encodeMap = {
|
|
15
|
+
"": "shy",
|
|
16
|
+
"": "zwnj",
|
|
17
|
+
"": "zwj",
|
|
18
|
+
"": "lrm",
|
|
19
|
+
"": "ic",
|
|
20
|
+
"": "it",
|
|
21
|
+
"": "af",
|
|
22
|
+
"": "rlm",
|
|
23
|
+
"": "ZeroWidthSpace",
|
|
24
|
+
"": "NoBreak",
|
|
25
|
+
"̑": "DownBreve",
|
|
26
|
+
"⃛": "tdot",
|
|
27
|
+
"⃜": "DotDot",
|
|
28
|
+
" ": "Tab",
|
|
29
|
+
"\n": "NewLine",
|
|
30
|
+
" ": "puncsp",
|
|
31
|
+
" ": "MediumSpace",
|
|
32
|
+
" ": "thinsp",
|
|
33
|
+
" ": "hairsp",
|
|
34
|
+
" ": "emsp13",
|
|
35
|
+
" ": "ensp",
|
|
36
|
+
" ": "emsp14",
|
|
37
|
+
" ": "emsp",
|
|
38
|
+
" ": "numsp",
|
|
39
|
+
"\xA0": "nbsp",
|
|
40
|
+
" ": "ThickSpace",
|
|
41
|
+
"‾": "oline",
|
|
42
|
+
"_": "lowbar",
|
|
43
|
+
"‐": "dash",
|
|
44
|
+
"–": "ndash",
|
|
45
|
+
"—": "mdash",
|
|
46
|
+
"―": "horbar",
|
|
47
|
+
",": "comma",
|
|
48
|
+
";": "semi",
|
|
49
|
+
"⁏": "bsemi",
|
|
50
|
+
":": "colon",
|
|
51
|
+
"⩴": "Colone",
|
|
52
|
+
"!": "excl",
|
|
53
|
+
"¡": "iexcl",
|
|
54
|
+
"?": "quest",
|
|
55
|
+
"¿": "iquest",
|
|
56
|
+
".": "period",
|
|
57
|
+
"‥": "nldr",
|
|
58
|
+
"…": "mldr",
|
|
59
|
+
"·": "middot",
|
|
60
|
+
"'": "apos",
|
|
61
|
+
"‘": "lsquo",
|
|
62
|
+
"’": "rsquo",
|
|
63
|
+
"‚": "sbquo",
|
|
64
|
+
"‹": "lsaquo",
|
|
65
|
+
"›": "rsaquo",
|
|
66
|
+
"\"": "quot",
|
|
67
|
+
"“": "ldquo",
|
|
68
|
+
"”": "rdquo",
|
|
69
|
+
"„": "bdquo",
|
|
70
|
+
"«": "laquo",
|
|
71
|
+
"»": "raquo",
|
|
72
|
+
"(": "lpar",
|
|
73
|
+
")": "rpar",
|
|
74
|
+
"[": "lsqb",
|
|
75
|
+
"]": "rsqb",
|
|
76
|
+
"{": "lcub",
|
|
77
|
+
"}": "rcub",
|
|
78
|
+
"⌈": "lceil",
|
|
79
|
+
"⌉": "rceil",
|
|
80
|
+
"⌊": "lfloor",
|
|
81
|
+
"⌋": "rfloor",
|
|
82
|
+
"⦅": "lopar",
|
|
83
|
+
"⦆": "ropar",
|
|
84
|
+
"⦋": "lbrke",
|
|
85
|
+
"⦌": "rbrke",
|
|
86
|
+
"⦍": "lbrkslu",
|
|
87
|
+
"⦎": "rbrksld",
|
|
88
|
+
"⦏": "lbrksld",
|
|
89
|
+
"⦐": "rbrkslu",
|
|
90
|
+
"⦑": "langd",
|
|
91
|
+
"⦒": "rangd",
|
|
92
|
+
"⦓": "lparlt",
|
|
93
|
+
"⦔": "rpargt",
|
|
94
|
+
"⦕": "gtlPar",
|
|
95
|
+
"⦖": "ltrPar",
|
|
96
|
+
"⟦": "lobrk",
|
|
97
|
+
"⟧": "robrk",
|
|
98
|
+
"⟨": "lang",
|
|
99
|
+
"⟩": "rang",
|
|
100
|
+
"⟪": "Lang",
|
|
101
|
+
"⟫": "Rang",
|
|
102
|
+
"⟬": "loang",
|
|
103
|
+
"⟭": "roang",
|
|
104
|
+
"❲": "lbbrk",
|
|
105
|
+
"❳": "rbbrk",
|
|
106
|
+
"‖": "Vert",
|
|
107
|
+
"§": "sect",
|
|
108
|
+
"¶": "para",
|
|
109
|
+
"@": "commat",
|
|
110
|
+
"*": "ast",
|
|
111
|
+
"/": "sol",
|
|
112
|
+
"undefined": null,
|
|
113
|
+
"&": "amp",
|
|
114
|
+
"#": "num",
|
|
115
|
+
"%": "percnt",
|
|
116
|
+
"‰": "permil",
|
|
117
|
+
"‱": "pertenk",
|
|
118
|
+
"†": "dagger",
|
|
119
|
+
"‡": "Dagger",
|
|
120
|
+
"•": "bull",
|
|
121
|
+
"⁃": "hybull",
|
|
122
|
+
"′": "prime",
|
|
123
|
+
"″": "Prime",
|
|
124
|
+
"‴": "tprime",
|
|
125
|
+
"⁗": "qprime",
|
|
126
|
+
"‵": "bprime",
|
|
127
|
+
"⁁": "caret",
|
|
128
|
+
"`": "grave",
|
|
129
|
+
"´": "acute",
|
|
130
|
+
"˜": "tilde",
|
|
131
|
+
"^": "Hat",
|
|
132
|
+
"¯": "macr",
|
|
133
|
+
"˘": "breve",
|
|
134
|
+
"˙": "dot",
|
|
135
|
+
"¨": "die",
|
|
136
|
+
"˚": "ring",
|
|
137
|
+
"˝": "dblac",
|
|
138
|
+
"¸": "cedil",
|
|
139
|
+
"˛": "ogon",
|
|
140
|
+
"ˆ": "circ",
|
|
141
|
+
"ˇ": "caron",
|
|
142
|
+
"°": "deg",
|
|
143
|
+
"©": "copy",
|
|
144
|
+
"®": "reg",
|
|
145
|
+
"℗": "copysr",
|
|
146
|
+
"℘": "wp",
|
|
147
|
+
"℞": "rx",
|
|
148
|
+
"℧": "mho",
|
|
149
|
+
"℩": "iiota",
|
|
150
|
+
"←": "larr",
|
|
151
|
+
"↚": "nlarr",
|
|
152
|
+
"→": "rarr",
|
|
153
|
+
"↛": "nrarr",
|
|
154
|
+
"↑": "uarr",
|
|
155
|
+
"↓": "darr",
|
|
156
|
+
"↔": "harr",
|
|
157
|
+
"↮": "nharr",
|
|
158
|
+
"↕": "varr",
|
|
159
|
+
"↖": "nwarr",
|
|
160
|
+
"↗": "nearr",
|
|
161
|
+
"↘": "searr",
|
|
162
|
+
"↙": "swarr",
|
|
163
|
+
"↝": "rarrw",
|
|
164
|
+
"↝̸": "nrarrw",
|
|
165
|
+
"↞": "Larr",
|
|
166
|
+
"↟": "Uarr",
|
|
167
|
+
"↠": "Rarr",
|
|
168
|
+
"↡": "Darr",
|
|
169
|
+
"↢": "larrtl",
|
|
170
|
+
"↣": "rarrtl",
|
|
171
|
+
"↤": "mapstoleft",
|
|
172
|
+
"↥": "mapstoup",
|
|
173
|
+
"↦": "map",
|
|
174
|
+
"↧": "mapstodown",
|
|
175
|
+
"↩": "larrhk",
|
|
176
|
+
"↪": "rarrhk",
|
|
177
|
+
"↫": "larrlp",
|
|
178
|
+
"↬": "rarrlp",
|
|
179
|
+
"↭": "harrw",
|
|
180
|
+
"↰": "lsh",
|
|
181
|
+
"↱": "rsh",
|
|
182
|
+
"↲": "ldsh",
|
|
183
|
+
"↳": "rdsh",
|
|
184
|
+
"↵": "crarr",
|
|
185
|
+
"↶": "cularr",
|
|
186
|
+
"↷": "curarr",
|
|
187
|
+
"↺": "olarr",
|
|
188
|
+
"↻": "orarr",
|
|
189
|
+
"↼": "lharu",
|
|
190
|
+
"↽": "lhard",
|
|
191
|
+
"↾": "uharr",
|
|
192
|
+
"↿": "uharl",
|
|
193
|
+
"⇀": "rharu",
|
|
194
|
+
"⇁": "rhard",
|
|
195
|
+
"⇂": "dharr",
|
|
196
|
+
"⇃": "dharl",
|
|
197
|
+
"⇄": "rlarr",
|
|
198
|
+
"⇅": "udarr",
|
|
199
|
+
"⇆": "lrarr",
|
|
200
|
+
"⇇": "llarr",
|
|
201
|
+
"⇈": "uuarr",
|
|
202
|
+
"⇉": "rrarr",
|
|
203
|
+
"⇊": "ddarr",
|
|
204
|
+
"⇋": "lrhar",
|
|
205
|
+
"⇌": "rlhar",
|
|
206
|
+
"⇐": "lArr",
|
|
207
|
+
"⇍": "nlArr",
|
|
208
|
+
"⇑": "uArr",
|
|
209
|
+
"⇒": "rArr",
|
|
210
|
+
"⇏": "nrArr",
|
|
211
|
+
"⇓": "dArr",
|
|
212
|
+
"⇔": "iff",
|
|
213
|
+
"⇎": "nhArr",
|
|
214
|
+
"⇕": "vArr",
|
|
215
|
+
"⇖": "nwArr",
|
|
216
|
+
"⇗": "neArr",
|
|
217
|
+
"⇘": "seArr",
|
|
218
|
+
"⇙": "swArr",
|
|
219
|
+
"⇚": "lAarr",
|
|
220
|
+
"⇛": "rAarr",
|
|
221
|
+
"⇝": "zigrarr",
|
|
222
|
+
"⇤": "larrb",
|
|
223
|
+
"⇥": "rarrb",
|
|
224
|
+
"⇵": "duarr",
|
|
225
|
+
"⇽": "loarr",
|
|
226
|
+
"⇾": "roarr",
|
|
227
|
+
"⇿": "hoarr",
|
|
228
|
+
"∀": "forall",
|
|
229
|
+
"∁": "comp",
|
|
230
|
+
"∂": "part",
|
|
231
|
+
"∂̸": "npart",
|
|
232
|
+
"∃": "exist",
|
|
233
|
+
"∄": "nexist",
|
|
234
|
+
"∅": "empty",
|
|
235
|
+
"∇": "Del",
|
|
236
|
+
"∈": "in",
|
|
237
|
+
"∉": "notin",
|
|
238
|
+
"∋": "ni",
|
|
239
|
+
"∌": "notni",
|
|
240
|
+
"϶": "bepsi",
|
|
241
|
+
"∏": "prod",
|
|
242
|
+
"∐": "coprod",
|
|
243
|
+
"∑": "sum",
|
|
244
|
+
"+": "plus",
|
|
245
|
+
"±": "pm",
|
|
246
|
+
"÷": "div",
|
|
247
|
+
"×": "times",
|
|
248
|
+
"<": "lt",
|
|
249
|
+
"≮": "nlt",
|
|
250
|
+
"<⃒": "nvlt",
|
|
251
|
+
"=": "equals",
|
|
252
|
+
"≠": "ne",
|
|
253
|
+
"=⃥": "bne",
|
|
254
|
+
"⩵": "Equal",
|
|
255
|
+
">": "gt",
|
|
256
|
+
"≯": "ngt",
|
|
257
|
+
">⃒": "nvgt",
|
|
258
|
+
"¬": "not",
|
|
259
|
+
"|": "vert",
|
|
260
|
+
"¦": "brvbar",
|
|
261
|
+
"−": "minus",
|
|
262
|
+
"∓": "mp",
|
|
263
|
+
"∔": "plusdo",
|
|
264
|
+
"⁄": "frasl",
|
|
265
|
+
"∖": "setmn",
|
|
266
|
+
"∗": "lowast",
|
|
267
|
+
"∘": "compfn",
|
|
268
|
+
"√": "Sqrt",
|
|
269
|
+
"∝": "prop",
|
|
270
|
+
"∞": "infin",
|
|
271
|
+
"∟": "angrt",
|
|
272
|
+
"∠": "ang",
|
|
273
|
+
"∠⃒": "nang",
|
|
274
|
+
"∡": "angmsd",
|
|
275
|
+
"∢": "angsph",
|
|
276
|
+
"∣": "mid",
|
|
277
|
+
"∤": "nmid",
|
|
278
|
+
"∥": "par",
|
|
279
|
+
"∦": "npar",
|
|
280
|
+
"∧": "and",
|
|
281
|
+
"∨": "or",
|
|
282
|
+
"∩": "cap",
|
|
283
|
+
"∩︀": "caps",
|
|
284
|
+
"∪": "cup",
|
|
285
|
+
"∪︀": "cups",
|
|
286
|
+
"∫": "int",
|
|
287
|
+
"∬": "Int",
|
|
288
|
+
"∭": "tint",
|
|
289
|
+
"⨌": "qint",
|
|
290
|
+
"∮": "oint",
|
|
291
|
+
"∯": "Conint",
|
|
292
|
+
"∰": "Cconint",
|
|
293
|
+
"∱": "cwint",
|
|
294
|
+
"∲": "cwconint",
|
|
295
|
+
"∳": "awconint",
|
|
296
|
+
"∴": "there4",
|
|
297
|
+
"∵": "becaus",
|
|
298
|
+
"∶": "ratio",
|
|
299
|
+
"∷": "Colon",
|
|
300
|
+
"∸": "minusd",
|
|
301
|
+
"∺": "mDDot",
|
|
302
|
+
"∻": "homtht",
|
|
303
|
+
"∼": "sim",
|
|
304
|
+
"≁": "nsim",
|
|
305
|
+
"∼⃒": "nvsim",
|
|
306
|
+
"∽": "bsim",
|
|
307
|
+
"∽̱": "race",
|
|
308
|
+
"∾": "ac",
|
|
309
|
+
"∾̳": "acE",
|
|
310
|
+
"∿": "acd",
|
|
311
|
+
"≀": "wr",
|
|
312
|
+
"≂": "esim",
|
|
313
|
+
"≂̸": "nesim",
|
|
314
|
+
"≃": "sime",
|
|
315
|
+
"≄": "nsime",
|
|
316
|
+
"≅": "cong",
|
|
317
|
+
"≇": "ncong",
|
|
318
|
+
"≆": "simne",
|
|
319
|
+
"≈": "ap",
|
|
320
|
+
"≉": "nap",
|
|
321
|
+
"≊": "ape",
|
|
322
|
+
"≋": "apid",
|
|
323
|
+
"≋̸": "napid",
|
|
324
|
+
"≌": "bcong",
|
|
325
|
+
"≍": "CupCap",
|
|
326
|
+
"≭": "NotCupCap",
|
|
327
|
+
"≍⃒": "nvap",
|
|
328
|
+
"≎": "bump",
|
|
329
|
+
"≎̸": "nbump",
|
|
330
|
+
"≏": "bumpe",
|
|
331
|
+
"≏̸": "nbumpe",
|
|
332
|
+
"≐": "doteq",
|
|
333
|
+
"≐̸": "nedot",
|
|
334
|
+
"≑": "eDot",
|
|
335
|
+
"≒": "efDot",
|
|
336
|
+
"≓": "erDot",
|
|
337
|
+
"≔": "colone",
|
|
338
|
+
"≕": "ecolon",
|
|
339
|
+
"≖": "ecir",
|
|
340
|
+
"≗": "cire",
|
|
341
|
+
"≙": "wedgeq",
|
|
342
|
+
"≚": "veeeq",
|
|
343
|
+
"≜": "trie",
|
|
344
|
+
"≟": "equest",
|
|
345
|
+
"≡": "equiv",
|
|
346
|
+
"≢": "nequiv",
|
|
347
|
+
"≡⃥": "bnequiv",
|
|
348
|
+
"≤": "le",
|
|
349
|
+
"≰": "nle",
|
|
350
|
+
"≤⃒": "nvle",
|
|
351
|
+
"≥": "ge",
|
|
352
|
+
"≱": "nge",
|
|
353
|
+
"≥⃒": "nvge",
|
|
354
|
+
"≦": "lE",
|
|
355
|
+
"≦̸": "nlE",
|
|
356
|
+
"≧": "gE",
|
|
357
|
+
"≧̸": "ngE",
|
|
358
|
+
"≨︀": "lvnE",
|
|
359
|
+
"≨": "lnE",
|
|
360
|
+
"≩": "gnE",
|
|
361
|
+
"≩︀": "gvnE",
|
|
362
|
+
"≪": "ll",
|
|
363
|
+
"≪̸": "nLtv",
|
|
364
|
+
"≪⃒": "nLt",
|
|
365
|
+
"≫": "gg",
|
|
366
|
+
"≫̸": "nGtv",
|
|
367
|
+
"≫⃒": "nGt",
|
|
368
|
+
"≬": "twixt",
|
|
369
|
+
"≲": "lsim",
|
|
370
|
+
"≴": "nlsim",
|
|
371
|
+
"≳": "gsim",
|
|
372
|
+
"≵": "ngsim",
|
|
373
|
+
"≶": "lg",
|
|
374
|
+
"≸": "ntlg",
|
|
375
|
+
"≷": "gl",
|
|
376
|
+
"≹": "ntgl",
|
|
377
|
+
"≺": "pr",
|
|
378
|
+
"⊀": "npr",
|
|
379
|
+
"≻": "sc",
|
|
380
|
+
"⊁": "nsc",
|
|
381
|
+
"≼": "prcue",
|
|
382
|
+
"⋠": "nprcue",
|
|
383
|
+
"≽": "sccue",
|
|
384
|
+
"⋡": "nsccue",
|
|
385
|
+
"≾": "prsim",
|
|
386
|
+
"≿": "scsim",
|
|
387
|
+
"≿̸": "NotSucceedsTilde",
|
|
388
|
+
"⊂": "sub",
|
|
389
|
+
"⊄": "nsub",
|
|
390
|
+
"⊂⃒": "vnsub",
|
|
391
|
+
"⊃": "sup",
|
|
392
|
+
"⊅": "nsup",
|
|
393
|
+
"⊃⃒": "vnsup",
|
|
394
|
+
"⊆": "sube",
|
|
395
|
+
"⊈": "nsube",
|
|
396
|
+
"⊇": "supe",
|
|
397
|
+
"⊉": "nsupe",
|
|
398
|
+
"⊊︀": "vsubne",
|
|
399
|
+
"⊊": "subne",
|
|
400
|
+
"⊋︀": "vsupne",
|
|
401
|
+
"⊋": "supne",
|
|
402
|
+
"⊍": "cupdot",
|
|
403
|
+
"⊎": "uplus",
|
|
404
|
+
"⊏": "sqsub",
|
|
405
|
+
"⊏̸": "NotSquareSubset",
|
|
406
|
+
"⊐": "sqsup",
|
|
407
|
+
"⊐̸": "NotSquareSuperset",
|
|
408
|
+
"⊑": "sqsube",
|
|
409
|
+
"⋢": "nsqsube",
|
|
410
|
+
"⊒": "sqsupe",
|
|
411
|
+
"⋣": "nsqsupe",
|
|
412
|
+
"⊓": "sqcap",
|
|
413
|
+
"⊓︀": "sqcaps",
|
|
414
|
+
"⊔": "sqcup",
|
|
415
|
+
"⊔︀": "sqcups",
|
|
416
|
+
"⊕": "oplus",
|
|
417
|
+
"⊖": "ominus",
|
|
418
|
+
"⊗": "otimes",
|
|
419
|
+
"⊘": "osol",
|
|
420
|
+
"⊙": "odot",
|
|
421
|
+
"⊚": "ocir",
|
|
422
|
+
"⊛": "oast",
|
|
423
|
+
"⊝": "odash",
|
|
424
|
+
"⊞": "plusb",
|
|
425
|
+
"⊟": "minusb",
|
|
426
|
+
"⊠": "timesb",
|
|
427
|
+
"⊡": "sdotb",
|
|
428
|
+
"⊢": "vdash",
|
|
429
|
+
"⊬": "nvdash",
|
|
430
|
+
"⊣": "dashv",
|
|
431
|
+
"⊤": "top",
|
|
432
|
+
"⊥": "bot",
|
|
433
|
+
"⊧": "models",
|
|
434
|
+
"⊨": "vDash",
|
|
435
|
+
"⊭": "nvDash",
|
|
436
|
+
"⊩": "Vdash",
|
|
437
|
+
"⊮": "nVdash",
|
|
438
|
+
"⊪": "Vvdash",
|
|
439
|
+
"⊫": "VDash",
|
|
440
|
+
"⊯": "nVDash",
|
|
441
|
+
"⊰": "prurel",
|
|
442
|
+
"⊲": "vltri",
|
|
443
|
+
"⋪": "nltri",
|
|
444
|
+
"⊳": "vrtri",
|
|
445
|
+
"⋫": "nrtri",
|
|
446
|
+
"⊴": "ltrie",
|
|
447
|
+
"⋬": "nltrie",
|
|
448
|
+
"⊴⃒": "nvltrie",
|
|
449
|
+
"⊵": "rtrie",
|
|
450
|
+
"⋭": "nrtrie",
|
|
451
|
+
"⊵⃒": "nvrtrie",
|
|
452
|
+
"⊶": "origof",
|
|
453
|
+
"⊷": "imof",
|
|
454
|
+
"⊸": "mumap",
|
|
455
|
+
"⊹": "hercon",
|
|
456
|
+
"⊺": "intcal",
|
|
457
|
+
"⊻": "veebar",
|
|
458
|
+
"⊽": "barvee",
|
|
459
|
+
"⊾": "angrtvb",
|
|
460
|
+
"⊿": "lrtri",
|
|
461
|
+
"⋀": "Wedge",
|
|
462
|
+
"⋁": "Vee",
|
|
463
|
+
"⋂": "xcap",
|
|
464
|
+
"⋃": "xcup",
|
|
465
|
+
"⋄": "diam",
|
|
466
|
+
"⋅": "sdot",
|
|
467
|
+
"⋆": "Star",
|
|
468
|
+
"⋇": "divonx",
|
|
469
|
+
"⋈": "bowtie",
|
|
470
|
+
"⋉": "ltimes",
|
|
471
|
+
"⋊": "rtimes",
|
|
472
|
+
"⋋": "lthree",
|
|
473
|
+
"⋌": "rthree",
|
|
474
|
+
"⋍": "bsime",
|
|
475
|
+
"⋎": "cuvee",
|
|
476
|
+
"⋏": "cuwed",
|
|
477
|
+
"⋐": "Sub",
|
|
478
|
+
"⋑": "Sup",
|
|
479
|
+
"⋒": "Cap",
|
|
480
|
+
"⋓": "Cup",
|
|
481
|
+
"⋔": "fork",
|
|
482
|
+
"⋕": "epar",
|
|
483
|
+
"⋖": "ltdot",
|
|
484
|
+
"⋗": "gtdot",
|
|
485
|
+
"⋘": "Ll",
|
|
486
|
+
"⋘̸": "nLl",
|
|
487
|
+
"⋙": "Gg",
|
|
488
|
+
"⋙̸": "nGg",
|
|
489
|
+
"⋚︀": "lesg",
|
|
490
|
+
"⋚": "leg",
|
|
491
|
+
"⋛": "gel",
|
|
492
|
+
"⋛︀": "gesl",
|
|
493
|
+
"⋞": "cuepr",
|
|
494
|
+
"⋟": "cuesc",
|
|
495
|
+
"⋦": "lnsim",
|
|
496
|
+
"⋧": "gnsim",
|
|
497
|
+
"⋨": "prnsim",
|
|
498
|
+
"⋩": "scnsim",
|
|
499
|
+
"⋮": "vellip",
|
|
500
|
+
"⋯": "ctdot",
|
|
501
|
+
"⋰": "utdot",
|
|
502
|
+
"⋱": "dtdot",
|
|
503
|
+
"⋲": "disin",
|
|
504
|
+
"⋳": "isinsv",
|
|
505
|
+
"⋴": "isins",
|
|
506
|
+
"⋵": "isindot",
|
|
507
|
+
"⋵̸": "notindot",
|
|
508
|
+
"⋶": "notinvc",
|
|
509
|
+
"⋷": "notinvb",
|
|
510
|
+
"⋹": "isinE",
|
|
511
|
+
"⋹̸": "notinE",
|
|
512
|
+
"⋺": "nisd",
|
|
513
|
+
"⋻": "xnis",
|
|
514
|
+
"⋼": "nis",
|
|
515
|
+
"⋽": "notnivc",
|
|
516
|
+
"⋾": "notnivb",
|
|
517
|
+
"⌅": "barwed",
|
|
518
|
+
"⌆": "Barwed",
|
|
519
|
+
"⌌": "drcrop",
|
|
520
|
+
"⌍": "dlcrop",
|
|
521
|
+
"⌎": "urcrop",
|
|
522
|
+
"⌏": "ulcrop",
|
|
523
|
+
"⌐": "bnot",
|
|
524
|
+
"⌒": "profline",
|
|
525
|
+
"⌓": "profsurf",
|
|
526
|
+
"⌕": "telrec",
|
|
527
|
+
"⌖": "target",
|
|
528
|
+
"⌜": "ulcorn",
|
|
529
|
+
"⌝": "urcorn",
|
|
530
|
+
"⌞": "dlcorn",
|
|
531
|
+
"⌟": "drcorn",
|
|
532
|
+
"⌢": "frown",
|
|
533
|
+
"⌣": "smile",
|
|
534
|
+
"⌭": "cylcty",
|
|
535
|
+
"⌮": "profalar",
|
|
536
|
+
"⌶": "topbot",
|
|
537
|
+
"⌽": "ovbar",
|
|
538
|
+
"⌿": "solbar",
|
|
539
|
+
"⍼": "angzarr",
|
|
540
|
+
"⎰": "lmoust",
|
|
541
|
+
"⎱": "rmoust",
|
|
542
|
+
"⎴": "tbrk",
|
|
543
|
+
"⎵": "bbrk",
|
|
544
|
+
"⎶": "bbrktbrk",
|
|
545
|
+
"⏜": "OverParenthesis",
|
|
546
|
+
"⏝": "UnderParenthesis",
|
|
547
|
+
"⏞": "OverBrace",
|
|
548
|
+
"⏟": "UnderBrace",
|
|
549
|
+
"⏢": "trpezium",
|
|
550
|
+
"⏧": "elinters",
|
|
551
|
+
"␣": "blank",
|
|
552
|
+
"─": "boxh",
|
|
553
|
+
"│": "boxv",
|
|
554
|
+
"┌": "boxdr",
|
|
555
|
+
"┐": "boxdl",
|
|
556
|
+
"└": "boxur",
|
|
557
|
+
"┘": "boxul",
|
|
558
|
+
"├": "boxvr",
|
|
559
|
+
"┤": "boxvl",
|
|
560
|
+
"┬": "boxhd",
|
|
561
|
+
"┴": "boxhu",
|
|
562
|
+
"┼": "boxvh",
|
|
563
|
+
"═": "boxH",
|
|
564
|
+
"║": "boxV",
|
|
565
|
+
"╒": "boxdR",
|
|
566
|
+
"╓": "boxDr",
|
|
567
|
+
"╔": "boxDR",
|
|
568
|
+
"╕": "boxdL",
|
|
569
|
+
"╖": "boxDl",
|
|
570
|
+
"╗": "boxDL",
|
|
571
|
+
"╘": "boxuR",
|
|
572
|
+
"╙": "boxUr",
|
|
573
|
+
"╚": "boxUR",
|
|
574
|
+
"╛": "boxuL",
|
|
575
|
+
"╜": "boxUl",
|
|
576
|
+
"╝": "boxUL",
|
|
577
|
+
"╞": "boxvR",
|
|
578
|
+
"╟": "boxVr",
|
|
579
|
+
"╠": "boxVR",
|
|
580
|
+
"╡": "boxvL",
|
|
581
|
+
"╢": "boxVl",
|
|
582
|
+
"╣": "boxVL",
|
|
583
|
+
"╤": "boxHd",
|
|
584
|
+
"╥": "boxhD",
|
|
585
|
+
"╦": "boxHD",
|
|
586
|
+
"╧": "boxHu",
|
|
587
|
+
"╨": "boxhU",
|
|
588
|
+
"╩": "boxHU",
|
|
589
|
+
"╪": "boxvH",
|
|
590
|
+
"╫": "boxVh",
|
|
591
|
+
"╬": "boxVH",
|
|
592
|
+
"▀": "uhblk",
|
|
593
|
+
"▄": "lhblk",
|
|
594
|
+
"█": "block",
|
|
595
|
+
"░": "blk14",
|
|
596
|
+
"▒": "blk12",
|
|
597
|
+
"▓": "blk34",
|
|
598
|
+
"□": "squ",
|
|
599
|
+
"▪": "squf",
|
|
600
|
+
"▫": "EmptyVerySmallSquare",
|
|
601
|
+
"▭": "rect",
|
|
602
|
+
"▮": "marker",
|
|
603
|
+
"▱": "fltns",
|
|
604
|
+
"△": "xutri",
|
|
605
|
+
"▴": "utrif",
|
|
606
|
+
"▵": "utri",
|
|
607
|
+
"▸": "rtrif",
|
|
608
|
+
"▹": "rtri",
|
|
609
|
+
"▽": "xdtri",
|
|
610
|
+
"▾": "dtrif",
|
|
611
|
+
"▿": "dtri",
|
|
612
|
+
"◂": "ltrif",
|
|
613
|
+
"◃": "ltri",
|
|
614
|
+
"◊": "loz",
|
|
615
|
+
"○": "cir",
|
|
616
|
+
"◬": "tridot",
|
|
617
|
+
"◯": "xcirc",
|
|
618
|
+
"◸": "ultri",
|
|
619
|
+
"◹": "urtri",
|
|
620
|
+
"◺": "lltri",
|
|
621
|
+
"◻": "EmptySmallSquare",
|
|
622
|
+
"◼": "FilledSmallSquare",
|
|
623
|
+
"★": "starf",
|
|
624
|
+
"☆": "star",
|
|
625
|
+
"☎": "phone",
|
|
626
|
+
"♀": "female",
|
|
627
|
+
"♂": "male",
|
|
628
|
+
"♠": "spades",
|
|
629
|
+
"♣": "clubs",
|
|
630
|
+
"♥": "hearts",
|
|
631
|
+
"♦": "diams",
|
|
632
|
+
"♪": "sung",
|
|
633
|
+
"✓": "check",
|
|
634
|
+
"✗": "cross",
|
|
635
|
+
"✠": "malt",
|
|
636
|
+
"✶": "sext",
|
|
637
|
+
"❘": "VerticalSeparator",
|
|
638
|
+
"⟈": "bsolhsub",
|
|
639
|
+
"⟉": "suphsol",
|
|
640
|
+
"⟵": "xlarr",
|
|
641
|
+
"⟶": "xrarr",
|
|
642
|
+
"⟷": "xharr",
|
|
643
|
+
"⟸": "xlArr",
|
|
644
|
+
"⟹": "xrArr",
|
|
645
|
+
"⟺": "xhArr",
|
|
646
|
+
"⟼": "xmap",
|
|
647
|
+
"⟿": "dzigrarr",
|
|
648
|
+
"⤂": "nvlArr",
|
|
649
|
+
"⤃": "nvrArr",
|
|
650
|
+
"⤄": "nvHarr",
|
|
651
|
+
"⤅": "Map",
|
|
652
|
+
"⤌": "lbarr",
|
|
653
|
+
"⤍": "rbarr",
|
|
654
|
+
"⤎": "lBarr",
|
|
655
|
+
"⤏": "rBarr",
|
|
656
|
+
"⤐": "RBarr",
|
|
657
|
+
"⤑": "DDotrahd",
|
|
658
|
+
"⤒": "UpArrowBar",
|
|
659
|
+
"⤓": "DownArrowBar",
|
|
660
|
+
"⤖": "Rarrtl",
|
|
661
|
+
"⤙": "latail",
|
|
662
|
+
"⤚": "ratail",
|
|
663
|
+
"⤛": "lAtail",
|
|
664
|
+
"⤜": "rAtail",
|
|
665
|
+
"⤝": "larrfs",
|
|
666
|
+
"⤞": "rarrfs",
|
|
667
|
+
"⤟": "larrbfs",
|
|
668
|
+
"⤠": "rarrbfs",
|
|
669
|
+
"⤣": "nwarhk",
|
|
670
|
+
"⤤": "nearhk",
|
|
671
|
+
"⤥": "searhk",
|
|
672
|
+
"⤦": "swarhk",
|
|
673
|
+
"⤧": "nwnear",
|
|
674
|
+
"⤨": "toea",
|
|
675
|
+
"⤩": "tosa",
|
|
676
|
+
"⤪": "swnwar",
|
|
677
|
+
"⤳": "rarrc",
|
|
678
|
+
"⤳̸": "nrarrc",
|
|
679
|
+
"⤵": "cudarrr",
|
|
680
|
+
"⤶": "ldca",
|
|
681
|
+
"⤷": "rdca",
|
|
682
|
+
"⤸": "cudarrl",
|
|
683
|
+
"⤹": "larrpl",
|
|
684
|
+
"⤼": "curarrm",
|
|
685
|
+
"⤽": "cularrp",
|
|
686
|
+
"⥅": "rarrpl",
|
|
687
|
+
"⥈": "harrcir",
|
|
688
|
+
"⥉": "Uarrocir",
|
|
689
|
+
"⥊": "lurdshar",
|
|
690
|
+
"⥋": "ldrushar",
|
|
691
|
+
"⥎": "LeftRightVector",
|
|
692
|
+
"⥏": "RightUpDownVector",
|
|
693
|
+
"⥐": "DownLeftRightVector",
|
|
694
|
+
"⥑": "LeftUpDownVector",
|
|
695
|
+
"⥒": "LeftVectorBar",
|
|
696
|
+
"⥓": "RightVectorBar",
|
|
697
|
+
"⥔": "RightUpVectorBar",
|
|
698
|
+
"⥕": "RightDownVectorBar",
|
|
699
|
+
"⥖": "DownLeftVectorBar",
|
|
700
|
+
"⥗": "DownRightVectorBar",
|
|
701
|
+
"⥘": "LeftUpVectorBar",
|
|
702
|
+
"⥙": "LeftDownVectorBar",
|
|
703
|
+
"⥚": "LeftTeeVector",
|
|
704
|
+
"⥛": "RightTeeVector",
|
|
705
|
+
"⥜": "RightUpTeeVector",
|
|
706
|
+
"⥝": "RightDownTeeVector",
|
|
707
|
+
"⥞": "DownLeftTeeVector",
|
|
708
|
+
"⥟": "DownRightTeeVector",
|
|
709
|
+
"⥠": "LeftUpTeeVector",
|
|
710
|
+
"⥡": "LeftDownTeeVector",
|
|
711
|
+
"⥢": "lHar",
|
|
712
|
+
"⥣": "uHar",
|
|
713
|
+
"⥤": "rHar",
|
|
714
|
+
"⥥": "dHar",
|
|
715
|
+
"⥦": "luruhar",
|
|
716
|
+
"⥧": "ldrdhar",
|
|
717
|
+
"⥨": "ruluhar",
|
|
718
|
+
"⥩": "rdldhar",
|
|
719
|
+
"⥪": "lharul",
|
|
720
|
+
"⥫": "llhard",
|
|
721
|
+
"⥬": "rharul",
|
|
722
|
+
"⥭": "lrhard",
|
|
723
|
+
"⥮": "udhar",
|
|
724
|
+
"⥯": "duhar",
|
|
725
|
+
"⥰": "RoundImplies",
|
|
726
|
+
"⥱": "erarr",
|
|
727
|
+
"⥲": "simrarr",
|
|
728
|
+
"⥳": "larrsim",
|
|
729
|
+
"⥴": "rarrsim",
|
|
730
|
+
"⥵": "rarrap",
|
|
731
|
+
"⥶": "ltlarr",
|
|
732
|
+
"⥸": "gtrarr",
|
|
733
|
+
"⥹": "subrarr",
|
|
734
|
+
"⥻": "suplarr",
|
|
735
|
+
"⥼": "lfisht",
|
|
736
|
+
"⥽": "rfisht",
|
|
737
|
+
"⥾": "ufisht",
|
|
738
|
+
"⥿": "dfisht",
|
|
739
|
+
"⦚": "vzigzag",
|
|
740
|
+
"⦜": "vangrt",
|
|
741
|
+
"⦝": "angrtvbd",
|
|
742
|
+
"⦤": "ange",
|
|
743
|
+
"⦥": "range",
|
|
744
|
+
"⦦": "dwangle",
|
|
745
|
+
"⦧": "uwangle",
|
|
746
|
+
"⦨": "angmsdaa",
|
|
747
|
+
"⦩": "angmsdab",
|
|
748
|
+
"⦪": "angmsdac",
|
|
749
|
+
"⦫": "angmsdad",
|
|
750
|
+
"⦬": "angmsdae",
|
|
751
|
+
"⦭": "angmsdaf",
|
|
752
|
+
"⦮": "angmsdag",
|
|
753
|
+
"⦯": "angmsdah",
|
|
754
|
+
"⦰": "bemptyv",
|
|
755
|
+
"⦱": "demptyv",
|
|
756
|
+
"⦲": "cemptyv",
|
|
757
|
+
"⦳": "raemptyv",
|
|
758
|
+
"⦴": "laemptyv",
|
|
759
|
+
"⦵": "ohbar",
|
|
760
|
+
"⦶": "omid",
|
|
761
|
+
"⦷": "opar",
|
|
762
|
+
"⦹": "operp",
|
|
763
|
+
"⦻": "olcross",
|
|
764
|
+
"⦼": "odsold",
|
|
765
|
+
"⦾": "olcir",
|
|
766
|
+
"⦿": "ofcir",
|
|
767
|
+
"⧀": "olt",
|
|
768
|
+
"⧁": "ogt",
|
|
769
|
+
"⧂": "cirscir",
|
|
770
|
+
"⧃": "cirE",
|
|
771
|
+
"⧄": "solb",
|
|
772
|
+
"⧅": "bsolb",
|
|
773
|
+
"⧉": "boxbox",
|
|
774
|
+
"⧍": "trisb",
|
|
775
|
+
"⧎": "rtriltri",
|
|
776
|
+
"⧏": "LeftTriangleBar",
|
|
777
|
+
"⧏̸": "NotLeftTriangleBar",
|
|
778
|
+
"⧐": "RightTriangleBar",
|
|
779
|
+
"⧐̸": "NotRightTriangleBar",
|
|
780
|
+
"⧜": "iinfin",
|
|
781
|
+
"⧝": "infintie",
|
|
782
|
+
"⧞": "nvinfin",
|
|
783
|
+
"⧣": "eparsl",
|
|
784
|
+
"⧤": "smeparsl",
|
|
785
|
+
"⧥": "eqvparsl",
|
|
786
|
+
"⧫": "lozf",
|
|
787
|
+
"⧴": "RuleDelayed",
|
|
788
|
+
"⧶": "dsol",
|
|
789
|
+
"⨀": "xodot",
|
|
790
|
+
"⨁": "xoplus",
|
|
791
|
+
"⨂": "xotime",
|
|
792
|
+
"⨄": "xuplus",
|
|
793
|
+
"⨆": "xsqcup",
|
|
794
|
+
"⨍": "fpartint",
|
|
795
|
+
"⨐": "cirfnint",
|
|
796
|
+
"⨑": "awint",
|
|
797
|
+
"⨒": "rppolint",
|
|
798
|
+
"⨓": "scpolint",
|
|
799
|
+
"⨔": "npolint",
|
|
800
|
+
"⨕": "pointint",
|
|
801
|
+
"⨖": "quatint",
|
|
802
|
+
"⨗": "intlarhk",
|
|
803
|
+
"⨢": "pluscir",
|
|
804
|
+
"⨣": "plusacir",
|
|
805
|
+
"⨤": "simplus",
|
|
806
|
+
"⨥": "plusdu",
|
|
807
|
+
"⨦": "plussim",
|
|
808
|
+
"⨧": "plustwo",
|
|
809
|
+
"⨩": "mcomma",
|
|
810
|
+
"⨪": "minusdu",
|
|
811
|
+
"⨭": "loplus",
|
|
812
|
+
"⨮": "roplus",
|
|
813
|
+
"⨯": "Cross",
|
|
814
|
+
"⨰": "timesd",
|
|
815
|
+
"⨱": "timesbar",
|
|
816
|
+
"⨳": "smashp",
|
|
817
|
+
"⨴": "lotimes",
|
|
818
|
+
"⨵": "rotimes",
|
|
819
|
+
"⨶": "otimesas",
|
|
820
|
+
"⨷": "Otimes",
|
|
821
|
+
"⨸": "odiv",
|
|
822
|
+
"⨹": "triplus",
|
|
823
|
+
"⨺": "triminus",
|
|
824
|
+
"⨻": "tritime",
|
|
825
|
+
"⨼": "iprod",
|
|
826
|
+
"⨿": "amalg",
|
|
827
|
+
"⩀": "capdot",
|
|
828
|
+
"⩂": "ncup",
|
|
829
|
+
"⩃": "ncap",
|
|
830
|
+
"⩄": "capand",
|
|
831
|
+
"⩅": "cupor",
|
|
832
|
+
"⩆": "cupcap",
|
|
833
|
+
"⩇": "capcup",
|
|
834
|
+
"⩈": "cupbrcap",
|
|
835
|
+
"⩉": "capbrcup",
|
|
836
|
+
"⩊": "cupcup",
|
|
837
|
+
"⩋": "capcap",
|
|
838
|
+
"⩌": "ccups",
|
|
839
|
+
"⩍": "ccaps",
|
|
840
|
+
"⩐": "ccupssm",
|
|
841
|
+
"⩓": "And",
|
|
842
|
+
"⩔": "Or",
|
|
843
|
+
"⩕": "andand",
|
|
844
|
+
"⩖": "oror",
|
|
845
|
+
"⩗": "orslope",
|
|
846
|
+
"⩘": "andslope",
|
|
847
|
+
"⩚": "andv",
|
|
848
|
+
"⩛": "orv",
|
|
849
|
+
"⩜": "andd",
|
|
850
|
+
"⩝": "ord",
|
|
851
|
+
"⩟": "wedbar",
|
|
852
|
+
"⩦": "sdote",
|
|
853
|
+
"⩪": "simdot",
|
|
854
|
+
"⩭": "congdot",
|
|
855
|
+
"⩭̸": "ncongdot",
|
|
856
|
+
"⩮": "easter",
|
|
857
|
+
"⩯": "apacir",
|
|
858
|
+
"⩰": "apE",
|
|
859
|
+
"⩰̸": "napE",
|
|
860
|
+
"⩱": "eplus",
|
|
861
|
+
"⩲": "pluse",
|
|
862
|
+
"⩳": "Esim",
|
|
863
|
+
"⩷": "eDDot",
|
|
864
|
+
"⩸": "equivDD",
|
|
865
|
+
"⩹": "ltcir",
|
|
866
|
+
"⩺": "gtcir",
|
|
867
|
+
"⩻": "ltquest",
|
|
868
|
+
"⩼": "gtquest",
|
|
869
|
+
"⩽": "les",
|
|
870
|
+
"⩽̸": "nles",
|
|
871
|
+
"⩾": "ges",
|
|
872
|
+
"⩾̸": "nges",
|
|
873
|
+
"⩿": "lesdot",
|
|
874
|
+
"⪀": "gesdot",
|
|
875
|
+
"⪁": "lesdoto",
|
|
876
|
+
"⪂": "gesdoto",
|
|
877
|
+
"⪃": "lesdotor",
|
|
878
|
+
"⪄": "gesdotol",
|
|
879
|
+
"⪅": "lap",
|
|
880
|
+
"⪆": "gap",
|
|
881
|
+
"⪇": "lne",
|
|
882
|
+
"⪈": "gne",
|
|
883
|
+
"⪉": "lnap",
|
|
884
|
+
"⪊": "gnap",
|
|
885
|
+
"⪋": "lEg",
|
|
886
|
+
"⪌": "gEl",
|
|
887
|
+
"⪍": "lsime",
|
|
888
|
+
"⪎": "gsime",
|
|
889
|
+
"⪏": "lsimg",
|
|
890
|
+
"⪐": "gsiml",
|
|
891
|
+
"⪑": "lgE",
|
|
892
|
+
"⪒": "glE",
|
|
893
|
+
"⪓": "lesges",
|
|
894
|
+
"⪔": "gesles",
|
|
895
|
+
"⪕": "els",
|
|
896
|
+
"⪖": "egs",
|
|
897
|
+
"⪗": "elsdot",
|
|
898
|
+
"⪘": "egsdot",
|
|
899
|
+
"⪙": "el",
|
|
900
|
+
"⪚": "eg",
|
|
901
|
+
"⪝": "siml",
|
|
902
|
+
"⪞": "simg",
|
|
903
|
+
"⪟": "simlE",
|
|
904
|
+
"⪠": "simgE",
|
|
905
|
+
"⪡": "LessLess",
|
|
906
|
+
"⪡̸": "NotNestedLessLess",
|
|
907
|
+
"⪢": "GreaterGreater",
|
|
908
|
+
"⪢̸": "NotNestedGreaterGreater",
|
|
909
|
+
"⪤": "glj",
|
|
910
|
+
"⪥": "gla",
|
|
911
|
+
"⪦": "ltcc",
|
|
912
|
+
"⪧": "gtcc",
|
|
913
|
+
"⪨": "lescc",
|
|
914
|
+
"⪩": "gescc",
|
|
915
|
+
"⪪": "smt",
|
|
916
|
+
"⪫": "lat",
|
|
917
|
+
"⪬": "smte",
|
|
918
|
+
"⪬︀": "smtes",
|
|
919
|
+
"⪭": "late",
|
|
920
|
+
"⪭︀": "lates",
|
|
921
|
+
"⪮": "bumpE",
|
|
922
|
+
"⪯": "pre",
|
|
923
|
+
"⪯̸": "npre",
|
|
924
|
+
"⪰": "sce",
|
|
925
|
+
"⪰̸": "nsce",
|
|
926
|
+
"⪳": "prE",
|
|
927
|
+
"⪴": "scE",
|
|
928
|
+
"⪵": "prnE",
|
|
929
|
+
"⪶": "scnE",
|
|
930
|
+
"⪷": "prap",
|
|
931
|
+
"⪸": "scap",
|
|
932
|
+
"⪹": "prnap",
|
|
933
|
+
"⪺": "scnap",
|
|
934
|
+
"⪻": "Pr",
|
|
935
|
+
"⪼": "Sc",
|
|
936
|
+
"⪽": "subdot",
|
|
937
|
+
"⪾": "supdot",
|
|
938
|
+
"⪿": "subplus",
|
|
939
|
+
"⫀": "supplus",
|
|
940
|
+
"⫁": "submult",
|
|
941
|
+
"⫂": "supmult",
|
|
942
|
+
"⫃": "subedot",
|
|
943
|
+
"⫄": "supedot",
|
|
944
|
+
"⫅": "subE",
|
|
945
|
+
"⫅̸": "nsubE",
|
|
946
|
+
"⫆": "supE",
|
|
947
|
+
"⫆̸": "nsupE",
|
|
948
|
+
"⫇": "subsim",
|
|
949
|
+
"⫈": "supsim",
|
|
950
|
+
"⫋︀": "vsubnE",
|
|
951
|
+
"⫋": "subnE",
|
|
952
|
+
"⫌︀": "vsupnE",
|
|
953
|
+
"⫌": "supnE",
|
|
954
|
+
"⫏": "csub",
|
|
955
|
+
"⫐": "csup",
|
|
956
|
+
"⫑": "csube",
|
|
957
|
+
"⫒": "csupe",
|
|
958
|
+
"⫓": "subsup",
|
|
959
|
+
"⫔": "supsub",
|
|
960
|
+
"⫕": "subsub",
|
|
961
|
+
"⫖": "supsup",
|
|
962
|
+
"⫗": "suphsub",
|
|
963
|
+
"⫘": "supdsub",
|
|
964
|
+
"⫙": "forkv",
|
|
965
|
+
"⫚": "topfork",
|
|
966
|
+
"⫛": "mlcp",
|
|
967
|
+
"⫤": "Dashv",
|
|
968
|
+
"⫦": "Vdashl",
|
|
969
|
+
"⫧": "Barv",
|
|
970
|
+
"⫨": "vBar",
|
|
971
|
+
"⫩": "vBarv",
|
|
972
|
+
"⫫": "Vbar",
|
|
973
|
+
"⫬": "Not",
|
|
974
|
+
"⫭": "bNot",
|
|
975
|
+
"⫮": "rnmid",
|
|
976
|
+
"⫯": "cirmid",
|
|
977
|
+
"⫰": "midcir",
|
|
978
|
+
"⫱": "topcir",
|
|
979
|
+
"⫲": "nhpar",
|
|
980
|
+
"⫳": "parsim",
|
|
981
|
+
"⫽": "parsl",
|
|
982
|
+
"⫽⃥": "nparsl",
|
|
983
|
+
"♭": "flat",
|
|
984
|
+
"♮": "natur",
|
|
985
|
+
"♯": "sharp",
|
|
986
|
+
"¤": "curren",
|
|
987
|
+
"¢": "cent",
|
|
988
|
+
"$": "dollar",
|
|
989
|
+
"£": "pound",
|
|
990
|
+
"¥": "yen",
|
|
991
|
+
"€": "euro",
|
|
992
|
+
"¹": "sup1",
|
|
993
|
+
"½": "half",
|
|
994
|
+
"⅓": "frac13",
|
|
995
|
+
"¼": "frac14",
|
|
996
|
+
"⅕": "frac15",
|
|
997
|
+
"⅙": "frac16",
|
|
998
|
+
"⅛": "frac18",
|
|
999
|
+
"²": "sup2",
|
|
1000
|
+
"⅔": "frac23",
|
|
1001
|
+
"⅖": "frac25",
|
|
1002
|
+
"³": "sup3",
|
|
1003
|
+
"¾": "frac34",
|
|
1004
|
+
"⅗": "frac35",
|
|
1005
|
+
"⅜": "frac38",
|
|
1006
|
+
"⅘": "frac45",
|
|
1007
|
+
"⅚": "frac56",
|
|
1008
|
+
"⅝": "frac58",
|
|
1009
|
+
"⅞": "frac78",
|
|
1010
|
+
"𝒶": "ascr",
|
|
1011
|
+
"𝕒": "aopf",
|
|
1012
|
+
"𝔞": "afr",
|
|
1013
|
+
"𝔸": "Aopf",
|
|
1014
|
+
"𝔄": "Afr",
|
|
1015
|
+
"𝒜": "Ascr",
|
|
1016
|
+
"ª": "ordf",
|
|
1017
|
+
"á": "aacute",
|
|
1018
|
+
"Á": "Aacute",
|
|
1019
|
+
"à": "agrave",
|
|
1020
|
+
"À": "Agrave",
|
|
1021
|
+
"ă": "abreve",
|
|
1022
|
+
"Ă": "Abreve",
|
|
1023
|
+
"â": "acirc",
|
|
1024
|
+
"Â": "Acirc",
|
|
1025
|
+
"å": "aring",
|
|
1026
|
+
"Å": "angst",
|
|
1027
|
+
"ä": "auml",
|
|
1028
|
+
"Ä": "Auml",
|
|
1029
|
+
"ã": "atilde",
|
|
1030
|
+
"Ã": "Atilde",
|
|
1031
|
+
"ą": "aogon",
|
|
1032
|
+
"Ą": "Aogon",
|
|
1033
|
+
"ā": "amacr",
|
|
1034
|
+
"Ā": "Amacr",
|
|
1035
|
+
"æ": "aelig",
|
|
1036
|
+
"Æ": "AElig",
|
|
1037
|
+
"𝒷": "bscr",
|
|
1038
|
+
"𝕓": "bopf",
|
|
1039
|
+
"𝔟": "bfr",
|
|
1040
|
+
"𝔹": "Bopf",
|
|
1041
|
+
"ℬ": "Bscr",
|
|
1042
|
+
"𝔅": "Bfr",
|
|
1043
|
+
"𝔠": "cfr",
|
|
1044
|
+
"𝒸": "cscr",
|
|
1045
|
+
"𝕔": "copf",
|
|
1046
|
+
"ℭ": "Cfr",
|
|
1047
|
+
"𝒞": "Cscr",
|
|
1048
|
+
"ℂ": "Copf",
|
|
1049
|
+
"ć": "cacute",
|
|
1050
|
+
"Ć": "Cacute",
|
|
1051
|
+
"ĉ": "ccirc",
|
|
1052
|
+
"Ĉ": "Ccirc",
|
|
1053
|
+
"č": "ccaron",
|
|
1054
|
+
"Č": "Ccaron",
|
|
1055
|
+
"ċ": "cdot",
|
|
1056
|
+
"Ċ": "Cdot",
|
|
1057
|
+
"ç": "ccedil",
|
|
1058
|
+
"Ç": "Ccedil",
|
|
1059
|
+
"℅": "incare",
|
|
1060
|
+
"𝔡": "dfr",
|
|
1061
|
+
"ⅆ": "dd",
|
|
1062
|
+
"𝕕": "dopf",
|
|
1063
|
+
"𝒹": "dscr",
|
|
1064
|
+
"𝒟": "Dscr",
|
|
1065
|
+
"𝔇": "Dfr",
|
|
1066
|
+
"ⅅ": "DD",
|
|
1067
|
+
"𝔻": "Dopf",
|
|
1068
|
+
"ď": "dcaron",
|
|
1069
|
+
"Ď": "Dcaron",
|
|
1070
|
+
"đ": "dstrok",
|
|
1071
|
+
"Đ": "Dstrok",
|
|
1072
|
+
"ð": "eth",
|
|
1073
|
+
"Ð": "ETH",
|
|
1074
|
+
"ⅇ": "ee",
|
|
1075
|
+
"ℯ": "escr",
|
|
1076
|
+
"𝔢": "efr",
|
|
1077
|
+
"𝕖": "eopf",
|
|
1078
|
+
"ℰ": "Escr",
|
|
1079
|
+
"𝔈": "Efr",
|
|
1080
|
+
"𝔼": "Eopf",
|
|
1081
|
+
"é": "eacute",
|
|
1082
|
+
"É": "Eacute",
|
|
1083
|
+
"è": "egrave",
|
|
1084
|
+
"È": "Egrave",
|
|
1085
|
+
"ê": "ecirc",
|
|
1086
|
+
"Ê": "Ecirc",
|
|
1087
|
+
"ě": "ecaron",
|
|
1088
|
+
"Ě": "Ecaron",
|
|
1089
|
+
"ë": "euml",
|
|
1090
|
+
"Ë": "Euml",
|
|
1091
|
+
"ė": "edot",
|
|
1092
|
+
"Ė": "Edot",
|
|
1093
|
+
"ę": "eogon",
|
|
1094
|
+
"Ę": "Eogon",
|
|
1095
|
+
"ē": "emacr",
|
|
1096
|
+
"Ē": "Emacr",
|
|
1097
|
+
"𝔣": "ffr",
|
|
1098
|
+
"𝕗": "fopf",
|
|
1099
|
+
"𝒻": "fscr",
|
|
1100
|
+
"𝔉": "Ffr",
|
|
1101
|
+
"𝔽": "Fopf",
|
|
1102
|
+
"ℱ": "Fscr",
|
|
1103
|
+
"ff": "fflig",
|
|
1104
|
+
"ffi": "ffilig",
|
|
1105
|
+
"ffl": "ffllig",
|
|
1106
|
+
"fi": "filig",
|
|
1107
|
+
"fj": "fjlig",
|
|
1108
|
+
"fl": "fllig",
|
|
1109
|
+
"ƒ": "fnof",
|
|
1110
|
+
"ℊ": "gscr",
|
|
1111
|
+
"𝕘": "gopf",
|
|
1112
|
+
"𝔤": "gfr",
|
|
1113
|
+
"𝒢": "Gscr",
|
|
1114
|
+
"𝔾": "Gopf",
|
|
1115
|
+
"𝔊": "Gfr",
|
|
1116
|
+
"ǵ": "gacute",
|
|
1117
|
+
"ğ": "gbreve",
|
|
1118
|
+
"Ğ": "Gbreve",
|
|
1119
|
+
"ĝ": "gcirc",
|
|
1120
|
+
"Ĝ": "Gcirc",
|
|
1121
|
+
"ġ": "gdot",
|
|
1122
|
+
"Ġ": "Gdot",
|
|
1123
|
+
"Ģ": "Gcedil",
|
|
1124
|
+
"𝔥": "hfr",
|
|
1125
|
+
"ℎ": "planckh",
|
|
1126
|
+
"𝒽": "hscr",
|
|
1127
|
+
"𝕙": "hopf",
|
|
1128
|
+
"ℋ": "Hscr",
|
|
1129
|
+
"ℌ": "Hfr",
|
|
1130
|
+
"ℍ": "Hopf",
|
|
1131
|
+
"ĥ": "hcirc",
|
|
1132
|
+
"Ĥ": "Hcirc",
|
|
1133
|
+
"ℏ": "hbar",
|
|
1134
|
+
"ħ": "hstrok",
|
|
1135
|
+
"Ħ": "Hstrok",
|
|
1136
|
+
"𝕚": "iopf",
|
|
1137
|
+
"𝔦": "ifr",
|
|
1138
|
+
"𝒾": "iscr",
|
|
1139
|
+
"ⅈ": "ii",
|
|
1140
|
+
"𝕀": "Iopf",
|
|
1141
|
+
"ℐ": "Iscr",
|
|
1142
|
+
"ℑ": "Im",
|
|
1143
|
+
"í": "iacute",
|
|
1144
|
+
"Í": "Iacute",
|
|
1145
|
+
"ì": "igrave",
|
|
1146
|
+
"Ì": "Igrave",
|
|
1147
|
+
"î": "icirc",
|
|
1148
|
+
"Î": "Icirc",
|
|
1149
|
+
"ï": "iuml",
|
|
1150
|
+
"Ï": "Iuml",
|
|
1151
|
+
"ĩ": "itilde",
|
|
1152
|
+
"Ĩ": "Itilde",
|
|
1153
|
+
"İ": "Idot",
|
|
1154
|
+
"į": "iogon",
|
|
1155
|
+
"Į": "Iogon",
|
|
1156
|
+
"ī": "imacr",
|
|
1157
|
+
"Ī": "Imacr",
|
|
1158
|
+
"ij": "ijlig",
|
|
1159
|
+
"IJ": "IJlig",
|
|
1160
|
+
"ı": "imath",
|
|
1161
|
+
"𝒿": "jscr",
|
|
1162
|
+
"𝕛": "jopf",
|
|
1163
|
+
"𝔧": "jfr",
|
|
1164
|
+
"𝒥": "Jscr",
|
|
1165
|
+
"𝔍": "Jfr",
|
|
1166
|
+
"𝕁": "Jopf",
|
|
1167
|
+
"ĵ": "jcirc",
|
|
1168
|
+
"Ĵ": "Jcirc",
|
|
1169
|
+
"ȷ": "jmath",
|
|
1170
|
+
"𝕜": "kopf",
|
|
1171
|
+
"𝓀": "kscr",
|
|
1172
|
+
"𝔨": "kfr",
|
|
1173
|
+
"𝒦": "Kscr",
|
|
1174
|
+
"𝕂": "Kopf",
|
|
1175
|
+
"𝔎": "Kfr",
|
|
1176
|
+
"ķ": "kcedil",
|
|
1177
|
+
"Ķ": "Kcedil",
|
|
1178
|
+
"𝔩": "lfr",
|
|
1179
|
+
"𝓁": "lscr",
|
|
1180
|
+
"ℓ": "ell",
|
|
1181
|
+
"𝕝": "lopf",
|
|
1182
|
+
"ℒ": "Lscr",
|
|
1183
|
+
"𝔏": "Lfr",
|
|
1184
|
+
"𝕃": "Lopf",
|
|
1185
|
+
"ĺ": "lacute",
|
|
1186
|
+
"Ĺ": "Lacute",
|
|
1187
|
+
"ľ": "lcaron",
|
|
1188
|
+
"Ľ": "Lcaron",
|
|
1189
|
+
"ļ": "lcedil",
|
|
1190
|
+
"Ļ": "Lcedil",
|
|
1191
|
+
"ł": "lstrok",
|
|
1192
|
+
"Ł": "Lstrok",
|
|
1193
|
+
"ŀ": "lmidot",
|
|
1194
|
+
"Ŀ": "Lmidot",
|
|
1195
|
+
"𝔪": "mfr",
|
|
1196
|
+
"𝕞": "mopf",
|
|
1197
|
+
"𝓂": "mscr",
|
|
1198
|
+
"𝔐": "Mfr",
|
|
1199
|
+
"𝕄": "Mopf",
|
|
1200
|
+
"ℳ": "Mscr",
|
|
1201
|
+
"𝔫": "nfr",
|
|
1202
|
+
"𝕟": "nopf",
|
|
1203
|
+
"𝓃": "nscr",
|
|
1204
|
+
"ℕ": "Nopf",
|
|
1205
|
+
"𝒩": "Nscr",
|
|
1206
|
+
"𝔑": "Nfr",
|
|
1207
|
+
"ń": "nacute",
|
|
1208
|
+
"Ń": "Nacute",
|
|
1209
|
+
"ň": "ncaron",
|
|
1210
|
+
"Ň": "Ncaron",
|
|
1211
|
+
"ñ": "ntilde",
|
|
1212
|
+
"Ñ": "Ntilde",
|
|
1213
|
+
"ņ": "ncedil",
|
|
1214
|
+
"Ņ": "Ncedil",
|
|
1215
|
+
"№": "numero",
|
|
1216
|
+
"ŋ": "eng",
|
|
1217
|
+
"Ŋ": "ENG",
|
|
1218
|
+
"𝕠": "oopf",
|
|
1219
|
+
"𝔬": "ofr",
|
|
1220
|
+
"ℴ": "oscr",
|
|
1221
|
+
"𝒪": "Oscr",
|
|
1222
|
+
"𝔒": "Ofr",
|
|
1223
|
+
"𝕆": "Oopf",
|
|
1224
|
+
"º": "ordm",
|
|
1225
|
+
"ó": "oacute",
|
|
1226
|
+
"Ó": "Oacute",
|
|
1227
|
+
"ò": "ograve",
|
|
1228
|
+
"Ò": "Ograve",
|
|
1229
|
+
"ô": "ocirc",
|
|
1230
|
+
"Ô": "Ocirc",
|
|
1231
|
+
"ö": "ouml",
|
|
1232
|
+
"Ö": "Ouml",
|
|
1233
|
+
"ő": "odblac",
|
|
1234
|
+
"Ő": "Odblac",
|
|
1235
|
+
"õ": "otilde",
|
|
1236
|
+
"Õ": "Otilde",
|
|
1237
|
+
"ø": "oslash",
|
|
1238
|
+
"Ø": "Oslash",
|
|
1239
|
+
"ō": "omacr",
|
|
1240
|
+
"Ō": "Omacr",
|
|
1241
|
+
"œ": "oelig",
|
|
1242
|
+
"Œ": "OElig",
|
|
1243
|
+
"𝔭": "pfr",
|
|
1244
|
+
"𝓅": "pscr",
|
|
1245
|
+
"𝕡": "popf",
|
|
1246
|
+
"ℙ": "Popf",
|
|
1247
|
+
"𝔓": "Pfr",
|
|
1248
|
+
"𝒫": "Pscr",
|
|
1249
|
+
"𝕢": "qopf",
|
|
1250
|
+
"𝔮": "qfr",
|
|
1251
|
+
"𝓆": "qscr",
|
|
1252
|
+
"𝒬": "Qscr",
|
|
1253
|
+
"𝔔": "Qfr",
|
|
1254
|
+
"ℚ": "Qopf",
|
|
1255
|
+
"ĸ": "kgreen",
|
|
1256
|
+
"𝔯": "rfr",
|
|
1257
|
+
"𝕣": "ropf",
|
|
1258
|
+
"𝓇": "rscr",
|
|
1259
|
+
"ℛ": "Rscr",
|
|
1260
|
+
"ℜ": "Re",
|
|
1261
|
+
"ℝ": "Ropf",
|
|
1262
|
+
"ŕ": "racute",
|
|
1263
|
+
"Ŕ": "Racute",
|
|
1264
|
+
"ř": "rcaron",
|
|
1265
|
+
"Ř": "Rcaron",
|
|
1266
|
+
"ŗ": "rcedil",
|
|
1267
|
+
"Ŗ": "Rcedil",
|
|
1268
|
+
"𝕤": "sopf",
|
|
1269
|
+
"𝓈": "sscr",
|
|
1270
|
+
"𝔰": "sfr",
|
|
1271
|
+
"𝕊": "Sopf",
|
|
1272
|
+
"𝔖": "Sfr",
|
|
1273
|
+
"𝒮": "Sscr",
|
|
1274
|
+
"Ⓢ": "oS",
|
|
1275
|
+
"ś": "sacute",
|
|
1276
|
+
"Ś": "Sacute",
|
|
1277
|
+
"ŝ": "scirc",
|
|
1278
|
+
"Ŝ": "Scirc",
|
|
1279
|
+
"š": "scaron",
|
|
1280
|
+
"Š": "Scaron",
|
|
1281
|
+
"ş": "scedil",
|
|
1282
|
+
"Ş": "Scedil",
|
|
1283
|
+
"ß": "szlig",
|
|
1284
|
+
"𝔱": "tfr",
|
|
1285
|
+
"𝓉": "tscr",
|
|
1286
|
+
"𝕥": "topf",
|
|
1287
|
+
"𝒯": "Tscr",
|
|
1288
|
+
"𝔗": "Tfr",
|
|
1289
|
+
"𝕋": "Topf",
|
|
1290
|
+
"ť": "tcaron",
|
|
1291
|
+
"Ť": "Tcaron",
|
|
1292
|
+
"ţ": "tcedil",
|
|
1293
|
+
"Ţ": "Tcedil",
|
|
1294
|
+
"™": "trade",
|
|
1295
|
+
"ŧ": "tstrok",
|
|
1296
|
+
"Ŧ": "Tstrok",
|
|
1297
|
+
"𝓊": "uscr",
|
|
1298
|
+
"𝕦": "uopf",
|
|
1299
|
+
"𝔲": "ufr",
|
|
1300
|
+
"𝕌": "Uopf",
|
|
1301
|
+
"𝔘": "Ufr",
|
|
1302
|
+
"𝒰": "Uscr",
|
|
1303
|
+
"ú": "uacute",
|
|
1304
|
+
"Ú": "Uacute",
|
|
1305
|
+
"ù": "ugrave",
|
|
1306
|
+
"Ù": "Ugrave",
|
|
1307
|
+
"ŭ": "ubreve",
|
|
1308
|
+
"Ŭ": "Ubreve",
|
|
1309
|
+
"û": "ucirc",
|
|
1310
|
+
"Û": "Ucirc",
|
|
1311
|
+
"ů": "uring",
|
|
1312
|
+
"Ů": "Uring",
|
|
1313
|
+
"ü": "uuml",
|
|
1314
|
+
"Ü": "Uuml",
|
|
1315
|
+
"ű": "udblac",
|
|
1316
|
+
"Ű": "Udblac",
|
|
1317
|
+
"ũ": "utilde",
|
|
1318
|
+
"Ũ": "Utilde",
|
|
1319
|
+
"ų": "uogon",
|
|
1320
|
+
"Ų": "Uogon",
|
|
1321
|
+
"ū": "umacr",
|
|
1322
|
+
"Ū": "Umacr",
|
|
1323
|
+
"𝔳": "vfr",
|
|
1324
|
+
"𝕧": "vopf",
|
|
1325
|
+
"𝓋": "vscr",
|
|
1326
|
+
"𝔙": "Vfr",
|
|
1327
|
+
"𝕍": "Vopf",
|
|
1328
|
+
"𝒱": "Vscr",
|
|
1329
|
+
"𝕨": "wopf",
|
|
1330
|
+
"𝓌": "wscr",
|
|
1331
|
+
"𝔴": "wfr",
|
|
1332
|
+
"𝒲": "Wscr",
|
|
1333
|
+
"𝕎": "Wopf",
|
|
1334
|
+
"𝔚": "Wfr",
|
|
1335
|
+
"ŵ": "wcirc",
|
|
1336
|
+
"Ŵ": "Wcirc",
|
|
1337
|
+
"𝔵": "xfr",
|
|
1338
|
+
"𝓍": "xscr",
|
|
1339
|
+
"𝕩": "xopf",
|
|
1340
|
+
"𝕏": "Xopf",
|
|
1341
|
+
"𝔛": "Xfr",
|
|
1342
|
+
"𝒳": "Xscr",
|
|
1343
|
+
"𝔶": "yfr",
|
|
1344
|
+
"𝓎": "yscr",
|
|
1345
|
+
"𝕪": "yopf",
|
|
1346
|
+
"𝒴": "Yscr",
|
|
1347
|
+
"𝔜": "Yfr",
|
|
1348
|
+
"𝕐": "Yopf",
|
|
1349
|
+
"ý": "yacute",
|
|
1350
|
+
"Ý": "Yacute",
|
|
1351
|
+
"ŷ": "ycirc",
|
|
1352
|
+
"Ŷ": "Ycirc",
|
|
1353
|
+
"ÿ": "yuml",
|
|
1354
|
+
"Ÿ": "Yuml",
|
|
1355
|
+
"𝓏": "zscr",
|
|
1356
|
+
"𝔷": "zfr",
|
|
1357
|
+
"𝕫": "zopf",
|
|
1358
|
+
"ℨ": "Zfr",
|
|
1359
|
+
"ℤ": "Zopf",
|
|
1360
|
+
"𝒵": "Zscr",
|
|
1361
|
+
"ź": "zacute",
|
|
1362
|
+
"Ź": "Zacute",
|
|
1363
|
+
"ž": "zcaron",
|
|
1364
|
+
"Ž": "Zcaron",
|
|
1365
|
+
"ż": "zdot",
|
|
1366
|
+
"Ż": "Zdot",
|
|
1367
|
+
"Ƶ": "imped",
|
|
1368
|
+
"þ": "thorn",
|
|
1369
|
+
"Þ": "THORN",
|
|
1370
|
+
"ʼn": "napos",
|
|
1371
|
+
"α": "alpha",
|
|
1372
|
+
"Α": "Alpha",
|
|
1373
|
+
"β": "beta",
|
|
1374
|
+
"Β": "Beta",
|
|
1375
|
+
"γ": "gamma",
|
|
1376
|
+
"Γ": "Gamma",
|
|
1377
|
+
"δ": "delta",
|
|
1378
|
+
"Δ": "Delta",
|
|
1379
|
+
"ε": "epsi",
|
|
1380
|
+
"ϵ": "epsiv",
|
|
1381
|
+
"Ε": "Epsilon",
|
|
1382
|
+
"ϝ": "gammad",
|
|
1383
|
+
"Ϝ": "Gammad",
|
|
1384
|
+
"ζ": "zeta",
|
|
1385
|
+
"Ζ": "Zeta",
|
|
1386
|
+
"η": "eta",
|
|
1387
|
+
"Η": "Eta",
|
|
1388
|
+
"θ": "theta",
|
|
1389
|
+
"ϑ": "thetav",
|
|
1390
|
+
"Θ": "Theta",
|
|
1391
|
+
"ι": "iota",
|
|
1392
|
+
"Ι": "Iota",
|
|
1393
|
+
"κ": "kappa",
|
|
1394
|
+
"ϰ": "kappav",
|
|
1395
|
+
"Κ": "Kappa",
|
|
1396
|
+
"λ": "lambda",
|
|
1397
|
+
"Λ": "Lambda",
|
|
1398
|
+
"μ": "mu",
|
|
1399
|
+
"µ": "micro",
|
|
1400
|
+
"Μ": "Mu",
|
|
1401
|
+
"ν": "nu",
|
|
1402
|
+
"Ν": "Nu",
|
|
1403
|
+
"ξ": "xi",
|
|
1404
|
+
"Ξ": "Xi",
|
|
1405
|
+
"ο": "omicron",
|
|
1406
|
+
"Ο": "Omicron",
|
|
1407
|
+
"π": "pi",
|
|
1408
|
+
"ϖ": "piv",
|
|
1409
|
+
"Π": "Pi",
|
|
1410
|
+
"ρ": "rho",
|
|
1411
|
+
"ϱ": "rhov",
|
|
1412
|
+
"Ρ": "Rho",
|
|
1413
|
+
"σ": "sigma",
|
|
1414
|
+
"Σ": "Sigma",
|
|
1415
|
+
"ς": "sigmaf",
|
|
1416
|
+
"τ": "tau",
|
|
1417
|
+
"Τ": "Tau",
|
|
1418
|
+
"υ": "upsi",
|
|
1419
|
+
"Υ": "Upsilon",
|
|
1420
|
+
"ϒ": "Upsi",
|
|
1421
|
+
"φ": "phi",
|
|
1422
|
+
"ϕ": "phiv",
|
|
1423
|
+
"Φ": "Phi",
|
|
1424
|
+
"χ": "chi",
|
|
1425
|
+
"Χ": "Chi",
|
|
1426
|
+
"ψ": "psi",
|
|
1427
|
+
"Ψ": "Psi",
|
|
1428
|
+
"ω": "omega",
|
|
1429
|
+
"Ω": "ohm",
|
|
1430
|
+
"а": "acy",
|
|
1431
|
+
"А": "Acy",
|
|
1432
|
+
"б": "bcy",
|
|
1433
|
+
"Б": "Bcy",
|
|
1434
|
+
"в": "vcy",
|
|
1435
|
+
"В": "Vcy",
|
|
1436
|
+
"г": "gcy",
|
|
1437
|
+
"Г": "Gcy",
|
|
1438
|
+
"ѓ": "gjcy",
|
|
1439
|
+
"Ѓ": "GJcy",
|
|
1440
|
+
"д": "dcy",
|
|
1441
|
+
"Д": "Dcy",
|
|
1442
|
+
"ђ": "djcy",
|
|
1443
|
+
"Ђ": "DJcy",
|
|
1444
|
+
"е": "iecy",
|
|
1445
|
+
"Е": "IEcy",
|
|
1446
|
+
"ё": "iocy",
|
|
1447
|
+
"Ё": "IOcy",
|
|
1448
|
+
"є": "jukcy",
|
|
1449
|
+
"Є": "Jukcy",
|
|
1450
|
+
"ж": "zhcy",
|
|
1451
|
+
"Ж": "ZHcy",
|
|
1452
|
+
"з": "zcy",
|
|
1453
|
+
"З": "Zcy",
|
|
1454
|
+
"ѕ": "dscy",
|
|
1455
|
+
"Ѕ": "DScy",
|
|
1456
|
+
"и": "icy",
|
|
1457
|
+
"И": "Icy",
|
|
1458
|
+
"і": "iukcy",
|
|
1459
|
+
"І": "Iukcy",
|
|
1460
|
+
"ї": "yicy",
|
|
1461
|
+
"Ї": "YIcy",
|
|
1462
|
+
"й": "jcy",
|
|
1463
|
+
"Й": "Jcy",
|
|
1464
|
+
"ј": "jsercy",
|
|
1465
|
+
"Ј": "Jsercy",
|
|
1466
|
+
"к": "kcy",
|
|
1467
|
+
"К": "Kcy",
|
|
1468
|
+
"ќ": "kjcy",
|
|
1469
|
+
"Ќ": "KJcy",
|
|
1470
|
+
"л": "lcy",
|
|
1471
|
+
"Л": "Lcy",
|
|
1472
|
+
"љ": "ljcy",
|
|
1473
|
+
"Љ": "LJcy",
|
|
1474
|
+
"м": "mcy",
|
|
1475
|
+
"М": "Mcy",
|
|
1476
|
+
"н": "ncy",
|
|
1477
|
+
"Н": "Ncy",
|
|
1478
|
+
"њ": "njcy",
|
|
1479
|
+
"Њ": "NJcy",
|
|
1480
|
+
"о": "ocy",
|
|
1481
|
+
"О": "Ocy",
|
|
1482
|
+
"п": "pcy",
|
|
1483
|
+
"П": "Pcy",
|
|
1484
|
+
"р": "rcy",
|
|
1485
|
+
"Р": "Rcy",
|
|
1486
|
+
"с": "scy",
|
|
1487
|
+
"С": "Scy",
|
|
1488
|
+
"т": "tcy",
|
|
1489
|
+
"Т": "Tcy",
|
|
1490
|
+
"ћ": "tshcy",
|
|
1491
|
+
"Ћ": "TSHcy",
|
|
1492
|
+
"у": "ucy",
|
|
1493
|
+
"У": "Ucy",
|
|
1494
|
+
"ў": "ubrcy",
|
|
1495
|
+
"Ў": "Ubrcy",
|
|
1496
|
+
"ф": "fcy",
|
|
1497
|
+
"Ф": "Fcy",
|
|
1498
|
+
"х": "khcy",
|
|
1499
|
+
"Х": "KHcy",
|
|
1500
|
+
"ц": "tscy",
|
|
1501
|
+
"Ц": "TScy",
|
|
1502
|
+
"ч": "chcy",
|
|
1503
|
+
"Ч": "CHcy",
|
|
1504
|
+
"џ": "dzcy",
|
|
1505
|
+
"Џ": "DZcy",
|
|
1506
|
+
"ш": "shcy",
|
|
1507
|
+
"Ш": "SHcy",
|
|
1508
|
+
"щ": "shchcy",
|
|
1509
|
+
"Щ": "SHCHcy",
|
|
1510
|
+
"ъ": "hardcy",
|
|
1511
|
+
"Ъ": "HARDcy",
|
|
1512
|
+
"ы": "ycy",
|
|
1513
|
+
"Ы": "Ycy",
|
|
1514
|
+
"ь": "softcy",
|
|
1515
|
+
"Ь": "SOFTcy",
|
|
1516
|
+
"э": "ecy",
|
|
1517
|
+
"Э": "Ecy",
|
|
1518
|
+
"ю": "yucy",
|
|
1519
|
+
"Ю": "YUcy",
|
|
1520
|
+
"я": "yacy",
|
|
1521
|
+
"Я": "YAcy",
|
|
1522
|
+
"ℵ": "aleph",
|
|
1523
|
+
"ℶ": "beth",
|
|
1524
|
+
"ℷ": "gimel",
|
|
1525
|
+
"ℸ": "daleth"
|
|
1526
|
+
};
|
|
1527
|
+
var regexEscape = /["&'<>`]/g;
|
|
1528
|
+
var escapeMap = {
|
|
1529
|
+
"\"": """,
|
|
1530
|
+
"&": "&",
|
|
1531
|
+
"'": "'",
|
|
1532
|
+
"<": "<",
|
|
1533
|
+
">": ">",
|
|
1534
|
+
"`": "`"
|
|
1535
|
+
};
|
|
1536
|
+
var regexInvalidEntity = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/;
|
|
1537
|
+
var regexInvalidRawCodePoint = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/;
|
|
1538
|
+
var regexDecode = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g;
|
|
1539
|
+
var decodeMap = {
|
|
1540
|
+
"aacute": "á",
|
|
1541
|
+
"Aacute": "Á",
|
|
1542
|
+
"abreve": "ă",
|
|
1543
|
+
"Abreve": "Ă",
|
|
1544
|
+
"ac": "∾",
|
|
1545
|
+
"acd": "∿",
|
|
1546
|
+
"acE": "∾̳",
|
|
1547
|
+
"acirc": "â",
|
|
1548
|
+
"Acirc": "Â",
|
|
1549
|
+
"acute": "´",
|
|
1550
|
+
"acy": "а",
|
|
1551
|
+
"Acy": "А",
|
|
1552
|
+
"aelig": "æ",
|
|
1553
|
+
"AElig": "Æ",
|
|
1554
|
+
"af": "",
|
|
1555
|
+
"afr": "𝔞",
|
|
1556
|
+
"Afr": "𝔄",
|
|
1557
|
+
"agrave": "à",
|
|
1558
|
+
"Agrave": "À",
|
|
1559
|
+
"alefsym": "ℵ",
|
|
1560
|
+
"aleph": "ℵ",
|
|
1561
|
+
"alpha": "α",
|
|
1562
|
+
"Alpha": "Α",
|
|
1563
|
+
"amacr": "ā",
|
|
1564
|
+
"Amacr": "Ā",
|
|
1565
|
+
"amalg": "⨿",
|
|
1566
|
+
"amp": "&",
|
|
1567
|
+
"AMP": "&",
|
|
1568
|
+
"and": "∧",
|
|
1569
|
+
"And": "⩓",
|
|
1570
|
+
"andand": "⩕",
|
|
1571
|
+
"andd": "⩜",
|
|
1572
|
+
"andslope": "⩘",
|
|
1573
|
+
"andv": "⩚",
|
|
1574
|
+
"ang": "∠",
|
|
1575
|
+
"ange": "⦤",
|
|
1576
|
+
"angle": "∠",
|
|
1577
|
+
"angmsd": "∡",
|
|
1578
|
+
"angmsdaa": "⦨",
|
|
1579
|
+
"angmsdab": "⦩",
|
|
1580
|
+
"angmsdac": "⦪",
|
|
1581
|
+
"angmsdad": "⦫",
|
|
1582
|
+
"angmsdae": "⦬",
|
|
1583
|
+
"angmsdaf": "⦭",
|
|
1584
|
+
"angmsdag": "⦮",
|
|
1585
|
+
"angmsdah": "⦯",
|
|
1586
|
+
"angrt": "∟",
|
|
1587
|
+
"angrtvb": "⊾",
|
|
1588
|
+
"angrtvbd": "⦝",
|
|
1589
|
+
"angsph": "∢",
|
|
1590
|
+
"angst": "Å",
|
|
1591
|
+
"angzarr": "⍼",
|
|
1592
|
+
"aogon": "ą",
|
|
1593
|
+
"Aogon": "Ą",
|
|
1594
|
+
"aopf": "𝕒",
|
|
1595
|
+
"Aopf": "𝔸",
|
|
1596
|
+
"ap": "≈",
|
|
1597
|
+
"apacir": "⩯",
|
|
1598
|
+
"ape": "≊",
|
|
1599
|
+
"apE": "⩰",
|
|
1600
|
+
"apid": "≋",
|
|
1601
|
+
"apos": "'",
|
|
1602
|
+
"ApplyFunction": "",
|
|
1603
|
+
"approx": "≈",
|
|
1604
|
+
"approxeq": "≊",
|
|
1605
|
+
"aring": "å",
|
|
1606
|
+
"Aring": "Å",
|
|
1607
|
+
"ascr": "𝒶",
|
|
1608
|
+
"Ascr": "𝒜",
|
|
1609
|
+
"Assign": "≔",
|
|
1610
|
+
"ast": "*",
|
|
1611
|
+
"asymp": "≈",
|
|
1612
|
+
"asympeq": "≍",
|
|
1613
|
+
"atilde": "ã",
|
|
1614
|
+
"Atilde": "Ã",
|
|
1615
|
+
"auml": "ä",
|
|
1616
|
+
"Auml": "Ä",
|
|
1617
|
+
"awconint": "∳",
|
|
1618
|
+
"awint": "⨑",
|
|
1619
|
+
"backcong": "≌",
|
|
1620
|
+
"backepsilon": "϶",
|
|
1621
|
+
"backprime": "‵",
|
|
1622
|
+
"backsim": "∽",
|
|
1623
|
+
"backsimeq": "⋍",
|
|
1624
|
+
"Backslash": "∖",
|
|
1625
|
+
"Barv": "⫧",
|
|
1626
|
+
"barvee": "⊽",
|
|
1627
|
+
"barwed": "⌅",
|
|
1628
|
+
"Barwed": "⌆",
|
|
1629
|
+
"barwedge": "⌅",
|
|
1630
|
+
"bbrk": "⎵",
|
|
1631
|
+
"bbrktbrk": "⎶",
|
|
1632
|
+
"bcong": "≌",
|
|
1633
|
+
"bcy": "б",
|
|
1634
|
+
"Bcy": "Б",
|
|
1635
|
+
"bdquo": "„",
|
|
1636
|
+
"becaus": "∵",
|
|
1637
|
+
"because": "∵",
|
|
1638
|
+
"Because": "∵",
|
|
1639
|
+
"bemptyv": "⦰",
|
|
1640
|
+
"bepsi": "϶",
|
|
1641
|
+
"bernou": "ℬ",
|
|
1642
|
+
"Bernoullis": "ℬ",
|
|
1643
|
+
"beta": "β",
|
|
1644
|
+
"Beta": "Β",
|
|
1645
|
+
"beth": "ℶ",
|
|
1646
|
+
"between": "≬",
|
|
1647
|
+
"bfr": "𝔟",
|
|
1648
|
+
"Bfr": "𝔅",
|
|
1649
|
+
"bigcap": "⋂",
|
|
1650
|
+
"bigcirc": "◯",
|
|
1651
|
+
"bigcup": "⋃",
|
|
1652
|
+
"bigodot": "⨀",
|
|
1653
|
+
"bigoplus": "⨁",
|
|
1654
|
+
"bigotimes": "⨂",
|
|
1655
|
+
"bigsqcup": "⨆",
|
|
1656
|
+
"bigstar": "★",
|
|
1657
|
+
"bigtriangledown": "▽",
|
|
1658
|
+
"bigtriangleup": "△",
|
|
1659
|
+
"biguplus": "⨄",
|
|
1660
|
+
"bigvee": "⋁",
|
|
1661
|
+
"bigwedge": "⋀",
|
|
1662
|
+
"bkarow": "⤍",
|
|
1663
|
+
"blacklozenge": "⧫",
|
|
1664
|
+
"blacksquare": "▪",
|
|
1665
|
+
"blacktriangle": "▴",
|
|
1666
|
+
"blacktriangledown": "▾",
|
|
1667
|
+
"blacktriangleleft": "◂",
|
|
1668
|
+
"blacktriangleright": "▸",
|
|
1669
|
+
"blank": "␣",
|
|
1670
|
+
"blk12": "▒",
|
|
1671
|
+
"blk14": "░",
|
|
1672
|
+
"blk34": "▓",
|
|
1673
|
+
"block": "█",
|
|
1674
|
+
"bne": "=⃥",
|
|
1675
|
+
"bnequiv": "≡⃥",
|
|
1676
|
+
"bnot": "⌐",
|
|
1677
|
+
"bNot": "⫭",
|
|
1678
|
+
"bopf": "𝕓",
|
|
1679
|
+
"Bopf": "𝔹",
|
|
1680
|
+
"bot": "⊥",
|
|
1681
|
+
"bottom": "⊥",
|
|
1682
|
+
"bowtie": "⋈",
|
|
1683
|
+
"boxbox": "⧉",
|
|
1684
|
+
"boxdl": "┐",
|
|
1685
|
+
"boxdL": "╕",
|
|
1686
|
+
"boxDl": "╖",
|
|
1687
|
+
"boxDL": "╗",
|
|
1688
|
+
"boxdr": "┌",
|
|
1689
|
+
"boxdR": "╒",
|
|
1690
|
+
"boxDr": "╓",
|
|
1691
|
+
"boxDR": "╔",
|
|
1692
|
+
"boxh": "─",
|
|
1693
|
+
"boxH": "═",
|
|
1694
|
+
"boxhd": "┬",
|
|
1695
|
+
"boxhD": "╥",
|
|
1696
|
+
"boxHd": "╤",
|
|
1697
|
+
"boxHD": "╦",
|
|
1698
|
+
"boxhu": "┴",
|
|
1699
|
+
"boxhU": "╨",
|
|
1700
|
+
"boxHu": "╧",
|
|
1701
|
+
"boxHU": "╩",
|
|
1702
|
+
"boxminus": "⊟",
|
|
1703
|
+
"boxplus": "⊞",
|
|
1704
|
+
"boxtimes": "⊠",
|
|
1705
|
+
"boxul": "┘",
|
|
1706
|
+
"boxuL": "╛",
|
|
1707
|
+
"boxUl": "╜",
|
|
1708
|
+
"boxUL": "╝",
|
|
1709
|
+
"boxur": "└",
|
|
1710
|
+
"boxuR": "╘",
|
|
1711
|
+
"boxUr": "╙",
|
|
1712
|
+
"boxUR": "╚",
|
|
1713
|
+
"boxv": "│",
|
|
1714
|
+
"boxV": "║",
|
|
1715
|
+
"boxvh": "┼",
|
|
1716
|
+
"boxvH": "╪",
|
|
1717
|
+
"boxVh": "╫",
|
|
1718
|
+
"boxVH": "╬",
|
|
1719
|
+
"boxvl": "┤",
|
|
1720
|
+
"boxvL": "╡",
|
|
1721
|
+
"boxVl": "╢",
|
|
1722
|
+
"boxVL": "╣",
|
|
1723
|
+
"boxvr": "├",
|
|
1724
|
+
"boxvR": "╞",
|
|
1725
|
+
"boxVr": "╟",
|
|
1726
|
+
"boxVR": "╠",
|
|
1727
|
+
"bprime": "‵",
|
|
1728
|
+
"breve": "˘",
|
|
1729
|
+
"Breve": "˘",
|
|
1730
|
+
"brvbar": "¦",
|
|
1731
|
+
"bscr": "𝒷",
|
|
1732
|
+
"Bscr": "ℬ",
|
|
1733
|
+
"bsemi": "⁏",
|
|
1734
|
+
"bsim": "∽",
|
|
1735
|
+
"bsime": "⋍",
|
|
1736
|
+
"bsol": "\\",
|
|
1737
|
+
"bsolb": "⧅",
|
|
1738
|
+
"bsolhsub": "⟈",
|
|
1739
|
+
"bull": "•",
|
|
1740
|
+
"bullet": "•",
|
|
1741
|
+
"bump": "≎",
|
|
1742
|
+
"bumpe": "≏",
|
|
1743
|
+
"bumpE": "⪮",
|
|
1744
|
+
"bumpeq": "≏",
|
|
1745
|
+
"Bumpeq": "≎",
|
|
1746
|
+
"cacute": "ć",
|
|
1747
|
+
"Cacute": "Ć",
|
|
1748
|
+
"cap": "∩",
|
|
1749
|
+
"Cap": "⋒",
|
|
1750
|
+
"capand": "⩄",
|
|
1751
|
+
"capbrcup": "⩉",
|
|
1752
|
+
"capcap": "⩋",
|
|
1753
|
+
"capcup": "⩇",
|
|
1754
|
+
"capdot": "⩀",
|
|
1755
|
+
"CapitalDifferentialD": "ⅅ",
|
|
1756
|
+
"caps": "∩︀",
|
|
1757
|
+
"caret": "⁁",
|
|
1758
|
+
"caron": "ˇ",
|
|
1759
|
+
"Cayleys": "ℭ",
|
|
1760
|
+
"ccaps": "⩍",
|
|
1761
|
+
"ccaron": "č",
|
|
1762
|
+
"Ccaron": "Č",
|
|
1763
|
+
"ccedil": "ç",
|
|
1764
|
+
"Ccedil": "Ç",
|
|
1765
|
+
"ccirc": "ĉ",
|
|
1766
|
+
"Ccirc": "Ĉ",
|
|
1767
|
+
"Cconint": "∰",
|
|
1768
|
+
"ccups": "⩌",
|
|
1769
|
+
"ccupssm": "⩐",
|
|
1770
|
+
"cdot": "ċ",
|
|
1771
|
+
"Cdot": "Ċ",
|
|
1772
|
+
"cedil": "¸",
|
|
1773
|
+
"Cedilla": "¸",
|
|
1774
|
+
"cemptyv": "⦲",
|
|
1775
|
+
"cent": "¢",
|
|
1776
|
+
"centerdot": "·",
|
|
1777
|
+
"CenterDot": "·",
|
|
1778
|
+
"cfr": "𝔠",
|
|
1779
|
+
"Cfr": "ℭ",
|
|
1780
|
+
"chcy": "ч",
|
|
1781
|
+
"CHcy": "Ч",
|
|
1782
|
+
"check": "✓",
|
|
1783
|
+
"checkmark": "✓",
|
|
1784
|
+
"chi": "χ",
|
|
1785
|
+
"Chi": "Χ",
|
|
1786
|
+
"cir": "○",
|
|
1787
|
+
"circ": "ˆ",
|
|
1788
|
+
"circeq": "≗",
|
|
1789
|
+
"circlearrowleft": "↺",
|
|
1790
|
+
"circlearrowright": "↻",
|
|
1791
|
+
"circledast": "⊛",
|
|
1792
|
+
"circledcirc": "⊚",
|
|
1793
|
+
"circleddash": "⊝",
|
|
1794
|
+
"CircleDot": "⊙",
|
|
1795
|
+
"circledR": "®",
|
|
1796
|
+
"circledS": "Ⓢ",
|
|
1797
|
+
"CircleMinus": "⊖",
|
|
1798
|
+
"CirclePlus": "⊕",
|
|
1799
|
+
"CircleTimes": "⊗",
|
|
1800
|
+
"cire": "≗",
|
|
1801
|
+
"cirE": "⧃",
|
|
1802
|
+
"cirfnint": "⨐",
|
|
1803
|
+
"cirmid": "⫯",
|
|
1804
|
+
"cirscir": "⧂",
|
|
1805
|
+
"ClockwiseContourIntegral": "∲",
|
|
1806
|
+
"CloseCurlyDoubleQuote": "”",
|
|
1807
|
+
"CloseCurlyQuote": "’",
|
|
1808
|
+
"clubs": "♣",
|
|
1809
|
+
"clubsuit": "♣",
|
|
1810
|
+
"colon": ":",
|
|
1811
|
+
"Colon": "∷",
|
|
1812
|
+
"colone": "≔",
|
|
1813
|
+
"Colone": "⩴",
|
|
1814
|
+
"coloneq": "≔",
|
|
1815
|
+
"comma": ",",
|
|
1816
|
+
"commat": "@",
|
|
1817
|
+
"comp": "∁",
|
|
1818
|
+
"compfn": "∘",
|
|
1819
|
+
"complement": "∁",
|
|
1820
|
+
"complexes": "ℂ",
|
|
1821
|
+
"cong": "≅",
|
|
1822
|
+
"congdot": "⩭",
|
|
1823
|
+
"Congruent": "≡",
|
|
1824
|
+
"conint": "∮",
|
|
1825
|
+
"Conint": "∯",
|
|
1826
|
+
"ContourIntegral": "∮",
|
|
1827
|
+
"copf": "𝕔",
|
|
1828
|
+
"Copf": "ℂ",
|
|
1829
|
+
"coprod": "∐",
|
|
1830
|
+
"Coproduct": "∐",
|
|
1831
|
+
"copy": "©",
|
|
1832
|
+
"COPY": "©",
|
|
1833
|
+
"copysr": "℗",
|
|
1834
|
+
"CounterClockwiseContourIntegral": "∳",
|
|
1835
|
+
"crarr": "↵",
|
|
1836
|
+
"cross": "✗",
|
|
1837
|
+
"Cross": "⨯",
|
|
1838
|
+
"cscr": "𝒸",
|
|
1839
|
+
"Cscr": "𝒞",
|
|
1840
|
+
"csub": "⫏",
|
|
1841
|
+
"csube": "⫑",
|
|
1842
|
+
"csup": "⫐",
|
|
1843
|
+
"csupe": "⫒",
|
|
1844
|
+
"ctdot": "⋯",
|
|
1845
|
+
"cudarrl": "⤸",
|
|
1846
|
+
"cudarrr": "⤵",
|
|
1847
|
+
"cuepr": "⋞",
|
|
1848
|
+
"cuesc": "⋟",
|
|
1849
|
+
"cularr": "↶",
|
|
1850
|
+
"cularrp": "⤽",
|
|
1851
|
+
"cup": "∪",
|
|
1852
|
+
"Cup": "⋓",
|
|
1853
|
+
"cupbrcap": "⩈",
|
|
1854
|
+
"cupcap": "⩆",
|
|
1855
|
+
"CupCap": "≍",
|
|
1856
|
+
"cupcup": "⩊",
|
|
1857
|
+
"cupdot": "⊍",
|
|
1858
|
+
"cupor": "⩅",
|
|
1859
|
+
"cups": "∪︀",
|
|
1860
|
+
"curarr": "↷",
|
|
1861
|
+
"curarrm": "⤼",
|
|
1862
|
+
"curlyeqprec": "⋞",
|
|
1863
|
+
"curlyeqsucc": "⋟",
|
|
1864
|
+
"curlyvee": "⋎",
|
|
1865
|
+
"curlywedge": "⋏",
|
|
1866
|
+
"curren": "¤",
|
|
1867
|
+
"curvearrowleft": "↶",
|
|
1868
|
+
"curvearrowright": "↷",
|
|
1869
|
+
"cuvee": "⋎",
|
|
1870
|
+
"cuwed": "⋏",
|
|
1871
|
+
"cwconint": "∲",
|
|
1872
|
+
"cwint": "∱",
|
|
1873
|
+
"cylcty": "⌭",
|
|
1874
|
+
"dagger": "†",
|
|
1875
|
+
"Dagger": "‡",
|
|
1876
|
+
"daleth": "ℸ",
|
|
1877
|
+
"darr": "↓",
|
|
1878
|
+
"dArr": "⇓",
|
|
1879
|
+
"Darr": "↡",
|
|
1880
|
+
"dash": "‐",
|
|
1881
|
+
"dashv": "⊣",
|
|
1882
|
+
"Dashv": "⫤",
|
|
1883
|
+
"dbkarow": "⤏",
|
|
1884
|
+
"dblac": "˝",
|
|
1885
|
+
"dcaron": "ď",
|
|
1886
|
+
"Dcaron": "Ď",
|
|
1887
|
+
"dcy": "д",
|
|
1888
|
+
"Dcy": "Д",
|
|
1889
|
+
"dd": "ⅆ",
|
|
1890
|
+
"DD": "ⅅ",
|
|
1891
|
+
"ddagger": "‡",
|
|
1892
|
+
"ddarr": "⇊",
|
|
1893
|
+
"DDotrahd": "⤑",
|
|
1894
|
+
"ddotseq": "⩷",
|
|
1895
|
+
"deg": "°",
|
|
1896
|
+
"Del": "∇",
|
|
1897
|
+
"delta": "δ",
|
|
1898
|
+
"Delta": "Δ",
|
|
1899
|
+
"demptyv": "⦱",
|
|
1900
|
+
"dfisht": "⥿",
|
|
1901
|
+
"dfr": "𝔡",
|
|
1902
|
+
"Dfr": "𝔇",
|
|
1903
|
+
"dHar": "⥥",
|
|
1904
|
+
"dharl": "⇃",
|
|
1905
|
+
"dharr": "⇂",
|
|
1906
|
+
"DiacriticalAcute": "´",
|
|
1907
|
+
"DiacriticalDot": "˙",
|
|
1908
|
+
"DiacriticalDoubleAcute": "˝",
|
|
1909
|
+
"DiacriticalGrave": "`",
|
|
1910
|
+
"DiacriticalTilde": "˜",
|
|
1911
|
+
"diam": "⋄",
|
|
1912
|
+
"diamond": "⋄",
|
|
1913
|
+
"Diamond": "⋄",
|
|
1914
|
+
"diamondsuit": "♦",
|
|
1915
|
+
"diams": "♦",
|
|
1916
|
+
"die": "¨",
|
|
1917
|
+
"DifferentialD": "ⅆ",
|
|
1918
|
+
"digamma": "ϝ",
|
|
1919
|
+
"disin": "⋲",
|
|
1920
|
+
"div": "÷",
|
|
1921
|
+
"divide": "÷",
|
|
1922
|
+
"divideontimes": "⋇",
|
|
1923
|
+
"divonx": "⋇",
|
|
1924
|
+
"djcy": "ђ",
|
|
1925
|
+
"DJcy": "Ђ",
|
|
1926
|
+
"dlcorn": "⌞",
|
|
1927
|
+
"dlcrop": "⌍",
|
|
1928
|
+
"dollar": "$",
|
|
1929
|
+
"dopf": "𝕕",
|
|
1930
|
+
"Dopf": "𝔻",
|
|
1931
|
+
"dot": "˙",
|
|
1932
|
+
"Dot": "¨",
|
|
1933
|
+
"DotDot": "⃜",
|
|
1934
|
+
"doteq": "≐",
|
|
1935
|
+
"doteqdot": "≑",
|
|
1936
|
+
"DotEqual": "≐",
|
|
1937
|
+
"dotminus": "∸",
|
|
1938
|
+
"dotplus": "∔",
|
|
1939
|
+
"dotsquare": "⊡",
|
|
1940
|
+
"doublebarwedge": "⌆",
|
|
1941
|
+
"DoubleContourIntegral": "∯",
|
|
1942
|
+
"DoubleDot": "¨",
|
|
1943
|
+
"DoubleDownArrow": "⇓",
|
|
1944
|
+
"DoubleLeftArrow": "⇐",
|
|
1945
|
+
"DoubleLeftRightArrow": "⇔",
|
|
1946
|
+
"DoubleLeftTee": "⫤",
|
|
1947
|
+
"DoubleLongLeftArrow": "⟸",
|
|
1948
|
+
"DoubleLongLeftRightArrow": "⟺",
|
|
1949
|
+
"DoubleLongRightArrow": "⟹",
|
|
1950
|
+
"DoubleRightArrow": "⇒",
|
|
1951
|
+
"DoubleRightTee": "⊨",
|
|
1952
|
+
"DoubleUpArrow": "⇑",
|
|
1953
|
+
"DoubleUpDownArrow": "⇕",
|
|
1954
|
+
"DoubleVerticalBar": "∥",
|
|
1955
|
+
"downarrow": "↓",
|
|
1956
|
+
"Downarrow": "⇓",
|
|
1957
|
+
"DownArrow": "↓",
|
|
1958
|
+
"DownArrowBar": "⤓",
|
|
1959
|
+
"DownArrowUpArrow": "⇵",
|
|
1960
|
+
"DownBreve": "̑",
|
|
1961
|
+
"downdownarrows": "⇊",
|
|
1962
|
+
"downharpoonleft": "⇃",
|
|
1963
|
+
"downharpoonright": "⇂",
|
|
1964
|
+
"DownLeftRightVector": "⥐",
|
|
1965
|
+
"DownLeftTeeVector": "⥞",
|
|
1966
|
+
"DownLeftVector": "↽",
|
|
1967
|
+
"DownLeftVectorBar": "⥖",
|
|
1968
|
+
"DownRightTeeVector": "⥟",
|
|
1969
|
+
"DownRightVector": "⇁",
|
|
1970
|
+
"DownRightVectorBar": "⥗",
|
|
1971
|
+
"DownTee": "⊤",
|
|
1972
|
+
"DownTeeArrow": "↧",
|
|
1973
|
+
"drbkarow": "⤐",
|
|
1974
|
+
"drcorn": "⌟",
|
|
1975
|
+
"drcrop": "⌌",
|
|
1976
|
+
"dscr": "𝒹",
|
|
1977
|
+
"Dscr": "𝒟",
|
|
1978
|
+
"dscy": "ѕ",
|
|
1979
|
+
"DScy": "Ѕ",
|
|
1980
|
+
"dsol": "⧶",
|
|
1981
|
+
"dstrok": "đ",
|
|
1982
|
+
"Dstrok": "Đ",
|
|
1983
|
+
"dtdot": "⋱",
|
|
1984
|
+
"dtri": "▿",
|
|
1985
|
+
"dtrif": "▾",
|
|
1986
|
+
"duarr": "⇵",
|
|
1987
|
+
"duhar": "⥯",
|
|
1988
|
+
"dwangle": "⦦",
|
|
1989
|
+
"dzcy": "џ",
|
|
1990
|
+
"DZcy": "Џ",
|
|
1991
|
+
"dzigrarr": "⟿",
|
|
1992
|
+
"eacute": "é",
|
|
1993
|
+
"Eacute": "É",
|
|
1994
|
+
"easter": "⩮",
|
|
1995
|
+
"ecaron": "ě",
|
|
1996
|
+
"Ecaron": "Ě",
|
|
1997
|
+
"ecir": "≖",
|
|
1998
|
+
"ecirc": "ê",
|
|
1999
|
+
"Ecirc": "Ê",
|
|
2000
|
+
"ecolon": "≕",
|
|
2001
|
+
"ecy": "э",
|
|
2002
|
+
"Ecy": "Э",
|
|
2003
|
+
"eDDot": "⩷",
|
|
2004
|
+
"edot": "ė",
|
|
2005
|
+
"eDot": "≑",
|
|
2006
|
+
"Edot": "Ė",
|
|
2007
|
+
"ee": "ⅇ",
|
|
2008
|
+
"efDot": "≒",
|
|
2009
|
+
"efr": "𝔢",
|
|
2010
|
+
"Efr": "𝔈",
|
|
2011
|
+
"eg": "⪚",
|
|
2012
|
+
"egrave": "è",
|
|
2013
|
+
"Egrave": "È",
|
|
2014
|
+
"egs": "⪖",
|
|
2015
|
+
"egsdot": "⪘",
|
|
2016
|
+
"el": "⪙",
|
|
2017
|
+
"Element": "∈",
|
|
2018
|
+
"elinters": "⏧",
|
|
2019
|
+
"ell": "ℓ",
|
|
2020
|
+
"els": "⪕",
|
|
2021
|
+
"elsdot": "⪗",
|
|
2022
|
+
"emacr": "ē",
|
|
2023
|
+
"Emacr": "Ē",
|
|
2024
|
+
"empty": "∅",
|
|
2025
|
+
"emptyset": "∅",
|
|
2026
|
+
"EmptySmallSquare": "◻",
|
|
2027
|
+
"emptyv": "∅",
|
|
2028
|
+
"EmptyVerySmallSquare": "▫",
|
|
2029
|
+
"emsp": " ",
|
|
2030
|
+
"emsp13": " ",
|
|
2031
|
+
"emsp14": " ",
|
|
2032
|
+
"eng": "ŋ",
|
|
2033
|
+
"ENG": "Ŋ",
|
|
2034
|
+
"ensp": " ",
|
|
2035
|
+
"eogon": "ę",
|
|
2036
|
+
"Eogon": "Ę",
|
|
2037
|
+
"eopf": "𝕖",
|
|
2038
|
+
"Eopf": "𝔼",
|
|
2039
|
+
"epar": "⋕",
|
|
2040
|
+
"eparsl": "⧣",
|
|
2041
|
+
"eplus": "⩱",
|
|
2042
|
+
"epsi": "ε",
|
|
2043
|
+
"epsilon": "ε",
|
|
2044
|
+
"Epsilon": "Ε",
|
|
2045
|
+
"epsiv": "ϵ",
|
|
2046
|
+
"eqcirc": "≖",
|
|
2047
|
+
"eqcolon": "≕",
|
|
2048
|
+
"eqsim": "≂",
|
|
2049
|
+
"eqslantgtr": "⪖",
|
|
2050
|
+
"eqslantless": "⪕",
|
|
2051
|
+
"Equal": "⩵",
|
|
2052
|
+
"equals": "=",
|
|
2053
|
+
"EqualTilde": "≂",
|
|
2054
|
+
"equest": "≟",
|
|
2055
|
+
"Equilibrium": "⇌",
|
|
2056
|
+
"equiv": "≡",
|
|
2057
|
+
"equivDD": "⩸",
|
|
2058
|
+
"eqvparsl": "⧥",
|
|
2059
|
+
"erarr": "⥱",
|
|
2060
|
+
"erDot": "≓",
|
|
2061
|
+
"escr": "ℯ",
|
|
2062
|
+
"Escr": "ℰ",
|
|
2063
|
+
"esdot": "≐",
|
|
2064
|
+
"esim": "≂",
|
|
2065
|
+
"Esim": "⩳",
|
|
2066
|
+
"eta": "η",
|
|
2067
|
+
"Eta": "Η",
|
|
2068
|
+
"eth": "ð",
|
|
2069
|
+
"ETH": "Ð",
|
|
2070
|
+
"euml": "ë",
|
|
2071
|
+
"Euml": "Ë",
|
|
2072
|
+
"euro": "€",
|
|
2073
|
+
"excl": "!",
|
|
2074
|
+
"exist": "∃",
|
|
2075
|
+
"Exists": "∃",
|
|
2076
|
+
"expectation": "ℰ",
|
|
2077
|
+
"exponentiale": "ⅇ",
|
|
2078
|
+
"ExponentialE": "ⅇ",
|
|
2079
|
+
"fallingdotseq": "≒",
|
|
2080
|
+
"fcy": "ф",
|
|
2081
|
+
"Fcy": "Ф",
|
|
2082
|
+
"female": "♀",
|
|
2083
|
+
"ffilig": "ffi",
|
|
2084
|
+
"fflig": "ff",
|
|
2085
|
+
"ffllig": "ffl",
|
|
2086
|
+
"ffr": "𝔣",
|
|
2087
|
+
"Ffr": "𝔉",
|
|
2088
|
+
"filig": "fi",
|
|
2089
|
+
"FilledSmallSquare": "◼",
|
|
2090
|
+
"FilledVerySmallSquare": "▪",
|
|
2091
|
+
"fjlig": "fj",
|
|
2092
|
+
"flat": "♭",
|
|
2093
|
+
"fllig": "fl",
|
|
2094
|
+
"fltns": "▱",
|
|
2095
|
+
"fnof": "ƒ",
|
|
2096
|
+
"fopf": "𝕗",
|
|
2097
|
+
"Fopf": "𝔽",
|
|
2098
|
+
"forall": "∀",
|
|
2099
|
+
"ForAll": "∀",
|
|
2100
|
+
"fork": "⋔",
|
|
2101
|
+
"forkv": "⫙",
|
|
2102
|
+
"Fouriertrf": "ℱ",
|
|
2103
|
+
"fpartint": "⨍",
|
|
2104
|
+
"frac12": "½",
|
|
2105
|
+
"frac13": "⅓",
|
|
2106
|
+
"frac14": "¼",
|
|
2107
|
+
"frac15": "⅕",
|
|
2108
|
+
"frac16": "⅙",
|
|
2109
|
+
"frac18": "⅛",
|
|
2110
|
+
"frac23": "⅔",
|
|
2111
|
+
"frac25": "⅖",
|
|
2112
|
+
"frac34": "¾",
|
|
2113
|
+
"frac35": "⅗",
|
|
2114
|
+
"frac38": "⅜",
|
|
2115
|
+
"frac45": "⅘",
|
|
2116
|
+
"frac56": "⅚",
|
|
2117
|
+
"frac58": "⅝",
|
|
2118
|
+
"frac78": "⅞",
|
|
2119
|
+
"frasl": "⁄",
|
|
2120
|
+
"frown": "⌢",
|
|
2121
|
+
"fscr": "𝒻",
|
|
2122
|
+
"Fscr": "ℱ",
|
|
2123
|
+
"gacute": "ǵ",
|
|
2124
|
+
"gamma": "γ",
|
|
2125
|
+
"Gamma": "Γ",
|
|
2126
|
+
"gammad": "ϝ",
|
|
2127
|
+
"Gammad": "Ϝ",
|
|
2128
|
+
"gap": "⪆",
|
|
2129
|
+
"gbreve": "ğ",
|
|
2130
|
+
"Gbreve": "Ğ",
|
|
2131
|
+
"Gcedil": "Ģ",
|
|
2132
|
+
"gcirc": "ĝ",
|
|
2133
|
+
"Gcirc": "Ĝ",
|
|
2134
|
+
"gcy": "г",
|
|
2135
|
+
"Gcy": "Г",
|
|
2136
|
+
"gdot": "ġ",
|
|
2137
|
+
"Gdot": "Ġ",
|
|
2138
|
+
"ge": "≥",
|
|
2139
|
+
"gE": "≧",
|
|
2140
|
+
"gel": "⋛",
|
|
2141
|
+
"gEl": "⪌",
|
|
2142
|
+
"geq": "≥",
|
|
2143
|
+
"geqq": "≧",
|
|
2144
|
+
"geqslant": "⩾",
|
|
2145
|
+
"ges": "⩾",
|
|
2146
|
+
"gescc": "⪩",
|
|
2147
|
+
"gesdot": "⪀",
|
|
2148
|
+
"gesdoto": "⪂",
|
|
2149
|
+
"gesdotol": "⪄",
|
|
2150
|
+
"gesl": "⋛︀",
|
|
2151
|
+
"gesles": "⪔",
|
|
2152
|
+
"gfr": "𝔤",
|
|
2153
|
+
"Gfr": "𝔊",
|
|
2154
|
+
"gg": "≫",
|
|
2155
|
+
"Gg": "⋙",
|
|
2156
|
+
"ggg": "⋙",
|
|
2157
|
+
"gimel": "ℷ",
|
|
2158
|
+
"gjcy": "ѓ",
|
|
2159
|
+
"GJcy": "Ѓ",
|
|
2160
|
+
"gl": "≷",
|
|
2161
|
+
"gla": "⪥",
|
|
2162
|
+
"glE": "⪒",
|
|
2163
|
+
"glj": "⪤",
|
|
2164
|
+
"gnap": "⪊",
|
|
2165
|
+
"gnapprox": "⪊",
|
|
2166
|
+
"gne": "⪈",
|
|
2167
|
+
"gnE": "≩",
|
|
2168
|
+
"gneq": "⪈",
|
|
2169
|
+
"gneqq": "≩",
|
|
2170
|
+
"gnsim": "⋧",
|
|
2171
|
+
"gopf": "𝕘",
|
|
2172
|
+
"Gopf": "𝔾",
|
|
2173
|
+
"grave": "`",
|
|
2174
|
+
"GreaterEqual": "≥",
|
|
2175
|
+
"GreaterEqualLess": "⋛",
|
|
2176
|
+
"GreaterFullEqual": "≧",
|
|
2177
|
+
"GreaterGreater": "⪢",
|
|
2178
|
+
"GreaterLess": "≷",
|
|
2179
|
+
"GreaterSlantEqual": "⩾",
|
|
2180
|
+
"GreaterTilde": "≳",
|
|
2181
|
+
"gscr": "ℊ",
|
|
2182
|
+
"Gscr": "𝒢",
|
|
2183
|
+
"gsim": "≳",
|
|
2184
|
+
"gsime": "⪎",
|
|
2185
|
+
"gsiml": "⪐",
|
|
2186
|
+
"gt": ">",
|
|
2187
|
+
"Gt": "≫",
|
|
2188
|
+
"GT": ">",
|
|
2189
|
+
"gtcc": "⪧",
|
|
2190
|
+
"gtcir": "⩺",
|
|
2191
|
+
"gtdot": "⋗",
|
|
2192
|
+
"gtlPar": "⦕",
|
|
2193
|
+
"gtquest": "⩼",
|
|
2194
|
+
"gtrapprox": "⪆",
|
|
2195
|
+
"gtrarr": "⥸",
|
|
2196
|
+
"gtrdot": "⋗",
|
|
2197
|
+
"gtreqless": "⋛",
|
|
2198
|
+
"gtreqqless": "⪌",
|
|
2199
|
+
"gtrless": "≷",
|
|
2200
|
+
"gtrsim": "≳",
|
|
2201
|
+
"gvertneqq": "≩︀",
|
|
2202
|
+
"gvnE": "≩︀",
|
|
2203
|
+
"Hacek": "ˇ",
|
|
2204
|
+
"hairsp": " ",
|
|
2205
|
+
"half": "½",
|
|
2206
|
+
"hamilt": "ℋ",
|
|
2207
|
+
"hardcy": "ъ",
|
|
2208
|
+
"HARDcy": "Ъ",
|
|
2209
|
+
"harr": "↔",
|
|
2210
|
+
"hArr": "⇔",
|
|
2211
|
+
"harrcir": "⥈",
|
|
2212
|
+
"harrw": "↭",
|
|
2213
|
+
"Hat": "^",
|
|
2214
|
+
"hbar": "ℏ",
|
|
2215
|
+
"hcirc": "ĥ",
|
|
2216
|
+
"Hcirc": "Ĥ",
|
|
2217
|
+
"hearts": "♥",
|
|
2218
|
+
"heartsuit": "♥",
|
|
2219
|
+
"hellip": "…",
|
|
2220
|
+
"hercon": "⊹",
|
|
2221
|
+
"hfr": "𝔥",
|
|
2222
|
+
"Hfr": "ℌ",
|
|
2223
|
+
"HilbertSpace": "ℋ",
|
|
2224
|
+
"hksearow": "⤥",
|
|
2225
|
+
"hkswarow": "⤦",
|
|
2226
|
+
"hoarr": "⇿",
|
|
2227
|
+
"homtht": "∻",
|
|
2228
|
+
"hookleftarrow": "↩",
|
|
2229
|
+
"hookrightarrow": "↪",
|
|
2230
|
+
"hopf": "𝕙",
|
|
2231
|
+
"Hopf": "ℍ",
|
|
2232
|
+
"horbar": "―",
|
|
2233
|
+
"HorizontalLine": "─",
|
|
2234
|
+
"hscr": "𝒽",
|
|
2235
|
+
"Hscr": "ℋ",
|
|
2236
|
+
"hslash": "ℏ",
|
|
2237
|
+
"hstrok": "ħ",
|
|
2238
|
+
"Hstrok": "Ħ",
|
|
2239
|
+
"HumpDownHump": "≎",
|
|
2240
|
+
"HumpEqual": "≏",
|
|
2241
|
+
"hybull": "⁃",
|
|
2242
|
+
"hyphen": "‐",
|
|
2243
|
+
"iacute": "í",
|
|
2244
|
+
"Iacute": "Í",
|
|
2245
|
+
"ic": "",
|
|
2246
|
+
"icirc": "î",
|
|
2247
|
+
"Icirc": "Î",
|
|
2248
|
+
"icy": "и",
|
|
2249
|
+
"Icy": "И",
|
|
2250
|
+
"Idot": "İ",
|
|
2251
|
+
"iecy": "е",
|
|
2252
|
+
"IEcy": "Е",
|
|
2253
|
+
"iexcl": "¡",
|
|
2254
|
+
"iff": "⇔",
|
|
2255
|
+
"ifr": "𝔦",
|
|
2256
|
+
"Ifr": "ℑ",
|
|
2257
|
+
"igrave": "ì",
|
|
2258
|
+
"Igrave": "Ì",
|
|
2259
|
+
"ii": "ⅈ",
|
|
2260
|
+
"iiiint": "⨌",
|
|
2261
|
+
"iiint": "∭",
|
|
2262
|
+
"iinfin": "⧜",
|
|
2263
|
+
"iiota": "℩",
|
|
2264
|
+
"ijlig": "ij",
|
|
2265
|
+
"IJlig": "IJ",
|
|
2266
|
+
"Im": "ℑ",
|
|
2267
|
+
"imacr": "ī",
|
|
2268
|
+
"Imacr": "Ī",
|
|
2269
|
+
"image": "ℑ",
|
|
2270
|
+
"ImaginaryI": "ⅈ",
|
|
2271
|
+
"imagline": "ℐ",
|
|
2272
|
+
"imagpart": "ℑ",
|
|
2273
|
+
"imath": "ı",
|
|
2274
|
+
"imof": "⊷",
|
|
2275
|
+
"imped": "Ƶ",
|
|
2276
|
+
"Implies": "⇒",
|
|
2277
|
+
"in": "∈",
|
|
2278
|
+
"incare": "℅",
|
|
2279
|
+
"infin": "∞",
|
|
2280
|
+
"infintie": "⧝",
|
|
2281
|
+
"inodot": "ı",
|
|
2282
|
+
"int": "∫",
|
|
2283
|
+
"Int": "∬",
|
|
2284
|
+
"intcal": "⊺",
|
|
2285
|
+
"integers": "ℤ",
|
|
2286
|
+
"Integral": "∫",
|
|
2287
|
+
"intercal": "⊺",
|
|
2288
|
+
"Intersection": "⋂",
|
|
2289
|
+
"intlarhk": "⨗",
|
|
2290
|
+
"intprod": "⨼",
|
|
2291
|
+
"InvisibleComma": "",
|
|
2292
|
+
"InvisibleTimes": "",
|
|
2293
|
+
"iocy": "ё",
|
|
2294
|
+
"IOcy": "Ё",
|
|
2295
|
+
"iogon": "į",
|
|
2296
|
+
"Iogon": "Į",
|
|
2297
|
+
"iopf": "𝕚",
|
|
2298
|
+
"Iopf": "𝕀",
|
|
2299
|
+
"iota": "ι",
|
|
2300
|
+
"Iota": "Ι",
|
|
2301
|
+
"iprod": "⨼",
|
|
2302
|
+
"iquest": "¿",
|
|
2303
|
+
"iscr": "𝒾",
|
|
2304
|
+
"Iscr": "ℐ",
|
|
2305
|
+
"isin": "∈",
|
|
2306
|
+
"isindot": "⋵",
|
|
2307
|
+
"isinE": "⋹",
|
|
2308
|
+
"isins": "⋴",
|
|
2309
|
+
"isinsv": "⋳",
|
|
2310
|
+
"isinv": "∈",
|
|
2311
|
+
"it": "",
|
|
2312
|
+
"itilde": "ĩ",
|
|
2313
|
+
"Itilde": "Ĩ",
|
|
2314
|
+
"iukcy": "і",
|
|
2315
|
+
"Iukcy": "І",
|
|
2316
|
+
"iuml": "ï",
|
|
2317
|
+
"Iuml": "Ï",
|
|
2318
|
+
"jcirc": "ĵ",
|
|
2319
|
+
"Jcirc": "Ĵ",
|
|
2320
|
+
"jcy": "й",
|
|
2321
|
+
"Jcy": "Й",
|
|
2322
|
+
"jfr": "𝔧",
|
|
2323
|
+
"Jfr": "𝔍",
|
|
2324
|
+
"jmath": "ȷ",
|
|
2325
|
+
"jopf": "𝕛",
|
|
2326
|
+
"Jopf": "𝕁",
|
|
2327
|
+
"jscr": "𝒿",
|
|
2328
|
+
"Jscr": "𝒥",
|
|
2329
|
+
"jsercy": "ј",
|
|
2330
|
+
"Jsercy": "Ј",
|
|
2331
|
+
"jukcy": "є",
|
|
2332
|
+
"Jukcy": "Є",
|
|
2333
|
+
"kappa": "κ",
|
|
2334
|
+
"Kappa": "Κ",
|
|
2335
|
+
"kappav": "ϰ",
|
|
2336
|
+
"kcedil": "ķ",
|
|
2337
|
+
"Kcedil": "Ķ",
|
|
2338
|
+
"kcy": "к",
|
|
2339
|
+
"Kcy": "К",
|
|
2340
|
+
"kfr": "𝔨",
|
|
2341
|
+
"Kfr": "𝔎",
|
|
2342
|
+
"kgreen": "ĸ",
|
|
2343
|
+
"khcy": "х",
|
|
2344
|
+
"KHcy": "Х",
|
|
2345
|
+
"kjcy": "ќ",
|
|
2346
|
+
"KJcy": "Ќ",
|
|
2347
|
+
"kopf": "𝕜",
|
|
2348
|
+
"Kopf": "𝕂",
|
|
2349
|
+
"kscr": "𝓀",
|
|
2350
|
+
"Kscr": "𝒦",
|
|
2351
|
+
"lAarr": "⇚",
|
|
2352
|
+
"lacute": "ĺ",
|
|
2353
|
+
"Lacute": "Ĺ",
|
|
2354
|
+
"laemptyv": "⦴",
|
|
2355
|
+
"lagran": "ℒ",
|
|
2356
|
+
"lambda": "λ",
|
|
2357
|
+
"Lambda": "Λ",
|
|
2358
|
+
"lang": "⟨",
|
|
2359
|
+
"Lang": "⟪",
|
|
2360
|
+
"langd": "⦑",
|
|
2361
|
+
"langle": "⟨",
|
|
2362
|
+
"lap": "⪅",
|
|
2363
|
+
"Laplacetrf": "ℒ",
|
|
2364
|
+
"laquo": "«",
|
|
2365
|
+
"larr": "←",
|
|
2366
|
+
"lArr": "⇐",
|
|
2367
|
+
"Larr": "↞",
|
|
2368
|
+
"larrb": "⇤",
|
|
2369
|
+
"larrbfs": "⤟",
|
|
2370
|
+
"larrfs": "⤝",
|
|
2371
|
+
"larrhk": "↩",
|
|
2372
|
+
"larrlp": "↫",
|
|
2373
|
+
"larrpl": "⤹",
|
|
2374
|
+
"larrsim": "⥳",
|
|
2375
|
+
"larrtl": "↢",
|
|
2376
|
+
"lat": "⪫",
|
|
2377
|
+
"latail": "⤙",
|
|
2378
|
+
"lAtail": "⤛",
|
|
2379
|
+
"late": "⪭",
|
|
2380
|
+
"lates": "⪭︀",
|
|
2381
|
+
"lbarr": "⤌",
|
|
2382
|
+
"lBarr": "⤎",
|
|
2383
|
+
"lbbrk": "❲",
|
|
2384
|
+
"lbrace": "{",
|
|
2385
|
+
"lbrack": "[",
|
|
2386
|
+
"lbrke": "⦋",
|
|
2387
|
+
"lbrksld": "⦏",
|
|
2388
|
+
"lbrkslu": "⦍",
|
|
2389
|
+
"lcaron": "ľ",
|
|
2390
|
+
"Lcaron": "Ľ",
|
|
2391
|
+
"lcedil": "ļ",
|
|
2392
|
+
"Lcedil": "Ļ",
|
|
2393
|
+
"lceil": "⌈",
|
|
2394
|
+
"lcub": "{",
|
|
2395
|
+
"lcy": "л",
|
|
2396
|
+
"Lcy": "Л",
|
|
2397
|
+
"ldca": "⤶",
|
|
2398
|
+
"ldquo": "“",
|
|
2399
|
+
"ldquor": "„",
|
|
2400
|
+
"ldrdhar": "⥧",
|
|
2401
|
+
"ldrushar": "⥋",
|
|
2402
|
+
"ldsh": "↲",
|
|
2403
|
+
"le": "≤",
|
|
2404
|
+
"lE": "≦",
|
|
2405
|
+
"LeftAngleBracket": "⟨",
|
|
2406
|
+
"leftarrow": "←",
|
|
2407
|
+
"Leftarrow": "⇐",
|
|
2408
|
+
"LeftArrow": "←",
|
|
2409
|
+
"LeftArrowBar": "⇤",
|
|
2410
|
+
"LeftArrowRightArrow": "⇆",
|
|
2411
|
+
"leftarrowtail": "↢",
|
|
2412
|
+
"LeftCeiling": "⌈",
|
|
2413
|
+
"LeftDoubleBracket": "⟦",
|
|
2414
|
+
"LeftDownTeeVector": "⥡",
|
|
2415
|
+
"LeftDownVector": "⇃",
|
|
2416
|
+
"LeftDownVectorBar": "⥙",
|
|
2417
|
+
"LeftFloor": "⌊",
|
|
2418
|
+
"leftharpoondown": "↽",
|
|
2419
|
+
"leftharpoonup": "↼",
|
|
2420
|
+
"leftleftarrows": "⇇",
|
|
2421
|
+
"leftrightarrow": "↔",
|
|
2422
|
+
"Leftrightarrow": "⇔",
|
|
2423
|
+
"LeftRightArrow": "↔",
|
|
2424
|
+
"leftrightarrows": "⇆",
|
|
2425
|
+
"leftrightharpoons": "⇋",
|
|
2426
|
+
"leftrightsquigarrow": "↭",
|
|
2427
|
+
"LeftRightVector": "⥎",
|
|
2428
|
+
"LeftTee": "⊣",
|
|
2429
|
+
"LeftTeeArrow": "↤",
|
|
2430
|
+
"LeftTeeVector": "⥚",
|
|
2431
|
+
"leftthreetimes": "⋋",
|
|
2432
|
+
"LeftTriangle": "⊲",
|
|
2433
|
+
"LeftTriangleBar": "⧏",
|
|
2434
|
+
"LeftTriangleEqual": "⊴",
|
|
2435
|
+
"LeftUpDownVector": "⥑",
|
|
2436
|
+
"LeftUpTeeVector": "⥠",
|
|
2437
|
+
"LeftUpVector": "↿",
|
|
2438
|
+
"LeftUpVectorBar": "⥘",
|
|
2439
|
+
"LeftVector": "↼",
|
|
2440
|
+
"LeftVectorBar": "⥒",
|
|
2441
|
+
"leg": "⋚",
|
|
2442
|
+
"lEg": "⪋",
|
|
2443
|
+
"leq": "≤",
|
|
2444
|
+
"leqq": "≦",
|
|
2445
|
+
"leqslant": "⩽",
|
|
2446
|
+
"les": "⩽",
|
|
2447
|
+
"lescc": "⪨",
|
|
2448
|
+
"lesdot": "⩿",
|
|
2449
|
+
"lesdoto": "⪁",
|
|
2450
|
+
"lesdotor": "⪃",
|
|
2451
|
+
"lesg": "⋚︀",
|
|
2452
|
+
"lesges": "⪓",
|
|
2453
|
+
"lessapprox": "⪅",
|
|
2454
|
+
"lessdot": "⋖",
|
|
2455
|
+
"lesseqgtr": "⋚",
|
|
2456
|
+
"lesseqqgtr": "⪋",
|
|
2457
|
+
"LessEqualGreater": "⋚",
|
|
2458
|
+
"LessFullEqual": "≦",
|
|
2459
|
+
"LessGreater": "≶",
|
|
2460
|
+
"lessgtr": "≶",
|
|
2461
|
+
"LessLess": "⪡",
|
|
2462
|
+
"lesssim": "≲",
|
|
2463
|
+
"LessSlantEqual": "⩽",
|
|
2464
|
+
"LessTilde": "≲",
|
|
2465
|
+
"lfisht": "⥼",
|
|
2466
|
+
"lfloor": "⌊",
|
|
2467
|
+
"lfr": "𝔩",
|
|
2468
|
+
"Lfr": "𝔏",
|
|
2469
|
+
"lg": "≶",
|
|
2470
|
+
"lgE": "⪑",
|
|
2471
|
+
"lHar": "⥢",
|
|
2472
|
+
"lhard": "↽",
|
|
2473
|
+
"lharu": "↼",
|
|
2474
|
+
"lharul": "⥪",
|
|
2475
|
+
"lhblk": "▄",
|
|
2476
|
+
"ljcy": "љ",
|
|
2477
|
+
"LJcy": "Љ",
|
|
2478
|
+
"ll": "≪",
|
|
2479
|
+
"Ll": "⋘",
|
|
2480
|
+
"llarr": "⇇",
|
|
2481
|
+
"llcorner": "⌞",
|
|
2482
|
+
"Lleftarrow": "⇚",
|
|
2483
|
+
"llhard": "⥫",
|
|
2484
|
+
"lltri": "◺",
|
|
2485
|
+
"lmidot": "ŀ",
|
|
2486
|
+
"Lmidot": "Ŀ",
|
|
2487
|
+
"lmoust": "⎰",
|
|
2488
|
+
"lmoustache": "⎰",
|
|
2489
|
+
"lnap": "⪉",
|
|
2490
|
+
"lnapprox": "⪉",
|
|
2491
|
+
"lne": "⪇",
|
|
2492
|
+
"lnE": "≨",
|
|
2493
|
+
"lneq": "⪇",
|
|
2494
|
+
"lneqq": "≨",
|
|
2495
|
+
"lnsim": "⋦",
|
|
2496
|
+
"loang": "⟬",
|
|
2497
|
+
"loarr": "⇽",
|
|
2498
|
+
"lobrk": "⟦",
|
|
2499
|
+
"longleftarrow": "⟵",
|
|
2500
|
+
"Longleftarrow": "⟸",
|
|
2501
|
+
"LongLeftArrow": "⟵",
|
|
2502
|
+
"longleftrightarrow": "⟷",
|
|
2503
|
+
"Longleftrightarrow": "⟺",
|
|
2504
|
+
"LongLeftRightArrow": "⟷",
|
|
2505
|
+
"longmapsto": "⟼",
|
|
2506
|
+
"longrightarrow": "⟶",
|
|
2507
|
+
"Longrightarrow": "⟹",
|
|
2508
|
+
"LongRightArrow": "⟶",
|
|
2509
|
+
"looparrowleft": "↫",
|
|
2510
|
+
"looparrowright": "↬",
|
|
2511
|
+
"lopar": "⦅",
|
|
2512
|
+
"lopf": "𝕝",
|
|
2513
|
+
"Lopf": "𝕃",
|
|
2514
|
+
"loplus": "⨭",
|
|
2515
|
+
"lotimes": "⨴",
|
|
2516
|
+
"lowast": "∗",
|
|
2517
|
+
"lowbar": "_",
|
|
2518
|
+
"LowerLeftArrow": "↙",
|
|
2519
|
+
"LowerRightArrow": "↘",
|
|
2520
|
+
"loz": "◊",
|
|
2521
|
+
"lozenge": "◊",
|
|
2522
|
+
"lozf": "⧫",
|
|
2523
|
+
"lpar": "(",
|
|
2524
|
+
"lparlt": "⦓",
|
|
2525
|
+
"lrarr": "⇆",
|
|
2526
|
+
"lrcorner": "⌟",
|
|
2527
|
+
"lrhar": "⇋",
|
|
2528
|
+
"lrhard": "⥭",
|
|
2529
|
+
"lrm": "",
|
|
2530
|
+
"lrtri": "⊿",
|
|
2531
|
+
"lsaquo": "‹",
|
|
2532
|
+
"lscr": "𝓁",
|
|
2533
|
+
"Lscr": "ℒ",
|
|
2534
|
+
"lsh": "↰",
|
|
2535
|
+
"Lsh": "↰",
|
|
2536
|
+
"lsim": "≲",
|
|
2537
|
+
"lsime": "⪍",
|
|
2538
|
+
"lsimg": "⪏",
|
|
2539
|
+
"lsqb": "[",
|
|
2540
|
+
"lsquo": "‘",
|
|
2541
|
+
"lsquor": "‚",
|
|
2542
|
+
"lstrok": "ł",
|
|
2543
|
+
"Lstrok": "Ł",
|
|
2544
|
+
"lt": "<",
|
|
2545
|
+
"Lt": "≪",
|
|
2546
|
+
"LT": "<",
|
|
2547
|
+
"ltcc": "⪦",
|
|
2548
|
+
"ltcir": "⩹",
|
|
2549
|
+
"ltdot": "⋖",
|
|
2550
|
+
"lthree": "⋋",
|
|
2551
|
+
"ltimes": "⋉",
|
|
2552
|
+
"ltlarr": "⥶",
|
|
2553
|
+
"ltquest": "⩻",
|
|
2554
|
+
"ltri": "◃",
|
|
2555
|
+
"ltrie": "⊴",
|
|
2556
|
+
"ltrif": "◂",
|
|
2557
|
+
"ltrPar": "⦖",
|
|
2558
|
+
"lurdshar": "⥊",
|
|
2559
|
+
"luruhar": "⥦",
|
|
2560
|
+
"lvertneqq": "≨︀",
|
|
2561
|
+
"lvnE": "≨︀",
|
|
2562
|
+
"macr": "¯",
|
|
2563
|
+
"male": "♂",
|
|
2564
|
+
"malt": "✠",
|
|
2565
|
+
"maltese": "✠",
|
|
2566
|
+
"map": "↦",
|
|
2567
|
+
"Map": "⤅",
|
|
2568
|
+
"mapsto": "↦",
|
|
2569
|
+
"mapstodown": "↧",
|
|
2570
|
+
"mapstoleft": "↤",
|
|
2571
|
+
"mapstoup": "↥",
|
|
2572
|
+
"marker": "▮",
|
|
2573
|
+
"mcomma": "⨩",
|
|
2574
|
+
"mcy": "м",
|
|
2575
|
+
"Mcy": "М",
|
|
2576
|
+
"mdash": "—",
|
|
2577
|
+
"mDDot": "∺",
|
|
2578
|
+
"measuredangle": "∡",
|
|
2579
|
+
"MediumSpace": " ",
|
|
2580
|
+
"Mellintrf": "ℳ",
|
|
2581
|
+
"mfr": "𝔪",
|
|
2582
|
+
"Mfr": "𝔐",
|
|
2583
|
+
"mho": "℧",
|
|
2584
|
+
"micro": "µ",
|
|
2585
|
+
"mid": "∣",
|
|
2586
|
+
"midast": "*",
|
|
2587
|
+
"midcir": "⫰",
|
|
2588
|
+
"middot": "·",
|
|
2589
|
+
"minus": "−",
|
|
2590
|
+
"minusb": "⊟",
|
|
2591
|
+
"minusd": "∸",
|
|
2592
|
+
"minusdu": "⨪",
|
|
2593
|
+
"MinusPlus": "∓",
|
|
2594
|
+
"mlcp": "⫛",
|
|
2595
|
+
"mldr": "…",
|
|
2596
|
+
"mnplus": "∓",
|
|
2597
|
+
"models": "⊧",
|
|
2598
|
+
"mopf": "𝕞",
|
|
2599
|
+
"Mopf": "𝕄",
|
|
2600
|
+
"mp": "∓",
|
|
2601
|
+
"mscr": "𝓂",
|
|
2602
|
+
"Mscr": "ℳ",
|
|
2603
|
+
"mstpos": "∾",
|
|
2604
|
+
"mu": "μ",
|
|
2605
|
+
"Mu": "Μ",
|
|
2606
|
+
"multimap": "⊸",
|
|
2607
|
+
"mumap": "⊸",
|
|
2608
|
+
"nabla": "∇",
|
|
2609
|
+
"nacute": "ń",
|
|
2610
|
+
"Nacute": "Ń",
|
|
2611
|
+
"nang": "∠⃒",
|
|
2612
|
+
"nap": "≉",
|
|
2613
|
+
"napE": "⩰̸",
|
|
2614
|
+
"napid": "≋̸",
|
|
2615
|
+
"napos": "ʼn",
|
|
2616
|
+
"napprox": "≉",
|
|
2617
|
+
"natur": "♮",
|
|
2618
|
+
"natural": "♮",
|
|
2619
|
+
"naturals": "ℕ",
|
|
2620
|
+
"nbsp": "\xA0",
|
|
2621
|
+
"nbump": "≎̸",
|
|
2622
|
+
"nbumpe": "≏̸",
|
|
2623
|
+
"ncap": "⩃",
|
|
2624
|
+
"ncaron": "ň",
|
|
2625
|
+
"Ncaron": "Ň",
|
|
2626
|
+
"ncedil": "ņ",
|
|
2627
|
+
"Ncedil": "Ņ",
|
|
2628
|
+
"ncong": "≇",
|
|
2629
|
+
"ncongdot": "⩭̸",
|
|
2630
|
+
"ncup": "⩂",
|
|
2631
|
+
"ncy": "н",
|
|
2632
|
+
"Ncy": "Н",
|
|
2633
|
+
"ndash": "–",
|
|
2634
|
+
"ne": "≠",
|
|
2635
|
+
"nearhk": "⤤",
|
|
2636
|
+
"nearr": "↗",
|
|
2637
|
+
"neArr": "⇗",
|
|
2638
|
+
"nearrow": "↗",
|
|
2639
|
+
"nedot": "≐̸",
|
|
2640
|
+
"NegativeMediumSpace": "",
|
|
2641
|
+
"NegativeThickSpace": "",
|
|
2642
|
+
"NegativeThinSpace": "",
|
|
2643
|
+
"NegativeVeryThinSpace": "",
|
|
2644
|
+
"nequiv": "≢",
|
|
2645
|
+
"nesear": "⤨",
|
|
2646
|
+
"nesim": "≂̸",
|
|
2647
|
+
"NestedGreaterGreater": "≫",
|
|
2648
|
+
"NestedLessLess": "≪",
|
|
2649
|
+
"NewLine": "\n",
|
|
2650
|
+
"nexist": "∄",
|
|
2651
|
+
"nexists": "∄",
|
|
2652
|
+
"nfr": "𝔫",
|
|
2653
|
+
"Nfr": "𝔑",
|
|
2654
|
+
"nge": "≱",
|
|
2655
|
+
"ngE": "≧̸",
|
|
2656
|
+
"ngeq": "≱",
|
|
2657
|
+
"ngeqq": "≧̸",
|
|
2658
|
+
"ngeqslant": "⩾̸",
|
|
2659
|
+
"nges": "⩾̸",
|
|
2660
|
+
"nGg": "⋙̸",
|
|
2661
|
+
"ngsim": "≵",
|
|
2662
|
+
"ngt": "≯",
|
|
2663
|
+
"nGt": "≫⃒",
|
|
2664
|
+
"ngtr": "≯",
|
|
2665
|
+
"nGtv": "≫̸",
|
|
2666
|
+
"nharr": "↮",
|
|
2667
|
+
"nhArr": "⇎",
|
|
2668
|
+
"nhpar": "⫲",
|
|
2669
|
+
"ni": "∋",
|
|
2670
|
+
"nis": "⋼",
|
|
2671
|
+
"nisd": "⋺",
|
|
2672
|
+
"niv": "∋",
|
|
2673
|
+
"njcy": "њ",
|
|
2674
|
+
"NJcy": "Њ",
|
|
2675
|
+
"nlarr": "↚",
|
|
2676
|
+
"nlArr": "⇍",
|
|
2677
|
+
"nldr": "‥",
|
|
2678
|
+
"nle": "≰",
|
|
2679
|
+
"nlE": "≦̸",
|
|
2680
|
+
"nleftarrow": "↚",
|
|
2681
|
+
"nLeftarrow": "⇍",
|
|
2682
|
+
"nleftrightarrow": "↮",
|
|
2683
|
+
"nLeftrightarrow": "⇎",
|
|
2684
|
+
"nleq": "≰",
|
|
2685
|
+
"nleqq": "≦̸",
|
|
2686
|
+
"nleqslant": "⩽̸",
|
|
2687
|
+
"nles": "⩽̸",
|
|
2688
|
+
"nless": "≮",
|
|
2689
|
+
"nLl": "⋘̸",
|
|
2690
|
+
"nlsim": "≴",
|
|
2691
|
+
"nlt": "≮",
|
|
2692
|
+
"nLt": "≪⃒",
|
|
2693
|
+
"nltri": "⋪",
|
|
2694
|
+
"nltrie": "⋬",
|
|
2695
|
+
"nLtv": "≪̸",
|
|
2696
|
+
"nmid": "∤",
|
|
2697
|
+
"NoBreak": "",
|
|
2698
|
+
"NonBreakingSpace": "\xA0",
|
|
2699
|
+
"nopf": "𝕟",
|
|
2700
|
+
"Nopf": "ℕ",
|
|
2701
|
+
"not": "¬",
|
|
2702
|
+
"Not": "⫬",
|
|
2703
|
+
"NotCongruent": "≢",
|
|
2704
|
+
"NotCupCap": "≭",
|
|
2705
|
+
"NotDoubleVerticalBar": "∦",
|
|
2706
|
+
"NotElement": "∉",
|
|
2707
|
+
"NotEqual": "≠",
|
|
2708
|
+
"NotEqualTilde": "≂̸",
|
|
2709
|
+
"NotExists": "∄",
|
|
2710
|
+
"NotGreater": "≯",
|
|
2711
|
+
"NotGreaterEqual": "≱",
|
|
2712
|
+
"NotGreaterFullEqual": "≧̸",
|
|
2713
|
+
"NotGreaterGreater": "≫̸",
|
|
2714
|
+
"NotGreaterLess": "≹",
|
|
2715
|
+
"NotGreaterSlantEqual": "⩾̸",
|
|
2716
|
+
"NotGreaterTilde": "≵",
|
|
2717
|
+
"NotHumpDownHump": "≎̸",
|
|
2718
|
+
"NotHumpEqual": "≏̸",
|
|
2719
|
+
"notin": "∉",
|
|
2720
|
+
"notindot": "⋵̸",
|
|
2721
|
+
"notinE": "⋹̸",
|
|
2722
|
+
"notinva": "∉",
|
|
2723
|
+
"notinvb": "⋷",
|
|
2724
|
+
"notinvc": "⋶",
|
|
2725
|
+
"NotLeftTriangle": "⋪",
|
|
2726
|
+
"NotLeftTriangleBar": "⧏̸",
|
|
2727
|
+
"NotLeftTriangleEqual": "⋬",
|
|
2728
|
+
"NotLess": "≮",
|
|
2729
|
+
"NotLessEqual": "≰",
|
|
2730
|
+
"NotLessGreater": "≸",
|
|
2731
|
+
"NotLessLess": "≪̸",
|
|
2732
|
+
"NotLessSlantEqual": "⩽̸",
|
|
2733
|
+
"NotLessTilde": "≴",
|
|
2734
|
+
"NotNestedGreaterGreater": "⪢̸",
|
|
2735
|
+
"NotNestedLessLess": "⪡̸",
|
|
2736
|
+
"notni": "∌",
|
|
2737
|
+
"notniva": "∌",
|
|
2738
|
+
"notnivb": "⋾",
|
|
2739
|
+
"notnivc": "⋽",
|
|
2740
|
+
"NotPrecedes": "⊀",
|
|
2741
|
+
"NotPrecedesEqual": "⪯̸",
|
|
2742
|
+
"NotPrecedesSlantEqual": "⋠",
|
|
2743
|
+
"NotReverseElement": "∌",
|
|
2744
|
+
"NotRightTriangle": "⋫",
|
|
2745
|
+
"NotRightTriangleBar": "⧐̸",
|
|
2746
|
+
"NotRightTriangleEqual": "⋭",
|
|
2747
|
+
"NotSquareSubset": "⊏̸",
|
|
2748
|
+
"NotSquareSubsetEqual": "⋢",
|
|
2749
|
+
"NotSquareSuperset": "⊐̸",
|
|
2750
|
+
"NotSquareSupersetEqual": "⋣",
|
|
2751
|
+
"NotSubset": "⊂⃒",
|
|
2752
|
+
"NotSubsetEqual": "⊈",
|
|
2753
|
+
"NotSucceeds": "⊁",
|
|
2754
|
+
"NotSucceedsEqual": "⪰̸",
|
|
2755
|
+
"NotSucceedsSlantEqual": "⋡",
|
|
2756
|
+
"NotSucceedsTilde": "≿̸",
|
|
2757
|
+
"NotSuperset": "⊃⃒",
|
|
2758
|
+
"NotSupersetEqual": "⊉",
|
|
2759
|
+
"NotTilde": "≁",
|
|
2760
|
+
"NotTildeEqual": "≄",
|
|
2761
|
+
"NotTildeFullEqual": "≇",
|
|
2762
|
+
"NotTildeTilde": "≉",
|
|
2763
|
+
"NotVerticalBar": "∤",
|
|
2764
|
+
"npar": "∦",
|
|
2765
|
+
"nparallel": "∦",
|
|
2766
|
+
"nparsl": "⫽⃥",
|
|
2767
|
+
"npart": "∂̸",
|
|
2768
|
+
"npolint": "⨔",
|
|
2769
|
+
"npr": "⊀",
|
|
2770
|
+
"nprcue": "⋠",
|
|
2771
|
+
"npre": "⪯̸",
|
|
2772
|
+
"nprec": "⊀",
|
|
2773
|
+
"npreceq": "⪯̸",
|
|
2774
|
+
"nrarr": "↛",
|
|
2775
|
+
"nrArr": "⇏",
|
|
2776
|
+
"nrarrc": "⤳̸",
|
|
2777
|
+
"nrarrw": "↝̸",
|
|
2778
|
+
"nrightarrow": "↛",
|
|
2779
|
+
"nRightarrow": "⇏",
|
|
2780
|
+
"nrtri": "⋫",
|
|
2781
|
+
"nrtrie": "⋭",
|
|
2782
|
+
"nsc": "⊁",
|
|
2783
|
+
"nsccue": "⋡",
|
|
2784
|
+
"nsce": "⪰̸",
|
|
2785
|
+
"nscr": "𝓃",
|
|
2786
|
+
"Nscr": "𝒩",
|
|
2787
|
+
"nshortmid": "∤",
|
|
2788
|
+
"nshortparallel": "∦",
|
|
2789
|
+
"nsim": "≁",
|
|
2790
|
+
"nsime": "≄",
|
|
2791
|
+
"nsimeq": "≄",
|
|
2792
|
+
"nsmid": "∤",
|
|
2793
|
+
"nspar": "∦",
|
|
2794
|
+
"nsqsube": "⋢",
|
|
2795
|
+
"nsqsupe": "⋣",
|
|
2796
|
+
"nsub": "⊄",
|
|
2797
|
+
"nsube": "⊈",
|
|
2798
|
+
"nsubE": "⫅̸",
|
|
2799
|
+
"nsubset": "⊂⃒",
|
|
2800
|
+
"nsubseteq": "⊈",
|
|
2801
|
+
"nsubseteqq": "⫅̸",
|
|
2802
|
+
"nsucc": "⊁",
|
|
2803
|
+
"nsucceq": "⪰̸",
|
|
2804
|
+
"nsup": "⊅",
|
|
2805
|
+
"nsupe": "⊉",
|
|
2806
|
+
"nsupE": "⫆̸",
|
|
2807
|
+
"nsupset": "⊃⃒",
|
|
2808
|
+
"nsupseteq": "⊉",
|
|
2809
|
+
"nsupseteqq": "⫆̸",
|
|
2810
|
+
"ntgl": "≹",
|
|
2811
|
+
"ntilde": "ñ",
|
|
2812
|
+
"Ntilde": "Ñ",
|
|
2813
|
+
"ntlg": "≸",
|
|
2814
|
+
"ntriangleleft": "⋪",
|
|
2815
|
+
"ntrianglelefteq": "⋬",
|
|
2816
|
+
"ntriangleright": "⋫",
|
|
2817
|
+
"ntrianglerighteq": "⋭",
|
|
2818
|
+
"nu": "ν",
|
|
2819
|
+
"Nu": "Ν",
|
|
2820
|
+
"num": "#",
|
|
2821
|
+
"numero": "№",
|
|
2822
|
+
"numsp": " ",
|
|
2823
|
+
"nvap": "≍⃒",
|
|
2824
|
+
"nvdash": "⊬",
|
|
2825
|
+
"nvDash": "⊭",
|
|
2826
|
+
"nVdash": "⊮",
|
|
2827
|
+
"nVDash": "⊯",
|
|
2828
|
+
"nvge": "≥⃒",
|
|
2829
|
+
"nvgt": ">⃒",
|
|
2830
|
+
"nvHarr": "⤄",
|
|
2831
|
+
"nvinfin": "⧞",
|
|
2832
|
+
"nvlArr": "⤂",
|
|
2833
|
+
"nvle": "≤⃒",
|
|
2834
|
+
"nvlt": "<⃒",
|
|
2835
|
+
"nvltrie": "⊴⃒",
|
|
2836
|
+
"nvrArr": "⤃",
|
|
2837
|
+
"nvrtrie": "⊵⃒",
|
|
2838
|
+
"nvsim": "∼⃒",
|
|
2839
|
+
"nwarhk": "⤣",
|
|
2840
|
+
"nwarr": "↖",
|
|
2841
|
+
"nwArr": "⇖",
|
|
2842
|
+
"nwarrow": "↖",
|
|
2843
|
+
"nwnear": "⤧",
|
|
2844
|
+
"oacute": "ó",
|
|
2845
|
+
"Oacute": "Ó",
|
|
2846
|
+
"oast": "⊛",
|
|
2847
|
+
"ocir": "⊚",
|
|
2848
|
+
"ocirc": "ô",
|
|
2849
|
+
"Ocirc": "Ô",
|
|
2850
|
+
"ocy": "о",
|
|
2851
|
+
"Ocy": "О",
|
|
2852
|
+
"odash": "⊝",
|
|
2853
|
+
"odblac": "ő",
|
|
2854
|
+
"Odblac": "Ő",
|
|
2855
|
+
"odiv": "⨸",
|
|
2856
|
+
"odot": "⊙",
|
|
2857
|
+
"odsold": "⦼",
|
|
2858
|
+
"oelig": "œ",
|
|
2859
|
+
"OElig": "Œ",
|
|
2860
|
+
"ofcir": "⦿",
|
|
2861
|
+
"ofr": "𝔬",
|
|
2862
|
+
"Ofr": "𝔒",
|
|
2863
|
+
"ogon": "˛",
|
|
2864
|
+
"ograve": "ò",
|
|
2865
|
+
"Ograve": "Ò",
|
|
2866
|
+
"ogt": "⧁",
|
|
2867
|
+
"ohbar": "⦵",
|
|
2868
|
+
"ohm": "Ω",
|
|
2869
|
+
"oint": "∮",
|
|
2870
|
+
"olarr": "↺",
|
|
2871
|
+
"olcir": "⦾",
|
|
2872
|
+
"olcross": "⦻",
|
|
2873
|
+
"oline": "‾",
|
|
2874
|
+
"olt": "⧀",
|
|
2875
|
+
"omacr": "ō",
|
|
2876
|
+
"Omacr": "Ō",
|
|
2877
|
+
"omega": "ω",
|
|
2878
|
+
"Omega": "Ω",
|
|
2879
|
+
"omicron": "ο",
|
|
2880
|
+
"Omicron": "Ο",
|
|
2881
|
+
"omid": "⦶",
|
|
2882
|
+
"ominus": "⊖",
|
|
2883
|
+
"oopf": "𝕠",
|
|
2884
|
+
"Oopf": "𝕆",
|
|
2885
|
+
"opar": "⦷",
|
|
2886
|
+
"OpenCurlyDoubleQuote": "“",
|
|
2887
|
+
"OpenCurlyQuote": "‘",
|
|
2888
|
+
"operp": "⦹",
|
|
2889
|
+
"oplus": "⊕",
|
|
2890
|
+
"or": "∨",
|
|
2891
|
+
"Or": "⩔",
|
|
2892
|
+
"orarr": "↻",
|
|
2893
|
+
"ord": "⩝",
|
|
2894
|
+
"order": "ℴ",
|
|
2895
|
+
"orderof": "ℴ",
|
|
2896
|
+
"ordf": "ª",
|
|
2897
|
+
"ordm": "º",
|
|
2898
|
+
"origof": "⊶",
|
|
2899
|
+
"oror": "⩖",
|
|
2900
|
+
"orslope": "⩗",
|
|
2901
|
+
"orv": "⩛",
|
|
2902
|
+
"oS": "Ⓢ",
|
|
2903
|
+
"oscr": "ℴ",
|
|
2904
|
+
"Oscr": "𝒪",
|
|
2905
|
+
"oslash": "ø",
|
|
2906
|
+
"Oslash": "Ø",
|
|
2907
|
+
"osol": "⊘",
|
|
2908
|
+
"otilde": "õ",
|
|
2909
|
+
"Otilde": "Õ",
|
|
2910
|
+
"otimes": "⊗",
|
|
2911
|
+
"Otimes": "⨷",
|
|
2912
|
+
"otimesas": "⨶",
|
|
2913
|
+
"ouml": "ö",
|
|
2914
|
+
"Ouml": "Ö",
|
|
2915
|
+
"ovbar": "⌽",
|
|
2916
|
+
"OverBar": "‾",
|
|
2917
|
+
"OverBrace": "⏞",
|
|
2918
|
+
"OverBracket": "⎴",
|
|
2919
|
+
"OverParenthesis": "⏜",
|
|
2920
|
+
"par": "∥",
|
|
2921
|
+
"para": "¶",
|
|
2922
|
+
"parallel": "∥",
|
|
2923
|
+
"parsim": "⫳",
|
|
2924
|
+
"parsl": "⫽",
|
|
2925
|
+
"part": "∂",
|
|
2926
|
+
"PartialD": "∂",
|
|
2927
|
+
"pcy": "п",
|
|
2928
|
+
"Pcy": "П",
|
|
2929
|
+
"percnt": "%",
|
|
2930
|
+
"period": ".",
|
|
2931
|
+
"permil": "‰",
|
|
2932
|
+
"perp": "⊥",
|
|
2933
|
+
"pertenk": "‱",
|
|
2934
|
+
"pfr": "𝔭",
|
|
2935
|
+
"Pfr": "𝔓",
|
|
2936
|
+
"phi": "φ",
|
|
2937
|
+
"Phi": "Φ",
|
|
2938
|
+
"phiv": "ϕ",
|
|
2939
|
+
"phmmat": "ℳ",
|
|
2940
|
+
"phone": "☎",
|
|
2941
|
+
"pi": "π",
|
|
2942
|
+
"Pi": "Π",
|
|
2943
|
+
"pitchfork": "⋔",
|
|
2944
|
+
"piv": "ϖ",
|
|
2945
|
+
"planck": "ℏ",
|
|
2946
|
+
"planckh": "ℎ",
|
|
2947
|
+
"plankv": "ℏ",
|
|
2948
|
+
"plus": "+",
|
|
2949
|
+
"plusacir": "⨣",
|
|
2950
|
+
"plusb": "⊞",
|
|
2951
|
+
"pluscir": "⨢",
|
|
2952
|
+
"plusdo": "∔",
|
|
2953
|
+
"plusdu": "⨥",
|
|
2954
|
+
"pluse": "⩲",
|
|
2955
|
+
"PlusMinus": "±",
|
|
2956
|
+
"plusmn": "±",
|
|
2957
|
+
"plussim": "⨦",
|
|
2958
|
+
"plustwo": "⨧",
|
|
2959
|
+
"pm": "±",
|
|
2960
|
+
"Poincareplane": "ℌ",
|
|
2961
|
+
"pointint": "⨕",
|
|
2962
|
+
"popf": "𝕡",
|
|
2963
|
+
"Popf": "ℙ",
|
|
2964
|
+
"pound": "£",
|
|
2965
|
+
"pr": "≺",
|
|
2966
|
+
"Pr": "⪻",
|
|
2967
|
+
"prap": "⪷",
|
|
2968
|
+
"prcue": "≼",
|
|
2969
|
+
"pre": "⪯",
|
|
2970
|
+
"prE": "⪳",
|
|
2971
|
+
"prec": "≺",
|
|
2972
|
+
"precapprox": "⪷",
|
|
2973
|
+
"preccurlyeq": "≼",
|
|
2974
|
+
"Precedes": "≺",
|
|
2975
|
+
"PrecedesEqual": "⪯",
|
|
2976
|
+
"PrecedesSlantEqual": "≼",
|
|
2977
|
+
"PrecedesTilde": "≾",
|
|
2978
|
+
"preceq": "⪯",
|
|
2979
|
+
"precnapprox": "⪹",
|
|
2980
|
+
"precneqq": "⪵",
|
|
2981
|
+
"precnsim": "⋨",
|
|
2982
|
+
"precsim": "≾",
|
|
2983
|
+
"prime": "′",
|
|
2984
|
+
"Prime": "″",
|
|
2985
|
+
"primes": "ℙ",
|
|
2986
|
+
"prnap": "⪹",
|
|
2987
|
+
"prnE": "⪵",
|
|
2988
|
+
"prnsim": "⋨",
|
|
2989
|
+
"prod": "∏",
|
|
2990
|
+
"Product": "∏",
|
|
2991
|
+
"profalar": "⌮",
|
|
2992
|
+
"profline": "⌒",
|
|
2993
|
+
"profsurf": "⌓",
|
|
2994
|
+
"prop": "∝",
|
|
2995
|
+
"Proportion": "∷",
|
|
2996
|
+
"Proportional": "∝",
|
|
2997
|
+
"propto": "∝",
|
|
2998
|
+
"prsim": "≾",
|
|
2999
|
+
"prurel": "⊰",
|
|
3000
|
+
"pscr": "𝓅",
|
|
3001
|
+
"Pscr": "𝒫",
|
|
3002
|
+
"psi": "ψ",
|
|
3003
|
+
"Psi": "Ψ",
|
|
3004
|
+
"puncsp": " ",
|
|
3005
|
+
"qfr": "𝔮",
|
|
3006
|
+
"Qfr": "𝔔",
|
|
3007
|
+
"qint": "⨌",
|
|
3008
|
+
"qopf": "𝕢",
|
|
3009
|
+
"Qopf": "ℚ",
|
|
3010
|
+
"qprime": "⁗",
|
|
3011
|
+
"qscr": "𝓆",
|
|
3012
|
+
"Qscr": "𝒬",
|
|
3013
|
+
"quaternions": "ℍ",
|
|
3014
|
+
"quatint": "⨖",
|
|
3015
|
+
"quest": "?",
|
|
3016
|
+
"questeq": "≟",
|
|
3017
|
+
"quot": "\"",
|
|
3018
|
+
"QUOT": "\"",
|
|
3019
|
+
"rAarr": "⇛",
|
|
3020
|
+
"race": "∽̱",
|
|
3021
|
+
"racute": "ŕ",
|
|
3022
|
+
"Racute": "Ŕ",
|
|
3023
|
+
"radic": "√",
|
|
3024
|
+
"raemptyv": "⦳",
|
|
3025
|
+
"rang": "⟩",
|
|
3026
|
+
"Rang": "⟫",
|
|
3027
|
+
"rangd": "⦒",
|
|
3028
|
+
"range": "⦥",
|
|
3029
|
+
"rangle": "⟩",
|
|
3030
|
+
"raquo": "»",
|
|
3031
|
+
"rarr": "→",
|
|
3032
|
+
"rArr": "⇒",
|
|
3033
|
+
"Rarr": "↠",
|
|
3034
|
+
"rarrap": "⥵",
|
|
3035
|
+
"rarrb": "⇥",
|
|
3036
|
+
"rarrbfs": "⤠",
|
|
3037
|
+
"rarrc": "⤳",
|
|
3038
|
+
"rarrfs": "⤞",
|
|
3039
|
+
"rarrhk": "↪",
|
|
3040
|
+
"rarrlp": "↬",
|
|
3041
|
+
"rarrpl": "⥅",
|
|
3042
|
+
"rarrsim": "⥴",
|
|
3043
|
+
"rarrtl": "↣",
|
|
3044
|
+
"Rarrtl": "⤖",
|
|
3045
|
+
"rarrw": "↝",
|
|
3046
|
+
"ratail": "⤚",
|
|
3047
|
+
"rAtail": "⤜",
|
|
3048
|
+
"ratio": "∶",
|
|
3049
|
+
"rationals": "ℚ",
|
|
3050
|
+
"rbarr": "⤍",
|
|
3051
|
+
"rBarr": "⤏",
|
|
3052
|
+
"RBarr": "⤐",
|
|
3053
|
+
"rbbrk": "❳",
|
|
3054
|
+
"rbrace": "}",
|
|
3055
|
+
"rbrack": "]",
|
|
3056
|
+
"rbrke": "⦌",
|
|
3057
|
+
"rbrksld": "⦎",
|
|
3058
|
+
"rbrkslu": "⦐",
|
|
3059
|
+
"rcaron": "ř",
|
|
3060
|
+
"Rcaron": "Ř",
|
|
3061
|
+
"rcedil": "ŗ",
|
|
3062
|
+
"Rcedil": "Ŗ",
|
|
3063
|
+
"rceil": "⌉",
|
|
3064
|
+
"rcub": "}",
|
|
3065
|
+
"rcy": "р",
|
|
3066
|
+
"Rcy": "Р",
|
|
3067
|
+
"rdca": "⤷",
|
|
3068
|
+
"rdldhar": "⥩",
|
|
3069
|
+
"rdquo": "”",
|
|
3070
|
+
"rdquor": "”",
|
|
3071
|
+
"rdsh": "↳",
|
|
3072
|
+
"Re": "ℜ",
|
|
3073
|
+
"real": "ℜ",
|
|
3074
|
+
"realine": "ℛ",
|
|
3075
|
+
"realpart": "ℜ",
|
|
3076
|
+
"reals": "ℝ",
|
|
3077
|
+
"rect": "▭",
|
|
3078
|
+
"reg": "®",
|
|
3079
|
+
"REG": "®",
|
|
3080
|
+
"ReverseElement": "∋",
|
|
3081
|
+
"ReverseEquilibrium": "⇋",
|
|
3082
|
+
"ReverseUpEquilibrium": "⥯",
|
|
3083
|
+
"rfisht": "⥽",
|
|
3084
|
+
"rfloor": "⌋",
|
|
3085
|
+
"rfr": "𝔯",
|
|
3086
|
+
"Rfr": "ℜ",
|
|
3087
|
+
"rHar": "⥤",
|
|
3088
|
+
"rhard": "⇁",
|
|
3089
|
+
"rharu": "⇀",
|
|
3090
|
+
"rharul": "⥬",
|
|
3091
|
+
"rho": "ρ",
|
|
3092
|
+
"Rho": "Ρ",
|
|
3093
|
+
"rhov": "ϱ",
|
|
3094
|
+
"RightAngleBracket": "⟩",
|
|
3095
|
+
"rightarrow": "→",
|
|
3096
|
+
"Rightarrow": "⇒",
|
|
3097
|
+
"RightArrow": "→",
|
|
3098
|
+
"RightArrowBar": "⇥",
|
|
3099
|
+
"RightArrowLeftArrow": "⇄",
|
|
3100
|
+
"rightarrowtail": "↣",
|
|
3101
|
+
"RightCeiling": "⌉",
|
|
3102
|
+
"RightDoubleBracket": "⟧",
|
|
3103
|
+
"RightDownTeeVector": "⥝",
|
|
3104
|
+
"RightDownVector": "⇂",
|
|
3105
|
+
"RightDownVectorBar": "⥕",
|
|
3106
|
+
"RightFloor": "⌋",
|
|
3107
|
+
"rightharpoondown": "⇁",
|
|
3108
|
+
"rightharpoonup": "⇀",
|
|
3109
|
+
"rightleftarrows": "⇄",
|
|
3110
|
+
"rightleftharpoons": "⇌",
|
|
3111
|
+
"rightrightarrows": "⇉",
|
|
3112
|
+
"rightsquigarrow": "↝",
|
|
3113
|
+
"RightTee": "⊢",
|
|
3114
|
+
"RightTeeArrow": "↦",
|
|
3115
|
+
"RightTeeVector": "⥛",
|
|
3116
|
+
"rightthreetimes": "⋌",
|
|
3117
|
+
"RightTriangle": "⊳",
|
|
3118
|
+
"RightTriangleBar": "⧐",
|
|
3119
|
+
"RightTriangleEqual": "⊵",
|
|
3120
|
+
"RightUpDownVector": "⥏",
|
|
3121
|
+
"RightUpTeeVector": "⥜",
|
|
3122
|
+
"RightUpVector": "↾",
|
|
3123
|
+
"RightUpVectorBar": "⥔",
|
|
3124
|
+
"RightVector": "⇀",
|
|
3125
|
+
"RightVectorBar": "⥓",
|
|
3126
|
+
"ring": "˚",
|
|
3127
|
+
"risingdotseq": "≓",
|
|
3128
|
+
"rlarr": "⇄",
|
|
3129
|
+
"rlhar": "⇌",
|
|
3130
|
+
"rlm": "",
|
|
3131
|
+
"rmoust": "⎱",
|
|
3132
|
+
"rmoustache": "⎱",
|
|
3133
|
+
"rnmid": "⫮",
|
|
3134
|
+
"roang": "⟭",
|
|
3135
|
+
"roarr": "⇾",
|
|
3136
|
+
"robrk": "⟧",
|
|
3137
|
+
"ropar": "⦆",
|
|
3138
|
+
"ropf": "𝕣",
|
|
3139
|
+
"Ropf": "ℝ",
|
|
3140
|
+
"roplus": "⨮",
|
|
3141
|
+
"rotimes": "⨵",
|
|
3142
|
+
"RoundImplies": "⥰",
|
|
3143
|
+
"rpar": ")",
|
|
3144
|
+
"rpargt": "⦔",
|
|
3145
|
+
"rppolint": "⨒",
|
|
3146
|
+
"rrarr": "⇉",
|
|
3147
|
+
"Rrightarrow": "⇛",
|
|
3148
|
+
"rsaquo": "›",
|
|
3149
|
+
"rscr": "𝓇",
|
|
3150
|
+
"Rscr": "ℛ",
|
|
3151
|
+
"rsh": "↱",
|
|
3152
|
+
"Rsh": "↱",
|
|
3153
|
+
"rsqb": "]",
|
|
3154
|
+
"rsquo": "’",
|
|
3155
|
+
"rsquor": "’",
|
|
3156
|
+
"rthree": "⋌",
|
|
3157
|
+
"rtimes": "⋊",
|
|
3158
|
+
"rtri": "▹",
|
|
3159
|
+
"rtrie": "⊵",
|
|
3160
|
+
"rtrif": "▸",
|
|
3161
|
+
"rtriltri": "⧎",
|
|
3162
|
+
"RuleDelayed": "⧴",
|
|
3163
|
+
"ruluhar": "⥨",
|
|
3164
|
+
"rx": "℞",
|
|
3165
|
+
"sacute": "ś",
|
|
3166
|
+
"Sacute": "Ś",
|
|
3167
|
+
"sbquo": "‚",
|
|
3168
|
+
"sc": "≻",
|
|
3169
|
+
"Sc": "⪼",
|
|
3170
|
+
"scap": "⪸",
|
|
3171
|
+
"scaron": "š",
|
|
3172
|
+
"Scaron": "Š",
|
|
3173
|
+
"sccue": "≽",
|
|
3174
|
+
"sce": "⪰",
|
|
3175
|
+
"scE": "⪴",
|
|
3176
|
+
"scedil": "ş",
|
|
3177
|
+
"Scedil": "Ş",
|
|
3178
|
+
"scirc": "ŝ",
|
|
3179
|
+
"Scirc": "Ŝ",
|
|
3180
|
+
"scnap": "⪺",
|
|
3181
|
+
"scnE": "⪶",
|
|
3182
|
+
"scnsim": "⋩",
|
|
3183
|
+
"scpolint": "⨓",
|
|
3184
|
+
"scsim": "≿",
|
|
3185
|
+
"scy": "с",
|
|
3186
|
+
"Scy": "С",
|
|
3187
|
+
"sdot": "⋅",
|
|
3188
|
+
"sdotb": "⊡",
|
|
3189
|
+
"sdote": "⩦",
|
|
3190
|
+
"searhk": "⤥",
|
|
3191
|
+
"searr": "↘",
|
|
3192
|
+
"seArr": "⇘",
|
|
3193
|
+
"searrow": "↘",
|
|
3194
|
+
"sect": "§",
|
|
3195
|
+
"semi": ";",
|
|
3196
|
+
"seswar": "⤩",
|
|
3197
|
+
"setminus": "∖",
|
|
3198
|
+
"setmn": "∖",
|
|
3199
|
+
"sext": "✶",
|
|
3200
|
+
"sfr": "𝔰",
|
|
3201
|
+
"Sfr": "𝔖",
|
|
3202
|
+
"sfrown": "⌢",
|
|
3203
|
+
"sharp": "♯",
|
|
3204
|
+
"shchcy": "щ",
|
|
3205
|
+
"SHCHcy": "Щ",
|
|
3206
|
+
"shcy": "ш",
|
|
3207
|
+
"SHcy": "Ш",
|
|
3208
|
+
"ShortDownArrow": "↓",
|
|
3209
|
+
"ShortLeftArrow": "←",
|
|
3210
|
+
"shortmid": "∣",
|
|
3211
|
+
"shortparallel": "∥",
|
|
3212
|
+
"ShortRightArrow": "→",
|
|
3213
|
+
"ShortUpArrow": "↑",
|
|
3214
|
+
"shy": "",
|
|
3215
|
+
"sigma": "σ",
|
|
3216
|
+
"Sigma": "Σ",
|
|
3217
|
+
"sigmaf": "ς",
|
|
3218
|
+
"sigmav": "ς",
|
|
3219
|
+
"sim": "∼",
|
|
3220
|
+
"simdot": "⩪",
|
|
3221
|
+
"sime": "≃",
|
|
3222
|
+
"simeq": "≃",
|
|
3223
|
+
"simg": "⪞",
|
|
3224
|
+
"simgE": "⪠",
|
|
3225
|
+
"siml": "⪝",
|
|
3226
|
+
"simlE": "⪟",
|
|
3227
|
+
"simne": "≆",
|
|
3228
|
+
"simplus": "⨤",
|
|
3229
|
+
"simrarr": "⥲",
|
|
3230
|
+
"slarr": "←",
|
|
3231
|
+
"SmallCircle": "∘",
|
|
3232
|
+
"smallsetminus": "∖",
|
|
3233
|
+
"smashp": "⨳",
|
|
3234
|
+
"smeparsl": "⧤",
|
|
3235
|
+
"smid": "∣",
|
|
3236
|
+
"smile": "⌣",
|
|
3237
|
+
"smt": "⪪",
|
|
3238
|
+
"smte": "⪬",
|
|
3239
|
+
"smtes": "⪬︀",
|
|
3240
|
+
"softcy": "ь",
|
|
3241
|
+
"SOFTcy": "Ь",
|
|
3242
|
+
"sol": "/",
|
|
3243
|
+
"solb": "⧄",
|
|
3244
|
+
"solbar": "⌿",
|
|
3245
|
+
"sopf": "𝕤",
|
|
3246
|
+
"Sopf": "𝕊",
|
|
3247
|
+
"spades": "♠",
|
|
3248
|
+
"spadesuit": "♠",
|
|
3249
|
+
"spar": "∥",
|
|
3250
|
+
"sqcap": "⊓",
|
|
3251
|
+
"sqcaps": "⊓︀",
|
|
3252
|
+
"sqcup": "⊔",
|
|
3253
|
+
"sqcups": "⊔︀",
|
|
3254
|
+
"Sqrt": "√",
|
|
3255
|
+
"sqsub": "⊏",
|
|
3256
|
+
"sqsube": "⊑",
|
|
3257
|
+
"sqsubset": "⊏",
|
|
3258
|
+
"sqsubseteq": "⊑",
|
|
3259
|
+
"sqsup": "⊐",
|
|
3260
|
+
"sqsupe": "⊒",
|
|
3261
|
+
"sqsupset": "⊐",
|
|
3262
|
+
"sqsupseteq": "⊒",
|
|
3263
|
+
"squ": "□",
|
|
3264
|
+
"square": "□",
|
|
3265
|
+
"Square": "□",
|
|
3266
|
+
"SquareIntersection": "⊓",
|
|
3267
|
+
"SquareSubset": "⊏",
|
|
3268
|
+
"SquareSubsetEqual": "⊑",
|
|
3269
|
+
"SquareSuperset": "⊐",
|
|
3270
|
+
"SquareSupersetEqual": "⊒",
|
|
3271
|
+
"SquareUnion": "⊔",
|
|
3272
|
+
"squarf": "▪",
|
|
3273
|
+
"squf": "▪",
|
|
3274
|
+
"srarr": "→",
|
|
3275
|
+
"sscr": "𝓈",
|
|
3276
|
+
"Sscr": "𝒮",
|
|
3277
|
+
"ssetmn": "∖",
|
|
3278
|
+
"ssmile": "⌣",
|
|
3279
|
+
"sstarf": "⋆",
|
|
3280
|
+
"star": "☆",
|
|
3281
|
+
"Star": "⋆",
|
|
3282
|
+
"starf": "★",
|
|
3283
|
+
"straightepsilon": "ϵ",
|
|
3284
|
+
"straightphi": "ϕ",
|
|
3285
|
+
"strns": "¯",
|
|
3286
|
+
"sub": "⊂",
|
|
3287
|
+
"Sub": "⋐",
|
|
3288
|
+
"subdot": "⪽",
|
|
3289
|
+
"sube": "⊆",
|
|
3290
|
+
"subE": "⫅",
|
|
3291
|
+
"subedot": "⫃",
|
|
3292
|
+
"submult": "⫁",
|
|
3293
|
+
"subne": "⊊",
|
|
3294
|
+
"subnE": "⫋",
|
|
3295
|
+
"subplus": "⪿",
|
|
3296
|
+
"subrarr": "⥹",
|
|
3297
|
+
"subset": "⊂",
|
|
3298
|
+
"Subset": "⋐",
|
|
3299
|
+
"subseteq": "⊆",
|
|
3300
|
+
"subseteqq": "⫅",
|
|
3301
|
+
"SubsetEqual": "⊆",
|
|
3302
|
+
"subsetneq": "⊊",
|
|
3303
|
+
"subsetneqq": "⫋",
|
|
3304
|
+
"subsim": "⫇",
|
|
3305
|
+
"subsub": "⫕",
|
|
3306
|
+
"subsup": "⫓",
|
|
3307
|
+
"succ": "≻",
|
|
3308
|
+
"succapprox": "⪸",
|
|
3309
|
+
"succcurlyeq": "≽",
|
|
3310
|
+
"Succeeds": "≻",
|
|
3311
|
+
"SucceedsEqual": "⪰",
|
|
3312
|
+
"SucceedsSlantEqual": "≽",
|
|
3313
|
+
"SucceedsTilde": "≿",
|
|
3314
|
+
"succeq": "⪰",
|
|
3315
|
+
"succnapprox": "⪺",
|
|
3316
|
+
"succneqq": "⪶",
|
|
3317
|
+
"succnsim": "⋩",
|
|
3318
|
+
"succsim": "≿",
|
|
3319
|
+
"SuchThat": "∋",
|
|
3320
|
+
"sum": "∑",
|
|
3321
|
+
"Sum": "∑",
|
|
3322
|
+
"sung": "♪",
|
|
3323
|
+
"sup": "⊃",
|
|
3324
|
+
"Sup": "⋑",
|
|
3325
|
+
"sup1": "¹",
|
|
3326
|
+
"sup2": "²",
|
|
3327
|
+
"sup3": "³",
|
|
3328
|
+
"supdot": "⪾",
|
|
3329
|
+
"supdsub": "⫘",
|
|
3330
|
+
"supe": "⊇",
|
|
3331
|
+
"supE": "⫆",
|
|
3332
|
+
"supedot": "⫄",
|
|
3333
|
+
"Superset": "⊃",
|
|
3334
|
+
"SupersetEqual": "⊇",
|
|
3335
|
+
"suphsol": "⟉",
|
|
3336
|
+
"suphsub": "⫗",
|
|
3337
|
+
"suplarr": "⥻",
|
|
3338
|
+
"supmult": "⫂",
|
|
3339
|
+
"supne": "⊋",
|
|
3340
|
+
"supnE": "⫌",
|
|
3341
|
+
"supplus": "⫀",
|
|
3342
|
+
"supset": "⊃",
|
|
3343
|
+
"Supset": "⋑",
|
|
3344
|
+
"supseteq": "⊇",
|
|
3345
|
+
"supseteqq": "⫆",
|
|
3346
|
+
"supsetneq": "⊋",
|
|
3347
|
+
"supsetneqq": "⫌",
|
|
3348
|
+
"supsim": "⫈",
|
|
3349
|
+
"supsub": "⫔",
|
|
3350
|
+
"supsup": "⫖",
|
|
3351
|
+
"swarhk": "⤦",
|
|
3352
|
+
"swarr": "↙",
|
|
3353
|
+
"swArr": "⇙",
|
|
3354
|
+
"swarrow": "↙",
|
|
3355
|
+
"swnwar": "⤪",
|
|
3356
|
+
"szlig": "ß",
|
|
3357
|
+
"Tab": " ",
|
|
3358
|
+
"target": "⌖",
|
|
3359
|
+
"tau": "τ",
|
|
3360
|
+
"Tau": "Τ",
|
|
3361
|
+
"tbrk": "⎴",
|
|
3362
|
+
"tcaron": "ť",
|
|
3363
|
+
"Tcaron": "Ť",
|
|
3364
|
+
"tcedil": "ţ",
|
|
3365
|
+
"Tcedil": "Ţ",
|
|
3366
|
+
"tcy": "т",
|
|
3367
|
+
"Tcy": "Т",
|
|
3368
|
+
"tdot": "⃛",
|
|
3369
|
+
"telrec": "⌕",
|
|
3370
|
+
"tfr": "𝔱",
|
|
3371
|
+
"Tfr": "𝔗",
|
|
3372
|
+
"there4": "∴",
|
|
3373
|
+
"therefore": "∴",
|
|
3374
|
+
"Therefore": "∴",
|
|
3375
|
+
"theta": "θ",
|
|
3376
|
+
"Theta": "Θ",
|
|
3377
|
+
"thetasym": "ϑ",
|
|
3378
|
+
"thetav": "ϑ",
|
|
3379
|
+
"thickapprox": "≈",
|
|
3380
|
+
"thicksim": "∼",
|
|
3381
|
+
"ThickSpace": " ",
|
|
3382
|
+
"thinsp": " ",
|
|
3383
|
+
"ThinSpace": " ",
|
|
3384
|
+
"thkap": "≈",
|
|
3385
|
+
"thksim": "∼",
|
|
3386
|
+
"thorn": "þ",
|
|
3387
|
+
"THORN": "Þ",
|
|
3388
|
+
"tilde": "˜",
|
|
3389
|
+
"Tilde": "∼",
|
|
3390
|
+
"TildeEqual": "≃",
|
|
3391
|
+
"TildeFullEqual": "≅",
|
|
3392
|
+
"TildeTilde": "≈",
|
|
3393
|
+
"times": "×",
|
|
3394
|
+
"timesb": "⊠",
|
|
3395
|
+
"timesbar": "⨱",
|
|
3396
|
+
"timesd": "⨰",
|
|
3397
|
+
"tint": "∭",
|
|
3398
|
+
"toea": "⤨",
|
|
3399
|
+
"top": "⊤",
|
|
3400
|
+
"topbot": "⌶",
|
|
3401
|
+
"topcir": "⫱",
|
|
3402
|
+
"topf": "𝕥",
|
|
3403
|
+
"Topf": "𝕋",
|
|
3404
|
+
"topfork": "⫚",
|
|
3405
|
+
"tosa": "⤩",
|
|
3406
|
+
"tprime": "‴",
|
|
3407
|
+
"trade": "™",
|
|
3408
|
+
"TRADE": "™",
|
|
3409
|
+
"triangle": "▵",
|
|
3410
|
+
"triangledown": "▿",
|
|
3411
|
+
"triangleleft": "◃",
|
|
3412
|
+
"trianglelefteq": "⊴",
|
|
3413
|
+
"triangleq": "≜",
|
|
3414
|
+
"triangleright": "▹",
|
|
3415
|
+
"trianglerighteq": "⊵",
|
|
3416
|
+
"tridot": "◬",
|
|
3417
|
+
"trie": "≜",
|
|
3418
|
+
"triminus": "⨺",
|
|
3419
|
+
"TripleDot": "⃛",
|
|
3420
|
+
"triplus": "⨹",
|
|
3421
|
+
"trisb": "⧍",
|
|
3422
|
+
"tritime": "⨻",
|
|
3423
|
+
"trpezium": "⏢",
|
|
3424
|
+
"tscr": "𝓉",
|
|
3425
|
+
"Tscr": "𝒯",
|
|
3426
|
+
"tscy": "ц",
|
|
3427
|
+
"TScy": "Ц",
|
|
3428
|
+
"tshcy": "ћ",
|
|
3429
|
+
"TSHcy": "Ћ",
|
|
3430
|
+
"tstrok": "ŧ",
|
|
3431
|
+
"Tstrok": "Ŧ",
|
|
3432
|
+
"twixt": "≬",
|
|
3433
|
+
"twoheadleftarrow": "↞",
|
|
3434
|
+
"twoheadrightarrow": "↠",
|
|
3435
|
+
"uacute": "ú",
|
|
3436
|
+
"Uacute": "Ú",
|
|
3437
|
+
"uarr": "↑",
|
|
3438
|
+
"uArr": "⇑",
|
|
3439
|
+
"Uarr": "↟",
|
|
3440
|
+
"Uarrocir": "⥉",
|
|
3441
|
+
"ubrcy": "ў",
|
|
3442
|
+
"Ubrcy": "Ў",
|
|
3443
|
+
"ubreve": "ŭ",
|
|
3444
|
+
"Ubreve": "Ŭ",
|
|
3445
|
+
"ucirc": "û",
|
|
3446
|
+
"Ucirc": "Û",
|
|
3447
|
+
"ucy": "у",
|
|
3448
|
+
"Ucy": "У",
|
|
3449
|
+
"udarr": "⇅",
|
|
3450
|
+
"udblac": "ű",
|
|
3451
|
+
"Udblac": "Ű",
|
|
3452
|
+
"udhar": "⥮",
|
|
3453
|
+
"ufisht": "⥾",
|
|
3454
|
+
"ufr": "𝔲",
|
|
3455
|
+
"Ufr": "𝔘",
|
|
3456
|
+
"ugrave": "ù",
|
|
3457
|
+
"Ugrave": "Ù",
|
|
3458
|
+
"uHar": "⥣",
|
|
3459
|
+
"uharl": "↿",
|
|
3460
|
+
"uharr": "↾",
|
|
3461
|
+
"uhblk": "▀",
|
|
3462
|
+
"ulcorn": "⌜",
|
|
3463
|
+
"ulcorner": "⌜",
|
|
3464
|
+
"ulcrop": "⌏",
|
|
3465
|
+
"ultri": "◸",
|
|
3466
|
+
"umacr": "ū",
|
|
3467
|
+
"Umacr": "Ū",
|
|
3468
|
+
"uml": "¨",
|
|
3469
|
+
"UnderBar": "_",
|
|
3470
|
+
"UnderBrace": "⏟",
|
|
3471
|
+
"UnderBracket": "⎵",
|
|
3472
|
+
"UnderParenthesis": "⏝",
|
|
3473
|
+
"Union": "⋃",
|
|
3474
|
+
"UnionPlus": "⊎",
|
|
3475
|
+
"uogon": "ų",
|
|
3476
|
+
"Uogon": "Ų",
|
|
3477
|
+
"uopf": "𝕦",
|
|
3478
|
+
"Uopf": "𝕌",
|
|
3479
|
+
"uparrow": "↑",
|
|
3480
|
+
"Uparrow": "⇑",
|
|
3481
|
+
"UpArrow": "↑",
|
|
3482
|
+
"UpArrowBar": "⤒",
|
|
3483
|
+
"UpArrowDownArrow": "⇅",
|
|
3484
|
+
"updownarrow": "↕",
|
|
3485
|
+
"Updownarrow": "⇕",
|
|
3486
|
+
"UpDownArrow": "↕",
|
|
3487
|
+
"UpEquilibrium": "⥮",
|
|
3488
|
+
"upharpoonleft": "↿",
|
|
3489
|
+
"upharpoonright": "↾",
|
|
3490
|
+
"uplus": "⊎",
|
|
3491
|
+
"UpperLeftArrow": "↖",
|
|
3492
|
+
"UpperRightArrow": "↗",
|
|
3493
|
+
"upsi": "υ",
|
|
3494
|
+
"Upsi": "ϒ",
|
|
3495
|
+
"upsih": "ϒ",
|
|
3496
|
+
"upsilon": "υ",
|
|
3497
|
+
"Upsilon": "Υ",
|
|
3498
|
+
"UpTee": "⊥",
|
|
3499
|
+
"UpTeeArrow": "↥",
|
|
3500
|
+
"upuparrows": "⇈",
|
|
3501
|
+
"urcorn": "⌝",
|
|
3502
|
+
"urcorner": "⌝",
|
|
3503
|
+
"urcrop": "⌎",
|
|
3504
|
+
"uring": "ů",
|
|
3505
|
+
"Uring": "Ů",
|
|
3506
|
+
"urtri": "◹",
|
|
3507
|
+
"uscr": "𝓊",
|
|
3508
|
+
"Uscr": "𝒰",
|
|
3509
|
+
"utdot": "⋰",
|
|
3510
|
+
"utilde": "ũ",
|
|
3511
|
+
"Utilde": "Ũ",
|
|
3512
|
+
"utri": "▵",
|
|
3513
|
+
"utrif": "▴",
|
|
3514
|
+
"uuarr": "⇈",
|
|
3515
|
+
"uuml": "ü",
|
|
3516
|
+
"Uuml": "Ü",
|
|
3517
|
+
"uwangle": "⦧",
|
|
3518
|
+
"vangrt": "⦜",
|
|
3519
|
+
"varepsilon": "ϵ",
|
|
3520
|
+
"varkappa": "ϰ",
|
|
3521
|
+
"varnothing": "∅",
|
|
3522
|
+
"varphi": "ϕ",
|
|
3523
|
+
"varpi": "ϖ",
|
|
3524
|
+
"varpropto": "∝",
|
|
3525
|
+
"varr": "↕",
|
|
3526
|
+
"vArr": "⇕",
|
|
3527
|
+
"varrho": "ϱ",
|
|
3528
|
+
"varsigma": "ς",
|
|
3529
|
+
"varsubsetneq": "⊊︀",
|
|
3530
|
+
"varsubsetneqq": "⫋︀",
|
|
3531
|
+
"varsupsetneq": "⊋︀",
|
|
3532
|
+
"varsupsetneqq": "⫌︀",
|
|
3533
|
+
"vartheta": "ϑ",
|
|
3534
|
+
"vartriangleleft": "⊲",
|
|
3535
|
+
"vartriangleright": "⊳",
|
|
3536
|
+
"vBar": "⫨",
|
|
3537
|
+
"Vbar": "⫫",
|
|
3538
|
+
"vBarv": "⫩",
|
|
3539
|
+
"vcy": "в",
|
|
3540
|
+
"Vcy": "В",
|
|
3541
|
+
"vdash": "⊢",
|
|
3542
|
+
"vDash": "⊨",
|
|
3543
|
+
"Vdash": "⊩",
|
|
3544
|
+
"VDash": "⊫",
|
|
3545
|
+
"Vdashl": "⫦",
|
|
3546
|
+
"vee": "∨",
|
|
3547
|
+
"Vee": "⋁",
|
|
3548
|
+
"veebar": "⊻",
|
|
3549
|
+
"veeeq": "≚",
|
|
3550
|
+
"vellip": "⋮",
|
|
3551
|
+
"verbar": "|",
|
|
3552
|
+
"Verbar": "‖",
|
|
3553
|
+
"vert": "|",
|
|
3554
|
+
"Vert": "‖",
|
|
3555
|
+
"VerticalBar": "∣",
|
|
3556
|
+
"VerticalLine": "|",
|
|
3557
|
+
"VerticalSeparator": "❘",
|
|
3558
|
+
"VerticalTilde": "≀",
|
|
3559
|
+
"VeryThinSpace": " ",
|
|
3560
|
+
"vfr": "𝔳",
|
|
3561
|
+
"Vfr": "𝔙",
|
|
3562
|
+
"vltri": "⊲",
|
|
3563
|
+
"vnsub": "⊂⃒",
|
|
3564
|
+
"vnsup": "⊃⃒",
|
|
3565
|
+
"vopf": "𝕧",
|
|
3566
|
+
"Vopf": "𝕍",
|
|
3567
|
+
"vprop": "∝",
|
|
3568
|
+
"vrtri": "⊳",
|
|
3569
|
+
"vscr": "𝓋",
|
|
3570
|
+
"Vscr": "𝒱",
|
|
3571
|
+
"vsubne": "⊊︀",
|
|
3572
|
+
"vsubnE": "⫋︀",
|
|
3573
|
+
"vsupne": "⊋︀",
|
|
3574
|
+
"vsupnE": "⫌︀",
|
|
3575
|
+
"Vvdash": "⊪",
|
|
3576
|
+
"vzigzag": "⦚",
|
|
3577
|
+
"wcirc": "ŵ",
|
|
3578
|
+
"Wcirc": "Ŵ",
|
|
3579
|
+
"wedbar": "⩟",
|
|
3580
|
+
"wedge": "∧",
|
|
3581
|
+
"Wedge": "⋀",
|
|
3582
|
+
"wedgeq": "≙",
|
|
3583
|
+
"weierp": "℘",
|
|
3584
|
+
"wfr": "𝔴",
|
|
3585
|
+
"Wfr": "𝔚",
|
|
3586
|
+
"wopf": "𝕨",
|
|
3587
|
+
"Wopf": "𝕎",
|
|
3588
|
+
"wp": "℘",
|
|
3589
|
+
"wr": "≀",
|
|
3590
|
+
"wreath": "≀",
|
|
3591
|
+
"wscr": "𝓌",
|
|
3592
|
+
"Wscr": "𝒲",
|
|
3593
|
+
"xcap": "⋂",
|
|
3594
|
+
"xcirc": "◯",
|
|
3595
|
+
"xcup": "⋃",
|
|
3596
|
+
"xdtri": "▽",
|
|
3597
|
+
"xfr": "𝔵",
|
|
3598
|
+
"Xfr": "𝔛",
|
|
3599
|
+
"xharr": "⟷",
|
|
3600
|
+
"xhArr": "⟺",
|
|
3601
|
+
"xi": "ξ",
|
|
3602
|
+
"Xi": "Ξ",
|
|
3603
|
+
"xlarr": "⟵",
|
|
3604
|
+
"xlArr": "⟸",
|
|
3605
|
+
"xmap": "⟼",
|
|
3606
|
+
"xnis": "⋻",
|
|
3607
|
+
"xodot": "⨀",
|
|
3608
|
+
"xopf": "𝕩",
|
|
3609
|
+
"Xopf": "𝕏",
|
|
3610
|
+
"xoplus": "⨁",
|
|
3611
|
+
"xotime": "⨂",
|
|
3612
|
+
"xrarr": "⟶",
|
|
3613
|
+
"xrArr": "⟹",
|
|
3614
|
+
"xscr": "𝓍",
|
|
3615
|
+
"Xscr": "𝒳",
|
|
3616
|
+
"xsqcup": "⨆",
|
|
3617
|
+
"xuplus": "⨄",
|
|
3618
|
+
"xutri": "△",
|
|
3619
|
+
"xvee": "⋁",
|
|
3620
|
+
"xwedge": "⋀",
|
|
3621
|
+
"yacute": "ý",
|
|
3622
|
+
"Yacute": "Ý",
|
|
3623
|
+
"yacy": "я",
|
|
3624
|
+
"YAcy": "Я",
|
|
3625
|
+
"ycirc": "ŷ",
|
|
3626
|
+
"Ycirc": "Ŷ",
|
|
3627
|
+
"ycy": "ы",
|
|
3628
|
+
"Ycy": "Ы",
|
|
3629
|
+
"yen": "¥",
|
|
3630
|
+
"yfr": "𝔶",
|
|
3631
|
+
"Yfr": "𝔜",
|
|
3632
|
+
"yicy": "ї",
|
|
3633
|
+
"YIcy": "Ї",
|
|
3634
|
+
"yopf": "𝕪",
|
|
3635
|
+
"Yopf": "𝕐",
|
|
3636
|
+
"yscr": "𝓎",
|
|
3637
|
+
"Yscr": "𝒴",
|
|
3638
|
+
"yucy": "ю",
|
|
3639
|
+
"YUcy": "Ю",
|
|
3640
|
+
"yuml": "ÿ",
|
|
3641
|
+
"Yuml": "Ÿ",
|
|
3642
|
+
"zacute": "ź",
|
|
3643
|
+
"Zacute": "Ź",
|
|
3644
|
+
"zcaron": "ž",
|
|
3645
|
+
"Zcaron": "Ž",
|
|
3646
|
+
"zcy": "з",
|
|
3647
|
+
"Zcy": "З",
|
|
3648
|
+
"zdot": "ż",
|
|
3649
|
+
"Zdot": "Ż",
|
|
3650
|
+
"zeetrf": "ℨ",
|
|
3651
|
+
"ZeroWidthSpace": "",
|
|
3652
|
+
"zeta": "ζ",
|
|
3653
|
+
"Zeta": "Ζ",
|
|
3654
|
+
"zfr": "𝔷",
|
|
3655
|
+
"Zfr": "ℨ",
|
|
3656
|
+
"zhcy": "ж",
|
|
3657
|
+
"ZHcy": "Ж",
|
|
3658
|
+
"zigrarr": "⇝",
|
|
3659
|
+
"zopf": "𝕫",
|
|
3660
|
+
"Zopf": "ℤ",
|
|
3661
|
+
"zscr": "𝓏",
|
|
3662
|
+
"Zscr": "𝒵",
|
|
3663
|
+
"zwj": "",
|
|
3664
|
+
"zwnj": ""
|
|
3665
|
+
};
|
|
3666
|
+
var decodeMapLegacy = {
|
|
3667
|
+
"aacute": "á",
|
|
3668
|
+
"Aacute": "Á",
|
|
3669
|
+
"acirc": "â",
|
|
3670
|
+
"Acirc": "Â",
|
|
3671
|
+
"acute": "´",
|
|
3672
|
+
"aelig": "æ",
|
|
3673
|
+
"AElig": "Æ",
|
|
3674
|
+
"agrave": "à",
|
|
3675
|
+
"Agrave": "À",
|
|
3676
|
+
"amp": "&",
|
|
3677
|
+
"AMP": "&",
|
|
3678
|
+
"aring": "å",
|
|
3679
|
+
"Aring": "Å",
|
|
3680
|
+
"atilde": "ã",
|
|
3681
|
+
"Atilde": "Ã",
|
|
3682
|
+
"auml": "ä",
|
|
3683
|
+
"Auml": "Ä",
|
|
3684
|
+
"brvbar": "¦",
|
|
3685
|
+
"ccedil": "ç",
|
|
3686
|
+
"Ccedil": "Ç",
|
|
3687
|
+
"cedil": "¸",
|
|
3688
|
+
"cent": "¢",
|
|
3689
|
+
"copy": "©",
|
|
3690
|
+
"COPY": "©",
|
|
3691
|
+
"curren": "¤",
|
|
3692
|
+
"deg": "°",
|
|
3693
|
+
"divide": "÷",
|
|
3694
|
+
"eacute": "é",
|
|
3695
|
+
"Eacute": "É",
|
|
3696
|
+
"ecirc": "ê",
|
|
3697
|
+
"Ecirc": "Ê",
|
|
3698
|
+
"egrave": "è",
|
|
3699
|
+
"Egrave": "È",
|
|
3700
|
+
"eth": "ð",
|
|
3701
|
+
"ETH": "Ð",
|
|
3702
|
+
"euml": "ë",
|
|
3703
|
+
"Euml": "Ë",
|
|
3704
|
+
"frac12": "½",
|
|
3705
|
+
"frac14": "¼",
|
|
3706
|
+
"frac34": "¾",
|
|
3707
|
+
"gt": ">",
|
|
3708
|
+
"GT": ">",
|
|
3709
|
+
"iacute": "í",
|
|
3710
|
+
"Iacute": "Í",
|
|
3711
|
+
"icirc": "î",
|
|
3712
|
+
"Icirc": "Î",
|
|
3713
|
+
"iexcl": "¡",
|
|
3714
|
+
"igrave": "ì",
|
|
3715
|
+
"Igrave": "Ì",
|
|
3716
|
+
"iquest": "¿",
|
|
3717
|
+
"iuml": "ï",
|
|
3718
|
+
"Iuml": "Ï",
|
|
3719
|
+
"laquo": "«",
|
|
3720
|
+
"lt": "<",
|
|
3721
|
+
"LT": "<",
|
|
3722
|
+
"macr": "¯",
|
|
3723
|
+
"micro": "µ",
|
|
3724
|
+
"middot": "·",
|
|
3725
|
+
"nbsp": "\xA0",
|
|
3726
|
+
"not": "¬",
|
|
3727
|
+
"ntilde": "ñ",
|
|
3728
|
+
"Ntilde": "Ñ",
|
|
3729
|
+
"oacute": "ó",
|
|
3730
|
+
"Oacute": "Ó",
|
|
3731
|
+
"ocirc": "ô",
|
|
3732
|
+
"Ocirc": "Ô",
|
|
3733
|
+
"ograve": "ò",
|
|
3734
|
+
"Ograve": "Ò",
|
|
3735
|
+
"ordf": "ª",
|
|
3736
|
+
"ordm": "º",
|
|
3737
|
+
"oslash": "ø",
|
|
3738
|
+
"Oslash": "Ø",
|
|
3739
|
+
"otilde": "õ",
|
|
3740
|
+
"Otilde": "Õ",
|
|
3741
|
+
"ouml": "ö",
|
|
3742
|
+
"Ouml": "Ö",
|
|
3743
|
+
"para": "¶",
|
|
3744
|
+
"plusmn": "±",
|
|
3745
|
+
"pound": "£",
|
|
3746
|
+
"quot": "\"",
|
|
3747
|
+
"QUOT": "\"",
|
|
3748
|
+
"raquo": "»",
|
|
3749
|
+
"reg": "®",
|
|
3750
|
+
"REG": "®",
|
|
3751
|
+
"sect": "§",
|
|
3752
|
+
"shy": "",
|
|
3753
|
+
"sup1": "¹",
|
|
3754
|
+
"sup2": "²",
|
|
3755
|
+
"sup3": "³",
|
|
3756
|
+
"szlig": "ß",
|
|
3757
|
+
"thorn": "þ",
|
|
3758
|
+
"THORN": "Þ",
|
|
3759
|
+
"times": "×",
|
|
3760
|
+
"uacute": "ú",
|
|
3761
|
+
"Uacute": "Ú",
|
|
3762
|
+
"ucirc": "û",
|
|
3763
|
+
"Ucirc": "Û",
|
|
3764
|
+
"ugrave": "ù",
|
|
3765
|
+
"Ugrave": "Ù",
|
|
3766
|
+
"uml": "¨",
|
|
3767
|
+
"uuml": "ü",
|
|
3768
|
+
"Uuml": "Ü",
|
|
3769
|
+
"yacute": "ý",
|
|
3770
|
+
"Yacute": "Ý",
|
|
3771
|
+
"yen": "¥",
|
|
3772
|
+
"yuml": "ÿ"
|
|
3773
|
+
};
|
|
3774
|
+
var decodeMapNumeric = {
|
|
3775
|
+
"0": "�",
|
|
3776
|
+
"128": "€",
|
|
3777
|
+
"130": "‚",
|
|
3778
|
+
"131": "ƒ",
|
|
3779
|
+
"132": "„",
|
|
3780
|
+
"133": "…",
|
|
3781
|
+
"134": "†",
|
|
3782
|
+
"135": "‡",
|
|
3783
|
+
"136": "ˆ",
|
|
3784
|
+
"137": "‰",
|
|
3785
|
+
"138": "Š",
|
|
3786
|
+
"139": "‹",
|
|
3787
|
+
"140": "Œ",
|
|
3788
|
+
"142": "Ž",
|
|
3789
|
+
"145": "‘",
|
|
3790
|
+
"146": "’",
|
|
3791
|
+
"147": "“",
|
|
3792
|
+
"148": "”",
|
|
3793
|
+
"149": "•",
|
|
3794
|
+
"150": "–",
|
|
3795
|
+
"151": "—",
|
|
3796
|
+
"152": "˜",
|
|
3797
|
+
"153": "™",
|
|
3798
|
+
"154": "š",
|
|
3799
|
+
"155": "›",
|
|
3800
|
+
"156": "œ",
|
|
3801
|
+
"158": "ž",
|
|
3802
|
+
"159": "Ÿ"
|
|
3803
|
+
};
|
|
3804
|
+
var invalidReferenceCodePoints = [
|
|
3805
|
+
1,
|
|
3806
|
+
2,
|
|
3807
|
+
3,
|
|
3808
|
+
4,
|
|
3809
|
+
5,
|
|
3810
|
+
6,
|
|
3811
|
+
7,
|
|
3812
|
+
8,
|
|
3813
|
+
11,
|
|
3814
|
+
13,
|
|
3815
|
+
14,
|
|
3816
|
+
15,
|
|
3817
|
+
16,
|
|
3818
|
+
17,
|
|
3819
|
+
18,
|
|
3820
|
+
19,
|
|
3821
|
+
20,
|
|
3822
|
+
21,
|
|
3823
|
+
22,
|
|
3824
|
+
23,
|
|
3825
|
+
24,
|
|
3826
|
+
25,
|
|
3827
|
+
26,
|
|
3828
|
+
27,
|
|
3829
|
+
28,
|
|
3830
|
+
29,
|
|
3831
|
+
30,
|
|
3832
|
+
31,
|
|
3833
|
+
127,
|
|
3834
|
+
128,
|
|
3835
|
+
129,
|
|
3836
|
+
130,
|
|
3837
|
+
131,
|
|
3838
|
+
132,
|
|
3839
|
+
133,
|
|
3840
|
+
134,
|
|
3841
|
+
135,
|
|
3842
|
+
136,
|
|
3843
|
+
137,
|
|
3844
|
+
138,
|
|
3845
|
+
139,
|
|
3846
|
+
140,
|
|
3847
|
+
141,
|
|
3848
|
+
142,
|
|
3849
|
+
143,
|
|
3850
|
+
144,
|
|
3851
|
+
145,
|
|
3852
|
+
146,
|
|
3853
|
+
147,
|
|
3854
|
+
148,
|
|
3855
|
+
149,
|
|
3856
|
+
150,
|
|
3857
|
+
151,
|
|
3858
|
+
152,
|
|
3859
|
+
153,
|
|
3860
|
+
154,
|
|
3861
|
+
155,
|
|
3862
|
+
156,
|
|
3863
|
+
157,
|
|
3864
|
+
158,
|
|
3865
|
+
159,
|
|
3866
|
+
64976,
|
|
3867
|
+
64977,
|
|
3868
|
+
64978,
|
|
3869
|
+
64979,
|
|
3870
|
+
64980,
|
|
3871
|
+
64981,
|
|
3872
|
+
64982,
|
|
3873
|
+
64983,
|
|
3874
|
+
64984,
|
|
3875
|
+
64985,
|
|
3876
|
+
64986,
|
|
3877
|
+
64987,
|
|
3878
|
+
64988,
|
|
3879
|
+
64989,
|
|
3880
|
+
64990,
|
|
3881
|
+
64991,
|
|
3882
|
+
64992,
|
|
3883
|
+
64993,
|
|
3884
|
+
64994,
|
|
3885
|
+
64995,
|
|
3886
|
+
64996,
|
|
3887
|
+
64997,
|
|
3888
|
+
64998,
|
|
3889
|
+
64999,
|
|
3890
|
+
65e3,
|
|
3891
|
+
65001,
|
|
3892
|
+
65002,
|
|
3893
|
+
65003,
|
|
3894
|
+
65004,
|
|
3895
|
+
65005,
|
|
3896
|
+
65006,
|
|
3897
|
+
65007,
|
|
3898
|
+
65534,
|
|
3899
|
+
65535,
|
|
3900
|
+
131070,
|
|
3901
|
+
131071,
|
|
3902
|
+
196606,
|
|
3903
|
+
196607,
|
|
3904
|
+
262142,
|
|
3905
|
+
262143,
|
|
3906
|
+
327678,
|
|
3907
|
+
327679,
|
|
3908
|
+
393214,
|
|
3909
|
+
393215,
|
|
3910
|
+
458750,
|
|
3911
|
+
458751,
|
|
3912
|
+
524286,
|
|
3913
|
+
524287,
|
|
3914
|
+
589822,
|
|
3915
|
+
589823,
|
|
3916
|
+
655358,
|
|
3917
|
+
655359,
|
|
3918
|
+
720894,
|
|
3919
|
+
720895,
|
|
3920
|
+
786430,
|
|
3921
|
+
786431,
|
|
3922
|
+
851966,
|
|
3923
|
+
851967,
|
|
3924
|
+
917502,
|
|
3925
|
+
917503,
|
|
3926
|
+
983038,
|
|
3927
|
+
983039,
|
|
3928
|
+
1048574,
|
|
3929
|
+
1048575,
|
|
3930
|
+
1114110,
|
|
3931
|
+
1114111
|
|
3932
|
+
];
|
|
3933
|
+
var stringFromCharCode = String.fromCharCode;
|
|
3934
|
+
var hasOwnProperty = {}.hasOwnProperty;
|
|
3935
|
+
var has = function(object, propertyName) {
|
|
3936
|
+
return hasOwnProperty.call(object, propertyName);
|
|
3937
|
+
};
|
|
3938
|
+
var contains = function(array, value) {
|
|
3939
|
+
var index = -1;
|
|
3940
|
+
var length = array.length;
|
|
3941
|
+
while (++index < length) if (array[index] == value) return true;
|
|
3942
|
+
return false;
|
|
3943
|
+
};
|
|
3944
|
+
var merge = function(options, defaults) {
|
|
3945
|
+
if (!options) return defaults;
|
|
3946
|
+
var result = {};
|
|
3947
|
+
var key$1;
|
|
3948
|
+
for (key$1 in defaults) result[key$1] = has(options, key$1) ? options[key$1] : defaults[key$1];
|
|
3949
|
+
return result;
|
|
3950
|
+
};
|
|
3951
|
+
var codePointToSymbol = function(codePoint, strict) {
|
|
3952
|
+
var output = "";
|
|
3953
|
+
if (codePoint >= 55296 && codePoint <= 57343 || codePoint > 1114111) {
|
|
3954
|
+
if (strict) parseError("character reference outside the permissible Unicode range");
|
|
3955
|
+
return "�";
|
|
3956
|
+
}
|
|
3957
|
+
if (has(decodeMapNumeric, codePoint)) {
|
|
3958
|
+
if (strict) parseError("disallowed character reference");
|
|
3959
|
+
return decodeMapNumeric[codePoint];
|
|
3960
|
+
}
|
|
3961
|
+
if (strict && contains(invalidReferenceCodePoints, codePoint)) parseError("disallowed character reference");
|
|
3962
|
+
if (codePoint > 65535) {
|
|
3963
|
+
codePoint -= 65536;
|
|
3964
|
+
output += stringFromCharCode(codePoint >>> 10 & 1023 | 55296);
|
|
3965
|
+
codePoint = 56320 | codePoint & 1023;
|
|
3966
|
+
}
|
|
3967
|
+
output += stringFromCharCode(codePoint);
|
|
3968
|
+
return output;
|
|
3969
|
+
};
|
|
3970
|
+
var hexEscape = function(codePoint) {
|
|
3971
|
+
return "&#x" + codePoint.toString(16).toUpperCase() + ";";
|
|
3972
|
+
};
|
|
3973
|
+
var decEscape = function(codePoint) {
|
|
3974
|
+
return "&#" + codePoint + ";";
|
|
3975
|
+
};
|
|
3976
|
+
var parseError = function(message) {
|
|
3977
|
+
throw Error("Parse error: " + message);
|
|
3978
|
+
};
|
|
3979
|
+
var encode = function(string, options) {
|
|
3980
|
+
options = merge(options, encode.options);
|
|
3981
|
+
if (options.strict && regexInvalidRawCodePoint.test(string)) parseError("forbidden code point");
|
|
3982
|
+
var encodeEverything = options.encodeEverything;
|
|
3983
|
+
var useNamedReferences = options.useNamedReferences;
|
|
3984
|
+
var allowUnsafeSymbols = options.allowUnsafeSymbols;
|
|
3985
|
+
var escapeCodePoint = options.decimal ? decEscape : hexEscape;
|
|
3986
|
+
var escapeBmpSymbol = function(symbol) {
|
|
3987
|
+
return escapeCodePoint(symbol.charCodeAt(0));
|
|
3988
|
+
};
|
|
3989
|
+
if (encodeEverything) {
|
|
3990
|
+
string = string.replace(regexAsciiWhitelist, function(symbol) {
|
|
3991
|
+
if (useNamedReferences && has(encodeMap, symbol)) return "&" + encodeMap[symbol] + ";";
|
|
3992
|
+
return escapeBmpSymbol(symbol);
|
|
3993
|
+
});
|
|
3994
|
+
if (useNamedReferences) string = string.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒").replace(/fj/g, "fj");
|
|
3995
|
+
if (useNamedReferences) string = string.replace(regexEncodeNonAscii, function(string$1) {
|
|
3996
|
+
return "&" + encodeMap[string$1] + ";";
|
|
3997
|
+
});
|
|
3998
|
+
} else if (useNamedReferences) {
|
|
3999
|
+
if (!allowUnsafeSymbols) string = string.replace(regexEscape, function(string$1) {
|
|
4000
|
+
return "&" + encodeMap[string$1] + ";";
|
|
4001
|
+
});
|
|
4002
|
+
string = string.replace(/>\u20D2/g, ">⃒").replace(/<\u20D2/g, "<⃒");
|
|
4003
|
+
string = string.replace(regexEncodeNonAscii, function(string$1) {
|
|
4004
|
+
return "&" + encodeMap[string$1] + ";";
|
|
4005
|
+
});
|
|
4006
|
+
} else if (!allowUnsafeSymbols) string = string.replace(regexEscape, escapeBmpSymbol);
|
|
4007
|
+
return string.replace(regexAstralSymbols, function($0) {
|
|
4008
|
+
var high = $0.charCodeAt(0);
|
|
4009
|
+
var low = $0.charCodeAt(1);
|
|
4010
|
+
var codePoint = (high - 55296) * 1024 + low - 56320 + 65536;
|
|
4011
|
+
return escapeCodePoint(codePoint);
|
|
4012
|
+
}).replace(regexBmpWhitelist, escapeBmpSymbol);
|
|
4013
|
+
};
|
|
4014
|
+
encode.options = {
|
|
4015
|
+
"allowUnsafeSymbols": false,
|
|
4016
|
+
"encodeEverything": false,
|
|
4017
|
+
"strict": false,
|
|
4018
|
+
"useNamedReferences": false,
|
|
4019
|
+
"decimal": false
|
|
4020
|
+
};
|
|
4021
|
+
var decode = function(html, options) {
|
|
4022
|
+
options = merge(options, decode.options);
|
|
4023
|
+
var strict = options.strict;
|
|
4024
|
+
if (strict && regexInvalidEntity.test(html)) parseError("malformed character reference");
|
|
4025
|
+
return html.replace(regexDecode, function($0, $1, $2, $3, $4, $5, $6, $7, $8) {
|
|
4026
|
+
var codePoint;
|
|
4027
|
+
var semicolon;
|
|
4028
|
+
var decDigits;
|
|
4029
|
+
var hexDigits;
|
|
4030
|
+
var reference;
|
|
4031
|
+
var next;
|
|
4032
|
+
if ($1) {
|
|
4033
|
+
reference = $1;
|
|
4034
|
+
return decodeMap[reference];
|
|
4035
|
+
}
|
|
4036
|
+
if ($2) {
|
|
4037
|
+
reference = $2;
|
|
4038
|
+
next = $3;
|
|
4039
|
+
if (next && options.isAttributeValue) {
|
|
4040
|
+
if (strict && next == "=") parseError("`&` did not start a character reference");
|
|
4041
|
+
return $0;
|
|
4042
|
+
} else {
|
|
4043
|
+
if (strict) parseError("named character reference was not terminated by a semicolon");
|
|
4044
|
+
return decodeMapLegacy[reference] + (next || "");
|
|
4045
|
+
}
|
|
4046
|
+
}
|
|
4047
|
+
if ($4) {
|
|
4048
|
+
decDigits = $4;
|
|
4049
|
+
semicolon = $5;
|
|
4050
|
+
if (strict && !semicolon) parseError("character reference was not terminated by a semicolon");
|
|
4051
|
+
codePoint = parseInt(decDigits, 10);
|
|
4052
|
+
return codePointToSymbol(codePoint, strict);
|
|
4053
|
+
}
|
|
4054
|
+
if ($6) {
|
|
4055
|
+
hexDigits = $6;
|
|
4056
|
+
semicolon = $7;
|
|
4057
|
+
if (strict && !semicolon) parseError("character reference was not terminated by a semicolon");
|
|
4058
|
+
codePoint = parseInt(hexDigits, 16);
|
|
4059
|
+
return codePointToSymbol(codePoint, strict);
|
|
4060
|
+
}
|
|
4061
|
+
if (strict) parseError("named character reference was not terminated by a semicolon");
|
|
4062
|
+
return $0;
|
|
4063
|
+
});
|
|
4064
|
+
};
|
|
4065
|
+
decode.options = {
|
|
4066
|
+
"isAttributeValue": false,
|
|
4067
|
+
"strict": false
|
|
4068
|
+
};
|
|
4069
|
+
var escape = function(string) {
|
|
4070
|
+
return string.replace(regexEscape, function($0) {
|
|
4071
|
+
return escapeMap[$0];
|
|
4072
|
+
});
|
|
4073
|
+
};
|
|
4074
|
+
var he = {
|
|
4075
|
+
"version": "1.2.0",
|
|
4076
|
+
"encode": encode,
|
|
4077
|
+
"decode": decode,
|
|
4078
|
+
"escape": escape,
|
|
4079
|
+
"unescape": decode
|
|
4080
|
+
};
|
|
4081
|
+
if (typeof define == "function" && typeof define.amd == "object" && define.amd) define(function() {
|
|
4082
|
+
return he;
|
|
4083
|
+
});
|
|
4084
|
+
else if (freeExports && !freeExports.nodeType) if (freeModule) freeModule.exports = he;
|
|
4085
|
+
else for (var key in he) has(he, key) && (freeExports[key] = he[key]);
|
|
4086
|
+
else root.he = he;
|
|
4087
|
+
})(exports);
|
|
4088
|
+
}) });
|
|
4089
|
+
|
|
4090
|
+
//#endregion
|
|
4091
|
+
export default require_he();
|
|
4092
|
+
|
|
4093
|
+
export { require_he };
|