From 72544b3690b8be26cdca5a0d68a09889fe0ef8e1 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sat, 12 Dec 2020 19:53:04 +0100 Subject: [PATCH] Add a font book to the demo app --- egui/src/demos/demo_windows.rs | 1 + egui/src/demos/font_book.rs | 105 + egui/src/demos/font_contents_emoji.rs | 2754 ++++++++++++++++++++++++ egui/src/demos/font_contents_ubuntu.rs | 1191 ++++++++++ egui/src/demos/mod.rs | 7 +- 5 files changed, 4056 insertions(+), 2 deletions(-) create mode 100644 egui/src/demos/font_book.rs create mode 100644 egui/src/demos/font_contents_emoji.rs create mode 100644 egui/src/demos/font_contents_ubuntu.rs diff --git a/egui/src/demos/demo_windows.rs b/egui/src/demos/demo_windows.rs index fe7b5ba3..a871ad31 100644 --- a/egui/src/demos/demo_windows.rs +++ b/egui/src/demos/demo_windows.rs @@ -37,6 +37,7 @@ impl Default for Demos { fn default() -> Self { Self { demos: vec![ + (false, Box::new(crate::demos::FontBook::default())), (false, Box::new(crate::demos::DancingStrings::default())), (false, Box::new(crate::demos::DragAndDropDemo::default())), (false, Box::new(crate::demos::Tests::default())), diff --git a/egui/src/demos/font_book.rs b/egui/src/demos/font_book.rs new file mode 100644 index 00000000..0b961f1b --- /dev/null +++ b/egui/src/demos/font_book.rs @@ -0,0 +1,105 @@ +use crate::*; + +pub struct FontBook { + standard: bool, + emojis: bool, + filter: String, + text_style: TextStyle, +} + +impl Default for FontBook { + fn default() -> Self { + Self { + standard: false, + emojis: true, + filter: Default::default(), + text_style: TextStyle::Heading, + } + } +} + +impl FontBook { + fn characters_ui(&self, ui: &mut Ui, characters: &[(u32, char, &str)]) { + for &(_, chr, name) in characters { + if !self.filter.is_empty() && !name.contains(&self.filter) { + continue; + } + + let button = Button::new(chr).text_style(self.text_style).frame(false); + + let tooltip_ui = |ui: &mut Ui| { + ui.add(Label::new(chr).text_style(self.text_style)); + ui.label(format!("{}\nU+{:X}\n\nClick to copy", name, chr as u32)); + }; + + if ui.add(button).on_hover_ui(tooltip_ui).clicked { + ui.output().copied_text = chr.to_string(); + } + } + } +} + +impl demos::Demo for FontBook { + fn name(&self) -> &str { + "๐Ÿ”ค Font Book" + } + + fn show(&mut self, ctx: &std::sync::Arc, open: &mut bool) { + Window::new(self.name()).open(open).show(ctx, |ui| { + use demos::View; + self.ui(ui); + }); + } +} + +impl demos::View for FontBook { + fn ui(&mut self, ui: &mut Ui) { + use crate::demos::font_contents_emoji::FULL_EMOJI_LIST; + use crate::demos::font_contents_ubuntu::UBUNTU_FONT_CHARACTERS; + + ui.label(format!( + "Egui supports {} standard characters and {} emojis.\nClick on a character to copy it.", + UBUNTU_FONT_CHARACTERS.len(), + FULL_EMOJI_LIST.len(), + )); + + ui.separator(); + + ui.horizontal(|ui| { + ui.label("Text style:"); + for style in TextStyle::all() { + ui.radio_value(&mut self.text_style, style, format!("{:?}", style)); + } + }); + + ui.horizontal(|ui| { + ui.label("Show:"); + ui.checkbox(&mut self.standard, "Standard"); + ui.checkbox(&mut self.emojis, "Emojis"); + }); + + ui.horizontal(|ui| { + ui.label("Filter:"); + ui.text_edit_singleline(&mut self.filter); + self.filter = self.filter.to_lowercase(); + if ui.button("๏ฝ˜").clicked { + self.filter.clear(); + } + }); + + ui.separator(); + + crate::ScrollArea::auto_sized().show(ui, |ui| { + ui.horizontal_wrapped(|ui| { + ui.style_mut().spacing.item_spacing = Vec2::splat(2.0); + + if self.standard { + self.characters_ui(ui, UBUNTU_FONT_CHARACTERS); + } + if self.emojis { + self.characters_ui(ui, FULL_EMOJI_LIST); + } + }); + }); + } +} diff --git a/egui/src/demos/font_contents_emoji.rs b/egui/src/demos/font_contents_emoji.rs new file mode 100644 index 00000000..07bfd0fb --- /dev/null +++ b/egui/src/demos/font_contents_emoji.rs @@ -0,0 +1,2754 @@ +/// A list of ~all~ most emojis available in `emoji-icon-font.ttf` +/// +/// Also viewable at +/// Source: +#[rustfmt::skip] +pub const EMOJI_ICON_FONT_LIST: &[(u32, char, &str)] = &[ + (0xA9, 'ยฉ', "copyright"), + (0xAE, 'ยฎ', "registered"), + (0x2030, 'โ€ฐ', "perthousand"), + (0x20AC, 'โ‚ฌ', "currency-euro"), + (0x211E, 'โ„ž', "retrograde"), + (0x2126, 'โ„ฆ', "omega"), + (0x2135, 'โ„ต', "aleph"), + (0x21BA, 'โ†บ', "rotate-ccw"), + (0x21BB, 'โ†ป', "rotate-cw"), + (0x221E, 'โˆž', "infinity"), + (0x2297, 'โŠ—', "close"), + (0x229E, 'โŠž', "square-plus"), + (0x229F, 'โŠŸ', "square-minus"), + (0x2316, 'โŒ–', "crosshairs"), + (0x2318, 'โŒ˜', "command"), + (0x231A, 'โŒš', "watch"), + (0x2328, 'โŒจ', "keyboard-wireless"), + (0x2386, 'โކ', "enter"), + (0x2388, 'โŽˆ', "helm"), + (0x2397, 'โŽ—', "previous-page"), + (0x2398, 'โŽ˜', "next-page"), + (0x2399, 'โŽ™', "print-screen"), + (0x23CF, 'โ', "eject"), + (0x23E9, 'โฉ', "forward"), + (0x23EA, 'โช', "backward"), + (0x23ED, 'โญ', "last"), + (0x23EE, 'โฎ', "first"), + (0x23F0, 'โฐ', "alarm"), + (0x23F1, 'โฑ', "stopwatch"), + (0x23F3, 'โณ', "hourglass"), + (0x23F4, 'โด', "caret-left"), + (0x23F5, 'โต', "caret-right"), + (0x23F6, 'โถ', "caret-up"), + (0x23F7, 'โท', "caret-down"), + (0x23F8, 'โธ', "pause"), + (0x23F9, 'โน', "stop"), + (0x23FA, 'โบ', "circle"), + (0x2593, 'โ–“', "chessboard"), + (0x25A0, 'โ– ', "square"), + (0x25A3, 'โ–ฃ', "checkbox-partial"), + (0x25B6, 'โ–ถ', "play"), + (0x25CB, 'โ—‹', "circle-open"), + (0x25CE, 'โ—Ž', "bullseye"), + (0x25D1, 'โ—‘', "contrast"), + (0x25D4, 'โ—”', "pie-chart-reverse"), + (0x25D5, 'โ—•', "pie-chart"), + (0x2600, 'โ˜€', "sun"), + (0x2601, 'โ˜', "cloud"), + (0x2602, 'โ˜‚', "umbrella"), + (0x2603, 'โ˜ƒ', "snowman"), + (0x2604, 'โ˜„', "comet"), + (0x2605, 'โ˜…', "star"), + (0x2606, 'โ˜†', "star-open"), + (0x2609, 'โ˜‰', "record"), + (0x260E, 'โ˜Ž', "phone"), + (0x2610, 'โ˜', "checkbox-unchecked"), + (0x2611, 'โ˜‘', "checkbox-checked"), + (0x2615, 'โ˜•', "drink-coffee"), + (0x2618, 'โ˜˜', "shamrock"), + (0x261C, 'โ˜œ', "point-left"), + (0x261D, 'โ˜', "point-up"), + (0x261E, 'โ˜ž', "point-right"), + (0x261F, 'โ˜Ÿ', "point-down"), + (0x2620, 'โ˜ ', "skull-and-bones"), + (0x2622, 'โ˜ข', "radiation"), + (0x2623, 'โ˜ฃ', "biohazard"), + (0x2624, 'โ˜ค', "caduceus"), + (0x2625, 'โ˜ฅ', "ankh"), + (0x2626, 'โ˜ฆ', "cross-orthodox"), + (0x2627, 'โ˜ง', "chi-rho"), + (0x2628, 'โ˜จ', "cross-of-lorraine"), + (0x2629, 'โ˜ฉ', "cross-of-jerusalem"), + (0x262A, 'โ˜ช', "star-and-crescent"), + (0x262B, 'โ˜ซ', "farsi"), + (0x262C, 'โ˜ฌ', "khanda"), + (0x262E, 'โ˜ฎ', "peace"), + (0x262F, 'โ˜ฏ', "tao"), + (0x2630, 'โ˜ฐ', "menu"), + (0x2638, 'โ˜ธ', "wheel-of-dharma"), + (0x2639, 'โ˜น', "smiley-sad"), + (0x263A, 'โ˜บ', "smiley"), + (0x2640, 'โ™€', "gender-female"), + (0x2642, 'โ™‚', "gender-male"), + (0x2654, 'โ™”', "chess-white-king"), + (0x2655, 'โ™•', "chess-white-queen"), + (0x2656, 'โ™–', "chess-white-rook"), + (0x2657, 'โ™—', "chess-white-bishop"), + (0x2658, 'โ™˜', "chess-white-knight"), + (0x2659, 'โ™™', "chess-white-pawn"), + (0x265A, 'โ™š', "chess-black-king"), + (0x265B, 'โ™›', "chess-black-queen"), + (0x265C, 'โ™œ', "chess-black-rook"), + (0x265D, 'โ™', "chess-black-bishop"), + (0x265E, 'โ™ž', "chess-black-knight"), + (0x265F, 'โ™Ÿ', "chess-black-pawn"), + (0x2660, 'โ™ ', "spades"), + (0x2661, 'โ™ก', "heart-open"), + (0x2663, 'โ™ฃ', "clubs"), + (0x2665, 'โ™ฅ', "heart"), + (0x2666, 'โ™ฆ', "diamonds"), + (0x2669, 'โ™ฉ', "music-quarter-note"), + (0x266A, 'โ™ช', "music-eighth-note"), + (0x266B, 'โ™ซ', "music-eigth-notes"), + (0x266C, 'โ™ฌ', "music-sixteenth-notes"), + (0x267B, 'โ™ป', "recycle"), + (0x267E, 'โ™พ', "permanent-paper"), + (0x267F, 'โ™ฟ', "wheelchair"), + (0x2690, 'โš', "flag-open"), + (0x2691, 'โš‘', "flag"), + (0x2692, 'โš’', "hammer-and-pick"), + (0x2693, 'โš“', "anchor"), + (0x2694, 'โš”', "crossed-swords"), + (0x2695, 'โš•', "asclepius"), + (0x2696, 'โš–', "scales"), + (0x2698, 'โš˜', "flower"), + (0x2699, 'โš™', "gear"), + (0x269B, 'โš›', "atom"), + (0x269C, 'โšœ', "fleur-de-lis"), + (0x26A0, 'โš ', "warning"), + (0x26A1, 'โšก', "bolt"), + (0x26A2, 'โšข', "gender-female-female"), + (0x26A3, 'โšฃ', "gender-male-male"), + (0x26A4, 'โšค', "gender-male-female"), + (0x26A6, 'โšฆ', "gender-transgender"), + (0x26A7, 'โšง', "gender-non-binary"), + (0x26B0, 'โšฐ', "coffin"), + (0x26BD, 'โšฝ', "football-soccer"), + (0x26BE, 'โšพ', "baseball"), + (0x26C3, 'โ›ƒ', "database"), + (0x26CF, 'โ›', "pick"), + (0x26D3, 'โ›“', "dna"), + (0x26D4, 'โ›”', "no-entry"), + (0x26E4, 'โ›ค', "pentagram"), + (0x26E7, 'โ›ง', "pentagram-inverted"), + (0x26E8, 'โ›จ', "shield-with-cross"), + (0x26E9, 'โ›ฉ', "temple"), + (0x26EA, 'โ›ช', "church"), + (0x26ED, 'โ›ญ', "gear-no-hub"), + (0x26F1, 'โ›ฑ', "beach"), + (0x26F2, 'โ›ฒ', "fountain"), + (0x26F6, 'โ›ถ', "four-corners"), + (0x26F7, 'โ›ท', "skier"), + (0x26F8, 'โ›ธ', "ice-skater"), + (0x26FA, 'โ›บ', "tent"), + (0x26FC, 'โ›ผ', "headstone"), + (0x26FD, 'โ›ฝ', "fuel-pump"), + (0x2702, 'โœ‚', "scissors"), + (0x2706, 'โœ†', "phone-location"), + (0x2707, 'โœ‡', "film-reel"), + (0x2708, 'โœˆ', "airplane"), + (0x2709, 'โœ‰', "envelope"), + (0x270A, 'โœŠ', "hand-fist"), + (0x270B, 'โœ‹', "hand"), + (0x270F, 'โœ', "pencil"), + (0x2714, 'โœ”', "check"), + (0x2716, 'โœ–', "multiply"), + (0x271A, 'โœš', "plus"), + (0x271D, 'โœ', "latin-cross"), + (0x271F, 'โœŸ', "latin-cross-outline"), + (0x2720, 'โœ ', "maltese-cross"), + (0x2721, 'โœก', "star-of-david"), + (0x272A, 'โœช', "star-circled"), + (0x2731, 'โœฑ', "asterisk-six"), + (0x2734, 'โœด', "star-eight-points"), + (0x273F, 'โœฟ', "black-florette"), + (0x2740, 'โ€', "florette"), + (0x2744, 'โ„', "snowflake"), + (0x2765, 'โฅ', "heart-tilted"), + (0x2796, 'โž–', "minus"), + (0x2797, 'โž—', "divide"), + (0x27A1, 'โžก', "arrow-right"), + (0x27F2, 'โŸฒ', "rotate-cw-side"), + (0x27F3, 'โŸณ', "rotate-ccw-side"), + (0x2B05, 'โฌ…', "arrow-left"), + (0x2B06, 'โฌ†', "arrow-up"), + (0x2B07, 'โฌ‡', "arrow-down"), + (0x2B08, 'โฌˆ', "arrow-up-right"), + (0x2B09, 'โฌ‰', "arrow-up-left"), + (0x2B0A, 'โฌŠ', "arrow-down-right"), + (0x2B0B, 'โฌ‹', "arrow-down-left"), + (0x2B0C, 'โฌŒ', "arrow-left-right"), + (0x2B0D, 'โฌ', "arrow-up-down"), + (0x2B1F, 'โฌŸ', "pentagon"), + (0x2B23, 'โฌฃ', "hexagon"), + (0x2B88, 'โฎˆ', "circle-arrow-left"), + (0x2B89, 'โฎ‰', "circle-arrow-up"), + (0x2B8A, 'โฎŠ', "circle-arrow-right"), + (0x2B8B, 'โฎ‹', "circle-arrow-down"), + (0x2BA8, 'โฎจ', "arrow-reply"), + (0x2BA9, 'โฎฉ', "arrow-forward"), + (0x2BAA, 'โฎช', "arrow-undo"), + (0x2BAB, 'โฎซ', "arrow-redo"), + (0xE600, '๎˜€', "web-dribbble"), + (0xE601, '๎˜', "web-stackoverflow"), + (0xE602, '๎˜‚', "web-vimeo"), + (0xE603, '๎˜ƒ', "web-twitter"), + (0xE604, '๎˜„', "web-facebook"), + (0xE605, '๎˜…', "web-googleplus"), + (0xE606, '๎˜†', "web-pinterest"), + (0xE607, '๎˜‡', "web-tumblr"), + (0xE608, '๎˜ˆ', "web-linkedin"), + (0xE60A, '๎˜Š', "web-stumbleupon"), + (0xE60B, '๎˜‹', "web-lastfm"), + (0xE60C, '๎˜Œ', "web-rdio"), + (0xE60D, '๎˜', "web-spotify"), + (0xE60E, '๎˜Ž', "web-qq"), + (0xE60F, '๎˜', "web-instagram"), + (0xE610, '๎˜', "web-dropbox"), + (0xE611, '๎˜‘', "web-evernote"), + (0xE612, '๎˜’', "web-flattr"), + (0xE613, '๎˜“', "web-skype"), + (0xE614, '๎˜”', "web-renren"), + (0xE615, '๎˜•', "web-sina-weibo"), + (0xE616, '๎˜–', "web-paypal"), + (0xE617, '๎˜—', "web-picasa"), + (0xE618, '๎˜˜', "os-android"), + (0xE619, '๎˜™', "web-mixi"), + (0xE61A, '๎˜š', "web-behance"), + (0xE61B, '๎˜›', "web-circles"), + (0xE61C, '๎˜œ', "web-vk"), + (0xE61D, '๎˜', "web-smashing"), + (0xE61E, '๎˜ž', "web-forrst"), + (0xE61F, '๎˜Ÿ', "os-windows"), + (0xE620, '๎˜ ', "web-flickr"), + (0xE621, '๎˜ก', "web-picassa"), + (0xE622, '๎˜ข', "web-deviantart"), + (0xE623, '๎˜ฃ', "web-steam"), + (0xE624, '๎˜ค', "web-github"), + (0xE625, '๎˜ฅ', "web-git"), + (0xE626, '๎˜ฆ', "web-blogger"), + (0xE627, '๎˜ง', "web-soundcloud"), + (0xE628, '๎˜จ', "web-reddit"), + (0xE629, '๎˜ฉ', "web-delicious"), + (0xE62A, '๎˜ช', "browser-chrome"), + (0xE62B, '๎˜ซ', "browser-firefox"), + (0xE62C, '๎˜ฌ', "browser-ie"), + (0xE62D, '๎˜ญ', "browser-opera"), + (0xE62E, '๎˜ฎ', "browser-safari"), + (0xE62F, '๎˜ฏ', "web-google-drive"), + (0xE630, '๎˜ฐ', "web-wordpress"), + (0xE631, '๎˜ฑ', "web-joomla"), + (0xE632, '๎˜ฒ', "lastfm"), + (0xE633, '๎˜ณ', "web-foursquare"), + (0xE634, '๎˜ด', "web-yelp"), + (0xE635, '๎˜ต', "web-drupal"), + (0xE636, '๎˜ถ', "youtube"), + (0xF189, '๏†‰', "vk"), + (0xF1A6, '๏†ฆ', "digg"), + (0xF1CA, '๏‡Š', "web-vine"), + (0xF8FF, '๏ฃฟ', "os-apple"), + (0xFE5C, '๏นœ', "brace-right"), + (0xFF01, '๏ผ', "exclamation-mark"), + (0xFF03, '๏ผƒ', "number"), + (0xFF04, '๏ผ„', "currency-dollar"), + (0xFF05, '๏ผ…', "percent"), + (0xFF06, '๏ผ†', "ampersand"), + (0xFF08, '๏ผˆ', "parenthesis-left"), + (0xFF09, '๏ผ‰', "parenthesis-right"), + (0xFF0A, '๏ผŠ', "asterisk-five"), + (0xFF10, '๏ผ', "digit-zero"), + (0xFF11, '๏ผ‘', "digit-one"), + (0xFF12, '๏ผ’', "digit-two"), + (0xFF13, '๏ผ“', "digit-three"), + (0xFF14, '๏ผ”', "digit-four"), + (0xFF15, '๏ผ•', "digit-five"), + (0xFF16, '๏ผ–', "digit-six"), + (0xFF17, '๏ผ—', "digit-seven"), + (0xFF18, '๏ผ˜', "digit-eight"), + (0xFF19, '๏ผ™', "digit-nine"), + (0xFF1F, '๏ผŸ', "question-mark"), + (0xFF20, '๏ผ ', "at-symbol"), + (0xFF21, '๏ผก', "letter-A"), + (0xFF22, '๏ผข', "letter-B"), + (0xFF23, '๏ผฃ', "letter-C"), + (0xFF24, '๏ผค', "letter-D"), + (0xFF25, '๏ผฅ', "letter-E"), + (0xFF26, '๏ผฆ', "letter-F"), + (0xFF27, '๏ผง', "letter-G"), + (0xFF28, '๏ผจ', "letter-H"), + (0xFF29, '๏ผฉ', "letter-I"), + (0xFF2A, '๏ผช', "letter-J"), + (0xFF2B, '๏ผซ', "letter-K"), + (0xFF2C, '๏ผฌ', "letter-L"), + (0xFF2D, '๏ผญ', "letter-M"), + (0xFF2E, '๏ผฎ', "letter-N"), + (0xFF2F, '๏ผฏ', "letter-O"), + (0xFF30, '๏ผฐ', "letter-P"), + (0xFF31, '๏ผฑ', "letter-Q"), + (0xFF32, '๏ผฒ', "letter-R"), + (0xFF33, '๏ผณ', "stack-window"), + (0xFF34, '๏ผด', "letter-S"), + (0xFF35, '๏ผต', "letter-T"), + (0xFF36, '๏ผถ', "letter-U"), + (0xFF37, '๏ผท', "letter-V"), + (0xFF38, '๏ผธ', "letter-W"), + (0xFF39, '๏ผน', "letter-X"), + (0xFF3A, '๏ผบ', "letter-Z"), + (0xFF3B, '๏ผป', "square-bracket-left"), + (0xFF3C, '๏ผผ', "at"), + (0xFF3D, '๏ผฝ', "square-bracket-right"), + (0xFF41, '๏ฝ', "letter-a"), + (0xFF42, '๏ฝ‚', "letter-b"), + (0xFF43, '๏ฝƒ', "letter-c"), + (0xFF44, '๏ฝ„', "letter-d"), + (0xFF45, '๏ฝ…', "letter-e"), + (0xFF46, '๏ฝ†', "letter-f"), + (0xFF47, '๏ฝ‡', "letter-g"), + (0xFF48, '๏ฝˆ', "letter-h"), + (0xFF49, '๏ฝ‰', "letter-i"), + (0xFF4A, '๏ฝŠ', "letter-j"), + (0xFF4B, '๏ฝ‹', "letter-k"), + (0xFF4C, '๏ฝŒ', "letter-l"), + (0xFF4D, '๏ฝ', "letter-m"), + (0xFF4E, '๏ฝŽ', "letter-n"), + (0xFF4F, '๏ฝ', "letter-o"), + (0xFF50, '๏ฝ', "letter-p"), + (0xFF51, '๏ฝ‘', "letter-q"), + (0xFF52, '๏ฝ’', "letter-r"), + (0xFF53, '๏ฝ“', "letter-s"), + (0xFF54, '๏ฝ”', "letter-t"), + (0xFF55, '๏ฝ•', "letter-u"), + (0xFF56, '๏ฝ–', "letter-v"), + (0xFF57, '๏ฝ—', "letter-w"), + (0xFF58, '๏ฝ˜', "letter-x"), + (0xFF59, '๏ฝ™', "letter-y"), + (0xFF5A, '๏ฝš', "letter-z"), + (0xFF5B, '๏ฝ›', "brace-left"), + (0xFFE1, '๏ฟก', "currency-pound"), + (0xFFE5, '๏ฟฅ', "yen"), + (0x1D11E, '๐„ž', "g-clef"), + (0x1F0A1, '๐Ÿ‚ก', "ace-of-spades"), + (0x1F0B1, '๐Ÿ‚ฑ', "ace-of-hearts"), + (0x1F0C1, '๐Ÿƒ', "ace-of-diamonds"), + (0x1F0D1, '๐Ÿƒ‘', "ace-of-clubs"), + (0x1F308, '๐ŸŒˆ', "rainbow"), + (0x1F30A, '๐ŸŒŠ', "water-wave"), + (0x1F30D, '๐ŸŒ', "globe2"), + (0x1F310, '๐ŸŒ', "globe-meridians"), + (0x1F311, '๐ŸŒ‘', "moon-new"), + (0x1F312, '๐ŸŒ’', "moon-waxing-crescent"), + (0x1F313, '๐ŸŒ“', "moon-first-quarter"), + (0x1F314, '๐ŸŒ”', "moon-waxing-gibbous"), + (0x1F315, '๐ŸŒ•', "moon-full"), + (0x1F316, '๐ŸŒ–', "moon-waning-gibbous"), + (0x1F317, '๐ŸŒ—', "moon-last-quarter"), + (0x1F318, '๐ŸŒ˜', "moon-waning-crescent"), + (0x1F320, '๐ŸŒ ', "star-shooting"), + (0x1F332, '๐ŸŒฒ', "tree-pine"), + (0x1F333, '๐ŸŒณ', "tree"), + (0x1F334, '๐ŸŒด', "tree-palm"), + (0x1F335, '๐ŸŒต', "cactus"), + (0x1F33F, '๐ŸŒฟ', "herb"), + (0x1F340, '๐Ÿ€', "four-leaf-clover"), + (0x1F341, '๐Ÿ', "maple-leaf"), + (0x1F342, '๐Ÿ‚', "leaf"), + (0x1F344, '๐Ÿ„', "mushroom"), + (0x1F345, '๐Ÿ…', "tomato3"), + (0x1F347, '๐Ÿ‡', "grapes"), + (0x1F34B, '๐Ÿ‹', "lemon"), + (0x1F34E, '๐ŸŽ', "apple"), + (0x1F350, '๐Ÿ', "pear"), + (0x1F354, '๐Ÿ”', "food-hamburger"), + (0x1F355, '๐Ÿ•', "food-pizza"), + (0x1F357, '๐Ÿ—', "chicken-leg"), + (0x1F359, '๐Ÿ™', "rice-ball"), + (0x1F35A, '๐Ÿš', "food-rice"), + (0x1F35C, '๐Ÿœ', "steaming-bowl"), + (0x1F35D, '๐Ÿ', "food-spaghetti"), + (0x1F35E, '๐Ÿž', "bread"), + (0x1F35F, '๐ŸŸ', "fries"), + (0x1F363, '๐Ÿฃ', "sushi"), + (0x1F368, '๐Ÿจ', "food-ice-cream"), + (0x1F369, '๐Ÿฉ', "donut"), + (0x1F36A, '๐Ÿช', "gingerbread"), + (0x1F36C, '๐Ÿฌ', "candy"), + (0x1F36D, '๐Ÿญ', "lollipop"), + (0x1F372, '๐Ÿฒ', "pot-food"), + (0x1F373, '๐Ÿณ', "cooking"), + (0x1F374, '๐Ÿด', "fork-knife"), + (0x1F377, '๐Ÿท', "drink-wine"), + (0x1F378, '๐Ÿธ', "drink-cocktail"), + (0x1F379, '๐Ÿน', "drink-tropical"), + (0x1F37A, '๐Ÿบ', "drink-beer"), + (0x1F37C, '๐Ÿผ', "baby-bottle"), + (0x1F37D, '๐Ÿฝ', "fork-knife-plate"), + (0x1F381, '๐ŸŽ', "gift"), + (0x1F382, '๐ŸŽ‚', "cake"), + (0x1F383, '๐ŸŽƒ', "jack-o-lantern"), + (0x1F384, '๐ŸŽ„', "christmas-tree"), + (0x1F385, '๐ŸŽ…', "face-santa-claus"), + (0x1F386, '๐ŸŽ†', "fireworks"), + (0x1F388, '๐ŸŽˆ', "balloon"), + (0x1F393, '๐ŸŽ“', "graduation"), + (0x1F396, '๐ŸŽ–', "medal-military"), + (0x1F39E, '๐ŸŽž', "film"), + (0x1F39F, '๐ŸŽŸ', "ticket"), + (0x1F3A1, '๐ŸŽก', "ferris-wheel"), + (0x1F3A2, '๐ŸŽข', "rollercoaster"), + (0x1F3A4, '๐ŸŽค', "microphone"), + (0x1F3A5, '๐ŸŽฅ', "camera-movie"), + (0x1F3A6, '๐ŸŽฆ', "cinema"), + (0x1F3A7, '๐ŸŽง', "headphone"), + (0x1F3A8, '๐ŸŽจ', "palette"), + (0x1F3A9, '๐ŸŽฉ', "tophat"), + (0x1F3AA, '๐ŸŽช', "circus"), + (0x1F3AC, '๐ŸŽฌ', "movie"), + (0x1F3AD, '๐ŸŽญ', "performing-arts"), + (0x1F3AE, '๐ŸŽฎ', "videogame"), + (0x1F3AF, '๐ŸŽฏ', "target"), + (0x1F3B0, '๐ŸŽฐ', "slot-machine"), + (0x1F3B1, '๐ŸŽฑ', "billiards"), + (0x1F3B2, '๐ŸŽฒ', "die"), + (0x1F3B3, '๐ŸŽณ', "bowling"), + (0x1F3B7, '๐ŸŽท', "saxophone"), + (0x1F3B8, '๐ŸŽธ', "guitar"), + (0x1F3B9, '๐ŸŽน', "piano"), + (0x1F3BA, '๐ŸŽบ', "music-trumpet"), + (0x1F3BB, '๐ŸŽป', "music-violin"), + (0x1F3BE, '๐ŸŽพ', "tennis"), + (0x1F3C1, '๐Ÿ', "flag-checkered"), + (0x1F3C2, '๐Ÿ‚', "snowboarding"), + (0x1F3C3, '๐Ÿƒ', "running"), + (0x1F3C5, '๐Ÿ…', "medal-sports"), + (0x1F3C6, '๐Ÿ†', "trophy"), + (0x1F3C8, '๐Ÿˆ', "football-american"), + (0x1F3CA, '๐ŸŠ', "swimming"), + (0x1F3CB, '๐Ÿ‹', "weighlifting"), + (0x1F3CD, '๐Ÿ', "motorbike"), + (0x1F3E0, '๐Ÿ ', "home"), + (0x1F3E1, '๐Ÿก', "volume-mute"), + (0x1F3E2, '๐Ÿข', "building"), + (0x1F3E6, '๐Ÿฆ', "bank"), + (0x1F3E8, '๐Ÿจ', "hotel"), + (0x1F3EA, '๐Ÿช', "convenience-store"), + (0x1F3EB, '๐Ÿซ', "school"), + (0x1F3ED, '๐Ÿญ', "factory"), + (0x1F3F0, '๐Ÿฐ', "castle"), + (0x1F3F7, '๐Ÿท', "label"), + (0x1F404, '๐Ÿ„', "animal-cow"), + (0x1F407, '๐Ÿ‡', "animal-rabbit"), + (0x1F408, '๐Ÿˆ', "animal-cat"), + (0x1F40C, '๐ŸŒ', "animal-snail"), + (0x1F40D, '๐Ÿ', "snake"), + (0x1F40E, '๐ŸŽ', "animal-horse"), + (0x1F410, '๐Ÿ', "animal-goat"), + (0x1F413, '๐Ÿ“', "animal-rooster"), + (0x1F414, '๐Ÿ”', "food-chicken"), + (0x1F416, '๐Ÿ–', "animal-pig"), + (0x1F41B, '๐Ÿ›', "animal-bug"), + (0x1F41C, '๐Ÿœ', "animal-ant"), + (0x1F427, '๐Ÿง', "linux"), + (0x1F42A, '๐Ÿช', "animal-dromedary-camel"), + (0x1F42B, '๐Ÿซ', "animal-bactrian-camel"), + (0x1F42C, '๐Ÿฌ', "animal-dolphin"), + (0x1F431, '๐Ÿฑ', "face-kitty"), + (0x1F435, '๐Ÿต', "face-monkey"), + (0x1F436, '๐Ÿถ', "face-chihuahua"), + (0x1F439, '๐Ÿน', "face-hamster"), + (0x1F43B, '๐Ÿป', "face-bear"), + (0x1F43C, '๐Ÿผ', "panda"), + (0x1F43E, '๐Ÿพ', "paw-prints"), + (0x1F441, '๐Ÿ‘', "eye"), + (0x1F442, '๐Ÿ‘‚', "ear"), + (0x1F44D, '๐Ÿ‘', "thumbs-up"), + (0x1F44E, '๐Ÿ‘Ž', "thumbs-down"), + (0x1F451, '๐Ÿ‘‘', "crown"), + (0x1F453, '๐Ÿ‘“', "eyeglasses"), + (0x1F454, '๐Ÿ‘”', "outfit-necktie"), + (0x1F455, '๐Ÿ‘•', "outfit-shirt"), + (0x1F457, '๐Ÿ‘—', "outfit-dress"), + (0x1F459, '๐Ÿ‘™', "outfit-bikini"), + (0x1F45B, '๐Ÿ‘›', "purse"), + (0x1F45C, '๐Ÿ‘œ', "handbag"), + (0x1F460, '๐Ÿ‘ ', "high-heeled-shoes"), + (0x1F461, '๐Ÿ‘ก', "sandals"), + (0x1F463, '๐Ÿ‘ฃ', "footprints"), + (0x1F464, '๐Ÿ‘ค', "user"), + (0x1F465, '๐Ÿ‘ฅ', "users"), + (0x1F466, '๐Ÿ‘ฆ', "face-boy"), + (0x1F467, '๐Ÿ‘ง', "face-girl"), + (0x1F468, '๐Ÿ‘จ', "face-man"), + (0x1F469, '๐Ÿ‘ฉ', "face-woman"), + (0x1F46A, '๐Ÿ‘ช', "family"), + (0x1F46B, '๐Ÿ‘ซ', "man-and-woman"), + (0x1F46C, '๐Ÿ‘ฌ', "man-and-man"), + (0x1F46D, '๐Ÿ‘ญ', "woman-and-woman"), + (0x1F473, '๐Ÿ‘ณ', "face-man-with-turban"), + (0x1F474, '๐Ÿ‘ด', "face-old-chinese-man"), + (0x1F476, '๐Ÿ‘ถ', "face-baby"), + (0x1F477, '๐Ÿ‘ท', "construction-worker"), + (0x1F478, '๐Ÿ‘ธ', "face-princess"), + (0x1F47B, '๐Ÿ‘ป', "ghost"), + (0x1F47D, '๐Ÿ‘ฝ', "alien"), + (0x1F47F, '๐Ÿ‘ฟ', "imp"), + (0x1F480, '๐Ÿ’€', "skull"), + (0x1F481, '๐Ÿ’', "face-callcenter"), + (0x1F482, '๐Ÿ’‚', "guard"), + (0x1F483, '๐Ÿ’ƒ', "dancing"), + (0x1F484, '๐Ÿ’„', "lipstick"), + (0x1F489, '๐Ÿ’‰', "syringe"), + (0x1F48A, '๐Ÿ’Š', "pill"), + (0x1F48B, '๐Ÿ’‹', "kiss"), + (0x1F48D, '๐Ÿ’', "ring"), + (0x1F48E, '๐Ÿ’Ž', "diamond"), + (0x1F490, '๐Ÿ’', "bouquet"), + (0x1F493, '๐Ÿ’“', "heart-beating"), + (0x1F494, '๐Ÿ’”', "heart-broken"), + (0x1F495, '๐Ÿ’•', "hearts"), + (0x1F498, '๐Ÿ’˜', "heart-with-arrow"), + (0x1F49D, '๐Ÿ’', "heart-ribbon"), + (0x1F4A1, '๐Ÿ’ก', "lightbulb"), + (0x1F4A3, '๐Ÿ’ฃ', "bomb"), + (0x1F4A5, '๐Ÿ’ฅ', "explosion"), + (0x1F4A7, '๐Ÿ’ง', "droplet"), + (0x1F4AC, '๐Ÿ’ฌ', "speech-bubble"), + (0x1F4B0, '๐Ÿ’ฐ', "money-bag"), + (0x1F4B1, '๐Ÿ’ฑ', "currency-exchange"), + (0x1F4B3, '๐Ÿ’ณ', "creditcard"), + (0x1F4B5, '๐Ÿ’ต', "banknote"), + (0x1F4BA, '๐Ÿ’บ', "chair"), + (0x1F4BB, '๐Ÿ’ป', "laptop"), + (0x1F4BC, '๐Ÿ’ผ', "suitcase"), + (0x1F4BE, '๐Ÿ’พ', "floppy"), + (0x1F4BF, '๐Ÿ’ฟ', "disk"), + (0x1F4C5, '๐Ÿ“…', "calendar-month"), + (0x1F4C6, '๐Ÿ“†', "calendar-day"), + (0x1F4C8, '๐Ÿ“ˆ', "chart-up"), + (0x1F4C9, '๐Ÿ“‰', "chart-down"), + (0x1F4CA, '๐Ÿ“Š', "chart"), + (0x1F4CB, '๐Ÿ“‹', "clipboard"), + (0x1F4CC, '๐Ÿ“Œ', "pushpin"), + (0x1F4CE, '๐Ÿ“Ž', "paperclip"), + (0x1F4CF, '๐Ÿ“', "ruler2"), + (0x1F4D0, '๐Ÿ“', "ruler"), + (0x1F4D2, '๐Ÿ“’', "addressbook"), + (0x1F4D3, '๐Ÿ““', "notebook"), + (0x1F4D5, '๐Ÿ“•', "book"), + (0x1F4D6, '๐Ÿ“–', "book-open"), + (0x1F4DA, '๐Ÿ“š', "books"), + (0x1F4DE, '๐Ÿ“ž', "phone-receiver"), + (0x1F4DF, '๐Ÿ“Ÿ', "pager"), + (0x1F4E1, '๐Ÿ“ก', "satellite-disk"), + (0x1F4E4, '๐Ÿ“ค', "outbox"), + (0x1F4E5, '๐Ÿ“ฅ', "inbox"), + (0x1F4F0, '๐Ÿ“ฐ', "newspaper"), + (0x1F4F1, '๐Ÿ“ฑ', "phone-mobile"), + (0x1F4F7, '๐Ÿ“ท', "photo-camera"), + (0x1F4F8, '๐Ÿ“ธ', "photo-camera-flash"), + (0x1F4F9, '๐Ÿ“น', "video-camera"), + (0x1F4FA, '๐Ÿ“บ', "television"), + (0x1F4FB, '๐Ÿ“ป', "radio"), + (0x1F4FD, '๐Ÿ“ฝ', "projector"), + (0x1F4FE, '๐Ÿ“พ', "music-player"), + (0x1F500, '๐Ÿ”€', "shuffle"), + (0x1F501, '๐Ÿ”', "loop"), + (0x1F503, '๐Ÿ”ƒ', "loop-alt"), + (0x1F506, '๐Ÿ”†', "brightness"), + (0x1F508, '๐Ÿ”ˆ', "volume"), + (0x1F509, '๐Ÿ”‰', "volume-low"), + (0x1F50A, '๐Ÿ”Š', "volume-high"), + (0x1F50B, '๐Ÿ”‹', "battery"), + (0x1F50C, '๐Ÿ”Œ', "electric-cord"), + (0x1F50D, '๐Ÿ”', "search-left"), + (0x1F50E, '๐Ÿ”Ž', "search-right"), + (0x1F50F, '๐Ÿ”', "lock"), + (0x1F511, '๐Ÿ”‘', "key"), + (0x1F513, '๐Ÿ”“', "lock-open"), + (0x1F514, '๐Ÿ””', "bell"), + (0x1F516, '๐Ÿ”–', "bookmark"), + (0x1F517, '๐Ÿ”—', "link"), + (0x1F518, '๐Ÿ”˜', "radio-checked"), + (0x1F525, '๐Ÿ”ฅ', "fire"), + (0x1F526, '๐Ÿ”ฆ', "flashlight"), + (0x1F527, '๐Ÿ”ง', "wrench"), + (0x1F528, '๐Ÿ”จ', "hammer"), + (0x1F529, '๐Ÿ”ฉ', "nut-and-bolt"), + (0x1F52A, '๐Ÿ”ช', "knife"), + (0x1F52B, '๐Ÿ”ซ', "pistol"), + (0x1F52C, '๐Ÿ”ฌ', "microscope"), + (0x1F52D, '๐Ÿ”ญ', "telescope"), + (0x1F542, '๐Ÿ•‚', "cross-pommee"), + (0x1F548, '๐Ÿ•ˆ', "celtic-cross"), + (0x1F549, '๐Ÿ•‰', "om"), + (0x1F54A, '๐Ÿ•Š', "peace-dove"), + (0x1F553, '๐Ÿ•“', "clock"), + (0x1F56B, '๐Ÿ•ซ', "bullhorn"), + (0x1F56F, '๐Ÿ•ฏ', "candle"), + (0x1F571, '๐Ÿ•ฑ', "death"), + (0x1F575, '๐Ÿ•ต', "spy"), + (0x1F576, '๐Ÿ•ถ', "sunglasses"), + (0x1F577, '๐Ÿ•ท', "spider"), + (0x1F578, '๐Ÿ•ธ', "spider7-web"), + (0x1F579, '๐Ÿ•น', "joystick"), + (0x1F583, '๐Ÿ–ƒ', "envelope-stamped"), + (0x1F58A, '๐Ÿ–Š', "pen"), + (0x1F5A5, '๐Ÿ–ฅ', "pc-desktop"), + (0x1F5A7, '๐Ÿ–ง', "computer-network"), + (0x1F5A9, '๐Ÿ–ฉ', "calculator"), + (0x1F5AD, '๐Ÿ–ญ', "tape"), + (0x1F5AE, '๐Ÿ–ฎ', "keyboard"), + (0x1F5B1, '๐Ÿ–ฑ', "mouse"), + (0x1F5B3, '๐Ÿ–ณ', "pc-old"), + (0x1F5B4, '๐Ÿ–ด', "hard-disk"), + (0x1F5B5, '๐Ÿ–ต', "monitor"), + (0x1F5B6, '๐Ÿ–ถ', "printer"), + (0x1F5B9, '๐Ÿ–น', "file-text"), + (0x1F5BB, '๐Ÿ–ป', "file-image"), + (0x1F5BC, '๐Ÿ–ผ', "picture"), + (0x1F5C0, '๐Ÿ—€', "folder"), + (0x1F5C1, '๐Ÿ—', "folder-open"), + (0x1F5C4, '๐Ÿ—„', "cabinet"), + (0x1F5CA, '๐Ÿ—Š', "notepad"), + (0x1F5CB, '๐Ÿ—‹', "file"), + (0x1F5D0, '๐Ÿ—', "copy"), + (0x1F5D1, '๐Ÿ—‘', "garbage-can"), + (0x1F5D5, '๐Ÿ—•', "minimize"), + (0x1F5D6, '๐Ÿ—–', "maximize-window"), + (0x1F5D9, '๐Ÿ—™', "cancel"), + (0x1F5DB, '๐Ÿ—›', "font-size"), + (0x1F5DD, '๐Ÿ—', "key-alt"), + (0x1F5E0, '๐Ÿ— ', "chart-line"), + (0x1F5E1, '๐Ÿ—ก', "dagger"), + (0x1F5FA, '๐Ÿ—บ', "world-map"), + (0x1F603, '๐Ÿ˜ƒ', "smiley-happy"), + (0x1F604, '๐Ÿ˜„', "smiley-grin"), + (0x1F608, '๐Ÿ˜ˆ', "smiley-evil"), + (0x1F60E, '๐Ÿ˜Ž', "smiley-cool"), + (0x1F680, '๐Ÿš€', "rocket"), + (0x1F68C, '๐ŸšŒ', "bus"), + (0x1F68D, '๐Ÿš', "bus-front"), + (0x1F697, '๐Ÿš—', "car"), + (0x1F698, '๐Ÿš˜', "car-front"), + (0x1F69A, '๐Ÿšš', "truck"), + (0x1F6A6, '๐Ÿšฆ', "traffic-light"), + (0x1F6AB, '๐Ÿšซ', "forbidden"), + (0x1F6AC, '๐Ÿšฌ', "smoking"), + (0x1F6AD, '๐Ÿšญ', "smoking-forbidden"), + (0x1F6B2, '๐Ÿšฒ', "bicycle"), + (0x1F6B4, '๐Ÿšด', "bicyclist"), + (0x1F6B6, '๐Ÿšถ', "pedestrian"), + (0x1F6BB, '๐Ÿšป', "restroom"), + (0x1F6BC, '๐Ÿšผ', "baby"), + (0x1F6C2, '๐Ÿ›‚', "passport-control"), + (0x1F6C5, '๐Ÿ›…', "left-luggage"), + (0x1F6E0, '๐Ÿ› ', "hammer-wrench"), + (0x1F6E1, '๐Ÿ›ก', "shield"), +]; + +#[rustfmt::skip] +pub const NOTO_EMOJI_LIST: &[(u32, char, &str)] = &[ + (0xA9, 'ยฉ', "copyright sign"), + (0xAE, 'ยฎ', "registered sign"), + (0x203C, 'โ€ผ', "double exclamation mark"), + (0x2049, 'โ‰', "exclamation question mark"), + (0x20E3, 'โƒฃ', "combining enclosing keycap"), + (0x2122, 'โ„ข', "trade mark sign"), + (0x2139, 'โ„น', "information source"), + (0x2194, 'โ†”', "left right arrow"), + (0x2195, 'โ†•', "up down arrow"), + (0x2196, 'โ†–', "north west arrow"), + (0x2197, 'โ†—', "north east arrow"), + (0x2198, 'โ†˜', "south east arrow"), + (0x2199, 'โ†™', "south west arrow"), + (0x21A9, 'โ†ฉ', "leftwards arrow with hook"), + (0x21AA, 'โ†ช', "rightwards arrow with hook"), + (0x231A, 'โŒš', "watch"), + (0x231B, 'โŒ›', "hourglass"), + (0x23E9, 'โฉ', "black right-pointing double triangle"), + (0x23EA, 'โช', "black left-pointing double triangle"), + (0x23EB, 'โซ', "black up-pointing double triangle"), + (0x23EC, 'โฌ', "black down-pointing double triangle"), + (0x23F0, 'โฐ', "alarm clock"), + (0x23F3, 'โณ', "hourglass with flowing sand"), + (0x24C2, 'โ“‚', "circled latin capital letter m"), + (0x25AA, 'โ–ช', "black small square"), + (0x25AB, 'โ–ซ', "white small square"), + (0x25B6, 'โ–ถ', "black right-pointing triangle"), + (0x25C0, 'โ—€', "black left-pointing triangle"), + (0x25CA, 'โ—Š', "lozenge"), + (0x25FB, 'โ—ป', "white medium square"), + (0x25FC, 'โ—ผ', "black medium square"), + (0x25FD, 'โ—ฝ', "white medium small square"), + (0x25FE, 'โ—พ', "black medium small square"), + (0x2600, 'โ˜€', "black sun with rays"), + (0x2601, 'โ˜', "cloud"), + (0x260E, 'โ˜Ž', "black telephone"), + (0x2611, 'โ˜‘', "ballot box with check"), + (0x2614, 'โ˜”', "umbrella with rain drops"), + (0x2615, 'โ˜•', "hot beverage"), + (0x261D, 'โ˜', "white up pointing index"), + (0x263A, 'โ˜บ', "white smiling face"), + (0x2648, 'โ™ˆ', "aries"), + (0x2649, 'โ™‰', "taurus"), + (0x264A, 'โ™Š', "gemini"), + (0x264B, 'โ™‹', "cancer"), + (0x264C, 'โ™Œ', "leo"), + (0x264D, 'โ™', "virgo"), + (0x264E, 'โ™Ž', "libra"), + (0x264F, 'โ™', "scorpius"), + (0x2650, 'โ™', "sagittarius"), + (0x2651, 'โ™‘', "capricorn"), + (0x2652, 'โ™’', "aquarius"), + (0x2653, 'โ™“', "pisces"), + (0x2660, 'โ™ ', "black spade suit"), + (0x2663, 'โ™ฃ', "black club suit"), + (0x2665, 'โ™ฅ', "black heart suit"), + (0x2666, 'โ™ฆ', "black diamond suit"), + (0x2668, 'โ™จ', "hot springs"), + (0x267B, 'โ™ป', "black universal recycling symbol"), + (0x267F, 'โ™ฟ', "wheelchair symbol"), + (0x2693, 'โš“', "anchor"), + (0x26A0, 'โš ', "warning sign"), + (0x26A1, 'โšก', "high voltage sign"), + (0x26AA, 'โšช', "medium white circle"), + (0x26AB, 'โšซ', "medium black circle"), + (0x26BD, 'โšฝ', "soccer ball"), + (0x26BE, 'โšพ', "baseball"), + (0x26C4, 'โ›„', "snowman without snow"), + (0x26C5, 'โ›…', "sun behind cloud"), + (0x26CE, 'โ›Ž', "ophiuchus"), + (0x26D4, 'โ›”', "no entry"), + (0x26EA, 'โ›ช', "church"), + (0x26F2, 'โ›ฒ', "fountain"), + (0x26F3, 'โ›ณ', "flag in hole"), + (0x26F5, 'โ›ต', "sailboat"), + (0x26FA, 'โ›บ', "tent"), + (0x26FD, 'โ›ฝ', "fuel pump"), + (0x2702, 'โœ‚', "black scissors"), + (0x2705, 'โœ…', "white heavy check mark"), + (0x2708, 'โœˆ', "airplane"), + (0x2709, 'โœ‰', "envelope"), + (0x270A, 'โœŠ', "raised fist"), + (0x270B, 'โœ‹', "raised hand"), + (0x270C, 'โœŒ', "victory hand"), + (0x270F, 'โœ', "pencil"), + (0x2712, 'โœ’', "black nib"), + (0x2714, 'โœ”', "heavy check mark"), + (0x2716, 'โœ–', "heavy multiplication x"), + (0x2728, 'โœจ', "sparkles"), + (0x2733, 'โœณ', "eight spoked asterisk"), + (0x2734, 'โœด', "eight pointed black star"), + (0x2744, 'โ„', "snowflake"), + (0x2747, 'โ‡', "sparkle"), + (0x274C, 'โŒ', "cross mark"), + (0x274E, 'โŽ', "negative squared cross mark"), + (0x2753, 'โ“', "black question mark ornament"), + (0x2754, 'โ”', "white question mark ornament"), + (0x2755, 'โ•', "white exclamation mark ornament"), + (0x2757, 'โ—', "heavy exclamation mark symbol"), + (0x2764, 'โค', "heavy black heart"), + (0x2795, 'โž•', "heavy plus sign"), + (0x2796, 'โž–', "heavy minus sign"), + (0x2797, 'โž—', "heavy division sign"), + (0x27A1, 'โžก', "black rightwards arrow"), + (0x27B0, 'โžฐ', "curly loop"), + (0x27BF, 'โžฟ', "double curly loop"), + (0x2934, 'โคด', "arrow pointing rightwards then curving upwards"), + (0x2935, 'โคต', "arrow pointing rightwards then curving downwards"), + (0x2B05, 'โฌ…', "leftwards black arrow"), + (0x2B06, 'โฌ†', "upwards black arrow"), + (0x2B07, 'โฌ‡', "downwards black arrow"), + (0x2B1B, 'โฌ›', "black large square"), + (0x2B1C, 'โฌœ', "white large square"), + (0x2B50, 'โญ', "white medium star"), + (0x2B55, 'โญ•', "heavy large circle"), + (0x3030, 'ใ€ฐ', "wavy dash"), + (0x303D, 'ใ€ฝ', "part alternation mark"), + (0x3297, 'ใŠ—', "circled ideograph congratulation"), + (0x3299, 'ใŠ™', "circled ideograph secret"), + (0x1F004, '๐Ÿ€„', "mahjong tile red dragon"), + (0x1F0CF, '๐Ÿƒ', "playing card black joker"), + (0x1F170, '๐Ÿ…ฐ', "negative squared latin capital letter a"), + (0x1F171, '๐Ÿ…ฑ', "negative squared latin capital letter b"), + (0x1F17E, '๐Ÿ…พ', "negative squared latin capital letter o"), + (0x1F17F, '๐Ÿ…ฟ', "negative squared latin capital letter p"), + (0x1F18E, '๐Ÿ†Ž', "negative squared ab"), + (0x1F191, '๐Ÿ†‘', "squared cl"), + (0x1F192, '๐Ÿ†’', "squared cool"), + (0x1F193, '๐Ÿ†“', "squared free"), + (0x1F194, '๐Ÿ†”', "squared id"), + (0x1F195, '๐Ÿ†•', "squared new"), + (0x1F196, '๐Ÿ†–', "squared ng"), + (0x1F197, '๐Ÿ†—', "squared ok"), + (0x1F198, '๐Ÿ†˜', "squared sos"), + (0x1F199, '๐Ÿ†™', "squared up with exclamation mark"), + (0x1F19A, '๐Ÿ†š', "squared vs"), + (0x1F1E6, '๐Ÿ‡ฆ', "regional indicator symbol letter a"), + (0x1F1E7, '๐Ÿ‡ง', "regional indicator symbol letter b"), + (0x1F1E8, '๐Ÿ‡จ', "regional indicator symbol letter c"), + (0x1F1E9, '๐Ÿ‡ฉ', "regional indicator symbol letter d"), + (0x1F1EA, '๐Ÿ‡ช', "regional indicator symbol letter e"), + (0x1F1EB, '๐Ÿ‡ซ', "regional indicator symbol letter f"), + (0x1F1EC, '๐Ÿ‡ฌ', "regional indicator symbol letter g"), + (0x1F1ED, '๐Ÿ‡ญ', "regional indicator symbol letter h"), + (0x1F1EE, '๐Ÿ‡ฎ', "regional indicator symbol letter i"), + (0x1F1EF, '๐Ÿ‡ฏ', "regional indicator symbol letter j"), + (0x1F1F0, '๐Ÿ‡ฐ', "regional indicator symbol letter k"), + (0x1F1F1, '๐Ÿ‡ฑ', "regional indicator symbol letter l"), + (0x1F1F2, '๐Ÿ‡ฒ', "regional indicator symbol letter m"), + (0x1F1F3, '๐Ÿ‡ณ', "regional indicator symbol letter n"), + (0x1F1F4, '๐Ÿ‡ด', "regional indicator symbol letter o"), + (0x1F1F5, '๐Ÿ‡ต', "regional indicator symbol letter p"), + (0x1F1F6, '๐Ÿ‡ถ', "regional indicator symbol letter q"), + (0x1F1F7, '๐Ÿ‡ท', "regional indicator symbol letter r"), + (0x1F1F8, '๐Ÿ‡ธ', "regional indicator symbol letter s"), + (0x1F1F9, '๐Ÿ‡น', "regional indicator symbol letter t"), + (0x1F1FA, '๐Ÿ‡บ', "regional indicator symbol letter u"), + (0x1F1FB, '๐Ÿ‡ป', "regional indicator symbol letter v"), + (0x1F1FC, '๐Ÿ‡ผ', "regional indicator symbol letter w"), + (0x1F1FD, '๐Ÿ‡ฝ', "regional indicator symbol letter x"), + (0x1F1FE, '๐Ÿ‡พ', "regional indicator symbol letter y"), + (0x1F1FF, '๐Ÿ‡ฟ', "regional indicator symbol letter z"), + (0x1F201, '๐Ÿˆ', "squared katakana koko"), + (0x1F202, '๐Ÿˆ‚', "squared katakana sa"), + (0x1F21A, '๐Ÿˆš', "squared cjk unified ideograph-7121"), + (0x1F22F, '๐Ÿˆฏ', "squared cjk unified ideograph-6307"), + (0x1F232, '๐Ÿˆฒ', "squared cjk unified ideograph-7981"), + (0x1F233, '๐Ÿˆณ', "squared cjk unified ideograph-7a7a"), + (0x1F234, '๐Ÿˆด', "squared cjk unified ideograph-5408"), + (0x1F235, '๐Ÿˆต', "squared cjk unified ideograph-6e80"), + (0x1F236, '๐Ÿˆถ', "squared cjk unified ideograph-6709"), + (0x1F237, '๐Ÿˆท', "squared cjk unified ideograph-6708"), + (0x1F238, '๐Ÿˆธ', "squared cjk unified ideograph-7533"), + (0x1F239, '๐Ÿˆน', "squared cjk unified ideograph-5272"), + (0x1F23A, '๐Ÿˆบ', "squared cjk unified ideograph-55b6"), + (0x1F250, '๐Ÿ‰', "circled ideograph advantage"), + (0x1F251, '๐Ÿ‰‘', "circled ideograph accept"), + (0x1F300, '๐ŸŒ€', "cyclone"), + (0x1F301, '๐ŸŒ', "foggy"), + (0x1F302, '๐ŸŒ‚', "closed umbrella"), + (0x1F303, '๐ŸŒƒ', "night with stars"), + (0x1F304, '๐ŸŒ„', "sunrise over mountains"), + (0x1F305, '๐ŸŒ…', "sunrise"), + (0x1F306, '๐ŸŒ†', "cityscape at dusk"), + (0x1F307, '๐ŸŒ‡', "sunset over buildings"), + (0x1F308, '๐ŸŒˆ', "rainbow"), + (0x1F309, '๐ŸŒ‰', "bridge at night"), + (0x1F30A, '๐ŸŒŠ', "water wave"), + (0x1F30B, '๐ŸŒ‹', "volcano"), + (0x1F30C, '๐ŸŒŒ', "milky way"), + (0x1F30D, '๐ŸŒ', "earth globe europe-africa"), + (0x1F30E, '๐ŸŒŽ', "earth globe americas"), + (0x1F30F, '๐ŸŒ', "earth globe asia-australia"), + (0x1F310, '๐ŸŒ', "globe with meridians"), + (0x1F311, '๐ŸŒ‘', "new moon symbol"), + (0x1F312, '๐ŸŒ’', "waxing crescent moon symbol"), + (0x1F313, '๐ŸŒ“', "first quarter moon symbol"), + (0x1F314, '๐ŸŒ”', "waxing gibbous moon symbol"), + (0x1F315, '๐ŸŒ•', "full moon symbol"), + (0x1F316, '๐ŸŒ–', "waning gibbous moon symbol"), + (0x1F317, '๐ŸŒ—', "last quarter moon symbol"), + (0x1F318, '๐ŸŒ˜', "waning crescent moon symbol"), + (0x1F319, '๐ŸŒ™', "crescent moon"), + (0x1F31A, '๐ŸŒš', "new moon with face"), + (0x1F31B, '๐ŸŒ›', "first quarter moon with face"), + (0x1F31C, '๐ŸŒœ', "last quarter moon with face"), + (0x1F31D, '๐ŸŒ', "full moon with face"), + (0x1F31E, '๐ŸŒž', "sun with face"), + (0x1F31F, '๐ŸŒŸ', "glowing star"), + (0x1F320, '๐ŸŒ ', "shooting star"), + (0x1F330, '๐ŸŒฐ', "chestnut"), + (0x1F331, '๐ŸŒฑ', "seedling"), + (0x1F332, '๐ŸŒฒ', "evergreen tree"), + (0x1F333, '๐ŸŒณ', "deciduous tree"), + (0x1F334, '๐ŸŒด', "palm tree"), + (0x1F335, '๐ŸŒต', "cactus"), + (0x1F337, '๐ŸŒท', "tulip"), + (0x1F338, '๐ŸŒธ', "cherry blossom"), + (0x1F339, '๐ŸŒน', "rose"), + (0x1F33A, '๐ŸŒบ', "hibiscus"), + (0x1F33B, '๐ŸŒป', "sunflower"), + (0x1F33C, '๐ŸŒผ', "blossom"), + (0x1F33D, '๐ŸŒฝ', "ear of maize"), + (0x1F33E, '๐ŸŒพ', "ear of rice"), + (0x1F33F, '๐ŸŒฟ', "herb"), + (0x1F340, '๐Ÿ€', "four leaf clover"), + (0x1F341, '๐Ÿ', "maple leaf"), + (0x1F342, '๐Ÿ‚', "fallen leaf"), + (0x1F343, '๐Ÿƒ', "leaf fluttering in wind"), + (0x1F344, '๐Ÿ„', "mushroom"), + (0x1F345, '๐Ÿ…', "tomato"), + (0x1F346, '๐Ÿ†', "aubergine"), + (0x1F347, '๐Ÿ‡', "grapes"), + (0x1F348, '๐Ÿˆ', "melon"), + (0x1F349, '๐Ÿ‰', "watermelon"), + (0x1F34A, '๐ŸŠ', "tangerine"), + (0x1F34B, '๐Ÿ‹', "lemon"), + (0x1F34C, '๐ŸŒ', "banana"), + (0x1F34D, '๐Ÿ', "pineapple"), + (0x1F34E, '๐ŸŽ', "red apple"), + (0x1F34F, '๐Ÿ', "green apple"), + (0x1F350, '๐Ÿ', "pear"), + (0x1F351, '๐Ÿ‘', "peach"), + (0x1F352, '๐Ÿ’', "cherries"), + (0x1F353, '๐Ÿ“', "strawberry"), + (0x1F354, '๐Ÿ”', "hamburger"), + (0x1F355, '๐Ÿ•', "slice of pizza"), + (0x1F356, '๐Ÿ–', "meat on bone"), + (0x1F357, '๐Ÿ—', "poultry leg"), + (0x1F358, '๐Ÿ˜', "rice cracker"), + (0x1F359, '๐Ÿ™', "rice ball"), + (0x1F35A, '๐Ÿš', "cooked rice"), + (0x1F35B, '๐Ÿ›', "curry and rice"), + (0x1F35C, '๐Ÿœ', "steaming bowl"), + (0x1F35D, '๐Ÿ', "spaghetti"), + (0x1F35E, '๐Ÿž', "bread"), + (0x1F35F, '๐ŸŸ', "french fries"), + (0x1F360, '๐Ÿ ', "roasted sweet potato"), + (0x1F361, '๐Ÿก', "dango"), + (0x1F362, '๐Ÿข', "oden"), + (0x1F363, '๐Ÿฃ', "sushi"), + (0x1F364, '๐Ÿค', "fried shrimp"), + (0x1F365, '๐Ÿฅ', "fish cake with swirl design"), + (0x1F366, '๐Ÿฆ', "soft ice cream"), + (0x1F367, '๐Ÿง', "shaved ice"), + (0x1F368, '๐Ÿจ', "ice cream"), + (0x1F369, '๐Ÿฉ', "doughnut"), + (0x1F36A, '๐Ÿช', "cookie"), + (0x1F36B, '๐Ÿซ', "chocolate bar"), + (0x1F36C, '๐Ÿฌ', "candy"), + (0x1F36D, '๐Ÿญ', "lollipop"), + (0x1F36E, '๐Ÿฎ', "custard"), + (0x1F36F, '๐Ÿฏ', "honey pot"), + (0x1F370, '๐Ÿฐ', "shortcake"), + (0x1F371, '๐Ÿฑ', "bento box"), + (0x1F372, '๐Ÿฒ', "pot of food"), + (0x1F373, '๐Ÿณ', "cooking"), + (0x1F374, '๐Ÿด', "fork and knife"), + (0x1F375, '๐Ÿต', "teacup without handle"), + (0x1F376, '๐Ÿถ', "sake bottle and cup"), + (0x1F377, '๐Ÿท', "wine glass"), + (0x1F378, '๐Ÿธ', "cocktail glass"), + (0x1F379, '๐Ÿน', "tropical drink"), + (0x1F37A, '๐Ÿบ', "beer mug"), + (0x1F37B, '๐Ÿป', "clinking beer mugs"), + (0x1F37C, '๐Ÿผ', "baby bottle"), + (0x1F380, '๐ŸŽ€', "ribbon"), + (0x1F381, '๐ŸŽ', "wrapped present"), + (0x1F382, '๐ŸŽ‚', "birthday cake"), + (0x1F383, '๐ŸŽƒ', "jack-o-lantern"), + (0x1F384, '๐ŸŽ„', "christmas tree"), + (0x1F385, '๐ŸŽ…', "father christmas"), + (0x1F386, '๐ŸŽ†', "fireworks"), + (0x1F387, '๐ŸŽ‡', "firework sparkler"), + (0x1F388, '๐ŸŽˆ', "balloon"), + (0x1F389, '๐ŸŽ‰', "party popper"), + (0x1F38A, '๐ŸŽŠ', "confetti ball"), + (0x1F38B, '๐ŸŽ‹', "tanabata tree"), + (0x1F38C, '๐ŸŽŒ', "crossed flags"), + (0x1F38D, '๐ŸŽ', "pine decoration"), + (0x1F38E, '๐ŸŽŽ', "japanese dolls"), + (0x1F38F, '๐ŸŽ', "carp streamer"), + (0x1F390, '๐ŸŽ', "wind chime"), + (0x1F391, '๐ŸŽ‘', "moon viewing ceremony"), + (0x1F392, '๐ŸŽ’', "school satchel"), + (0x1F393, '๐ŸŽ“', "graduation cap"), + (0x1F3A0, '๐ŸŽ ', "carousel horse"), + (0x1F3A1, '๐ŸŽก', "ferris wheel"), + (0x1F3A2, '๐ŸŽข', "roller coaster"), + (0x1F3A3, '๐ŸŽฃ', "fishing pole and fish"), + (0x1F3A4, '๐ŸŽค', "microphone"), + (0x1F3A5, '๐ŸŽฅ', "movie camera"), + (0x1F3A6, '๐ŸŽฆ', "cinema"), + (0x1F3A7, '๐ŸŽง', "headphone"), + (0x1F3A8, '๐ŸŽจ', "artist palette"), + (0x1F3A9, '๐ŸŽฉ', "top hat"), + (0x1F3AA, '๐ŸŽช', "circus tent"), + (0x1F3AB, '๐ŸŽซ', "ticket"), + (0x1F3AC, '๐ŸŽฌ', "clapper board"), + (0x1F3AD, '๐ŸŽญ', "performing arts"), + (0x1F3AE, '๐ŸŽฎ', "video game"), + (0x1F3AF, '๐ŸŽฏ', "direct hit"), + (0x1F3B0, '๐ŸŽฐ', "slot machine"), + (0x1F3B1, '๐ŸŽฑ', "billiards"), + (0x1F3B2, '๐ŸŽฒ', "game die"), + (0x1F3B3, '๐ŸŽณ', "bowling"), + (0x1F3B4, '๐ŸŽด', "flower playing cards"), + (0x1F3B5, '๐ŸŽต', "musical note"), + (0x1F3B6, '๐ŸŽถ', "multiple musical notes"), + (0x1F3B7, '๐ŸŽท', "saxophone"), + (0x1F3B8, '๐ŸŽธ', "guitar"), + (0x1F3B9, '๐ŸŽน', "musical keyboard"), + (0x1F3BA, '๐ŸŽบ', "trumpet"), + (0x1F3BB, '๐ŸŽป', "violin"), + (0x1F3BC, '๐ŸŽผ', "musical score"), + (0x1F3BD, '๐ŸŽฝ', "running shirt with sash"), + (0x1F3BE, '๐ŸŽพ', "tennis racquet and ball"), + (0x1F3BF, '๐ŸŽฟ', "ski and ski boot"), + (0x1F3C0, '๐Ÿ€', "basketball and hoop"), + (0x1F3C1, '๐Ÿ', "chequered flag"), + (0x1F3C2, '๐Ÿ‚', "snowboarder"), + (0x1F3C3, '๐Ÿƒ', "runner"), + (0x1F3C4, '๐Ÿ„', "surfer"), + (0x1F3C6, '๐Ÿ†', "trophy"), + (0x1F3C7, '๐Ÿ‡', "horse racing"), + (0x1F3C8, '๐Ÿˆ', "american football"), + (0x1F3C9, '๐Ÿ‰', "rugby football"), + (0x1F3CA, '๐ŸŠ', "swimmer"), + (0x1F3E0, '๐Ÿ ', "house building"), + (0x1F3E1, '๐Ÿก', "house with garden"), + (0x1F3E2, '๐Ÿข', "office building"), + (0x1F3E3, '๐Ÿฃ', "japanese post office"), + (0x1F3E4, '๐Ÿค', "european post office"), + (0x1F3E5, '๐Ÿฅ', "hospital"), + (0x1F3E6, '๐Ÿฆ', "bank"), + (0x1F3E7, '๐Ÿง', "automated teller machine"), + (0x1F3E8, '๐Ÿจ', "hotel"), + (0x1F3E9, '๐Ÿฉ', "love hotel"), + (0x1F3EA, '๐Ÿช', "convenience store"), + (0x1F3EB, '๐Ÿซ', "school"), + (0x1F3EC, '๐Ÿฌ', "department store"), + (0x1F3ED, '๐Ÿญ', "factory"), + (0x1F3EE, '๐Ÿฎ', "izakaya lantern"), + (0x1F3EF, '๐Ÿฏ', "japanese castle"), + (0x1F3F0, '๐Ÿฐ', "european castle"), + (0x1F400, '๐Ÿ€', "rat"), + (0x1F401, '๐Ÿ', "mouse"), + (0x1F402, '๐Ÿ‚', "ox"), + (0x1F403, '๐Ÿƒ', "water buffalo"), + (0x1F404, '๐Ÿ„', "cow"), + (0x1F405, '๐Ÿ…', "tiger"), + (0x1F406, '๐Ÿ†', "leopard"), + (0x1F407, '๐Ÿ‡', "rabbit"), + (0x1F408, '๐Ÿˆ', "cat"), + (0x1F409, '๐Ÿ‰', "dragon"), + (0x1F40A, '๐ŸŠ', "crocodile"), + (0x1F40B, '๐Ÿ‹', "whale"), + (0x1F40C, '๐ŸŒ', "snail"), + (0x1F40D, '๐Ÿ', "snake"), + (0x1F40E, '๐ŸŽ', "horse"), + (0x1F40F, '๐Ÿ', "ram"), + (0x1F410, '๐Ÿ', "goat"), + (0x1F411, '๐Ÿ‘', "sheep"), + (0x1F412, '๐Ÿ’', "monkey"), + (0x1F413, '๐Ÿ“', "rooster"), + (0x1F414, '๐Ÿ”', "chicken"), + (0x1F415, '๐Ÿ•', "dog"), + (0x1F416, '๐Ÿ–', "pig"), + (0x1F417, '๐Ÿ—', "boar"), + (0x1F418, '๐Ÿ˜', "elephant"), + (0x1F419, '๐Ÿ™', "octopus"), + (0x1F41A, '๐Ÿš', "spiral shell"), + (0x1F41B, '๐Ÿ›', "bug"), + (0x1F41C, '๐Ÿœ', "ant"), + (0x1F41D, '๐Ÿ', "honeybee"), + (0x1F41E, '๐Ÿž', "lady beetle"), + (0x1F41F, '๐ŸŸ', "fish"), + (0x1F420, '๐Ÿ ', "tropical fish"), + (0x1F421, '๐Ÿก', "blowfish"), + (0x1F422, '๐Ÿข', "turtle"), + (0x1F423, '๐Ÿฃ', "hatching chick"), + (0x1F424, '๐Ÿค', "baby chick"), + (0x1F425, '๐Ÿฅ', "front-facing baby chick"), + (0x1F426, '๐Ÿฆ', "bird"), + (0x1F427, '๐Ÿง', "penguin"), + (0x1F428, '๐Ÿจ', "koala"), + (0x1F429, '๐Ÿฉ', "poodle"), + (0x1F42B, '๐Ÿซ', "bactrian camel"), + (0x1F42C, '๐Ÿฌ', "dolphin"), + (0x1F42D, '๐Ÿญ', "mouse face"), + (0x1F42E, '๐Ÿฎ', "cow face"), + (0x1F42F, '๐Ÿฏ', "tiger face"), + (0x1F430, '๐Ÿฐ', "rabbit face"), + (0x1F431, '๐Ÿฑ', "cat face"), + (0x1F432, '๐Ÿฒ', "dragon face"), + (0x1F433, '๐Ÿณ', "spouting whale"), + (0x1F434, '๐Ÿด', "horse face"), + (0x1F435, '๐Ÿต', "monkey face"), + (0x1F436, '๐Ÿถ', "dog face"), + (0x1F437, '๐Ÿท', "pig face"), + (0x1F438, '๐Ÿธ', "frog face"), + (0x1F439, '๐Ÿน', "hamster face"), + (0x1F43A, '๐Ÿบ', "wolf face"), + (0x1F43B, '๐Ÿป', "bear face"), + (0x1F43C, '๐Ÿผ', "panda face"), + (0x1F43D, '๐Ÿฝ', "pig nose"), + (0x1F43E, '๐Ÿพ', "paw prints"), + (0x1F440, '๐Ÿ‘€', "eyes"), + (0x1F442, '๐Ÿ‘‚', "ear"), + (0x1F443, '๐Ÿ‘ƒ', "nose"), + (0x1F444, '๐Ÿ‘„', "mouth"), + (0x1F445, '๐Ÿ‘…', "tongue"), + (0x1F446, '๐Ÿ‘†', "white up pointing backhand index"), + (0x1F447, '๐Ÿ‘‡', "white down pointing backhand index"), + (0x1F448, '๐Ÿ‘ˆ', "white left pointing backhand index"), + (0x1F449, '๐Ÿ‘‰', "white right pointing backhand index"), + (0x1F44A, '๐Ÿ‘Š', "fisted hand sign"), + (0x1F44B, '๐Ÿ‘‹', "waving hand sign"), + (0x1F44C, '๐Ÿ‘Œ', "ok hand sign"), + (0x1F44D, '๐Ÿ‘', "thumbs up sign"), + (0x1F44E, '๐Ÿ‘Ž', "thumbs down sign"), + (0x1F44F, '๐Ÿ‘', "clapping hands sign"), + (0x1F450, '๐Ÿ‘', "open hands sign"), + (0x1F451, '๐Ÿ‘‘', "crown"), + (0x1F452, '๐Ÿ‘’', "womans hat"), + (0x1F453, '๐Ÿ‘“', "eyeglasses"), + (0x1F454, '๐Ÿ‘”', "necktie"), + (0x1F455, '๐Ÿ‘•', "t-shirt"), + (0x1F456, '๐Ÿ‘–', "jeans"), + (0x1F457, '๐Ÿ‘—', "dress"), + (0x1F458, '๐Ÿ‘˜', "kimono"), + (0x1F459, '๐Ÿ‘™', "bikini"), + (0x1F45A, '๐Ÿ‘š', "womans clothes"), + (0x1F45B, '๐Ÿ‘›', "purse"), + (0x1F45C, '๐Ÿ‘œ', "handbag"), + (0x1F45D, '๐Ÿ‘', "pouch"), + (0x1F45E, '๐Ÿ‘ž', "mans shoe"), + (0x1F45F, '๐Ÿ‘Ÿ', "athletic shoe"), + (0x1F460, '๐Ÿ‘ ', "high-heeled shoe"), + (0x1F461, '๐Ÿ‘ก', "womans sandal"), + (0x1F462, '๐Ÿ‘ข', "womans boots"), + (0x1F463, '๐Ÿ‘ฃ', "footprints"), + (0x1F464, '๐Ÿ‘ค', "bust in silhouette"), + (0x1F465, '๐Ÿ‘ฅ', "busts in silhouette"), + (0x1F466, '๐Ÿ‘ฆ', "boy"), + (0x1F467, '๐Ÿ‘ง', "girl"), + (0x1F468, '๐Ÿ‘จ', "man"), + (0x1F469, '๐Ÿ‘ฉ', "woman"), + (0x1F46A, '๐Ÿ‘ช', "family"), + (0x1F46B, '๐Ÿ‘ซ', "man and woman holding hands"), + (0x1F46C, '๐Ÿ‘ฌ', "two men holding hands"), + (0x1F46D, '๐Ÿ‘ญ', "two women holding hands"), + (0x1F46E, '๐Ÿ‘ฎ', "police officer"), + (0x1F46F, '๐Ÿ‘ฏ', "woman with bunny ears"), + (0x1F470, '๐Ÿ‘ฐ', "bride with veil"), + (0x1F471, '๐Ÿ‘ฑ', "person with blond hair"), + (0x1F472, '๐Ÿ‘ฒ', "man with gua pi mao"), + (0x1F473, '๐Ÿ‘ณ', "man with turban"), + (0x1F474, '๐Ÿ‘ด', "older man"), + (0x1F475, '๐Ÿ‘ต', "older woman"), + (0x1F476, '๐Ÿ‘ถ', "baby"), + (0x1F477, '๐Ÿ‘ท', "construction worker"), + (0x1F478, '๐Ÿ‘ธ', "princess"), + (0x1F479, '๐Ÿ‘น', "japanese ogre"), + (0x1F47A, '๐Ÿ‘บ', "japanese goblin"), + (0x1F47B, '๐Ÿ‘ป', "ghost"), + (0x1F47C, '๐Ÿ‘ผ', "baby angel"), + (0x1F47D, '๐Ÿ‘ฝ', "extraterrestrial alien"), + (0x1F47E, '๐Ÿ‘พ', "alien monster"), + (0x1F47F, '๐Ÿ‘ฟ', "imp"), + (0x1F480, '๐Ÿ’€', "skull"), + (0x1F481, '๐Ÿ’', "information desk person"), + (0x1F482, '๐Ÿ’‚', "guardsman"), + (0x1F483, '๐Ÿ’ƒ', "dancer"), + (0x1F484, '๐Ÿ’„', "lipstick"), + (0x1F485, '๐Ÿ’…', "nail polish"), + (0x1F486, '๐Ÿ’†', "face massage"), + (0x1F487, '๐Ÿ’‡', "haircut"), + (0x1F488, '๐Ÿ’ˆ', "barber pole"), + (0x1F489, '๐Ÿ’‰', "syringe"), + (0x1F48A, '๐Ÿ’Š', "pill"), + (0x1F48B, '๐Ÿ’‹', "kiss mark"), + (0x1F48C, '๐Ÿ’Œ', "love letter"), + (0x1F48D, '๐Ÿ’', "ring"), + (0x1F48E, '๐Ÿ’Ž', "gem stone"), + (0x1F48F, '๐Ÿ’', "kiss"), + (0x1F490, '๐Ÿ’', "bouquet"), + (0x1F491, '๐Ÿ’‘', "couple with heart"), + (0x1F492, '๐Ÿ’’', "wedding"), + (0x1F493, '๐Ÿ’“', "beating heart"), + (0x1F494, '๐Ÿ’”', "broken heart"), + (0x1F495, '๐Ÿ’•', "two hearts"), + (0x1F496, '๐Ÿ’–', "sparkling heart"), + (0x1F497, '๐Ÿ’—', "growing heart"), + (0x1F498, '๐Ÿ’˜', "heart with arrow"), + (0x1F499, '๐Ÿ’™', "blue heart"), + (0x1F49A, '๐Ÿ’š', "green heart"), + (0x1F49B, '๐Ÿ’›', "yellow heart"), + (0x1F49C, '๐Ÿ’œ', "purple heart"), + (0x1F49D, '๐Ÿ’', "heart with ribbon"), + (0x1F49E, '๐Ÿ’ž', "revolving hearts"), + (0x1F49F, '๐Ÿ’Ÿ', "heart decoration"), + (0x1F4A0, '๐Ÿ’ ', "diamond shape with a dot inside"), + (0x1F4A1, '๐Ÿ’ก', "electric light bulb"), + (0x1F4A2, '๐Ÿ’ข', "anger symbol"), + (0x1F4A3, '๐Ÿ’ฃ', "bomb"), + (0x1F4A4, '๐Ÿ’ค', "sleeping symbol"), + (0x1F4A5, '๐Ÿ’ฅ', "collision symbol"), + (0x1F4A6, '๐Ÿ’ฆ', "splashing sweat symbol"), + (0x1F4A7, '๐Ÿ’ง', "droplet"), + (0x1F4A8, '๐Ÿ’จ', "dash symbol"), + (0x1F4A9, '๐Ÿ’ฉ', "pile of poo"), + (0x1F4AA, '๐Ÿ’ช', "flexed biceps"), + (0x1F4AB, '๐Ÿ’ซ', "dizzy symbol"), + (0x1F4AC, '๐Ÿ’ฌ', "speech balloon"), + (0x1F4AD, '๐Ÿ’ญ', "thought balloon"), + (0x1F4AE, '๐Ÿ’ฎ', "white flower"), + (0x1F4AF, '๐Ÿ’ฏ', "hundred points symbol"), + (0x1F4B0, '๐Ÿ’ฐ', "money bag"), + (0x1F4B1, '๐Ÿ’ฑ', "currency exchange"), + (0x1F4B2, '๐Ÿ’ฒ', "heavy dollar sign"), + (0x1F4B3, '๐Ÿ’ณ', "credit card"), + (0x1F4B4, '๐Ÿ’ด', "banknote with yen sign"), + (0x1F4B5, '๐Ÿ’ต', "banknote with dollar sign"), + (0x1F4B6, '๐Ÿ’ถ', "banknote with euro sign"), + (0x1F4B7, '๐Ÿ’ท', "banknote with pound sign"), + (0x1F4B8, '๐Ÿ’ธ', "money with wings"), + (0x1F4B9, '๐Ÿ’น', "chart with upwards trend and yen sign"), + (0x1F4BA, '๐Ÿ’บ', "seat"), + (0x1F4BB, '๐Ÿ’ป', "personal computer"), + (0x1F4BC, '๐Ÿ’ผ', "briefcase"), + (0x1F4BD, '๐Ÿ’ฝ', "minidisc"), + (0x1F4BE, '๐Ÿ’พ', "floppy disk"), + (0x1F4BF, '๐Ÿ’ฟ', "optical disc"), + (0x1F4C0, '๐Ÿ“€', "dvd"), + (0x1F4C1, '๐Ÿ“', "file folder"), + (0x1F4C2, '๐Ÿ“‚', "open file folder"), + (0x1F4C3, '๐Ÿ“ƒ', "page with curl"), + (0x1F4C4, '๐Ÿ“„', "page facing up"), + (0x1F4C5, '๐Ÿ“…', "calendar"), + (0x1F4C6, '๐Ÿ“†', "tear-off calendar"), + (0x1F4C7, '๐Ÿ“‡', "card index"), + (0x1F4C8, '๐Ÿ“ˆ', "chart with upwards trend"), + (0x1F4C9, '๐Ÿ“‰', "chart with downwards trend"), + (0x1F4CA, '๐Ÿ“Š', "bar chart"), + (0x1F4CB, '๐Ÿ“‹', "clipboard"), + (0x1F4CC, '๐Ÿ“Œ', "pushpin"), + (0x1F4CD, '๐Ÿ“', "round pushpin"), + (0x1F4CE, '๐Ÿ“Ž', "paperclip"), + (0x1F4CF, '๐Ÿ“', "straight ruler"), + (0x1F4D0, '๐Ÿ“', "triangular ruler"), + (0x1F4D1, '๐Ÿ“‘', "bookmark tabs"), + (0x1F4D2, '๐Ÿ“’', "ledger"), + (0x1F4D3, '๐Ÿ““', "notebook"), + (0x1F4D4, '๐Ÿ“”', "notebook with decorative cover"), + (0x1F4D5, '๐Ÿ“•', "closed book"), + (0x1F4D6, '๐Ÿ“–', "open book"), + (0x1F4D7, '๐Ÿ“—', "green book"), + (0x1F4D8, '๐Ÿ“˜', "blue book"), + (0x1F4D9, '๐Ÿ“™', "orange book"), + (0x1F4DA, '๐Ÿ“š', "books"), + (0x1F4DB, '๐Ÿ“›', "name badge"), + (0x1F4DC, '๐Ÿ“œ', "scroll"), + (0x1F4DD, '๐Ÿ“', "memo"), + (0x1F4DE, '๐Ÿ“ž', "telephone receiver"), + (0x1F4DF, '๐Ÿ“Ÿ', "pager"), + (0x1F4E0, '๐Ÿ“ ', "fax machine"), + (0x1F4E1, '๐Ÿ“ก', "satellite antenna"), + (0x1F4E2, '๐Ÿ“ข', "public address loudspeaker"), + (0x1F4E3, '๐Ÿ“ฃ', "cheering megaphone"), + (0x1F4E4, '๐Ÿ“ค', "outbox tray"), + (0x1F4E5, '๐Ÿ“ฅ', "inbox tray"), + (0x1F4E6, '๐Ÿ“ฆ', "package"), + (0x1F4E7, '๐Ÿ“ง', "e-mail symbol"), + (0x1F4E8, '๐Ÿ“จ', "incoming envelope"), + (0x1F4E9, '๐Ÿ“ฉ', "envelope with downwards arrow above"), + (0x1F4EA, '๐Ÿ“ช', "closed mailbox with lowered flag"), + (0x1F4EB, '๐Ÿ“ซ', "closed mailbox with raised flag"), + (0x1F4EC, '๐Ÿ“ฌ', "open mailbox with raised flag"), + (0x1F4ED, '๐Ÿ“ญ', "open mailbox with lowered flag"), + (0x1F4EE, '๐Ÿ“ฎ', "postbox"), + (0x1F4EF, '๐Ÿ“ฏ', "postal horn"), + (0x1F4F0, '๐Ÿ“ฐ', "newspaper"), + (0x1F4F1, '๐Ÿ“ฑ', "mobile phone"), + (0x1F4F2, '๐Ÿ“ฒ', "mobile phone with rightwards arrow at left"), + (0x1F4F3, '๐Ÿ“ณ', "vibration mode"), + (0x1F4F4, '๐Ÿ“ด', "mobile phone off"), + (0x1F4F5, '๐Ÿ“ต', "no mobile phones"), + (0x1F4F6, '๐Ÿ“ถ', "antenna with bars"), + (0x1F4F7, '๐Ÿ“ท', "camera"), + (0x1F4F9, '๐Ÿ“น', "video camera"), + (0x1F4FA, '๐Ÿ“บ', "television"), + (0x1F4FB, '๐Ÿ“ป', "radio"), + (0x1F4FC, '๐Ÿ“ผ', "videocassette"), + (0x1F500, '๐Ÿ”€', "twisted rightwards arrows"), + (0x1F501, '๐Ÿ”', "clockwise rightwards and leftwards open circle arrows"), + (0x1F502, '๐Ÿ”‚', "clockwise rightwards and leftwards open circle arrows with circled one overlay"), + (0x1F503, '๐Ÿ”ƒ', "clockwise downwards and upwards open circle arrows"), + (0x1F504, '๐Ÿ”„', "anticlockwise downwards and upwards open circle arrows"), + (0x1F505, '๐Ÿ”…', "low brightness symbol"), + (0x1F506, '๐Ÿ”†', "high brightness symbol"), + (0x1F507, '๐Ÿ”‡', "speaker with cancellation stroke"), + (0x1F508, '๐Ÿ”ˆ', "speaker"), + (0x1F509, '๐Ÿ”‰', "speaker with one sound wave"), + (0x1F50A, '๐Ÿ”Š', "speaker with three sound waves"), + (0x1F50B, '๐Ÿ”‹', "battery"), + (0x1F50C, '๐Ÿ”Œ', "electric plug"), + (0x1F50D, '๐Ÿ”', "left-pointing magnifying glass"), + (0x1F50E, '๐Ÿ”Ž', "right-pointing magnifying glass"), + (0x1F50F, '๐Ÿ”', "lock with ink pen"), + (0x1F510, '๐Ÿ”', "closed lock with key"), + (0x1F511, '๐Ÿ”‘', "key"), + (0x1F512, '๐Ÿ”’', "lock"), + (0x1F513, '๐Ÿ”“', "open lock"), + (0x1F514, '๐Ÿ””', "bell"), + (0x1F515, '๐Ÿ”•', "bell with cancellation stroke"), + (0x1F516, '๐Ÿ”–', "bookmark"), + (0x1F517, '๐Ÿ”—', "link symbol"), + (0x1F518, '๐Ÿ”˜', "radio button"), + (0x1F519, '๐Ÿ”™', "back with leftwards arrow above"), + (0x1F51A, '๐Ÿ”š', "end with leftwards arrow above"), + (0x1F51B, '๐Ÿ”›', "on with exclamation mark with left right arrow above"), + (0x1F51C, '๐Ÿ”œ', "soon with rightwards arrow above"), + (0x1F51D, '๐Ÿ”', "top with upwards arrow above"), + (0x1F51E, '๐Ÿ”ž', "no one under eighteen symbol"), + (0x1F51F, '๐Ÿ”Ÿ', "keycap ten"), + (0x1F520, '๐Ÿ” ', "input symbol for latin capital letters"), + (0x1F521, '๐Ÿ”ก', "input symbol for latin small letters"), + (0x1F522, '๐Ÿ”ข', "input symbol for numbers"), + (0x1F523, '๐Ÿ”ฃ', "input symbol for symbols"), + (0x1F524, '๐Ÿ”ค', "input symbol for latin letters"), + (0x1F525, '๐Ÿ”ฅ', "fire"), + (0x1F526, '๐Ÿ”ฆ', "electric torch"), + (0x1F527, '๐Ÿ”ง', "wrench"), + (0x1F528, '๐Ÿ”จ', "hammer"), + (0x1F529, '๐Ÿ”ฉ', "nut and bolt"), + (0x1F52A, '๐Ÿ”ช', "hocho"), + (0x1F52B, '๐Ÿ”ซ', "pistol"), + (0x1F52C, '๐Ÿ”ฌ', "microscope"), + (0x1F52D, '๐Ÿ”ญ', "telescope"), + (0x1F52E, '๐Ÿ”ฎ', "crystal ball"), + (0x1F52F, '๐Ÿ”ฏ', "six pointed star with middle dot"), + (0x1F530, '๐Ÿ”ฐ', "japanese symbol for beginner"), + (0x1F531, '๐Ÿ”ฑ', "trident emblem"), + (0x1F532, '๐Ÿ”ฒ', "black square button"), + (0x1F533, '๐Ÿ”ณ', "white square button"), + (0x1F534, '๐Ÿ”ด', "large red circle"), + (0x1F535, '๐Ÿ”ต', "large blue circle"), + (0x1F536, '๐Ÿ”ถ', "large orange diamond"), + (0x1F537, '๐Ÿ”ท', "large blue diamond"), + (0x1F538, '๐Ÿ”ธ', "small orange diamond"), + (0x1F539, '๐Ÿ”น', "small blue diamond"), + (0x1F53A, '๐Ÿ”บ', "up-pointing red triangle"), + (0x1F53B, '๐Ÿ”ป', "down-pointing red triangle"), + (0x1F53C, '๐Ÿ”ผ', "up-pointing small red triangle"), + (0x1F53D, '๐Ÿ”ฝ', "down-pointing small red triangle"), + (0x1F550, '๐Ÿ•', "clock face one oclock"), + (0x1F551, '๐Ÿ•‘', "clock face two oclock"), + (0x1F552, '๐Ÿ•’', "clock face three oclock"), + (0x1F553, '๐Ÿ•“', "clock face four oclock"), + (0x1F554, '๐Ÿ•”', "clock face five oclock"), + (0x1F555, '๐Ÿ••', "clock face six oclock"), + (0x1F556, '๐Ÿ•–', "clock face seven oclock"), + (0x1F557, '๐Ÿ•—', "clock face eight oclock"), + (0x1F558, '๐Ÿ•˜', "clock face nine oclock"), + (0x1F559, '๐Ÿ•™', "clock face ten oclock"), + (0x1F55A, '๐Ÿ•š', "clock face eleven oclock"), + (0x1F55B, '๐Ÿ•›', "clock face twelve oclock"), + (0x1F55C, '๐Ÿ•œ', "clock face one-thirty"), + (0x1F55D, '๐Ÿ•', "clock face two-thirty"), + (0x1F55E, '๐Ÿ•ž', "clock face three-thirty"), + (0x1F55F, '๐Ÿ•Ÿ', "clock face four-thirty"), + (0x1F560, '๐Ÿ• ', "clock face five-thirty"), + (0x1F561, '๐Ÿ•ก', "clock face six-thirty"), + (0x1F562, '๐Ÿ•ข', "clock face seven-thirty"), + (0x1F563, '๐Ÿ•ฃ', "clock face eight-thirty"), + (0x1F564, '๐Ÿ•ค', "clock face nine-thirty"), + (0x1F565, '๐Ÿ•ฅ', "clock face ten-thirty"), + (0x1F566, '๐Ÿ•ฆ', "clock face eleven-thirty"), + (0x1F567, '๐Ÿ•ง', "clock face twelve-thirty"), + (0x1F5FB, '๐Ÿ—ป', "mount fuji"), + (0x1F5FC, '๐Ÿ—ผ', "tokyo tower"), + (0x1F5FD, '๐Ÿ—ฝ', "statue of liberty"), + (0x1F5FE, '๐Ÿ—พ', "silhouette of japan"), + (0x1F5FF, '๐Ÿ—ฟ', "moyai"), + (0x1F600, '๐Ÿ˜€', "grinning face"), + (0x1F601, '๐Ÿ˜', "grinning face with smiling eyes"), + (0x1F602, '๐Ÿ˜‚', "face with tears of joy"), + (0x1F603, '๐Ÿ˜ƒ', "smiling face with open mouth"), + (0x1F604, '๐Ÿ˜„', "smiling face with open mouth and smiling eyes"), + (0x1F605, '๐Ÿ˜…', "smiling face with open mouth and cold sweat"), + (0x1F606, '๐Ÿ˜†', "smiling face with open mouth and tightly-closed eyes"), + (0x1F607, '๐Ÿ˜‡', "smiling face with halo"), + (0x1F608, '๐Ÿ˜ˆ', "smiling face with horns"), + (0x1F609, '๐Ÿ˜‰', "winking face"), + (0x1F60A, '๐Ÿ˜Š', "smiling face with smiling eyes"), + (0x1F60B, '๐Ÿ˜‹', "face savouring delicious food"), + (0x1F60C, '๐Ÿ˜Œ', "relieved face"), + (0x1F60D, '๐Ÿ˜', "smiling face with heart-shaped eyes"), + (0x1F60E, '๐Ÿ˜Ž', "smiling face with sunglasses"), + (0x1F60F, '๐Ÿ˜', "smirking face"), + (0x1F610, '๐Ÿ˜', "neutral face"), + (0x1F611, '๐Ÿ˜‘', "expressionless face"), + (0x1F612, '๐Ÿ˜’', "unamused face"), + (0x1F613, '๐Ÿ˜“', "face with cold sweat"), + (0x1F614, '๐Ÿ˜”', "pensive face"), + (0x1F615, '๐Ÿ˜•', "confused face"), + (0x1F616, '๐Ÿ˜–', "confounded face"), + (0x1F617, '๐Ÿ˜—', "kissing face"), + (0x1F618, '๐Ÿ˜˜', "face throwing a kiss"), + (0x1F619, '๐Ÿ˜™', "kissing face with smiling eyes"), + (0x1F61A, '๐Ÿ˜š', "kissing face with closed eyes"), + (0x1F61B, '๐Ÿ˜›', "face with stuck-out tongue"), + (0x1F61C, '๐Ÿ˜œ', "face with stuck-out tongue and winking eye"), + (0x1F61D, '๐Ÿ˜', "face with stuck-out tongue and tightly-closed eyes"), + (0x1F61E, '๐Ÿ˜ž', "disappointed face"), + (0x1F61F, '๐Ÿ˜Ÿ', "worried face"), + (0x1F620, '๐Ÿ˜ ', "angry face"), + (0x1F621, '๐Ÿ˜ก', "pouting face"), + (0x1F622, '๐Ÿ˜ข', "crying face"), + (0x1F623, '๐Ÿ˜ฃ', "persevering face"), + (0x1F624, '๐Ÿ˜ค', "face with look of triumph"), + (0x1F625, '๐Ÿ˜ฅ', "disappointed but relieved face"), + (0x1F626, '๐Ÿ˜ฆ', "frowning face with open mouth"), + (0x1F627, '๐Ÿ˜ง', "anguished face"), + (0x1F628, '๐Ÿ˜จ', "fearful face"), + (0x1F629, '๐Ÿ˜ฉ', "weary face"), + (0x1F62A, '๐Ÿ˜ช', "sleepy face"), + (0x1F62B, '๐Ÿ˜ซ', "tired face"), + (0x1F62C, '๐Ÿ˜ฌ', "grimacing face"), + (0x1F62D, '๐Ÿ˜ญ', "loudly crying face"), + (0x1F62E, '๐Ÿ˜ฎ', "face with open mouth"), + (0x1F62F, '๐Ÿ˜ฏ', "hushed face"), + (0x1F630, '๐Ÿ˜ฐ', "face with open mouth and cold sweat"), + (0x1F631, '๐Ÿ˜ฑ', "face screaming in fear"), + (0x1F632, '๐Ÿ˜ฒ', "astonished face"), + (0x1F633, '๐Ÿ˜ณ', "flushed face"), + (0x1F634, '๐Ÿ˜ด', "sleeping face"), + (0x1F635, '๐Ÿ˜ต', "dizzy face"), + (0x1F636, '๐Ÿ˜ถ', "face without mouth"), + (0x1F637, '๐Ÿ˜ท', "face with medical mask"), + (0x1F638, '๐Ÿ˜ธ', "grinning cat face with smiling eyes"), + (0x1F639, '๐Ÿ˜น', "cat face with tears of joy"), + (0x1F63A, '๐Ÿ˜บ', "smiling cat face with open mouth"), + (0x1F63B, '๐Ÿ˜ป', "smiling cat face with heart-shaped eyes"), + (0x1F63C, '๐Ÿ˜ผ', "cat face with wry smile"), + (0x1F63D, '๐Ÿ˜ฝ', "kissing cat face with closed eyes"), + (0x1F63E, '๐Ÿ˜พ', "pouting cat face"), + (0x1F63F, '๐Ÿ˜ฟ', "crying cat face"), + (0x1F640, '๐Ÿ™€', "weary cat face"), + (0x1F645, '๐Ÿ™…', "face with no good gesture"), + (0x1F646, '๐Ÿ™†', "face with ok gesture"), + (0x1F647, '๐Ÿ™‡', "person bowing deeply"), + (0x1F648, '๐Ÿ™ˆ', "see-no-evil monkey"), + (0x1F649, '๐Ÿ™‰', "hear-no-evil monkey"), + (0x1F64A, '๐Ÿ™Š', "speak-no-evil monkey"), + (0x1F64B, '๐Ÿ™‹', "happy person raising one hand"), + (0x1F64C, '๐Ÿ™Œ', "person raising both hands in celebration"), + (0x1F64D, '๐Ÿ™', "person frowning"), + (0x1F64E, '๐Ÿ™Ž', "person with pouting face"), + (0x1F64F, '๐Ÿ™', "person with folded hands"), + (0x1F680, '๐Ÿš€', "rocket"), + (0x1F681, '๐Ÿš', "helicopter"), + (0x1F682, '๐Ÿš‚', "steam locomotive"), + (0x1F683, '๐Ÿšƒ', "railway car"), + (0x1F684, '๐Ÿš„', "high-speed train"), + (0x1F685, '๐Ÿš…', "high-speed train with bullet nose"), + (0x1F686, '๐Ÿš†', "train"), + (0x1F687, '๐Ÿš‡', "metro"), + (0x1F688, '๐Ÿšˆ', "light rail"), + (0x1F689, '๐Ÿš‰', "station"), + (0x1F68A, '๐ŸšŠ', "tram"), + (0x1F68B, '๐Ÿš‹', "tram car"), + (0x1F68C, '๐ŸšŒ', "bus"), + (0x1F68D, '๐Ÿš', "oncoming bus"), + (0x1F68E, '๐ŸšŽ', "trolleybus"), + (0x1F68F, '๐Ÿš', "bus stop"), + (0x1F690, '๐Ÿš', "minibus"), + (0x1F691, '๐Ÿš‘', "ambulance"), + (0x1F692, '๐Ÿš’', "fire engine"), + (0x1F693, '๐Ÿš“', "police car"), + (0x1F694, '๐Ÿš”', "oncoming police car"), + (0x1F695, '๐Ÿš•', "taxi"), + (0x1F696, '๐Ÿš–', "oncoming taxi"), + (0x1F697, '๐Ÿš—', "automobile"), + (0x1F699, '๐Ÿš™', "recreational vehicle"), + (0x1F69A, '๐Ÿšš', "delivery truck"), + (0x1F69B, '๐Ÿš›', "articulated lorry"), + (0x1F69C, '๐Ÿšœ', "tractor"), + (0x1F69D, '๐Ÿš', "monorail"), + (0x1F69E, '๐Ÿšž', "mountain railway"), + (0x1F69F, '๐ŸšŸ', "suspension railway"), + (0x1F6A0, '๐Ÿš ', "mountain cableway"), + (0x1F6A1, '๐Ÿšก', "aerial tramway"), + (0x1F6A2, '๐Ÿšข', "ship"), + (0x1F6A3, '๐Ÿšฃ', "rowboat"), + (0x1F6A4, '๐Ÿšค', "speedboat"), + (0x1F6A5, '๐Ÿšฅ', "horizontal traffic light"), + (0x1F6A6, '๐Ÿšฆ', "vertical traffic light"), + (0x1F6A7, '๐Ÿšง', "construction sign"), + (0x1F6A8, '๐Ÿšจ', "police cars revolving light"), + (0x1F6A9, '๐Ÿšฉ', "triangular flag on post"), + (0x1F6AA, '๐Ÿšช', "door"), + (0x1F6AB, '๐Ÿšซ', "no entry sign"), + (0x1F6AC, '๐Ÿšฌ', "smoking symbol"), + (0x1F6AD, '๐Ÿšญ', "no smoking symbol"), + (0x1F6AE, '๐Ÿšฎ', "put litter in its place symbol"), + (0x1F6AF, '๐Ÿšฏ', "do not litter symbol"), + (0x1F6B0, '๐Ÿšฐ', "potable water symbol"), + (0x1F6B1, '๐Ÿšฑ', "non-potable water symbol"), + (0x1F6B2, '๐Ÿšฒ', "bicycle"), + (0x1F6B3, '๐Ÿšณ', "no bicycles"), + (0x1F6B4, '๐Ÿšด', "bicyclist"), + (0x1F6B5, '๐Ÿšต', "mountain bicyclist"), + (0x1F6B6, '๐Ÿšถ', "pedestrian"), + (0x1F6B7, '๐Ÿšท', "no pedestrians"), + (0x1F6B8, '๐Ÿšธ', "children crossing"), + (0x1F6B9, '๐Ÿšน', "mens symbol"), + (0x1F6BA, '๐Ÿšบ', "womens symbol"), + (0x1F6BB, '๐Ÿšป', "restroom"), + (0x1F6BC, '๐Ÿšผ', "baby symbol"), + (0x1F6BD, '๐Ÿšฝ', "toilet"), + (0x1F6BE, '๐Ÿšพ', "water closet"), + (0x1F6BF, '๐Ÿšฟ', "shower"), + (0x1F6C0, '๐Ÿ›€', "bath"), + (0x1F6C1, '๐Ÿ›', "bathtub"), + (0x1F6C2, '๐Ÿ›‚', "passport control"), + (0x1F6C3, '๐Ÿ›ƒ', "customs"), + (0x1F6C4, '๐Ÿ›„', "baggage claim"), + (0x1F6C5, '๐Ÿ›…', "left luggage"), + (0xFE4E5, '๓พ“ฅ', "flag japan"), + (0xFE4E6, '๓พ“ฆ', "flag usa"), + (0xFE4E7, '๓พ“ง', "flag"), + (0xFE4E8, '๓พ“จ', "flag"), + (0xFE4E9, '๓พ“ฉ', "flag"), + (0xFE4EA, '๓พ“ช', "flag great britain"), + (0xFE4EB, '๓พ“ซ', "flag"), + (0xFE4EC, '๓พ“ฌ', "flag"), + (0xFE4ED, '๓พ“ญ', "flag"), + (0xFE4EE, '๓พ“ฎ', "flag south korea"), + (0xFE82C, '๓พ ฌ', "number sign in square"), + (0xFE82E, '๓พ ฎ', "digit one in square"), + (0xFE82F, '๓พ ฏ', "digit two in square"), + (0xFE830, '๓พ ฐ', "digit three in square"), + (0xFE831, '๓พ ฑ', "digit four in square"), + (0xFE832, '๓พ ฒ', "digit five in square"), + (0xFE833, '๓พ ณ', "digit six in square"), + (0xFE834, '๓พ ด', "digit seven in square"), + (0xFE835, '๓พ ต', "digit eight in square"), + (0xFE836, '๓พ ถ', "digit nine in square"), + (0xFE837, '๓พ ท', "digit zero in square"), +]; + +/// All emojis supported by Egui. +/// The union of `emoji-icon-font.ttf` and `NotoEmoji-Regular.ttf`. +#[rustfmt::skip] +pub const FULL_EMOJI_LIST: &[(u32, char, &str)] = &[ + (0xA9, 'ยฉ', "copyright sign"), + (0xAE, 'ยฎ', "registered sign"), + (0x2030, 'โ€ฐ', "perthousand"), + (0x203C, 'โ€ผ', "double exclamation mark"), + (0x2049, 'โ‰', "exclamation question mark"), + (0x20AC, 'โ‚ฌ', "currency-euro"), + (0x20E3, 'โƒฃ', "combining enclosing keycap"), + (0x211E, 'โ„ž', "retrograde"), + (0x2122, 'โ„ข', "trade mark sign"), + (0x2126, 'โ„ฆ', "omega"), + (0x2135, 'โ„ต', "aleph"), + (0x2139, 'โ„น', "information source"), + (0x2194, 'โ†”', "left right arrow"), + (0x2195, 'โ†•', "up down arrow"), + (0x2196, 'โ†–', "north west arrow"), + (0x2197, 'โ†—', "north east arrow"), + (0x2198, 'โ†˜', "south east arrow"), + (0x2199, 'โ†™', "south west arrow"), + (0x21A9, 'โ†ฉ', "leftwards arrow with hook"), + (0x21AA, 'โ†ช', "rightwards arrow with hook"), + (0x21BA, 'โ†บ', "rotate-ccw"), + (0x21BB, 'โ†ป', "rotate-cw"), + (0x221E, 'โˆž', "infinity"), + (0x2297, 'โŠ—', "close"), + (0x229E, 'โŠž', "square-plus"), + (0x229F, 'โŠŸ', "square-minus"), + (0x2316, 'โŒ–', "crosshairs"), + (0x2318, 'โŒ˜', "command"), + (0x231A, 'โŒš', "watch"), + (0x231B, 'โŒ›', "hourglass"), + (0x2328, 'โŒจ', "keyboard-wireless"), + (0x2386, 'โކ', "enter"), + (0x2388, 'โŽˆ', "helm"), + (0x2397, 'โŽ—', "previous-page"), + (0x2398, 'โŽ˜', "next-page"), + (0x2399, 'โŽ™', "print-screen"), + (0x23CF, 'โ', "eject"), + (0x23E9, 'โฉ', "black right-pointing double triangle / forward"), + (0x23EA, 'โช', "backward / black left-pointing double triangle"), + (0x23EB, 'โซ', "black up-pointing double triangle"), + (0x23EC, 'โฌ', "black down-pointing double triangle"), + (0x23ED, 'โญ', "last"), + (0x23EE, 'โฎ', "first"), + (0x23F0, 'โฐ', "alarm clock"), + (0x23F1, 'โฑ', "stopwatch"), + (0x23F3, 'โณ', "hourglass with flowing sand"), + (0x23F4, 'โด', "caret-left"), + (0x23F5, 'โต', "caret-right"), + (0x23F6, 'โถ', "caret-up"), + (0x23F7, 'โท', "caret-down"), + (0x23F8, 'โธ', "pause"), + (0x23F9, 'โน', "stop"), + (0x23FA, 'โบ', "circle"), + (0x24C2, 'โ“‚', "circled latin capital letter m"), + (0x2593, 'โ–“', "chessboard"), + (0x25A0, 'โ– ', "square"), + (0x25A3, 'โ–ฃ', "checkbox-partial"), + (0x25AA, 'โ–ช', "black small square"), + (0x25AB, 'โ–ซ', "white small square"), + (0x25B6, 'โ–ถ', "black right-pointing triangle / play"), + (0x25C0, 'โ—€', "black left-pointing triangle"), + (0x25CA, 'โ—Š', "lozenge"), + (0x25CB, 'โ—‹', "circle-open"), + (0x25CE, 'โ—Ž', "bullseye"), + (0x25D1, 'โ—‘', "contrast"), + (0x25D4, 'โ—”', "pie-chart-reverse"), + (0x25D5, 'โ—•', "pie-chart"), + (0x25FB, 'โ—ป', "white medium square"), + (0x25FC, 'โ—ผ', "black medium square"), + (0x25FD, 'โ—ฝ', "white medium small square"), + (0x25FE, 'โ—พ', "black medium small square"), + (0x2600, 'โ˜€', "black sun with rays"), + (0x2601, 'โ˜', "cloud"), + (0x2602, 'โ˜‚', "umbrella"), + (0x2603, 'โ˜ƒ', "snowman"), + (0x2604, 'โ˜„', "comet"), + (0x2605, 'โ˜…', "star"), + (0x2606, 'โ˜†', "star-open"), + (0x2609, 'โ˜‰', "record"), + (0x260E, 'โ˜Ž', "black telephone"), + (0x2610, 'โ˜', "checkbox-unchecked"), + (0x2611, 'โ˜‘', "ballot box with check / checkbox-checked"), + (0x2614, 'โ˜”', "umbrella with rain drops"), + (0x2615, 'โ˜•', "drink-coffee / hot beverage"), + (0x2618, 'โ˜˜', "shamrock"), + (0x261C, 'โ˜œ', "point-left"), + (0x261D, 'โ˜', "point-up / white up pointing index"), + (0x261E, 'โ˜ž', "point-right"), + (0x261F, 'โ˜Ÿ', "point-down"), + (0x2620, 'โ˜ ', "skull-and-bones"), + (0x2622, 'โ˜ข', "radiation"), + (0x2623, 'โ˜ฃ', "biohazard"), + (0x2624, 'โ˜ค', "caduceus"), + (0x2625, 'โ˜ฅ', "ankh"), + (0x2626, 'โ˜ฆ', "cross-orthodox"), + (0x2627, 'โ˜ง', "chi-rho"), + (0x2628, 'โ˜จ', "cross-of-lorraine"), + (0x2629, 'โ˜ฉ', "cross-of-jerusalem"), + (0x262A, 'โ˜ช', "star-and-crescent"), + (0x262B, 'โ˜ซ', "farsi"), + (0x262C, 'โ˜ฌ', "khanda"), + (0x262E, 'โ˜ฎ', "peace"), + (0x262F, 'โ˜ฏ', "tao"), + (0x2630, 'โ˜ฐ', "menu"), + (0x2638, 'โ˜ธ', "wheel-of-dharma"), + (0x2639, 'โ˜น', "smiley-sad"), + (0x263A, 'โ˜บ', "smiley / white smiling face"), + (0x2640, 'โ™€', "gender-female"), + (0x2642, 'โ™‚', "gender-male"), + (0x2648, 'โ™ˆ', "aries"), + (0x2649, 'โ™‰', "taurus"), + (0x264A, 'โ™Š', "gemini"), + (0x264B, 'โ™‹', "cancer"), + (0x264C, 'โ™Œ', "leo"), + (0x264D, 'โ™', "virgo"), + (0x264E, 'โ™Ž', "libra"), + (0x264F, 'โ™', "scorpius"), + (0x2650, 'โ™', "sagittarius"), + (0x2651, 'โ™‘', "capricorn"), + (0x2652, 'โ™’', "aquarius"), + (0x2653, 'โ™“', "pisces"), + (0x2654, 'โ™”', "chess-white-king"), + (0x2655, 'โ™•', "chess-white-queen"), + (0x2656, 'โ™–', "chess-white-rook"), + (0x2657, 'โ™—', "chess-white-bishop"), + (0x2658, 'โ™˜', "chess-white-knight"), + (0x2659, 'โ™™', "chess-white-pawn"), + (0x265A, 'โ™š', "chess-black-king"), + (0x265B, 'โ™›', "chess-black-queen"), + (0x265C, 'โ™œ', "chess-black-rook"), + (0x265D, 'โ™', "chess-black-bishop"), + (0x265E, 'โ™ž', "chess-black-knight"), + (0x265F, 'โ™Ÿ', "chess-black-pawn"), + (0x2660, 'โ™ ', "black spade suit / spades"), + (0x2661, 'โ™ก', "heart-open"), + (0x2663, 'โ™ฃ', "black club suit / clubs"), + (0x2665, 'โ™ฅ', "black heart suit"), + (0x2666, 'โ™ฆ', "black diamond suit / diamonds"), + (0x2668, 'โ™จ', "hot springs"), + (0x2669, 'โ™ฉ', "music-quarter-note"), + (0x266A, 'โ™ช', "music-eighth-note"), + (0x266B, 'โ™ซ', "music-eigth-notes"), + (0x266C, 'โ™ฌ', "music-sixteenth-notes"), + (0x267B, 'โ™ป', "black universal recycling symbol / recycle"), + (0x267E, 'โ™พ', "permanent-paper"), + (0x267F, 'โ™ฟ', "wheelchair symbol"), + (0x2690, 'โš', "flag-open"), + (0x2691, 'โš‘', "flag"), + (0x2692, 'โš’', "hammer-and-pick"), + (0x2693, 'โš“', "anchor"), + (0x2694, 'โš”', "crossed-swords"), + (0x2695, 'โš•', "asclepius"), + (0x2696, 'โš–', "scales"), + (0x2698, 'โš˜', "flower"), + (0x2699, 'โš™', "gear"), + (0x269B, 'โš›', "atom"), + (0x269C, 'โšœ', "fleur-de-lis"), + (0x26A0, 'โš ', "warning sign"), + (0x26A1, 'โšก', "bolt / high voltage sign"), + (0x26A2, 'โšข', "gender-female-female"), + (0x26A3, 'โšฃ', "gender-male-male"), + (0x26A4, 'โšค', "gender-male-female"), + (0x26A6, 'โšฆ', "gender-transgender"), + (0x26A7, 'โšง', "gender-non-binary"), + (0x26AA, 'โšช', "medium white circle"), + (0x26AB, 'โšซ', "medium black circle"), + (0x26B0, 'โšฐ', "coffin"), + (0x26BD, 'โšฝ', "football-soccer / soccer ball"), + (0x26BE, 'โšพ', "baseball"), + (0x26C3, 'โ›ƒ', "database"), + (0x26C4, 'โ›„', "snowman without snow"), + (0x26C5, 'โ›…', "sun behind cloud"), + (0x26CE, 'โ›Ž', "ophiuchus"), + (0x26CF, 'โ›', "pick"), + (0x26D3, 'โ›“', "dna"), + (0x26D4, 'โ›”', "no entry / no-entry"), + (0x26E4, 'โ›ค', "pentagram"), + (0x26E7, 'โ›ง', "pentagram-inverted"), + (0x26E8, 'โ›จ', "shield-with-cross"), + (0x26E9, 'โ›ฉ', "temple"), + (0x26EA, 'โ›ช', "church"), + (0x26ED, 'โ›ญ', "gear-no-hub"), + (0x26F1, 'โ›ฑ', "beach"), + (0x26F2, 'โ›ฒ', "fountain"), + (0x26F3, 'โ›ณ', "flag in hole"), + (0x26F5, 'โ›ต', "sailboat"), + (0x26F6, 'โ›ถ', "four-corners"), + (0x26F7, 'โ›ท', "skier"), + (0x26F8, 'โ›ธ', "ice-skater"), + (0x26FA, 'โ›บ', "tent"), + (0x26FC, 'โ›ผ', "headstone"), + (0x26FD, 'โ›ฝ', "fuel pump / fuel-pump"), + (0x2702, 'โœ‚', "black scissors"), + (0x2705, 'โœ…', "white heavy check mark"), + (0x2706, 'โœ†', "phone-location"), + (0x2707, 'โœ‡', "film-reel"), + (0x2708, 'โœˆ', "airplane"), + (0x2709, 'โœ‰', "envelope"), + (0x270A, 'โœŠ', "hand-fist / raised fist"), + (0x270B, 'โœ‹', "raised hand"), + (0x270C, 'โœŒ', "victory hand"), + (0x270F, 'โœ', "pencil"), + (0x2712, 'โœ’', "black nib"), + (0x2714, 'โœ”', "heavy check mark"), + (0x2716, 'โœ–', "heavy multiplication x / multiply"), + (0x271A, 'โœš', "plus"), + (0x271D, 'โœ', "latin-cross"), + (0x271F, 'โœŸ', "latin-cross-outline"), + (0x2720, 'โœ ', "maltese-cross"), + (0x2721, 'โœก', "star-of-david"), + (0x2728, 'โœจ', "sparkles"), + (0x272A, 'โœช', "star-circled"), + (0x2731, 'โœฑ', "asterisk-six"), + (0x2733, 'โœณ', "eight spoked asterisk"), + (0x2734, 'โœด', "eight pointed black star / star-eight-points"), + (0x273F, 'โœฟ', "black-florette"), + (0x2740, 'โ€', "florette"), + (0x2744, 'โ„', "snowflake"), + (0x2747, 'โ‡', "sparkle"), + (0x274C, 'โŒ', "cross mark"), + (0x274E, 'โŽ', "negative squared cross mark"), + (0x2753, 'โ“', "black question mark ornament"), + (0x2754, 'โ”', "white question mark ornament"), + (0x2755, 'โ•', "white exclamation mark ornament"), + (0x2757, 'โ—', "heavy exclamation mark symbol"), + (0x2764, 'โค', "heavy black heart"), + (0x2765, 'โฅ', "heart-tilted"), + (0x2795, 'โž•', "heavy plus sign"), + (0x2796, 'โž–', "heavy minus sign"), + (0x2797, 'โž—', "divide / heavy division sign"), + (0x27A1, 'โžก', "arrow-right / black rightwards arrow"), + (0x27B0, 'โžฐ', "curly loop"), + (0x27BF, 'โžฟ', "double curly loop"), + (0x27F2, 'โŸฒ', "rotate-cw-side"), + (0x27F3, 'โŸณ', "rotate-ccw-side"), + (0x2934, 'โคด', "arrow pointing rightwards then curving upwards"), + (0x2935, 'โคต', "arrow pointing rightwards then curving downwards"), + (0x2B05, 'โฌ…', "arrow-left / leftwards black arrow"), + (0x2B06, 'โฌ†', "arrow-up / upwards black arrow"), + (0x2B07, 'โฌ‡', "arrow-down / downwards black arrow"), + (0x2B08, 'โฌˆ', "arrow-up-right"), + (0x2B09, 'โฌ‰', "arrow-up-left"), + (0x2B0A, 'โฌŠ', "arrow-down-right"), + (0x2B0B, 'โฌ‹', "arrow-down-left"), + (0x2B0C, 'โฌŒ', "arrow-left-right"), + (0x2B0D, 'โฌ', "arrow-up-down"), + (0x2B1B, 'โฌ›', "black large square"), + (0x2B1C, 'โฌœ', "white large square"), + (0x2B1F, 'โฌŸ', "pentagon"), + (0x2B23, 'โฌฃ', "hexagon"), + (0x2B50, 'โญ', "white medium star"), + (0x2B55, 'โญ•', "heavy large circle"), + (0x2B88, 'โฎˆ', "circle-arrow-left"), + (0x2B89, 'โฎ‰', "circle-arrow-up"), + (0x2B8A, 'โฎŠ', "circle-arrow-right"), + (0x2B8B, 'โฎ‹', "circle-arrow-down"), + (0x2BA8, 'โฎจ', "arrow-reply"), + (0x2BA9, 'โฎฉ', "arrow-forward"), + (0x2BAA, 'โฎช', "arrow-undo"), + (0x2BAB, 'โฎซ', "arrow-redo"), + (0x3030, 'ใ€ฐ', "wavy dash"), + (0x303D, 'ใ€ฝ', "part alternation mark"), + (0x3297, 'ใŠ—', "circled ideograph congratulation"), + (0x3299, 'ใŠ™', "circled ideograph secret"), + (0xFE5C, '๏นœ', "brace-right"), + (0xFF01, '๏ผ', "exclamation-mark"), + (0xFF03, '๏ผƒ', "number"), + (0xFF04, '๏ผ„', "currency-dollar"), + (0xFF05, '๏ผ…', "percent"), + (0xFF06, '๏ผ†', "ampersand"), + (0xFF08, '๏ผˆ', "parenthesis-left"), + (0xFF09, '๏ผ‰', "parenthesis-right"), + (0xFF0A, '๏ผŠ', "asterisk-five"), + (0xFF10, '๏ผ', "digit-zero"), + (0xFF11, '๏ผ‘', "digit-one"), + (0xFF12, '๏ผ’', "digit-two"), + (0xFF13, '๏ผ“', "digit-three"), + (0xFF14, '๏ผ”', "digit-four"), + (0xFF15, '๏ผ•', "digit-five"), + (0xFF16, '๏ผ–', "digit-six"), + (0xFF17, '๏ผ—', "digit-seven"), + (0xFF18, '๏ผ˜', "digit-eight"), + (0xFF19, '๏ผ™', "digit-nine"), + (0xFF1F, '๏ผŸ', "question-mark"), + (0xFF20, '๏ผ ', "at-symbol"), + (0xFF21, '๏ผก', "letter-A"), + (0xFF22, '๏ผข', "letter-B"), + (0xFF23, '๏ผฃ', "letter-C"), + (0xFF24, '๏ผค', "letter-D"), + (0xFF25, '๏ผฅ', "letter-E"), + (0xFF26, '๏ผฆ', "letter-F"), + (0xFF27, '๏ผง', "letter-G"), + (0xFF28, '๏ผจ', "letter-H"), + (0xFF29, '๏ผฉ', "letter-I"), + (0xFF2A, '๏ผช', "letter-J"), + (0xFF2B, '๏ผซ', "letter-K"), + (0xFF2C, '๏ผฌ', "letter-L"), + (0xFF2D, '๏ผญ', "letter-M"), + (0xFF2E, '๏ผฎ', "letter-N"), + (0xFF2F, '๏ผฏ', "letter-O"), + (0xFF30, '๏ผฐ', "letter-P"), + (0xFF31, '๏ผฑ', "letter-Q"), + (0xFF32, '๏ผฒ', "letter-R"), + (0xFF33, '๏ผณ', "stack-window"), + (0xFF34, '๏ผด', "letter-S"), + (0xFF35, '๏ผต', "letter-T"), + (0xFF36, '๏ผถ', "letter-U"), + (0xFF37, '๏ผท', "letter-V"), + (0xFF38, '๏ผธ', "letter-W"), + (0xFF39, '๏ผน', "letter-X"), + (0xFF3A, '๏ผบ', "letter-Z"), + (0xFF3B, '๏ผป', "square-bracket-left"), + (0xFF3C, '๏ผผ', "at"), + (0xFF3D, '๏ผฝ', "square-bracket-right"), + (0xFF41, '๏ฝ', "letter-a"), + (0xFF42, '๏ฝ‚', "letter-b"), + (0xFF43, '๏ฝƒ', "letter-c"), + (0xFF44, '๏ฝ„', "letter-d"), + (0xFF45, '๏ฝ…', "letter-e"), + (0xFF46, '๏ฝ†', "letter-f"), + (0xFF47, '๏ฝ‡', "letter-g"), + (0xFF48, '๏ฝˆ', "letter-h"), + (0xFF49, '๏ฝ‰', "letter-i"), + (0xFF4A, '๏ฝŠ', "letter-j"), + (0xFF4B, '๏ฝ‹', "letter-k"), + (0xFF4C, '๏ฝŒ', "letter-l"), + (0xFF4D, '๏ฝ', "letter-m"), + (0xFF4E, '๏ฝŽ', "letter-n"), + (0xFF4F, '๏ฝ', "letter-o"), + (0xFF50, '๏ฝ', "letter-p"), + (0xFF51, '๏ฝ‘', "letter-q"), + (0xFF52, '๏ฝ’', "letter-r"), + (0xFF53, '๏ฝ“', "letter-s"), + (0xFF54, '๏ฝ”', "letter-t"), + (0xFF55, '๏ฝ•', "letter-u"), + (0xFF56, '๏ฝ–', "letter-v"), + (0xFF57, '๏ฝ—', "letter-w"), + (0xFF58, '๏ฝ˜', "letter-x"), + (0xFF59, '๏ฝ™', "letter-y"), + (0xFF5A, '๏ฝš', "letter-z"), + (0xFF5B, '๏ฝ›', "brace-left"), + (0xFFE1, '๏ฟก', "currency-pound"), + (0xFFE5, '๏ฟฅ', "yen"), + (0x1D11E, '๐„ž', "g-clef"), + (0x1F004, '๐Ÿ€„', "mahjong tile red dragon"), + (0x1F0A1, '๐Ÿ‚ก', "ace-of-spades"), + (0x1F0B1, '๐Ÿ‚ฑ', "ace-of-hearts"), + (0x1F0C1, '๐Ÿƒ', "ace-of-diamonds"), + (0x1F0CF, '๐Ÿƒ', "playing card black joker"), + (0x1F0D1, '๐Ÿƒ‘', "ace-of-clubs"), + (0x1F170, '๐Ÿ…ฐ', "negative squared latin capital letter a"), + (0x1F171, '๐Ÿ…ฑ', "negative squared latin capital letter b"), + (0x1F17E, '๐Ÿ…พ', "negative squared latin capital letter o"), + (0x1F17F, '๐Ÿ…ฟ', "negative squared latin capital letter p"), + (0x1F18E, '๐Ÿ†Ž', "negative squared ab"), + (0x1F191, '๐Ÿ†‘', "squared cl"), + (0x1F192, '๐Ÿ†’', "squared cool"), + (0x1F193, '๐Ÿ†“', "squared free"), + (0x1F194, '๐Ÿ†”', "squared id"), + (0x1F195, '๐Ÿ†•', "squared new"), + (0x1F196, '๐Ÿ†–', "squared ng"), + (0x1F197, '๐Ÿ†—', "squared ok"), + (0x1F198, '๐Ÿ†˜', "squared sos"), + (0x1F199, '๐Ÿ†™', "squared up with exclamation mark"), + (0x1F19A, '๐Ÿ†š', "squared vs"), + (0x1F1E6, '๐Ÿ‡ฆ', "regional indicator symbol letter a"), + (0x1F1E7, '๐Ÿ‡ง', "regional indicator symbol letter b"), + (0x1F1E8, '๐Ÿ‡จ', "regional indicator symbol letter c"), + (0x1F1E9, '๐Ÿ‡ฉ', "regional indicator symbol letter d"), + (0x1F1EA, '๐Ÿ‡ช', "regional indicator symbol letter e"), + (0x1F1EB, '๐Ÿ‡ซ', "regional indicator symbol letter f"), + (0x1F1EC, '๐Ÿ‡ฌ', "regional indicator symbol letter g"), + (0x1F1ED, '๐Ÿ‡ญ', "regional indicator symbol letter h"), + (0x1F1EE, '๐Ÿ‡ฎ', "regional indicator symbol letter i"), + (0x1F1EF, '๐Ÿ‡ฏ', "regional indicator symbol letter j"), + (0x1F1F0, '๐Ÿ‡ฐ', "regional indicator symbol letter k"), + (0x1F1F1, '๐Ÿ‡ฑ', "regional indicator symbol letter l"), + (0x1F1F2, '๐Ÿ‡ฒ', "regional indicator symbol letter m"), + (0x1F1F3, '๐Ÿ‡ณ', "regional indicator symbol letter n"), + (0x1F1F4, '๐Ÿ‡ด', "regional indicator symbol letter o"), + (0x1F1F5, '๐Ÿ‡ต', "regional indicator symbol letter p"), + (0x1F1F6, '๐Ÿ‡ถ', "regional indicator symbol letter q"), + (0x1F1F7, '๐Ÿ‡ท', "regional indicator symbol letter r"), + (0x1F1F8, '๐Ÿ‡ธ', "regional indicator symbol letter s"), + (0x1F1F9, '๐Ÿ‡น', "regional indicator symbol letter t"), + (0x1F1FA, '๐Ÿ‡บ', "regional indicator symbol letter u"), + (0x1F1FB, '๐Ÿ‡ป', "regional indicator symbol letter v"), + (0x1F1FC, '๐Ÿ‡ผ', "regional indicator symbol letter w"), + (0x1F1FD, '๐Ÿ‡ฝ', "regional indicator symbol letter x"), + (0x1F1FE, '๐Ÿ‡พ', "regional indicator symbol letter y"), + (0x1F1FF, '๐Ÿ‡ฟ', "regional indicator symbol letter z"), + (0x1F201, '๐Ÿˆ', "squared katakana koko"), + (0x1F202, '๐Ÿˆ‚', "squared katakana sa"), + (0x1F21A, '๐Ÿˆš', "squared cjk unified ideograph-7121"), + (0x1F22F, '๐Ÿˆฏ', "squared cjk unified ideograph-6307"), + (0x1F232, '๐Ÿˆฒ', "squared cjk unified ideograph-7981"), + (0x1F233, '๐Ÿˆณ', "squared cjk unified ideograph-7a7a"), + (0x1F234, '๐Ÿˆด', "squared cjk unified ideograph-5408"), + (0x1F235, '๐Ÿˆต', "squared cjk unified ideograph-6e80"), + (0x1F236, '๐Ÿˆถ', "squared cjk unified ideograph-6709"), + (0x1F237, '๐Ÿˆท', "squared cjk unified ideograph-6708"), + (0x1F238, '๐Ÿˆธ', "squared cjk unified ideograph-7533"), + (0x1F239, '๐Ÿˆน', "squared cjk unified ideograph-5272"), + (0x1F23A, '๐Ÿˆบ', "squared cjk unified ideograph-55b6"), + (0x1F250, '๐Ÿ‰', "circled ideograph advantage"), + (0x1F251, '๐Ÿ‰‘', "circled ideograph accept"), + (0x1F300, '๐ŸŒ€', "cyclone"), + (0x1F301, '๐ŸŒ', "foggy"), + (0x1F302, '๐ŸŒ‚', "closed umbrella"), + (0x1F303, '๐ŸŒƒ', "night with stars"), + (0x1F304, '๐ŸŒ„', "sunrise over mountains"), + (0x1F305, '๐ŸŒ…', "sunrise"), + (0x1F306, '๐ŸŒ†', "cityscape at dusk"), + (0x1F307, '๐ŸŒ‡', "sunset over buildings"), + (0x1F308, '๐ŸŒˆ', "rainbow"), + (0x1F309, '๐ŸŒ‰', "bridge at night"), + (0x1F30A, '๐ŸŒŠ', "water wave / water-wave"), + (0x1F30B, '๐ŸŒ‹', "volcano"), + (0x1F30C, '๐ŸŒŒ', "milky way"), + (0x1F30D, '๐ŸŒ', "earth globe europe-africa / globe2"), + (0x1F30E, '๐ŸŒŽ', "earth globe americas"), + (0x1F30F, '๐ŸŒ', "earth globe asia-australia"), + (0x1F310, '๐ŸŒ', "globe with meridians / globe-meridians"), + (0x1F311, '๐ŸŒ‘', "moon-new / new moon symbol"), + (0x1F312, '๐ŸŒ’', "moon-waxing-crescent / waxing crescent moon symbol"), + (0x1F313, '๐ŸŒ“', "first quarter moon symbol / moon-first-quarter"), + (0x1F314, '๐ŸŒ”', "moon-waxing-gibbous / waxing gibbous moon symbol"), + (0x1F315, '๐ŸŒ•', "full moon symbol / moon-full"), + (0x1F316, '๐ŸŒ–', "moon-waning-gibbous / waning gibbous moon symbol"), + (0x1F317, '๐ŸŒ—', "last quarter moon symbol / moon-last-quarter"), + (0x1F318, '๐ŸŒ˜', "moon-waning-crescent / waning crescent moon symbol"), + (0x1F319, '๐ŸŒ™', "crescent moon"), + (0x1F31A, '๐ŸŒš', "new moon with face"), + (0x1F31B, '๐ŸŒ›', "first quarter moon with face"), + (0x1F31C, '๐ŸŒœ', "last quarter moon with face"), + (0x1F31D, '๐ŸŒ', "full moon with face"), + (0x1F31E, '๐ŸŒž', "sun with face"), + (0x1F31F, '๐ŸŒŸ', "glowing star"), + (0x1F320, '๐ŸŒ ', "shooting star / star-shooting"), + (0x1F330, '๐ŸŒฐ', "chestnut"), + (0x1F331, '๐ŸŒฑ', "seedling"), + (0x1F332, '๐ŸŒฒ', "evergreen tree / tree-pine"), + (0x1F333, '๐ŸŒณ', "deciduous tree"), + (0x1F334, '๐ŸŒด', "palm tree / tree-palm"), + (0x1F335, '๐ŸŒต', "cactus"), + (0x1F337, '๐ŸŒท', "tulip"), + (0x1F338, '๐ŸŒธ', "cherry blossom"), + (0x1F339, '๐ŸŒน', "rose"), + (0x1F33A, '๐ŸŒบ', "hibiscus"), + (0x1F33B, '๐ŸŒป', "sunflower"), + (0x1F33C, '๐ŸŒผ', "blossom"), + (0x1F33D, '๐ŸŒฝ', "ear of maize"), + (0x1F33E, '๐ŸŒพ', "ear of rice"), + (0x1F33F, '๐ŸŒฟ', "herb"), + (0x1F340, '๐Ÿ€', "four leaf clover / four-leaf-clover"), + (0x1F341, '๐Ÿ', "maple leaf / maple-leaf"), + (0x1F342, '๐Ÿ‚', "fallen leaf"), + (0x1F343, '๐Ÿƒ', "leaf fluttering in wind"), + (0x1F344, '๐Ÿ„', "mushroom"), + (0x1F345, '๐Ÿ…', "tomato3"), + (0x1F346, '๐Ÿ†', "aubergine"), + (0x1F347, '๐Ÿ‡', "grapes"), + (0x1F348, '๐Ÿˆ', "melon"), + (0x1F349, '๐Ÿ‰', "watermelon"), + (0x1F34A, '๐ŸŠ', "tangerine"), + (0x1F34B, '๐Ÿ‹', "lemon"), + (0x1F34C, '๐ŸŒ', "banana"), + (0x1F34D, '๐Ÿ', "pineapple"), + (0x1F34E, '๐ŸŽ', "red apple"), + (0x1F34F, '๐Ÿ', "green apple"), + (0x1F350, '๐Ÿ', "pear"), + (0x1F351, '๐Ÿ‘', "peach"), + (0x1F352, '๐Ÿ’', "cherries"), + (0x1F353, '๐Ÿ“', "strawberry"), + (0x1F354, '๐Ÿ”', "food-hamburger"), + (0x1F355, '๐Ÿ•', "food-pizza / slice of pizza"), + (0x1F356, '๐Ÿ–', "meat on bone"), + (0x1F357, '๐Ÿ—', "chicken-leg / poultry leg"), + (0x1F358, '๐Ÿ˜', "rice cracker"), + (0x1F359, '๐Ÿ™', "rice ball / rice-ball"), + (0x1F35A, '๐Ÿš', "cooked rice / food-rice"), + (0x1F35B, '๐Ÿ›', "curry and rice"), + (0x1F35C, '๐Ÿœ', "steaming bowl / steaming-bowl"), + (0x1F35D, '๐Ÿ', "food-spaghetti"), + (0x1F35E, '๐Ÿž', "bread"), + (0x1F35F, '๐ŸŸ', "french fries"), + (0x1F360, '๐Ÿ ', "roasted sweet potato"), + (0x1F361, '๐Ÿก', "dango"), + (0x1F362, '๐Ÿข', "oden"), + (0x1F363, '๐Ÿฃ', "sushi"), + (0x1F364, '๐Ÿค', "fried shrimp"), + (0x1F365, '๐Ÿฅ', "fish cake with swirl design"), + (0x1F366, '๐Ÿฆ', "soft ice cream"), + (0x1F367, '๐Ÿง', "shaved ice"), + (0x1F368, '๐Ÿจ', "food-ice-cream / ice cream"), + (0x1F369, '๐Ÿฉ', "donut / doughnut"), + (0x1F36A, '๐Ÿช', "cookie / gingerbread"), + (0x1F36B, '๐Ÿซ', "chocolate bar"), + (0x1F36C, '๐Ÿฌ', "candy"), + (0x1F36D, '๐Ÿญ', "lollipop"), + (0x1F36E, '๐Ÿฎ', "custard"), + (0x1F36F, '๐Ÿฏ', "honey pot"), + (0x1F370, '๐Ÿฐ', "shortcake"), + (0x1F371, '๐Ÿฑ', "bento box"), + (0x1F372, '๐Ÿฒ', "pot of food / pot-food"), + (0x1F373, '๐Ÿณ', "cooking"), + (0x1F374, '๐Ÿด', "fork and knife / fork-knife"), + (0x1F375, '๐Ÿต', "teacup without handle"), + (0x1F376, '๐Ÿถ', "sake bottle and cup"), + (0x1F377, '๐Ÿท', "drink-wine / wine glass"), + (0x1F378, '๐Ÿธ', "cocktail glass / drink-cocktail"), + (0x1F379, '๐Ÿน', "drink-tropical / tropical drink"), + (0x1F37A, '๐Ÿบ', "beer mug / drink-beer"), + (0x1F37B, '๐Ÿป', "clinking beer mugs"), + (0x1F37C, '๐Ÿผ', "baby bottle / baby-bottle"), + (0x1F37D, '๐Ÿฝ', "fork-knife-plate"), + (0x1F380, '๐ŸŽ€', "ribbon"), + (0x1F381, '๐ŸŽ', "gift / wrapped present"), + (0x1F382, '๐ŸŽ‚', "birthday cake"), + (0x1F383, '๐ŸŽƒ', "jack-o-lantern"), + (0x1F384, '๐ŸŽ„', "christmas tree / christmas-tree"), + (0x1F385, '๐ŸŽ…', "face-santa-claus / father christmas"), + (0x1F386, '๐ŸŽ†', "fireworks"), + (0x1F387, '๐ŸŽ‡', "firework sparkler"), + (0x1F388, '๐ŸŽˆ', "balloon"), + (0x1F389, '๐ŸŽ‰', "party popper"), + (0x1F38A, '๐ŸŽŠ', "confetti ball"), + (0x1F38B, '๐ŸŽ‹', "tanabata tree"), + (0x1F38C, '๐ŸŽŒ', "crossed flags"), + (0x1F38D, '๐ŸŽ', "pine decoration"), + (0x1F38E, '๐ŸŽŽ', "japanese dolls"), + (0x1F38F, '๐ŸŽ', "carp streamer"), + (0x1F390, '๐ŸŽ', "wind chime"), + (0x1F391, '๐ŸŽ‘', "moon viewing ceremony"), + (0x1F392, '๐ŸŽ’', "school satchel"), + (0x1F393, '๐ŸŽ“', "graduation cap"), + (0x1F396, '๐ŸŽ–', "medal-military"), + (0x1F39E, '๐ŸŽž', "film"), + (0x1F39F, '๐ŸŽŸ', "ticket"), + (0x1F3A0, '๐ŸŽ ', "carousel horse"), + (0x1F3A1, '๐ŸŽก', "ferris wheel / ferris-wheel"), + (0x1F3A2, '๐ŸŽข', "roller coaster / rollercoaster"), + (0x1F3A3, '๐ŸŽฃ', "fishing pole and fish"), + (0x1F3A4, '๐ŸŽค', "microphone"), + (0x1F3A5, '๐ŸŽฅ', "camera-movie / movie camera"), + (0x1F3A6, '๐ŸŽฆ', "cinema"), + (0x1F3A7, '๐ŸŽง', "headphone"), + (0x1F3A8, '๐ŸŽจ', "artist palette"), + (0x1F3A9, '๐ŸŽฉ', "top hat / tophat"), + (0x1F3AA, '๐ŸŽช', "circus tent"), + (0x1F3AB, '๐ŸŽซ', "ticket"), + (0x1F3AC, '๐ŸŽฌ', "clapper board / movie"), + (0x1F3AD, '๐ŸŽญ', "performing arts / performing-arts"), + (0x1F3AE, '๐ŸŽฎ', "video game / videogame"), + (0x1F3AF, '๐ŸŽฏ', "direct hit / target"), + (0x1F3B0, '๐ŸŽฐ', "slot machine / slot-machine"), + (0x1F3B1, '๐ŸŽฑ', "billiards"), + (0x1F3B2, '๐ŸŽฒ', "game die"), + (0x1F3B3, '๐ŸŽณ', "bowling"), + (0x1F3B4, '๐ŸŽด', "flower playing cards"), + (0x1F3B5, '๐ŸŽต', "musical note"), + (0x1F3B6, '๐ŸŽถ', "multiple musical notes"), + (0x1F3B7, '๐ŸŽท', "saxophone"), + (0x1F3B8, '๐ŸŽธ', "guitar"), + (0x1F3B9, '๐ŸŽน', "musical keyboard / piano"), + (0x1F3BA, '๐ŸŽบ', "music-trumpet"), + (0x1F3BB, '๐ŸŽป', "music-violin"), + (0x1F3BC, '๐ŸŽผ', "musical score"), + (0x1F3BD, '๐ŸŽฝ', "running shirt with sash"), + (0x1F3BE, '๐ŸŽพ', "tennis racquet and ball"), + (0x1F3BF, '๐ŸŽฟ', "ski and ski boot"), + (0x1F3C0, '๐Ÿ€', "basketball and hoop"), + (0x1F3C1, '๐Ÿ', "chequered flag / flag-checkered"), + (0x1F3C2, '๐Ÿ‚', "snowboarder / snowboarding"), + (0x1F3C3, '๐Ÿƒ', "runner / running"), + (0x1F3C4, '๐Ÿ„', "surfer"), + (0x1F3C5, '๐Ÿ…', "medal-sports"), + (0x1F3C6, '๐Ÿ†', "trophy"), + (0x1F3C7, '๐Ÿ‡', "horse racing"), + (0x1F3C8, '๐Ÿˆ', "american football / football-american"), + (0x1F3C9, '๐Ÿ‰', "rugby football"), + (0x1F3CA, '๐ŸŠ', "swimmer / swimming"), + (0x1F3CB, '๐Ÿ‹', "weighlifting"), + (0x1F3CD, '๐Ÿ', "motorbike"), + (0x1F3E0, '๐Ÿ ', "home / house building"), + (0x1F3E1, '๐Ÿก', "house with garden / volume-mute"), + (0x1F3E2, '๐Ÿข', "office building"), + (0x1F3E3, '๐Ÿฃ', "japanese post office"), + (0x1F3E4, '๐Ÿค', "european post office"), + (0x1F3E5, '๐Ÿฅ', "hospital"), + (0x1F3E6, '๐Ÿฆ', "bank"), + (0x1F3E7, '๐Ÿง', "automated teller machine"), + (0x1F3E8, '๐Ÿจ', "hotel"), + (0x1F3E9, '๐Ÿฉ', "love hotel"), + (0x1F3EA, '๐Ÿช', "convenience store / convenience-store"), + (0x1F3EB, '๐Ÿซ', "school"), + (0x1F3EC, '๐Ÿฌ', "department store"), + (0x1F3ED, '๐Ÿญ', "factory"), + (0x1F3EE, '๐Ÿฎ', "izakaya lantern"), + (0x1F3EF, '๐Ÿฏ', "japanese castle"), + (0x1F3F0, '๐Ÿฐ', "european castle"), + (0x1F3F7, '๐Ÿท', "label"), + (0x1F400, '๐Ÿ€', "rat"), + (0x1F401, '๐Ÿ', "mouse"), + (0x1F402, '๐Ÿ‚', "ox"), + (0x1F403, '๐Ÿƒ', "water buffalo"), + (0x1F404, '๐Ÿ„', "animal-cow"), + (0x1F405, '๐Ÿ…', "tiger"), + (0x1F406, '๐Ÿ†', "leopard"), + (0x1F407, '๐Ÿ‡', "animal-rabbit"), + (0x1F408, '๐Ÿˆ', "animal-cat"), + (0x1F409, '๐Ÿ‰', "dragon"), + (0x1F40A, '๐ŸŠ', "crocodile"), + (0x1F40B, '๐Ÿ‹', "whale"), + (0x1F40C, '๐ŸŒ', "animal-snail"), + (0x1F40D, '๐Ÿ', "snake"), + (0x1F40E, '๐ŸŽ', "animal-horse"), + (0x1F40F, '๐Ÿ', "ram"), + (0x1F410, '๐Ÿ', "animal-goat"), + (0x1F411, '๐Ÿ‘', "sheep"), + (0x1F412, '๐Ÿ’', "monkey"), + (0x1F413, '๐Ÿ“', "animal-rooster"), + (0x1F414, '๐Ÿ”', "food-chicken"), + (0x1F415, '๐Ÿ•', "dog"), + (0x1F416, '๐Ÿ–', "animal-pig"), + (0x1F417, '๐Ÿ—', "boar"), + (0x1F418, '๐Ÿ˜', "elephant"), + (0x1F419, '๐Ÿ™', "octopus"), + (0x1F41A, '๐Ÿš', "spiral shell"), + (0x1F41B, '๐Ÿ›', "animal-bug"), + (0x1F41C, '๐Ÿœ', "animal-ant"), + (0x1F41D, '๐Ÿ', "honeybee"), + (0x1F41E, '๐Ÿž', "lady beetle"), + (0x1F41F, '๐ŸŸ', "fish"), + (0x1F420, '๐Ÿ ', "tropical fish"), + (0x1F421, '๐Ÿก', "blowfish"), + (0x1F422, '๐Ÿข', "turtle"), + (0x1F423, '๐Ÿฃ', "hatching chick"), + (0x1F424, '๐Ÿค', "baby chick"), + (0x1F425, '๐Ÿฅ', "front-facing baby chick"), + (0x1F426, '๐Ÿฆ', "bird"), + (0x1F427, '๐Ÿง', "linux / penguin"), + (0x1F428, '๐Ÿจ', "koala"), + (0x1F429, '๐Ÿฉ', "poodle"), + (0x1F42A, '๐Ÿช', "animal-dromedary-camel"), + (0x1F42B, '๐Ÿซ', "animal-bactrian-camel / bactrian camel"), + (0x1F42C, '๐Ÿฌ', "animal-dolphin"), + (0x1F42D, '๐Ÿญ', "mouse face"), + (0x1F42E, '๐Ÿฎ', "cow face"), + (0x1F42F, '๐Ÿฏ', "tiger face"), + (0x1F430, '๐Ÿฐ', "rabbit face"), + (0x1F431, '๐Ÿฑ', "cat face / face-kitty"), + (0x1F432, '๐Ÿฒ', "dragon face"), + (0x1F433, '๐Ÿณ', "spouting whale"), + (0x1F434, '๐Ÿด', "horse face"), + (0x1F435, '๐Ÿต', "face-monkey / monkey face"), + (0x1F436, '๐Ÿถ', "dog face / face-chihuahua"), + (0x1F437, '๐Ÿท', "pig face"), + (0x1F438, '๐Ÿธ', "frog face"), + (0x1F439, '๐Ÿน', "face-hamster / hamster face"), + (0x1F43A, '๐Ÿบ', "wolf face"), + (0x1F43B, '๐Ÿป', "bear face / face-bear"), + (0x1F43C, '๐Ÿผ', "panda face"), + (0x1F43D, '๐Ÿฝ', "pig nose"), + (0x1F43E, '๐Ÿพ', "paw prints / paw-prints"), + (0x1F440, '๐Ÿ‘€', "eyes"), + (0x1F441, '๐Ÿ‘', "eye"), + (0x1F442, '๐Ÿ‘‚', "ear"), + (0x1F443, '๐Ÿ‘ƒ', "nose"), + (0x1F444, '๐Ÿ‘„', "mouth"), + (0x1F445, '๐Ÿ‘…', "tongue"), + (0x1F446, '๐Ÿ‘†', "white up pointing backhand index"), + (0x1F447, '๐Ÿ‘‡', "white down pointing backhand index"), + (0x1F448, '๐Ÿ‘ˆ', "white left pointing backhand index"), + (0x1F449, '๐Ÿ‘‰', "white right pointing backhand index"), + (0x1F44A, '๐Ÿ‘Š', "fisted hand sign"), + (0x1F44B, '๐Ÿ‘‹', "waving hand sign"), + (0x1F44C, '๐Ÿ‘Œ', "ok hand sign"), + (0x1F44D, '๐Ÿ‘', "thumbs up sign / thumbs-up"), + (0x1F44E, '๐Ÿ‘Ž', "thumbs down sign / thumbs-down"), + (0x1F44F, '๐Ÿ‘', "clapping hands sign"), + (0x1F450, '๐Ÿ‘', "open hands sign"), + (0x1F451, '๐Ÿ‘‘', "crown"), + (0x1F452, '๐Ÿ‘’', "womans hat"), + (0x1F453, '๐Ÿ‘“', "eyeglasses"), + (0x1F454, '๐Ÿ‘”', "outfit-necktie"), + (0x1F455, '๐Ÿ‘•', "outfit-shirt"), + (0x1F456, '๐Ÿ‘–', "jeans"), + (0x1F457, '๐Ÿ‘—', "outfit-dress"), + (0x1F458, '๐Ÿ‘˜', "kimono"), + (0x1F459, '๐Ÿ‘™', "outfit-bikini"), + (0x1F45A, '๐Ÿ‘š', "womans clothes"), + (0x1F45B, '๐Ÿ‘›', "purse"), + (0x1F45C, '๐Ÿ‘œ', "handbag"), + (0x1F45D, '๐Ÿ‘', "pouch"), + (0x1F45E, '๐Ÿ‘ž', "mans shoe"), + (0x1F45F, '๐Ÿ‘Ÿ', "athletic shoe"), + (0x1F460, '๐Ÿ‘ ', "high-heeled shoe / high-heeled-shoes"), + (0x1F461, '๐Ÿ‘ก', "sandals / womans sandal"), + (0x1F462, '๐Ÿ‘ข', "womans boots"), + (0x1F463, '๐Ÿ‘ฃ', "footprints"), + (0x1F464, '๐Ÿ‘ค', "bust in silhouette / user"), + (0x1F465, '๐Ÿ‘ฅ', "busts in silhouette / users"), + (0x1F466, '๐Ÿ‘ฆ', "face-boy"), + (0x1F467, '๐Ÿ‘ง', "face-girl"), + (0x1F468, '๐Ÿ‘จ', "face-man"), + (0x1F469, '๐Ÿ‘ฉ', "face-woman"), + (0x1F46A, '๐Ÿ‘ช', "family"), + (0x1F46B, '๐Ÿ‘ซ', "man and woman holding hands / man-and-woman"), + (0x1F46C, '๐Ÿ‘ฌ', "man-and-man / two men holding hands"), + (0x1F46D, '๐Ÿ‘ญ', "two women holding hands / woman-and-woman"), + (0x1F46E, '๐Ÿ‘ฎ', "police officer"), + (0x1F46F, '๐Ÿ‘ฏ', "woman with bunny ears"), + (0x1F470, '๐Ÿ‘ฐ', "bride with veil"), + (0x1F471, '๐Ÿ‘ฑ', "person with blond hair"), + (0x1F472, '๐Ÿ‘ฒ', "man with gua pi mao"), + (0x1F473, '๐Ÿ‘ณ', "face-man-with-turban / man with turban"), + (0x1F474, '๐Ÿ‘ด', "face-old-chinese-man / older man"), + (0x1F475, '๐Ÿ‘ต', "older woman"), + (0x1F476, '๐Ÿ‘ถ', "face-baby"), + (0x1F477, '๐Ÿ‘ท', "construction worker / construction-worker"), + (0x1F478, '๐Ÿ‘ธ', "face-princess"), + (0x1F479, '๐Ÿ‘น', "japanese ogre"), + (0x1F47A, '๐Ÿ‘บ', "japanese goblin"), + (0x1F47B, '๐Ÿ‘ป', "ghost"), + (0x1F47C, '๐Ÿ‘ผ', "baby angel"), + (0x1F47D, '๐Ÿ‘ฝ', "extraterrestrial alien"), + (0x1F47E, '๐Ÿ‘พ', "alien monster"), + (0x1F47F, '๐Ÿ‘ฟ', "imp"), + (0x1F480, '๐Ÿ’€', "skull"), + (0x1F481, '๐Ÿ’', "face-callcenter / information desk person"), + (0x1F482, '๐Ÿ’‚', "guardsman"), + (0x1F483, '๐Ÿ’ƒ', "dancer / dancing"), + (0x1F484, '๐Ÿ’„', "lipstick"), + (0x1F485, '๐Ÿ’…', "nail polish"), + (0x1F486, '๐Ÿ’†', "face massage"), + (0x1F487, '๐Ÿ’‡', "haircut"), + (0x1F488, '๐Ÿ’ˆ', "barber pole"), + (0x1F489, '๐Ÿ’‰', "syringe"), + (0x1F48A, '๐Ÿ’Š', "pill"), + (0x1F48B, '๐Ÿ’‹', "kiss mark"), + (0x1F48C, '๐Ÿ’Œ', "love letter"), + (0x1F48D, '๐Ÿ’', "ring"), + (0x1F48E, '๐Ÿ’Ž', "diamond / gem stone"), + (0x1F48F, '๐Ÿ’', "kiss"), + (0x1F490, '๐Ÿ’', "bouquet"), + (0x1F491, '๐Ÿ’‘', "couple with heart"), + (0x1F492, '๐Ÿ’’', "wedding"), + (0x1F493, '๐Ÿ’“', "beating heart / heart-beating"), + (0x1F494, '๐Ÿ’”', "broken heart / heart-broken"), + (0x1F495, '๐Ÿ’•', "two hearts"), + (0x1F496, '๐Ÿ’–', "sparkling heart"), + (0x1F497, '๐Ÿ’—', "growing heart"), + (0x1F498, '๐Ÿ’˜', "heart with arrow / heart-with-arrow"), + (0x1F499, '๐Ÿ’™', "blue heart"), + (0x1F49A, '๐Ÿ’š', "green heart"), + (0x1F49B, '๐Ÿ’›', "yellow heart"), + (0x1F49C, '๐Ÿ’œ', "purple heart"), + (0x1F49D, '๐Ÿ’', "heart with ribbon / heart-ribbon"), + (0x1F49E, '๐Ÿ’ž', "revolving hearts"), + (0x1F49F, '๐Ÿ’Ÿ', "heart decoration"), + (0x1F4A0, '๐Ÿ’ ', "diamond shape with a dot inside"), + (0x1F4A1, '๐Ÿ’ก', "electric light bulb / lightbulb"), + (0x1F4A2, '๐Ÿ’ข', "anger symbol"), + (0x1F4A3, '๐Ÿ’ฃ', "bomb"), + (0x1F4A4, '๐Ÿ’ค', "sleeping symbol"), + (0x1F4A5, '๐Ÿ’ฅ', "collision symbol / explosion"), + (0x1F4A6, '๐Ÿ’ฆ', "splashing sweat symbol"), + (0x1F4A7, '๐Ÿ’ง', "droplet"), + (0x1F4A8, '๐Ÿ’จ', "dash symbol"), + (0x1F4A9, '๐Ÿ’ฉ', "pile of poo"), + (0x1F4AA, '๐Ÿ’ช', "flexed biceps"), + (0x1F4AB, '๐Ÿ’ซ', "dizzy symbol"), + (0x1F4AC, '๐Ÿ’ฌ', "speech balloon / speech-bubble"), + (0x1F4AD, '๐Ÿ’ญ', "thought balloon"), + (0x1F4AE, '๐Ÿ’ฎ', "white flower"), + (0x1F4AF, '๐Ÿ’ฏ', "hundred points symbol"), + (0x1F4B0, '๐Ÿ’ฐ', "money bag / money-bag"), + (0x1F4B1, '๐Ÿ’ฑ', "currency exchange / currency-exchange"), + (0x1F4B2, '๐Ÿ’ฒ', "heavy dollar sign"), + (0x1F4B3, '๐Ÿ’ณ', "credit card / creditcard"), + (0x1F4B4, '๐Ÿ’ด', "banknote with yen sign"), + (0x1F4B5, '๐Ÿ’ต', "banknote with dollar sign"), + (0x1F4B6, '๐Ÿ’ถ', "banknote with euro sign"), + (0x1F4B7, '๐Ÿ’ท', "banknote with pound sign"), + (0x1F4B8, '๐Ÿ’ธ', "money with wings"), + (0x1F4B9, '๐Ÿ’น', "chart with upwards trend and yen sign"), + (0x1F4BA, '๐Ÿ’บ', "chair / seat"), + (0x1F4BB, '๐Ÿ’ป', "laptop / personal computer"), + (0x1F4BC, '๐Ÿ’ผ', "briefcase / suitcase"), + (0x1F4BD, '๐Ÿ’ฝ', "minidisc"), + (0x1F4BE, '๐Ÿ’พ', "floppy disk"), + (0x1F4BF, '๐Ÿ’ฟ', "disk / optical disc"), + (0x1F4C0, '๐Ÿ“€', "dvd"), + (0x1F4C1, '๐Ÿ“', "file folder"), + (0x1F4C2, '๐Ÿ“‚', "open file folder"), + (0x1F4C3, '๐Ÿ“ƒ', "page with curl"), + (0x1F4C4, '๐Ÿ“„', "page facing up"), + (0x1F4C5, '๐Ÿ“…', "calendar-month"), + (0x1F4C6, '๐Ÿ“†', "calendar-day / tear-off calendar"), + (0x1F4C7, '๐Ÿ“‡', "card index"), + (0x1F4C8, '๐Ÿ“ˆ', "chart with upwards trend / chart-up"), + (0x1F4C9, '๐Ÿ“‰', "chart with downwards trend / chart-down"), + (0x1F4CA, '๐Ÿ“Š', "bar chart"), + (0x1F4CB, '๐Ÿ“‹', "clipboard"), + (0x1F4CC, '๐Ÿ“Œ', "pushpin"), + (0x1F4CD, '๐Ÿ“', "round pushpin"), + (0x1F4CE, '๐Ÿ“Ž', "paperclip"), + (0x1F4CF, '๐Ÿ“', "ruler2 / straight ruler"), + (0x1F4D0, '๐Ÿ“', "triangular ruler"), + (0x1F4D1, '๐Ÿ“‘', "bookmark tabs"), + (0x1F4D2, '๐Ÿ“’', "addressbook / ledger"), + (0x1F4D3, '๐Ÿ““', "notebook"), + (0x1F4D4, '๐Ÿ“”', "notebook with decorative cover"), + (0x1F4D5, '๐Ÿ“•', "closed book"), + (0x1F4D6, '๐Ÿ“–', "book-open / open book"), + (0x1F4D7, '๐Ÿ“—', "green book"), + (0x1F4D8, '๐Ÿ“˜', "blue book"), + (0x1F4D9, '๐Ÿ“™', "orange book"), + (0x1F4DA, '๐Ÿ“š', "books"), + (0x1F4DB, '๐Ÿ“›', "name badge"), + (0x1F4DC, '๐Ÿ“œ', "scroll"), + (0x1F4DD, '๐Ÿ“', "memo"), + (0x1F4DE, '๐Ÿ“ž', "phone-receiver / telephone receiver"), + (0x1F4DF, '๐Ÿ“Ÿ', "pager"), + (0x1F4E0, '๐Ÿ“ ', "fax machine"), + (0x1F4E1, '๐Ÿ“ก', "satellite antenna / satellite-disk"), + (0x1F4E2, '๐Ÿ“ข', "public address loudspeaker"), + (0x1F4E3, '๐Ÿ“ฃ', "cheering megaphone"), + (0x1F4E4, '๐Ÿ“ค', "outbox tray"), + (0x1F4E5, '๐Ÿ“ฅ', "inbox tray"), + (0x1F4E6, '๐Ÿ“ฆ', "package"), + (0x1F4E7, '๐Ÿ“ง', "e-mail symbol"), + (0x1F4E8, '๐Ÿ“จ', "incoming envelope"), + (0x1F4E9, '๐Ÿ“ฉ', "envelope with downwards arrow above"), + (0x1F4EA, '๐Ÿ“ช', "closed mailbox with lowered flag"), + (0x1F4EB, '๐Ÿ“ซ', "closed mailbox with raised flag"), + (0x1F4EC, '๐Ÿ“ฌ', "open mailbox with raised flag"), + (0x1F4ED, '๐Ÿ“ญ', "open mailbox with lowered flag"), + (0x1F4EE, '๐Ÿ“ฎ', "postbox"), + (0x1F4EF, '๐Ÿ“ฏ', "postal horn"), + (0x1F4F0, '๐Ÿ“ฐ', "newspaper"), + (0x1F4F1, '๐Ÿ“ฑ', "mobile phone / phone-mobile"), + (0x1F4F2, '๐Ÿ“ฒ', "mobile phone with rightwards arrow at left"), + (0x1F4F3, '๐Ÿ“ณ', "vibration mode"), + (0x1F4F4, '๐Ÿ“ด', "mobile phone off"), + (0x1F4F5, '๐Ÿ“ต', "no mobile phones"), + (0x1F4F6, '๐Ÿ“ถ', "antenna with bars"), + (0x1F4F7, '๐Ÿ“ท', "photo-camera"), + (0x1F4F8, '๐Ÿ“ธ', "photo-camera-flash"), + (0x1F4F9, '๐Ÿ“น', "video camera / video-camera"), + (0x1F4FA, '๐Ÿ“บ', "television"), + (0x1F4FB, '๐Ÿ“ป', "radio"), + (0x1F4FC, '๐Ÿ“ผ', "videocassette"), + (0x1F4FD, '๐Ÿ“ฝ', "projector"), + (0x1F4FE, '๐Ÿ“พ', "music-player"), + (0x1F500, '๐Ÿ”€', "shuffle / twisted rightwards arrows"), + (0x1F501, '๐Ÿ”', "clockwise rightwards and leftwards open circle arrows / loop"), + (0x1F502, '๐Ÿ”‚', "clockwise rightwards and leftwards open circle arrows with circled one overlay"), + (0x1F503, '๐Ÿ”ƒ', "clockwise downwards and upwards open circle arrows / loop-alt"), + (0x1F504, '๐Ÿ”„', "anticlockwise downwards and upwards open circle arrows"), + (0x1F505, '๐Ÿ”…', "low brightness symbol"), + (0x1F506, '๐Ÿ”†', "high brightness symbol"), + (0x1F507, '๐Ÿ”‡', "speaker with cancellation stroke"), + (0x1F508, '๐Ÿ”ˆ', "speaker / volume"), + (0x1F509, '๐Ÿ”‰', "speaker with one sound wave / volume-low"), + (0x1F50A, '๐Ÿ”Š', "speaker with three sound waves / volume-high"), + (0x1F50B, '๐Ÿ”‹', "battery"), + (0x1F50C, '๐Ÿ”Œ', "electric plug / electric-cord"), + (0x1F50D, '๐Ÿ”', "left-pointing magnifying glass / search-left"), + (0x1F50E, '๐Ÿ”Ž', "right-pointing magnifying glass / search-right"), + (0x1F50F, '๐Ÿ”', "lock with ink pen"), + (0x1F510, '๐Ÿ”', "closed lock with key"), + (0x1F511, '๐Ÿ”‘', "key"), + (0x1F512, '๐Ÿ”’', "lock"), + (0x1F513, '๐Ÿ”“', "lock-open / open lock"), + (0x1F514, '๐Ÿ””', "bell"), + (0x1F515, '๐Ÿ”•', "bell with cancellation stroke"), + (0x1F516, '๐Ÿ”–', "bookmark"), + (0x1F517, '๐Ÿ”—', "link symbol"), + (0x1F518, '๐Ÿ”˜', "radio button / radio-checked"), + (0x1F519, '๐Ÿ”™', "back with leftwards arrow above"), + (0x1F51A, '๐Ÿ”š', "end with leftwards arrow above"), + (0x1F51B, '๐Ÿ”›', "on with exclamation mark with left right arrow above"), + (0x1F51C, '๐Ÿ”œ', "soon with rightwards arrow above"), + (0x1F51D, '๐Ÿ”', "top with upwards arrow above"), + (0x1F51E, '๐Ÿ”ž', "no one under eighteen symbol"), + (0x1F51F, '๐Ÿ”Ÿ', "keycap ten"), + (0x1F520, '๐Ÿ” ', "input symbol for latin capital letters"), + (0x1F521, '๐Ÿ”ก', "input symbol for latin small letters"), + (0x1F522, '๐Ÿ”ข', "input symbol for numbers"), + (0x1F523, '๐Ÿ”ฃ', "input symbol for symbols"), + (0x1F524, '๐Ÿ”ค', "input symbol for latin letters"), + (0x1F525, '๐Ÿ”ฅ', "fire"), + (0x1F526, '๐Ÿ”ฆ', "electric torch / flashlight"), + (0x1F527, '๐Ÿ”ง', "wrench"), + (0x1F528, '๐Ÿ”จ', "hammer"), + (0x1F529, '๐Ÿ”ฉ', "nut and bolt / nut-and-bolt"), + (0x1F52A, '๐Ÿ”ช', "hocho / knife"), + (0x1F52B, '๐Ÿ”ซ', "pistol"), + (0x1F52C, '๐Ÿ”ฌ', "microscope"), + (0x1F52D, '๐Ÿ”ญ', "telescope"), + (0x1F52E, '๐Ÿ”ฎ', "crystal ball"), + (0x1F52F, '๐Ÿ”ฏ', "six pointed star with middle dot"), + (0x1F530, '๐Ÿ”ฐ', "japanese symbol for beginner"), + (0x1F531, '๐Ÿ”ฑ', "trident emblem"), + (0x1F532, '๐Ÿ”ฒ', "black square button"), + (0x1F533, '๐Ÿ”ณ', "white square button"), + (0x1F534, '๐Ÿ”ด', "large red circle"), + (0x1F535, '๐Ÿ”ต', "large blue circle"), + (0x1F536, '๐Ÿ”ถ', "large orange diamond"), + (0x1F537, '๐Ÿ”ท', "large blue diamond"), + (0x1F538, '๐Ÿ”ธ', "small orange diamond"), + (0x1F539, '๐Ÿ”น', "small blue diamond"), + (0x1F53A, '๐Ÿ”บ', "up-pointing red triangle"), + (0x1F53B, '๐Ÿ”ป', "down-pointing red triangle"), + (0x1F53C, '๐Ÿ”ผ', "up-pointing small red triangle"), + (0x1F53D, '๐Ÿ”ฝ', "down-pointing small red triangle"), + (0x1F542, '๐Ÿ•‚', "cross-pommee"), + (0x1F548, '๐Ÿ•ˆ', "celtic-cross"), + (0x1F549, '๐Ÿ•‰', "om"), + (0x1F54A, '๐Ÿ•Š', "peace-dove"), + (0x1F550, '๐Ÿ•', "clock face one oclock"), + (0x1F551, '๐Ÿ•‘', "clock face two oclock"), + (0x1F552, '๐Ÿ•’', "clock face three oclock"), + (0x1F553, '๐Ÿ•“', "clock face four oclock"), + (0x1F554, '๐Ÿ•”', "clock face five oclock"), + (0x1F555, '๐Ÿ••', "clock face six oclock"), + (0x1F556, '๐Ÿ•–', "clock face seven oclock"), + (0x1F557, '๐Ÿ•—', "clock face eight oclock"), + (0x1F558, '๐Ÿ•˜', "clock face nine oclock"), + (0x1F559, '๐Ÿ•™', "clock face ten oclock"), + (0x1F55A, '๐Ÿ•š', "clock face eleven oclock"), + (0x1F55B, '๐Ÿ•›', "clock face twelve oclock"), + (0x1F55C, '๐Ÿ•œ', "clock face one-thirty"), + (0x1F55D, '๐Ÿ•', "clock face two-thirty"), + (0x1F55E, '๐Ÿ•ž', "clock face three-thirty"), + (0x1F55F, '๐Ÿ•Ÿ', "clock face four-thirty"), + (0x1F560, '๐Ÿ• ', "clock face five-thirty"), + (0x1F561, '๐Ÿ•ก', "clock face six-thirty"), + (0x1F562, '๐Ÿ•ข', "clock face seven-thirty"), + (0x1F563, '๐Ÿ•ฃ', "clock face eight-thirty"), + (0x1F564, '๐Ÿ•ค', "clock face nine-thirty"), + (0x1F565, '๐Ÿ•ฅ', "clock face ten-thirty"), + (0x1F566, '๐Ÿ•ฆ', "clock face eleven-thirty"), + (0x1F567, '๐Ÿ•ง', "clock face twelve-thirty"), + (0x1F56B, '๐Ÿ•ซ', "bullhorn"), + (0x1F56F, '๐Ÿ•ฏ', "candle"), + (0x1F571, '๐Ÿ•ฑ', "death"), + (0x1F575, '๐Ÿ•ต', "spy"), + (0x1F576, '๐Ÿ•ถ', "sunglasses"), + (0x1F577, '๐Ÿ•ท', "spider"), + (0x1F578, '๐Ÿ•ธ', "spider7-web"), + (0x1F579, '๐Ÿ•น', "joystick"), + (0x1F583, '๐Ÿ–ƒ', "envelope-stamped"), + (0x1F58A, '๐Ÿ–Š', "pen"), + (0x1F5A5, '๐Ÿ–ฅ', "pc-desktop"), + (0x1F5A7, '๐Ÿ–ง', "computer-network"), + (0x1F5A9, '๐Ÿ–ฉ', "calculator"), + (0x1F5AD, '๐Ÿ–ญ', "tape"), + (0x1F5AE, '๐Ÿ–ฎ', "keyboard"), + (0x1F5B1, '๐Ÿ–ฑ', "mouse"), + (0x1F5B3, '๐Ÿ–ณ', "pc-old"), + (0x1F5B4, '๐Ÿ–ด', "hard-disk"), + (0x1F5B5, '๐Ÿ–ต', "monitor"), + (0x1F5B6, '๐Ÿ–ถ', "printer"), + (0x1F5B9, '๐Ÿ–น', "file-text"), + (0x1F5BB, '๐Ÿ–ป', "file-image"), + (0x1F5BC, '๐Ÿ–ผ', "picture"), + (0x1F5C0, '๐Ÿ—€', "folder"), + (0x1F5C1, '๐Ÿ—', "folder-open"), + (0x1F5C4, '๐Ÿ—„', "cabinet"), + (0x1F5CA, '๐Ÿ—Š', "notepad"), + (0x1F5CB, '๐Ÿ—‹', "file"), + (0x1F5D0, '๐Ÿ—', "copy"), + (0x1F5D1, '๐Ÿ—‘', "garbage-can"), + (0x1F5D5, '๐Ÿ—•', "minimize"), + (0x1F5D6, '๐Ÿ—–', "maximize-window"), + (0x1F5D9, '๐Ÿ—™', "cancel"), + (0x1F5DB, '๐Ÿ—›', "font-size"), + (0x1F5DD, '๐Ÿ—', "key-alt"), + (0x1F5E0, '๐Ÿ— ', "chart-line"), + (0x1F5E1, '๐Ÿ—ก', "dagger"), + (0x1F5FA, '๐Ÿ—บ', "world-map"), + (0x1F5FB, '๐Ÿ—ป', "mount fuji"), + (0x1F5FC, '๐Ÿ—ผ', "tokyo tower"), + (0x1F5FD, '๐Ÿ—ฝ', "statue of liberty"), + (0x1F5FE, '๐Ÿ—พ', "silhouette of japan"), + (0x1F5FF, '๐Ÿ—ฟ', "moyai"), + (0x1F600, '๐Ÿ˜€', "grinning face"), + (0x1F601, '๐Ÿ˜', "grinning face with smiling eyes"), + (0x1F602, '๐Ÿ˜‚', "face with tears of joy"), + (0x1F603, '๐Ÿ˜ƒ', "smiley-happy / smiling face with open mouth"), + (0x1F604, '๐Ÿ˜„', "smiley-grin / smiling face with open mouth and smiling eyes"), + (0x1F605, '๐Ÿ˜…', "smiling face with open mouth and cold sweat"), + (0x1F606, '๐Ÿ˜†', "smiling face with open mouth and tightly-closed eyes"), + (0x1F607, '๐Ÿ˜‡', "smiling face with halo"), + (0x1F608, '๐Ÿ˜ˆ', "smiley-evil / smiling face with horns"), + (0x1F609, '๐Ÿ˜‰', "winking face"), + (0x1F60A, '๐Ÿ˜Š', "smiling face with smiling eyes"), + (0x1F60B, '๐Ÿ˜‹', "face savouring delicious food"), + (0x1F60C, '๐Ÿ˜Œ', "relieved face"), + (0x1F60D, '๐Ÿ˜', "smiling face with heart-shaped eyes"), + (0x1F60E, '๐Ÿ˜Ž', "smiley-cool / smiling face with sunglasses"), + (0x1F60F, '๐Ÿ˜', "smirking face"), + (0x1F610, '๐Ÿ˜', "neutral face"), + (0x1F611, '๐Ÿ˜‘', "expressionless face"), + (0x1F612, '๐Ÿ˜’', "unamused face"), + (0x1F613, '๐Ÿ˜“', "face with cold sweat"), + (0x1F614, '๐Ÿ˜”', "pensive face"), + (0x1F615, '๐Ÿ˜•', "confused face"), + (0x1F616, '๐Ÿ˜–', "confounded face"), + (0x1F617, '๐Ÿ˜—', "kissing face"), + (0x1F618, '๐Ÿ˜˜', "face throwing a kiss"), + (0x1F619, '๐Ÿ˜™', "kissing face with smiling eyes"), + (0x1F61A, '๐Ÿ˜š', "kissing face with closed eyes"), + (0x1F61B, '๐Ÿ˜›', "face with stuck-out tongue"), + (0x1F61C, '๐Ÿ˜œ', "face with stuck-out tongue and winking eye"), + (0x1F61D, '๐Ÿ˜', "face with stuck-out tongue and tightly-closed eyes"), + (0x1F61E, '๐Ÿ˜ž', "disappointed face"), + (0x1F61F, '๐Ÿ˜Ÿ', "worried face"), + (0x1F620, '๐Ÿ˜ ', "angry face"), + (0x1F621, '๐Ÿ˜ก', "pouting face"), + (0x1F622, '๐Ÿ˜ข', "crying face"), + (0x1F623, '๐Ÿ˜ฃ', "persevering face"), + (0x1F624, '๐Ÿ˜ค', "face with look of triumph"), + (0x1F625, '๐Ÿ˜ฅ', "disappointed but relieved face"), + (0x1F626, '๐Ÿ˜ฆ', "frowning face with open mouth"), + (0x1F627, '๐Ÿ˜ง', "anguished face"), + (0x1F628, '๐Ÿ˜จ', "fearful face"), + (0x1F629, '๐Ÿ˜ฉ', "weary face"), + (0x1F62A, '๐Ÿ˜ช', "sleepy face"), + (0x1F62B, '๐Ÿ˜ซ', "tired face"), + (0x1F62C, '๐Ÿ˜ฌ', "grimacing face"), + (0x1F62D, '๐Ÿ˜ญ', "loudly crying face"), + (0x1F62E, '๐Ÿ˜ฎ', "face with open mouth"), + (0x1F62F, '๐Ÿ˜ฏ', "hushed face"), + (0x1F630, '๐Ÿ˜ฐ', "face with open mouth and cold sweat"), + (0x1F631, '๐Ÿ˜ฑ', "face screaming in fear"), + (0x1F632, '๐Ÿ˜ฒ', "astonished face"), + (0x1F633, '๐Ÿ˜ณ', "flushed face"), + (0x1F634, '๐Ÿ˜ด', "sleeping face"), + (0x1F635, '๐Ÿ˜ต', "dizzy face"), + (0x1F636, '๐Ÿ˜ถ', "face without mouth"), + (0x1F637, '๐Ÿ˜ท', "face with medical mask"), + (0x1F638, '๐Ÿ˜ธ', "grinning cat face with smiling eyes"), + (0x1F639, '๐Ÿ˜น', "cat face with tears of joy"), + (0x1F63A, '๐Ÿ˜บ', "smiling cat face with open mouth"), + (0x1F63B, '๐Ÿ˜ป', "smiling cat face with heart-shaped eyes"), + (0x1F63C, '๐Ÿ˜ผ', "cat face with wry smile"), + (0x1F63D, '๐Ÿ˜ฝ', "kissing cat face with closed eyes"), + (0x1F63E, '๐Ÿ˜พ', "pouting cat face"), + (0x1F63F, '๐Ÿ˜ฟ', "crying cat face"), + (0x1F640, '๐Ÿ™€', "weary cat face"), + (0x1F645, '๐Ÿ™…', "face with no good gesture"), + (0x1F646, '๐Ÿ™†', "face with ok gesture"), + (0x1F647, '๐Ÿ™‡', "person bowing deeply"), + (0x1F648, '๐Ÿ™ˆ', "see-no-evil monkey"), + (0x1F649, '๐Ÿ™‰', "hear-no-evil monkey"), + (0x1F64A, '๐Ÿ™Š', "speak-no-evil monkey"), + (0x1F64B, '๐Ÿ™‹', "happy person raising one hand"), + (0x1F64C, '๐Ÿ™Œ', "person raising both hands in celebration"), + (0x1F64D, '๐Ÿ™', "person frowning"), + (0x1F64E, '๐Ÿ™Ž', "person with pouting face"), + (0x1F64F, '๐Ÿ™', "person with folded hands"), + (0x1F680, '๐Ÿš€', "rocket"), + (0x1F681, '๐Ÿš', "helicopter"), + (0x1F682, '๐Ÿš‚', "steam locomotive"), + (0x1F683, '๐Ÿšƒ', "railway car"), + (0x1F684, '๐Ÿš„', "high-speed train"), + (0x1F685, '๐Ÿš…', "high-speed train with bullet nose"), + (0x1F686, '๐Ÿš†', "train"), + (0x1F687, '๐Ÿš‡', "metro"), + (0x1F688, '๐Ÿšˆ', "light rail"), + (0x1F689, '๐Ÿš‰', "station"), + (0x1F68A, '๐ŸšŠ', "tram"), + (0x1F68B, '๐Ÿš‹', "tram car"), + (0x1F68C, '๐ŸšŒ', "bus"), + (0x1F68D, '๐Ÿš', "bus-front / oncoming bus"), + (0x1F68E, '๐ŸšŽ', "trolleybus"), + (0x1F68F, '๐Ÿš', "bus stop"), + (0x1F690, '๐Ÿš', "minibus"), + (0x1F691, '๐Ÿš‘', "ambulance"), + (0x1F692, '๐Ÿš’', "fire engine"), + (0x1F693, '๐Ÿš“', "police car"), + (0x1F694, '๐Ÿš”', "oncoming police car"), + (0x1F695, '๐Ÿš•', "taxi"), + (0x1F696, '๐Ÿš–', "oncoming taxi"), + (0x1F697, '๐Ÿš—', "automobile / car"), + (0x1F698, '๐Ÿš˜', "car-front"), + (0x1F699, '๐Ÿš™', "recreational vehicle"), + (0x1F69A, '๐Ÿšš', "delivery truck"), + (0x1F69B, '๐Ÿš›', "articulated lorry"), + (0x1F69C, '๐Ÿšœ', "tractor"), + (0x1F69D, '๐Ÿš', "monorail"), + (0x1F69E, '๐Ÿšž', "mountain railway"), + (0x1F69F, '๐ŸšŸ', "suspension railway"), + (0x1F6A0, '๐Ÿš ', "mountain cableway"), + (0x1F6A1, '๐Ÿšก', "aerial tramway"), + (0x1F6A2, '๐Ÿšข', "ship"), + (0x1F6A3, '๐Ÿšฃ', "rowboat"), + (0x1F6A4, '๐Ÿšค', "speedboat"), + (0x1F6A5, '๐Ÿšฅ', "horizontal traffic light"), + (0x1F6A6, '๐Ÿšฆ', "traffic-light / vertical traffic light"), + (0x1F6A7, '๐Ÿšง', "construction sign"), + (0x1F6A8, '๐Ÿšจ', "police cars revolving light"), + (0x1F6A9, '๐Ÿšฉ', "triangular flag on post"), + (0x1F6AA, '๐Ÿšช', "door"), + (0x1F6AB, '๐Ÿšซ', "forbidden / no entry sign"), + (0x1F6AC, '๐Ÿšฌ', "smoking symbol"), + (0x1F6AD, '๐Ÿšญ', "no smoking symbol / smoking-forbidden"), + (0x1F6AE, '๐Ÿšฎ', "put litter in its place symbol"), + (0x1F6AF, '๐Ÿšฏ', "do not litter symbol"), + (0x1F6B0, '๐Ÿšฐ', "potable water symbol"), + (0x1F6B1, '๐Ÿšฑ', "non-potable water symbol"), + (0x1F6B2, '๐Ÿšฒ', "bicycle"), + (0x1F6B3, '๐Ÿšณ', "no bicycles"), + (0x1F6B4, '๐Ÿšด', "bicyclist"), + (0x1F6B5, '๐Ÿšต', "mountain bicyclist"), + (0x1F6B6, '๐Ÿšถ', "pedestrian"), + (0x1F6B7, '๐Ÿšท', "no pedestrians"), + (0x1F6B8, '๐Ÿšธ', "children crossing"), + (0x1F6B9, '๐Ÿšน', "mens symbol"), + (0x1F6BA, '๐Ÿšบ', "womens symbol"), + (0x1F6BB, '๐Ÿšป', "restroom"), + (0x1F6BC, '๐Ÿšผ', "baby symbol"), + (0x1F6BD, '๐Ÿšฝ', "toilet"), + (0x1F6BE, '๐Ÿšพ', "water closet"), + (0x1F6BF, '๐Ÿšฟ', "shower"), + (0x1F6C0, '๐Ÿ›€', "bath"), + (0x1F6C1, '๐Ÿ›', "bathtub"), + (0x1F6C2, '๐Ÿ›‚', "passport control / passport-control"), + (0x1F6C3, '๐Ÿ›ƒ', "customs"), + (0x1F6C4, '๐Ÿ›„', "baggage claim"), + (0x1F6C5, '๐Ÿ›…', "left luggage / left-luggage"), + (0x1F6E0, '๐Ÿ› ', "hammer-wrench"), + (0x1F6E1, '๐Ÿ›ก', "shield"), + + // Private use area extensions: + (0xFE4E5, '๓พ“ฅ', "flag japan"), + (0xFE4E6, '๓พ“ฆ', "flag usa"), + (0xFE4E7, '๓พ“ง', "flag"), + (0xFE4E8, '๓พ“จ', "flag"), + (0xFE4E9, '๓พ“ฉ', "flag"), + (0xFE4EA, '๓พ“ช', "flag great britain"), + (0xFE4EB, '๓พ“ซ', "flag"), + (0xFE4EC, '๓พ“ฌ', "flag"), + (0xFE4ED, '๓พ“ญ', "flag"), + (0xFE4EE, '๓พ“ฎ', "flag south korea"), + (0xFE82C, '๓พ ฌ', "number sign in square"), + (0xFE82E, '๓พ ฎ', "digit one in square"), + (0xFE82F, '๓พ ฏ', "digit two in square"), + (0xFE830, '๓พ ฐ', "digit three in square"), + (0xFE831, '๓พ ฑ', "digit four in square"), + (0xFE832, '๓พ ฒ', "digit five in square"), + (0xFE833, '๓พ ณ', "digit six in square"), + (0xFE834, '๓พ ด', "digit seven in square"), + (0xFE835, '๓พ ต', "digit eight in square"), + (0xFE836, '๓พ ถ', "digit nine in square"), + (0xFE837, '๓พ ท', "digit zero in square"), + + // Web services / operating systems :/ browsers + (0xE600, '๎˜€', "web-dribbble"), + (0xE601, '๎˜', "web-stackoverflow"), + (0xE602, '๎˜‚', "web-vimeo"), + (0xE603, '๎˜ƒ', "web-twitter"), + (0xE604, '๎˜„', "web-facebook"), + (0xE605, '๎˜…', "web-googleplus"), + (0xE606, '๎˜†', "web-pinterest"), + (0xE607, '๎˜‡', "web-tumblr"), + (0xE608, '๎˜ˆ', "web-linkedin"), + (0xE60A, '๎˜Š', "web-stumbleupon"), + (0xE60B, '๎˜‹', "web-lastfm"), + (0xE60C, '๎˜Œ', "web-rdio"), + (0xE60D, '๎˜', "web-spotify"), + (0xE60E, '๎˜Ž', "web-qq"), + (0xE60F, '๎˜', "web-instagram"), + (0xE610, '๎˜', "web-dropbox"), + (0xE611, '๎˜‘', "web-evernote"), + (0xE612, '๎˜’', "web-flattr"), + (0xE613, '๎˜“', "web-skype"), + (0xE614, '๎˜”', "web-renren"), + (0xE615, '๎˜•', "web-sina-weibo"), + (0xE616, '๎˜–', "web-paypal"), + (0xE617, '๎˜—', "web-picasa"), + (0xE618, '๎˜˜', "os-android"), + (0xE619, '๎˜™', "web-mixi"), + (0xE61A, '๎˜š', "web-behance"), + (0xE61B, '๎˜›', "web-circles"), + (0xE61C, '๎˜œ', "web-vk"), + (0xE61D, '๎˜', "web-smashing"), + (0xE61E, '๎˜ž', "web-forrst"), + (0xE61F, '๎˜Ÿ', "os-windows"), + (0xE620, '๎˜ ', "web-flickr"), + (0xE621, '๎˜ก', "web-picassa"), + (0xE622, '๎˜ข', "web-deviantart"), + (0xE623, '๎˜ฃ', "web-steam"), + (0xE624, '๎˜ค', "web-github"), + (0xE625, '๎˜ฅ', "web-git"), + (0xE626, '๎˜ฆ', "web-blogger"), + (0xE627, '๎˜ง', "web-soundcloud"), + (0xE628, '๎˜จ', "web-reddit"), + (0xE629, '๎˜ฉ', "web-delicious"), + (0xE62A, '๎˜ช', "browser-chrome"), + (0xE62B, '๎˜ซ', "browser-firefox"), + (0xE62C, '๎˜ฌ', "browser-ie"), + (0xE62D, '๎˜ญ', "browser-opera"), + (0xE62E, '๎˜ฎ', "browser-safari"), + (0xE62F, '๎˜ฏ', "web-google-drive"), + (0xE630, '๎˜ฐ', "web-wordpress"), + (0xE631, '๎˜ฑ', "web-joomla"), + (0xE632, '๎˜ฒ', "lastfm"), + (0xE633, '๎˜ณ', "web-foursquare"), + (0xE634, '๎˜ด', "web-yelp"), + (0xE635, '๎˜ต', "web-drupal"), + (0xE636, '๎˜ถ', "youtube"), + (0xF189, '๏†‰', "vk"), + (0xF1A6, '๏†ฆ', "digg"), + (0xF1CA, '๏‡Š', "web-vine"), + (0xF8FF, '๏ฃฟ', "os-apple"), +]; diff --git a/egui/src/demos/font_contents_ubuntu.rs b/egui/src/demos/font_contents_ubuntu.rs new file mode 100644 index 00000000..24531933 --- /dev/null +++ b/egui/src/demos/font_contents_ubuntu.rs @@ -0,0 +1,1191 @@ +/// A list of all codepoints available in `Ubuntu-Light.ttf` +#[rustfmt::skip] +pub const UBUNTU_FONT_CHARACTERS: &[(u32, char, &str)] = &[ + (0x21, '!', "exclamation mark"), + (0x22, '"', "quotation mark"), + (0x23, '#', "number sign"), + (0x24, '$', "dollar sign"), + (0x25, '%', "percent sign"), + (0x26, '&', "ampersand"), + (0x27, '\'', "apostrophe"), + (0x28, '(', "left parenthesis"), + (0x29, ')', "right parenthesis"), + (0x2A, '*', "asterisk"), + (0x2B, '+', "plus sign"), + (0x2C, ',', "comma"), + (0x2D, '-', "hyphen-minus"), + (0x2E, '.', "full stop"), + (0x2F, '/', "solidus (slash)"), + (0x30, '0', "digit zero"), + (0x31, '1', "digit one"), + (0x32, '2', "digit two"), + (0x33, '3', "digit three"), + (0x34, '4', "digit four"), + (0x35, '5', "digit five"), + (0x36, '6', "digit six"), + (0x37, '7', "digit seven"), + (0x38, '8', "digit eight"), + (0x39, '9', "digit nine"), + (0x3A, ':', "colon"), + (0x3B, ';', "semicolon"), + (0x3C, '<', "less-than sign"), + (0x3D, '=', "equals sign"), + (0x3E, '>', "greater-than sign"), + (0x3F, '?', "question mark"), + (0x40, '@', "commercial at"), + (0x41, 'A', "latin capital letter a"), + (0x42, 'B', "latin capital letter b"), + (0x43, 'C', "latin capital letter c"), + (0x44, 'D', "latin capital letter d"), + (0x45, 'E', "latin capital letter e"), + (0x46, 'F', "latin capital letter f"), + (0x47, 'G', "latin capital letter g"), + (0x48, 'H', "latin capital letter h"), + (0x49, 'I', "latin capital letter i"), + (0x4A, 'J', "latin capital letter j"), + (0x4B, 'K', "latin capital letter k"), + (0x4C, 'L', "latin capital letter l"), + (0x4D, 'M', "latin capital letter m"), + (0x4E, 'N', "latin capital letter n"), + (0x4F, 'O', "latin capital letter o"), + (0x50, 'P', "latin capital letter p"), + (0x51, 'Q', "latin capital letter q"), + (0x52, 'R', "latin capital letter r"), + (0x53, 'S', "latin capital letter s"), + (0x54, 'T', "latin capital letter t"), + (0x55, 'U', "latin capital letter u"), + (0x56, 'V', "latin capital letter v"), + (0x57, 'W', "latin capital letter w"), + (0x58, 'X', "latin capital letter x"), + (0x59, 'Y', "latin capital letter y"), + (0x5A, 'Z', "latin capital letter z"), + (0x5B, '[', "left square bracket"), + (0x5C, '\\', "reverse solidus (backslash)"), + (0x5D, ']', "right square bracket"), + (0x5E, '^', "circumflex accent"), + (0x5F, '_', "low line"), + (0x60, '`', "grave accent"), + (0x61, 'a', "latin small letter a"), + (0x62, 'b', "latin small letter b"), + (0x63, 'c', "latin small letter c"), + (0x64, 'd', "latin small letter d"), + (0x65, 'e', "latin small letter e"), + (0x66, 'f', "latin small letter f"), + (0x67, 'g', "latin small letter g"), + (0x68, 'h', "latin small letter h"), + (0x69, 'i', "latin small letter i"), + (0x6A, 'j', "latin small letter j"), + (0x6B, 'k', "latin small letter k"), + (0x6C, 'l', "latin small letter l"), + (0x6D, 'm', "latin small letter m"), + (0x6E, 'n', "latin small letter n"), + (0x6F, 'o', "latin small letter o"), + (0x70, 'p', "latin small letter p"), + (0x71, 'q', "latin small letter q"), + (0x72, 'r', "latin small letter r"), + (0x73, 's', "latin small letter s"), + (0x74, 't', "latin small letter t"), + (0x75, 'u', "latin small letter u"), + (0x76, 'v', "latin small letter v"), + (0x77, 'w', "latin small letter w"), + (0x78, 'x', "latin small letter x"), + (0x79, 'y', "latin small letter y"), + (0x7A, 'z', "latin small letter z"), + (0x7B, '{', "left curly bracket"), + (0x7C, '|', "vertical line"), + (0x7D, '}', "right curly bracket"), + (0x7E, '~', "tilde"), + (0xA1, 'ยก', "inverted exclamation mark"), + (0xA2, 'ยข', "cent sign"), + (0xA3, 'ยฃ', "pound sign"), + (0xA4, 'ยค', "currency sign"), + (0xA5, 'ยฅ', "yen sign"), + (0xA6, 'ยฆ', "broken bar"), + (0xA7, 'ยง', "section sign"), + (0xA8, 'ยจ', "diaeresis"), + (0xA9, 'ยฉ', "copyright sign"), + (0xAA, 'ยช', "feminine ordinal indicator"), + (0xAB, 'ยซ', "left-pointing double angle quotation mark"), + (0xAC, 'ยฌ', "not sign"), + (0xAD, 'ยญ', "soft hyphen"), + (0xAE, 'ยฎ', "registered sign"), + (0xAF, 'ยฏ', "macron"), + (0xB0, 'ยฐ', "degree sign"), + (0xB1, 'ยฑ', "plus-minus sign"), + (0xB2, 'ยฒ', "superscript two"), + (0xB3, 'ยณ', "superscript three"), + (0xB4, 'ยด', "acute accent"), + (0xB5, 'ยต', "micro sign"), + (0xB6, 'ยถ', "pilcrow sign"), + (0xB7, 'ยท', "middle dot"), + (0xB8, 'ยธ', "cedilla"), + (0xB9, 'ยน', "superscript one"), + (0xBA, 'ยบ', "masculine ordinal indicator"), + (0xBB, 'ยป', "right-pointing double angle quotation mark"), + (0xBC, 'ยผ', "vulgar fraction one quarter"), + (0xBD, 'ยฝ', "vulgar fraction one half"), + (0xBE, 'ยพ', "vulgar fraction three quarters"), + (0xBF, 'ยฟ', "inverted question mark"), + (0xC0, 'ร€', "latin capital letter a with grave"), + (0xC1, 'ร', "latin capital letter a with acute"), + (0xC2, 'ร‚', "latin capital letter a with circumflex"), + (0xC3, 'รƒ', "latin capital letter a with tilde"), + (0xC4, 'ร„', "latin capital letter a with diaeresis"), + (0xC5, 'ร…', "latin capital letter a with ring above"), + (0xC6, 'ร†', "latin capital letter ae"), + (0xC7, 'ร‡', "latin capital letter c with cedilla"), + (0xC8, 'รˆ', "latin capital letter e with grave"), + (0xC9, 'ร‰', "latin capital letter e with acute"), + (0xCA, 'รŠ', "latin capital letter e with circumflex"), + (0xCB, 'ร‹', "latin capital letter e with diaeresis"), + (0xCC, 'รŒ', "latin capital letter i with grave"), + (0xCD, 'ร', "latin capital letter i with acute"), + (0xCE, 'รŽ', "latin capital letter i with circumflex"), + (0xCF, 'ร', "latin capital letter i with diaeresis"), + (0xD0, 'ร', "latin capital letter eth"), + (0xD1, 'ร‘', "latin capital letter n with tilde"), + (0xD2, 'ร’', "latin capital letter o with grave"), + (0xD3, 'ร“', "latin capital letter o with acute"), + (0xD4, 'ร”', "latin capital letter o with circumflex"), + (0xD5, 'ร•', "latin capital letter o with tilde"), + (0xD6, 'ร–', "latin capital letter o with diaeresis"), + (0xD7, 'ร—', "multiplication sign"), + (0xD8, 'ร˜', "latin capital letter o with stroke"), + (0xD9, 'ร™', "latin capital letter u with grave"), + (0xDA, 'รš', "latin capital letter u with acute"), + (0xDB, 'ร›', "latin capital letter u with circumflex"), + (0xDC, 'รœ', "latin capital letter u with diaeresis"), + (0xDD, 'ร', "latin capital letter y with acute"), + (0xDE, 'รž', "latin capital letter thorn"), + (0xDF, 'รŸ', "latin small letter sharp s"), + (0xE0, 'ร ', "latin small letter a with grave"), + (0xE1, 'รก', "latin small letter a with acute"), + (0xE2, 'รข', "latin small letter a with circumflex"), + (0xE3, 'รฃ', "latin small letter a with tilde"), + (0xE4, 'รค', "latin small letter a with diaeresis"), + (0xE5, 'รฅ', "latin small letter a with ring above"), + (0xE6, 'รฆ', "latin small letter ae"), + (0xE7, 'รง', "latin small letter c with cedilla"), + (0xE8, 'รจ', "latin small letter e with grave"), + (0xE9, 'รฉ', "latin small letter e with acute"), + (0xEA, 'รช', "latin small letter e with circumflex"), + (0xEB, 'รซ', "latin small letter e with diaeresis"), + (0xEC, 'รฌ', "latin small letter i with grave"), + (0xED, 'รญ', "latin small letter i with acute"), + (0xEE, 'รฎ', "latin small letter i with circumflex"), + (0xEF, 'รฏ', "latin small letter i with diaeresis"), + (0xF0, 'รฐ', "latin small letter eth"), + (0xF1, 'รฑ', "latin small letter n with tilde"), + (0xF2, 'รฒ', "latin small letter o with grave"), + (0xF3, 'รณ', "latin small letter o with acute"), + (0xF4, 'รด', "latin small letter o with circumflex"), + (0xF5, 'รต', "latin small letter o with tilde"), + (0xF6, 'รถ', "latin small letter o with diaeresis"), + (0xF7, 'รท', "division sign"), + (0xF8, 'รธ', "latin small letter o with stroke"), + (0xF9, 'รน', "latin small letter u with grave"), + (0xFA, 'รบ', "latin small letter u with acute"), + (0xFB, 'รป', "latin small letter u with circumflex"), + (0xFC, 'รผ', "latin small letter u with diaeresis"), + (0xFD, 'รฝ', "latin small letter y with acute"), + (0xFE, 'รพ', "latin small letter thorn"), + (0xFF, 'รฟ', "latin small letter y with diaeresis"), + (0x100, 'ฤ€', "latin capital letter a with macron"), + (0x101, 'ฤ', "latin small letter a with macron"), + (0x102, 'ฤ‚', "latin capital letter a with breve"), + (0x103, 'ฤƒ', "latin small letter a with breve"), + (0x104, 'ฤ„', "latin capital letter a with ogonek"), + (0x105, 'ฤ…', "latin small letter a with ogonek"), + (0x106, 'ฤ†', "latin capital letter c with acute"), + (0x107, 'ฤ‡', "latin small letter c with acute"), + (0x108, 'ฤˆ', "latin capital letter c with circumflex"), + (0x109, 'ฤ‰', "latin small letter c with circumflex"), + (0x10A, 'ฤŠ', "latin capital letter c with dot above"), + (0x10B, 'ฤ‹', "latin small letter c with dot above"), + (0x10C, 'ฤŒ', "latin capital letter c with caron"), + (0x10D, 'ฤ', "latin small letter c with caron"), + (0x10E, 'ฤŽ', "latin capital letter d with caron"), + (0x10F, 'ฤ', "latin small letter d with caron"), + (0x110, 'ฤ', "latin capital letter d with stroke"), + (0x111, 'ฤ‘', "latin small letter d with stroke"), + (0x112, 'ฤ’', "latin capital letter e with macron"), + (0x113, 'ฤ“', "latin small letter e with macron"), + (0x114, 'ฤ”', "latin capital letter e with breve"), + (0x115, 'ฤ•', "latin small letter e with breve"), + (0x116, 'ฤ–', "latin capital letter e with dot above"), + (0x117, 'ฤ—', "latin small letter e with dot above"), + (0x118, 'ฤ˜', "latin capital letter e with ogonek"), + (0x119, 'ฤ™', "latin small letter e with ogonek"), + (0x11A, 'ฤš', "latin capital letter e with caron"), + (0x11B, 'ฤ›', "latin small letter e with caron"), + (0x11C, 'ฤœ', "latin capital letter g with circumflex"), + (0x11D, 'ฤ', "latin small letter g with circumflex"), + (0x11E, 'ฤž', "latin capital letter g with breve"), + (0x11F, 'ฤŸ', "latin small letter g with breve"), + (0x120, 'ฤ ', "latin capital letter g with dot above"), + (0x121, 'ฤก', "latin small letter g with dot above"), + (0x122, 'ฤข', "latin capital letter g with cedilla"), + (0x123, 'ฤฃ', "latin small letter g with cedilla"), + (0x124, 'ฤค', "latin capital letter h with circumflex"), + (0x125, 'ฤฅ', "latin small letter h with circumflex"), + (0x126, 'ฤฆ', "latin capital letter h with stroke"), + (0x127, 'ฤง', "latin small letter h with stroke"), + (0x128, 'ฤจ', "latin capital letter i with tilde"), + (0x129, 'ฤฉ', "latin small letter i with tilde"), + (0x12A, 'ฤช', "latin capital letter i with macron"), + (0x12B, 'ฤซ', "latin small letter i with macron"), + (0x12C, 'ฤฌ', "latin capital letter i with breve"), + (0x12D, 'ฤญ', "latin small letter i with breve"), + (0x12E, 'ฤฎ', "latin capital letter i with ogonek"), + (0x12F, 'ฤฏ', "latin small letter i with ogonek"), + (0x130, 'ฤฐ', "latin capital letter i with dot above"), + (0x131, 'ฤฑ', "latin small letter dotless i"), + (0x132, 'ฤฒ', "latin capital ligature ij"), + (0x133, 'ฤณ', "latin small ligature ij"), + (0x134, 'ฤด', "latin capital letter j with circumflex"), + (0x135, 'ฤต', "latin small letter j with circumflex"), + (0x136, 'ฤถ', "latin capital letter k with cedilla"), + (0x137, 'ฤท', "latin small letter k with cedilla"), + (0x138, 'ฤธ', "latin small letter kra"), + (0x139, 'ฤน', "latin capital letter l with acute"), + (0x13A, 'ฤบ', "latin small letter l with acute"), + (0x13B, 'ฤป', "latin capital letter l with cedilla"), + (0x13C, 'ฤผ', "latin small letter l with cedilla"), + (0x13D, 'ฤฝ', "latin capital letter l with caron"), + (0x13E, 'ฤพ', "latin small letter l with caron"), + (0x13F, 'ฤฟ', "latin capital letter l with middle dot"), + (0x140, 'ล€', "latin small letter l with middle dot"), + (0x141, 'ล', "latin capital letter l with stroke"), + (0x142, 'ล‚', "latin small letter l with stroke"), + (0x143, 'ลƒ', "latin capital letter n with acute"), + (0x144, 'ล„', "latin small letter n with acute"), + (0x145, 'ล…', "latin capital letter n with cedilla"), + (0x146, 'ล†', "latin small letter n with cedilla"), + (0x147, 'ล‡', "latin capital letter n with caron"), + (0x148, 'ลˆ', "latin small letter n with caron"), + (0x149, 'ล‰', "latin small letter n preceded by apostrophe"), + (0x14A, 'ลŠ', "latin capital letter eng"), + (0x14B, 'ล‹', "latin small letter eng"), + (0x14C, 'ลŒ', "latin capital letter o with macron"), + (0x14D, 'ล', "latin small letter o with macron"), + (0x14E, 'ลŽ', "latin capital letter o with breve"), + (0x14F, 'ล', "latin small letter o with breve"), + (0x150, 'ล', "latin capital letter o with double acute"), + (0x151, 'ล‘', "latin small letter o with double acute"), + (0x152, 'ล’', "latin capital ligature oe"), + (0x153, 'ล“', "latin small ligature oe"), + (0x154, 'ล”', "latin capital letter r with acute"), + (0x155, 'ล•', "latin small letter r with acute"), + (0x156, 'ล–', "latin capital letter r with cedilla"), + (0x157, 'ล—', "latin small letter r with cedilla"), + (0x158, 'ล˜', "latin capital letter r with caron"), + (0x159, 'ล™', "latin small letter r with caron"), + (0x15A, 'ลš', "latin capital letter s with acute"), + (0x15B, 'ล›', "latin small letter s with acute"), + (0x15C, 'ลœ', "latin capital letter s with circumflex"), + (0x15D, 'ล', "latin small letter s with circumflex"), + (0x15E, 'ลž', "latin capital letter s with cedilla"), + (0x15F, 'ลŸ', "latin small letter s with cedilla"), + (0x160, 'ล ', "latin capital letter s with caron"), + (0x161, 'ลก', "latin small letter s with caron"), + (0x162, 'ลข', "latin capital letter t with cedilla"), + (0x163, 'ลฃ', "latin small letter t with cedilla"), + (0x164, 'ลค', "latin capital letter t with caron"), + (0x165, 'ลฅ', "latin small letter t with caron"), + (0x166, 'ลฆ', "latin capital letter t with stroke"), + (0x167, 'ลง', "latin small letter t with stroke"), + (0x168, 'ลจ', "latin capital letter u with tilde"), + (0x169, 'ลฉ', "latin small letter u with tilde"), + (0x16A, 'ลช', "latin capital letter u with macron"), + (0x16B, 'ลซ', "latin small letter u with macron"), + (0x16C, 'ลฌ', "latin capital letter u with breve"), + (0x16D, 'ลญ', "latin small letter u with breve"), + (0x16E, 'ลฎ', "latin capital letter u with ring above"), + (0x16F, 'ลฏ', "latin small letter u with ring above"), + (0x170, 'ลฐ', "latin capital letter u with double acute"), + (0x171, 'ลฑ', "latin small letter u with double acute"), + (0x172, 'ลฒ', "latin capital letter u with ogonek"), + (0x173, 'ลณ', "latin small letter u with ogonek"), + (0x174, 'ลด', "latin capital letter w with circumflex"), + (0x175, 'ลต', "latin small letter w with circumflex"), + (0x176, 'ลถ', "latin capital letter y with circumflex"), + (0x177, 'ลท', "latin small letter y with circumflex"), + (0x178, 'ลธ', "latin capital letter y with diaeresis"), + (0x179, 'ลน', "latin capital letter z with acute"), + (0x17A, 'ลบ', "latin small letter z with acute"), + (0x17B, 'ลป', "latin capital letter z with dot above"), + (0x17C, 'ลผ', "latin small letter z with dot above"), + (0x17D, 'ลฝ', "latin capital letter z with caron"), + (0x17E, 'ลพ', "latin small letter z with caron"), + (0x17F, 'ลฟ', "latin small letter long s"), + (0x180, 'ฦ€', "latin small letter b with stroke"), + (0x181, 'ฦ', "latin capital letter b with hook"), + (0x182, 'ฦ‚', "latin capital letter b with topbar"), + (0x183, 'ฦƒ', "latin small letter b with topbar"), + (0x184, 'ฦ„', "latin capital letter tone six"), + (0x185, 'ฦ…', "latin small letter tone six"), + (0x186, 'ฦ†', "latin capital letter open o"), + (0x187, 'ฦ‡', "latin capital letter c with hook"), + (0x188, 'ฦˆ', "latin small letter c with hook"), + (0x189, 'ฦ‰', "latin capital letter african d"), + (0x18A, 'ฦŠ', "latin capital letter d with hook"), + (0x18B, 'ฦ‹', "latin capital letter d with topbar"), + (0x18C, 'ฦŒ', "latin small letter d with topbar"), + (0x18D, 'ฦ', "latin small letter turned delta"), + (0x18E, 'ฦŽ', "latin capital letter reversed e"), + (0x18F, 'ฦ', "latin capital letter schwa"), + (0x190, 'ฦ', "latin capital letter open e"), + (0x191, 'ฦ‘', "latin capital letter f with hook"), + (0x192, 'ฦ’', "latin small letter f with hook"), + (0x193, 'ฦ“', "latin capital letter g with hook"), + (0x194, 'ฦ”', "latin capital letter gamma"), + (0x195, 'ฦ•', "latin small letter hv"), + (0x196, 'ฦ–', "latin capital letter iota"), + (0x197, 'ฦ—', "latin capital letter i with stroke"), + (0x198, 'ฦ˜', "latin capital letter k with hook"), + (0x199, 'ฦ™', "latin small letter k with hook"), + (0x19A, 'ฦš', "latin small letter l with bar"), + (0x19B, 'ฦ›', "latin small letter lambda with stroke"), + (0x19C, 'ฦœ', "latin capital letter turned m"), + (0x19D, 'ฦ', "latin capital letter n with left hook"), + (0x19E, 'ฦž', "latin small letter n with long right leg"), + (0x19F, 'ฦŸ', "latin capital letter o with middle tilde"), + (0x1A0, 'ฦ ', "latin capital letter o with horn"), + (0x1A1, 'ฦก', "latin small letter o with horn"), + (0x1A2, 'ฦข', "latin capital letter oi"), + (0x1A3, 'ฦฃ', "latin small letter oi"), + (0x1A4, 'ฦค', "latin capital letter p with hook"), + (0x1A5, 'ฦฅ', "latin small letter p with hook"), + (0x1A6, 'ฦฆ', "latin letter yr"), + (0x1A7, 'ฦง', "latin capital letter tone two"), + (0x1A8, 'ฦจ', "latin small letter tone two"), + (0x1A9, 'ฦฉ', "latin capital letter esh"), + (0x1AA, 'ฦช', "latin letter reversed esh loop"), + (0x1AB, 'ฦซ', "latin small letter t with palatal hook"), + (0x1AC, 'ฦฌ', "latin capital letter t with hook"), + (0x1AD, 'ฦญ', "latin small letter t with hook"), + (0x1AE, 'ฦฎ', "latin capital letter t with retroflex hook"), + (0x1AF, 'ฦฏ', "latin capital letter u with horn"), + (0x1B0, 'ฦฐ', "latin small letter u with horn"), + (0x1B1, 'ฦฑ', "latin capital letter upsilon"), + (0x1B2, 'ฦฒ', "latin capital letter v with hook"), + (0x1B3, 'ฦณ', "latin capital letter y with hook"), + (0x1B4, 'ฦด', "latin small letter y with hook"), + (0x1B5, 'ฦต', "latin capital letter z with stroke"), + (0x1B6, 'ฦถ', "latin small letter z with stroke"), + (0x1B7, 'ฦท', "latin capital letter ezh"), + (0x1B8, 'ฦธ', "latin capital letter ezh reversed"), + (0x1B9, 'ฦน', "latin small letter ezh reversed"), + (0x1BA, 'ฦบ', "latin small letter ezh with tail"), + (0x1BB, 'ฦป', "latin letter two with stroke"), + (0x1BC, 'ฦผ', "latin capital letter tone five"), + (0x1BD, 'ฦฝ', "latin small letter tone five"), + (0x1BE, 'ฦพ', "latin letter inverted glottal stop with stroke"), + (0x1BF, 'ฦฟ', "latin letter wynn"), + (0x1C0, 'ว€', "latin letter dental click"), + (0x1C1, 'ว', "latin letter lateral click"), + (0x1C2, 'ว‚', "latin letter alveolar click"), + (0x1C3, 'วƒ', "latin letter retroflex click"), + (0x1C4, 'ว„', "latin capital letter dz with caron"), + (0x1C5, 'ว…', "latin capital letter d with small letter z with caron"), + (0x1C6, 'ว†', "latin small letter dz with caron"), + (0x1C7, 'ว‡', "latin capital letter lj"), + (0x1C8, 'วˆ', "latin capital letter l with small letter j"), + (0x1C9, 'ว‰', "latin small letter lj"), + (0x1CA, 'วŠ', "latin capital letter nj"), + (0x1CB, 'ว‹', "latin capital letter n with small letter j"), + (0x1CC, 'วŒ', "latin small letter nj"), + (0x1CD, 'ว', "latin capital letter a with caron"), + (0x1CE, 'วŽ', "latin small letter a with caron"), + (0x1CF, 'ว', "latin capital letter i with caron"), + (0x1D0, 'ว', "latin small letter i with caron"), + (0x1D1, 'ว‘', "latin capital letter o with caron"), + (0x1D2, 'ว’', "latin small letter o with caron"), + (0x1D3, 'ว“', "latin capital letter u with caron"), + (0x1D4, 'ว”', "latin small letter u with caron"), + (0x1D5, 'ว•', "latin capital letter u with diaeresis and macron"), + (0x1D6, 'ว–', "latin small letter u with diaeresis and macron"), + (0x1D7, 'ว—', "latin capital letter u with diaeresis and acute"), + (0x1D8, 'ว˜', "latin small letter u with diaeresis and acute"), + (0x1D9, 'ว™', "latin capital letter u with diaeresis and caron"), + (0x1DA, 'วš', "latin small letter u with diaeresis and caron"), + (0x1DB, 'ว›', "latin capital letter u with diaeresis and grave"), + (0x1DC, 'วœ', "latin small letter u with diaeresis and grave"), + (0x1DD, 'ว', "latin small letter turned e"), + (0x1DE, 'วž', "latin capital letter a with diaeresis and macron"), + (0x1DF, 'วŸ', "latin small letter a with diaeresis and macron"), + (0x1E0, 'ว ', "latin capital letter a with dot above and macron"), + (0x1E1, 'วก', "latin small letter a with dot above and macron"), + (0x1E2, 'วข', "latin capital letter ae with macron"), + (0x1E3, 'วฃ', "latin small letter ae with macron"), + (0x1E4, 'วค', "latin capital letter g with stroke"), + (0x1E5, 'วฅ', "latin small letter g with stroke"), + (0x1E6, 'วฆ', "latin capital letter g with caron"), + (0x1E7, 'วง', "latin small letter g with caron"), + (0x1E8, 'วจ', "latin capital letter k with caron"), + (0x1E9, 'วฉ', "latin small letter k with caron"), + (0x1EA, 'วช', "latin capital letter o with ogonek"), + (0x1EB, 'วซ', "latin small letter o with ogonek"), + (0x1EC, 'วฌ', "latin capital letter o with ogonek and macron"), + (0x1ED, 'วญ', "latin small letter o with ogonek and macron"), + (0x1EE, 'วฎ', "latin capital letter ezh with caron"), + (0x1EF, 'วฏ', "latin small letter ezh with caron"), + (0x1F0, 'วฐ', "latin small letter j with caron"), + (0x1F1, 'วฑ', "latin capital letter dz"), + (0x1F2, 'วฒ', "latin capital letter d with small letter z"), + (0x1F3, 'วณ', "latin small letter dz"), + (0x1F4, 'วด', "latin capital letter g with acute"), + (0x1F5, 'วต', "latin small letter g with acute"), + (0x1F6, 'วถ', "latin capital letter hwair"), + (0x1F7, 'วท', "latin capital letter wynn"), + (0x1F8, 'วธ', "latin capital letter n with grave"), + (0x1F9, 'วน', "latin small letter n with grave"), + (0x1FA, 'วบ', "latin capital letter a with ring above and acute"), + (0x1FB, 'วป', "latin small letter a with ring above and acute"), + (0x1FC, 'วผ', "latin capital letter ae with acute"), + (0x1FD, 'วฝ', "latin small letter ae with acute"), + (0x1FE, 'วพ', "latin capital letter o with stroke and acute"), + (0x1FF, 'วฟ', "latin small letter o with stroke and acute"), + (0x200, 'ศ€', "latin capital letter a with double grave"), + (0x201, 'ศ', "latin small letter a with double grave"), + (0x202, 'ศ‚', "latin capital letter a with inverted breve"), + (0x203, 'ศƒ', "latin small letter a with inverted breve"), + (0x204, 'ศ„', "latin capital letter e with double grave"), + (0x205, 'ศ…', "latin small letter e with double grave"), + (0x206, 'ศ†', "latin capital letter e with inverted breve"), + (0x207, 'ศ‡', "latin small letter e with inverted breve"), + (0x208, 'ศˆ', "latin capital letter i with double grave"), + (0x209, 'ศ‰', "latin small letter i with double grave"), + (0x20A, 'ศŠ', "latin capital letter i with inverted breve"), + (0x20B, 'ศ‹', "latin small letter i with inverted breve"), + (0x20C, 'ศŒ', "latin capital letter o with double grave"), + (0x20D, 'ศ', "latin small letter o with double grave"), + (0x20E, 'ศŽ', "latin capital letter o with inverted breve"), + (0x20F, 'ศ', "latin small letter o with inverted breve"), + (0x210, 'ศ', "latin capital letter r with double grave"), + (0x211, 'ศ‘', "latin small letter r with double grave"), + (0x212, 'ศ’', "latin capital letter r with inverted breve"), + (0x213, 'ศ“', "latin small letter r with inverted breve"), + (0x214, 'ศ”', "latin capital letter u with double grave"), + (0x215, 'ศ•', "latin small letter u with double grave"), + (0x216, 'ศ–', "latin capital letter u with inverted breve"), + (0x217, 'ศ—', "latin small letter u with inverted breve"), + (0x218, 'ศ˜', "latin capital letter s with comma below"), + (0x219, 'ศ™', "latin small letter s with comma below"), + (0x21A, 'ศš', "latin capital letter t with comma below"), + (0x21B, 'ศ›', "latin small letter t with comma below"), + (0x21C, 'ศœ', "latin capital letter yogh"), + (0x21D, 'ศ', "latin small letter yogh"), + (0x21E, 'ศž', "latin capital letter h with caron"), + (0x21F, 'ศŸ', "latin small letter h with caron"), + (0x220, 'ศ ', "latin capital letter n with long right leg"), + (0x221, 'ศก', "latin small letter d with curl"), + (0x222, 'ศข', "latin capital letter ou"), + (0x223, 'ศฃ', "latin small letter ou"), + (0x224, 'ศค', "latin capital letter z with hook"), + (0x225, 'ศฅ', "latin small letter z with hook"), + (0x226, 'ศฆ', "latin capital letter a with dot above"), + (0x227, 'ศง', "latin small letter a with dot above"), + (0x228, 'ศจ', "latin capital letter e with cedilla"), + (0x229, 'ศฉ', "latin small letter e with cedilla"), + (0x22A, 'ศช', "latin capital letter o with diaeresis and macron"), + (0x22B, 'ศซ', "latin small letter o with diaeresis and macron"), + (0x22C, 'ศฌ', "latin capital letter o with tilde and macron"), + (0x22D, 'ศญ', "latin small letter o with tilde and macron"), + (0x22E, 'ศฎ', "latin capital letter o with dot above"), + (0x22F, 'ศฏ', "latin small letter o with dot above"), + (0x230, 'ศฐ', "latin capital letter o with dot above and macron"), + (0x231, 'ศฑ', "latin small letter o with dot above and macron"), + (0x232, 'ศฒ', "latin capital letter y with macron"), + (0x233, 'ศณ', "latin small letter y with macron"), + (0x234, 'ศด', "latin small letter l with curl"), + (0x235, 'ศต', "latin small letter n with curl"), + (0x236, 'ศถ', "latin small letter t with curl"), + (0x237, 'ศท', "latin small letter dotless j"), + (0x238, 'ศธ', "latin small letter db digraph"), + (0x239, 'ศน', "latin small letter qp digraph"), + (0x23A, 'ศบ', "latin capital letter a with stroke"), + (0x23B, 'ศป', "latin capital letter c with stroke"), + (0x23C, 'ศผ', "latin small letter c with stroke"), + (0x23D, 'ศฝ', "latin capital letter l with bar"), + (0x23E, 'ศพ', "latin capital letter t with diagonal stroke"), + (0x23F, 'ศฟ', "latin small letter s with swash tail"), + (0x240, 'ษ€', "latin small letter z with swash tail"), + (0x241, 'ษ', "latin capital letter glottal stop"), + (0x242, 'ษ‚', "latin small letter glottal stop"), + (0x243, 'ษƒ', "latin capital letter b with stroke"), + (0x244, 'ษ„', "latin capital letter u bar"), + (0x245, 'ษ…', "latin capital letter turned v"), + (0x246, 'ษ†', "latin capital letter e with stroke"), + (0x247, 'ษ‡', "latin small letter e with stroke"), + (0x248, 'ษˆ', "latin capital letter j with stroke"), + (0x249, 'ษ‰', "latin small letter j with stroke"), + (0x24A, 'ษŠ', "latin capital letter small q with hook tail"), + (0x24B, 'ษ‹', "latin small letter q with hook tail"), + (0x24C, 'ษŒ', "latin capital letter r with stroke"), + (0x24D, 'ษ', "latin small letter r with stroke"), + (0x24E, 'ษŽ', "latin capital letter y with stroke"), + (0x24F, 'ษ', "latin small letter y with stroke"), + (0x292, 'ส’', "latin small letter ezh"), + (0x2BC, 'สผ', "modifier letter apostrophe"), + (0x2C6, 'ห†', "modifier letter circumflex accent"), + (0x2C7, 'ห‡', "caron"), + (0x2C9, 'ห‰', "modifier letter macron"), + (0x2D8, 'ห˜', "breve"), + (0x2D9, 'ห™', "dot above"), + (0x2DA, 'หš', "ring above"), + (0x2DB, 'ห›', "ogonek"), + (0x2DC, 'หœ', "small tilde"), + (0x2DD, 'ห', "double acute accent"), + (0x311, 'ฬ‘', "combining inverted breve"), + (0x384, 'ฮ„', "greek tonos"), + (0x385, 'ฮ…', "greek dialytika tonos"), + (0x386, 'ฮ†', "greek capital letter alpha with tonos"), + (0x388, 'ฮˆ', "greek capital letter epsilon with tonos"), + (0x389, 'ฮ‰', "greek capital letter eta with tonos"), + (0x38A, 'ฮŠ', "greek capital letter iota with tonos"), + (0x38C, 'ฮŒ', "greek capital letter omicron with tonos"), + (0x38E, 'ฮŽ', "greek capital letter upsilon with tonos"), + (0x38F, 'ฮ', "greek capital letter omega with tonos"), + (0x390, 'ฮ', "greek small letter iota with dialytika and tonos"), + (0x391, 'ฮ‘', "greek capital letter alpha"), + (0x392, 'ฮ’', "greek capital letter beta"), + (0x393, 'ฮ“', "greek capital letter gamma"), + (0x394, 'ฮ”', "greek capital letter delta"), + (0x395, 'ฮ•', "greek capital letter epsilon"), + (0x396, 'ฮ–', "greek capital letter zeta"), + (0x397, 'ฮ—', "greek capital letter eta"), + (0x398, 'ฮ˜', "greek capital letter theta"), + (0x399, 'ฮ™', "greek capital letter iota"), + (0x39A, 'ฮš', "greek capital letter kappa"), + (0x39B, 'ฮ›', "greek capital letter lamda"), + (0x39C, 'ฮœ', "greek capital letter mu"), + (0x39D, 'ฮ', "greek capital letter nu"), + (0x39E, 'ฮž', "greek capital letter xi"), + (0x39F, 'ฮŸ', "greek capital letter omicron"), + (0x3A0, 'ฮ ', "greek capital letter pi"), + (0x3A1, 'ฮก', "greek capital letter rho"), + (0x3A3, 'ฮฃ', "greek capital letter sigma"), + (0x3A4, 'ฮค', "greek capital letter tau"), + (0x3A5, 'ฮฅ', "greek capital letter upsilon"), + (0x3A6, 'ฮฆ', "greek capital letter phi"), + (0x3A7, 'ฮง', "greek capital letter chi"), + (0x3A8, 'ฮจ', "greek capital letter psi"), + (0x3A9, 'ฮฉ', "greek capital letter omega"), + (0x3AA, 'ฮช', "greek capital letter iota with dialytika"), + (0x3AB, 'ฮซ', "greek capital letter upsilon with dialytika"), + (0x3AC, 'ฮฌ', "greek small letter alpha with tonos"), + (0x3AD, 'ฮญ', "greek small letter epsilon with tonos"), + (0x3AE, 'ฮฎ', "greek small letter eta with tonos"), + (0x3AF, 'ฮฏ', "greek small letter iota with tonos"), + (0x3B0, 'ฮฐ', "greek small letter upsilon with dialytika and tonos"), + (0x3B1, 'ฮฑ', "greek small letter alpha"), + (0x3B2, 'ฮฒ', "greek small letter beta"), + (0x3B3, 'ฮณ', "greek small letter gamma"), + (0x3B4, 'ฮด', "greek small letter delta"), + (0x3B5, 'ฮต', "greek small letter epsilon"), + (0x3B6, 'ฮถ', "greek small letter zeta"), + (0x3B7, 'ฮท', "greek small letter eta"), + (0x3B8, 'ฮธ', "greek small letter theta"), + (0x3B9, 'ฮน', "greek small letter iota"), + (0x3BA, 'ฮบ', "greek small letter kappa"), + (0x3BB, 'ฮป', "greek small letter lamda"), + (0x3BC, 'ฮผ', "greek small letter mu"), + (0x3BD, 'ฮฝ', "greek small letter nu"), + (0x3BE, 'ฮพ', "greek small letter xi"), + (0x3BF, 'ฮฟ', "greek small letter omicron"), + (0x3C0, 'ฯ€', "greek small letter pi"), + (0x3C1, 'ฯ', "greek small letter rho"), + (0x3C2, 'ฯ‚', "greek small letter final sigma"), + (0x3C3, 'ฯƒ', "greek small letter sigma"), + (0x3C4, 'ฯ„', "greek small letter tau"), + (0x3C5, 'ฯ…', "greek small letter upsilon"), + (0x3C6, 'ฯ†', "greek small letter phi"), + (0x3C7, 'ฯ‡', "greek small letter chi"), + (0x3C8, 'ฯˆ', "greek small letter psi"), + (0x3C9, 'ฯ‰', "greek small letter omega"), + (0x3CA, 'ฯŠ', "greek small letter iota with dialytika"), + (0x3CB, 'ฯ‹', "greek small letter upsilon with dialytika"), + (0x3CC, 'ฯŒ', "greek small letter omicron with tonos"), + (0x3CD, 'ฯ', "greek small letter upsilon with tonos"), + (0x3CE, 'ฯŽ', "greek small letter omega with tonos"), + (0x400, 'ะ€', "cyrillic capital letter ie with grave"), + (0x401, 'ะ', "cyrillic capital letter io"), + (0x402, 'ะ‚', "cyrillic capital letter dje"), + (0x403, 'ะƒ', "cyrillic capital letter gje"), + (0x404, 'ะ„', "cyrillic capital letter ukrainian ie"), + (0x405, 'ะ…', "cyrillic capital letter dze"), + (0x406, 'ะ†', "cyrillic capital letter byelorussian-ukrainian i"), + (0x407, 'ะ‡', "cyrillic capital letter yi"), + (0x408, 'ะˆ', "cyrillic capital letter je"), + (0x409, 'ะ‰', "cyrillic capital letter lje"), + (0x40A, 'ะŠ', "cyrillic capital letter nje"), + (0x40B, 'ะ‹', "cyrillic capital letter tshe"), + (0x40C, 'ะŒ', "cyrillic capital letter kje"), + (0x40D, 'ะ', "cyrillic capital letter i with grave"), + (0x40E, 'ะŽ', "cyrillic capital letter short u"), + (0x40F, 'ะ', "cyrillic capital letter dzhe"), + (0x410, 'ะ', "cyrillic capital letter a"), + (0x411, 'ะ‘', "cyrillic capital letter be"), + (0x412, 'ะ’', "cyrillic capital letter ve"), + (0x413, 'ะ“', "cyrillic capital letter ghe"), + (0x414, 'ะ”', "cyrillic capital letter de"), + (0x415, 'ะ•', "cyrillic capital letter ie"), + (0x416, 'ะ–', "cyrillic capital letter zhe"), + (0x417, 'ะ—', "cyrillic capital letter ze"), + (0x418, 'ะ˜', "cyrillic capital letter i"), + (0x419, 'ะ™', "cyrillic capital letter short i"), + (0x41A, 'ะš', "cyrillic capital letter ka"), + (0x41B, 'ะ›', "cyrillic capital letter el"), + (0x41C, 'ะœ', "cyrillic capital letter em"), + (0x41D, 'ะ', "cyrillic capital letter en"), + (0x41E, 'ะž', "cyrillic capital letter o"), + (0x41F, 'ะŸ', "cyrillic capital letter pe"), + (0x420, 'ะ ', "cyrillic capital letter er"), + (0x421, 'ะก', "cyrillic capital letter es"), + (0x422, 'ะข', "cyrillic capital letter te"), + (0x423, 'ะฃ', "cyrillic capital letter u"), + (0x424, 'ะค', "cyrillic capital letter ef"), + (0x425, 'ะฅ', "cyrillic capital letter ha"), + (0x426, 'ะฆ', "cyrillic capital letter tse"), + (0x427, 'ะง', "cyrillic capital letter che"), + (0x428, 'ะจ', "cyrillic capital letter sha"), + (0x429, 'ะฉ', "cyrillic capital letter shcha"), + (0x42A, 'ะช', "cyrillic capital letter hard sign"), + (0x42B, 'ะซ', "cyrillic capital letter yeru"), + (0x42C, 'ะฌ', "cyrillic capital letter soft sign"), + (0x42D, 'ะญ', "cyrillic capital letter e"), + (0x42E, 'ะฎ', "cyrillic capital letter yu"), + (0x42F, 'ะฏ', "cyrillic capital letter ya"), + (0x430, 'ะฐ', "cyrillic small letter a"), + (0x431, 'ะฑ', "cyrillic small letter be"), + (0x432, 'ะฒ', "cyrillic small letter ve"), + (0x433, 'ะณ', "cyrillic small letter ghe"), + (0x434, 'ะด', "cyrillic small letter de"), + (0x435, 'ะต', "cyrillic small letter ie"), + (0x436, 'ะถ', "cyrillic small letter zhe"), + (0x437, 'ะท', "cyrillic small letter ze"), + (0x438, 'ะธ', "cyrillic small letter i"), + (0x439, 'ะน', "cyrillic small letter short i"), + (0x43A, 'ะบ', "cyrillic small letter ka"), + (0x43B, 'ะป', "cyrillic small letter el"), + (0x43C, 'ะผ', "cyrillic small letter em"), + (0x43D, 'ะฝ', "cyrillic small letter en"), + (0x43E, 'ะพ', "cyrillic small letter o"), + (0x43F, 'ะฟ', "cyrillic small letter pe"), + (0x440, 'ั€', "cyrillic small letter er"), + (0x441, 'ั', "cyrillic small letter es"), + (0x442, 'ั‚', "cyrillic small letter te"), + (0x443, 'ัƒ', "cyrillic small letter u"), + (0x444, 'ั„', "cyrillic small letter ef"), + (0x445, 'ั…', "cyrillic small letter ha"), + (0x446, 'ั†', "cyrillic small letter tse"), + (0x447, 'ั‡', "cyrillic small letter che"), + (0x448, 'ัˆ', "cyrillic small letter sha"), + (0x449, 'ั‰', "cyrillic small letter shcha"), + (0x44A, 'ัŠ', "cyrillic small letter hard sign"), + (0x44B, 'ั‹', "cyrillic small letter yeru"), + (0x44C, 'ัŒ', "cyrillic small letter soft sign"), + (0x44D, 'ั', "cyrillic small letter e"), + (0x44E, 'ัŽ', "cyrillic small letter yu"), + (0x44F, 'ั', "cyrillic small letter ya"), + (0x450, 'ั', "cyrillic small letter ie with grave"), + (0x451, 'ั‘', "cyrillic small letter io"), + (0x452, 'ั’', "cyrillic small letter dje"), + (0x453, 'ั“', "cyrillic small letter gje"), + (0x454, 'ั”', "cyrillic small letter ukrainian ie"), + (0x455, 'ั•', "cyrillic small letter dze"), + (0x456, 'ั–', "cyrillic small letter byelorussian-ukrainian i"), + (0x457, 'ั—', "cyrillic small letter yi"), + (0x458, 'ั˜', "cyrillic small letter je"), + (0x459, 'ั™', "cyrillic small letter lje"), + (0x45A, 'ัš', "cyrillic small letter nje"), + (0x45B, 'ั›', "cyrillic small letter tshe"), + (0x45C, 'ัœ', "cyrillic small letter kje"), + (0x45D, 'ั', "cyrillic small letter i with grave"), + (0x45E, 'ัž', "cyrillic small letter short u"), + (0x45F, 'ัŸ', "cyrillic small letter dzhe"), + (0x462, 'ัข', "cyrillic capital letter yat"), + (0x463, 'ัฃ', "cyrillic small letter yat"), + (0x472, 'ัฒ', "cyrillic capital letter fita"), + (0x473, 'ัณ', "cyrillic small letter fita"), + (0x474, 'ัด', "cyrillic capital letter izhitsa"), + (0x475, 'ัต', "cyrillic small letter izhitsa"), + (0x48A, 'าŠ', "cyrillic capital letter short i with tail"), + (0x48B, 'า‹', "cyrillic small letter short i with tail"), + (0x48C, 'าŒ', "cyrillic capital letter semisoft sign"), + (0x48D, 'า', "cyrillic small letter semisoft sign"), + (0x48E, 'าŽ', "cyrillic capital letter er with tick"), + (0x48F, 'า', "cyrillic small letter er with tick"), + (0x490, 'า', "cyrillic capital letter ghe with upturn"), + (0x491, 'า‘', "cyrillic small letter ghe with upturn"), + (0x492, 'า’', "cyrillic capital letter ghe with stroke"), + (0x493, 'า“', "cyrillic small letter ghe with stroke"), + (0x494, 'า”', "cyrillic capital letter ghe with middle hook"), + (0x495, 'า•', "cyrillic small letter ghe with middle hook"), + (0x496, 'า–', "cyrillic capital letter zhe with descender"), + (0x497, 'า—', "cyrillic small letter zhe with descender"), + (0x498, 'า˜', "cyrillic capital letter ze with descender"), + (0x499, 'า™', "cyrillic small letter ze with descender"), + (0x49A, 'าš', "cyrillic capital letter ka with descender"), + (0x49B, 'า›', "cyrillic small letter ka with descender"), + (0x49C, 'าœ', "cyrillic capital letter ka with vertical stroke"), + (0x49D, 'า', "cyrillic small letter ka with vertical stroke"), + (0x49E, 'าž', "cyrillic capital letter ka with stroke"), + (0x49F, 'าŸ', "cyrillic small letter ka with stroke"), + (0x4A0, 'า ', "cyrillic capital letter bashkir ka"), + (0x4A1, 'าก', "cyrillic small letter bashkir ka"), + (0x4A2, 'าข', "cyrillic capital letter en with descender"), + (0x4A3, 'าฃ', "cyrillic small letter en with descender"), + (0x4A4, 'าค', "cyrillic capital ligature en ghe"), + (0x4A5, 'าฅ', "cyrillic small ligature en ghe"), + (0x4A6, 'าฆ', "cyrillic capital letter pe with middle hook"), + (0x4A7, 'าง', "cyrillic small letter pe with middle hook"), + (0x4A8, 'าจ', "cyrillic capital letter abkhasian ha"), + (0x4A9, 'าฉ', "cyrillic small letter abkhasian ha"), + (0x4AA, 'าช', "cyrillic capital letter es with descender"), + (0x4AB, 'าซ', "cyrillic small letter es with descender"), + (0x4AC, 'าฌ', "cyrillic capital letter te with descender"), + (0x4AD, 'าญ', "cyrillic small letter te with descender"), + (0x4AE, 'าฎ', "cyrillic capital letter straight u"), + (0x4AF, 'าฏ', "cyrillic small letter straight u"), + (0x4B0, 'าฐ', "cyrillic capital letter straight u with stroke"), + (0x4B1, 'าฑ', "cyrillic small letter straight u with stroke"), + (0x4B2, 'าฒ', "cyrillic capital letter ha with descender"), + (0x4B3, 'าณ', "cyrillic small letter ha with descender"), + (0x4B4, 'าด', "cyrillic capital ligature te tse"), + (0x4B5, 'าต', "cyrillic small ligature te tse"), + (0x4B6, 'าถ', "cyrillic capital letter che with descender"), + (0x4B7, 'าท', "cyrillic small letter che with descender"), + (0x4B8, 'าธ', "cyrillic capital letter che with vertical stroke"), + (0x4B9, 'าน', "cyrillic small letter che with vertical stroke"), + (0x4BA, 'าบ', "cyrillic capital letter shha"), + (0x4BB, 'าป', "cyrillic small letter shha"), + (0x4BC, 'าผ', "cyrillic capital letter abkhasian che"), + (0x4BD, 'าฝ', "cyrillic small letter abkhasian che"), + (0x4BE, 'าพ', "cyrillic capital letter abkhasian che with descender"), + (0x4BF, 'าฟ', "cyrillic small letter abkhasian che with descender"), + (0x4C0, 'ำ€', "cyrillic letter palochka"), + (0x4C1, 'ำ', "cyrillic capital letter zhe with breve"), + (0x4C2, 'ำ‚', "cyrillic small letter zhe with breve"), + (0x4C3, 'ำƒ', "cyrillic capital letter ka with hook"), + (0x4C4, 'ำ„', "cyrillic small letter ka with hook"), + (0x4C5, 'ำ…', "cyrillic capital letter el with tail"), + (0x4C6, 'ำ†', "cyrillic small letter el with tail"), + (0x4C7, 'ำ‡', "cyrillic capital letter en with hook"), + (0x4C8, 'ำˆ', "cyrillic small letter en with hook"), + (0x4C9, 'ำ‰', "cyrillic capital letter en with tail"), + (0x4CA, 'ำŠ', "cyrillic small letter en with tail"), + (0x4CB, 'ำ‹', "cyrillic capital letter khakassian che"), + (0x4CC, 'ำŒ', "cyrillic small letter khakassian che"), + (0x4CD, 'ำ', "cyrillic capital letter em with tail"), + (0x4CE, 'ำŽ', "cyrillic small letter em with tail"), + (0x4CF, 'ำ', "cyrillic small letter palochka"), + (0x4D0, 'ำ', "cyrillic capital letter a with breve"), + (0x4D1, 'ำ‘', "cyrillic small letter a with breve"), + (0x4D2, 'ำ’', "cyrillic capital letter a with diaeresis"), + (0x4D3, 'ำ“', "cyrillic small letter a with diaeresis"), + (0x4D4, 'ำ”', "cyrillic capital ligature a ie"), + (0x4D5, 'ำ•', "cyrillic small ligature a ie"), + (0x4D6, 'ำ–', "cyrillic capital letter ie with breve"), + (0x4D7, 'ำ—', "cyrillic small letter ie with breve"), + (0x4D8, 'ำ˜', "cyrillic capital letter schwa"), + (0x4D9, 'ำ™', "cyrillic small letter schwa"), + (0x4DA, 'ำš', "cyrillic capital letter schwa with diaeresis"), + (0x4DB, 'ำ›', "cyrillic small letter schwa with diaeresis"), + (0x4DC, 'ำœ', "cyrillic capital letter zhe with diaeresis"), + (0x4DD, 'ำ', "cyrillic small letter zhe with diaeresis"), + (0x4DE, 'ำž', "cyrillic capital letter ze with diaeresis"), + (0x4DF, 'ำŸ', "cyrillic small letter ze with diaeresis"), + (0x4E0, 'ำ ', "cyrillic capital letter abkhasian dze"), + (0x4E1, 'ำก', "cyrillic small letter abkhasian dze"), + (0x4E2, 'ำข', "cyrillic capital letter i with macron"), + (0x4E3, 'ำฃ', "cyrillic small letter i with macron"), + (0x4E4, 'ำค', "cyrillic capital letter i with diaeresis"), + (0x4E5, 'ำฅ', "cyrillic small letter i with diaeresis"), + (0x4E6, 'ำฆ', "cyrillic capital letter o with diaeresis"), + (0x4E7, 'ำง', "cyrillic small letter o with diaeresis"), + (0x4E8, 'ำจ', "cyrillic capital letter barred o"), + (0x4E9, 'ำฉ', "cyrillic small letter barred o"), + (0x4EA, 'ำช', "cyrillic capital letter barred o with diaeresis"), + (0x4EB, 'ำซ', "cyrillic small letter barred o with diaeresis"), + (0x4EC, 'ำฌ', "cyrillic capital letter e with diaeresis"), + (0x4ED, 'ำญ', "cyrillic small letter e with diaeresis"), + (0x4EE, 'ำฎ', "cyrillic capital letter u with macron"), + (0x4EF, 'ำฏ', "cyrillic small letter u with macron"), + (0x4F0, 'ำฐ', "cyrillic capital letter u with diaeresis"), + (0x4F1, 'ำฑ', "cyrillic small letter u with diaeresis"), + (0x4F2, 'ำฒ', "cyrillic capital letter u with double acute"), + (0x4F3, 'ำณ', "cyrillic small letter u with double acute"), + (0x4F4, 'ำด', "cyrillic capital letter che with diaeresis"), + (0x4F5, 'ำต', "cyrillic small letter che with diaeresis"), + (0x4F6, 'ำถ', "cyrillic capital letter ghe with descender"), + (0x4F7, 'ำท', "cyrillic small letter ghe with descender"), + (0x4F8, 'ำธ', "cyrillic capital letter yeru with diaeresis"), + (0x4F9, 'ำน', "cyrillic small letter yeru with diaeresis"), + (0x1E80, 'แบ€', "latin capital letter w with grave"), + (0x1E81, 'แบ', "latin small letter w with grave"), + (0x1E82, 'แบ‚', "latin capital letter w with acute"), + (0x1E83, 'แบƒ', "latin small letter w with acute"), + (0x1E84, 'แบ„', "latin capital letter w with diaeresis"), + (0x1E85, 'แบ…', "latin small letter w with diaeresis"), + (0x1EF2, 'แปฒ', "latin capital letter y with grave"), + (0x1EF3, 'แปณ', "latin small letter y with grave"), + (0x1F00, 'แผ€', "greek small letter alpha with psili"), + (0x1F01, 'แผ', "greek small letter alpha with dasia"), + (0x1F02, 'แผ‚', "greek small letter alpha with psili and varia"), + (0x1F03, 'แผƒ', "greek small letter alpha with dasia and varia"), + (0x1F04, 'แผ„', "greek small letter alpha with psili and oxia"), + (0x1F05, 'แผ…', "greek small letter alpha with dasia and oxia"), + (0x1F06, 'แผ†', "greek small letter alpha with psili and perispomeni"), + (0x1F07, 'แผ‡', "greek small letter alpha with dasia and perispomeni"), + (0x1F08, 'แผˆ', "greek capital letter alpha with psili"), + (0x1F09, 'แผ‰', "greek capital letter alpha with dasia"), + (0x1F0A, 'แผŠ', "greek capital letter alpha with psili and varia"), + (0x1F0B, 'แผ‹', "greek capital letter alpha with dasia and varia"), + (0x1F0C, 'แผŒ', "greek capital letter alpha with psili and oxia"), + (0x1F0D, 'แผ', "greek capital letter alpha with dasia and oxia"), + (0x1F0E, 'แผŽ', "greek capital letter alpha with psili and perispomeni"), + (0x1F0F, 'แผ', "greek capital letter alpha with dasia and perispomeni"), + (0x1F10, 'แผ', "greek small letter epsilon with psili"), + (0x1F11, 'แผ‘', "greek small letter epsilon with dasia"), + (0x1F12, 'แผ’', "greek small letter epsilon with psili and varia"), + (0x1F13, 'แผ“', "greek small letter epsilon with dasia and varia"), + (0x1F14, 'แผ”', "greek small letter epsilon with psili and oxia"), + (0x1F15, 'แผ•', "greek small letter epsilon with dasia and oxia"), + (0x1F18, 'แผ˜', "greek capital letter epsilon with psili"), + (0x1F19, 'แผ™', "greek capital letter epsilon with dasia"), + (0x1F1A, 'แผš', "greek capital letter epsilon with psili and varia"), + (0x1F1B, 'แผ›', "greek capital letter epsilon with dasia and varia"), + (0x1F1C, 'แผœ', "greek capital letter epsilon with psili and oxia"), + (0x1F1D, 'แผ', "greek capital letter epsilon with dasia and oxia"), + (0x1F20, 'แผ ', "greek small letter eta with psili"), + (0x1F21, 'แผก', "greek small letter eta with dasia"), + (0x1F22, 'แผข', "greek small letter eta with psili and varia"), + (0x1F23, 'แผฃ', "greek small letter eta with dasia and varia"), + (0x1F24, 'แผค', "greek small letter eta with psili and oxia"), + (0x1F25, 'แผฅ', "greek small letter eta with dasia and oxia"), + (0x1F26, 'แผฆ', "greek small letter eta with psili and perispomeni"), + (0x1F27, 'แผง', "greek small letter eta with dasia and perispomeni"), + (0x1F28, 'แผจ', "greek capital letter eta with psili"), + (0x1F29, 'แผฉ', "greek capital letter eta with dasia"), + (0x1F2A, 'แผช', "greek capital letter eta with psili and varia"), + (0x1F2B, 'แผซ', "greek capital letter eta with dasia and varia"), + (0x1F2C, 'แผฌ', "greek capital letter eta with psili and oxia"), + (0x1F2D, 'แผญ', "greek capital letter eta with dasia and oxia"), + (0x1F2E, 'แผฎ', "greek capital letter eta with psili and perispomeni"), + (0x1F2F, 'แผฏ', "greek capital letter eta with dasia and perispomeni"), + (0x1F30, 'แผฐ', "greek small letter iota with psili"), + (0x1F31, 'แผฑ', "greek small letter iota with dasia"), + (0x1F32, 'แผฒ', "greek small letter iota with psili and varia"), + (0x1F33, 'แผณ', "greek small letter iota with dasia and varia"), + (0x1F34, 'แผด', "greek small letter iota with psili and oxia"), + (0x1F35, 'แผต', "greek small letter iota with dasia and oxia"), + (0x1F36, 'แผถ', "greek small letter iota with psili and perispomeni"), + (0x1F37, 'แผท', "greek small letter iota with dasia and perispomeni"), + (0x1F38, 'แผธ', "greek capital letter iota with psili"), + (0x1F39, 'แผน', "greek capital letter iota with dasia"), + (0x1F3A, 'แผบ', "greek capital letter iota with psili and varia"), + (0x1F3B, 'แผป', "greek capital letter iota with dasia and varia"), + (0x1F3C, 'แผผ', "greek capital letter iota with psili and oxia"), + (0x1F3D, 'แผฝ', "greek capital letter iota with dasia and oxia"), + (0x1F3E, 'แผพ', "greek capital letter iota with psili and perispomeni"), + (0x1F3F, 'แผฟ', "greek capital letter iota with dasia and perispomeni"), + (0x1F40, 'แฝ€', "greek small letter omicron with psili"), + (0x1F41, 'แฝ', "greek small letter omicron with dasia"), + (0x1F42, 'แฝ‚', "greek small letter omicron with psili and varia"), + (0x1F43, 'แฝƒ', "greek small letter omicron with dasia and varia"), + (0x1F44, 'แฝ„', "greek small letter omicron with psili and oxia"), + (0x1F45, 'แฝ…', "greek small letter omicron with dasia and oxia"), + (0x1F48, 'แฝˆ', "greek capital letter omicron with psili"), + (0x1F49, 'แฝ‰', "greek capital letter omicron with dasia"), + (0x1F4A, 'แฝŠ', "greek capital letter omicron with psili and varia"), + (0x1F4B, 'แฝ‹', "greek capital letter omicron with dasia and varia"), + (0x1F4C, 'แฝŒ', "greek capital letter omicron with psili and oxia"), + (0x1F4D, 'แฝ', "greek capital letter omicron with dasia and oxia"), + (0x1F50, 'แฝ', "greek small letter upsilon with psili"), + (0x1F51, 'แฝ‘', "greek small letter upsilon with dasia"), + (0x1F52, 'แฝ’', "greek small letter upsilon with psili and varia"), + (0x1F53, 'แฝ“', "greek small letter upsilon with dasia and varia"), + (0x1F54, 'แฝ”', "greek small letter upsilon with psili and oxia"), + (0x1F55, 'แฝ•', "greek small letter upsilon with dasia and oxia"), + (0x1F56, 'แฝ–', "greek small letter upsilon with psili and perispomeni"), + (0x1F57, 'แฝ—', "greek small letter upsilon with dasia and perispomeni"), + (0x1F59, 'แฝ™', "greek capital letter upsilon with dasia"), + (0x1F5B, 'แฝ›', "greek capital letter upsilon with dasia and varia"), + (0x1F5D, 'แฝ', "greek capital letter upsilon with dasia and oxia"), + (0x1F5F, 'แฝŸ', "greek capital letter upsilon with dasia and perispomeni"), + (0x1F60, 'แฝ ', "greek small letter omega with psili"), + (0x1F61, 'แฝก', "greek small letter omega with dasia"), + (0x1F62, 'แฝข', "greek small letter omega with psili and varia"), + (0x1F63, 'แฝฃ', "greek small letter omega with dasia and varia"), + (0x1F64, 'แฝค', "greek small letter omega with psili and oxia"), + (0x1F65, 'แฝฅ', "greek small letter omega with dasia and oxia"), + (0x1F66, 'แฝฆ', "greek small letter omega with psili and perispomeni"), + (0x1F67, 'แฝง', "greek small letter omega with dasia and perispomeni"), + (0x1F68, 'แฝจ', "greek capital letter omega with psili"), + (0x1F69, 'แฝฉ', "greek capital letter omega with dasia"), + (0x1F6A, 'แฝช', "greek capital letter omega with psili and varia"), + (0x1F6B, 'แฝซ', "greek capital letter omega with dasia and varia"), + (0x1F6C, 'แฝฌ', "greek capital letter omega with psili and oxia"), + (0x1F6D, 'แฝญ', "greek capital letter omega with dasia and oxia"), + (0x1F6E, 'แฝฎ', "greek capital letter omega with psili and perispomeni"), + (0x1F6F, 'แฝฏ', "greek capital letter omega with dasia and perispomeni"), + (0x1F70, 'แฝฐ', "greek small letter alpha with varia"), + (0x1F71, 'แฝฑ', "greek small letter alpha with oxia"), + (0x1F72, 'แฝฒ', "greek small letter epsilon with varia"), + (0x1F73, 'แฝณ', "greek small letter epsilon with oxia"), + (0x1F74, 'แฝด', "greek small letter eta with varia"), + (0x1F75, 'แฝต', "greek small letter eta with oxia"), + (0x1F76, 'แฝถ', "greek small letter iota with varia"), + (0x1F77, 'แฝท', "greek small letter iota with oxia"), + (0x1F78, 'แฝธ', "greek small letter omicron with varia"), + (0x1F79, 'แฝน', "greek small letter omicron with oxia"), + (0x1F7A, 'แฝบ', "greek small letter upsilon with varia"), + (0x1F7B, 'แฝป', "greek small letter upsilon with oxia"), + (0x1F7C, 'แฝผ', "greek small letter omega with varia"), + (0x1F7D, 'แฝฝ', "greek small letter omega with oxia"), + (0x1F80, 'แพ€', "greek small letter alpha with psili and ypogegrammeni"), + (0x1F81, 'แพ', "greek small letter alpha with dasia and ypogegrammeni"), + (0x1F82, 'แพ‚', "greek small letter alpha with psili and varia and ypogegrammeni"), + (0x1F83, 'แพƒ', "greek small letter alpha with dasia and varia and ypogegrammeni"), + (0x1F84, 'แพ„', "greek small letter alpha with psili and oxia and ypogegrammeni"), + (0x1F85, 'แพ…', "greek small letter alpha with dasia and oxia and ypogegrammeni"), + (0x1F86, 'แพ†', "greek small letter alpha with psili and perispomeni and ypogegrammeni"), + (0x1F87, 'แพ‡', "greek small letter alpha with dasia and perispomeni and ypogegrammeni"), + (0x1F88, 'แพˆ', "greek capital letter alpha with psili and prosgegrammeni"), + (0x1F89, 'แพ‰', "greek capital letter alpha with dasia and prosgegrammeni"), + (0x1F8A, 'แพŠ', "greek capital letter alpha with psili and varia and prosgegrammeni"), + (0x1F8B, 'แพ‹', "greek capital letter alpha with dasia and varia and prosgegrammeni"), + (0x1F8C, 'แพŒ', "greek capital letter alpha with psili and oxia and prosgegrammeni"), + (0x1F8D, 'แพ', "greek capital letter alpha with dasia and oxia and prosgegrammeni"), + (0x1F8E, 'แพŽ', "greek capital letter alpha with psili and perispomeni and prosgegrammeni"), + (0x1F8F, 'แพ', "greek capital letter alpha with dasia and perispomeni and prosgegrammeni"), + (0x1F90, 'แพ', "greek small letter eta with psili and ypogegrammeni"), + (0x1F91, 'แพ‘', "greek small letter eta with dasia and ypogegrammeni"), + (0x1F92, 'แพ’', "greek small letter eta with psili and varia and ypogegrammeni"), + (0x1F93, 'แพ“', "greek small letter eta with dasia and varia and ypogegrammeni"), + (0x1F94, 'แพ”', "greek small letter eta with psili and oxia and ypogegrammeni"), + (0x1F95, 'แพ•', "greek small letter eta with dasia and oxia and ypogegrammeni"), + (0x1F96, 'แพ–', "greek small letter eta with psili and perispomeni and ypogegrammeni"), + (0x1F97, 'แพ—', "greek small letter eta with dasia and perispomeni and ypogegrammeni"), + (0x1F98, 'แพ˜', "greek capital letter eta with psili and prosgegrammeni"), + (0x1F99, 'แพ™', "greek capital letter eta with dasia and prosgegrammeni"), + (0x1F9A, 'แพš', "greek capital letter eta with psili and varia and prosgegrammeni"), + (0x1F9B, 'แพ›', "greek capital letter eta with dasia and varia and prosgegrammeni"), + (0x1F9C, 'แพœ', "greek capital letter eta with psili and oxia and prosgegrammeni"), + (0x1F9D, 'แพ', "greek capital letter eta with dasia and oxia and prosgegrammeni"), + (0x1F9E, 'แพž', "greek capital letter eta with psili and perispomeni and prosgegrammeni"), + (0x1F9F, 'แพŸ', "greek capital letter eta with dasia and perispomeni and prosgegrammeni"), + (0x1FA0, 'แพ ', "greek small letter omega with psili and ypogegrammeni"), + (0x1FA1, 'แพก', "greek small letter omega with dasia and ypogegrammeni"), + (0x1FA2, 'แพข', "greek small letter omega with psili and varia and ypogegrammeni"), + (0x1FA3, 'แพฃ', "greek small letter omega with dasia and varia and ypogegrammeni"), + (0x1FA4, 'แพค', "greek small letter omega with psili and oxia and ypogegrammeni"), + (0x1FA5, 'แพฅ', "greek small letter omega with dasia and oxia and ypogegrammeni"), + (0x1FA6, 'แพฆ', "greek small letter omega with psili and perispomeni and ypogegrammeni"), + (0x1FA7, 'แพง', "greek small letter omega with dasia and perispomeni and ypogegrammeni"), + (0x1FA8, 'แพจ', "greek capital letter omega with psili and prosgegrammeni"), + (0x1FA9, 'แพฉ', "greek capital letter omega with dasia and prosgegrammeni"), + (0x1FAA, 'แพช', "greek capital letter omega with psili and varia and prosgegrammeni"), + (0x1FAB, 'แพซ', "greek capital letter omega with dasia and varia and prosgegrammeni"), + (0x1FAC, 'แพฌ', "greek capital letter omega with psili and oxia and prosgegrammeni"), + (0x1FAD, 'แพญ', "greek capital letter omega with dasia and oxia and prosgegrammeni"), + (0x1FAE, 'แพฎ', "greek capital letter omega with psili and perispomeni and prosgegrammeni"), + (0x1FAF, 'แพฏ', "greek capital letter omega with dasia and perispomeni and prosgegrammeni"), + (0x1FB0, 'แพฐ', "greek small letter alpha with vrachy"), + (0x1FB1, 'แพฑ', "greek small letter alpha with macron"), + (0x1FB2, 'แพฒ', "greek small letter alpha with varia and ypogegrammeni"), + (0x1FB3, 'แพณ', "greek small letter alpha with ypogegrammeni"), + (0x1FB4, 'แพด', "greek small letter alpha with oxia and ypogegrammeni"), + (0x1FB6, 'แพถ', "greek small letter alpha with perispomeni"), + (0x1FB7, 'แพท', "greek small letter alpha with perispomeni and ypogegrammeni"), + (0x1FB8, 'แพธ', "greek capital letter alpha with vrachy"), + (0x1FB9, 'แพน', "greek capital letter alpha with macron"), + (0x1FBA, 'แพบ', "greek capital letter alpha with varia"), + (0x1FBB, 'แพป', "greek capital letter alpha with oxia"), + (0x1FBC, 'แพผ', "greek capital letter alpha with prosgegrammeni"), + (0x1FBD, 'แพฝ', "greek koronis"), + (0x1FBE, 'แพพ', "greek prosgegrammeni"), + (0x1FBF, 'แพฟ', "greek psili"), + (0x1FC0, 'แฟ€', "greek perispomeni"), + (0x1FC1, 'แฟ', "greek dialytika and perispomeni"), + (0x1FC2, 'แฟ‚', "greek small letter eta with varia and ypogegrammeni"), + (0x1FC3, 'แฟƒ', "greek small letter eta with ypogegrammeni"), + (0x1FC4, 'แฟ„', "greek small letter eta with oxia and ypogegrammeni"), + (0x1FC6, 'แฟ†', "greek small letter eta with perispomeni"), + (0x1FC7, 'แฟ‡', "greek small letter eta with perispomeni and ypogegrammeni"), + (0x1FC8, 'แฟˆ', "greek capital letter epsilon with varia"), + (0x1FC9, 'แฟ‰', "greek capital letter epsilon with oxia"), + (0x1FCA, 'แฟŠ', "greek capital letter eta with varia"), + (0x1FCB, 'แฟ‹', "greek capital letter eta with oxia"), + (0x1FCC, 'แฟŒ', "greek capital letter eta with prosgegrammeni"), + (0x1FCD, 'แฟ', "greek psili and varia"), + (0x1FCE, 'แฟŽ', "greek psili and oxia"), + (0x1FCF, 'แฟ', "greek psili and perispomeni"), + (0x1FD0, 'แฟ', "greek small letter iota with vrachy"), + (0x1FD1, 'แฟ‘', "greek small letter iota with macron"), + (0x1FD2, 'แฟ’', "greek small letter iota with dialytika and varia"), + (0x1FD3, 'แฟ“', "greek small letter iota with dialytika and oxia"), + (0x1FD6, 'แฟ–', "greek small letter iota with perispomeni"), + (0x1FD7, 'แฟ—', "greek small letter iota with dialytika and perispomeni"), + (0x1FD8, 'แฟ˜', "greek capital letter iota with vrachy"), + (0x1FD9, 'แฟ™', "greek capital letter iota with macron"), + (0x1FDA, 'แฟš', "greek capital letter iota with varia"), + (0x1FDB, 'แฟ›', "greek capital letter iota with oxia"), + (0x1FDD, 'แฟ', "greek dasia and varia"), + (0x1FDE, 'แฟž', "greek dasia and oxia"), + (0x1FDF, 'แฟŸ', "greek dasia and perispomeni"), + (0x1FE0, 'แฟ ', "greek small letter upsilon with vrachy"), + (0x1FE1, 'แฟก', "greek small letter upsilon with macron"), + (0x1FE2, 'แฟข', "greek small letter upsilon with dialytika and varia"), + (0x1FE3, 'แฟฃ', "greek small letter upsilon with dialytika and oxia"), + (0x1FE4, 'แฟค', "greek small letter rho with psili"), + (0x1FE5, 'แฟฅ', "greek small letter rho with dasia"), + (0x1FE6, 'แฟฆ', "greek small letter upsilon with perispomeni"), + (0x1FE7, 'แฟง', "greek small letter upsilon with dialytika and perispomeni"), + (0x1FE8, 'แฟจ', "greek capital letter upsilon with vrachy"), + (0x1FE9, 'แฟฉ', "greek capital letter upsilon with macron"), + (0x1FEA, 'แฟช', "greek capital letter upsilon with varia"), + (0x1FEB, 'แฟซ', "greek capital letter upsilon with oxia"), + (0x1FEC, 'แฟฌ', "greek capital letter rho with dasia"), + (0x1FED, 'แฟญ', "greek dialytika and varia"), + (0x1FEE, 'แฟฎ', "greek dialytika and oxia"), + (0x1FEF, 'แฟฏ', "greek varia"), + (0x1FF2, 'แฟฒ', "greek small letter omega with varia and ypogegrammeni"), + (0x1FF3, 'แฟณ', "greek small letter omega with ypogegrammeni"), + (0x1FF4, 'แฟด', "greek small letter omega with oxia and ypogegrammeni"), + (0x1FF6, 'แฟถ', "greek small letter omega with perispomeni"), + (0x1FF7, 'แฟท', "greek small letter omega with perispomeni and ypogegrammeni"), + (0x1FF8, 'แฟธ', "greek capital letter omicron with varia"), + (0x1FF9, 'แฟน', "greek capital letter omicron with oxia"), + (0x1FFA, 'แฟบ', "greek capital letter omega with varia"), + (0x1FFB, 'แฟป', "greek capital letter omega with oxia"), + (0x1FFC, 'แฟผ', "greek capital letter omega with prosgegrammeni"), + (0x1FFD, 'แฟฝ', "greek oxia"), + (0x1FFE, 'แฟพ', "greek dasia"), + (0x2013, 'โ€“', "en dash"), + (0x2014, 'โ€”', "em dash"), + (0x2015, 'โ€•', "horizontal bar"), + (0x2018, 'โ€˜', "left single quotation mark"), + (0x2019, 'โ€™', "right single quotation mark"), + (0x201A, 'โ€š', "single low-9 quotation mark"), + (0x201C, 'โ€œ', "left double quotation mark"), + (0x201D, 'โ€', "right double quotation mark"), + (0x201E, 'โ€ž', "double low-9 quotation mark"), + (0x2020, 'โ€ ', "dagger"), + (0x2021, 'โ€ก', "double dagger"), + (0x2022, 'โ€ข', "bullet"), + (0x2026, 'โ€ฆ', "horizontal ellipsis"), + (0x2030, 'โ€ฐ', "per mille sign"), + (0x2039, 'โ€น', "single left-pointing angle quotation mark"), + (0x203A, 'โ€บ', "single right-pointing angle quotation mark"), + (0x2044, 'โ„', "fraction slash"), + (0x2070, 'โฐ', "superscript zero"), + (0x2074, 'โด', "superscript four"), + (0x2075, 'โต', "superscript five"), + (0x2076, 'โถ', "superscript six"), + (0x2077, 'โท', "superscript seven"), + (0x2078, 'โธ', "superscript eight"), + (0x2079, 'โน', "superscript nine"), + (0x2080, 'โ‚€', "subscript zero"), + (0x2081, 'โ‚', "subscript one"), + (0x2082, 'โ‚‚', "subscript two"), + (0x2083, 'โ‚ƒ', "subscript three"), + (0x2084, 'โ‚„', "subscript four"), + (0x2085, 'โ‚…', "subscript five"), + (0x2086, 'โ‚†', "subscript six"), + (0x2087, 'โ‚‡', "subscript seven"), + (0x2088, 'โ‚ˆ', "subscript eight"), + (0x2089, 'โ‚‰', "subscript nine"), + (0x20AC, 'โ‚ฌ', "euro sign"), + (0x20AE, 'โ‚ฎ', "tugrik sign"), + (0x20B4, 'โ‚ด', "hryvnia sign"), + (0x20B9, 'โ‚น', "indian rupee sign"), + (0x2113, 'โ„“', "script small l"), + (0x2116, 'โ„–', "numero sign"), + (0x2122, 'โ„ข', "trade mark sign"), + (0x2126, 'โ„ฆ', "ohm sign"), + (0x212E, 'โ„ฎ', "estimated symbol"), + (0x2153, 'โ…“', "vulgar fraction one third"), + (0x2154, 'โ…”', "vulgar fraction two thirds"), + (0x2155, 'โ…•', "vulgar fraction one fifth"), + (0x2156, 'โ…–', "vulgar fraction two fifths"), + (0x2157, 'โ…—', "vulgar fraction three fifths"), + (0x2158, 'โ…˜', "vulgar fraction four fifths"), + (0x2159, 'โ…™', "vulgar fraction one sixth"), + (0x215A, 'โ…š', "vulgar fraction five sixths"), + (0x215B, 'โ…›', "vulgar fraction one eighth"), + (0x215C, 'โ…œ', "vulgar fraction three eighths"), + (0x215D, 'โ…', "vulgar fraction five eighths"), + (0x215E, 'โ…ž', "vulgar fraction seven eighths"), + (0x2202, 'โˆ‚', "partial differential"), + (0x2206, 'โˆ†', "increment"), + (0x220F, 'โˆ', "n-ary product"), + (0x2211, 'โˆ‘', "n-ary summation"), + (0x2212, 'โˆ’', "minus sign"), + (0x2215, 'โˆ•', "division slash"), + (0x2219, 'โˆ™', "bullet operator"), + (0x221A, 'โˆš', "square root"), + (0x221E, 'โˆž', "infinity"), + (0x222B, 'โˆซ', "integral"), + (0x2248, 'โ‰ˆ', "almost equal to"), + (0x2260, 'โ‰ ', "not equal to"), + (0x2264, 'โ‰ค', "less-than or equal to"), + (0x2265, 'โ‰ฅ', "greater-than or equal to"), + (0x25CA, 'โ—Š', "lozenge"), + // (0xE0FF, '๎ƒฟ', "ubuntu logo large"), + // (0xEFFD, '๎ฟฝ', "0.830"), + (0xF000, '๏€€', "uniF000"), + (0xF001, '๏€', "fi"), + (0xF002, '๏€‚', "fl"), + // (0xF0FF, '๏ƒฟ', "ubuntu logo small"), + // (0xF200, '๏ˆ€', "ubuntu"), + (0xF506, '๏”†', "oneseventh"), + (0xF507, '๏”‡', "twosevenths"), + (0xF508, '๏”ˆ', "threesevenths"), + (0xF509, '๏”‰', "foursevenths"), + (0xF50A, '๏”Š', "fivesevenths"), + (0xF50B, '๏”‹', "sixsevenths"), + (0xF50C, '๏”Œ', "oneninth"), + (0xF50D, '๏”', "twoninths"), + (0xF50E, '๏”Ž', "fourninths"), + (0xF50F, '๏”', "fiveninths"), + (0xF510, '๏”', "sevenninths"), + (0xF511, '๏”‘', "eightninths"), + (0xF800, '๏ €', "zero.alt"), + (0xF801, '๏ ', "one.alt"), + (0xF802, '๏ ‚', "two.alt"), + (0xF803, '๏ ƒ', "three.alt"), + (0xF804, '๏ „', "four.alt"), + (0xF805, '๏ …', "five.alt"), + (0xF806, '๏ †', "six.alt"), + (0xF807, '๏ ‡', "seven.alt"), + (0xF808, '๏ ˆ', "eight.alt"), + (0xF809, '๏ ‰', "nine.alt"), + (0xF80A, '๏ Š', "zero.sups"), + (0xF80B, '๏ ‹', "one.sups"), + (0xF80C, '๏ Œ', "two.sups"), + (0xF80D, '๏ ', "three.sups"), + (0xF80E, '๏ Ž', "four.sups"), + (0xF80F, '๏ ', "five.sups"), + (0xF810, '๏ ', "six.sups"), + (0xF811, '๏ ‘', "seven.sups"), + (0xF812, '๏ ’', "eight.sups"), + (0xF813, '๏ “', "nine.sups"), + (0xF814, '๏ ”', "zero.sinf"), + (0xF815, '๏ •', "one.sinf"), + (0xF816, '๏ –', "two.sinf"), + (0xF817, '๏ —', "three.sinf"), + (0xF818, '๏ ˜', "four.sinf"), + (0xF819, '๏ ™', "five.sinf"), + (0xF81A, '๏ š', "six.sinf"), + (0xF81B, '๏ ›', "seven.sinf"), + (0xF81C, '๏ œ', "eight.sinf"), + (0xF81D, '๏ ', "nine.sinf"), + (0xFB00, '๏ฌ€', "latin small ligature ff"), + (0xFB01, '๏ฌ', "latin small ligature fi"), + (0xFB02, '๏ฌ‚', "latin small ligature fl"), + (0xFB03, '๏ฌƒ', "latin small ligature ffi"), + (0xFB04, '๏ฌ„', "latin small ligature ffl"), +]; diff --git a/egui/src/demos/mod.rs b/egui/src/demos/mod.rs index 318c8a04..5ead9200 100644 --- a/egui/src/demos/mod.rs +++ b/egui/src/demos/mod.rs @@ -7,6 +7,9 @@ mod dancing_strings; pub mod demo_window; mod demo_windows; mod drag_and_drop; +mod font_book; +pub mod font_contents_emoji; +pub mod font_contents_ubuntu; mod fractal_clock; mod sliders; mod tests; @@ -15,8 +18,8 @@ mod widgets; pub use { app::*, color_test::ColorTest, dancing_strings::DancingStrings, demo_window::DemoWindow, - demo_windows::*, drag_and_drop::*, fractal_clock::FractalClock, sliders::Sliders, tests::Tests, - widgets::Widgets, + demo_windows::*, drag_and_drop::*, font_book::FontBook, fractal_clock::FractalClock, + sliders::Sliders, tests::Tests, widgets::Widgets, }; pub const LOREM_IPSUM: &str = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";