Skip to content
Snippets Groups Projects
html-entities.edn 117 KiB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
{"⁣" {:codepoints [8291], :characters "⁣"},
 "⥱" {:codepoints [10609], :characters "⥱"},
 "⧁" {:codepoints [10689], :characters "⧁"},
 "↶" {:codepoints [8630], :characters "↶"},
 "ℳ" {:codepoints [8499], :characters "ℳ"},
 "ÿ" {:codepoints [255], :characters "ÿ"},
 "⨻" {:codepoints [10811], :characters "⨻"},
 "⤳" {:codepoints [10547], :characters "⤳"},
 "⋪" {:codepoints [8938], :characters "⋪"},
 "ℶ" {:codepoints [8502], :characters "ℶ"},
 "𝒮" {:codepoints [119982], :characters "𝒮"},
 "⊅" {:codepoints [8837], :characters "⊅"},
 "€" {:codepoints [8364], :characters "€"},
 "ľ" {:codepoints [318], :characters "ľ"},
 "↙" {:codepoints [8601], :characters "↙"},
 "≤" {:codepoints [8804], :characters "≤"},
 "𝒞" {:codepoints [119966], :characters "𝒞"},
 "⤧" {:codepoints [10535], :characters "⤧"},
 "Ж" {:codepoints [1046], :characters "Ж"},
 "©" {:codepoints [169], :characters "©"},
 "∖" {:codepoints [8726], :characters "∖"},
 "≂" {:codepoints [8770], :characters "≂"},
 "✠" {:codepoints [10016], :characters "✠"},
 "Ρ" {:codepoints [929], :characters "Ρ"},
 "𝔬" {:codepoints [120108], :characters "𝔬"},
 "⟹" {:codepoints [10233], :characters "⟹"},
 "⇌" {:codepoints [8652], :characters "⇌"},
 "⩻" {:codepoints [10875], :characters "⩻"},
 "≔" {:codepoints [8788], :characters "≔"},
 "ρ" {:codepoints [961], :characters "ρ"},
 "𝕔" {:codepoints [120148], :characters "𝕔"},
 "∤" {:codepoints [8740], :characters "∤"},
 "℩" {:codepoints [8489], :characters "℩"},
 "≥" {:codepoints [8805], :characters "≥"},
 "Ö" {:codepoints [214], :characters "Ö"},
 "⋣" {:codepoints [8931], :characters "⋣"},
 "╗" {:codepoints [9559], :characters "╗"},
 "Ј" {:codepoints [1032], :characters "Ј"},
 "𝔧" {:codepoints [120103], :characters "𝔧"},
 "≸" {:codepoints [8824], :characters "≸"},
 "⊭" {:codepoints [8877], :characters "⊭"},
 "ℝ" {:codepoints [8477], :characters "ℝ"},
 "⇂" {:codepoints [8642], :characters "⇂"},
 "⋆" {:codepoints [8902], :characters "⋆"},
 "∈" {:codepoints [8712], :characters "∈"},
 "&LeftVectorBar};" {:codepoints [10578], :characters "⥒"},
 "┘" {:codepoints [9496], :characters "┘"},
 "̑" {:codepoints [785], :characters "̑"},
 "\" {:codepoints [92], :characters "\\"},
 "≳" {:codepoints [8819], :characters "≳"},
 "▾" {:codepoints [9662], :characters "▾"},
 "≎" {:codepoints [8782], :characters "≎"},
 "⇛" {:codepoints [8667], :characters "⇛"},
 "⊨" {:codepoints [8872], :characters "⊨"},
 "≧" {:codepoints [8807], :characters "≧"},
 "Ġ" {:codepoints [288], :characters "Ġ"},
 "⊋︀" {:codepoints [8843 65024], :characters "⊋︀"},
 "𝒻" {:codepoints [119995], :characters "𝒻"},
 "⍼" {:codepoints [9084], :characters "⍼"},
 "‖" {:codepoints [8214], :characters "‖"},
 "&uuml" {:codepoints [252], :characters "ü"},
 "⥰" {:codepoints [10608], :characters "⥰"},
 "±" {:codepoints [177], :characters "±"},
 "∁" {:codepoints [8705], :characters "∁"},
 "⪷" {:codepoints [10935], :characters "⪷"},
 "β" {:codepoints [946], :characters "β"},
 "↑" {:codepoints [8593], :characters "↑"},
 "⋋" {:codepoints [8907], :characters "⋋"},
 "Ă" {:codepoints [258], :characters "Ă"},
 "@" {:codepoints [64], :characters "@"},
 "⋧" {:codepoints [8935], :characters "⋧"},
 "”" {:codepoints [8221], :characters "”"},
 "≼" {:codepoints [8828], :characters "≼"},
 "ˇ" {:codepoints [711], :characters "ˇ"},
 "⅝" {:codepoints [8541], :characters "⅝"},
 "›" {:codepoints [8250], :characters "›"},
 "▮" {:codepoints [9646], :characters "▮"},
 "⦏" {:codepoints [10639], :characters "⦏"},
 "Ⓢ" {:codepoints [9416], :characters "Ⓢ"},
 "&ordm" {:codepoints [186], :characters "º"},
 "𝒵" {:codepoints [119989], :characters "𝒵"},
 "⊗" {:codepoints [8855], :characters "⊗"},
 "⊂⃒" {:codepoints [8834 8402], :characters "⊂⃒"},
 "↬" {:codepoints [8620], :characters "↬"},
 "⇑" {:codepoints [8657], :characters "⇑"},
 "⫰" {:codepoints [10992], :characters "⫰"},
 "&pound" {:codepoints [163], :characters "£"},
 "𝒟" {:codepoints [119967], :characters "𝒟"},
 "”" {:codepoints [8221], :characters "”"},
 "Â" {:codepoints [194], :characters "Â"},
 "∳" {:codepoints [8755], :characters "∳"},
 "∾̳" {:codepoints [8766 819], :characters "∾̳"},
 "∾" {:codepoints [8766], :characters "∾"},
 "⌆" {:codepoints [8966], :characters "⌆"},
 "⧜" {:codepoints [10716], :characters "⧜"},
 "⪘" {:codepoints [10904], :characters "⪘"},
 "∂" {:codepoints [8706], :characters "∂"},
 "λ" {:codepoints [955], :characters "λ"},
 "⟉" {:codepoints [10185], :characters "⟉"},
 "ⅅ" {:codepoints [8517], :characters "ⅅ"},
 "▾" {:codepoints [9662], :characters "▾"},
 "Ł" {:codepoints [321], :characters "Ł"},
 "Ş" {:codepoints [350], :characters "Ş"},
 "𝕫" {:codepoints [120171], :characters "𝕫"},
 "≫" {:codepoints [8811], :characters "≫"},
 "♯" {:codepoints [9839], :characters "♯"},
 "⟧" {:codepoints [10215], :characters "⟧"},
 " " {:codepoints [160], :characters " "},
 "ℑ" {:codepoints [8465], :characters "ℑ"},
 "⥮" {:codepoints [10606], :characters "⥮"},
 "É" {:codepoints [201], :characters "É"},
 "𝔘" {:codepoints [120088], :characters "𝔘"},
 "˜" {:codepoints [732], :characters "˜"},
 "ϑ" {:codepoints [977], :characters "ϑ"},
 "⪸" {:codepoints [10936], :characters "⪸"},
 "Á" {:codepoints [193], :characters "Á"},
 "∐" {:codepoints [8720], :characters "∐"},
 "“" {:codepoints [8220], :characters "“"},
 "𝒶" {:codepoints [119990], :characters "𝒶"},
 "⊥" {:codepoints [8869], :characters "⊥"},
 "⋀" {:codepoints [8896], :characters "⋀"},
 "Υ" {:codepoints [933], :characters "Υ"},
 "⩃" {:codepoints [10819], :characters "⩃"},
 "⥮" {:codepoints [10606], :characters "⥮"},
 "╟" {:codepoints [9567], :characters "╟"},
 "⊽" {:codepoints [8893], :characters "⊽"},
 "⌢" {:codepoints [8994], :characters "⌢"},
 "⋪" {:codepoints [8938], :characters "⋪"},
 "⁄" {:codepoints [8260], :characters "⁄"},
 "⩷" {:codepoints [10871], :characters "⩷"},
 "𝕞" {:codepoints [120158], :characters "𝕞"},
 "↔" {:codepoints [8596], :characters "↔"},
 "и" {:codepoints [1080], :characters "и"},
 "⇎" {:codepoints [8654], :characters "⇎"},
 "⇔" {:codepoints [8660], :characters "⇔"},
 "ff" {:codepoints [64256], :characters "ff"},
 "∤" {:codepoints [8740], :characters "∤"},
 "⫁" {:codepoints [10945], :characters "⫁"},
 "ķ" {:codepoints [311], :characters "ķ"},
 "⥼" {:codepoints [10620], :characters "⥼"},
 "ℨ" {:codepoints [8488], :characters "ℨ"},
 "»" {:codepoints [187], :characters "»"},
 "⥜" {:codepoints [10588], :characters "⥜"},
 "ŝ" {:codepoints [349], :characters "ŝ"},
 "≽" {:codepoints [8829], :characters "≽"},
 "𝓊" {:codepoints [120010], :characters "𝓊"},
 "а" {:codepoints [1072], :characters "а"},
 "⫌" {:codepoints [10956], :characters "⫌"},
 "𝔵" {:codepoints [120117], :characters "𝔵"},
 "˝" {:codepoints [733], :characters "˝"},
 "è" {:codepoints [232], :characters "è"},
 "⇥" {:codepoints [8677], :characters "⇥"},
 "≈" {:codepoints [8776], :characters "≈"},
 "∏" {:codepoints [8719], :characters "∏"},
 "⇋" {:codepoints [8651], :characters "⇋"},
 "⟬" {:codepoints [10220], :characters "⟬"},
 "ð" {:codepoints [240], :characters "ð"},
 "⪖" {:codepoints [10902], :characters "⪖"},
 "¡" {:codepoints [161], :characters "¡"},
 "⪞" {:codepoints [10910], :characters "⪞"},
 "⅕" {:codepoints [8533], :characters "⅕"},
 "Ź" {:codepoints [377], :characters "Ź"},
 "⌅" {:codepoints [8965], :characters "⌅"},
 "⤚" {:codepoints [10522], :characters "⤚"},
 "⪓" {:codepoints [10899], :characters "⪓"},
 "⁡" {:codepoints [8289], :characters "⁡"},
 "&Uuml" {:codepoints [220], :characters "Ü"},
 "⇊" {:codepoints [8650], :characters "⇊"},
 "⨼" {:codepoints [10812], :characters "⨼"},
 "𝕚" {:codepoints [120154], :characters "𝕚"},
 "⌝" {:codepoints [8989], :characters "⌝"},
 "ŋ" {:codepoints [331], :characters "ŋ"},
 "ē" {:codepoints [275], :characters "ē"},
 "⃛" {:codepoints [8411], :characters "⃛"},
 "ℊ" {:codepoints [8458], :characters "ℊ"},
 "∧" {:codepoints [8743], :characters "∧"},
 "⪺" {:codepoints [10938], :characters "⪺"},
 "⩪" {:codepoints [10858], :characters "⩪"},
 "Π" {:codepoints [928], :characters "Π"},
 "⊃" {:codepoints [8835], :characters "⊃"},
 "⤩" {:codepoints [10537], :characters "⤩"},
 "⩳" {:codepoints [10867], :characters "⩳"},
 "┴" {:codepoints [9524], :characters "┴"},
 "Ĺ" {:codepoints [313], :characters "Ĺ"},
 "ℨ" {:codepoints [8488], :characters "ℨ"},
 "˚" {:codepoints [730], :characters "˚"},
 "Л" {:codepoints [1051], :characters "Л"},
 "𝕦" {:codepoints [120166], :characters "𝕦"},
 "С" {:codepoints [1057], :characters "С"},
 "→" {:codepoints [8594], :characters "→"},
 "≍" {:codepoints [8781], :characters "≍"},
 "∘" {:codepoints [8728], :characters "∘"},
 "≷" {:codepoints [8823], :characters "≷"},
 "∲" {:codepoints [8754], :characters "∲"},
 "⋦" {:codepoints [8934], :characters "⋦"},
 "∽̱" {:codepoints [8765 817], :characters "∽̱"},
 "≹" {:codepoints [8825], :characters "≹"},
 "⁠" {:codepoints [8288], :characters "⁠"},
 "𝕡" {:codepoints [120161], :characters "𝕡"},
 "Ã" {:codepoints [195], :characters "Ã"},
 "Д" {:codepoints [1044], :characters "Д"},
 "‍" {:codepoints [8205], :characters "‍"},
 "Χ" {:codepoints [935], :characters "Χ"},
 "𝒢" {:codepoints [119970], :characters "𝒢"},
 "&Ouml" {:codepoints [214], :characters "Ö"},
 "∫" {:codepoints [8747], :characters "∫"},
 "&Uacute" {:codepoints [218], :characters "Ú"},
 "⦚" {:codepoints [10650], :characters "⦚"},
 "⪀" {:codepoints [10880], :characters "⪀"},
 "↓" {:codepoints [8595], :characters "↓"},
 "∷" {:codepoints [8759], :characters "∷"},
 "ş" {:codepoints [351], :characters "ş"},
 "‐" {:codepoints [8208], :characters "‐"},
 "⟧" {:codepoints [10215], :characters "⟧"},
 "К" {:codepoints [1050], :characters "К"},
 "𝕒" {:codepoints [120146], :characters "𝕒"},
 "⥬" {:codepoints [10604], :characters "⥬"},
 "⦑" {:codepoints [10641], :characters "⦑"},
 "⦩" {:codepoints [10665], :characters "⦩"},
 "𝔽" {:codepoints [120125], :characters "𝔽"},
 "Ⓢ" {:codepoints [9416], :characters "Ⓢ"},
 "⨗" {:codepoints [10775], :characters "⨗"},
 "↡" {:codepoints [8609], :characters "↡"},
 "‡" {:codepoints [8225], :characters "‡"},
 "&CounterClockwiseContourIntegral;"
 {"codepoints" [8755], :characters "∳"},
 "┐" {:codepoints [9488], :characters "┐"},
 "∋" {:codepoints [8715], :characters "∋"},
 "↤" {:codepoints [8612], :characters "↤"},
 "ı" {:codepoints [305], :characters "ı"},
 "⊈" {:codepoints [8840], :characters "⊈"},
 "╦" {:codepoints [9574], :characters "╦"},
 "∽" {:codepoints [8765], :characters "∽"},
 "&nbsp" {:codepoints [160], :characters " "},
 "⤐" {:codepoints [10512], :characters "⤐"},
 "⅞" {:codepoints [8542], :characters "⅞"},
 "}" {:codepoints [125], :characters "}"},
 "⇤" {:codepoints [8676], :characters "⇤"},
 "⨹" {:codepoints [10809], :characters "⨹"},
 "ⅅ" {:codepoints [8517], :characters "ⅅ"},
 "⩗" {:codepoints [10839], :characters "⩗"},
 "ℑ" {:codepoints [8465], :characters "ℑ"},
 "⇽" {:codepoints [8701], :characters "⇽"},
 "∤" {:codepoints [8740], :characters "∤"},
 "≀" {:codepoints [8768], :characters "≀"},
 "&oacute" {:codepoints [243], :characters "ó"},
 "↑" {:codepoints [8593], :characters "↑"},
 "↖" {:codepoints [8598], :characters "↖"},
 "&uacute" {:codepoints [250], :characters "ú"},
 "♮" {:codepoints [9838], :characters "♮"},
 "⪯" {:codepoints [10927], :characters "⪯"},
 "⏞" {:codepoints [9182], :characters "⏞"},
 "ů" {:codepoints [367], :characters "ů"},
 "σ" {:codepoints [963], :characters "σ"},
 "⊁" {:codepoints [8833], :characters "⊁"},
 "⊥" {:codepoints [8869], :characters "⊥"},
 "⎴" {:codepoints [9140], :characters "⎴"},
 "$" {:codepoints [36], :characters "$"},
 "}" {:codepoints [125], :characters "}"},
 "⩓" {:codepoints [10835], :characters "⩓"},
 "⨔" {:codepoints [10772], :characters "⨔"},
 "⇖" {:codepoints [8662], :characters "⇖"},
 "★" {:codepoints [9733], :characters "★"},
 "⋶" {:codepoints [8950], :characters "⋶"},
 "⨆" {:codepoints [10758], :characters "⨆"},
 "fj" {:codepoints [102 106], :characters "fj"},
 "⤍" {:codepoints [10509], :characters "⤍"},
 "≬" {:codepoints [8812], :characters "≬"},
 "Č" {:codepoints [268], :characters "Č"},
 "&lt" {:codepoints [60], :characters "<"},
 "&Scirc;" {:codepoints [348], :characters "Ŝ"},
 "&frac34" {:codepoints [190], :characters "¾"},
 "&Dashv;" {:codepoints [10980], :characters "⫤"},
 "&lozf;" {:codepoints [10731], :characters "⧫"},
 "&ngeq;" {:codepoints [8817], :characters "≱"},
 "&PlusMinus;" {:codepoints [177], :characters "±"},
 "&nlt;" {:codepoints [8814], :characters "≮"},
 "&lmoustache;" {:codepoints [9136], :characters "⎰"},
 "&sdotb;" {:codepoints [8865], :characters "⊡"},
 "&Xscr;" {:codepoints [119987], :characters "𝒳"},
 "&CircleDot;" {:codepoints [8857], :characters "⊙"},
 "&Succeeds;" {:codepoints [8827], :characters "≻"},
 "&ffllig;" {:codepoints [64260], :characters "ffl"},
 "&iocy;" {:codepoints [1105], :characters "ё"},
 "&hbar;" {:codepoints [8463], :characters "ℏ"},
 "&dzcy;" {:codepoints [1119], :characters "џ"},
 "&nvinfin;" {:codepoints [10718], :characters "⧞"},
 "&brvbar" {:codepoints [166], :characters "¦"},
 "&rightharpoondown;" {:codepoints [8641], :characters "⇁"},
 "&frac13;" {:codepoints [8531], :characters "⅓"},
 "&wedgeq;" {:codepoints [8793], :characters "≙"},
 "&cuesc;" {:codepoints [8927], :characters "⋟"},
 "&Jscr;" {:codepoints [119973], :characters "𝒥"},
 "&sqcup;" {:codepoints [8852], :characters "⊔"},
 "&iquest;" {:codepoints [191], :characters "¿"},
 "&circledcirc;" {:codepoints [8858], :characters "⊚"},
 "&gla;" {:codepoints [10917], :characters "⪥"},
 "&Cap;" {:codepoints [8914], :characters "⋒"},
 "&Ucy;" {:codepoints [1059], :characters "У"},
 "&lates;" {:codepoints [10925 65024], :characters "⪭︀"},
 "&Auml;" {:codepoints [196], :characters "Ä"},
 "&uHar;" {:codepoints [10595], :characters "⥣"},
 "&nexist;" {:codepoints [8708], :characters "∄"},
 "&delta;" {:codepoints [948], :characters "δ"},
 "&DoubleDownArrow;" {:codepoints [8659], :characters "⇓"},
 "&csube;" {:codepoints [10961], :characters "⫑"},
 "&vsubnE;" {:codepoints [10955 65024], :characters "⫋︀"},
 "&NJcy;" {:codepoints [1034], :characters "Њ"},
 "&nbump;" {:codepoints [8782 824], :characters "≎̸"},
 "&curren;" {:codepoints [164], :characters "¤"},
 "&subedot;" {:codepoints [10947], :characters "⫃"},
 "&bsolhsub;" {:codepoints [10184], :characters "⟈"},
 "&boxvh;" {:codepoints [9532], :characters "┼"},
 "&NotSquareSuperset;" {:codepoints [8848 824], :characters "⊐̸"},
 "&nsube;" {:codepoints [8840], :characters "⊈"},
 "&boxDR;" {:codepoints [9556], :characters "╔"},
 "&clubsuit;" {:codepoints [9827], :characters "♣"},
 "&lacute;" {:codepoints [314], :characters "ĺ"},
 "&rarrsim;" {:codepoints [10612], :characters "⥴"},
 "&iacute;" {:codepoints [237], :characters "í"},
 "&copysr;" {:codepoints [8471], :characters "℗"},
 "&simplus;" {:codepoints [10788], :characters "⨤"},
 "&sqsubseteq;" {:codepoints [8849], :characters "⊑"},
 "&imped;" {:codepoints [437], :characters "Ƶ"},
 "&lE;" {:codepoints [8806], :characters "≦"},
 "&Because;" {:codepoints [8757], :characters "∵"},
 "&iscr;" {:codepoints [119998], :characters "𝒾"},
 "&succsim;" {:codepoints [8831], :characters "≿"},
 "&Cconint;" {:codepoints [8752], :characters "∰"},
 "&UnderBrace;" {:codepoints [9183], :characters "⏟"},
 "&bumpe;" {:codepoints [8783], :characters "≏"},
 "&NotEqual;" {:codepoints [8800], :characters "≠"},
 "&odot;" {:codepoints [8857], :characters "⊙"},
 "&mcy;" {:codepoints [1084], :characters "м"},
 "&eparsl;" {:codepoints [10723], :characters "⧣"},
 "&capdot;" {:codepoints [10816], :characters "⩀"},
 "&dtri;" {:codepoints [9663], :characters "▿"},
 "&Yuml;" {:codepoints [376], :characters "Ÿ"},
 "&imacr;" {:codepoints [299], :characters "ī"},
 "&Updownarrow;" {:codepoints [8661], :characters "⇕"},
 "&dagger;" {:codepoints [8224], :characters "†"},
 "&Im;" {:codepoints [8465], :characters "ℑ"},
 "&triangledown;" {:codepoints [9663], :characters "▿"},
 "&oline;" {:codepoints [8254], :characters "‾"},
 "&rdsh;" {:codepoints [8627], :characters "↳"},
 "&el;" {:codepoints [10905], :characters "⪙"},
 "&Hopf;" {:codepoints [8461], :characters "ℍ"},
 "&lsim;" {:codepoints [8818], :characters "≲"},
 "&boxvr;" {:codepoints [9500], :characters "├"},
 "&Gamma;" {:codepoints [915], :characters "Γ"},
 "&nbumpe;" {:codepoints [8783 824], :characters "≏̸"},
 "&NotSuperset;" {:codepoints [8835 8402], :characters "⊃⃒"},
 "&GT;" {:codepoints [62], :characters ">"},
 "&Gopf;" {:codepoints [120126], :characters "𝔾"},
 "&rarrbfs;" {:codepoints [10528], :characters "⤠"},
 "&LessSlantEqual;" {:codepoints [10877], :characters "⩽"},
 "&eta;" {:codepoints [951], :characters "η"},
 "&LeftArrow;" {:codepoints [8592], :characters "←"},
 "&bigtriangledown;" {:codepoints [9661], :characters "▽"},
 "&Lcaron;" {:codepoints [317], :characters "Ľ"},
 "&Vfr;" {:codepoints [120089], :characters "𝔙"},
 "&lopf;" {:codepoints [120157], :characters "𝕝"},
 "&squarf;" {:codepoints [9642], :characters "▪"},
 "&lang;" {:codepoints [10216], :characters "⟨"},
 "&cfr;" {:codepoints [120096], :characters "𝔠"},
 "&lesdot;" {:codepoints [10879], :characters "⩿"},
 "&euml" {:codepoints [235], :characters "ë"},
 "&prnsim;" {:codepoints [8936], :characters "⋨"},
 "&ncedil;" {:codepoints [326], :characters "ņ"},
 "&roang;" {:codepoints [10221], :characters "⟭"},
 "&NewLine;" {:codepoints [10], :characters "\n"},
 "&DoubleVerticalBar;" {:codepoints [8741], :characters "∥"},
 "&NegativeVeryThinSpace;" {:codepoints [8203], :characters "​"},
 "&RightUpVectorBar;" {:codepoints [10580], :characters "⥔"},
 "&lEg;" {:codepoints [10891], :characters "⪋"},
 "&emsp;" {:codepoints [8195], :characters " "},
 "&plustwo;" {:codepoints [10791], :characters "⨧"},
 "&rightsquigarrow;" {:codepoints [8605], :characters "↝"},
 "&sup1;" {:codepoints [185], :characters "¹"},
 "&gcy;" {:codepoints [1075], :characters "г"},
 "&LeftDownVector;" {:codepoints [8643], :characters "⇃"},
 "&num;" {:codepoints [35], :characters "#"},
 "&NestedLessLess;" {:codepoints [8810], :characters "≪"},
 "&FilledVerySmallSquare;" {:codepoints [9642], :characters "▪"},
 "&rsquo;" {:codepoints [8217], :characters "’"},
 "&Imacr;" {:codepoints [298], :characters "Ī"},
 "&simrarr;" {:codepoints [10610], :characters "⥲"},
 "&Cfr;" {:codepoints [8493], :characters "ℭ"},
 "&DiacriticalDot;" {:codepoints [729], :characters "˙"},
 "&Gfr;" {:codepoints [120074], :characters "𝔊"},
 "&minusd;" {:codepoints [8760], :characters "∸"},
 "&elsdot;" {:codepoints [10903], :characters "⪗"},
 "&Ecaron;" {:codepoints [282], :characters "Ě"},
 "&rightrightarrows;" {:codepoints [8649], :characters "⇉"},
 "&LongRightArrow;" {:codepoints [10230], :characters "⟶"},
 "&csupe;" {:codepoints [10962], :characters "⫒"},
 "&ggg;" {:codepoints [8921], :characters "⋙"},
 "&frac14;" {:codepoints [188], :characters "¼"},
 "&subdot;" {:codepoints [10941], :characters "⪽"},
 "&boxdR;" {:codepoints [9554], :characters "╒"},
 "&frac56;" {:codepoints [8538], :characters "⅚"},
 "&odash;" {:codepoints [8861], :characters "⊝"},
 "&lhblk;" {:codepoints [9604], :characters "▄"},
 "&flat;" {:codepoints [9837], :characters "♭"},
 "&zigrarr;" {:codepoints [8669], :characters "⇝"},
 "&bkarow;" {:codepoints [10509], :characters "⤍"},
 "&becaus;" {:codepoints [8757], :characters "∵"},
 "&nu;" {:codepoints [957], :characters "ν"},
 "&zhcy;" {:codepoints [1078], :characters "ж"},
 "&vsupnE;" {:codepoints [10956 65024], :characters "⫌︀"},
 "&Xfr;" {:codepoints [120091], :characters "𝔛"},
 "&Dagger;" {:codepoints [8225], :characters "‡"},
 "&glj;" {:codepoints [10916], :characters "⪤"},
 "&LT;" {:codepoints [60], :characters "<"},
 "&nLeftarrow;" {:codepoints [8653], :characters "⇍"},
 "&gvertneqq;" {:codepoints [8809 65024], :characters "≩︀"},
 "&shortmid;" {:codepoints [8739], :characters "∣"},
 "&ShortDownArrow;" {:codepoints [8595], :characters "↓"},
 "&swarrow;" {:codepoints [8601], :characters "↙"},
 "&hercon;" {:codepoints [8889], :characters "⊹"},
 "&Uscr;" {:codepoints [119984], :characters "𝒰"},
 "&supe;" {:codepoints [8839], :characters "⊇"},
 "&dscr;" {:codepoints [119993], :characters "𝒹"},
 "&mid;" {:codepoints [8739], :characters "∣"},
 "&check;" {:codepoints [10003], :characters "✓"},
 "&llhard;" {:codepoints [10603], :characters "⥫"},
 "&RuleDelayed;" {:codepoints [10740], :characters "⧴"},
 "&ngeqslant;" {:codepoints [10878 824], :characters "⩾̸"},
 "&bnot;" {:codepoints [8976], :characters "⌐"},
 "&dscy;" {:codepoints [1109], :characters "ѕ"},
 "&eplus;" {:codepoints [10865], :characters "⩱"},
 "&NotGreaterSlantEqual;" {:codepoints [10878 824], :characters "⩾̸"},
 "&GT" {:codepoints [62], :characters ">"},
 "&UpDownArrow;" {:codepoints [8597], :characters "↕"},
 "&empty;" {:codepoints [8709], :characters "∅"},
 "&diam;" {:codepoints [8900], :characters "⋄"},
 "&itilde;" {:codepoints [297], :characters "ĩ"},
 "&diams;" {:codepoints [9830], :characters "♦"},
 "&gtcir;" {:codepoints [10874], :characters "⩺"},
 "&xwedge;" {:codepoints [8896], :characters "⋀"},
 "&siml;" {:codepoints [10909], :characters "⪝"},
 "&prnE;" {:codepoints [10933], :characters "⪵"},
 "&LeftAngleBracket;" {:codepoints [10216], :characters "⟨"},
 "&thickapprox;" {:codepoints [8776], :characters "≈"},
 "&smeparsl;" {:codepoints [10724], :characters "⧤"},
 "&Nopf;" {:codepoints [8469], :characters "ℕ"},
 "&hybull;" {:codepoints [8259], :characters "⁃"},
 "&chi;" {:codepoints [967], :characters "χ"},
 "&nspar;" {:codepoints [8742], :characters "∦"},
 "&nvrtrie;" {:codepoints [8885 8402], :characters "⊵⃒"},
 "&Diamond;" {:codepoints [8900], :characters "⋄"},
 "&nsupe;" {:codepoints [8841], :characters "⊉"},
 "&Tcy;" {:codepoints [1058], :characters "Т"},
 "&egrave" {:codepoints [232], :characters "è"},
 "&ugrave" {:codepoints [249], :characters "ù"},
 "&dotplus;" {:codepoints [8724], :characters "∔"},
 "&gesles;" {:codepoints [10900], :characters "⪔"},
 "&ReverseElement;" {:codepoints [8715], :characters "∋"},
 "&operp;" {:codepoints [10681], :characters "⦹"},
 "&zcy;" {:codepoints [1079], :characters "з"},
 "&Nfr;" {:codepoints [120081], :characters "𝔑"},
 "&malt;" {:codepoints [10016], :characters "✠"},
 "&szlig" {:codepoints [223], :characters "ß"},
 "&lparlt;" {:codepoints [10643], :characters "⦓"},
 "&CircleTimes;" {:codepoints [8855], :characters "⊗"},
 "&searhk;" {:codepoints [10533], :characters "⤥"},
 "&sqsup;" {:codepoints [8848], :characters "⊐"},
 "&TildeFullEqual;" {:codepoints [8773], :characters "≅"},
 "&xuplus;" {:codepoints [10756], :characters "⨄"},
 "&boxVL;" {:codepoints [9571], :characters "╣"},
 "&DownRightVector;" {:codepoints [8641], :characters "⇁"},
 "&verbar;" {:codepoints [124], :characters "|"},
 "&plusdo;" {:codepoints [8724], :characters "∔"},
 "&NotSquareSupersetEqual;" {:codepoints [8931], :characters "⋣"},
 "&topbot;" {:codepoints [9014], :characters "⌶"},
 "&ldrdhar;" {:codepoints [10599], :characters "⥧"},
 "&TildeTilde;" {:codepoints [8776], :characters "≈"},
 "&Larr;" {:codepoints [8606], :characters "↞"},
 "&Iota;" {:codepoints [921], :characters "Ι"},
 "&backcong;" {:codepoints [8780], :characters "≌"},
 "&quaternions;" {:codepoints [8461], :characters "ℍ"},
 "&Kopf;" {:codepoints [120130], :characters "𝕂"},
 "&rightleftharpoons;" {:codepoints [8652], :characters "⇌"},
 "&dlcorn;" {:codepoints [8990], :characters "⌞"},
 "&lharul;" {:codepoints [10602], :characters "⥪"},
 "&tbrk;" {:codepoints [9140], :characters "⎴"},
 "&ContourIntegral;" {:codepoints [8750], :characters "∮"},
 "&Jcirc;" {:codepoints [308], :characters "Ĵ"},
 "&abreve;" {:codepoints [259], :characters "ă"},
 "&plusmn" {:codepoints [177], :characters "±"},
 "&perp;" {:codepoints [8869], :characters "⊥"},
 "&odsold;" {:codepoints [10684], :characters "⦼"},
 "&boxUl;" {:codepoints [9564], :characters "╜"},
 "&upsi;" {:codepoints [965], :characters "υ"},
 "&searr;" {:codepoints [8600], :characters "↘"},
 "&iiint;" {:codepoints [8749], :characters "∭"},
 "&VerticalTilde;" {:codepoints [8768], :characters "≀"},
 "&eqslantgtr;" {:codepoints [10902], :characters "⪖"},
 "&vcy;" {:codepoints [1074], :characters "в"},
 "&lesseqgtr;" {:codepoints [8922], :characters "⋚"},
 "&LowerRightArrow;" {:codepoints [8600], :characters "↘"},
 "&ultri;" {:codepoints [9720], :characters "◸"},
 "&gesl;" {:codepoints [8923 65024], :characters "⋛︀"},
 "&nleqslant;" {:codepoints [10877 824], :characters "⩽̸"},
 "&UnionPlus;" {:codepoints [8846], :characters "⊎"},
 "&lat;" {:codepoints [10923], :characters "⪫"},
 "&phone;" {:codepoints [9742], :characters "☎"},
 "&therefore;" {:codepoints [8756], :characters "∴"},
 "&DoubleLeftArrow;" {:codepoints [8656], :characters "⇐"},
 "&nhpar;" {:codepoints [10994], :characters "⫲"},
 "&nearhk;" {:codepoints [10532], :characters "⤤"},
 "&LessGreater;" {:codepoints [8822], :characters "≶"},
 "&RightTriangle;" {:codepoints [8883], :characters "⊳"},
 "&Psi;" {:codepoints [936], :characters "Ψ"},
 "&Ncy;" {:codepoints [1053], :characters "Н"},
 "&cupbrcap;" {:codepoints [10824], :characters "⩈"},
 "&nrtri;" {:codepoints [8939], :characters "⋫"},
 "&asymp;" {:codepoints [8776], :characters "≈"},
 "&bigodot;" {:codepoints [10752], :characters "⨀"},
 "&and;" {:codepoints [8743], :characters "∧"},
 "&PrecedesEqual;" {:codepoints [10927], :characters "⪯"},
 "&rharu;" {:codepoints [8640], :characters "⇀"},
 "&rarrhk;" {:codepoints [8618], :characters "↪"},
 "&nleftrightarrow;" {:codepoints [8622], :characters "↮"},
 "&lessgtr;" {:codepoints [8822], :characters "≶"},
 "&boxminus;" {:codepoints [8863], :characters "⊟"},
 "&ltrie;" {:codepoints [8884], :characters "⊴"},
 "&szlig;" {:codepoints [223], :characters "ß"},
 "&rhard;" {:codepoints [8641], :characters "⇁"},
 "&Lopf;" {:codepoints [120131], :characters "𝕃"},
 "&larrbfs;" {:codepoints [10527], :characters "⤟"},
 "&vBarv;" {:codepoints [10985], :characters "⫩"},
 "&ruluhar;" {:codepoints [10600], :characters "⥨"},
 "&lrtri;" {:codepoints [8895], :characters "⊿"},
 "&circlearrowright;" {:codepoints [8635], :characters "↻"},
 "&midast;" {:codepoints [42], :characters "*"},
 "&iiiint;" {:codepoints [10764], :characters "⨌"},
 "&rdquor;" {:codepoints [8221], :characters "”"},
 "&GreaterLess;" {:codepoints [8823], :characters "≷"},
 "&varsupsetneqq;" {:codepoints [10956 65024], :characters "⫌︀"},
 "&nrarrc;" {:codepoints [10547 824], :characters "⤳̸"},
 "&isins;" {:codepoints [8948], :characters "⋴"},
 "&parallel;" {:codepoints [8741], :characters "∥"},
 "&triangle;" {:codepoints [9653], :characters "▵"},
 "&rbrkslu;" {:codepoints [10640], :characters "⦐"},
 "&harrw;" {:codepoints [8621], :characters "↭"},
 "&RightTee;" {:codepoints [8866], :characters "⊢"},
 "&thetasym;" {:codepoints [977], :characters "ϑ"},
 "&Igrave;" {:codepoints [204], :characters "Ì"},
 "&sqcap;" {:codepoints [8851], :characters "⊓"},
 "&napos;" {:codepoints [329], :characters "ʼn"},
 "&sscr;" {:codepoints [120008], :characters "𝓈"},
 "&late;" {:codepoints [10925], :characters "⪭"},
 "&equivDD;" {:codepoints [10872], :characters "⩸"},
 "&varpropto;" {:codepoints [8733], :characters "∝"},
 "&orarr;" {:codepoints [8635], :characters "↻"},
 "&ssetmn;" {:codepoints [8726], :characters "∖"},
 "&capand;" {:codepoints [10820], :characters "⩄"},
 "&larrfs;" {:codepoints [10525], :characters "⤝"},
 "&rx;" {:codepoints [8478], :characters "℞"},
 "&gtdot;" {:codepoints [8919], :characters "⋗"},
 "&ngsim;" {:codepoints [8821], :characters "≵"},
 "&NotGreaterTilde;" {:codepoints [8821], :characters "≵"},
 "&telrec;" {:codepoints [8981], :characters "⌕"},
 "&Lambda;" {:codepoints [923], :characters "Λ"},
 "&nle;" {:codepoints [8816], :characters "≰"},
 "&nlE;" {:codepoints [8806 824], :characters "≦̸"},
 "&sdot;" {:codepoints [8901], :characters "⋅"},
 "&ucirc;" {:codepoints [251], :characters "û"},
 "&ThickSpace;" {:codepoints [8287 8202], :characters "  "},
 "&planck;" {:codepoints [8463], :characters "ℏ"},
 "&cir;" {:codepoints [9675], :characters "○"},
 "&mscr;" {:codepoints [120002], :characters "𝓂"},
 "&nRightarrow;" {:codepoints [8655], :characters "⇏"},
 "&RightDownTeeVector;" {:codepoints [10589], :characters "⥝"},
 "&Rscr;" {:codepoints [8475], :characters "ℛ"},
 "&NotLess;" {:codepoints [8814], :characters "≮"},
 "&divideontimes;" {:codepoints [8903], :characters "⋇"},
 "&subsup;" {:codepoints [10963], :characters "⫓"},
 "&NotTildeFullEqual;" {:codepoints [8775], :characters "≇"},
 "&ngtr;" {:codepoints [8815], :characters "≯"},
 "&boxV;" {:codepoints [9553], :characters "║"},
 "&notin;" {:codepoints [8713], :characters "∉"},
 "&boxh;" {:codepoints [9472], :characters "─"},
 "&SucceedsTilde;" {:codepoints [8831], :characters "≿"},
 "&Superset;" {:codepoints [8835], :characters "⊃"},
 "&MinusPlus;" {:codepoints [8723], :characters "∓"},
 "&ctdot;" {:codepoints [8943], :characters "⋯"},
 "&leftrightsquigarrow;" {:codepoints [8621], :characters "↭"},
 "&elinters;" {:codepoints [9191], :characters "⏧"},
 "&plusdu;" {:codepoints [10789], :characters "⨥"},
 "&vprop;" {:codepoints [8733], :characters "∝"},
 "&Zeta;" {:codepoints [918], :characters "Ζ"},
 "&RightTeeArrow;" {:codepoints [8614], :characters "↦"},
 "&kcy;" {:codepoints [1082], :characters "к"},
 "&Laplacetrf;" {:codepoints [8466], :characters "ℒ"},
 "&nwarrow;" {:codepoints [8598], :characters "↖"},
 "&hairsp;" {:codepoints [8202], :characters " "},
 "&jopf;" {:codepoints [120155], :characters "𝕛"},
 "&not" {:codepoints [172], :characters "¬"},
 "&Gcy;" {:codepoints [1043], :characters "Г"},
 "&vert;" {:codepoints [124], :characters "|"},
 "&mlcp;" {:codepoints [10971], :characters "⫛"},
 "&Aacute" {:codepoints [193], :characters "Á"},
 "&lcy;" {:codepoints [1083], :characters "л"},
 "&Uarrocir;" {:codepoints [10569], :characters "⥉"},
 "&sqsub;" {:codepoints [8847], :characters "⊏"},
 "&nsccue;" {:codepoints [8929], :characters "⋡"},
 "&Uarr;" {:codepoints [8607], :characters "↟"},
 "&ucirc" {:codepoints [251], :characters "û"},
 "&oacute;" {:codepoints [243], :characters "ó"},
 "&wp;" {:codepoints [8472], :characters "℘"},
 "&phmmat;" {:codepoints [8499], :characters "ℳ"},
 "&radic;" {:codepoints [8730], :characters "√"},
 "&bigcap;" {:codepoints [8898], :characters "⋂"},
 "&ApplyFunction;" {:codepoints [8289], :characters "⁡"},
 "&nabla;" {:codepoints [8711], :characters "∇"},
 "&apE;" {:codepoints [10864], :characters "⩰"},
 "&varphi;" {:codepoints [981], :characters "ϕ"},
 "&KJcy;" {:codepoints [1036], :characters "Ќ"},
 "&ordf" {:codepoints [170], :characters "ª"},
 "&atilde;" {:codepoints [227], :characters "ã"},
 "&rhov;" {:codepoints [1009], :characters "ϱ"},
 "&xnis;" {:codepoints [8955], :characters "⋻"},
 "&toea;" {:codepoints [10536], :characters "⤨"},
 "&lessdot;" {:codepoints [8918], :characters "⋖"},
 "&larrsim;" {:codepoints [10611], :characters "⥳"},
 "&gtrless;" {:codepoints [8823], :characters "≷"},
 "&ograve;" {:codepoints [242], :characters "ò"},
 "&Implies;" {:codepoints [8658], :characters "⇒"},
 "&succneqq;" {:codepoints [10934], :characters "⪶"},
 "&Udblac;" {:codepoints [368], :characters "Ű"},
 "&esim;" {:codepoints [8770], :characters "≂"},
 "&weierp;" {:codepoints [8472], :characters "℘"},
 "&Ocirc" {:codepoints [212], :characters "Ô"},
 "&TSHcy;" {:codepoints [1035], :characters "Ћ"},
 "&duarr;" {:codepoints [8693], :characters "⇵"},
 "&Lscr;" {:codepoints [8466], :characters "ℒ"},
 "&les;" {:codepoints [10877], :characters "⩽"},
 "&ucy;" {:codepoints [1091], :characters "у"},
 "&lceil;" {:codepoints [8968], :characters "⌈"},
 "&NotTildeTilde;" {:codepoints [8777], :characters "≉"},
 "&naturals;" {:codepoints [8469], :characters "ℕ"},
 "&gnapprox;" {:codepoints [10890], :characters "⪊"},
 "&Dstrok;" {:codepoints [272], :characters "Đ"},
 "&precnapprox;" {:codepoints [10937], :characters "⪹"},
 "&ljcy;" {:codepoints [1113], :characters "љ"},
 "&cupor;" {:codepoints [10821], :characters "⩅"},
 "&rmoustache;" {:codepoints [9137], :characters "⎱"},
 "&xlarr;" {:codepoints [10229], :characters "⟵"},
 "&semi;" {:codepoints [59], :characters ";"},
 "&cup;" {:codepoints [8746], :characters "∪"},
 "&lpar;" {:codepoints [40], :characters "("},
 "&Ubreve;" {:codepoints [364], :characters "Ŭ"},
 "&LeftCeiling;" {:codepoints [8968], :characters "⌈"},
 "&NotSquareSubset;" {:codepoints [8847 824], :characters "⊏̸"},
 "&rightharpoonup;" {:codepoints [8640], :characters "⇀"},
 "&lneq;" {:codepoints [10887], :characters "⪇"},
 "&Gammad;" {:codepoints [988], :characters "Ϝ"},
 "&Wscr;" {:codepoints [119986], :characters "𝒲"},
 "&upharpoonright;" {:codepoints [8638], :characters "↾"},
 "&AMP" {:codepoints [38], :characters "&"},
 "&Icirc;" {:codepoints [206], :characters "Î"},
 "&bigotimes;" {:codepoints [10754], :characters "⨂"},
 "&rsh;" {:codepoints [8625], :characters "↱"},
 "&ngt;" {:codepoints [8815], :characters "≯"},
 "&rcaron;" {:codepoints [345], :characters "ř"},
 "&Tfr;" {:codepoints [120087], :characters "𝔗"},
 "&gesdoto;" {:codepoints [10882], :characters "⪂"},
 "&sdote;" {:codepoints [10854], :characters "⩦"},
 "&dcaron;" {:codepoints [271], :characters "ď"},
 "&forall;" {:codepoints [8704], :characters "∀"},
 "&npreceq;" {:codepoints [10927 824], :characters "⪯̸"},
 "&Sqrt;" {:codepoints [8730], :characters "√"},
 "&ntilde" {:codepoints [241], :characters "ñ"},
 "&xdtri;" {:codepoints [9661], :characters "▽"},
 "&subsetneq;" {:codepoints [8842], :characters "⊊"},
 "&Idot;" {:codepoints [304], :characters "İ"},
 "&Xi;" {:codepoints [926], :characters "Ξ"},
 "&Otilde;" {:codepoints [213], :characters "Õ"},
 "&nsupseteqq;" {:codepoints [10950 824], :characters "⫆̸"},
 "&puncsp;" {:codepoints [8200], :characters " "},
 "&sect;" {:codepoints [167], :characters "§"},
 "&amalg;" {:codepoints [10815], :characters "⨿"},
 "&fallingdotseq;" {:codepoints [8786], :characters "≒"},
 "&Euml" {:codepoints [203], :characters "Ë"},
 "&pluse;" {:codepoints [10866], :characters "⩲"},
 "&ic;" {:codepoints [8291], :characters "⁣"},
 "&NotRightTriangle;" {:codepoints [8939], :characters "⋫"},
 "&real;" {:codepoints [8476], :characters "ℜ"},
 "&tstrok;" {:codepoints [359], :characters "ŧ"},
 "&cacute;" {:codepoints [263], :characters "ć"},
 "&eopf;" {:codepoints [120150], :characters "𝕖"},
 "&nsime;" {:codepoints [8772], :characters "≄"},
 "&eqslantless;" {:codepoints [10901], :characters "⪕"},
 "&VDash;" {:codepoints [8875], :characters "⊫"},
 "&phiv;" {:codepoints [981], :characters "ϕ"},
 "&REG" {:codepoints [174], :characters "®"},
 "&curren" {:codepoints [164], :characters "¤"},
 "&ccaron;" {:codepoints [269], :characters "č"},
 "&dstrok;" {:codepoints [273], :characters "đ"},
 "&longrightarrow;" {:codepoints [10230], :characters "⟶"},
 "&rBarr;" {:codepoints [10511], :characters "⤏"},
 "&Dot;" {:codepoints [168], :characters "¨"},
 "&Lleftarrow;" {:codepoints [8666], :characters "⇚"},
 "&TildeEqual;" {:codepoints [8771], :characters "≃"},
 "&Racute;" {:codepoints [340], :characters "Ŕ"},
 "&ddarr;" {:codepoints [8650], :characters "⇊"},
 "&napid;" {:codepoints [8779 824], :characters "≋̸"},
 "&LongLeftRightArrow;" {:codepoints [10231], :characters "⟷"},
 "&breve;" {:codepoints [728], :characters "˘"},
 "&DownArrow;" {:codepoints [8595], :characters "↓"},
 "&subplus;" {:codepoints [10943], :characters "⪿"},
 "&wr;" {:codepoints [8768], :characters "≀"},
 "&lnE;" {:codepoints [8808], :characters "≨"},
 "&mapsto;" {:codepoints [8614], :characters "↦"},
 "&sext;" {:codepoints [10038], :characters "✶"},
 "&Ucirc;" {:codepoints [219], :characters "Û"},
 "&Qopf;" {:codepoints [8474], :characters "ℚ"},
 "&Oacute" {:codepoints [211], :characters "Ó"},
 "&rrarr;" {:codepoints [8649], :characters "⇉"},
 "&SquareSuperset;" {:codepoints [8848], :characters "⊐"},
 "&mumap;" {:codepoints [8888], :characters "⊸"},
 "&scaron;" {:codepoints [353], :characters "š"},
 "&UpArrowDownArrow;" {:codepoints [8645], :characters "⇅"},
 "&Gt;" {:codepoints [8811], :characters "≫"},
 "&smte;" {:codepoints [10924], :characters "⪬"},
 "&rcy;" {:codepoints [1088], :characters "р"},
 "&Lfr;" {:codepoints [120079], :characters "𝔏"},
 "&ogon;" {:codepoints [731], :characters "˛"},
 "&gtreqqless;" {:codepoints [10892], :characters "⪌"},
 "&circ;" {:codepoints [710], :characters "ˆ"},
 "&blacktriangleright;" {:codepoints [9656], :characters "▸"},
 "&sup3" {:codepoints [179], :characters "³"},
 "&Kcedil;" {:codepoints [310], :characters "Ķ"},
 "&copy;" {:codepoints [169], :characters "©"},
 "&nparsl;" {:codepoints [11005 8421], :characters "⫽⃥"},
 "&nsubseteqq;" {:codepoints [10949 824], :characters "⫅̸"},
 "&Or;" {:codepoints [10836], :characters "⩔"},
 "&circledR;" {:codepoints [174], :characters "®"},
 "&rAtail;" {:codepoints [10524], :characters "⤜"},
 "&prE;" {:codepoints [10931], :characters "⪳"},
 "&daleth;" {:codepoints [8504], :characters "ℸ"},
 "&integers;" {:codepoints [8484], :characters "ℤ"},
 "&ycy;" {:codepoints [1099], :characters "ы"},
 "&trianglelefteq;" {:codepoints [8884], :characters "⊴"},
 "&mho;" {:codepoints [8487], :characters "℧"},
 "&wscr;" {:codepoints [120012], :characters "𝓌"},
 "&approxeq;" {:codepoints [8778], :characters "≊"},
 "&shcy;" {:codepoints [1096], :characters "ш"},
 "&nvlArr;" {:codepoints [10498], :characters "⤂"},
 "&YIcy;" {:codepoints [1031], :characters "Ї"},
 "&csup;" {:codepoints [10960], :characters "⫐"},
 "&Aogon;" {:codepoints [260], :characters "Ą"},
 "&Iscr;" {:codepoints [8464], :characters "ℐ"},
 "&nltrie;" {:codepoints [8940], :characters "⋬"},
 "&comp;" {:codepoints [8705], :characters "∁"},
 "&oscr;" {:codepoints [8500], :characters "ℴ"},
 "&isinsv;" {:codepoints [8947], :characters "⋳"},
 "&yen" {:codepoints [165], :characters "¥"},
 "&Aopf;" {:codepoints [120120], :characters "𝔸"},
 "&bemptyv;" {:codepoints [10672], :characters "⦰"},
 "&Wfr;" {:codepoints [120090], :characters "𝔚"},
 "&scE;" {:codepoints [10932], :characters "⪴"},
 "&vdash;" {:codepoints [8866], :characters "⊢"},
 "&nacute;" {:codepoints [324], :characters "ń"},
 "&reals;" {:codepoints [8477], :characters "ℝ"},
 "&subsim;" {:codepoints [10951], :characters "⫇"},
 "&mapstoleft;" {:codepoints [8612], :characters "↤"},
 "&pointint;" {:codepoints [10773], :characters "⨕"},
 "&jsercy;" {:codepoints [1112], :characters "ј"},
 "&ENG;" {:codepoints [330], :characters "Ŋ"},
 "&kjcy;" {:codepoints [1116], :characters "ќ"},
 "&quest;" {:codepoints [63], :characters "?"},
 "&cscr;" {:codepoints [119992], :characters "𝒸"},
 "&ccedil;" {:codepoints [231], :characters "ç"},
 "&acute;" {:codepoints [180], :characters "´"},
 "&phi;" {:codepoints [966], :characters "φ"},
 "&Emacr;" {:codepoints [274], :characters "Ē"},
 "&RightVector;" {:codepoints [8640], :characters "⇀"},
 "&Nu;" {:codepoints [925], :characters "Ν"},
 "&subne;" {:codepoints [8842], :characters "⊊"},
 "&DoubleLeftRightArrow;" {:codepoints [8660], :characters "⇔"},
 "&Map;" {:codepoints [10501], :characters "⤅"},
 "&boxUL;" {:codepoints [9565], :characters "╝"},
 "&ThinSpace;" {:codepoints [8201], :characters " "},
 "&scsim;" {:codepoints [8831], :characters "≿"},
 "&Oopf;" {:codepoints [120134], :characters "𝕆"},
 "&Gcedil;" {:codepoints [290], :characters "Ģ"},
 "&para;" {:codepoints [182], :characters "¶"},
 "&pi;" {:codepoints [960], :characters "π"},
 "&NotCongruent;" {:codepoints [8802], :characters "≢"},
 "&Bcy;" {:codepoints [1041], :characters "Б"},
 "&lbrke;" {:codepoints [10635], :characters "⦋"},
 "&Tscr;" {:codepoints [119983], :characters "𝒯"},
 "&Iogon;" {:codepoints [302], :characters "Į"},
 "&DownLeftVectorBar;" {:codepoints [10582], :characters "⥖"},
 "&Upsi;" {:codepoints [978], :characters "ϒ"},
 "&tridot;" {:codepoints [9708], :characters "◬"},
 "&blacksquare;" {:codepoints [9642], :characters "▪"},
 "&xvee;" {:codepoints [8897], :characters "⋁"},
 "&THORN;" {:codepoints [222], :characters "Þ"},
 "&lmoust;" {:codepoints [9136], :characters "⎰"},
 "&vangrt;" {:codepoints [10652], :characters "⦜"},
 "&eacute;" {:codepoints [233], :characters "é"},
 "&lesg;" {:codepoints [8922 65024], :characters "⋚︀"},
 "&Umacr;" {:codepoints [362], :characters "Ū"},
 "&lvnE;" {:codepoints [8808 65024], :characters "≨︀"},
 "&piv;" {:codepoints [982], :characters "ϖ"},
 "&sect" {:codepoints [167], :characters "§"},
 "&nles;" {:codepoints [10877 824], :characters "⩽̸"},
 "&nearr;" {:codepoints [8599], :characters "↗"},
 "&lnapprox;" {:codepoints [10889], :characters "⪉"},
 "&uacute;" {:codepoints [250], :characters "ú"},
 "&ordm;" {:codepoints [186], :characters "º"},
 "&sub;" {:codepoints [8834], :characters "⊂"},
 "&prime;" {:codepoints [8242], :characters "′"},
 "&Sum;" {:codepoints [8721], :characters "∑"},
 "&Escr;" {:codepoints [8496], :characters "ℰ"},
 "&Fscr;" {:codepoints [8497], :characters "ℱ"},
 "&DoubleUpArrow;" {:codepoints [8657], :characters "⇑"},
 "&Poincareplane;" {:codepoints [8460], :characters "ℌ"},
 "&frac34;" {:codepoints [190], :characters "¾"},
 "&lstrok;" {:codepoints [322], :characters "ł"},
 "&leqq;" {:codepoints [8806], :characters "≦"},
 "&bbrk;" {:codepoints [9141], :characters "⎵"},
 "&leftleftarrows;" {:codepoints [8647], :characters "⇇"},
 "&Iukcy;" {:codepoints [1030], :characters "І"},
 "&oelig;" {:codepoints [339], :characters "œ"},
 "&yacute;" {:codepoints [253], :characters "ý"},
 "&xlArr;" {:codepoints [10232], :characters "⟸"},
 "&boxbox;" {:codepoints [10697], :characters "⧉"},
 "&sqsupe;" {:codepoints [8850], :characters "⊒"},
 "&doteq;" {:codepoints [8784], :characters "≐"},
 "&theta;" {:codepoints [952], :characters "θ"},
 "&cedil" {:codepoints [184], :characters "¸"},
 "&InvisibleTimes;" {:codepoints [8290], :characters "⁢"},
 "&lsaquo;" {:codepoints [8249], :characters "‹"},
 "&vnsup;" {:codepoints [8835 8402], :characters "⊃⃒"},
 "&dopf;" {:codepoints [120149], :characters "𝕕"},
 "&Jfr;" {:codepoints [120077], :characters "𝔍"},
 "&oast;" {:codepoints [8859], :characters "⊛"},
 "&Lcedil;" {:codepoints [315], :characters "Ļ"},
 "&succ;" {:codepoints [8827], :characters "≻"},
 "&Rightarrow;" {:codepoints [8658], :characters "⇒"},
 "&ltrif;" {:codepoints [9666], :characters "◂"},
 "&heartsuit;" {:codepoints [9829], :characters "♥"},
 "&top;" {:codepoints [8868], :characters "⊤"},
 "&RightDownVectorBar;" {:codepoints [10581], :characters "⥕"},
 "&Icirc" {:codepoints [206], :characters "Î"},
 "&Alpha;" {:codepoints [913], :characters "Α"},
 "&mDDot;" {:codepoints [8762], :characters "∺"},
 "&OpenCurlyQuote;" {:codepoints [8216], :characters "‘"},
 "&ell;" {:codepoints [8467], :characters "ℓ"},
 "&straightphi;" {:codepoints [981], :characters "ϕ"},
 "&profsurf;" {:codepoints [8979], :characters "⌓"},
 "&vBar;" {:codepoints [10984], :characters "⫨"},
 "&escr;" {:codepoints [8495], :characters "ℯ"},
 "&CupCap;" {:codepoints [8781], :characters "≍"},
 "&cylcty;" {:codepoints [9005], :characters "⌭"},
 "&smile;" {:codepoints [8995], :characters "⌣"},
 "&Vcy;" {:codepoints [1042], :characters "В"},
 "&lesssim;" {:codepoints [8818], :characters "≲"},
 "&gneqq;" {:codepoints [8809], :characters "≩"},
 "&LongLeftArrow;" {:codepoints [10229], :characters "⟵"},
 "&lap;" {:codepoints [10885], :characters "⪅"},
 "&prop;" {:codepoints [8733], :characters "∝"},
 "&npar;" {:codepoints [8742], :characters "∦"},
 "&CircleMinus;" {:codepoints [8854], :characters "⊖"},
 "&notnivc;" {:codepoints [8957], :characters "⋽"},
 "&hstrok;" {:codepoints [295], :characters "ħ"},
 "&minusb;" {:codepoints [8863], :characters "⊟"},
 "&omicron;" {:codepoints [959], :characters "ο"},
 "&utilde;" {:codepoints [361], :characters "ũ"},
 "&rcedil;" {:codepoints [343], :characters "ŗ"},
 "&lg;" {:codepoints [8822], :characters "≶"},
 "&icirc;" {:codepoints [238], :characters "î"},
 "&UnderBar;" {:codepoints [95], :characters "_"},
 "&gfr;" {:codepoints [120100], :characters "𝔤"},
 "&Icy;" {:codepoints [1048], :characters "И"},
 "&dharr;" {:codepoints [8642], :characters "⇂"},
 "&jcirc;" {:codepoints [309], :characters "ĵ"},
 "&uharl;" {:codepoints [8639], :characters "↿"},
 "&iogon;" {:codepoints [303], :characters "į"},
 "&looparrowleft;" {:codepoints [8619], :characters "↫"},
 "&precneqq;" {:codepoints [10933], :characters "⪵"},
 "&cuwed;" {:codepoints [8911], :characters "⋏"},
 "&shortparallel;" {:codepoints [8741], :characters "∥"},
 "&tcaron;" {:codepoints [357], :characters "ť"},
 "&Vopf;" {:codepoints [120141], :characters "𝕍"},
 "&qfr;" {:codepoints [120110], :characters "𝔮"},
 "&ord;" {:codepoints [10845], :characters "⩝"},
 "&Yacute;" {:codepoints [221], :characters "Ý"},
 "&notindot;" {:codepoints [8949 824], :characters "⋵̸"},
 "&wfr;" {:codepoints [120116], :characters "𝔴"},
 "&boxplus;" {:codepoints [8862], :characters "⊞"},
 "&Leftarrow;" {:codepoints [8656], :characters "⇐"},
 "&divide;" {:codepoints [247], :characters "÷"},
 "&checkmark;" {:codepoints [10003], :characters "✓"},
 "&nge;" {:codepoints [8817], :characters "≱"},
 "&Hfr;" {:codepoints [8460], :characters "ℌ"},
 "&succeq;" {:codepoints [10928], :characters "⪰"},
 "&order;" {:codepoints [8500], :characters "ℴ"},
 "&zcaron;" {:codepoints [382], :characters "ž"},
 "&macr" {:codepoints [175], :characters "¯"},
 "&LessLess;" {:codepoints [10913], :characters "⪡"},
 "&sce;" {:codepoints [10928], :characters "⪰"},
 "&qscr;" {:codepoints [120006], :characters "𝓆"},
 "&ClockwiseContourIntegral;" {:codepoints [8754], :characters "∲"},
 "&srarr;" {:codepoints [8594], :characters "→"},
 "&andv;" {:codepoints [10842], :characters "⩚"},
 "&frac23;" {:codepoints [8532], :characters "⅔"},
 "&ecirc;" {:codepoints [234], :characters "ê"},
 "&rdca;" {:codepoints [10551], :characters "⤷"},
 "&times;" {:codepoints [215], :characters "×"},
 "&LT" {:codepoints [60], :characters "<"},
 "&vnsub;" {:codepoints [8834 8402], :characters "⊂⃒"},
 "&mldr;" {:codepoints [8230], :characters "…"},
 "&cudarrr;" {:codepoints [10549], :characters "⤵"},
 "&Vdash;" {:codepoints [8873], :characters "⊩"},
 "&gjcy;" {:codepoints [1107], :characters "ѓ"},
 "&igrave" {:codepoints [236], :characters "ì"},
 "&zdot;" {:codepoints [380], :characters "ż"},
 "&raquo" {:codepoints [187], :characters "»"},
 "&boxVR;" {:codepoints [9568], :characters "╠"},
 "&tfr;" {:codepoints [120113], :characters "𝔱"},
 "&jmath;" {:codepoints [567], :characters "ȷ"},
 "&Ycy;" {:codepoints [1067], :characters "Ы"},
 "&exist;" {:codepoints [8707], :characters "∃"},
 "&ccaps;" {:codepoints [10829], :characters "⩍"},
 "&Re;" {:codepoints [8476], :characters "ℜ"},
 "&NonBreakingSpace;" {:codepoints [160], :characters " "},
 "&boxUr;" {:codepoints [9561], :characters "╙"},
 "&FilledSmallSquare;" {:codepoints [9724], :characters "◼"},
 "&zwnj;" {:codepoints [8204], :characters "‌"},
 "&Iacute;" {:codepoints [205], :characters "Í"},
 "&ouml;" {:codepoints [246], :characters "ö"},
 "&Ffr;" {:codepoints [120073], :characters "𝔉"},
 "&copy" {:codepoints [169], :characters "©"},
 "&ldrushar;" {:codepoints [10571], :characters "⥋"},
 "&Ofr;" {:codepoints [120082], :characters "𝔒"},
 "&UpTeeArrow;" {:codepoints [8613], :characters "↥"},
 "&curlyvee;" {:codepoints [8910], :characters "⋎"},
 "&lrhard;" {:codepoints [10605], :characters "⥭"},
 "&dashv;" {:codepoints [8867], :characters "⊣"},
 "&hyphen;" {:codepoints [8208], :characters "‐"},
 "&gg;" {:codepoints [8811], :characters "≫"},
 "&odblac;" {:codepoints [337], :characters "ő"},
 "&epsilon;" {:codepoints [949], :characters "ε"},
 "&parsim;" {:codepoints [10995], :characters "⫳"},
 "&lesdotor;" {:codepoints [10883], :characters "⪃"},
 "&notni;" {:codepoints [8716], :characters "∌"},
 "&nesim;" {:codepoints [8770 824], :characters "≂̸"},
 "&Zcaron;" {:codepoints [381], :characters "Ž"},
 "&OpenCurlyDoubleQuote;" {:codepoints [8220], :characters "“"},
 "&boxVl;" {:codepoints [9570], :characters "╢"},
 "&CHcy;" {:codepoints [1063], :characters "Ч"},
 "&rmoust;" {:codepoints [9137], :characters "⎱"},
 "&qint;" {:codepoints [10764], :characters "⨌"},
 "&Ncaron;" {:codepoints [327], :characters "Ň"},
 "&uml;" {:codepoints [168], :characters "¨"},
 "&NotReverseElement;" {:codepoints [8716], :characters "∌"},
 "&swArr;" {:codepoints [8665], :characters "⇙"},
 "&HARDcy;" {:codepoints [1066], :characters "Ъ"},
 "&dotminus;" {:codepoints [8760], :characters "∸"},
 "&aelig" {:codepoints [230], :characters "æ"},
 "&bigtriangleup;" {:codepoints [9651], :characters "△"},
 "&Rfr;" {:codepoints [8476], :characters "ℜ"},
 "&Uparrow;" {:codepoints [8657], :characters "⇑"},
 "&Qscr;" {:codepoints [119980], :characters "𝒬"},
 "&par;" {:codepoints [8741], :characters "∥"},
 "&bcy;" {:codepoints [1073], :characters "б"},
 "&hopf;" {:codepoints [120153], :characters "𝕙"},
 "&nvltrie;" {:codepoints [8884 8402], :characters "⊴⃒"},
 "&supne;" {:codepoints [8843], :characters "⊋"},
 "&udblac;" {:codepoints [369], :characters "ű"},
 "&boxhd;" {:codepoints [9516], :characters "┬"},
 "&jcy;" {:codepoints [1081], :characters "й"},
 "&AMP;" {:codepoints [38], :characters "&"},
 "&DownLeftVector;" {:codepoints [8637], :characters "↽"},
 "&zscr;" {:codepoints [120015], :characters "𝓏"},
 "&Rcy;" {:codepoints [1056], :characters "Р"},
 "&bigoplus;" {:codepoints [10753], :characters "⨁"},
 "&eacute" {:codepoints [233], :characters "é"},
 "&nscr;" {:codepoints [120003], :characters "𝓃"},
 "&aring;" {:codepoints [229], :characters "å"},
 "&nrtrie;" {:codepoints [8941], :characters "⋭"},
 "&rarrw;" {:codepoints [8605], :characters "↝"},
 "&pm;" {:codepoints [177], :characters "±"},
 "&DoubleLeftTee;" {:codepoints [10980], :characters "⫤"},
 "&nsubE;" {:codepoints [10949 824], :characters "⫅̸"},
 "&half;" {:codepoints [189], :characters "½"},
 "&nLl;" {:codepoints [8920 824], :characters "⋘̸"},
 "&ograve" {:codepoints [242], :characters "ò"},
 "&oopf;" {:codepoints [120160], :characters "𝕠"},
 "&amacr;" {:codepoints [257], :characters "ā"},
 "&lagran;" {:codepoints [8466], :characters "ℒ"},
 "&Pscr;" {:codepoints [119979], :characters "𝒫"},
 "&Fouriertrf;" {:codepoints [8497], :characters "ℱ"},
 "&nrarr;" {:codepoints [8603], :characters "↛"},