named-references.ts 133 KB

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