entities-1.0.1/.gitignore00006440000000000000000000000022130205071060013477 0ustar0000000000000000target Cargo.lock entities-1.0.1/.travis.yml00006440000000000000000000000155130205261010013623 0ustar0000000000000000language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly entities-1.0.1/Cargo.toml.orig00006440000000000000000000000577132372660570014436 0ustar0000000000000000[package] name = "entities" version = "1.0.1" authors = ["Philip Jackson "] description = "Provides the raw data needed to convert to and from HTML entities." repository = "https://github.com/p-jackson/entities" documentation = "https://docs.rs/entities" readme = "README.md" license = "MIT" keywords = ["HTML", "entities", "character", "escape"] [dependencies] entities-1.0.1/Cargo.toml0000644000000016130007675 0ustar00# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g. crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "entities" version = "1.0.1" authors = ["Philip Jackson "] description = "Provides the raw data needed to convert to and from HTML entities." documentation = "https://docs.rs/entities" readme = "README.md" keywords = ["HTML", "entities", "character", "escape"] license = "MIT" repository = "https://github.com/p-jackson/entities" [dependencies] entities-1.0.1/CHANGELOG.md00006440000000000000000000001204132372656770013353 0ustar0000000000000000# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [1.0.1] - 2018-02-09 ### Added - Links to API docs from crates.io page. ### Changed - Docs now CommonMark compliant in preparation for changes to rustdoc parser. ## 1.0.0 - 2016-12-06 ### Added - First release with stable API. [Unreleased]: https://github.com/p-jackson/entities/compare/v1.0.1...HEAD [1.0.1]: https://github.com/p-jackson/entities/compare/v1.0.0...v1.0.1 entities-1.0.1/LICENSE00006440000000000000000000002042130205207350012523 0ustar0000000000000000Copyright (c) 2016 Philip Jackson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. entities-1.0.1/README.md00006440000000000000000000002254130214726650013013 0ustar0000000000000000# entities [![Build Status](https://travis-ci.org/p-jackson/entities.svg?branch=master)](https://travis-ci.org/p-jackson/entities) [![Crates.io](https://img.shields.io/crates/v/entities.svg?maxAge=3600)](https://crates.io/crates/entities) Provides the raw data needed to convert to and from HTML entities. ## Basic Usage ```rust extern crate entities; use entities::ENTITIES; fn main() { let entity = ENTITIES .iter() .find(|e| e.entity == ">") .unwrap(); assert_eq!(entity.characters, ">"); assert_eq!(entity.entity, ">"); } ``` There isn't a 1-to-1 mapping of entities to "characters" which is why this crate provides a flat array rather than a map—the best way to map the entities depends on the problem _you're_ trying to solve. If you want to create a mapping structure you can make one using static `str` slices to reuse the statically allocated strings from this crate e.g. ```rust fn make_mapping() -> HashMap<&'static str, &'static str> { let mut mapping = HashMap::new(); mapping.insert(ENTITIES[0].entity, ENTITIES[0].characters); mapping } ``` ## Documentation [https://docs.rs/entities](https://docs.rs/entities) entities-1.0.1/src/entities.rs00006440000000000000000000624135132372626710014530 0ustar0000000000000000use super::{Entity, Codepoints}; /// The static constant array of entity definitions. /// /// Data generated from pub static ENTITIES: [Entity; 2231] = [ Entity { entity: "Á", codepoints: Codepoints::Single(193), characters: "Á" }, Entity { entity: "Á", codepoints: Codepoints::Single(193), characters: "Á" }, Entity { entity: "á", codepoints: Codepoints::Single(225), characters: "á" }, Entity { entity: "á", codepoints: Codepoints::Single(225), characters: "á" }, Entity { entity: "Ă", codepoints: Codepoints::Single(258), characters: "Ă" }, Entity { entity: "ă", codepoints: Codepoints::Single(259), characters: "ă" }, Entity { entity: "∾", codepoints: Codepoints::Single(8766), characters: "∾" }, Entity { entity: "∿", codepoints: Codepoints::Single(8767), characters: "∿" }, Entity { entity: "∾̳", codepoints: Codepoints::Double(8766, 819), characters: "∾̳" }, Entity { entity: "Â", codepoints: Codepoints::Single(194), characters: "Â" }, Entity { entity: "Â", codepoints: Codepoints::Single(194), characters: "Â" }, Entity { entity: "â", codepoints: Codepoints::Single(226), characters: "â" }, Entity { entity: "â", codepoints: Codepoints::Single(226), characters: "â" }, Entity { entity: "´", codepoints: Codepoints::Single(180), characters: "´" }, Entity { entity: "´", codepoints: Codepoints::Single(180), characters: "´" }, Entity { entity: "А", codepoints: Codepoints::Single(1040), characters: "А" }, Entity { entity: "а", codepoints: Codepoints::Single(1072), characters: "а" }, Entity { entity: "Æ", codepoints: Codepoints::Single(198), characters: "Æ" }, Entity { entity: "Æ", codepoints: Codepoints::Single(198), characters: "Æ" }, Entity { entity: "æ", codepoints: Codepoints::Single(230), characters: "æ" }, Entity { entity: "æ", codepoints: Codepoints::Single(230), characters: "æ" }, Entity { entity: "⁡", codepoints: Codepoints::Single(8289), characters: "⁡" }, Entity { entity: "𝔄", codepoints: Codepoints::Single(120068), characters: "𝔄" }, Entity { entity: "𝔞", codepoints: Codepoints::Single(120094), characters: "𝔞" }, Entity { entity: "À", codepoints: Codepoints::Single(192), characters: "À" }, Entity { entity: "À", codepoints: Codepoints::Single(192), characters: "À" }, Entity { entity: "à", codepoints: Codepoints::Single(224), characters: "à" }, Entity { entity: "à", codepoints: Codepoints::Single(224), characters: "à" }, Entity { entity: "ℵ", codepoints: Codepoints::Single(8501), characters: "ℵ" }, Entity { entity: "ℵ", codepoints: Codepoints::Single(8501), characters: "ℵ" }, Entity { entity: "Α", codepoints: Codepoints::Single(913), characters: "Α" }, Entity { entity: "α", codepoints: Codepoints::Single(945), characters: "α" }, Entity { entity: "Ā", codepoints: Codepoints::Single(256), characters: "Ā" }, Entity { entity: "ā", codepoints: Codepoints::Single(257), characters: "ā" }, Entity { entity: "⨿", codepoints: Codepoints::Single(10815), characters: "⨿" }, Entity { entity: "&", codepoints: Codepoints::Single(38), characters: "&" }, Entity { entity: "&", codepoints: Codepoints::Single(38), characters: "&" }, Entity { entity: "&", codepoints: Codepoints::Single(38), characters: "&" }, Entity { entity: "&", codepoints: Codepoints::Single(38), characters: "&" }, Entity { entity: "⩓", codepoints: Codepoints::Single(10835), characters: "⩓" }, Entity { entity: "∧", codepoints: Codepoints::Single(8743), characters: "∧" }, Entity { entity: "⩕", codepoints: Codepoints::Single(10837), characters: "⩕" }, Entity { entity: "⩜", codepoints: Codepoints::Single(10844), characters: "⩜" }, Entity { entity: "⩘", codepoints: Codepoints::Single(10840), characters: "⩘" }, Entity { entity: "⩚", codepoints: Codepoints::Single(10842), characters: "⩚" }, Entity { entity: "∠", codepoints: Codepoints::Single(8736), characters: "∠" }, Entity { entity: "⦤", codepoints: Codepoints::Single(10660), characters: "⦤" }, Entity { entity: "∠", codepoints: Codepoints::Single(8736), characters: "∠" }, Entity { entity: "∡", codepoints: Codepoints::Single(8737), characters: "∡" }, Entity { entity: "⦨", codepoints: Codepoints::Single(10664), characters: "⦨" }, Entity { entity: "⦩", codepoints: Codepoints::Single(10665), characters: "⦩" }, Entity { entity: "⦪", codepoints: Codepoints::Single(10666), characters: "⦪" }, Entity { entity: "⦫", codepoints: Codepoints::Single(10667), characters: "⦫" }, Entity { entity: "⦬", codepoints: Codepoints::Single(10668), characters: "⦬" }, Entity { entity: "⦭", codepoints: Codepoints::Single(10669), characters: "⦭" }, Entity { entity: "⦮", codepoints: Codepoints::Single(10670), characters: "⦮" }, Entity { entity: "⦯", codepoints: Codepoints::Single(10671), characters: "⦯" }, Entity { entity: "∟", codepoints: Codepoints::Single(8735), characters: "∟" }, Entity { entity: "⊾", codepoints: Codepoints::Single(8894), characters: "⊾" }, Entity { entity: "⦝", codepoints: Codepoints::Single(10653), characters: "⦝" }, Entity { entity: "∢", codepoints: Codepoints::Single(8738), characters: "∢" }, Entity { entity: "Å", codepoints: Codepoints::Single(197), characters: "Å" }, Entity { entity: "⍼", codepoints: Codepoints::Single(9084), characters: "⍼" }, Entity { entity: "Ą", codepoints: Codepoints::Single(260), characters: "Ą" }, Entity { entity: "ą", codepoints: Codepoints::Single(261), characters: "ą" }, Entity { entity: "𝔸", codepoints: Codepoints::Single(120120), characters: "𝔸" }, Entity { entity: "𝕒", codepoints: Codepoints::Single(120146), characters: "𝕒" }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "⩯", codepoints: Codepoints::Single(10863), characters: "⩯" }, Entity { entity: "⩰", codepoints: Codepoints::Single(10864), characters: "⩰" }, Entity { entity: "≊", codepoints: Codepoints::Single(8778), characters: "≊" }, Entity { entity: "≋", codepoints: Codepoints::Single(8779), characters: "≋" }, Entity { entity: "'", codepoints: Codepoints::Single(39), characters: "'" }, Entity { entity: "⁡", codepoints: Codepoints::Single(8289), characters: "⁡" }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "≊", codepoints: Codepoints::Single(8778), characters: "≊" }, Entity { entity: "Å", codepoints: Codepoints::Single(197), characters: "Å" }, Entity { entity: "Å", codepoints: Codepoints::Single(197), characters: "Å" }, Entity { entity: "å", codepoints: Codepoints::Single(229), characters: "å" }, Entity { entity: "å", codepoints: Codepoints::Single(229), characters: "å" }, Entity { entity: "𝒜", codepoints: Codepoints::Single(119964), characters: "𝒜" }, Entity { entity: "𝒶", codepoints: Codepoints::Single(119990), characters: "𝒶" }, Entity { entity: "≔", codepoints: Codepoints::Single(8788), characters: "≔" }, Entity { entity: "*", codepoints: Codepoints::Single(42), characters: "*" }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "≍", codepoints: Codepoints::Single(8781), characters: "≍" }, Entity { entity: "Ã", codepoints: Codepoints::Single(195), characters: "Ã" }, Entity { entity: "Ã", codepoints: Codepoints::Single(195), characters: "Ã" }, Entity { entity: "ã", codepoints: Codepoints::Single(227), characters: "ã" }, Entity { entity: "ã", codepoints: Codepoints::Single(227), characters: "ã" }, Entity { entity: "Ä", codepoints: Codepoints::Single(196), characters: "Ä" }, Entity { entity: "Ä", codepoints: Codepoints::Single(196), characters: "Ä" }, Entity { entity: "ä", codepoints: Codepoints::Single(228), characters: "ä" }, Entity { entity: "ä", codepoints: Codepoints::Single(228), characters: "ä" }, Entity { entity: "∳", codepoints: Codepoints::Single(8755), characters: "∳" }, Entity { entity: "⨑", codepoints: Codepoints::Single(10769), characters: "⨑" }, Entity { entity: "≌", codepoints: Codepoints::Single(8780), characters: "≌" }, Entity { entity: "϶", codepoints: Codepoints::Single(1014), characters: "϶" }, Entity { entity: "‵", codepoints: Codepoints::Single(8245), characters: "‵" }, Entity { entity: "∽", codepoints: Codepoints::Single(8765), characters: "∽" }, Entity { entity: "⋍", codepoints: Codepoints::Single(8909), characters: "⋍" }, Entity { entity: "∖", codepoints: Codepoints::Single(8726), characters: "∖" }, Entity { entity: "⫧", codepoints: Codepoints::Single(10983), characters: "⫧" }, Entity { entity: "⊽", codepoints: Codepoints::Single(8893), characters: "⊽" }, Entity { entity: "⌆", codepoints: Codepoints::Single(8966), characters: "⌆" }, Entity { entity: "⌅", codepoints: Codepoints::Single(8965), characters: "⌅" }, Entity { entity: "⌅", codepoints: Codepoints::Single(8965), characters: "⌅" }, Entity { entity: "⎵", codepoints: Codepoints::Single(9141), characters: "⎵" }, Entity { entity: "⎶", codepoints: Codepoints::Single(9142), characters: "⎶" }, Entity { entity: "≌", codepoints: Codepoints::Single(8780), characters: "≌" }, Entity { entity: "Б", codepoints: Codepoints::Single(1041), characters: "Б" }, Entity { entity: "б", codepoints: Codepoints::Single(1073), characters: "б" }, Entity { entity: "„", codepoints: Codepoints::Single(8222), characters: "„" }, Entity { entity: "∵", codepoints: Codepoints::Single(8757), characters: "∵" }, Entity { entity: "∵", codepoints: Codepoints::Single(8757), characters: "∵" }, Entity { entity: "∵", codepoints: Codepoints::Single(8757), characters: "∵" }, Entity { entity: "⦰", codepoints: Codepoints::Single(10672), characters: "⦰" }, Entity { entity: "϶", codepoints: Codepoints::Single(1014), characters: "϶" }, Entity { entity: "ℬ", codepoints: Codepoints::Single(8492), characters: "ℬ" }, Entity { entity: "ℬ", codepoints: Codepoints::Single(8492), characters: "ℬ" }, Entity { entity: "Β", codepoints: Codepoints::Single(914), characters: "Β" }, Entity { entity: "β", codepoints: Codepoints::Single(946), characters: "β" }, Entity { entity: "ℶ", codepoints: Codepoints::Single(8502), characters: "ℶ" }, Entity { entity: "≬", codepoints: Codepoints::Single(8812), characters: "≬" }, Entity { entity: "𝔅", codepoints: Codepoints::Single(120069), characters: "𝔅" }, Entity { entity: "𝔟", codepoints: Codepoints::Single(120095), characters: "𝔟" }, Entity { entity: "⋂", codepoints: Codepoints::Single(8898), characters: "⋂" }, Entity { entity: "◯", codepoints: Codepoints::Single(9711), characters: "◯" }, Entity { entity: "⋃", codepoints: Codepoints::Single(8899), characters: "⋃" }, Entity { entity: "⨀", codepoints: Codepoints::Single(10752), characters: "⨀" }, Entity { entity: "⨁", codepoints: Codepoints::Single(10753), characters: "⨁" }, Entity { entity: "⨂", codepoints: Codepoints::Single(10754), characters: "⨂" }, Entity { entity: "⨆", codepoints: Codepoints::Single(10758), characters: "⨆" }, Entity { entity: "★", codepoints: Codepoints::Single(9733), characters: "★" }, Entity { entity: "▽", codepoints: Codepoints::Single(9661), characters: "▽" }, Entity { entity: "△", codepoints: Codepoints::Single(9651), characters: "△" }, Entity { entity: "⨄", codepoints: Codepoints::Single(10756), characters: "⨄" }, Entity { entity: "⋁", codepoints: Codepoints::Single(8897), characters: "⋁" }, Entity { entity: "⋀", codepoints: Codepoints::Single(8896), characters: "⋀" }, Entity { entity: "⤍", codepoints: Codepoints::Single(10509), characters: "⤍" }, Entity { entity: "⧫", codepoints: Codepoints::Single(10731), characters: "⧫" }, Entity { entity: "▪", codepoints: Codepoints::Single(9642), characters: "▪" }, Entity { entity: "▴", codepoints: Codepoints::Single(9652), characters: "▴" }, Entity { entity: "▾", codepoints: Codepoints::Single(9662), characters: "▾" }, Entity { entity: "◂", codepoints: Codepoints::Single(9666), characters: "◂" }, Entity { entity: "▸", codepoints: Codepoints::Single(9656), characters: "▸" }, Entity { entity: "␣", codepoints: Codepoints::Single(9251), characters: "␣" }, Entity { entity: "▒", codepoints: Codepoints::Single(9618), characters: "▒" }, Entity { entity: "░", codepoints: Codepoints::Single(9617), characters: "░" }, Entity { entity: "▓", codepoints: Codepoints::Single(9619), characters: "▓" }, Entity { entity: "█", codepoints: Codepoints::Single(9608), characters: "█" }, Entity { entity: "=⃥", codepoints: Codepoints::Double(61, 8421), characters: "=⃥" }, Entity { entity: "≡⃥", codepoints: Codepoints::Double(8801, 8421), characters: "≡⃥" }, Entity { entity: "⫭", codepoints: Codepoints::Single(10989), characters: "⫭" }, Entity { entity: "⌐", codepoints: Codepoints::Single(8976), characters: "⌐" }, Entity { entity: "𝔹", codepoints: Codepoints::Single(120121), characters: "𝔹" }, Entity { entity: "𝕓", codepoints: Codepoints::Single(120147), characters: "𝕓" }, Entity { entity: "⊥", codepoints: Codepoints::Single(8869), characters: "⊥" }, Entity { entity: "⊥", codepoints: Codepoints::Single(8869), characters: "⊥" }, Entity { entity: "⋈", codepoints: Codepoints::Single(8904), characters: "⋈" }, Entity { entity: "⧉", codepoints: Codepoints::Single(10697), characters: "⧉" }, Entity { entity: "╗", codepoints: Codepoints::Single(9559), characters: "╗" }, Entity { entity: "╖", codepoints: Codepoints::Single(9558), characters: "╖" }, Entity { entity: "╕", codepoints: Codepoints::Single(9557), characters: "╕" }, Entity { entity: "┐", codepoints: Codepoints::Single(9488), characters: "┐" }, Entity { entity: "╔", codepoints: Codepoints::Single(9556), characters: "╔" }, Entity { entity: "╓", codepoints: Codepoints::Single(9555), characters: "╓" }, Entity { entity: "╒", codepoints: Codepoints::Single(9554), characters: "╒" }, Entity { entity: "┌", codepoints: Codepoints::Single(9484), characters: "┌" }, Entity { entity: "═", codepoints: Codepoints::Single(9552), characters: "═" }, Entity { entity: "─", codepoints: Codepoints::Single(9472), characters: "─" }, Entity { entity: "╦", codepoints: Codepoints::Single(9574), characters: "╦" }, Entity { entity: "╤", codepoints: Codepoints::Single(9572), characters: "╤" }, Entity { entity: "╥", codepoints: Codepoints::Single(9573), characters: "╥" }, Entity { entity: "┬", codepoints: Codepoints::Single(9516), characters: "┬" }, Entity { entity: "╩", codepoints: Codepoints::Single(9577), characters: "╩" }, Entity { entity: "╧", codepoints: Codepoints::Single(9575), characters: "╧" }, Entity { entity: "╨", codepoints: Codepoints::Single(9576), characters: "╨" }, Entity { entity: "┴", codepoints: Codepoints::Single(9524), characters: "┴" }, Entity { entity: "⊟", codepoints: Codepoints::Single(8863), characters: "⊟" }, Entity { entity: "⊞", codepoints: Codepoints::Single(8862), characters: "⊞" }, Entity { entity: "⊠", codepoints: Codepoints::Single(8864), characters: "⊠" }, Entity { entity: "╝", codepoints: Codepoints::Single(9565), characters: "╝" }, Entity { entity: "╜", codepoints: Codepoints::Single(9564), characters: "╜" }, Entity { entity: "╛", codepoints: Codepoints::Single(9563), characters: "╛" }, Entity { entity: "┘", codepoints: Codepoints::Single(9496), characters: "┘" }, Entity { entity: "╚", codepoints: Codepoints::Single(9562), characters: "╚" }, Entity { entity: "╙", codepoints: Codepoints::Single(9561), characters: "╙" }, Entity { entity: "╘", codepoints: Codepoints::Single(9560), characters: "╘" }, Entity { entity: "└", codepoints: Codepoints::Single(9492), characters: "└" }, Entity { entity: "║", codepoints: Codepoints::Single(9553), characters: "║" }, Entity { entity: "│", codepoints: Codepoints::Single(9474), characters: "│" }, Entity { entity: "╬", codepoints: Codepoints::Single(9580), characters: "╬" }, Entity { entity: "╫", codepoints: Codepoints::Single(9579), characters: "╫" }, Entity { entity: "╪", codepoints: Codepoints::Single(9578), characters: "╪" }, Entity { entity: "┼", codepoints: Codepoints::Single(9532), characters: "┼" }, Entity { entity: "╣", codepoints: Codepoints::Single(9571), characters: "╣" }, Entity { entity: "╢", codepoints: Codepoints::Single(9570), characters: "╢" }, Entity { entity: "╡", codepoints: Codepoints::Single(9569), characters: "╡" }, Entity { entity: "┤", codepoints: Codepoints::Single(9508), characters: "┤" }, Entity { entity: "╠", codepoints: Codepoints::Single(9568), characters: "╠" }, Entity { entity: "╟", codepoints: Codepoints::Single(9567), characters: "╟" }, Entity { entity: "╞", codepoints: Codepoints::Single(9566), characters: "╞" }, Entity { entity: "├", codepoints: Codepoints::Single(9500), characters: "├" }, Entity { entity: "‵", codepoints: Codepoints::Single(8245), characters: "‵" }, Entity { entity: "˘", codepoints: Codepoints::Single(728), characters: "˘" }, Entity { entity: "˘", codepoints: Codepoints::Single(728), characters: "˘" }, Entity { entity: "¦", codepoints: Codepoints::Single(166), characters: "¦" }, Entity { entity: "¦", codepoints: Codepoints::Single(166), characters: "¦" }, Entity { entity: "ℬ", codepoints: Codepoints::Single(8492), characters: "ℬ" }, Entity { entity: "𝒷", codepoints: Codepoints::Single(119991), characters: "𝒷" }, Entity { entity: "⁏", codepoints: Codepoints::Single(8271), characters: "⁏" }, Entity { entity: "∽", codepoints: Codepoints::Single(8765), characters: "∽" }, Entity { entity: "⋍", codepoints: Codepoints::Single(8909), characters: "⋍" }, Entity { entity: "\", codepoints: Codepoints::Single(92), characters: "\\" }, Entity { entity: "⧅", codepoints: Codepoints::Single(10693), characters: "⧅" }, Entity { entity: "⟈", codepoints: Codepoints::Single(10184), characters: "⟈" }, Entity { entity: "•", codepoints: Codepoints::Single(8226), characters: "•" }, Entity { entity: "•", codepoints: Codepoints::Single(8226), characters: "•" }, Entity { entity: "≎", codepoints: Codepoints::Single(8782), characters: "≎" }, Entity { entity: "⪮", codepoints: Codepoints::Single(10926), characters: "⪮" }, Entity { entity: "≏", codepoints: Codepoints::Single(8783), characters: "≏" }, Entity { entity: "≎", codepoints: Codepoints::Single(8782), characters: "≎" }, Entity { entity: "≏", codepoints: Codepoints::Single(8783), characters: "≏" }, Entity { entity: "Ć", codepoints: Codepoints::Single(262), characters: "Ć" }, Entity { entity: "ć", codepoints: Codepoints::Single(263), characters: "ć" }, Entity { entity: "⋒", codepoints: Codepoints::Single(8914), characters: "⋒" }, Entity { entity: "∩", codepoints: Codepoints::Single(8745), characters: "∩" }, Entity { entity: "⩄", codepoints: Codepoints::Single(10820), characters: "⩄" }, Entity { entity: "⩉", codepoints: Codepoints::Single(10825), characters: "⩉" }, Entity { entity: "⩋", codepoints: Codepoints::Single(10827), characters: "⩋" }, Entity { entity: "⩇", codepoints: Codepoints::Single(10823), characters: "⩇" }, Entity { entity: "⩀", codepoints: Codepoints::Single(10816), characters: "⩀" }, Entity { entity: "ⅅ", codepoints: Codepoints::Single(8517), characters: "ⅅ" }, Entity { entity: "∩︀", codepoints: Codepoints::Double(8745, 65024), characters: "∩︀" }, Entity { entity: "⁁", codepoints: Codepoints::Single(8257), characters: "⁁" }, Entity { entity: "ˇ", codepoints: Codepoints::Single(711), characters: "ˇ" }, Entity { entity: "ℭ", codepoints: Codepoints::Single(8493), characters: "ℭ" }, Entity { entity: "⩍", codepoints: Codepoints::Single(10829), characters: "⩍" }, Entity { entity: "Č", codepoints: Codepoints::Single(268), characters: "Č" }, Entity { entity: "č", codepoints: Codepoints::Single(269), characters: "č" }, Entity { entity: "Ç", codepoints: Codepoints::Single(199), characters: "Ç" }, Entity { entity: "Ç", codepoints: Codepoints::Single(199), characters: "Ç" }, Entity { entity: "ç", codepoints: Codepoints::Single(231), characters: "ç" }, Entity { entity: "ç", codepoints: Codepoints::Single(231), characters: "ç" }, Entity { entity: "Ĉ", codepoints: Codepoints::Single(264), characters: "Ĉ" }, Entity { entity: "ĉ", codepoints: Codepoints::Single(265), characters: "ĉ" }, Entity { entity: "∰", codepoints: Codepoints::Single(8752), characters: "∰" }, Entity { entity: "⩌", codepoints: Codepoints::Single(10828), characters: "⩌" }, Entity { entity: "⩐", codepoints: Codepoints::Single(10832), characters: "⩐" }, Entity { entity: "Ċ", codepoints: Codepoints::Single(266), characters: "Ċ" }, Entity { entity: "ċ", codepoints: Codepoints::Single(267), characters: "ċ" }, Entity { entity: "¸", codepoints: Codepoints::Single(184), characters: "¸" }, Entity { entity: "¸", codepoints: Codepoints::Single(184), characters: "¸" }, Entity { entity: "¸", codepoints: Codepoints::Single(184), characters: "¸" }, Entity { entity: "⦲", codepoints: Codepoints::Single(10674), characters: "⦲" }, Entity { entity: "¢", codepoints: Codepoints::Single(162), characters: "¢" }, Entity { entity: "¢", codepoints: Codepoints::Single(162), characters: "¢" }, Entity { entity: "·", codepoints: Codepoints::Single(183), characters: "·" }, Entity { entity: "·", codepoints: Codepoints::Single(183), characters: "·" }, Entity { entity: "ℭ", codepoints: Codepoints::Single(8493), characters: "ℭ" }, Entity { entity: "𝔠", codepoints: Codepoints::Single(120096), characters: "𝔠" }, Entity { entity: "Ч", codepoints: Codepoints::Single(1063), characters: "Ч" }, Entity { entity: "ч", codepoints: Codepoints::Single(1095), characters: "ч" }, Entity { entity: "✓", codepoints: Codepoints::Single(10003), characters: "✓" }, Entity { entity: "✓", codepoints: Codepoints::Single(10003), characters: "✓" }, Entity { entity: "Χ", codepoints: Codepoints::Single(935), characters: "Χ" }, Entity { entity: "χ", codepoints: Codepoints::Single(967), characters: "χ" }, Entity { entity: "○", codepoints: Codepoints::Single(9675), characters: "○" }, Entity { entity: "ˆ", codepoints: Codepoints::Single(710), characters: "ˆ" }, Entity { entity: "≗", codepoints: Codepoints::Single(8791), characters: "≗" }, Entity { entity: "↺", codepoints: Codepoints::Single(8634), characters: "↺" }, Entity { entity: "↻", codepoints: Codepoints::Single(8635), characters: "↻" }, Entity { entity: "⊛", codepoints: Codepoints::Single(8859), characters: "⊛" }, Entity { entity: "⊚", codepoints: Codepoints::Single(8858), characters: "⊚" }, Entity { entity: "⊝", codepoints: Codepoints::Single(8861), characters: "⊝" }, Entity { entity: "⊙", codepoints: Codepoints::Single(8857), characters: "⊙" }, Entity { entity: "®", codepoints: Codepoints::Single(174), characters: "®" }, Entity { entity: "Ⓢ", codepoints: Codepoints::Single(9416), characters: "Ⓢ" }, Entity { entity: "⊖", codepoints: Codepoints::Single(8854), characters: "⊖" }, Entity { entity: "⊕", codepoints: Codepoints::Single(8853), characters: "⊕" }, Entity { entity: "⊗", codepoints: Codepoints::Single(8855), characters: "⊗" }, Entity { entity: "⧃", codepoints: Codepoints::Single(10691), characters: "⧃" }, Entity { entity: "≗", codepoints: Codepoints::Single(8791), characters: "≗" }, Entity { entity: "⨐", codepoints: Codepoints::Single(10768), characters: "⨐" }, Entity { entity: "⫯", codepoints: Codepoints::Single(10991), characters: "⫯" }, Entity { entity: "⧂", codepoints: Codepoints::Single(10690), characters: "⧂" }, Entity { entity: "∲", codepoints: Codepoints::Single(8754), characters: "∲" }, Entity { entity: "”", codepoints: Codepoints::Single(8221), characters: "”" }, Entity { entity: "’", codepoints: Codepoints::Single(8217), characters: "’" }, Entity { entity: "♣", codepoints: Codepoints::Single(9827), characters: "♣" }, Entity { entity: "♣", codepoints: Codepoints::Single(9827), characters: "♣" }, Entity { entity: "∷", codepoints: Codepoints::Single(8759), characters: "∷" }, Entity { entity: ":", codepoints: Codepoints::Single(58), characters: ":" }, Entity { entity: "⩴", codepoints: Codepoints::Single(10868), characters: "⩴" }, Entity { entity: "≔", codepoints: Codepoints::Single(8788), characters: "≔" }, Entity { entity: "≔", codepoints: Codepoints::Single(8788), characters: "≔" }, Entity { entity: ",", codepoints: Codepoints::Single(44), characters: "," }, Entity { entity: "@", codepoints: Codepoints::Single(64), characters: "@" }, Entity { entity: "∁", codepoints: Codepoints::Single(8705), characters: "∁" }, Entity { entity: "∘", codepoints: Codepoints::Single(8728), characters: "∘" }, Entity { entity: "∁", codepoints: Codepoints::Single(8705), characters: "∁" }, Entity { entity: "ℂ", codepoints: Codepoints::Single(8450), characters: "ℂ" }, Entity { entity: "≅", codepoints: Codepoints::Single(8773), characters: "≅" }, Entity { entity: "⩭", codepoints: Codepoints::Single(10861), characters: "⩭" }, Entity { entity: "≡", codepoints: Codepoints::Single(8801), characters: "≡" }, Entity { entity: "∯", codepoints: Codepoints::Single(8751), characters: "∯" }, Entity { entity: "∮", codepoints: Codepoints::Single(8750), characters: "∮" }, Entity { entity: "∮", codepoints: Codepoints::Single(8750), characters: "∮" }, Entity { entity: "ℂ", codepoints: Codepoints::Single(8450), characters: "ℂ" }, Entity { entity: "𝕔", codepoints: Codepoints::Single(120148), characters: "𝕔" }, Entity { entity: "∐", codepoints: Codepoints::Single(8720), characters: "∐" }, Entity { entity: "∐", codepoints: Codepoints::Single(8720), characters: "∐" }, Entity { entity: "©", codepoints: Codepoints::Single(169), characters: "©" }, Entity { entity: "©", codepoints: Codepoints::Single(169), characters: "©" }, Entity { entity: "©", codepoints: Codepoints::Single(169), characters: "©" }, Entity { entity: "©", codepoints: Codepoints::Single(169), characters: "©" }, Entity { entity: "℗", codepoints: Codepoints::Single(8471), characters: "℗" }, Entity { entity: "∳", codepoints: Codepoints::Single(8755), characters: "∳" }, Entity { entity: "↵", codepoints: Codepoints::Single(8629), characters: "↵" }, Entity { entity: "⨯", codepoints: Codepoints::Single(10799), characters: "⨯" }, Entity { entity: "✗", codepoints: Codepoints::Single(10007), characters: "✗" }, Entity { entity: "𝒞", codepoints: Codepoints::Single(119966), characters: "𝒞" }, Entity { entity: "𝒸", codepoints: Codepoints::Single(119992), characters: "𝒸" }, Entity { entity: "⫏", codepoints: Codepoints::Single(10959), characters: "⫏" }, Entity { entity: "⫑", codepoints: Codepoints::Single(10961), characters: "⫑" }, Entity { entity: "⫐", codepoints: Codepoints::Single(10960), characters: "⫐" }, Entity { entity: "⫒", codepoints: Codepoints::Single(10962), characters: "⫒" }, Entity { entity: "⋯", codepoints: Codepoints::Single(8943), characters: "⋯" }, Entity { entity: "⤸", codepoints: Codepoints::Single(10552), characters: "⤸" }, Entity { entity: "⤵", codepoints: Codepoints::Single(10549), characters: "⤵" }, Entity { entity: "⋞", codepoints: Codepoints::Single(8926), characters: "⋞" }, Entity { entity: "⋟", codepoints: Codepoints::Single(8927), characters: "⋟" }, Entity { entity: "↶", codepoints: Codepoints::Single(8630), characters: "↶" }, Entity { entity: "⤽", codepoints: Codepoints::Single(10557), characters: "⤽" }, Entity { entity: "⋓", codepoints: Codepoints::Single(8915), characters: "⋓" }, Entity { entity: "∪", codepoints: Codepoints::Single(8746), characters: "∪" }, Entity { entity: "⩈", codepoints: Codepoints::Single(10824), characters: "⩈" }, Entity { entity: "≍", codepoints: Codepoints::Single(8781), characters: "≍" }, Entity { entity: "⩆", codepoints: Codepoints::Single(10822), characters: "⩆" }, Entity { entity: "⩊", codepoints: Codepoints::Single(10826), characters: "⩊" }, Entity { entity: "⊍", codepoints: Codepoints::Single(8845), characters: "⊍" }, Entity { entity: "⩅", codepoints: Codepoints::Single(10821), characters: "⩅" }, Entity { entity: "∪︀", codepoints: Codepoints::Double(8746, 65024), characters: "∪︀" }, Entity { entity: "↷", codepoints: Codepoints::Single(8631), characters: "↷" }, Entity { entity: "⤼", codepoints: Codepoints::Single(10556), characters: "⤼" }, Entity { entity: "⋞", codepoints: Codepoints::Single(8926), characters: "⋞" }, Entity { entity: "⋟", codepoints: Codepoints::Single(8927), characters: "⋟" }, Entity { entity: "⋎", codepoints: Codepoints::Single(8910), characters: "⋎" }, Entity { entity: "⋏", codepoints: Codepoints::Single(8911), characters: "⋏" }, Entity { entity: "¤", codepoints: Codepoints::Single(164), characters: "¤" }, Entity { entity: "¤", codepoints: Codepoints::Single(164), characters: "¤" }, Entity { entity: "↶", codepoints: Codepoints::Single(8630), characters: "↶" }, Entity { entity: "↷", codepoints: Codepoints::Single(8631), characters: "↷" }, Entity { entity: "⋎", codepoints: Codepoints::Single(8910), characters: "⋎" }, Entity { entity: "⋏", codepoints: Codepoints::Single(8911), characters: "⋏" }, Entity { entity: "∲", codepoints: Codepoints::Single(8754), characters: "∲" }, Entity { entity: "∱", codepoints: Codepoints::Single(8753), characters: "∱" }, Entity { entity: "⌭", codepoints: Codepoints::Single(9005), characters: "⌭" }, Entity { entity: "‡", codepoints: Codepoints::Single(8225), characters: "‡" }, Entity { entity: "†", codepoints: Codepoints::Single(8224), characters: "†" }, Entity { entity: "ℸ", codepoints: Codepoints::Single(8504), characters: "ℸ" }, Entity { entity: "↡", codepoints: Codepoints::Single(8609), characters: "↡" }, Entity { entity: "⇓", codepoints: Codepoints::Single(8659), characters: "⇓" }, Entity { entity: "↓", codepoints: Codepoints::Single(8595), characters: "↓" }, Entity { entity: "‐", codepoints: Codepoints::Single(8208), characters: "‐" }, Entity { entity: "⫤", codepoints: Codepoints::Single(10980), characters: "⫤" }, Entity { entity: "⊣", codepoints: Codepoints::Single(8867), characters: "⊣" }, Entity { entity: "⤏", codepoints: Codepoints::Single(10511), characters: "⤏" }, Entity { entity: "˝", codepoints: Codepoints::Single(733), characters: "˝" }, Entity { entity: "Ď", codepoints: Codepoints::Single(270), characters: "Ď" }, Entity { entity: "ď", codepoints: Codepoints::Single(271), characters: "ď" }, Entity { entity: "Д", codepoints: Codepoints::Single(1044), characters: "Д" }, Entity { entity: "д", codepoints: Codepoints::Single(1076), characters: "д" }, Entity { entity: "ⅅ", codepoints: Codepoints::Single(8517), characters: "ⅅ" }, Entity { entity: "ⅆ", codepoints: Codepoints::Single(8518), characters: "ⅆ" }, Entity { entity: "‡", codepoints: Codepoints::Single(8225), characters: "‡" }, Entity { entity: "⇊", codepoints: Codepoints::Single(8650), characters: "⇊" }, Entity { entity: "⤑", codepoints: Codepoints::Single(10513), characters: "⤑" }, Entity { entity: "⩷", codepoints: Codepoints::Single(10871), characters: "⩷" }, Entity { entity: "°", codepoints: Codepoints::Single(176), characters: "°" }, Entity { entity: "°", codepoints: Codepoints::Single(176), characters: "°" }, Entity { entity: "∇", codepoints: Codepoints::Single(8711), characters: "∇" }, Entity { entity: "Δ", codepoints: Codepoints::Single(916), characters: "Δ" }, Entity { entity: "δ", codepoints: Codepoints::Single(948), characters: "δ" }, Entity { entity: "⦱", codepoints: Codepoints::Single(10673), characters: "⦱" }, Entity { entity: "⥿", codepoints: Codepoints::Single(10623), characters: "⥿" }, Entity { entity: "𝔇", codepoints: Codepoints::Single(120071), characters: "𝔇" }, Entity { entity: "𝔡", codepoints: Codepoints::Single(120097), characters: "𝔡" }, Entity { entity: "⥥", codepoints: Codepoints::Single(10597), characters: "⥥" }, Entity { entity: "⇃", codepoints: Codepoints::Single(8643), characters: "⇃" }, Entity { entity: "⇂", codepoints: Codepoints::Single(8642), characters: "⇂" }, Entity { entity: "´", codepoints: Codepoints::Single(180), characters: "´" }, Entity { entity: "˙", codepoints: Codepoints::Single(729), characters: "˙" }, Entity { entity: "˝", codepoints: Codepoints::Single(733), characters: "˝" }, Entity { entity: "`", codepoints: Codepoints::Single(96), characters: "`" }, Entity { entity: "˜", codepoints: Codepoints::Single(732), characters: "˜" }, Entity { entity: "⋄", codepoints: Codepoints::Single(8900), characters: "⋄" }, Entity { entity: "⋄", codepoints: Codepoints::Single(8900), characters: "⋄" }, Entity { entity: "⋄", codepoints: Codepoints::Single(8900), characters: "⋄" }, Entity { entity: "♦", codepoints: Codepoints::Single(9830), characters: "♦" }, Entity { entity: "♦", codepoints: Codepoints::Single(9830), characters: "♦" }, Entity { entity: "¨", codepoints: Codepoints::Single(168), characters: "¨" }, Entity { entity: "ⅆ", codepoints: Codepoints::Single(8518), characters: "ⅆ" }, Entity { entity: "ϝ", codepoints: Codepoints::Single(989), characters: "ϝ" }, Entity { entity: "⋲", codepoints: Codepoints::Single(8946), characters: "⋲" }, Entity { entity: "÷", codepoints: Codepoints::Single(247), characters: "÷" }, Entity { entity: "÷", codepoints: Codepoints::Single(247), characters: "÷" }, Entity { entity: "÷", codepoints: Codepoints::Single(247), characters: "÷" }, Entity { entity: "⋇", codepoints: Codepoints::Single(8903), characters: "⋇" }, Entity { entity: "⋇", codepoints: Codepoints::Single(8903), characters: "⋇" }, Entity { entity: "Ђ", codepoints: Codepoints::Single(1026), characters: "Ђ" }, Entity { entity: "ђ", codepoints: Codepoints::Single(1106), characters: "ђ" }, Entity { entity: "⌞", codepoints: Codepoints::Single(8990), characters: "⌞" }, Entity { entity: "⌍", codepoints: Codepoints::Single(8973), characters: "⌍" }, Entity { entity: "$", codepoints: Codepoints::Single(36), characters: "$" }, Entity { entity: "𝔻", codepoints: Codepoints::Single(120123), characters: "𝔻" }, Entity { entity: "𝕕", codepoints: Codepoints::Single(120149), characters: "𝕕" }, Entity { entity: "¨", codepoints: Codepoints::Single(168), characters: "¨" }, Entity { entity: "˙", codepoints: Codepoints::Single(729), characters: "˙" }, Entity { entity: "⃜", codepoints: Codepoints::Single(8412), characters: "⃜" }, Entity { entity: "≐", codepoints: Codepoints::Single(8784), characters: "≐" }, Entity { entity: "≑", codepoints: Codepoints::Single(8785), characters: "≑" }, Entity { entity: "≐", codepoints: Codepoints::Single(8784), characters: "≐" }, Entity { entity: "∸", codepoints: Codepoints::Single(8760), characters: "∸" }, Entity { entity: "∔", codepoints: Codepoints::Single(8724), characters: "∔" }, Entity { entity: "⊡", codepoints: Codepoints::Single(8865), characters: "⊡" }, Entity { entity: "⌆", codepoints: Codepoints::Single(8966), characters: "⌆" }, Entity { entity: "∯", codepoints: Codepoints::Single(8751), characters: "∯" }, Entity { entity: "¨", codepoints: Codepoints::Single(168), characters: "¨" }, Entity { entity: "⇓", codepoints: Codepoints::Single(8659), characters: "⇓" }, Entity { entity: "⇐", codepoints: Codepoints::Single(8656), characters: "⇐" }, Entity { entity: "⇔", codepoints: Codepoints::Single(8660), characters: "⇔" }, Entity { entity: "⫤", codepoints: Codepoints::Single(10980), characters: "⫤" }, Entity { entity: "⟸", codepoints: Codepoints::Single(10232), characters: "⟸" }, Entity { entity: "⟺", codepoints: Codepoints::Single(10234), characters: "⟺" }, Entity { entity: "⟹", codepoints: Codepoints::Single(10233), characters: "⟹" }, Entity { entity: "⇒", codepoints: Codepoints::Single(8658), characters: "⇒" }, Entity { entity: "⊨", codepoints: Codepoints::Single(8872), characters: "⊨" }, Entity { entity: "⇑", codepoints: Codepoints::Single(8657), characters: "⇑" }, Entity { entity: "⇕", codepoints: Codepoints::Single(8661), characters: "⇕" }, Entity { entity: "∥", codepoints: Codepoints::Single(8741), characters: "∥" }, Entity { entity: "↓", codepoints: Codepoints::Single(8595), characters: "↓" }, Entity { entity: "⇓", codepoints: Codepoints::Single(8659), characters: "⇓" }, Entity { entity: "↓", codepoints: Codepoints::Single(8595), characters: "↓" }, Entity { entity: "⤓", codepoints: Codepoints::Single(10515), characters: "⤓" }, Entity { entity: "⇵", codepoints: Codepoints::Single(8693), characters: "⇵" }, Entity { entity: "̑", codepoints: Codepoints::Single(785), characters: "̑" }, Entity { entity: "⇊", codepoints: Codepoints::Single(8650), characters: "⇊" }, Entity { entity: "⇃", codepoints: Codepoints::Single(8643), characters: "⇃" }, Entity { entity: "⇂", codepoints: Codepoints::Single(8642), characters: "⇂" }, Entity { entity: "⥐", codepoints: Codepoints::Single(10576), characters: "⥐" }, Entity { entity: "⥞", codepoints: Codepoints::Single(10590), characters: "⥞" }, Entity { entity: "↽", codepoints: Codepoints::Single(8637), characters: "↽" }, Entity { entity: "⥖", codepoints: Codepoints::Single(10582), characters: "⥖" }, Entity { entity: "⥟", codepoints: Codepoints::Single(10591), characters: "⥟" }, Entity { entity: "⇁", codepoints: Codepoints::Single(8641), characters: "⇁" }, Entity { entity: "⥗", codepoints: Codepoints::Single(10583), characters: "⥗" }, Entity { entity: "⊤", codepoints: Codepoints::Single(8868), characters: "⊤" }, Entity { entity: "↧", codepoints: Codepoints::Single(8615), characters: "↧" }, Entity { entity: "⤐", codepoints: Codepoints::Single(10512), characters: "⤐" }, Entity { entity: "⌟", codepoints: Codepoints::Single(8991), characters: "⌟" }, Entity { entity: "⌌", codepoints: Codepoints::Single(8972), characters: "⌌" }, Entity { entity: "𝒟", codepoints: Codepoints::Single(119967), characters: "𝒟" }, Entity { entity: "𝒹", codepoints: Codepoints::Single(119993), characters: "𝒹" }, Entity { entity: "Ѕ", codepoints: Codepoints::Single(1029), characters: "Ѕ" }, Entity { entity: "ѕ", codepoints: Codepoints::Single(1109), characters: "ѕ" }, Entity { entity: "⧶", codepoints: Codepoints::Single(10742), characters: "⧶" }, Entity { entity: "Đ", codepoints: Codepoints::Single(272), characters: "Đ" }, Entity { entity: "đ", codepoints: Codepoints::Single(273), characters: "đ" }, Entity { entity: "⋱", codepoints: Codepoints::Single(8945), characters: "⋱" }, Entity { entity: "▿", codepoints: Codepoints::Single(9663), characters: "▿" }, Entity { entity: "▾", codepoints: Codepoints::Single(9662), characters: "▾" }, Entity { entity: "⇵", codepoints: Codepoints::Single(8693), characters: "⇵" }, Entity { entity: "⥯", codepoints: Codepoints::Single(10607), characters: "⥯" }, Entity { entity: "⦦", codepoints: Codepoints::Single(10662), characters: "⦦" }, Entity { entity: "Џ", codepoints: Codepoints::Single(1039), characters: "Џ" }, Entity { entity: "џ", codepoints: Codepoints::Single(1119), characters: "џ" }, Entity { entity: "⟿", codepoints: Codepoints::Single(10239), characters: "⟿" }, Entity { entity: "É", codepoints: Codepoints::Single(201), characters: "É" }, Entity { entity: "É", codepoints: Codepoints::Single(201), characters: "É" }, Entity { entity: "é", codepoints: Codepoints::Single(233), characters: "é" }, Entity { entity: "é", codepoints: Codepoints::Single(233), characters: "é" }, Entity { entity: "⩮", codepoints: Codepoints::Single(10862), characters: "⩮" }, Entity { entity: "Ě", codepoints: Codepoints::Single(282), characters: "Ě" }, Entity { entity: "ě", codepoints: Codepoints::Single(283), characters: "ě" }, Entity { entity: "≖", codepoints: Codepoints::Single(8790), characters: "≖" }, Entity { entity: "Ê", codepoints: Codepoints::Single(202), characters: "Ê" }, Entity { entity: "Ê", codepoints: Codepoints::Single(202), characters: "Ê" }, Entity { entity: "ê", codepoints: Codepoints::Single(234), characters: "ê" }, Entity { entity: "ê", codepoints: Codepoints::Single(234), characters: "ê" }, Entity { entity: "≕", codepoints: Codepoints::Single(8789), characters: "≕" }, Entity { entity: "Э", codepoints: Codepoints::Single(1069), characters: "Э" }, Entity { entity: "э", codepoints: Codepoints::Single(1101), characters: "э" }, Entity { entity: "⩷", codepoints: Codepoints::Single(10871), characters: "⩷" }, Entity { entity: "Ė", codepoints: Codepoints::Single(278), characters: "Ė" }, Entity { entity: "≑", codepoints: Codepoints::Single(8785), characters: "≑" }, Entity { entity: "ė", codepoints: Codepoints::Single(279), characters: "ė" }, Entity { entity: "ⅇ", codepoints: Codepoints::Single(8519), characters: "ⅇ" }, Entity { entity: "≒", codepoints: Codepoints::Single(8786), characters: "≒" }, Entity { entity: "𝔈", codepoints: Codepoints::Single(120072), characters: "𝔈" }, Entity { entity: "𝔢", codepoints: Codepoints::Single(120098), characters: "𝔢" }, Entity { entity: "⪚", codepoints: Codepoints::Single(10906), characters: "⪚" }, Entity { entity: "È", codepoints: Codepoints::Single(200), characters: "È" }, Entity { entity: "È", codepoints: Codepoints::Single(200), characters: "È" }, Entity { entity: "è", codepoints: Codepoints::Single(232), characters: "è" }, Entity { entity: "è", codepoints: Codepoints::Single(232), characters: "è" }, Entity { entity: "⪖", codepoints: Codepoints::Single(10902), characters: "⪖" }, Entity { entity: "⪘", codepoints: Codepoints::Single(10904), characters: "⪘" }, Entity { entity: "⪙", codepoints: Codepoints::Single(10905), characters: "⪙" }, Entity { entity: "∈", codepoints: Codepoints::Single(8712), characters: "∈" }, Entity { entity: "⏧", codepoints: Codepoints::Single(9191), characters: "⏧" }, Entity { entity: "ℓ", codepoints: Codepoints::Single(8467), characters: "ℓ" }, Entity { entity: "⪕", codepoints: Codepoints::Single(10901), characters: "⪕" }, Entity { entity: "⪗", codepoints: Codepoints::Single(10903), characters: "⪗" }, Entity { entity: "Ē", codepoints: Codepoints::Single(274), characters: "Ē" }, Entity { entity: "ē", codepoints: Codepoints::Single(275), characters: "ē" }, Entity { entity: "∅", codepoints: Codepoints::Single(8709), characters: "∅" }, Entity { entity: "∅", codepoints: Codepoints::Single(8709), characters: "∅" }, Entity { entity: "◻", codepoints: Codepoints::Single(9723), characters: "◻" }, Entity { entity: "∅", codepoints: Codepoints::Single(8709), characters: "∅" }, Entity { entity: "▫", codepoints: Codepoints::Single(9643), characters: "▫" }, Entity { entity: " ", codepoints: Codepoints::Single(8195), characters: " " }, Entity { entity: " ", codepoints: Codepoints::Single(8196), characters: " " }, Entity { entity: " ", codepoints: Codepoints::Single(8197), characters: " " }, Entity { entity: "Ŋ", codepoints: Codepoints::Single(330), characters: "Ŋ" }, Entity { entity: "ŋ", codepoints: Codepoints::Single(331), characters: "ŋ" }, Entity { entity: " ", codepoints: Codepoints::Single(8194), characters: " " }, Entity { entity: "Ę", codepoints: Codepoints::Single(280), characters: "Ę" }, Entity { entity: "ę", codepoints: Codepoints::Single(281), characters: "ę" }, Entity { entity: "𝔼", codepoints: Codepoints::Single(120124), characters: "𝔼" }, Entity { entity: "𝕖", codepoints: Codepoints::Single(120150), characters: "𝕖" }, Entity { entity: "⋕", codepoints: Codepoints::Single(8917), characters: "⋕" }, Entity { entity: "⧣", codepoints: Codepoints::Single(10723), characters: "⧣" }, Entity { entity: "⩱", codepoints: Codepoints::Single(10865), characters: "⩱" }, Entity { entity: "ε", codepoints: Codepoints::Single(949), characters: "ε" }, Entity { entity: "Ε", codepoints: Codepoints::Single(917), characters: "Ε" }, Entity { entity: "ε", codepoints: Codepoints::Single(949), characters: "ε" }, Entity { entity: "ϵ", codepoints: Codepoints::Single(1013), characters: "ϵ" }, Entity { entity: "≖", codepoints: Codepoints::Single(8790), characters: "≖" }, Entity { entity: "≕", codepoints: Codepoints::Single(8789), characters: "≕" }, Entity { entity: "≂", codepoints: Codepoints::Single(8770), characters: "≂" }, Entity { entity: "⪖", codepoints: Codepoints::Single(10902), characters: "⪖" }, Entity { entity: "⪕", codepoints: Codepoints::Single(10901), characters: "⪕" }, Entity { entity: "⩵", codepoints: Codepoints::Single(10869), characters: "⩵" }, Entity { entity: "=", codepoints: Codepoints::Single(61), characters: "=" }, Entity { entity: "≂", codepoints: Codepoints::Single(8770), characters: "≂" }, Entity { entity: "≟", codepoints: Codepoints::Single(8799), characters: "≟" }, Entity { entity: "⇌", codepoints: Codepoints::Single(8652), characters: "⇌" }, Entity { entity: "≡", codepoints: Codepoints::Single(8801), characters: "≡" }, Entity { entity: "⩸", codepoints: Codepoints::Single(10872), characters: "⩸" }, Entity { entity: "⧥", codepoints: Codepoints::Single(10725), characters: "⧥" }, Entity { entity: "⥱", codepoints: Codepoints::Single(10609), characters: "⥱" }, Entity { entity: "≓", codepoints: Codepoints::Single(8787), characters: "≓" }, Entity { entity: "ℰ", codepoints: Codepoints::Single(8496), characters: "ℰ" }, Entity { entity: "ℯ", codepoints: Codepoints::Single(8495), characters: "ℯ" }, Entity { entity: "≐", codepoints: Codepoints::Single(8784), characters: "≐" }, Entity { entity: "⩳", codepoints: Codepoints::Single(10867), characters: "⩳" }, Entity { entity: "≂", codepoints: Codepoints::Single(8770), characters: "≂" }, Entity { entity: "Η", codepoints: Codepoints::Single(919), characters: "Η" }, Entity { entity: "η", codepoints: Codepoints::Single(951), characters: "η" }, Entity { entity: "Ð", codepoints: Codepoints::Single(208), characters: "Ð" }, Entity { entity: "Ð", codepoints: Codepoints::Single(208), characters: "Ð" }, Entity { entity: "ð", codepoints: Codepoints::Single(240), characters: "ð" }, Entity { entity: "ð", codepoints: Codepoints::Single(240), characters: "ð" }, Entity { entity: "Ë", codepoints: Codepoints::Single(203), characters: "Ë" }, Entity { entity: "Ë", codepoints: Codepoints::Single(203), characters: "Ë" }, Entity { entity: "ë", codepoints: Codepoints::Single(235), characters: "ë" }, Entity { entity: "ë", codepoints: Codepoints::Single(235), characters: "ë" }, Entity { entity: "€", codepoints: Codepoints::Single(8364), characters: "€" }, Entity { entity: "!", codepoints: Codepoints::Single(33), characters: "!" }, Entity { entity: "∃", codepoints: Codepoints::Single(8707), characters: "∃" }, Entity { entity: "∃", codepoints: Codepoints::Single(8707), characters: "∃" }, Entity { entity: "ℰ", codepoints: Codepoints::Single(8496), characters: "ℰ" }, Entity { entity: "ⅇ", codepoints: Codepoints::Single(8519), characters: "ⅇ" }, Entity { entity: "ⅇ", codepoints: Codepoints::Single(8519), characters: "ⅇ" }, Entity { entity: "≒", codepoints: Codepoints::Single(8786), characters: "≒" }, Entity { entity: "Ф", codepoints: Codepoints::Single(1060), characters: "Ф" }, Entity { entity: "ф", codepoints: Codepoints::Single(1092), characters: "ф" }, Entity { entity: "♀", codepoints: Codepoints::Single(9792), characters: "♀" }, Entity { entity: "ffi", codepoints: Codepoints::Single(64259), characters: "ffi" }, Entity { entity: "ff", codepoints: Codepoints::Single(64256), characters: "ff" }, Entity { entity: "ffl", codepoints: Codepoints::Single(64260), characters: "ffl" }, Entity { entity: "𝔉", codepoints: Codepoints::Single(120073), characters: "𝔉" }, Entity { entity: "𝔣", codepoints: Codepoints::Single(120099), characters: "𝔣" }, Entity { entity: "fi", codepoints: Codepoints::Single(64257), characters: "fi" }, Entity { entity: "◼", codepoints: Codepoints::Single(9724), characters: "◼" }, Entity { entity: "▪", codepoints: Codepoints::Single(9642), characters: "▪" }, Entity { entity: "fj", codepoints: Codepoints::Double(102, 106), characters: "fj" }, Entity { entity: "♭", codepoints: Codepoints::Single(9837), characters: "♭" }, Entity { entity: "fl", codepoints: Codepoints::Single(64258), characters: "fl" }, Entity { entity: "▱", codepoints: Codepoints::Single(9649), characters: "▱" }, Entity { entity: "ƒ", codepoints: Codepoints::Single(402), characters: "ƒ" }, Entity { entity: "𝔽", codepoints: Codepoints::Single(120125), characters: "𝔽" }, Entity { entity: "𝕗", codepoints: Codepoints::Single(120151), characters: "𝕗" }, Entity { entity: "∀", codepoints: Codepoints::Single(8704), characters: "∀" }, Entity { entity: "∀", codepoints: Codepoints::Single(8704), characters: "∀" }, Entity { entity: "⋔", codepoints: Codepoints::Single(8916), characters: "⋔" }, Entity { entity: "⫙", codepoints: Codepoints::Single(10969), characters: "⫙" }, Entity { entity: "ℱ", codepoints: Codepoints::Single(8497), characters: "ℱ" }, Entity { entity: "⨍", codepoints: Codepoints::Single(10765), characters: "⨍" }, Entity { entity: "½", codepoints: Codepoints::Single(189), characters: "½" }, Entity { entity: "½", codepoints: Codepoints::Single(189), characters: "½" }, Entity { entity: "⅓", codepoints: Codepoints::Single(8531), characters: "⅓" }, Entity { entity: "¼", codepoints: Codepoints::Single(188), characters: "¼" }, Entity { entity: "¼", codepoints: Codepoints::Single(188), characters: "¼" }, Entity { entity: "⅕", codepoints: Codepoints::Single(8533), characters: "⅕" }, Entity { entity: "⅙", codepoints: Codepoints::Single(8537), characters: "⅙" }, Entity { entity: "⅛", codepoints: Codepoints::Single(8539), characters: "⅛" }, Entity { entity: "⅔", codepoints: Codepoints::Single(8532), characters: "⅔" }, Entity { entity: "⅖", codepoints: Codepoints::Single(8534), characters: "⅖" }, Entity { entity: "¾", codepoints: Codepoints::Single(190), characters: "¾" }, Entity { entity: "¾", codepoints: Codepoints::Single(190), characters: "¾" }, Entity { entity: "⅗", codepoints: Codepoints::Single(8535), characters: "⅗" }, Entity { entity: "⅜", codepoints: Codepoints::Single(8540), characters: "⅜" }, Entity { entity: "⅘", codepoints: Codepoints::Single(8536), characters: "⅘" }, Entity { entity: "⅚", codepoints: Codepoints::Single(8538), characters: "⅚" }, Entity { entity: "⅝", codepoints: Codepoints::Single(8541), characters: "⅝" }, Entity { entity: "⅞", codepoints: Codepoints::Single(8542), characters: "⅞" }, Entity { entity: "⁄", codepoints: Codepoints::Single(8260), characters: "⁄" }, Entity { entity: "⌢", codepoints: Codepoints::Single(8994), characters: "⌢" }, Entity { entity: "ℱ", codepoints: Codepoints::Single(8497), characters: "ℱ" }, Entity { entity: "𝒻", codepoints: Codepoints::Single(119995), characters: "𝒻" }, Entity { entity: "ǵ", codepoints: Codepoints::Single(501), characters: "ǵ" }, Entity { entity: "Γ", codepoints: Codepoints::Single(915), characters: "Γ" }, Entity { entity: "γ", codepoints: Codepoints::Single(947), characters: "γ" }, Entity { entity: "Ϝ", codepoints: Codepoints::Single(988), characters: "Ϝ" }, Entity { entity: "ϝ", codepoints: Codepoints::Single(989), characters: "ϝ" }, Entity { entity: "⪆", codepoints: Codepoints::Single(10886), characters: "⪆" }, Entity { entity: "Ğ", codepoints: Codepoints::Single(286), characters: "Ğ" }, Entity { entity: "ğ", codepoints: Codepoints::Single(287), characters: "ğ" }, Entity { entity: "Ģ", codepoints: Codepoints::Single(290), characters: "Ģ" }, Entity { entity: "Ĝ", codepoints: Codepoints::Single(284), characters: "Ĝ" }, Entity { entity: "ĝ", codepoints: Codepoints::Single(285), characters: "ĝ" }, Entity { entity: "Г", codepoints: Codepoints::Single(1043), characters: "Г" }, Entity { entity: "г", codepoints: Codepoints::Single(1075), characters: "г" }, Entity { entity: "Ġ", codepoints: Codepoints::Single(288), characters: "Ġ" }, Entity { entity: "ġ", codepoints: Codepoints::Single(289), characters: "ġ" }, Entity { entity: "≧", codepoints: Codepoints::Single(8807), characters: "≧" }, Entity { entity: "≥", codepoints: Codepoints::Single(8805), characters: "≥" }, Entity { entity: "⪌", codepoints: Codepoints::Single(10892), characters: "⪌" }, Entity { entity: "⋛", codepoints: Codepoints::Single(8923), characters: "⋛" }, Entity { entity: "≥", codepoints: Codepoints::Single(8805), characters: "≥" }, Entity { entity: "≧", codepoints: Codepoints::Single(8807), characters: "≧" }, Entity { entity: "⩾", codepoints: Codepoints::Single(10878), characters: "⩾" }, Entity { entity: "⩾", codepoints: Codepoints::Single(10878), characters: "⩾" }, Entity { entity: "⪩", codepoints: Codepoints::Single(10921), characters: "⪩" }, Entity { entity: "⪀", codepoints: Codepoints::Single(10880), characters: "⪀" }, Entity { entity: "⪂", codepoints: Codepoints::Single(10882), characters: "⪂" }, Entity { entity: "⪄", codepoints: Codepoints::Single(10884), characters: "⪄" }, Entity { entity: "⋛︀", codepoints: Codepoints::Double(8923, 65024), characters: "⋛︀" }, Entity { entity: "⪔", codepoints: Codepoints::Single(10900), characters: "⪔" }, Entity { entity: "𝔊", codepoints: Codepoints::Single(120074), characters: "𝔊" }, Entity { entity: "𝔤", codepoints: Codepoints::Single(120100), characters: "𝔤" }, Entity { entity: "⋙", codepoints: Codepoints::Single(8921), characters: "⋙" }, Entity { entity: "≫", codepoints: Codepoints::Single(8811), characters: "≫" }, Entity { entity: "⋙", codepoints: Codepoints::Single(8921), characters: "⋙" }, Entity { entity: "ℷ", codepoints: Codepoints::Single(8503), characters: "ℷ" }, Entity { entity: "Ѓ", codepoints: Codepoints::Single(1027), characters: "Ѓ" }, Entity { entity: "ѓ", codepoints: Codepoints::Single(1107), characters: "ѓ" }, Entity { entity: "≷", codepoints: Codepoints::Single(8823), characters: "≷" }, Entity { entity: "⪥", codepoints: Codepoints::Single(10917), characters: "⪥" }, Entity { entity: "⪒", codepoints: Codepoints::Single(10898), characters: "⪒" }, Entity { entity: "⪤", codepoints: Codepoints::Single(10916), characters: "⪤" }, Entity { entity: "⪊", codepoints: Codepoints::Single(10890), characters: "⪊" }, Entity { entity: "⪊", codepoints: Codepoints::Single(10890), characters: "⪊" }, Entity { entity: "≩", codepoints: Codepoints::Single(8809), characters: "≩" }, Entity { entity: "⪈", codepoints: Codepoints::Single(10888), characters: "⪈" }, Entity { entity: "⪈", codepoints: Codepoints::Single(10888), characters: "⪈" }, Entity { entity: "≩", codepoints: Codepoints::Single(8809), characters: "≩" }, Entity { entity: "⋧", codepoints: Codepoints::Single(8935), characters: "⋧" }, Entity { entity: "𝔾", codepoints: Codepoints::Single(120126), characters: "𝔾" }, Entity { entity: "𝕘", codepoints: Codepoints::Single(120152), characters: "𝕘" }, Entity { entity: "`", codepoints: Codepoints::Single(96), characters: "`" }, Entity { entity: "≥", codepoints: Codepoints::Single(8805), characters: "≥" }, Entity { entity: "⋛", codepoints: Codepoints::Single(8923), characters: "⋛" }, Entity { entity: "≧", codepoints: Codepoints::Single(8807), characters: "≧" }, Entity { entity: "⪢", codepoints: Codepoints::Single(10914), characters: "⪢" }, Entity { entity: "≷", codepoints: Codepoints::Single(8823), characters: "≷" }, Entity { entity: "⩾", codepoints: Codepoints::Single(10878), characters: "⩾" }, Entity { entity: "≳", codepoints: Codepoints::Single(8819), characters: "≳" }, Entity { entity: "𝒢", codepoints: Codepoints::Single(119970), characters: "𝒢" }, Entity { entity: "ℊ", codepoints: Codepoints::Single(8458), characters: "ℊ" }, Entity { entity: "≳", codepoints: Codepoints::Single(8819), characters: "≳" }, Entity { entity: "⪎", codepoints: Codepoints::Single(10894), characters: "⪎" }, Entity { entity: "⪐", codepoints: Codepoints::Single(10896), characters: "⪐" }, Entity { entity: ">", codepoints: Codepoints::Single(62), characters: ">" }, Entity { entity: ">", codepoints: Codepoints::Single(62), characters: ">" }, Entity { entity: "≫", codepoints: Codepoints::Single(8811), characters: "≫" }, Entity { entity: ">", codepoints: Codepoints::Single(62), characters: ">" }, Entity { entity: ">", codepoints: Codepoints::Single(62), characters: ">" }, Entity { entity: "⪧", codepoints: Codepoints::Single(10919), characters: "⪧" }, Entity { entity: "⩺", codepoints: Codepoints::Single(10874), characters: "⩺" }, Entity { entity: "⋗", codepoints: Codepoints::Single(8919), characters: "⋗" }, Entity { entity: "⦕", codepoints: Codepoints::Single(10645), characters: "⦕" }, Entity { entity: "⩼", codepoints: Codepoints::Single(10876), characters: "⩼" }, Entity { entity: "⪆", codepoints: Codepoints::Single(10886), characters: "⪆" }, Entity { entity: "⥸", codepoints: Codepoints::Single(10616), characters: "⥸" }, Entity { entity: "⋗", codepoints: Codepoints::Single(8919), characters: "⋗" }, Entity { entity: "⋛", codepoints: Codepoints::Single(8923), characters: "⋛" }, Entity { entity: "⪌", codepoints: Codepoints::Single(10892), characters: "⪌" }, Entity { entity: "≷", codepoints: Codepoints::Single(8823), characters: "≷" }, Entity { entity: "≳", codepoints: Codepoints::Single(8819), characters: "≳" }, Entity { entity: "≩︀", codepoints: Codepoints::Double(8809, 65024), characters: "≩︀" }, Entity { entity: "≩︀", codepoints: Codepoints::Double(8809, 65024), characters: "≩︀" }, Entity { entity: "ˇ", codepoints: Codepoints::Single(711), characters: "ˇ" }, Entity { entity: " ", codepoints: Codepoints::Single(8202), characters: " " }, Entity { entity: "½", codepoints: Codepoints::Single(189), characters: "½" }, Entity { entity: "ℋ", codepoints: Codepoints::Single(8459), characters: "ℋ" }, Entity { entity: "Ъ", codepoints: Codepoints::Single(1066), characters: "Ъ" }, Entity { entity: "ъ", codepoints: Codepoints::Single(1098), characters: "ъ" }, Entity { entity: "⇔", codepoints: Codepoints::Single(8660), characters: "⇔" }, Entity { entity: "↔", codepoints: Codepoints::Single(8596), characters: "↔" }, Entity { entity: "⥈", codepoints: Codepoints::Single(10568), characters: "⥈" }, Entity { entity: "↭", codepoints: Codepoints::Single(8621), characters: "↭" }, Entity { entity: "^", codepoints: Codepoints::Single(94), characters: "^" }, Entity { entity: "ℏ", codepoints: Codepoints::Single(8463), characters: "ℏ" }, Entity { entity: "Ĥ", codepoints: Codepoints::Single(292), characters: "Ĥ" }, Entity { entity: "ĥ", codepoints: Codepoints::Single(293), characters: "ĥ" }, Entity { entity: "♥", codepoints: Codepoints::Single(9829), characters: "♥" }, Entity { entity: "♥", codepoints: Codepoints::Single(9829), characters: "♥" }, Entity { entity: "…", codepoints: Codepoints::Single(8230), characters: "…" }, Entity { entity: "⊹", codepoints: Codepoints::Single(8889), characters: "⊹" }, Entity { entity: "ℌ", codepoints: Codepoints::Single(8460), characters: "ℌ" }, Entity { entity: "𝔥", codepoints: Codepoints::Single(120101), characters: "𝔥" }, Entity { entity: "ℋ", codepoints: Codepoints::Single(8459), characters: "ℋ" }, Entity { entity: "⤥", codepoints: Codepoints::Single(10533), characters: "⤥" }, Entity { entity: "⤦", codepoints: Codepoints::Single(10534), characters: "⤦" }, Entity { entity: "⇿", codepoints: Codepoints::Single(8703), characters: "⇿" }, Entity { entity: "∻", codepoints: Codepoints::Single(8763), characters: "∻" }, Entity { entity: "↩", codepoints: Codepoints::Single(8617), characters: "↩" }, Entity { entity: "↪", codepoints: Codepoints::Single(8618), characters: "↪" }, Entity { entity: "ℍ", codepoints: Codepoints::Single(8461), characters: "ℍ" }, Entity { entity: "𝕙", codepoints: Codepoints::Single(120153), characters: "𝕙" }, Entity { entity: "―", codepoints: Codepoints::Single(8213), characters: "―" }, Entity { entity: "─", codepoints: Codepoints::Single(9472), characters: "─" }, Entity { entity: "ℋ", codepoints: Codepoints::Single(8459), characters: "ℋ" }, Entity { entity: "𝒽", codepoints: Codepoints::Single(119997), characters: "𝒽" }, Entity { entity: "ℏ", codepoints: Codepoints::Single(8463), characters: "ℏ" }, Entity { entity: "Ħ", codepoints: Codepoints::Single(294), characters: "Ħ" }, Entity { entity: "ħ", codepoints: Codepoints::Single(295), characters: "ħ" }, Entity { entity: "≎", codepoints: Codepoints::Single(8782), characters: "≎" }, Entity { entity: "≏", codepoints: Codepoints::Single(8783), characters: "≏" }, Entity { entity: "⁃", codepoints: Codepoints::Single(8259), characters: "⁃" }, Entity { entity: "‐", codepoints: Codepoints::Single(8208), characters: "‐" }, Entity { entity: "Í", codepoints: Codepoints::Single(205), characters: "Í" }, Entity { entity: "Í", codepoints: Codepoints::Single(205), characters: "Í" }, Entity { entity: "í", codepoints: Codepoints::Single(237), characters: "í" }, Entity { entity: "í", codepoints: Codepoints::Single(237), characters: "í" }, Entity { entity: "⁣", codepoints: Codepoints::Single(8291), characters: "⁣" }, Entity { entity: "Î", codepoints: Codepoints::Single(206), characters: "Î" }, Entity { entity: "Î", codepoints: Codepoints::Single(206), characters: "Î" }, Entity { entity: "î", codepoints: Codepoints::Single(238), characters: "î" }, Entity { entity: "î", codepoints: Codepoints::Single(238), characters: "î" }, Entity { entity: "И", codepoints: Codepoints::Single(1048), characters: "И" }, Entity { entity: "и", codepoints: Codepoints::Single(1080), characters: "и" }, Entity { entity: "İ", codepoints: Codepoints::Single(304), characters: "İ" }, Entity { entity: "Е", codepoints: Codepoints::Single(1045), characters: "Е" }, Entity { entity: "е", codepoints: Codepoints::Single(1077), characters: "е" }, Entity { entity: "¡", codepoints: Codepoints::Single(161), characters: "¡" }, Entity { entity: "¡", codepoints: Codepoints::Single(161), characters: "¡" }, Entity { entity: "⇔", codepoints: Codepoints::Single(8660), characters: "⇔" }, Entity { entity: "ℑ", codepoints: Codepoints::Single(8465), characters: "ℑ" }, Entity { entity: "𝔦", codepoints: Codepoints::Single(120102), characters: "𝔦" }, Entity { entity: "Ì", codepoints: Codepoints::Single(204), characters: "Ì" }, Entity { entity: "Ì", codepoints: Codepoints::Single(204), characters: "Ì" }, Entity { entity: "ì", codepoints: Codepoints::Single(236), characters: "ì" }, Entity { entity: "ì", codepoints: Codepoints::Single(236), characters: "ì" }, Entity { entity: "ⅈ", codepoints: Codepoints::Single(8520), characters: "ⅈ" }, Entity { entity: "⨌", codepoints: Codepoints::Single(10764), characters: "⨌" }, Entity { entity: "∭", codepoints: Codepoints::Single(8749), characters: "∭" }, Entity { entity: "⧜", codepoints: Codepoints::Single(10716), characters: "⧜" }, Entity { entity: "℩", codepoints: Codepoints::Single(8489), characters: "℩" }, Entity { entity: "IJ", codepoints: Codepoints::Single(306), characters: "IJ" }, Entity { entity: "ij", codepoints: Codepoints::Single(307), characters: "ij" }, Entity { entity: "ℑ", codepoints: Codepoints::Single(8465), characters: "ℑ" }, Entity { entity: "Ī", codepoints: Codepoints::Single(298), characters: "Ī" }, Entity { entity: "ī", codepoints: Codepoints::Single(299), characters: "ī" }, Entity { entity: "ℑ", codepoints: Codepoints::Single(8465), characters: "ℑ" }, Entity { entity: "ⅈ", codepoints: Codepoints::Single(8520), characters: "ⅈ" }, Entity { entity: "ℐ", codepoints: Codepoints::Single(8464), characters: "ℐ" }, Entity { entity: "ℑ", codepoints: Codepoints::Single(8465), characters: "ℑ" }, Entity { entity: "ı", codepoints: Codepoints::Single(305), characters: "ı" }, Entity { entity: "⊷", codepoints: Codepoints::Single(8887), characters: "⊷" }, Entity { entity: "Ƶ", codepoints: Codepoints::Single(437), characters: "Ƶ" }, Entity { entity: "⇒", codepoints: Codepoints::Single(8658), characters: "⇒" }, Entity { entity: "∈", codepoints: Codepoints::Single(8712), characters: "∈" }, Entity { entity: "℅", codepoints: Codepoints::Single(8453), characters: "℅" }, Entity { entity: "∞", codepoints: Codepoints::Single(8734), characters: "∞" }, Entity { entity: "⧝", codepoints: Codepoints::Single(10717), characters: "⧝" }, Entity { entity: "ı", codepoints: Codepoints::Single(305), characters: "ı" }, Entity { entity: "∬", codepoints: Codepoints::Single(8748), characters: "∬" }, Entity { entity: "∫", codepoints: Codepoints::Single(8747), characters: "∫" }, Entity { entity: "⊺", codepoints: Codepoints::Single(8890), characters: "⊺" }, Entity { entity: "ℤ", codepoints: Codepoints::Single(8484), characters: "ℤ" }, Entity { entity: "∫", codepoints: Codepoints::Single(8747), characters: "∫" }, Entity { entity: "⊺", codepoints: Codepoints::Single(8890), characters: "⊺" }, Entity { entity: "⋂", codepoints: Codepoints::Single(8898), characters: "⋂" }, Entity { entity: "⨗", codepoints: Codepoints::Single(10775), characters: "⨗" }, Entity { entity: "⨼", codepoints: Codepoints::Single(10812), characters: "⨼" }, Entity { entity: "⁣", codepoints: Codepoints::Single(8291), characters: "⁣" }, Entity { entity: "⁢", codepoints: Codepoints::Single(8290), characters: "⁢" }, Entity { entity: "Ё", codepoints: Codepoints::Single(1025), characters: "Ё" }, Entity { entity: "ё", codepoints: Codepoints::Single(1105), characters: "ё" }, Entity { entity: "Į", codepoints: Codepoints::Single(302), characters: "Į" }, Entity { entity: "į", codepoints: Codepoints::Single(303), characters: "į" }, Entity { entity: "𝕀", codepoints: Codepoints::Single(120128), characters: "𝕀" }, Entity { entity: "𝕚", codepoints: Codepoints::Single(120154), characters: "𝕚" }, Entity { entity: "Ι", codepoints: Codepoints::Single(921), characters: "Ι" }, Entity { entity: "ι", codepoints: Codepoints::Single(953), characters: "ι" }, Entity { entity: "⨼", codepoints: Codepoints::Single(10812), characters: "⨼" }, Entity { entity: "¿", codepoints: Codepoints::Single(191), characters: "¿" }, Entity { entity: "¿", codepoints: Codepoints::Single(191), characters: "¿" }, Entity { entity: "ℐ", codepoints: Codepoints::Single(8464), characters: "ℐ" }, Entity { entity: "𝒾", codepoints: Codepoints::Single(119998), characters: "𝒾" }, Entity { entity: "∈", codepoints: Codepoints::Single(8712), characters: "∈" }, Entity { entity: "⋵", codepoints: Codepoints::Single(8949), characters: "⋵" }, Entity { entity: "⋹", codepoints: Codepoints::Single(8953), characters: "⋹" }, Entity { entity: "⋴", codepoints: Codepoints::Single(8948), characters: "⋴" }, Entity { entity: "⋳", codepoints: Codepoints::Single(8947), characters: "⋳" }, Entity { entity: "∈", codepoints: Codepoints::Single(8712), characters: "∈" }, Entity { entity: "⁢", codepoints: Codepoints::Single(8290), characters: "⁢" }, Entity { entity: "Ĩ", codepoints: Codepoints::Single(296), characters: "Ĩ" }, Entity { entity: "ĩ", codepoints: Codepoints::Single(297), characters: "ĩ" }, Entity { entity: "І", codepoints: Codepoints::Single(1030), characters: "І" }, Entity { entity: "і", codepoints: Codepoints::Single(1110), characters: "і" }, Entity { entity: "Ï", codepoints: Codepoints::Single(207), characters: "Ï" }, Entity { entity: "Ï", codepoints: Codepoints::Single(207), characters: "Ï" }, Entity { entity: "ï", codepoints: Codepoints::Single(239), characters: "ï" }, Entity { entity: "ï", codepoints: Codepoints::Single(239), characters: "ï" }, Entity { entity: "Ĵ", codepoints: Codepoints::Single(308), characters: "Ĵ" }, Entity { entity: "ĵ", codepoints: Codepoints::Single(309), characters: "ĵ" }, Entity { entity: "Й", codepoints: Codepoints::Single(1049), characters: "Й" }, Entity { entity: "й", codepoints: Codepoints::Single(1081), characters: "й" }, Entity { entity: "𝔍", codepoints: Codepoints::Single(120077), characters: "𝔍" }, Entity { entity: "𝔧", codepoints: Codepoints::Single(120103), characters: "𝔧" }, Entity { entity: "ȷ", codepoints: Codepoints::Single(567), characters: "ȷ" }, Entity { entity: "𝕁", codepoints: Codepoints::Single(120129), characters: "𝕁" }, Entity { entity: "𝕛", codepoints: Codepoints::Single(120155), characters: "𝕛" }, Entity { entity: "𝒥", codepoints: Codepoints::Single(119973), characters: "𝒥" }, Entity { entity: "𝒿", codepoints: Codepoints::Single(119999), characters: "𝒿" }, Entity { entity: "Ј", codepoints: Codepoints::Single(1032), characters: "Ј" }, Entity { entity: "ј", codepoints: Codepoints::Single(1112), characters: "ј" }, Entity { entity: "Є", codepoints: Codepoints::Single(1028), characters: "Є" }, Entity { entity: "є", codepoints: Codepoints::Single(1108), characters: "є" }, Entity { entity: "Κ", codepoints: Codepoints::Single(922), characters: "Κ" }, Entity { entity: "κ", codepoints: Codepoints::Single(954), characters: "κ" }, Entity { entity: "ϰ", codepoints: Codepoints::Single(1008), characters: "ϰ" }, Entity { entity: "Ķ", codepoints: Codepoints::Single(310), characters: "Ķ" }, Entity { entity: "ķ", codepoints: Codepoints::Single(311), characters: "ķ" }, Entity { entity: "К", codepoints: Codepoints::Single(1050), characters: "К" }, Entity { entity: "к", codepoints: Codepoints::Single(1082), characters: "к" }, Entity { entity: "𝔎", codepoints: Codepoints::Single(120078), characters: "𝔎" }, Entity { entity: "𝔨", codepoints: Codepoints::Single(120104), characters: "𝔨" }, Entity { entity: "ĸ", codepoints: Codepoints::Single(312), characters: "ĸ" }, Entity { entity: "Х", codepoints: Codepoints::Single(1061), characters: "Х" }, Entity { entity: "х", codepoints: Codepoints::Single(1093), characters: "х" }, Entity { entity: "Ќ", codepoints: Codepoints::Single(1036), characters: "Ќ" }, Entity { entity: "ќ", codepoints: Codepoints::Single(1116), characters: "ќ" }, Entity { entity: "𝕂", codepoints: Codepoints::Single(120130), characters: "𝕂" }, Entity { entity: "𝕜", codepoints: Codepoints::Single(120156), characters: "𝕜" }, Entity { entity: "𝒦", codepoints: Codepoints::Single(119974), characters: "𝒦" }, Entity { entity: "𝓀", codepoints: Codepoints::Single(120000), characters: "𝓀" }, Entity { entity: "⇚", codepoints: Codepoints::Single(8666), characters: "⇚" }, Entity { entity: "Ĺ", codepoints: Codepoints::Single(313), characters: "Ĺ" }, Entity { entity: "ĺ", codepoints: Codepoints::Single(314), characters: "ĺ" }, Entity { entity: "⦴", codepoints: Codepoints::Single(10676), characters: "⦴" }, Entity { entity: "ℒ", codepoints: Codepoints::Single(8466), characters: "ℒ" }, Entity { entity: "Λ", codepoints: Codepoints::Single(923), characters: "Λ" }, Entity { entity: "λ", codepoints: Codepoints::Single(955), characters: "λ" }, Entity { entity: "⟪", codepoints: Codepoints::Single(10218), characters: "⟪" }, Entity { entity: "⟨", codepoints: Codepoints::Single(10216), characters: "⟨" }, Entity { entity: "⦑", codepoints: Codepoints::Single(10641), characters: "⦑" }, Entity { entity: "⟨", codepoints: Codepoints::Single(10216), characters: "⟨" }, Entity { entity: "⪅", codepoints: Codepoints::Single(10885), characters: "⪅" }, Entity { entity: "ℒ", codepoints: Codepoints::Single(8466), characters: "ℒ" }, Entity { entity: "«", codepoints: Codepoints::Single(171), characters: "«" }, Entity { entity: "«", codepoints: Codepoints::Single(171), characters: "«" }, Entity { entity: "↞", codepoints: Codepoints::Single(8606), characters: "↞" }, Entity { entity: "⇐", codepoints: Codepoints::Single(8656), characters: "⇐" }, Entity { entity: "←", codepoints: Codepoints::Single(8592), characters: "←" }, Entity { entity: "⇤", codepoints: Codepoints::Single(8676), characters: "⇤" }, Entity { entity: "⤟", codepoints: Codepoints::Single(10527), characters: "⤟" }, Entity { entity: "⤝", codepoints: Codepoints::Single(10525), characters: "⤝" }, Entity { entity: "↩", codepoints: Codepoints::Single(8617), characters: "↩" }, Entity { entity: "↫", codepoints: Codepoints::Single(8619), characters: "↫" }, Entity { entity: "⤹", codepoints: Codepoints::Single(10553), characters: "⤹" }, Entity { entity: "⥳", codepoints: Codepoints::Single(10611), characters: "⥳" }, Entity { entity: "↢", codepoints: Codepoints::Single(8610), characters: "↢" }, Entity { entity: "⪫", codepoints: Codepoints::Single(10923), characters: "⪫" }, Entity { entity: "⤛", codepoints: Codepoints::Single(10523), characters: "⤛" }, Entity { entity: "⤙", codepoints: Codepoints::Single(10521), characters: "⤙" }, Entity { entity: "⪭", codepoints: Codepoints::Single(10925), characters: "⪭" }, Entity { entity: "⪭︀", codepoints: Codepoints::Double(10925, 65024), characters: "⪭︀" }, Entity { entity: "⤎", codepoints: Codepoints::Single(10510), characters: "⤎" }, Entity { entity: "⤌", codepoints: Codepoints::Single(10508), characters: "⤌" }, Entity { entity: "❲", codepoints: Codepoints::Single(10098), characters: "❲" }, Entity { entity: "{", codepoints: Codepoints::Single(123), characters: "{" }, Entity { entity: "[", codepoints: Codepoints::Single(91), characters: "[" }, Entity { entity: "⦋", codepoints: Codepoints::Single(10635), characters: "⦋" }, Entity { entity: "⦏", codepoints: Codepoints::Single(10639), characters: "⦏" }, Entity { entity: "⦍", codepoints: Codepoints::Single(10637), characters: "⦍" }, Entity { entity: "Ľ", codepoints: Codepoints::Single(317), characters: "Ľ" }, Entity { entity: "ľ", codepoints: Codepoints::Single(318), characters: "ľ" }, Entity { entity: "Ļ", codepoints: Codepoints::Single(315), characters: "Ļ" }, Entity { entity: "ļ", codepoints: Codepoints::Single(316), characters: "ļ" }, Entity { entity: "⌈", codepoints: Codepoints::Single(8968), characters: "⌈" }, Entity { entity: "{", codepoints: Codepoints::Single(123), characters: "{" }, Entity { entity: "Л", codepoints: Codepoints::Single(1051), characters: "Л" }, Entity { entity: "л", codepoints: Codepoints::Single(1083), characters: "л" }, Entity { entity: "⤶", codepoints: Codepoints::Single(10550), characters: "⤶" }, Entity { entity: "“", codepoints: Codepoints::Single(8220), characters: "“" }, Entity { entity: "„", codepoints: Codepoints::Single(8222), characters: "„" }, Entity { entity: "⥧", codepoints: Codepoints::Single(10599), characters: "⥧" }, Entity { entity: "⥋", codepoints: Codepoints::Single(10571), characters: "⥋" }, Entity { entity: "↲", codepoints: Codepoints::Single(8626), characters: "↲" }, Entity { entity: "≦", codepoints: Codepoints::Single(8806), characters: "≦" }, Entity { entity: "≤", codepoints: Codepoints::Single(8804), characters: "≤" }, Entity { entity: "⟨", codepoints: Codepoints::Single(10216), characters: "⟨" }, Entity { entity: "←", codepoints: Codepoints::Single(8592), characters: "←" }, Entity { entity: "⇐", codepoints: Codepoints::Single(8656), characters: "⇐" }, Entity { entity: "←", codepoints: Codepoints::Single(8592), characters: "←" }, Entity { entity: "⇤", codepoints: Codepoints::Single(8676), characters: "⇤" }, Entity { entity: "⇆", codepoints: Codepoints::Single(8646), characters: "⇆" }, Entity { entity: "↢", codepoints: Codepoints::Single(8610), characters: "↢" }, Entity { entity: "⌈", codepoints: Codepoints::Single(8968), characters: "⌈" }, Entity { entity: "⟦", codepoints: Codepoints::Single(10214), characters: "⟦" }, Entity { entity: "⥡", codepoints: Codepoints::Single(10593), characters: "⥡" }, Entity { entity: "⇃", codepoints: Codepoints::Single(8643), characters: "⇃" }, Entity { entity: "⥙", codepoints: Codepoints::Single(10585), characters: "⥙" }, Entity { entity: "⌊", codepoints: Codepoints::Single(8970), characters: "⌊" }, Entity { entity: "↽", codepoints: Codepoints::Single(8637), characters: "↽" }, Entity { entity: "↼", codepoints: Codepoints::Single(8636), characters: "↼" }, Entity { entity: "⇇", codepoints: Codepoints::Single(8647), characters: "⇇" }, Entity { entity: "↔", codepoints: Codepoints::Single(8596), characters: "↔" }, Entity { entity: "⇔", codepoints: Codepoints::Single(8660), characters: "⇔" }, Entity { entity: "↔", codepoints: Codepoints::Single(8596), characters: "↔" }, Entity { entity: "⇆", codepoints: Codepoints::Single(8646), characters: "⇆" }, Entity { entity: "⇋", codepoints: Codepoints::Single(8651), characters: "⇋" }, Entity { entity: "↭", codepoints: Codepoints::Single(8621), characters: "↭" }, Entity { entity: "⥎", codepoints: Codepoints::Single(10574), characters: "⥎" }, Entity { entity: "⊣", codepoints: Codepoints::Single(8867), characters: "⊣" }, Entity { entity: "↤", codepoints: Codepoints::Single(8612), characters: "↤" }, Entity { entity: "⥚", codepoints: Codepoints::Single(10586), characters: "⥚" }, Entity { entity: "⋋", codepoints: Codepoints::Single(8907), characters: "⋋" }, Entity { entity: "⊲", codepoints: Codepoints::Single(8882), characters: "⊲" }, Entity { entity: "⧏", codepoints: Codepoints::Single(10703), characters: "⧏" }, Entity { entity: "⊴", codepoints: Codepoints::Single(8884), characters: "⊴" }, Entity { entity: "⥑", codepoints: Codepoints::Single(10577), characters: "⥑" }, Entity { entity: "⥠", codepoints: Codepoints::Single(10592), characters: "⥠" }, Entity { entity: "↿", codepoints: Codepoints::Single(8639), characters: "↿" }, Entity { entity: "⥘", codepoints: Codepoints::Single(10584), characters: "⥘" }, Entity { entity: "↼", codepoints: Codepoints::Single(8636), characters: "↼" }, Entity { entity: "⥒", codepoints: Codepoints::Single(10578), characters: "⥒" }, Entity { entity: "⪋", codepoints: Codepoints::Single(10891), characters: "⪋" }, Entity { entity: "⋚", codepoints: Codepoints::Single(8922), characters: "⋚" }, Entity { entity: "≤", codepoints: Codepoints::Single(8804), characters: "≤" }, Entity { entity: "≦", codepoints: Codepoints::Single(8806), characters: "≦" }, Entity { entity: "⩽", codepoints: Codepoints::Single(10877), characters: "⩽" }, Entity { entity: "⩽", codepoints: Codepoints::Single(10877), characters: "⩽" }, Entity { entity: "⪨", codepoints: Codepoints::Single(10920), characters: "⪨" }, Entity { entity: "⩿", codepoints: Codepoints::Single(10879), characters: "⩿" }, Entity { entity: "⪁", codepoints: Codepoints::Single(10881), characters: "⪁" }, Entity { entity: "⪃", codepoints: Codepoints::Single(10883), characters: "⪃" }, Entity { entity: "⋚︀", codepoints: Codepoints::Double(8922, 65024), characters: "⋚︀" }, Entity { entity: "⪓", codepoints: Codepoints::Single(10899), characters: "⪓" }, Entity { entity: "⪅", codepoints: Codepoints::Single(10885), characters: "⪅" }, Entity { entity: "⋖", codepoints: Codepoints::Single(8918), characters: "⋖" }, Entity { entity: "⋚", codepoints: Codepoints::Single(8922), characters: "⋚" }, Entity { entity: "⪋", codepoints: Codepoints::Single(10891), characters: "⪋" }, Entity { entity: "⋚", codepoints: Codepoints::Single(8922), characters: "⋚" }, Entity { entity: "≦", codepoints: Codepoints::Single(8806), characters: "≦" }, Entity { entity: "≶", codepoints: Codepoints::Single(8822), characters: "≶" }, Entity { entity: "≶", codepoints: Codepoints::Single(8822), characters: "≶" }, Entity { entity: "⪡", codepoints: Codepoints::Single(10913), characters: "⪡" }, Entity { entity: "≲", codepoints: Codepoints::Single(8818), characters: "≲" }, Entity { entity: "⩽", codepoints: Codepoints::Single(10877), characters: "⩽" }, Entity { entity: "≲", codepoints: Codepoints::Single(8818), characters: "≲" }, Entity { entity: "⥼", codepoints: Codepoints::Single(10620), characters: "⥼" }, Entity { entity: "⌊", codepoints: Codepoints::Single(8970), characters: "⌊" }, Entity { entity: "𝔏", codepoints: Codepoints::Single(120079), characters: "𝔏" }, Entity { entity: "𝔩", codepoints: Codepoints::Single(120105), characters: "𝔩" }, Entity { entity: "≶", codepoints: Codepoints::Single(8822), characters: "≶" }, Entity { entity: "⪑", codepoints: Codepoints::Single(10897), characters: "⪑" }, Entity { entity: "⥢", codepoints: Codepoints::Single(10594), characters: "⥢" }, Entity { entity: "↽", codepoints: Codepoints::Single(8637), characters: "↽" }, Entity { entity: "↼", codepoints: Codepoints::Single(8636), characters: "↼" }, Entity { entity: "⥪", codepoints: Codepoints::Single(10602), characters: "⥪" }, Entity { entity: "▄", codepoints: Codepoints::Single(9604), characters: "▄" }, Entity { entity: "Љ", codepoints: Codepoints::Single(1033), characters: "Љ" }, Entity { entity: "љ", codepoints: Codepoints::Single(1113), characters: "љ" }, Entity { entity: "⋘", codepoints: Codepoints::Single(8920), characters: "⋘" }, Entity { entity: "≪", codepoints: Codepoints::Single(8810), characters: "≪" }, Entity { entity: "⇇", codepoints: Codepoints::Single(8647), characters: "⇇" }, Entity { entity: "⌞", codepoints: Codepoints::Single(8990), characters: "⌞" }, Entity { entity: "⇚", codepoints: Codepoints::Single(8666), characters: "⇚" }, Entity { entity: "⥫", codepoints: Codepoints::Single(10603), characters: "⥫" }, Entity { entity: "◺", codepoints: Codepoints::Single(9722), characters: "◺" }, Entity { entity: "Ŀ", codepoints: Codepoints::Single(319), characters: "Ŀ" }, Entity { entity: "ŀ", codepoints: Codepoints::Single(320), characters: "ŀ" }, Entity { entity: "⎰", codepoints: Codepoints::Single(9136), characters: "⎰" }, Entity { entity: "⎰", codepoints: Codepoints::Single(9136), characters: "⎰" }, Entity { entity: "⪉", codepoints: Codepoints::Single(10889), characters: "⪉" }, Entity { entity: "⪉", codepoints: Codepoints::Single(10889), characters: "⪉" }, Entity { entity: "≨", codepoints: Codepoints::Single(8808), characters: "≨" }, Entity { entity: "⪇", codepoints: Codepoints::Single(10887), characters: "⪇" }, Entity { entity: "⪇", codepoints: Codepoints::Single(10887), characters: "⪇" }, Entity { entity: "≨", codepoints: Codepoints::Single(8808), characters: "≨" }, Entity { entity: "⋦", codepoints: Codepoints::Single(8934), characters: "⋦" }, Entity { entity: "⟬", codepoints: Codepoints::Single(10220), characters: "⟬" }, Entity { entity: "⇽", codepoints: Codepoints::Single(8701), characters: "⇽" }, Entity { entity: "⟦", codepoints: Codepoints::Single(10214), characters: "⟦" }, Entity { entity: "⟵", codepoints: Codepoints::Single(10229), characters: "⟵" }, Entity { entity: "⟸", codepoints: Codepoints::Single(10232), characters: "⟸" }, Entity { entity: "⟵", codepoints: Codepoints::Single(10229), characters: "⟵" }, Entity { entity: "⟷", codepoints: Codepoints::Single(10231), characters: "⟷" }, Entity { entity: "⟺", codepoints: Codepoints::Single(10234), characters: "⟺" }, Entity { entity: "⟷", codepoints: Codepoints::Single(10231), characters: "⟷" }, Entity { entity: "⟼", codepoints: Codepoints::Single(10236), characters: "⟼" }, Entity { entity: "⟶", codepoints: Codepoints::Single(10230), characters: "⟶" }, Entity { entity: "⟹", codepoints: Codepoints::Single(10233), characters: "⟹" }, Entity { entity: "⟶", codepoints: Codepoints::Single(10230), characters: "⟶" }, Entity { entity: "↫", codepoints: Codepoints::Single(8619), characters: "↫" }, Entity { entity: "↬", codepoints: Codepoints::Single(8620), characters: "↬" }, Entity { entity: "⦅", codepoints: Codepoints::Single(10629), characters: "⦅" }, Entity { entity: "𝕃", codepoints: Codepoints::Single(120131), characters: "𝕃" }, Entity { entity: "𝕝", codepoints: Codepoints::Single(120157), characters: "𝕝" }, Entity { entity: "⨭", codepoints: Codepoints::Single(10797), characters: "⨭" }, Entity { entity: "⨴", codepoints: Codepoints::Single(10804), characters: "⨴" }, Entity { entity: "∗", codepoints: Codepoints::Single(8727), characters: "∗" }, Entity { entity: "_", codepoints: Codepoints::Single(95), characters: "_" }, Entity { entity: "↙", codepoints: Codepoints::Single(8601), characters: "↙" }, Entity { entity: "↘", codepoints: Codepoints::Single(8600), characters: "↘" }, Entity { entity: "◊", codepoints: Codepoints::Single(9674), characters: "◊" }, Entity { entity: "◊", codepoints: Codepoints::Single(9674), characters: "◊" }, Entity { entity: "⧫", codepoints: Codepoints::Single(10731), characters: "⧫" }, Entity { entity: "(", codepoints: Codepoints::Single(40), characters: "(" }, Entity { entity: "⦓", codepoints: Codepoints::Single(10643), characters: "⦓" }, Entity { entity: "⇆", codepoints: Codepoints::Single(8646), characters: "⇆" }, Entity { entity: "⌟", codepoints: Codepoints::Single(8991), characters: "⌟" }, Entity { entity: "⇋", codepoints: Codepoints::Single(8651), characters: "⇋" }, Entity { entity: "⥭", codepoints: Codepoints::Single(10605), characters: "⥭" }, Entity { entity: "‎", codepoints: Codepoints::Single(8206), characters: "‎" }, Entity { entity: "⊿", codepoints: Codepoints::Single(8895), characters: "⊿" }, Entity { entity: "‹", codepoints: Codepoints::Single(8249), characters: "‹" }, Entity { entity: "ℒ", codepoints: Codepoints::Single(8466), characters: "ℒ" }, Entity { entity: "𝓁", codepoints: Codepoints::Single(120001), characters: "𝓁" }, Entity { entity: "↰", codepoints: Codepoints::Single(8624), characters: "↰" }, Entity { entity: "↰", codepoints: Codepoints::Single(8624), characters: "↰" }, Entity { entity: "≲", codepoints: Codepoints::Single(8818), characters: "≲" }, Entity { entity: "⪍", codepoints: Codepoints::Single(10893), characters: "⪍" }, Entity { entity: "⪏", codepoints: Codepoints::Single(10895), characters: "⪏" }, Entity { entity: "[", codepoints: Codepoints::Single(91), characters: "[" }, Entity { entity: "‘", codepoints: Codepoints::Single(8216), characters: "‘" }, Entity { entity: "‚", codepoints: Codepoints::Single(8218), characters: "‚" }, Entity { entity: "Ł", codepoints: Codepoints::Single(321), characters: "Ł" }, Entity { entity: "ł", codepoints: Codepoints::Single(322), characters: "ł" }, Entity { entity: "<", codepoints: Codepoints::Single(60), characters: "<" }, Entity { entity: "<", codepoints: Codepoints::Single(60), characters: "<" }, Entity { entity: "≪", codepoints: Codepoints::Single(8810), characters: "≪" }, Entity { entity: "<", codepoints: Codepoints::Single(60), characters: "<" }, Entity { entity: "<", codepoints: Codepoints::Single(60), characters: "<" }, Entity { entity: "⪦", codepoints: Codepoints::Single(10918), characters: "⪦" }, Entity { entity: "⩹", codepoints: Codepoints::Single(10873), characters: "⩹" }, Entity { entity: "⋖", codepoints: Codepoints::Single(8918), characters: "⋖" }, Entity { entity: "⋋", codepoints: Codepoints::Single(8907), characters: "⋋" }, Entity { entity: "⋉", codepoints: Codepoints::Single(8905), characters: "⋉" }, Entity { entity: "⥶", codepoints: Codepoints::Single(10614), characters: "⥶" }, Entity { entity: "⩻", codepoints: Codepoints::Single(10875), characters: "⩻" }, Entity { entity: "◃", codepoints: Codepoints::Single(9667), characters: "◃" }, Entity { entity: "⊴", codepoints: Codepoints::Single(8884), characters: "⊴" }, Entity { entity: "◂", codepoints: Codepoints::Single(9666), characters: "◂" }, Entity { entity: "⦖", codepoints: Codepoints::Single(10646), characters: "⦖" }, Entity { entity: "⥊", codepoints: Codepoints::Single(10570), characters: "⥊" }, Entity { entity: "⥦", codepoints: Codepoints::Single(10598), characters: "⥦" }, Entity { entity: "≨︀", codepoints: Codepoints::Double(8808, 65024), characters: "≨︀" }, Entity { entity: "≨︀", codepoints: Codepoints::Double(8808, 65024), characters: "≨︀" }, Entity { entity: "¯", codepoints: Codepoints::Single(175), characters: "¯" }, Entity { entity: "¯", codepoints: Codepoints::Single(175), characters: "¯" }, Entity { entity: "♂", codepoints: Codepoints::Single(9794), characters: "♂" }, Entity { entity: "✠", codepoints: Codepoints::Single(10016), characters: "✠" }, Entity { entity: "✠", codepoints: Codepoints::Single(10016), characters: "✠" }, Entity { entity: "⤅", codepoints: Codepoints::Single(10501), characters: "⤅" }, Entity { entity: "↦", codepoints: Codepoints::Single(8614), characters: "↦" }, Entity { entity: "↦", codepoints: Codepoints::Single(8614), characters: "↦" }, Entity { entity: "↧", codepoints: Codepoints::Single(8615), characters: "↧" }, Entity { entity: "↤", codepoints: Codepoints::Single(8612), characters: "↤" }, Entity { entity: "↥", codepoints: Codepoints::Single(8613), characters: "↥" }, Entity { entity: "▮", codepoints: Codepoints::Single(9646), characters: "▮" }, Entity { entity: "⨩", codepoints: Codepoints::Single(10793), characters: "⨩" }, Entity { entity: "М", codepoints: Codepoints::Single(1052), characters: "М" }, Entity { entity: "м", codepoints: Codepoints::Single(1084), characters: "м" }, Entity { entity: "—", codepoints: Codepoints::Single(8212), characters: "—" }, Entity { entity: "∺", codepoints: Codepoints::Single(8762), characters: "∺" }, Entity { entity: "∡", codepoints: Codepoints::Single(8737), characters: "∡" }, Entity { entity: " ", codepoints: Codepoints::Single(8287), characters: " " }, Entity { entity: "ℳ", codepoints: Codepoints::Single(8499), characters: "ℳ" }, Entity { entity: "𝔐", codepoints: Codepoints::Single(120080), characters: "𝔐" }, Entity { entity: "𝔪", codepoints: Codepoints::Single(120106), characters: "𝔪" }, Entity { entity: "℧", codepoints: Codepoints::Single(8487), characters: "℧" }, Entity { entity: "µ", codepoints: Codepoints::Single(181), characters: "µ" }, Entity { entity: "µ", codepoints: Codepoints::Single(181), characters: "µ" }, Entity { entity: "∣", codepoints: Codepoints::Single(8739), characters: "∣" }, Entity { entity: "*", codepoints: Codepoints::Single(42), characters: "*" }, Entity { entity: "⫰", codepoints: Codepoints::Single(10992), characters: "⫰" }, Entity { entity: "·", codepoints: Codepoints::Single(183), characters: "·" }, Entity { entity: "·", codepoints: Codepoints::Single(183), characters: "·" }, Entity { entity: "−", codepoints: Codepoints::Single(8722), characters: "−" }, Entity { entity: "⊟", codepoints: Codepoints::Single(8863), characters: "⊟" }, Entity { entity: "∸", codepoints: Codepoints::Single(8760), characters: "∸" }, Entity { entity: "⨪", codepoints: Codepoints::Single(10794), characters: "⨪" }, Entity { entity: "∓", codepoints: Codepoints::Single(8723), characters: "∓" }, Entity { entity: "⫛", codepoints: Codepoints::Single(10971), characters: "⫛" }, Entity { entity: "…", codepoints: Codepoints::Single(8230), characters: "…" }, Entity { entity: "∓", codepoints: Codepoints::Single(8723), characters: "∓" }, Entity { entity: "⊧", codepoints: Codepoints::Single(8871), characters: "⊧" }, Entity { entity: "𝕄", codepoints: Codepoints::Single(120132), characters: "𝕄" }, Entity { entity: "𝕞", codepoints: Codepoints::Single(120158), characters: "𝕞" }, Entity { entity: "∓", codepoints: Codepoints::Single(8723), characters: "∓" }, Entity { entity: "ℳ", codepoints: Codepoints::Single(8499), characters: "ℳ" }, Entity { entity: "𝓂", codepoints: Codepoints::Single(120002), characters: "𝓂" }, Entity { entity: "∾", codepoints: Codepoints::Single(8766), characters: "∾" }, Entity { entity: "Μ", codepoints: Codepoints::Single(924), characters: "Μ" }, Entity { entity: "μ", codepoints: Codepoints::Single(956), characters: "μ" }, Entity { entity: "⊸", codepoints: Codepoints::Single(8888), characters: "⊸" }, Entity { entity: "⊸", codepoints: Codepoints::Single(8888), characters: "⊸" }, Entity { entity: "∇", codepoints: Codepoints::Single(8711), characters: "∇" }, Entity { entity: "Ń", codepoints: Codepoints::Single(323), characters: "Ń" }, Entity { entity: "ń", codepoints: Codepoints::Single(324), characters: "ń" }, Entity { entity: "∠⃒", codepoints: Codepoints::Double(8736, 8402), characters: "∠⃒" }, Entity { entity: "≉", codepoints: Codepoints::Single(8777), characters: "≉" }, Entity { entity: "⩰̸", codepoints: Codepoints::Double(10864, 824), characters: "⩰̸" }, Entity { entity: "≋̸", codepoints: Codepoints::Double(8779, 824), characters: "≋̸" }, Entity { entity: "ʼn", codepoints: Codepoints::Single(329), characters: "ʼn" }, Entity { entity: "≉", codepoints: Codepoints::Single(8777), characters: "≉" }, Entity { entity: "♮", codepoints: Codepoints::Single(9838), characters: "♮" }, Entity { entity: "♮", codepoints: Codepoints::Single(9838), characters: "♮" }, Entity { entity: "ℕ", codepoints: Codepoints::Single(8469), characters: "ℕ" }, Entity { entity: " ", codepoints: Codepoints::Single(160), characters: " " }, Entity { entity: " ", codepoints: Codepoints::Single(160), characters: " " }, Entity { entity: "≎̸", codepoints: Codepoints::Double(8782, 824), characters: "≎̸" }, Entity { entity: "≏̸", codepoints: Codepoints::Double(8783, 824), characters: "≏̸" }, Entity { entity: "⩃", codepoints: Codepoints::Single(10819), characters: "⩃" }, Entity { entity: "Ň", codepoints: Codepoints::Single(327), characters: "Ň" }, Entity { entity: "ň", codepoints: Codepoints::Single(328), characters: "ň" }, Entity { entity: "Ņ", codepoints: Codepoints::Single(325), characters: "Ņ" }, Entity { entity: "ņ", codepoints: Codepoints::Single(326), characters: "ņ" }, Entity { entity: "≇", codepoints: Codepoints::Single(8775), characters: "≇" }, Entity { entity: "⩭̸", codepoints: Codepoints::Double(10861, 824), characters: "⩭̸" }, Entity { entity: "⩂", codepoints: Codepoints::Single(10818), characters: "⩂" }, Entity { entity: "Н", codepoints: Codepoints::Single(1053), characters: "Н" }, Entity { entity: "н", codepoints: Codepoints::Single(1085), characters: "н" }, Entity { entity: "–", codepoints: Codepoints::Single(8211), characters: "–" }, Entity { entity: "≠", codepoints: Codepoints::Single(8800), characters: "≠" }, Entity { entity: "⤤", codepoints: Codepoints::Single(10532), characters: "⤤" }, Entity { entity: "⇗", codepoints: Codepoints::Single(8663), characters: "⇗" }, Entity { entity: "↗", codepoints: Codepoints::Single(8599), characters: "↗" }, Entity { entity: "↗", codepoints: Codepoints::Single(8599), characters: "↗" }, Entity { entity: "≐̸", codepoints: Codepoints::Double(8784, 824), characters: "≐̸" }, Entity { entity: "​", codepoints: Codepoints::Single(8203), characters: "​" }, Entity { entity: "​", codepoints: Codepoints::Single(8203), characters: "​" }, Entity { entity: "​", codepoints: Codepoints::Single(8203), characters: "​" }, Entity { entity: "​", codepoints: Codepoints::Single(8203), characters: "​" }, Entity { entity: "≢", codepoints: Codepoints::Single(8802), characters: "≢" }, Entity { entity: "⤨", codepoints: Codepoints::Single(10536), characters: "⤨" }, Entity { entity: "≂̸", codepoints: Codepoints::Double(8770, 824), characters: "≂̸" }, Entity { entity: "≫", codepoints: Codepoints::Single(8811), characters: "≫" }, Entity { entity: "≪", codepoints: Codepoints::Single(8810), characters: "≪" }, Entity { entity: " ", codepoints: Codepoints::Single(10), characters: " " }, Entity { entity: "∄", codepoints: Codepoints::Single(8708), characters: "∄" }, Entity { entity: "∄", codepoints: Codepoints::Single(8708), characters: "∄" }, Entity { entity: "𝔑", codepoints: Codepoints::Single(120081), characters: "𝔑" }, Entity { entity: "𝔫", codepoints: Codepoints::Single(120107), characters: "𝔫" }, Entity { entity: "≧̸", codepoints: Codepoints::Double(8807, 824), characters: "≧̸" }, Entity { entity: "≱", codepoints: Codepoints::Single(8817), characters: "≱" }, Entity { entity: "≱", codepoints: Codepoints::Single(8817), characters: "≱" }, Entity { entity: "≧̸", codepoints: Codepoints::Double(8807, 824), characters: "≧̸" }, Entity { entity: "⩾̸", codepoints: Codepoints::Double(10878, 824), characters: "⩾̸" }, Entity { entity: "⩾̸", codepoints: Codepoints::Double(10878, 824), characters: "⩾̸" }, Entity { entity: "⋙̸", codepoints: Codepoints::Double(8921, 824), characters: "⋙̸" }, Entity { entity: "≵", codepoints: Codepoints::Single(8821), characters: "≵" }, Entity { entity: "≫⃒", codepoints: Codepoints::Double(8811, 8402), characters: "≫⃒" }, Entity { entity: "≯", codepoints: Codepoints::Single(8815), characters: "≯" }, Entity { entity: "≯", codepoints: Codepoints::Single(8815), characters: "≯" }, Entity { entity: "≫̸", codepoints: Codepoints::Double(8811, 824), characters: "≫̸" }, Entity { entity: "⇎", codepoints: Codepoints::Single(8654), characters: "⇎" }, Entity { entity: "↮", codepoints: Codepoints::Single(8622), characters: "↮" }, Entity { entity: "⫲", codepoints: Codepoints::Single(10994), characters: "⫲" }, Entity { entity: "∋", codepoints: Codepoints::Single(8715), characters: "∋" }, Entity { entity: "⋼", codepoints: Codepoints::Single(8956), characters: "⋼" }, Entity { entity: "⋺", codepoints: Codepoints::Single(8954), characters: "⋺" }, Entity { entity: "∋", codepoints: Codepoints::Single(8715), characters: "∋" }, Entity { entity: "Њ", codepoints: Codepoints::Single(1034), characters: "Њ" }, Entity { entity: "њ", codepoints: Codepoints::Single(1114), characters: "њ" }, Entity { entity: "⇍", codepoints: Codepoints::Single(8653), characters: "⇍" }, Entity { entity: "↚", codepoints: Codepoints::Single(8602), characters: "↚" }, Entity { entity: "‥", codepoints: Codepoints::Single(8229), characters: "‥" }, Entity { entity: "≦̸", codepoints: Codepoints::Double(8806, 824), characters: "≦̸" }, Entity { entity: "≰", codepoints: Codepoints::Single(8816), characters: "≰" }, Entity { entity: "⇍", codepoints: Codepoints::Single(8653), characters: "⇍" }, Entity { entity: "↚", codepoints: Codepoints::Single(8602), characters: "↚" }, Entity { entity: "⇎", codepoints: Codepoints::Single(8654), characters: "⇎" }, Entity { entity: "↮", codepoints: Codepoints::Single(8622), characters: "↮" }, Entity { entity: "≰", codepoints: Codepoints::Single(8816), characters: "≰" }, Entity { entity: "≦̸", codepoints: Codepoints::Double(8806, 824), characters: "≦̸" }, Entity { entity: "⩽̸", codepoints: Codepoints::Double(10877, 824), characters: "⩽̸" }, Entity { entity: "⩽̸", codepoints: Codepoints::Double(10877, 824), characters: "⩽̸" }, Entity { entity: "≮", codepoints: Codepoints::Single(8814), characters: "≮" }, Entity { entity: "⋘̸", codepoints: Codepoints::Double(8920, 824), characters: "⋘̸" }, Entity { entity: "≴", codepoints: Codepoints::Single(8820), characters: "≴" }, Entity { entity: "≪⃒", codepoints: Codepoints::Double(8810, 8402), characters: "≪⃒" }, Entity { entity: "≮", codepoints: Codepoints::Single(8814), characters: "≮" }, Entity { entity: "⋪", codepoints: Codepoints::Single(8938), characters: "⋪" }, Entity { entity: "⋬", codepoints: Codepoints::Single(8940), characters: "⋬" }, Entity { entity: "≪̸", codepoints: Codepoints::Double(8810, 824), characters: "≪̸" }, Entity { entity: "∤", codepoints: Codepoints::Single(8740), characters: "∤" }, Entity { entity: "⁠", codepoints: Codepoints::Single(8288), characters: "⁠" }, Entity { entity: " ", codepoints: Codepoints::Single(160), characters: " " }, Entity { entity: "ℕ", codepoints: Codepoints::Single(8469), characters: "ℕ" }, Entity { entity: "𝕟", codepoints: Codepoints::Single(120159), characters: "𝕟" }, Entity { entity: "⫬", codepoints: Codepoints::Single(10988), characters: "⫬" }, Entity { entity: "¬", codepoints: Codepoints::Single(172), characters: "¬" }, Entity { entity: "¬", codepoints: Codepoints::Single(172), characters: "¬" }, Entity { entity: "≢", codepoints: Codepoints::Single(8802), characters: "≢" }, Entity { entity: "≭", codepoints: Codepoints::Single(8813), characters: "≭" }, Entity { entity: "∦", codepoints: Codepoints::Single(8742), characters: "∦" }, Entity { entity: "∉", codepoints: Codepoints::Single(8713), characters: "∉" }, Entity { entity: "≠", codepoints: Codepoints::Single(8800), characters: "≠" }, Entity { entity: "≂̸", codepoints: Codepoints::Double(8770, 824), characters: "≂̸" }, Entity { entity: "∄", codepoints: Codepoints::Single(8708), characters: "∄" }, Entity { entity: "≯", codepoints: Codepoints::Single(8815), characters: "≯" }, Entity { entity: "≱", codepoints: Codepoints::Single(8817), characters: "≱" }, Entity { entity: "≧̸", codepoints: Codepoints::Double(8807, 824), characters: "≧̸" }, Entity { entity: "≫̸", codepoints: Codepoints::Double(8811, 824), characters: "≫̸" }, Entity { entity: "≹", codepoints: Codepoints::Single(8825), characters: "≹" }, Entity { entity: "⩾̸", codepoints: Codepoints::Double(10878, 824), characters: "⩾̸" }, Entity { entity: "≵", codepoints: Codepoints::Single(8821), characters: "≵" }, Entity { entity: "≎̸", codepoints: Codepoints::Double(8782, 824), characters: "≎̸" }, Entity { entity: "≏̸", codepoints: Codepoints::Double(8783, 824), characters: "≏̸" }, Entity { entity: "∉", codepoints: Codepoints::Single(8713), characters: "∉" }, Entity { entity: "⋵̸", codepoints: Codepoints::Double(8949, 824), characters: "⋵̸" }, Entity { entity: "⋹̸", codepoints: Codepoints::Double(8953, 824), characters: "⋹̸" }, Entity { entity: "∉", codepoints: Codepoints::Single(8713), characters: "∉" }, Entity { entity: "⋷", codepoints: Codepoints::Single(8951), characters: "⋷" }, Entity { entity: "⋶", codepoints: Codepoints::Single(8950), characters: "⋶" }, Entity { entity: "⋪", codepoints: Codepoints::Single(8938), characters: "⋪" }, Entity { entity: "⧏̸", codepoints: Codepoints::Double(10703, 824), characters: "⧏̸" }, Entity { entity: "⋬", codepoints: Codepoints::Single(8940), characters: "⋬" }, Entity { entity: "≮", codepoints: Codepoints::Single(8814), characters: "≮" }, Entity { entity: "≰", codepoints: Codepoints::Single(8816), characters: "≰" }, Entity { entity: "≸", codepoints: Codepoints::Single(8824), characters: "≸" }, Entity { entity: "≪̸", codepoints: Codepoints::Double(8810, 824), characters: "≪̸" }, Entity { entity: "⩽̸", codepoints: Codepoints::Double(10877, 824), characters: "⩽̸" }, Entity { entity: "≴", codepoints: Codepoints::Single(8820), characters: "≴" }, Entity { entity: "⪢̸", codepoints: Codepoints::Double(10914, 824), characters: "⪢̸" }, Entity { entity: "⪡̸", codepoints: Codepoints::Double(10913, 824), characters: "⪡̸" }, Entity { entity: "∌", codepoints: Codepoints::Single(8716), characters: "∌" }, Entity { entity: "∌", codepoints: Codepoints::Single(8716), characters: "∌" }, Entity { entity: "⋾", codepoints: Codepoints::Single(8958), characters: "⋾" }, Entity { entity: "⋽", codepoints: Codepoints::Single(8957), characters: "⋽" }, Entity { entity: "⊀", codepoints: Codepoints::Single(8832), characters: "⊀" }, Entity { entity: "⪯̸", codepoints: Codepoints::Double(10927, 824), characters: "⪯̸" }, Entity { entity: "⋠", codepoints: Codepoints::Single(8928), characters: "⋠" }, Entity { entity: "∌", codepoints: Codepoints::Single(8716), characters: "∌" }, Entity { entity: "⋫", codepoints: Codepoints::Single(8939), characters: "⋫" }, Entity { entity: "⧐̸", codepoints: Codepoints::Double(10704, 824), characters: "⧐̸" }, Entity { entity: "⋭", codepoints: Codepoints::Single(8941), characters: "⋭" }, Entity { entity: "⊏̸", codepoints: Codepoints::Double(8847, 824), characters: "⊏̸" }, Entity { entity: "⋢", codepoints: Codepoints::Single(8930), characters: "⋢" }, Entity { entity: "⊐̸", codepoints: Codepoints::Double(8848, 824), characters: "⊐̸" }, Entity { entity: "⋣", codepoints: Codepoints::Single(8931), characters: "⋣" }, Entity { entity: "⊂⃒", codepoints: Codepoints::Double(8834, 8402), characters: "⊂⃒" }, Entity { entity: "⊈", codepoints: Codepoints::Single(8840), characters: "⊈" }, Entity { entity: "⊁", codepoints: Codepoints::Single(8833), characters: "⊁" }, Entity { entity: "⪰̸", codepoints: Codepoints::Double(10928, 824), characters: "⪰̸" }, Entity { entity: "⋡", codepoints: Codepoints::Single(8929), characters: "⋡" }, Entity { entity: "≿̸", codepoints: Codepoints::Double(8831, 824), characters: "≿̸" }, Entity { entity: "⊃⃒", codepoints: Codepoints::Double(8835, 8402), characters: "⊃⃒" }, Entity { entity: "⊉", codepoints: Codepoints::Single(8841), characters: "⊉" }, Entity { entity: "≁", codepoints: Codepoints::Single(8769), characters: "≁" }, Entity { entity: "≄", codepoints: Codepoints::Single(8772), characters: "≄" }, Entity { entity: "≇", codepoints: Codepoints::Single(8775), characters: "≇" }, Entity { entity: "≉", codepoints: Codepoints::Single(8777), characters: "≉" }, Entity { entity: "∤", codepoints: Codepoints::Single(8740), characters: "∤" }, Entity { entity: "∦", codepoints: Codepoints::Single(8742), characters: "∦" }, Entity { entity: "∦", codepoints: Codepoints::Single(8742), characters: "∦" }, Entity { entity: "⫽⃥", codepoints: Codepoints::Double(11005, 8421), characters: "⫽⃥" }, Entity { entity: "∂̸", codepoints: Codepoints::Double(8706, 824), characters: "∂̸" }, Entity { entity: "⨔", codepoints: Codepoints::Single(10772), characters: "⨔" }, Entity { entity: "⊀", codepoints: Codepoints::Single(8832), characters: "⊀" }, Entity { entity: "⋠", codepoints: Codepoints::Single(8928), characters: "⋠" }, Entity { entity: "⪯̸", codepoints: Codepoints::Double(10927, 824), characters: "⪯̸" }, Entity { entity: "⊀", codepoints: Codepoints::Single(8832), characters: "⊀" }, Entity { entity: "⪯̸", codepoints: Codepoints::Double(10927, 824), characters: "⪯̸" }, Entity { entity: "⇏", codepoints: Codepoints::Single(8655), characters: "⇏" }, Entity { entity: "↛", codepoints: Codepoints::Single(8603), characters: "↛" }, Entity { entity: "⤳̸", codepoints: Codepoints::Double(10547, 824), characters: "⤳̸" }, Entity { entity: "↝̸", codepoints: Codepoints::Double(8605, 824), characters: "↝̸" }, Entity { entity: "⇏", codepoints: Codepoints::Single(8655), characters: "⇏" }, Entity { entity: "↛", codepoints: Codepoints::Single(8603), characters: "↛" }, Entity { entity: "⋫", codepoints: Codepoints::Single(8939), characters: "⋫" }, Entity { entity: "⋭", codepoints: Codepoints::Single(8941), characters: "⋭" }, Entity { entity: "⊁", codepoints: Codepoints::Single(8833), characters: "⊁" }, Entity { entity: "⋡", codepoints: Codepoints::Single(8929), characters: "⋡" }, Entity { entity: "⪰̸", codepoints: Codepoints::Double(10928, 824), characters: "⪰̸" }, Entity { entity: "𝒩", codepoints: Codepoints::Single(119977), characters: "𝒩" }, Entity { entity: "𝓃", codepoints: Codepoints::Single(120003), characters: "𝓃" }, Entity { entity: "∤", codepoints: Codepoints::Single(8740), characters: "∤" }, Entity { entity: "∦", codepoints: Codepoints::Single(8742), characters: "∦" }, Entity { entity: "≁", codepoints: Codepoints::Single(8769), characters: "≁" }, Entity { entity: "≄", codepoints: Codepoints::Single(8772), characters: "≄" }, Entity { entity: "≄", codepoints: Codepoints::Single(8772), characters: "≄" }, Entity { entity: "∤", codepoints: Codepoints::Single(8740), characters: "∤" }, Entity { entity: "∦", codepoints: Codepoints::Single(8742), characters: "∦" }, Entity { entity: "⋢", codepoints: Codepoints::Single(8930), characters: "⋢" }, Entity { entity: "⋣", codepoints: Codepoints::Single(8931), characters: "⋣" }, Entity { entity: "⊄", codepoints: Codepoints::Single(8836), characters: "⊄" }, Entity { entity: "⫅̸", codepoints: Codepoints::Double(10949, 824), characters: "⫅̸" }, Entity { entity: "⊈", codepoints: Codepoints::Single(8840), characters: "⊈" }, Entity { entity: "⊂⃒", codepoints: Codepoints::Double(8834, 8402), characters: "⊂⃒" }, Entity { entity: "⊈", codepoints: Codepoints::Single(8840), characters: "⊈" }, Entity { entity: "⫅̸", codepoints: Codepoints::Double(10949, 824), characters: "⫅̸" }, Entity { entity: "⊁", codepoints: Codepoints::Single(8833), characters: "⊁" }, Entity { entity: "⪰̸", codepoints: Codepoints::Double(10928, 824), characters: "⪰̸" }, Entity { entity: "⊅", codepoints: Codepoints::Single(8837), characters: "⊅" }, Entity { entity: "⫆̸", codepoints: Codepoints::Double(10950, 824), characters: "⫆̸" }, Entity { entity: "⊉", codepoints: Codepoints::Single(8841), characters: "⊉" }, Entity { entity: "⊃⃒", codepoints: Codepoints::Double(8835, 8402), characters: "⊃⃒" }, Entity { entity: "⊉", codepoints: Codepoints::Single(8841), characters: "⊉" }, Entity { entity: "⫆̸", codepoints: Codepoints::Double(10950, 824), characters: "⫆̸" }, Entity { entity: "≹", codepoints: Codepoints::Single(8825), characters: "≹" }, Entity { entity: "Ñ", codepoints: Codepoints::Single(209), characters: "Ñ" }, Entity { entity: "Ñ", codepoints: Codepoints::Single(209), characters: "Ñ" }, Entity { entity: "ñ", codepoints: Codepoints::Single(241), characters: "ñ" }, Entity { entity: "ñ", codepoints: Codepoints::Single(241), characters: "ñ" }, Entity { entity: "≸", codepoints: Codepoints::Single(8824), characters: "≸" }, Entity { entity: "⋪", codepoints: Codepoints::Single(8938), characters: "⋪" }, Entity { entity: "⋬", codepoints: Codepoints::Single(8940), characters: "⋬" }, Entity { entity: "⋫", codepoints: Codepoints::Single(8939), characters: "⋫" }, Entity { entity: "⋭", codepoints: Codepoints::Single(8941), characters: "⋭" }, Entity { entity: "Ν", codepoints: Codepoints::Single(925), characters: "Ν" }, Entity { entity: "ν", codepoints: Codepoints::Single(957), characters: "ν" }, Entity { entity: "#", codepoints: Codepoints::Single(35), characters: "#" }, Entity { entity: "№", codepoints: Codepoints::Single(8470), characters: "№" }, Entity { entity: " ", codepoints: Codepoints::Single(8199), characters: " " }, Entity { entity: "≍⃒", codepoints: Codepoints::Double(8781, 8402), characters: "≍⃒" }, Entity { entity: "⊯", codepoints: Codepoints::Single(8879), characters: "⊯" }, Entity { entity: "⊮", codepoints: Codepoints::Single(8878), characters: "⊮" }, Entity { entity: "⊭", codepoints: Codepoints::Single(8877), characters: "⊭" }, Entity { entity: "⊬", codepoints: Codepoints::Single(8876), characters: "⊬" }, Entity { entity: "≥⃒", codepoints: Codepoints::Double(8805, 8402), characters: "≥⃒" }, Entity { entity: ">⃒", codepoints: Codepoints::Double(62, 8402), characters: ">⃒" }, Entity { entity: "⤄", codepoints: Codepoints::Single(10500), characters: "⤄" }, Entity { entity: "⧞", codepoints: Codepoints::Single(10718), characters: "⧞" }, Entity { entity: "⤂", codepoints: Codepoints::Single(10498), characters: "⤂" }, Entity { entity: "≤⃒", codepoints: Codepoints::Double(8804, 8402), characters: "≤⃒" }, Entity { entity: "<⃒", codepoints: Codepoints::Double(60, 8402), characters: "<⃒" }, Entity { entity: "⊴⃒", codepoints: Codepoints::Double(8884, 8402), characters: "⊴⃒" }, Entity { entity: "⤃", codepoints: Codepoints::Single(10499), characters: "⤃" }, Entity { entity: "⊵⃒", codepoints: Codepoints::Double(8885, 8402), characters: "⊵⃒" }, Entity { entity: "∼⃒", codepoints: Codepoints::Double(8764, 8402), characters: "∼⃒" }, Entity { entity: "⤣", codepoints: Codepoints::Single(10531), characters: "⤣" }, Entity { entity: "⇖", codepoints: Codepoints::Single(8662), characters: "⇖" }, Entity { entity: "↖", codepoints: Codepoints::Single(8598), characters: "↖" }, Entity { entity: "↖", codepoints: Codepoints::Single(8598), characters: "↖" }, Entity { entity: "⤧", codepoints: Codepoints::Single(10535), characters: "⤧" }, Entity { entity: "Ó", codepoints: Codepoints::Single(211), characters: "Ó" }, Entity { entity: "Ó", codepoints: Codepoints::Single(211), characters: "Ó" }, Entity { entity: "ó", codepoints: Codepoints::Single(243), characters: "ó" }, Entity { entity: "ó", codepoints: Codepoints::Single(243), characters: "ó" }, Entity { entity: "⊛", codepoints: Codepoints::Single(8859), characters: "⊛" }, Entity { entity: "⊚", codepoints: Codepoints::Single(8858), characters: "⊚" }, Entity { entity: "Ô", codepoints: Codepoints::Single(212), characters: "Ô" }, Entity { entity: "Ô", codepoints: Codepoints::Single(212), characters: "Ô" }, Entity { entity: "ô", codepoints: Codepoints::Single(244), characters: "ô" }, Entity { entity: "ô", codepoints: Codepoints::Single(244), characters: "ô" }, Entity { entity: "О", codepoints: Codepoints::Single(1054), characters: "О" }, Entity { entity: "о", codepoints: Codepoints::Single(1086), characters: "о" }, Entity { entity: "⊝", codepoints: Codepoints::Single(8861), characters: "⊝" }, Entity { entity: "Ő", codepoints: Codepoints::Single(336), characters: "Ő" }, Entity { entity: "ő", codepoints: Codepoints::Single(337), characters: "ő" }, Entity { entity: "⨸", codepoints: Codepoints::Single(10808), characters: "⨸" }, Entity { entity: "⊙", codepoints: Codepoints::Single(8857), characters: "⊙" }, Entity { entity: "⦼", codepoints: Codepoints::Single(10684), characters: "⦼" }, Entity { entity: "Œ", codepoints: Codepoints::Single(338), characters: "Œ" }, Entity { entity: "œ", codepoints: Codepoints::Single(339), characters: "œ" }, Entity { entity: "⦿", codepoints: Codepoints::Single(10687), characters: "⦿" }, Entity { entity: "𝔒", codepoints: Codepoints::Single(120082), characters: "𝔒" }, Entity { entity: "𝔬", codepoints: Codepoints::Single(120108), characters: "𝔬" }, Entity { entity: "˛", codepoints: Codepoints::Single(731), characters: "˛" }, Entity { entity: "Ò", codepoints: Codepoints::Single(210), characters: "Ò" }, Entity { entity: "Ò", codepoints: Codepoints::Single(210), characters: "Ò" }, Entity { entity: "ò", codepoints: Codepoints::Single(242), characters: "ò" }, Entity { entity: "ò", codepoints: Codepoints::Single(242), characters: "ò" }, Entity { entity: "⧁", codepoints: Codepoints::Single(10689), characters: "⧁" }, Entity { entity: "⦵", codepoints: Codepoints::Single(10677), characters: "⦵" }, Entity { entity: "Ω", codepoints: Codepoints::Single(937), characters: "Ω" }, Entity { entity: "∮", codepoints: Codepoints::Single(8750), characters: "∮" }, Entity { entity: "↺", codepoints: Codepoints::Single(8634), characters: "↺" }, Entity { entity: "⦾", codepoints: Codepoints::Single(10686), characters: "⦾" }, Entity { entity: "⦻", codepoints: Codepoints::Single(10683), characters: "⦻" }, Entity { entity: "‾", codepoints: Codepoints::Single(8254), characters: "‾" }, Entity { entity: "⧀", codepoints: Codepoints::Single(10688), characters: "⧀" }, Entity { entity: "Ō", codepoints: Codepoints::Single(332), characters: "Ō" }, Entity { entity: "ō", codepoints: Codepoints::Single(333), characters: "ō" }, Entity { entity: "Ω", codepoints: Codepoints::Single(937), characters: "Ω" }, Entity { entity: "ω", codepoints: Codepoints::Single(969), characters: "ω" }, Entity { entity: "Ο", codepoints: Codepoints::Single(927), characters: "Ο" }, Entity { entity: "ο", codepoints: Codepoints::Single(959), characters: "ο" }, Entity { entity: "⦶", codepoints: Codepoints::Single(10678), characters: "⦶" }, Entity { entity: "⊖", codepoints: Codepoints::Single(8854), characters: "⊖" }, Entity { entity: "𝕆", codepoints: Codepoints::Single(120134), characters: "𝕆" }, Entity { entity: "𝕠", codepoints: Codepoints::Single(120160), characters: "𝕠" }, Entity { entity: "⦷", codepoints: Codepoints::Single(10679), characters: "⦷" }, Entity { entity: "“", codepoints: Codepoints::Single(8220), characters: "“" }, Entity { entity: "‘", codepoints: Codepoints::Single(8216), characters: "‘" }, Entity { entity: "⦹", codepoints: Codepoints::Single(10681), characters: "⦹" }, Entity { entity: "⊕", codepoints: Codepoints::Single(8853), characters: "⊕" }, Entity { entity: "⩔", codepoints: Codepoints::Single(10836), characters: "⩔" }, Entity { entity: "∨", codepoints: Codepoints::Single(8744), characters: "∨" }, Entity { entity: "↻", codepoints: Codepoints::Single(8635), characters: "↻" }, Entity { entity: "⩝", codepoints: Codepoints::Single(10845), characters: "⩝" }, Entity { entity: "ℴ", codepoints: Codepoints::Single(8500), characters: "ℴ" }, Entity { entity: "ℴ", codepoints: Codepoints::Single(8500), characters: "ℴ" }, Entity { entity: "ª", codepoints: Codepoints::Single(170), characters: "ª" }, Entity { entity: "ª", codepoints: Codepoints::Single(170), characters: "ª" }, Entity { entity: "º", codepoints: Codepoints::Single(186), characters: "º" }, Entity { entity: "º", codepoints: Codepoints::Single(186), characters: "º" }, Entity { entity: "⊶", codepoints: Codepoints::Single(8886), characters: "⊶" }, Entity { entity: "⩖", codepoints: Codepoints::Single(10838), characters: "⩖" }, Entity { entity: "⩗", codepoints: Codepoints::Single(10839), characters: "⩗" }, Entity { entity: "⩛", codepoints: Codepoints::Single(10843), characters: "⩛" }, Entity { entity: "Ⓢ", codepoints: Codepoints::Single(9416), characters: "Ⓢ" }, Entity { entity: "𝒪", codepoints: Codepoints::Single(119978), characters: "𝒪" }, Entity { entity: "ℴ", codepoints: Codepoints::Single(8500), characters: "ℴ" }, Entity { entity: "Ø", codepoints: Codepoints::Single(216), characters: "Ø" }, Entity { entity: "Ø", codepoints: Codepoints::Single(216), characters: "Ø" }, Entity { entity: "ø", codepoints: Codepoints::Single(248), characters: "ø" }, Entity { entity: "ø", codepoints: Codepoints::Single(248), characters: "ø" }, Entity { entity: "⊘", codepoints: Codepoints::Single(8856), characters: "⊘" }, Entity { entity: "Õ", codepoints: Codepoints::Single(213), characters: "Õ" }, Entity { entity: "Õ", codepoints: Codepoints::Single(213), characters: "Õ" }, Entity { entity: "õ", codepoints: Codepoints::Single(245), characters: "õ" }, Entity { entity: "õ", codepoints: Codepoints::Single(245), characters: "õ" }, Entity { entity: "⨷", codepoints: Codepoints::Single(10807), characters: "⨷" }, Entity { entity: "⊗", codepoints: Codepoints::Single(8855), characters: "⊗" }, Entity { entity: "⨶", codepoints: Codepoints::Single(10806), characters: "⨶" }, Entity { entity: "Ö", codepoints: Codepoints::Single(214), characters: "Ö" }, Entity { entity: "Ö", codepoints: Codepoints::Single(214), characters: "Ö" }, Entity { entity: "ö", codepoints: Codepoints::Single(246), characters: "ö" }, Entity { entity: "ö", codepoints: Codepoints::Single(246), characters: "ö" }, Entity { entity: "⌽", codepoints: Codepoints::Single(9021), characters: "⌽" }, Entity { entity: "‾", codepoints: Codepoints::Single(8254), characters: "‾" }, Entity { entity: "⏞", codepoints: Codepoints::Single(9182), characters: "⏞" }, Entity { entity: "⎴", codepoints: Codepoints::Single(9140), characters: "⎴" }, Entity { entity: "⏜", codepoints: Codepoints::Single(9180), characters: "⏜" }, Entity { entity: "∥", codepoints: Codepoints::Single(8741), characters: "∥" }, Entity { entity: "¶", codepoints: Codepoints::Single(182), characters: "¶" }, Entity { entity: "¶", codepoints: Codepoints::Single(182), characters: "¶" }, Entity { entity: "∥", codepoints: Codepoints::Single(8741), characters: "∥" }, Entity { entity: "⫳", codepoints: Codepoints::Single(10995), characters: "⫳" }, Entity { entity: "⫽", codepoints: Codepoints::Single(11005), characters: "⫽" }, Entity { entity: "∂", codepoints: Codepoints::Single(8706), characters: "∂" }, Entity { entity: "∂", codepoints: Codepoints::Single(8706), characters: "∂" }, Entity { entity: "П", codepoints: Codepoints::Single(1055), characters: "П" }, Entity { entity: "п", codepoints: Codepoints::Single(1087), characters: "п" }, Entity { entity: "%", codepoints: Codepoints::Single(37), characters: "%" }, Entity { entity: ".", codepoints: Codepoints::Single(46), characters: "." }, Entity { entity: "‰", codepoints: Codepoints::Single(8240), characters: "‰" }, Entity { entity: "⊥", codepoints: Codepoints::Single(8869), characters: "⊥" }, Entity { entity: "‱", codepoints: Codepoints::Single(8241), characters: "‱" }, Entity { entity: "𝔓", codepoints: Codepoints::Single(120083), characters: "𝔓" }, Entity { entity: "𝔭", codepoints: Codepoints::Single(120109), characters: "𝔭" }, Entity { entity: "Φ", codepoints: Codepoints::Single(934), characters: "Φ" }, Entity { entity: "φ", codepoints: Codepoints::Single(966), characters: "φ" }, Entity { entity: "ϕ", codepoints: Codepoints::Single(981), characters: "ϕ" }, Entity { entity: "ℳ", codepoints: Codepoints::Single(8499), characters: "ℳ" }, Entity { entity: "☎", codepoints: Codepoints::Single(9742), characters: "☎" }, Entity { entity: "Π", codepoints: Codepoints::Single(928), characters: "Π" }, Entity { entity: "π", codepoints: Codepoints::Single(960), characters: "π" }, Entity { entity: "⋔", codepoints: Codepoints::Single(8916), characters: "⋔" }, Entity { entity: "ϖ", codepoints: Codepoints::Single(982), characters: "ϖ" }, Entity { entity: "ℏ", codepoints: Codepoints::Single(8463), characters: "ℏ" }, Entity { entity: "ℎ", codepoints: Codepoints::Single(8462), characters: "ℎ" }, Entity { entity: "ℏ", codepoints: Codepoints::Single(8463), characters: "ℏ" }, Entity { entity: "+", codepoints: Codepoints::Single(43), characters: "+" }, Entity { entity: "⨣", codepoints: Codepoints::Single(10787), characters: "⨣" }, Entity { entity: "⊞", codepoints: Codepoints::Single(8862), characters: "⊞" }, Entity { entity: "⨢", codepoints: Codepoints::Single(10786), characters: "⨢" }, Entity { entity: "∔", codepoints: Codepoints::Single(8724), characters: "∔" }, Entity { entity: "⨥", codepoints: Codepoints::Single(10789), characters: "⨥" }, Entity { entity: "⩲", codepoints: Codepoints::Single(10866), characters: "⩲" }, Entity { entity: "±", codepoints: Codepoints::Single(177), characters: "±" }, Entity { entity: "±", codepoints: Codepoints::Single(177), characters: "±" }, Entity { entity: "±", codepoints: Codepoints::Single(177), characters: "±" }, Entity { entity: "⨦", codepoints: Codepoints::Single(10790), characters: "⨦" }, Entity { entity: "⨧", codepoints: Codepoints::Single(10791), characters: "⨧" }, Entity { entity: "±", codepoints: Codepoints::Single(177), characters: "±" }, Entity { entity: "ℌ", codepoints: Codepoints::Single(8460), characters: "ℌ" }, Entity { entity: "⨕", codepoints: Codepoints::Single(10773), characters: "⨕" }, Entity { entity: "ℙ", codepoints: Codepoints::Single(8473), characters: "ℙ" }, Entity { entity: "𝕡", codepoints: Codepoints::Single(120161), characters: "𝕡" }, Entity { entity: "£", codepoints: Codepoints::Single(163), characters: "£" }, Entity { entity: "£", codepoints: Codepoints::Single(163), characters: "£" }, Entity { entity: "⪻", codepoints: Codepoints::Single(10939), characters: "⪻" }, Entity { entity: "≺", codepoints: Codepoints::Single(8826), characters: "≺" }, Entity { entity: "⪷", codepoints: Codepoints::Single(10935), characters: "⪷" }, Entity { entity: "≼", codepoints: Codepoints::Single(8828), characters: "≼" }, Entity { entity: "⪳", codepoints: Codepoints::Single(10931), characters: "⪳" }, Entity { entity: "⪯", codepoints: Codepoints::Single(10927), characters: "⪯" }, Entity { entity: "≺", codepoints: Codepoints::Single(8826), characters: "≺" }, Entity { entity: "⪷", codepoints: Codepoints::Single(10935), characters: "⪷" }, Entity { entity: "≼", codepoints: Codepoints::Single(8828), characters: "≼" }, Entity { entity: "≺", codepoints: Codepoints::Single(8826), characters: "≺" }, Entity { entity: "⪯", codepoints: Codepoints::Single(10927), characters: "⪯" }, Entity { entity: "≼", codepoints: Codepoints::Single(8828), characters: "≼" }, Entity { entity: "≾", codepoints: Codepoints::Single(8830), characters: "≾" }, Entity { entity: "⪯", codepoints: Codepoints::Single(10927), characters: "⪯" }, Entity { entity: "⪹", codepoints: Codepoints::Single(10937), characters: "⪹" }, Entity { entity: "⪵", codepoints: Codepoints::Single(10933), characters: "⪵" }, Entity { entity: "⋨", codepoints: Codepoints::Single(8936), characters: "⋨" }, Entity { entity: "≾", codepoints: Codepoints::Single(8830), characters: "≾" }, Entity { entity: "″", codepoints: Codepoints::Single(8243), characters: "″" }, Entity { entity: "′", codepoints: Codepoints::Single(8242), characters: "′" }, Entity { entity: "ℙ", codepoints: Codepoints::Single(8473), characters: "ℙ" }, Entity { entity: "⪹", codepoints: Codepoints::Single(10937), characters: "⪹" }, Entity { entity: "⪵", codepoints: Codepoints::Single(10933), characters: "⪵" }, Entity { entity: "⋨", codepoints: Codepoints::Single(8936), characters: "⋨" }, Entity { entity: "∏", codepoints: Codepoints::Single(8719), characters: "∏" }, Entity { entity: "∏", codepoints: Codepoints::Single(8719), characters: "∏" }, Entity { entity: "⌮", codepoints: Codepoints::Single(9006), characters: "⌮" }, Entity { entity: "⌒", codepoints: Codepoints::Single(8978), characters: "⌒" }, Entity { entity: "⌓", codepoints: Codepoints::Single(8979), characters: "⌓" }, Entity { entity: "∝", codepoints: Codepoints::Single(8733), characters: "∝" }, Entity { entity: "∷", codepoints: Codepoints::Single(8759), characters: "∷" }, Entity { entity: "∝", codepoints: Codepoints::Single(8733), characters: "∝" }, Entity { entity: "∝", codepoints: Codepoints::Single(8733), characters: "∝" }, Entity { entity: "≾", codepoints: Codepoints::Single(8830), characters: "≾" }, Entity { entity: "⊰", codepoints: Codepoints::Single(8880), characters: "⊰" }, Entity { entity: "𝒫", codepoints: Codepoints::Single(119979), characters: "𝒫" }, Entity { entity: "𝓅", codepoints: Codepoints::Single(120005), characters: "𝓅" }, Entity { entity: "Ψ", codepoints: Codepoints::Single(936), characters: "Ψ" }, Entity { entity: "ψ", codepoints: Codepoints::Single(968), characters: "ψ" }, Entity { entity: " ", codepoints: Codepoints::Single(8200), characters: " " }, Entity { entity: "𝔔", codepoints: Codepoints::Single(120084), characters: "𝔔" }, Entity { entity: "𝔮", codepoints: Codepoints::Single(120110), characters: "𝔮" }, Entity { entity: "⨌", codepoints: Codepoints::Single(10764), characters: "⨌" }, Entity { entity: "ℚ", codepoints: Codepoints::Single(8474), characters: "ℚ" }, Entity { entity: "𝕢", codepoints: Codepoints::Single(120162), characters: "𝕢" }, Entity { entity: "⁗", codepoints: Codepoints::Single(8279), characters: "⁗" }, Entity { entity: "𝒬", codepoints: Codepoints::Single(119980), characters: "𝒬" }, Entity { entity: "𝓆", codepoints: Codepoints::Single(120006), characters: "𝓆" }, Entity { entity: "ℍ", codepoints: Codepoints::Single(8461), characters: "ℍ" }, Entity { entity: "⨖", codepoints: Codepoints::Single(10774), characters: "⨖" }, Entity { entity: "?", codepoints: Codepoints::Single(63), characters: "?" }, Entity { entity: "≟", codepoints: Codepoints::Single(8799), characters: "≟" }, Entity { entity: """, codepoints: Codepoints::Single(34), characters: "\"" }, Entity { entity: """, codepoints: Codepoints::Single(34), characters: "\"" }, Entity { entity: """, codepoints: Codepoints::Single(34), characters: "\"" }, Entity { entity: """, codepoints: Codepoints::Single(34), characters: "\"" }, Entity { entity: "⇛", codepoints: Codepoints::Single(8667), characters: "⇛" }, Entity { entity: "∽̱", codepoints: Codepoints::Double(8765, 817), characters: "∽̱" }, Entity { entity: "Ŕ", codepoints: Codepoints::Single(340), characters: "Ŕ" }, Entity { entity: "ŕ", codepoints: Codepoints::Single(341), characters: "ŕ" }, Entity { entity: "√", codepoints: Codepoints::Single(8730), characters: "√" }, Entity { entity: "⦳", codepoints: Codepoints::Single(10675), characters: "⦳" }, Entity { entity: "⟫", codepoints: Codepoints::Single(10219), characters: "⟫" }, Entity { entity: "⟩", codepoints: Codepoints::Single(10217), characters: "⟩" }, Entity { entity: "⦒", codepoints: Codepoints::Single(10642), characters: "⦒" }, Entity { entity: "⦥", codepoints: Codepoints::Single(10661), characters: "⦥" }, Entity { entity: "⟩", codepoints: Codepoints::Single(10217), characters: "⟩" }, Entity { entity: "»", codepoints: Codepoints::Single(187), characters: "»" }, Entity { entity: "»", codepoints: Codepoints::Single(187), characters: "»" }, Entity { entity: "↠", codepoints: Codepoints::Single(8608), characters: "↠" }, Entity { entity: "⇒", codepoints: Codepoints::Single(8658), characters: "⇒" }, Entity { entity: "→", codepoints: Codepoints::Single(8594), characters: "→" }, Entity { entity: "⥵", codepoints: Codepoints::Single(10613), characters: "⥵" }, Entity { entity: "⇥", codepoints: Codepoints::Single(8677), characters: "⇥" }, Entity { entity: "⤠", codepoints: Codepoints::Single(10528), characters: "⤠" }, Entity { entity: "⤳", codepoints: Codepoints::Single(10547), characters: "⤳" }, Entity { entity: "⤞", codepoints: Codepoints::Single(10526), characters: "⤞" }, Entity { entity: "↪", codepoints: Codepoints::Single(8618), characters: "↪" }, Entity { entity: "↬", codepoints: Codepoints::Single(8620), characters: "↬" }, Entity { entity: "⥅", codepoints: Codepoints::Single(10565), characters: "⥅" }, Entity { entity: "⥴", codepoints: Codepoints::Single(10612), characters: "⥴" }, Entity { entity: "⤖", codepoints: Codepoints::Single(10518), characters: "⤖" }, Entity { entity: "↣", codepoints: Codepoints::Single(8611), characters: "↣" }, Entity { entity: "↝", codepoints: Codepoints::Single(8605), characters: "↝" }, Entity { entity: "⤜", codepoints: Codepoints::Single(10524), characters: "⤜" }, Entity { entity: "⤚", codepoints: Codepoints::Single(10522), characters: "⤚" }, Entity { entity: "∶", codepoints: Codepoints::Single(8758), characters: "∶" }, Entity { entity: "ℚ", codepoints: Codepoints::Single(8474), characters: "ℚ" }, Entity { entity: "⤐", codepoints: Codepoints::Single(10512), characters: "⤐" }, Entity { entity: "⤏", codepoints: Codepoints::Single(10511), characters: "⤏" }, Entity { entity: "⤍", codepoints: Codepoints::Single(10509), characters: "⤍" }, Entity { entity: "❳", codepoints: Codepoints::Single(10099), characters: "❳" }, Entity { entity: "}", codepoints: Codepoints::Single(125), characters: "}" }, Entity { entity: "]", codepoints: Codepoints::Single(93), characters: "]" }, Entity { entity: "⦌", codepoints: Codepoints::Single(10636), characters: "⦌" }, Entity { entity: "⦎", codepoints: Codepoints::Single(10638), characters: "⦎" }, Entity { entity: "⦐", codepoints: Codepoints::Single(10640), characters: "⦐" }, Entity { entity: "Ř", codepoints: Codepoints::Single(344), characters: "Ř" }, Entity { entity: "ř", codepoints: Codepoints::Single(345), characters: "ř" }, Entity { entity: "Ŗ", codepoints: Codepoints::Single(342), characters: "Ŗ" }, Entity { entity: "ŗ", codepoints: Codepoints::Single(343), characters: "ŗ" }, Entity { entity: "⌉", codepoints: Codepoints::Single(8969), characters: "⌉" }, Entity { entity: "}", codepoints: Codepoints::Single(125), characters: "}" }, Entity { entity: "Р", codepoints: Codepoints::Single(1056), characters: "Р" }, Entity { entity: "р", codepoints: Codepoints::Single(1088), characters: "р" }, Entity { entity: "⤷", codepoints: Codepoints::Single(10551), characters: "⤷" }, Entity { entity: "⥩", codepoints: Codepoints::Single(10601), characters: "⥩" }, Entity { entity: "”", codepoints: Codepoints::Single(8221), characters: "”" }, Entity { entity: "”", codepoints: Codepoints::Single(8221), characters: "”" }, Entity { entity: "↳", codepoints: Codepoints::Single(8627), characters: "↳" }, Entity { entity: "ℜ", codepoints: Codepoints::Single(8476), characters: "ℜ" }, Entity { entity: "ℜ", codepoints: Codepoints::Single(8476), characters: "ℜ" }, Entity { entity: "ℛ", codepoints: Codepoints::Single(8475), characters: "ℛ" }, Entity { entity: "ℜ", codepoints: Codepoints::Single(8476), characters: "ℜ" }, Entity { entity: "ℝ", codepoints: Codepoints::Single(8477), characters: "ℝ" }, Entity { entity: "▭", codepoints: Codepoints::Single(9645), characters: "▭" }, Entity { entity: "®", codepoints: Codepoints::Single(174), characters: "®" }, Entity { entity: "®", codepoints: Codepoints::Single(174), characters: "®" }, Entity { entity: "®", codepoints: Codepoints::Single(174), characters: "®" }, Entity { entity: "®", codepoints: Codepoints::Single(174), characters: "®" }, Entity { entity: "∋", codepoints: Codepoints::Single(8715), characters: "∋" }, Entity { entity: "⇋", codepoints: Codepoints::Single(8651), characters: "⇋" }, Entity { entity: "⥯", codepoints: Codepoints::Single(10607), characters: "⥯" }, Entity { entity: "⥽", codepoints: Codepoints::Single(10621), characters: "⥽" }, Entity { entity: "⌋", codepoints: Codepoints::Single(8971), characters: "⌋" }, Entity { entity: "ℜ", codepoints: Codepoints::Single(8476), characters: "ℜ" }, Entity { entity: "𝔯", codepoints: Codepoints::Single(120111), characters: "𝔯" }, Entity { entity: "⥤", codepoints: Codepoints::Single(10596), characters: "⥤" }, Entity { entity: "⇁", codepoints: Codepoints::Single(8641), characters: "⇁" }, Entity { entity: "⇀", codepoints: Codepoints::Single(8640), characters: "⇀" }, Entity { entity: "⥬", codepoints: Codepoints::Single(10604), characters: "⥬" }, Entity { entity: "Ρ", codepoints: Codepoints::Single(929), characters: "Ρ" }, Entity { entity: "ρ", codepoints: Codepoints::Single(961), characters: "ρ" }, Entity { entity: "ϱ", codepoints: Codepoints::Single(1009), characters: "ϱ" }, Entity { entity: "⟩", codepoints: Codepoints::Single(10217), characters: "⟩" }, Entity { entity: "→", codepoints: Codepoints::Single(8594), characters: "→" }, Entity { entity: "⇒", codepoints: Codepoints::Single(8658), characters: "⇒" }, Entity { entity: "→", codepoints: Codepoints::Single(8594), characters: "→" }, Entity { entity: "⇥", codepoints: Codepoints::Single(8677), characters: "⇥" }, Entity { entity: "⇄", codepoints: Codepoints::Single(8644), characters: "⇄" }, Entity { entity: "↣", codepoints: Codepoints::Single(8611), characters: "↣" }, Entity { entity: "⌉", codepoints: Codepoints::Single(8969), characters: "⌉" }, Entity { entity: "⟧", codepoints: Codepoints::Single(10215), characters: "⟧" }, Entity { entity: "⥝", codepoints: Codepoints::Single(10589), characters: "⥝" }, Entity { entity: "⇂", codepoints: Codepoints::Single(8642), characters: "⇂" }, Entity { entity: "⥕", codepoints: Codepoints::Single(10581), characters: "⥕" }, Entity { entity: "⌋", codepoints: Codepoints::Single(8971), characters: "⌋" }, Entity { entity: "⇁", codepoints: Codepoints::Single(8641), characters: "⇁" }, Entity { entity: "⇀", codepoints: Codepoints::Single(8640), characters: "⇀" }, Entity { entity: "⇄", codepoints: Codepoints::Single(8644), characters: "⇄" }, Entity { entity: "⇌", codepoints: Codepoints::Single(8652), characters: "⇌" }, Entity { entity: "⇉", codepoints: Codepoints::Single(8649), characters: "⇉" }, Entity { entity: "↝", codepoints: Codepoints::Single(8605), characters: "↝" }, Entity { entity: "⊢", codepoints: Codepoints::Single(8866), characters: "⊢" }, Entity { entity: "↦", codepoints: Codepoints::Single(8614), characters: "↦" }, Entity { entity: "⥛", codepoints: Codepoints::Single(10587), characters: "⥛" }, Entity { entity: "⋌", codepoints: Codepoints::Single(8908), characters: "⋌" }, Entity { entity: "⊳", codepoints: Codepoints::Single(8883), characters: "⊳" }, Entity { entity: "⧐", codepoints: Codepoints::Single(10704), characters: "⧐" }, Entity { entity: "⊵", codepoints: Codepoints::Single(8885), characters: "⊵" }, Entity { entity: "⥏", codepoints: Codepoints::Single(10575), characters: "⥏" }, Entity { entity: "⥜", codepoints: Codepoints::Single(10588), characters: "⥜" }, Entity { entity: "↾", codepoints: Codepoints::Single(8638), characters: "↾" }, Entity { entity: "⥔", codepoints: Codepoints::Single(10580), characters: "⥔" }, Entity { entity: "⇀", codepoints: Codepoints::Single(8640), characters: "⇀" }, Entity { entity: "⥓", codepoints: Codepoints::Single(10579), characters: "⥓" }, Entity { entity: "˚", codepoints: Codepoints::Single(730), characters: "˚" }, Entity { entity: "≓", codepoints: Codepoints::Single(8787), characters: "≓" }, Entity { entity: "⇄", codepoints: Codepoints::Single(8644), characters: "⇄" }, Entity { entity: "⇌", codepoints: Codepoints::Single(8652), characters: "⇌" }, Entity { entity: "‏", codepoints: Codepoints::Single(8207), characters: "‏" }, Entity { entity: "⎱", codepoints: Codepoints::Single(9137), characters: "⎱" }, Entity { entity: "⎱", codepoints: Codepoints::Single(9137), characters: "⎱" }, Entity { entity: "⫮", codepoints: Codepoints::Single(10990), characters: "⫮" }, Entity { entity: "⟭", codepoints: Codepoints::Single(10221), characters: "⟭" }, Entity { entity: "⇾", codepoints: Codepoints::Single(8702), characters: "⇾" }, Entity { entity: "⟧", codepoints: Codepoints::Single(10215), characters: "⟧" }, Entity { entity: "⦆", codepoints: Codepoints::Single(10630), characters: "⦆" }, Entity { entity: "ℝ", codepoints: Codepoints::Single(8477), characters: "ℝ" }, Entity { entity: "𝕣", codepoints: Codepoints::Single(120163), characters: "𝕣" }, Entity { entity: "⨮", codepoints: Codepoints::Single(10798), characters: "⨮" }, Entity { entity: "⨵", codepoints: Codepoints::Single(10805), characters: "⨵" }, Entity { entity: "⥰", codepoints: Codepoints::Single(10608), characters: "⥰" }, Entity { entity: ")", codepoints: Codepoints::Single(41), characters: ")" }, Entity { entity: "⦔", codepoints: Codepoints::Single(10644), characters: "⦔" }, Entity { entity: "⨒", codepoints: Codepoints::Single(10770), characters: "⨒" }, Entity { entity: "⇉", codepoints: Codepoints::Single(8649), characters: "⇉" }, Entity { entity: "⇛", codepoints: Codepoints::Single(8667), characters: "⇛" }, Entity { entity: "›", codepoints: Codepoints::Single(8250), characters: "›" }, Entity { entity: "ℛ", codepoints: Codepoints::Single(8475), characters: "ℛ" }, Entity { entity: "𝓇", codepoints: Codepoints::Single(120007), characters: "𝓇" }, Entity { entity: "↱", codepoints: Codepoints::Single(8625), characters: "↱" }, Entity { entity: "↱", codepoints: Codepoints::Single(8625), characters: "↱" }, Entity { entity: "]", codepoints: Codepoints::Single(93), characters: "]" }, Entity { entity: "’", codepoints: Codepoints::Single(8217), characters: "’" }, Entity { entity: "’", codepoints: Codepoints::Single(8217), characters: "’" }, Entity { entity: "⋌", codepoints: Codepoints::Single(8908), characters: "⋌" }, Entity { entity: "⋊", codepoints: Codepoints::Single(8906), characters: "⋊" }, Entity { entity: "▹", codepoints: Codepoints::Single(9657), characters: "▹" }, Entity { entity: "⊵", codepoints: Codepoints::Single(8885), characters: "⊵" }, Entity { entity: "▸", codepoints: Codepoints::Single(9656), characters: "▸" }, Entity { entity: "⧎", codepoints: Codepoints::Single(10702), characters: "⧎" }, Entity { entity: "⧴", codepoints: Codepoints::Single(10740), characters: "⧴" }, Entity { entity: "⥨", codepoints: Codepoints::Single(10600), characters: "⥨" }, Entity { entity: "℞", codepoints: Codepoints::Single(8478), characters: "℞" }, Entity { entity: "Ś", codepoints: Codepoints::Single(346), characters: "Ś" }, Entity { entity: "ś", codepoints: Codepoints::Single(347), characters: "ś" }, Entity { entity: "‚", codepoints: Codepoints::Single(8218), characters: "‚" }, Entity { entity: "⪼", codepoints: Codepoints::Single(10940), characters: "⪼" }, Entity { entity: "≻", codepoints: Codepoints::Single(8827), characters: "≻" }, Entity { entity: "⪸", codepoints: Codepoints::Single(10936), characters: "⪸" }, Entity { entity: "Š", codepoints: Codepoints::Single(352), characters: "Š" }, Entity { entity: "š", codepoints: Codepoints::Single(353), characters: "š" }, Entity { entity: "≽", codepoints: Codepoints::Single(8829), characters: "≽" }, Entity { entity: "⪴", codepoints: Codepoints::Single(10932), characters: "⪴" }, Entity { entity: "⪰", codepoints: Codepoints::Single(10928), characters: "⪰" }, Entity { entity: "Ş", codepoints: Codepoints::Single(350), characters: "Ş" }, Entity { entity: "ş", codepoints: Codepoints::Single(351), characters: "ş" }, Entity { entity: "Ŝ", codepoints: Codepoints::Single(348), characters: "Ŝ" }, Entity { entity: "ŝ", codepoints: Codepoints::Single(349), characters: "ŝ" }, Entity { entity: "⪺", codepoints: Codepoints::Single(10938), characters: "⪺" }, Entity { entity: "⪶", codepoints: Codepoints::Single(10934), characters: "⪶" }, Entity { entity: "⋩", codepoints: Codepoints::Single(8937), characters: "⋩" }, Entity { entity: "⨓", codepoints: Codepoints::Single(10771), characters: "⨓" }, Entity { entity: "≿", codepoints: Codepoints::Single(8831), characters: "≿" }, Entity { entity: "С", codepoints: Codepoints::Single(1057), characters: "С" }, Entity { entity: "с", codepoints: Codepoints::Single(1089), characters: "с" }, Entity { entity: "⋅", codepoints: Codepoints::Single(8901), characters: "⋅" }, Entity { entity: "⊡", codepoints: Codepoints::Single(8865), characters: "⊡" }, Entity { entity: "⩦", codepoints: Codepoints::Single(10854), characters: "⩦" }, Entity { entity: "⤥", codepoints: Codepoints::Single(10533), characters: "⤥" }, Entity { entity: "⇘", codepoints: Codepoints::Single(8664), characters: "⇘" }, Entity { entity: "↘", codepoints: Codepoints::Single(8600), characters: "↘" }, Entity { entity: "↘", codepoints: Codepoints::Single(8600), characters: "↘" }, Entity { entity: "§", codepoints: Codepoints::Single(167), characters: "§" }, Entity { entity: "§", codepoints: Codepoints::Single(167), characters: "§" }, Entity { entity: ";", codepoints: Codepoints::Single(59), characters: ";" }, Entity { entity: "⤩", codepoints: Codepoints::Single(10537), characters: "⤩" }, Entity { entity: "∖", codepoints: Codepoints::Single(8726), characters: "∖" }, Entity { entity: "∖", codepoints: Codepoints::Single(8726), characters: "∖" }, Entity { entity: "✶", codepoints: Codepoints::Single(10038), characters: "✶" }, Entity { entity: "𝔖", codepoints: Codepoints::Single(120086), characters: "𝔖" }, Entity { entity: "𝔰", codepoints: Codepoints::Single(120112), characters: "𝔰" }, Entity { entity: "⌢", codepoints: Codepoints::Single(8994), characters: "⌢" }, Entity { entity: "♯", codepoints: Codepoints::Single(9839), characters: "♯" }, Entity { entity: "Щ", codepoints: Codepoints::Single(1065), characters: "Щ" }, Entity { entity: "щ", codepoints: Codepoints::Single(1097), characters: "щ" }, Entity { entity: "Ш", codepoints: Codepoints::Single(1064), characters: "Ш" }, Entity { entity: "ш", codepoints: Codepoints::Single(1096), characters: "ш" }, Entity { entity: "↓", codepoints: Codepoints::Single(8595), characters: "↓" }, Entity { entity: "←", codepoints: Codepoints::Single(8592), characters: "←" }, Entity { entity: "∣", codepoints: Codepoints::Single(8739), characters: "∣" }, Entity { entity: "∥", codepoints: Codepoints::Single(8741), characters: "∥" }, Entity { entity: "→", codepoints: Codepoints::Single(8594), characters: "→" }, Entity { entity: "↑", codepoints: Codepoints::Single(8593), characters: "↑" }, Entity { entity: "­", codepoints: Codepoints::Single(173), characters: "­" }, Entity { entity: "­", codepoints: Codepoints::Single(173), characters: "­" }, Entity { entity: "Σ", codepoints: Codepoints::Single(931), characters: "Σ" }, Entity { entity: "σ", codepoints: Codepoints::Single(963), characters: "σ" }, Entity { entity: "ς", codepoints: Codepoints::Single(962), characters: "ς" }, Entity { entity: "ς", codepoints: Codepoints::Single(962), characters: "ς" }, Entity { entity: "∼", codepoints: Codepoints::Single(8764), characters: "∼" }, Entity { entity: "⩪", codepoints: Codepoints::Single(10858), characters: "⩪" }, Entity { entity: "≃", codepoints: Codepoints::Single(8771), characters: "≃" }, Entity { entity: "≃", codepoints: Codepoints::Single(8771), characters: "≃" }, Entity { entity: "⪞", codepoints: Codepoints::Single(10910), characters: "⪞" }, Entity { entity: "⪠", codepoints: Codepoints::Single(10912), characters: "⪠" }, Entity { entity: "⪝", codepoints: Codepoints::Single(10909), characters: "⪝" }, Entity { entity: "⪟", codepoints: Codepoints::Single(10911), characters: "⪟" }, Entity { entity: "≆", codepoints: Codepoints::Single(8774), characters: "≆" }, Entity { entity: "⨤", codepoints: Codepoints::Single(10788), characters: "⨤" }, Entity { entity: "⥲", codepoints: Codepoints::Single(10610), characters: "⥲" }, Entity { entity: "←", codepoints: Codepoints::Single(8592), characters: "←" }, Entity { entity: "∘", codepoints: Codepoints::Single(8728), characters: "∘" }, Entity { entity: "∖", codepoints: Codepoints::Single(8726), characters: "∖" }, Entity { entity: "⨳", codepoints: Codepoints::Single(10803), characters: "⨳" }, Entity { entity: "⧤", codepoints: Codepoints::Single(10724), characters: "⧤" }, Entity { entity: "∣", codepoints: Codepoints::Single(8739), characters: "∣" }, Entity { entity: "⌣", codepoints: Codepoints::Single(8995), characters: "⌣" }, Entity { entity: "⪪", codepoints: Codepoints::Single(10922), characters: "⪪" }, Entity { entity: "⪬", codepoints: Codepoints::Single(10924), characters: "⪬" }, Entity { entity: "⪬︀", codepoints: Codepoints::Double(10924, 65024), characters: "⪬︀" }, Entity { entity: "Ь", codepoints: Codepoints::Single(1068), characters: "Ь" }, Entity { entity: "ь", codepoints: Codepoints::Single(1100), characters: "ь" }, Entity { entity: "/", codepoints: Codepoints::Single(47), characters: "/" }, Entity { entity: "⧄", codepoints: Codepoints::Single(10692), characters: "⧄" }, Entity { entity: "⌿", codepoints: Codepoints::Single(9023), characters: "⌿" }, Entity { entity: "𝕊", codepoints: Codepoints::Single(120138), characters: "𝕊" }, Entity { entity: "𝕤", codepoints: Codepoints::Single(120164), characters: "𝕤" }, Entity { entity: "♠", codepoints: Codepoints::Single(9824), characters: "♠" }, Entity { entity: "♠", codepoints: Codepoints::Single(9824), characters: "♠" }, Entity { entity: "∥", codepoints: Codepoints::Single(8741), characters: "∥" }, Entity { entity: "⊓", codepoints: Codepoints::Single(8851), characters: "⊓" }, Entity { entity: "⊓︀", codepoints: Codepoints::Double(8851, 65024), characters: "⊓︀" }, Entity { entity: "⊔", codepoints: Codepoints::Single(8852), characters: "⊔" }, Entity { entity: "⊔︀", codepoints: Codepoints::Double(8852, 65024), characters: "⊔︀" }, Entity { entity: "√", codepoints: Codepoints::Single(8730), characters: "√" }, Entity { entity: "⊏", codepoints: Codepoints::Single(8847), characters: "⊏" }, Entity { entity: "⊑", codepoints: Codepoints::Single(8849), characters: "⊑" }, Entity { entity: "⊏", codepoints: Codepoints::Single(8847), characters: "⊏" }, Entity { entity: "⊑", codepoints: Codepoints::Single(8849), characters: "⊑" }, Entity { entity: "⊐", codepoints: Codepoints::Single(8848), characters: "⊐" }, Entity { entity: "⊒", codepoints: Codepoints::Single(8850), characters: "⊒" }, Entity { entity: "⊐", codepoints: Codepoints::Single(8848), characters: "⊐" }, Entity { entity: "⊒", codepoints: Codepoints::Single(8850), characters: "⊒" }, Entity { entity: "□", codepoints: Codepoints::Single(9633), characters: "□" }, Entity { entity: "□", codepoints: Codepoints::Single(9633), characters: "□" }, Entity { entity: "□", codepoints: Codepoints::Single(9633), characters: "□" }, Entity { entity: "⊓", codepoints: Codepoints::Single(8851), characters: "⊓" }, Entity { entity: "⊏", codepoints: Codepoints::Single(8847), characters: "⊏" }, Entity { entity: "⊑", codepoints: Codepoints::Single(8849), characters: "⊑" }, Entity { entity: "⊐", codepoints: Codepoints::Single(8848), characters: "⊐" }, Entity { entity: "⊒", codepoints: Codepoints::Single(8850), characters: "⊒" }, Entity { entity: "⊔", codepoints: Codepoints::Single(8852), characters: "⊔" }, Entity { entity: "▪", codepoints: Codepoints::Single(9642), characters: "▪" }, Entity { entity: "▪", codepoints: Codepoints::Single(9642), characters: "▪" }, Entity { entity: "→", codepoints: Codepoints::Single(8594), characters: "→" }, Entity { entity: "𝒮", codepoints: Codepoints::Single(119982), characters: "𝒮" }, Entity { entity: "𝓈", codepoints: Codepoints::Single(120008), characters: "𝓈" }, Entity { entity: "∖", codepoints: Codepoints::Single(8726), characters: "∖" }, Entity { entity: "⌣", codepoints: Codepoints::Single(8995), characters: "⌣" }, Entity { entity: "⋆", codepoints: Codepoints::Single(8902), characters: "⋆" }, Entity { entity: "⋆", codepoints: Codepoints::Single(8902), characters: "⋆" }, Entity { entity: "☆", codepoints: Codepoints::Single(9734), characters: "☆" }, Entity { entity: "★", codepoints: Codepoints::Single(9733), characters: "★" }, Entity { entity: "ϵ", codepoints: Codepoints::Single(1013), characters: "ϵ" }, Entity { entity: "ϕ", codepoints: Codepoints::Single(981), characters: "ϕ" }, Entity { entity: "¯", codepoints: Codepoints::Single(175), characters: "¯" }, Entity { entity: "⋐", codepoints: Codepoints::Single(8912), characters: "⋐" }, Entity { entity: "⊂", codepoints: Codepoints::Single(8834), characters: "⊂" }, Entity { entity: "⪽", codepoints: Codepoints::Single(10941), characters: "⪽" }, Entity { entity: "⫅", codepoints: Codepoints::Single(10949), characters: "⫅" }, Entity { entity: "⊆", codepoints: Codepoints::Single(8838), characters: "⊆" }, Entity { entity: "⫃", codepoints: Codepoints::Single(10947), characters: "⫃" }, Entity { entity: "⫁", codepoints: Codepoints::Single(10945), characters: "⫁" }, Entity { entity: "⫋", codepoints: Codepoints::Single(10955), characters: "⫋" }, Entity { entity: "⊊", codepoints: Codepoints::Single(8842), characters: "⊊" }, Entity { entity: "⪿", codepoints: Codepoints::Single(10943), characters: "⪿" }, Entity { entity: "⥹", codepoints: Codepoints::Single(10617), characters: "⥹" }, Entity { entity: "⋐", codepoints: Codepoints::Single(8912), characters: "⋐" }, Entity { entity: "⊂", codepoints: Codepoints::Single(8834), characters: "⊂" }, Entity { entity: "⊆", codepoints: Codepoints::Single(8838), characters: "⊆" }, Entity { entity: "⫅", codepoints: Codepoints::Single(10949), characters: "⫅" }, Entity { entity: "⊆", codepoints: Codepoints::Single(8838), characters: "⊆" }, Entity { entity: "⊊", codepoints: Codepoints::Single(8842), characters: "⊊" }, Entity { entity: "⫋", codepoints: Codepoints::Single(10955), characters: "⫋" }, Entity { entity: "⫇", codepoints: Codepoints::Single(10951), characters: "⫇" }, Entity { entity: "⫕", codepoints: Codepoints::Single(10965), characters: "⫕" }, Entity { entity: "⫓", codepoints: Codepoints::Single(10963), characters: "⫓" }, Entity { entity: "≻", codepoints: Codepoints::Single(8827), characters: "≻" }, Entity { entity: "⪸", codepoints: Codepoints::Single(10936), characters: "⪸" }, Entity { entity: "≽", codepoints: Codepoints::Single(8829), characters: "≽" }, Entity { entity: "≻", codepoints: Codepoints::Single(8827), characters: "≻" }, Entity { entity: "⪰", codepoints: Codepoints::Single(10928), characters: "⪰" }, Entity { entity: "≽", codepoints: Codepoints::Single(8829), characters: "≽" }, Entity { entity: "≿", codepoints: Codepoints::Single(8831), characters: "≿" }, Entity { entity: "⪰", codepoints: Codepoints::Single(10928), characters: "⪰" }, Entity { entity: "⪺", codepoints: Codepoints::Single(10938), characters: "⪺" }, Entity { entity: "⪶", codepoints: Codepoints::Single(10934), characters: "⪶" }, Entity { entity: "⋩", codepoints: Codepoints::Single(8937), characters: "⋩" }, Entity { entity: "≿", codepoints: Codepoints::Single(8831), characters: "≿" }, Entity { entity: "∋", codepoints: Codepoints::Single(8715), characters: "∋" }, Entity { entity: "∑", codepoints: Codepoints::Single(8721), characters: "∑" }, Entity { entity: "∑", codepoints: Codepoints::Single(8721), characters: "∑" }, Entity { entity: "♪", codepoints: Codepoints::Single(9834), characters: "♪" }, Entity { entity: "⋑", codepoints: Codepoints::Single(8913), characters: "⋑" }, Entity { entity: "⊃", codepoints: Codepoints::Single(8835), characters: "⊃" }, Entity { entity: "¹", codepoints: Codepoints::Single(185), characters: "¹" }, Entity { entity: "¹", codepoints: Codepoints::Single(185), characters: "¹" }, Entity { entity: "²", codepoints: Codepoints::Single(178), characters: "²" }, Entity { entity: "²", codepoints: Codepoints::Single(178), characters: "²" }, Entity { entity: "³", codepoints: Codepoints::Single(179), characters: "³" }, Entity { entity: "³", codepoints: Codepoints::Single(179), characters: "³" }, Entity { entity: "⪾", codepoints: Codepoints::Single(10942), characters: "⪾" }, Entity { entity: "⫘", codepoints: Codepoints::Single(10968), characters: "⫘" }, Entity { entity: "⫆", codepoints: Codepoints::Single(10950), characters: "⫆" }, Entity { entity: "⊇", codepoints: Codepoints::Single(8839), characters: "⊇" }, Entity { entity: "⫄", codepoints: Codepoints::Single(10948), characters: "⫄" }, Entity { entity: "⊃", codepoints: Codepoints::Single(8835), characters: "⊃" }, Entity { entity: "⊇", codepoints: Codepoints::Single(8839), characters: "⊇" }, Entity { entity: "⟉", codepoints: Codepoints::Single(10185), characters: "⟉" }, Entity { entity: "⫗", codepoints: Codepoints::Single(10967), characters: "⫗" }, Entity { entity: "⥻", codepoints: Codepoints::Single(10619), characters: "⥻" }, Entity { entity: "⫂", codepoints: Codepoints::Single(10946), characters: "⫂" }, Entity { entity: "⫌", codepoints: Codepoints::Single(10956), characters: "⫌" }, Entity { entity: "⊋", codepoints: Codepoints::Single(8843), characters: "⊋" }, Entity { entity: "⫀", codepoints: Codepoints::Single(10944), characters: "⫀" }, Entity { entity: "⋑", codepoints: Codepoints::Single(8913), characters: "⋑" }, Entity { entity: "⊃", codepoints: Codepoints::Single(8835), characters: "⊃" }, Entity { entity: "⊇", codepoints: Codepoints::Single(8839), characters: "⊇" }, Entity { entity: "⫆", codepoints: Codepoints::Single(10950), characters: "⫆" }, Entity { entity: "⊋", codepoints: Codepoints::Single(8843), characters: "⊋" }, Entity { entity: "⫌", codepoints: Codepoints::Single(10956), characters: "⫌" }, Entity { entity: "⫈", codepoints: Codepoints::Single(10952), characters: "⫈" }, Entity { entity: "⫔", codepoints: Codepoints::Single(10964), characters: "⫔" }, Entity { entity: "⫖", codepoints: Codepoints::Single(10966), characters: "⫖" }, Entity { entity: "⤦", codepoints: Codepoints::Single(10534), characters: "⤦" }, Entity { entity: "⇙", codepoints: Codepoints::Single(8665), characters: "⇙" }, Entity { entity: "↙", codepoints: Codepoints::Single(8601), characters: "↙" }, Entity { entity: "↙", codepoints: Codepoints::Single(8601), characters: "↙" }, Entity { entity: "⤪", codepoints: Codepoints::Single(10538), characters: "⤪" }, Entity { entity: "ß", codepoints: Codepoints::Single(223), characters: "ß" }, Entity { entity: "ß", codepoints: Codepoints::Single(223), characters: "ß" }, Entity { entity: " ", codepoints: Codepoints::Single(9), characters: " " }, Entity { entity: "⌖", codepoints: Codepoints::Single(8982), characters: "⌖" }, Entity { entity: "Τ", codepoints: Codepoints::Single(932), characters: "Τ" }, Entity { entity: "τ", codepoints: Codepoints::Single(964), characters: "τ" }, Entity { entity: "⎴", codepoints: Codepoints::Single(9140), characters: "⎴" }, Entity { entity: "Ť", codepoints: Codepoints::Single(356), characters: "Ť" }, Entity { entity: "ť", codepoints: Codepoints::Single(357), characters: "ť" }, Entity { entity: "Ţ", codepoints: Codepoints::Single(354), characters: "Ţ" }, Entity { entity: "ţ", codepoints: Codepoints::Single(355), characters: "ţ" }, Entity { entity: "Т", codepoints: Codepoints::Single(1058), characters: "Т" }, Entity { entity: "т", codepoints: Codepoints::Single(1090), characters: "т" }, Entity { entity: "⃛", codepoints: Codepoints::Single(8411), characters: "⃛" }, Entity { entity: "⌕", codepoints: Codepoints::Single(8981), characters: "⌕" }, Entity { entity: "𝔗", codepoints: Codepoints::Single(120087), characters: "𝔗" }, Entity { entity: "𝔱", codepoints: Codepoints::Single(120113), characters: "𝔱" }, Entity { entity: "∴", codepoints: Codepoints::Single(8756), characters: "∴" }, Entity { entity: "∴", codepoints: Codepoints::Single(8756), characters: "∴" }, Entity { entity: "∴", codepoints: Codepoints::Single(8756), characters: "∴" }, Entity { entity: "Θ", codepoints: Codepoints::Single(920), characters: "Θ" }, Entity { entity: "θ", codepoints: Codepoints::Single(952), characters: "θ" }, Entity { entity: "ϑ", codepoints: Codepoints::Single(977), characters: "ϑ" }, Entity { entity: "ϑ", codepoints: Codepoints::Single(977), characters: "ϑ" }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "∼", codepoints: Codepoints::Single(8764), characters: "∼" }, Entity { entity: "  ", codepoints: Codepoints::Double(8287, 8202), characters: "  " }, Entity { entity: " ", codepoints: Codepoints::Single(8201), characters: " " }, Entity { entity: " ", codepoints: Codepoints::Single(8201), characters: " " }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "∼", codepoints: Codepoints::Single(8764), characters: "∼" }, Entity { entity: "Þ", codepoints: Codepoints::Single(222), characters: "Þ" }, Entity { entity: "Þ", codepoints: Codepoints::Single(222), characters: "Þ" }, Entity { entity: "þ", codepoints: Codepoints::Single(254), characters: "þ" }, Entity { entity: "þ", codepoints: Codepoints::Single(254), characters: "þ" }, Entity { entity: "∼", codepoints: Codepoints::Single(8764), characters: "∼" }, Entity { entity: "˜", codepoints: Codepoints::Single(732), characters: "˜" }, Entity { entity: "≃", codepoints: Codepoints::Single(8771), characters: "≃" }, Entity { entity: "≅", codepoints: Codepoints::Single(8773), characters: "≅" }, Entity { entity: "≈", codepoints: Codepoints::Single(8776), characters: "≈" }, Entity { entity: "×", codepoints: Codepoints::Single(215), characters: "×" }, Entity { entity: "×", codepoints: Codepoints::Single(215), characters: "×" }, Entity { entity: "⊠", codepoints: Codepoints::Single(8864), characters: "⊠" }, Entity { entity: "⨱", codepoints: Codepoints::Single(10801), characters: "⨱" }, Entity { entity: "⨰", codepoints: Codepoints::Single(10800), characters: "⨰" }, Entity { entity: "∭", codepoints: Codepoints::Single(8749), characters: "∭" }, Entity { entity: "⤨", codepoints: Codepoints::Single(10536), characters: "⤨" }, Entity { entity: "⊤", codepoints: Codepoints::Single(8868), characters: "⊤" }, Entity { entity: "⌶", codepoints: Codepoints::Single(9014), characters: "⌶" }, Entity { entity: "⫱", codepoints: Codepoints::Single(10993), characters: "⫱" }, Entity { entity: "𝕋", codepoints: Codepoints::Single(120139), characters: "𝕋" }, Entity { entity: "𝕥", codepoints: Codepoints::Single(120165), characters: "𝕥" }, Entity { entity: "⫚", codepoints: Codepoints::Single(10970), characters: "⫚" }, Entity { entity: "⤩", codepoints: Codepoints::Single(10537), characters: "⤩" }, Entity { entity: "‴", codepoints: Codepoints::Single(8244), characters: "‴" }, Entity { entity: "™", codepoints: Codepoints::Single(8482), characters: "™" }, Entity { entity: "™", codepoints: Codepoints::Single(8482), characters: "™" }, Entity { entity: "▵", codepoints: Codepoints::Single(9653), characters: "▵" }, Entity { entity: "▿", codepoints: Codepoints::Single(9663), characters: "▿" }, Entity { entity: "◃", codepoints: Codepoints::Single(9667), characters: "◃" }, Entity { entity: "⊴", codepoints: Codepoints::Single(8884), characters: "⊴" }, Entity { entity: "≜", codepoints: Codepoints::Single(8796), characters: "≜" }, Entity { entity: "▹", codepoints: Codepoints::Single(9657), characters: "▹" }, Entity { entity: "⊵", codepoints: Codepoints::Single(8885), characters: "⊵" }, Entity { entity: "◬", codepoints: Codepoints::Single(9708), characters: "◬" }, Entity { entity: "≜", codepoints: Codepoints::Single(8796), characters: "≜" }, Entity { entity: "⨺", codepoints: Codepoints::Single(10810), characters: "⨺" }, Entity { entity: "⃛", codepoints: Codepoints::Single(8411), characters: "⃛" }, Entity { entity: "⨹", codepoints: Codepoints::Single(10809), characters: "⨹" }, Entity { entity: "⧍", codepoints: Codepoints::Single(10701), characters: "⧍" }, Entity { entity: "⨻", codepoints: Codepoints::Single(10811), characters: "⨻" }, Entity { entity: "⏢", codepoints: Codepoints::Single(9186), characters: "⏢" }, Entity { entity: "𝒯", codepoints: Codepoints::Single(119983), characters: "𝒯" }, Entity { entity: "𝓉", codepoints: Codepoints::Single(120009), characters: "𝓉" }, Entity { entity: "Ц", codepoints: Codepoints::Single(1062), characters: "Ц" }, Entity { entity: "ц", codepoints: Codepoints::Single(1094), characters: "ц" }, Entity { entity: "Ћ", codepoints: Codepoints::Single(1035), characters: "Ћ" }, Entity { entity: "ћ", codepoints: Codepoints::Single(1115), characters: "ћ" }, Entity { entity: "Ŧ", codepoints: Codepoints::Single(358), characters: "Ŧ" }, Entity { entity: "ŧ", codepoints: Codepoints::Single(359), characters: "ŧ" }, Entity { entity: "≬", codepoints: Codepoints::Single(8812), characters: "≬" }, Entity { entity: "↞", codepoints: Codepoints::Single(8606), characters: "↞" }, Entity { entity: "↠", codepoints: Codepoints::Single(8608), characters: "↠" }, Entity { entity: "Ú", codepoints: Codepoints::Single(218), characters: "Ú" }, Entity { entity: "Ú", codepoints: Codepoints::Single(218), characters: "Ú" }, Entity { entity: "ú", codepoints: Codepoints::Single(250), characters: "ú" }, Entity { entity: "ú", codepoints: Codepoints::Single(250), characters: "ú" }, Entity { entity: "↟", codepoints: Codepoints::Single(8607), characters: "↟" }, Entity { entity: "⇑", codepoints: Codepoints::Single(8657), characters: "⇑" }, Entity { entity: "↑", codepoints: Codepoints::Single(8593), characters: "↑" }, Entity { entity: "⥉", codepoints: Codepoints::Single(10569), characters: "⥉" }, Entity { entity: "Ў", codepoints: Codepoints::Single(1038), characters: "Ў" }, Entity { entity: "ў", codepoints: Codepoints::Single(1118), characters: "ў" }, Entity { entity: "Ŭ", codepoints: Codepoints::Single(364), characters: "Ŭ" }, Entity { entity: "ŭ", codepoints: Codepoints::Single(365), characters: "ŭ" }, Entity { entity: "Û", codepoints: Codepoints::Single(219), characters: "Û" }, Entity { entity: "Û", codepoints: Codepoints::Single(219), characters: "Û" }, Entity { entity: "û", codepoints: Codepoints::Single(251), characters: "û" }, Entity { entity: "û", codepoints: Codepoints::Single(251), characters: "û" }, Entity { entity: "У", codepoints: Codepoints::Single(1059), characters: "У" }, Entity { entity: "у", codepoints: Codepoints::Single(1091), characters: "у" }, Entity { entity: "⇅", codepoints: Codepoints::Single(8645), characters: "⇅" }, Entity { entity: "Ű", codepoints: Codepoints::Single(368), characters: "Ű" }, Entity { entity: "ű", codepoints: Codepoints::Single(369), characters: "ű" }, Entity { entity: "⥮", codepoints: Codepoints::Single(10606), characters: "⥮" }, Entity { entity: "⥾", codepoints: Codepoints::Single(10622), characters: "⥾" }, Entity { entity: "𝔘", codepoints: Codepoints::Single(120088), characters: "𝔘" }, Entity { entity: "𝔲", codepoints: Codepoints::Single(120114), characters: "𝔲" }, Entity { entity: "Ù", codepoints: Codepoints::Single(217), characters: "Ù" }, Entity { entity: "Ù", codepoints: Codepoints::Single(217), characters: "Ù" }, Entity { entity: "ù", codepoints: Codepoints::Single(249), characters: "ù" }, Entity { entity: "ù", codepoints: Codepoints::Single(249), characters: "ù" }, Entity { entity: "⥣", codepoints: Codepoints::Single(10595), characters: "⥣" }, Entity { entity: "↿", codepoints: Codepoints::Single(8639), characters: "↿" }, Entity { entity: "↾", codepoints: Codepoints::Single(8638), characters: "↾" }, Entity { entity: "▀", codepoints: Codepoints::Single(9600), characters: "▀" }, Entity { entity: "⌜", codepoints: Codepoints::Single(8988), characters: "⌜" }, Entity { entity: "⌜", codepoints: Codepoints::Single(8988), characters: "⌜" }, Entity { entity: "⌏", codepoints: Codepoints::Single(8975), characters: "⌏" }, Entity { entity: "◸", codepoints: Codepoints::Single(9720), characters: "◸" }, Entity { entity: "Ū", codepoints: Codepoints::Single(362), characters: "Ū" }, Entity { entity: "ū", codepoints: Codepoints::Single(363), characters: "ū" }, Entity { entity: "¨", codepoints: Codepoints::Single(168), characters: "¨" }, Entity { entity: "¨", codepoints: Codepoints::Single(168), characters: "¨" }, Entity { entity: "_", codepoints: Codepoints::Single(95), characters: "_" }, Entity { entity: "⏟", codepoints: Codepoints::Single(9183), characters: "⏟" }, Entity { entity: "⎵", codepoints: Codepoints::Single(9141), characters: "⎵" }, Entity { entity: "⏝", codepoints: Codepoints::Single(9181), characters: "⏝" }, Entity { entity: "⋃", codepoints: Codepoints::Single(8899), characters: "⋃" }, Entity { entity: "⊎", codepoints: Codepoints::Single(8846), characters: "⊎" }, Entity { entity: "Ų", codepoints: Codepoints::Single(370), characters: "Ų" }, Entity { entity: "ų", codepoints: Codepoints::Single(371), characters: "ų" }, Entity { entity: "𝕌", codepoints: Codepoints::Single(120140), characters: "𝕌" }, Entity { entity: "𝕦", codepoints: Codepoints::Single(120166), characters: "𝕦" }, Entity { entity: "↑", codepoints: Codepoints::Single(8593), characters: "↑" }, Entity { entity: "⇑", codepoints: Codepoints::Single(8657), characters: "⇑" }, Entity { entity: "↑", codepoints: Codepoints::Single(8593), characters: "↑" }, Entity { entity: "⤒", codepoints: Codepoints::Single(10514), characters: "⤒" }, Entity { entity: "⇅", codepoints: Codepoints::Single(8645), characters: "⇅" }, Entity { entity: "↕", codepoints: Codepoints::Single(8597), characters: "↕" }, Entity { entity: "⇕", codepoints: Codepoints::Single(8661), characters: "⇕" }, Entity { entity: "↕", codepoints: Codepoints::Single(8597), characters: "↕" }, Entity { entity: "⥮", codepoints: Codepoints::Single(10606), characters: "⥮" }, Entity { entity: "↿", codepoints: Codepoints::Single(8639), characters: "↿" }, Entity { entity: "↾", codepoints: Codepoints::Single(8638), characters: "↾" }, Entity { entity: "⊎", codepoints: Codepoints::Single(8846), characters: "⊎" }, Entity { entity: "↖", codepoints: Codepoints::Single(8598), characters: "↖" }, Entity { entity: "↗", codepoints: Codepoints::Single(8599), characters: "↗" }, Entity { entity: "ϒ", codepoints: Codepoints::Single(978), characters: "ϒ" }, Entity { entity: "υ", codepoints: Codepoints::Single(965), characters: "υ" }, Entity { entity: "ϒ", codepoints: Codepoints::Single(978), characters: "ϒ" }, Entity { entity: "Υ", codepoints: Codepoints::Single(933), characters: "Υ" }, Entity { entity: "υ", codepoints: Codepoints::Single(965), characters: "υ" }, Entity { entity: "⊥", codepoints: Codepoints::Single(8869), characters: "⊥" }, Entity { entity: "↥", codepoints: Codepoints::Single(8613), characters: "↥" }, Entity { entity: "⇈", codepoints: Codepoints::Single(8648), characters: "⇈" }, Entity { entity: "⌝", codepoints: Codepoints::Single(8989), characters: "⌝" }, Entity { entity: "⌝", codepoints: Codepoints::Single(8989), characters: "⌝" }, Entity { entity: "⌎", codepoints: Codepoints::Single(8974), characters: "⌎" }, Entity { entity: "Ů", codepoints: Codepoints::Single(366), characters: "Ů" }, Entity { entity: "ů", codepoints: Codepoints::Single(367), characters: "ů" }, Entity { entity: "◹", codepoints: Codepoints::Single(9721), characters: "◹" }, Entity { entity: "𝒰", codepoints: Codepoints::Single(119984), characters: "𝒰" }, Entity { entity: "𝓊", codepoints: Codepoints::Single(120010), characters: "𝓊" }, Entity { entity: "⋰", codepoints: Codepoints::Single(8944), characters: "⋰" }, Entity { entity: "Ũ", codepoints: Codepoints::Single(360), characters: "Ũ" }, Entity { entity: "ũ", codepoints: Codepoints::Single(361), characters: "ũ" }, Entity { entity: "▵", codepoints: Codepoints::Single(9653), characters: "▵" }, Entity { entity: "▴", codepoints: Codepoints::Single(9652), characters: "▴" }, Entity { entity: "⇈", codepoints: Codepoints::Single(8648), characters: "⇈" }, Entity { entity: "Ü", codepoints: Codepoints::Single(220), characters: "Ü" }, Entity { entity: "Ü", codepoints: Codepoints::Single(220), characters: "Ü" }, Entity { entity: "ü", codepoints: Codepoints::Single(252), characters: "ü" }, Entity { entity: "ü", codepoints: Codepoints::Single(252), characters: "ü" }, Entity { entity: "⦧", codepoints: Codepoints::Single(10663), characters: "⦧" }, Entity { entity: "⦜", codepoints: Codepoints::Single(10652), characters: "⦜" }, Entity { entity: "ϵ", codepoints: Codepoints::Single(1013), characters: "ϵ" }, Entity { entity: "ϰ", codepoints: Codepoints::Single(1008), characters: "ϰ" }, Entity { entity: "∅", codepoints: Codepoints::Single(8709), characters: "∅" }, Entity { entity: "ϕ", codepoints: Codepoints::Single(981), characters: "ϕ" }, Entity { entity: "ϖ", codepoints: Codepoints::Single(982), characters: "ϖ" }, Entity { entity: "∝", codepoints: Codepoints::Single(8733), characters: "∝" }, Entity { entity: "⇕", codepoints: Codepoints::Single(8661), characters: "⇕" }, Entity { entity: "↕", codepoints: Codepoints::Single(8597), characters: "↕" }, Entity { entity: "ϱ", codepoints: Codepoints::Single(1009), characters: "ϱ" }, Entity { entity: "ς", codepoints: Codepoints::Single(962), characters: "ς" }, Entity { entity: "⊊︀", codepoints: Codepoints::Double(8842, 65024), characters: "⊊︀" }, Entity { entity: "⫋︀", codepoints: Codepoints::Double(10955, 65024), characters: "⫋︀" }, Entity { entity: "⊋︀", codepoints: Codepoints::Double(8843, 65024), characters: "⊋︀" }, Entity { entity: "⫌︀", codepoints: Codepoints::Double(10956, 65024), characters: "⫌︀" }, Entity { entity: "ϑ", codepoints: Codepoints::Single(977), characters: "ϑ" }, Entity { entity: "⊲", codepoints: Codepoints::Single(8882), characters: "⊲" }, Entity { entity: "⊳", codepoints: Codepoints::Single(8883), characters: "⊳" }, Entity { entity: "⫫", codepoints: Codepoints::Single(10987), characters: "⫫" }, Entity { entity: "⫨", codepoints: Codepoints::Single(10984), characters: "⫨" }, Entity { entity: "⫩", codepoints: Codepoints::Single(10985), characters: "⫩" }, Entity { entity: "В", codepoints: Codepoints::Single(1042), characters: "В" }, Entity { entity: "в", codepoints: Codepoints::Single(1074), characters: "в" }, Entity { entity: "⊫", codepoints: Codepoints::Single(8875), characters: "⊫" }, Entity { entity: "⊩", codepoints: Codepoints::Single(8873), characters: "⊩" }, Entity { entity: "⊨", codepoints: Codepoints::Single(8872), characters: "⊨" }, Entity { entity: "⊢", codepoints: Codepoints::Single(8866), characters: "⊢" }, Entity { entity: "⫦", codepoints: Codepoints::Single(10982), characters: "⫦" }, Entity { entity: "⋁", codepoints: Codepoints::Single(8897), characters: "⋁" }, Entity { entity: "∨", codepoints: Codepoints::Single(8744), characters: "∨" }, Entity { entity: "⊻", codepoints: Codepoints::Single(8891), characters: "⊻" }, Entity { entity: "≚", codepoints: Codepoints::Single(8794), characters: "≚" }, Entity { entity: "⋮", codepoints: Codepoints::Single(8942), characters: "⋮" }, Entity { entity: "‖", codepoints: Codepoints::Single(8214), characters: "‖" }, Entity { entity: "|", codepoints: Codepoints::Single(124), characters: "|" }, Entity { entity: "‖", codepoints: Codepoints::Single(8214), characters: "‖" }, Entity { entity: "|", codepoints: Codepoints::Single(124), characters: "|" }, Entity { entity: "∣", codepoints: Codepoints::Single(8739), characters: "∣" }, Entity { entity: "|", codepoints: Codepoints::Single(124), characters: "|" }, Entity { entity: "❘", codepoints: Codepoints::Single(10072), characters: "❘" }, Entity { entity: "≀", codepoints: Codepoints::Single(8768), characters: "≀" }, Entity { entity: " ", codepoints: Codepoints::Single(8202), characters: " " }, Entity { entity: "𝔙", codepoints: Codepoints::Single(120089), characters: "𝔙" }, Entity { entity: "𝔳", codepoints: Codepoints::Single(120115), characters: "𝔳" }, Entity { entity: "⊲", codepoints: Codepoints::Single(8882), characters: "⊲" }, Entity { entity: "⊂⃒", codepoints: Codepoints::Double(8834, 8402), characters: "⊂⃒" }, Entity { entity: "⊃⃒", codepoints: Codepoints::Double(8835, 8402), characters: "⊃⃒" }, Entity { entity: "𝕍", codepoints: Codepoints::Single(120141), characters: "𝕍" }, Entity { entity: "𝕧", codepoints: Codepoints::Single(120167), characters: "𝕧" }, Entity { entity: "∝", codepoints: Codepoints::Single(8733), characters: "∝" }, Entity { entity: "⊳", codepoints: Codepoints::Single(8883), characters: "⊳" }, Entity { entity: "𝒱", codepoints: Codepoints::Single(119985), characters: "𝒱" }, Entity { entity: "𝓋", codepoints: Codepoints::Single(120011), characters: "𝓋" }, Entity { entity: "⫋︀", codepoints: Codepoints::Double(10955, 65024), characters: "⫋︀" }, Entity { entity: "⊊︀", codepoints: Codepoints::Double(8842, 65024), characters: "⊊︀" }, Entity { entity: "⫌︀", codepoints: Codepoints::Double(10956, 65024), characters: "⫌︀" }, Entity { entity: "⊋︀", codepoints: Codepoints::Double(8843, 65024), characters: "⊋︀" }, Entity { entity: "⊪", codepoints: Codepoints::Single(8874), characters: "⊪" }, Entity { entity: "⦚", codepoints: Codepoints::Single(10650), characters: "⦚" }, Entity { entity: "Ŵ", codepoints: Codepoints::Single(372), characters: "Ŵ" }, Entity { entity: "ŵ", codepoints: Codepoints::Single(373), characters: "ŵ" }, Entity { entity: "⩟", codepoints: Codepoints::Single(10847), characters: "⩟" }, Entity { entity: "⋀", codepoints: Codepoints::Single(8896), characters: "⋀" }, Entity { entity: "∧", codepoints: Codepoints::Single(8743), characters: "∧" }, Entity { entity: "≙", codepoints: Codepoints::Single(8793), characters: "≙" }, Entity { entity: "℘", codepoints: Codepoints::Single(8472), characters: "℘" }, Entity { entity: "𝔚", codepoints: Codepoints::Single(120090), characters: "𝔚" }, Entity { entity: "𝔴", codepoints: Codepoints::Single(120116), characters: "𝔴" }, Entity { entity: "𝕎", codepoints: Codepoints::Single(120142), characters: "𝕎" }, Entity { entity: "𝕨", codepoints: Codepoints::Single(120168), characters: "𝕨" }, Entity { entity: "℘", codepoints: Codepoints::Single(8472), characters: "℘" }, Entity { entity: "≀", codepoints: Codepoints::Single(8768), characters: "≀" }, Entity { entity: "≀", codepoints: Codepoints::Single(8768), characters: "≀" }, Entity { entity: "𝒲", codepoints: Codepoints::Single(119986), characters: "𝒲" }, Entity { entity: "𝓌", codepoints: Codepoints::Single(120012), characters: "𝓌" }, Entity { entity: "⋂", codepoints: Codepoints::Single(8898), characters: "⋂" }, Entity { entity: "◯", codepoints: Codepoints::Single(9711), characters: "◯" }, Entity { entity: "⋃", codepoints: Codepoints::Single(8899), characters: "⋃" }, Entity { entity: "▽", codepoints: Codepoints::Single(9661), characters: "▽" }, Entity { entity: "𝔛", codepoints: Codepoints::Single(120091), characters: "𝔛" }, Entity { entity: "𝔵", codepoints: Codepoints::Single(120117), characters: "𝔵" }, Entity { entity: "⟺", codepoints: Codepoints::Single(10234), characters: "⟺" }, Entity { entity: "⟷", codepoints: Codepoints::Single(10231), characters: "⟷" }, Entity { entity: "Ξ", codepoints: Codepoints::Single(926), characters: "Ξ" }, Entity { entity: "ξ", codepoints: Codepoints::Single(958), characters: "ξ" }, Entity { entity: "⟸", codepoints: Codepoints::Single(10232), characters: "⟸" }, Entity { entity: "⟵", codepoints: Codepoints::Single(10229), characters: "⟵" }, Entity { entity: "⟼", codepoints: Codepoints::Single(10236), characters: "⟼" }, Entity { entity: "⋻", codepoints: Codepoints::Single(8955), characters: "⋻" }, Entity { entity: "⨀", codepoints: Codepoints::Single(10752), characters: "⨀" }, Entity { entity: "𝕏", codepoints: Codepoints::Single(120143), characters: "𝕏" }, Entity { entity: "𝕩", codepoints: Codepoints::Single(120169), characters: "𝕩" }, Entity { entity: "⨁", codepoints: Codepoints::Single(10753), characters: "⨁" }, Entity { entity: "⨂", codepoints: Codepoints::Single(10754), characters: "⨂" }, Entity { entity: "⟹", codepoints: Codepoints::Single(10233), characters: "⟹" }, Entity { entity: "⟶", codepoints: Codepoints::Single(10230), characters: "⟶" }, Entity { entity: "𝒳", codepoints: Codepoints::Single(119987), characters: "𝒳" }, Entity { entity: "𝓍", codepoints: Codepoints::Single(120013), characters: "𝓍" }, Entity { entity: "⨆", codepoints: Codepoints::Single(10758), characters: "⨆" }, Entity { entity: "⨄", codepoints: Codepoints::Single(10756), characters: "⨄" }, Entity { entity: "△", codepoints: Codepoints::Single(9651), characters: "△" }, Entity { entity: "⋁", codepoints: Codepoints::Single(8897), characters: "⋁" }, Entity { entity: "⋀", codepoints: Codepoints::Single(8896), characters: "⋀" }, Entity { entity: "Ý", codepoints: Codepoints::Single(221), characters: "Ý" }, Entity { entity: "Ý", codepoints: Codepoints::Single(221), characters: "Ý" }, Entity { entity: "ý", codepoints: Codepoints::Single(253), characters: "ý" }, Entity { entity: "ý", codepoints: Codepoints::Single(253), characters: "ý" }, Entity { entity: "Я", codepoints: Codepoints::Single(1071), characters: "Я" }, Entity { entity: "я", codepoints: Codepoints::Single(1103), characters: "я" }, Entity { entity: "Ŷ", codepoints: Codepoints::Single(374), characters: "Ŷ" }, Entity { entity: "ŷ", codepoints: Codepoints::Single(375), characters: "ŷ" }, Entity { entity: "Ы", codepoints: Codepoints::Single(1067), characters: "Ы" }, Entity { entity: "ы", codepoints: Codepoints::Single(1099), characters: "ы" }, Entity { entity: "¥", codepoints: Codepoints::Single(165), characters: "¥" }, Entity { entity: "¥", codepoints: Codepoints::Single(165), characters: "¥" }, Entity { entity: "𝔜", codepoints: Codepoints::Single(120092), characters: "𝔜" }, Entity { entity: "𝔶", codepoints: Codepoints::Single(120118), characters: "𝔶" }, Entity { entity: "Ї", codepoints: Codepoints::Single(1031), characters: "Ї" }, Entity { entity: "ї", codepoints: Codepoints::Single(1111), characters: "ї" }, Entity { entity: "𝕐", codepoints: Codepoints::Single(120144), characters: "𝕐" }, Entity { entity: "𝕪", codepoints: Codepoints::Single(120170), characters: "𝕪" }, Entity { entity: "𝒴", codepoints: Codepoints::Single(119988), characters: "𝒴" }, Entity { entity: "𝓎", codepoints: Codepoints::Single(120014), characters: "𝓎" }, Entity { entity: "Ю", codepoints: Codepoints::Single(1070), characters: "Ю" }, Entity { entity: "ю", codepoints: Codepoints::Single(1102), characters: "ю" }, Entity { entity: "Ÿ", codepoints: Codepoints::Single(376), characters: "Ÿ" }, Entity { entity: "ÿ", codepoints: Codepoints::Single(255), characters: "ÿ" }, Entity { entity: "ÿ", codepoints: Codepoints::Single(255), characters: "ÿ" }, Entity { entity: "Ź", codepoints: Codepoints::Single(377), characters: "Ź" }, Entity { entity: "ź", codepoints: Codepoints::Single(378), characters: "ź" }, Entity { entity: "Ž", codepoints: Codepoints::Single(381), characters: "Ž" }, Entity { entity: "ž", codepoints: Codepoints::Single(382), characters: "ž" }, Entity { entity: "З", codepoints: Codepoints::Single(1047), characters: "З" }, Entity { entity: "з", codepoints: Codepoints::Single(1079), characters: "з" }, Entity { entity: "Ż", codepoints: Codepoints::Single(379), characters: "Ż" }, Entity { entity: "ż", codepoints: Codepoints::Single(380), characters: "ż" }, Entity { entity: "ℨ", codepoints: Codepoints::Single(8488), characters: "ℨ" }, Entity { entity: "​", codepoints: Codepoints::Single(8203), characters: "​" }, Entity { entity: "Ζ", codepoints: Codepoints::Single(918), characters: "Ζ" }, Entity { entity: "ζ", codepoints: Codepoints::Single(950), characters: "ζ" }, Entity { entity: "ℨ", codepoints: Codepoints::Single(8488), characters: "ℨ" }, Entity { entity: "𝔷", codepoints: Codepoints::Single(120119), characters: "𝔷" }, Entity { entity: "Ж", codepoints: Codepoints::Single(1046), characters: "Ж" }, Entity { entity: "ж", codepoints: Codepoints::Single(1078), characters: "ж" }, Entity { entity: "⇝", codepoints: Codepoints::Single(8669), characters: "⇝" }, Entity { entity: "ℤ", codepoints: Codepoints::Single(8484), characters: "ℤ" }, Entity { entity: "𝕫", codepoints: Codepoints::Single(120171), characters: "𝕫" }, Entity { entity: "𝒵", codepoints: Codepoints::Single(119989), characters: "𝒵" }, Entity { entity: "𝓏", codepoints: Codepoints::Single(120015), characters: "𝓏" }, Entity { entity: "‍", codepoints: Codepoints::Single(8205), characters: "‍" }, Entity { entity: "‌", codepoints: Codepoints::Single(8204), characters: "‌" }, ]; entities-1.0.1/src/lib.rs00006440000000000000000000004174130212453240013430 0ustar0000000000000000//! Provides the raw data needed to convert to and from HTML entities. //! //! ``` //! extern crate entities; //! use entities::ENTITIES; //! //! fn main() { //! let entity = ENTITIES //! .iter() //! .find(|e| e.entity == ">") //! .unwrap(); //! //! assert_eq!(entity.characters, ">"); //! assert_eq!(entity.entity, ">"); //! } //! ``` //! //! There isn't a 1-to-1 mapping of entities to "characters" which is why this //! crate provides a flat array rather than a map—the best way to map the //! entities depends on the problem _you're_ trying to solve. //! //! If you want to create a mapping structure you can make one using static `str` //! slices to reuse the statically allocated strings from this crate e.g. //! //! ``` //! # use self::std::collections::HashMap; //! # use entities::ENTITIES; //! fn make_mapping() -> HashMap<&'static str, &'static str> { //! let mut mapping = HashMap::new(); //! mapping.insert(ENTITIES[0].entity, ENTITIES[0].characters); //! mapping //! } //! ``` //! //! Data was generated from //! [https://www.w3.org/TR/html5/entities.json](https://www.w3.org/TR/html5/entities.json) #![no_std] mod entities; /// The unicode codepoint(s) for the "character" an entity is encoding. #[derive(Debug)] pub enum Codepoints { Single(u32), Double(u32, u32), } /// Represents an entry in the array of entity definitions. #[derive(Debug)] pub struct Entity { pub entity: &'static str, pub codepoints: Codepoints, pub characters: &'static str, } pub use entities::ENTITIES; #[cfg(test)] mod tests { extern crate std; use self::std::collections::HashMap; use super::ENTITIES; #[test] fn sanity() { let found = ENTITIES.iter().find(|e| e.entity == ">"); assert!(found.is_some()); assert_eq!(found.unwrap().characters, ">"); } #[test] fn make_map() { let mut mapping = HashMap::<&'static str, &'static str>::new(); mapping.insert(ENTITIES[0].entity, ENTITIES[0].characters); assert_eq!(mapping.get(ENTITIES[0].entity), Some(&ENTITIES[0].characters)); } }