Html Entities Decode

A bundled function (heDecode) to decode html entities

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/438044/1005182/Html%20Entities%20Decode.js

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