diff options
27 files changed, 3461 insertions, 85 deletions
diff --git a/README.markdown b/README.markdown index 3805d1eb4..d4d3fdbaf 100644 --- a/README.markdown +++ b/README.markdown @@ -3,9 +3,9 @@ Oh My Zsh is an open source, community-driven framework for managing your [zsh](http://www.zsh.org/) configuration. That sounds boring. Let's try this again. -__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interface with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafรฉs and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often. +__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interact with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafรฉs and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often. -To learn more, visit http://ohmyz.sh and/or follow [ohmyzsh](https://twitter.com/ohmyzsh) on twitter. +To learn more, visit http://ohmyz.sh and/or follow [ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. ## Getting Started @@ -43,7 +43,9 @@ If you spot a plugin (or several) that you would like to use with Oh My Zsh, you For example, this line might begin to look like... -`plugins=(git bundler osx rake ruby)` +```shell +plugins=(git bundler osx rake ruby) +``` #### Using Plugins @@ -51,7 +53,7 @@ Most plugins (should! we're working on this) include a __README__, which documen ### Themes -We'll admit it. Early in the Oh My Zsh world... we may have gotten far too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://wiki.github.com/robbyrussell/oh-my-zsh/themes) on the wiki. Check them out! +We'll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://wiki.github.com/robbyrussell/oh-my-zsh/themes) on the wiki. Check them out! #### Selecting a Theme @@ -59,23 +61,29 @@ _Robby's theme is the default one. It's not the fanciest one. It's not the simpl Once you find a theme that you want to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like: -`ZSH_THEME="robbyrussell"` +```shell +ZSH_THEME="robbyrussell" +``` To use a different theme, simple change the value to match the name of your desired theme. For example: -`ZSH_THEME="agnoster"` (this is one of the fancy ones) +```shell +ZSH_THEME="agnoster" # (this is one of the fancy ones) +``` Open up a new terminal window and your prompt should look something like... -In case you did not find a suitable theme for your needs, please have a look at the wiki for [more themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes). +![Agnoster theme](https://cloud.githubusercontent.com/assets/2618447/6316862/70f58fb6-ba03-11e4-82c9-c083bf9a6574.png) + +In case you did not find a suitable theme for your needs, please have a look at the wiki for [more of them](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes). ## Advanced Topics -If you're the type that likes to get their hands dirty... these sections might resonate. +If you're the type that likes to get their hands dirty, these sections might resonate. ### Advanced Installation -For those who want to install this manually and/or set custom paths. +Some users may want to change the default path, or manually install Oh My Zsh. #### Custom Directory @@ -83,27 +91,37 @@ The default location is `~/.oh-my-zsh` (hidden in your home directory) If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this: -`curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | ZSH=~/.dotfiles/zsh sh` +```shell +curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | ZSH=~/.dotfiles/zsh sh +``` #### Manual Installation ##### 1. Clone the repository: -`git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh` +```shell +git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh +``` -##### 2. *Optionally*, backup your existing @~/.zshrc@ file: +##### 2. *Optionally*, backup your existing `~/.zshrc` file: -`cp ~/.zshrc ~/.zshrc.orig` +```shell +cp ~/.zshrc ~/.zshrc.orig +``` ##### 3. Create a new zsh configuration file You can create a new zsh config file by copying the template that we included for you. -`cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc` +```shell +cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc +``` ##### 4. Change your default shell -`chsh -s /bin/zsh` +```shell +chsh -s /bin/zsh +``` ##### 5. Initialize your new zsh configuration @@ -120,7 +138,7 @@ If you have any hiccups installing, here are a few common fixes. If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory. -If you have many functions that go well together, you can put them as a `abcyzeae.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin. +If you have many functions that go well together, you can put them as a `XYZ.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin. If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`. @@ -128,17 +146,23 @@ If you would like to override the functionality of a plugin distributed with Oh By default, you will be prompted to check for upgrades every few weeks. If you would like `oh-my-zsh` to automatically upgrade itself without prompting you, set the following in your `~/.zshrc`: -`DISABLE_UPDATE_PROMPT=true` +```shell +DISABLE_UPDATE_PROMPT=true +``` To disable automatic upgrades, set the following in your `~/.zshrc`: -`DISABLE_AUTO_UPDATE=true` +```shell +DISABLE_AUTO_UPDATE=true +``` ### Manual Updates -If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?)... you just need to run: +If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?) you just need to run: -`upgrade_oh_my_zsh` +```shell +upgrade_oh_my_zsh +``` Magic! @@ -154,7 +178,7 @@ I'm far from being a [Zsh](http://www.zsh.org/) expert and suspect there are man We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/robbyrussell/oh-my-zsh/issues) and help where you can. -### Do NOT Send Us Themes +### Do NOT send us themes We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes) wiki page. @@ -166,12 +190,12 @@ Thank you so much! ## Follow Us -We have an [ohmyzsh](https://twitter.com/ohmyzsh) account. You should follow it. +We have an [@ohmyzsh](https://twitter.com/ohmyzsh) Twitter account. You should follow it. ## Merchandise We have [stickers](http://shop.planetargon.com/products/ohmyzsh-stickers-set-of-3-stickers) and [shirts](http://shop.planetargon.com/products/ohmyzsh-t-shirts) for you to show off your love of Oh My Zsh. Again, this will help you become the talk of the town! -## LICENSE +## License Oh My Zsh is released under the [MIT license](https://github.com/robbyrussell/oh-my-zsh/blob/master/MIT-LICENSE.txt). diff --git a/lib/functions.zsh b/lib/functions.zsh index 17f5f9cbf..0d632a268 100644 --- a/lib/functions.zsh +++ b/lib/functions.zsh @@ -15,6 +15,22 @@ function take() { cd $1 } +function open_command() { + local open_cmd + + # define the open command + case "$OSTYPE" in + darwin*) open_cmd="open" ;; + cygwin*) open_cmd="cygstart" ;; + linux*) open_cmd="xdg-open" ;; + *) echo "Platform $OSTYPE not supported" + return 1 + ;; + esac + + nohup $open_cmd "$@" &>/dev/null +} + # # Get the value of an alias. # diff --git a/lib/termsupport.zsh b/lib/termsupport.zsh index ecca516f2..babbaa957 100644 --- a/lib/termsupport.zsh +++ b/lib/termsupport.zsh @@ -7,6 +7,9 @@ # (In screen, only short_tab_title is used) # Limited support for Apple Terminal (Terminal can't set window and tab separately) function title { + emulate -L zsh + setopt prompt_subst + [[ "$EMACS" == *term* ]] && return # if $2 is unset use $1 as default @@ -47,7 +50,7 @@ function omz_termsupport_preexec { setopt extended_glob # cmd name only, or if this is sudo or ssh, the next cmd - local CMD=${1[(wr)^(*=*|sudo|ssh|rake|-*)]:gs/%/%%} + local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%} local LINE="${2:gs/%/%%}" title '$CMD' '%100>...>$LINE%<<' diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh index ec64c240f..4e5f77990 100644 --- a/oh-my-zsh.sh +++ b/oh-my-zsh.sh @@ -29,11 +29,6 @@ for config_file ($ZSH/lib/*.zsh); do source $config_file done -# Load all of your custom configurations from custom/ -for config_file ($ZSH_CUSTOM/*.zsh(N)); do - source $config_file -done -unset config_file is_plugin() { local base_dir=$1 @@ -77,6 +72,12 @@ for plugin ($plugins); do fi done +# Load all of your custom configurations from custom/ +for config_file ($ZSH_CUSTOM/*.zsh(N)); do + source $config_file +done +unset config_file + # Load the theme if [ "$ZSH_THEME" = "random" ]; then themes=($ZSH/themes/*zsh-theme) diff --git a/plugins/dirhistory/dirhistory.plugin.zsh b/plugins/dirhistory/dirhistory.plugin.zsh index d101cfcae..0209981e3 100644 --- a/plugins/dirhistory/dirhistory.plugin.zsh +++ b/plugins/dirhistory/dirhistory.plugin.zsh @@ -49,7 +49,8 @@ function push_future() { } # Called by zsh when directory changes -function chpwd() { +chpwd_functions+=(chpwd_dirhistory) +function chpwd_dirhistory() { push_past $PWD # If DIRHISTORY_CD is not set... if [[ -z "${DIRHISTORY_CD+x}" ]]; then diff --git a/plugins/dirpersist/dirpersist.plugin.zsh b/plugins/dirpersist/dirpersist.plugin.zsh index 88d1129d4..616e2c3c6 100644 --- a/plugins/dirpersist/dirpersist.plugin.zsh +++ b/plugins/dirpersist/dirpersist.plugin.zsh @@ -11,7 +11,8 @@ if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD fi -chpwd() { +chpwd_functions+=(chpwd_dirpersist) +chpwd_dirpersist() { if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi local -ax my_stack my_stack=( ${PWD} ${dirstack} ) diff --git a/plugins/emoji/README.md b/plugins/emoji/README.md new file mode 100644 index 000000000..889e567e6 --- /dev/null +++ b/plugins/emoji/README.md @@ -0,0 +1,135 @@ +# emoji plugin + +Support for conveniently working with Unicode emoji in Zsh. + +## Features + +This plugin provides support for working with Unicode emoji characters in `zsh` using human-readable identifiers. It provides global variables which map emoji names to the actual characters, country names to their flags, and some named groupings of emoji. It also provides associated functions for displaying them. + +#### Variables + +Variable | Description +----------------- | -------------------------------- + $emoji | Maps emoji names to characters + $emoji_flags | Maps country names to flag characters (using region indicators) + $emoji_groups | Named groups of emoji. Keys are group names; values are whitespace-separated lists of character names + +You may define new emoji groups at run time by modifying `$emoji_groups`. The special group name `all` is reserved for use by the plugin. You should not modify `$emoji` or `$emoji_flags`. + +#### Functions + +Function | Description +---------------- | ------------------------------- + random_emoji | Prints a random emoji character + display_emoji | Displays emoji, along with their names + +## Usage and Examples + +To output a specific emoji, use: +``` +$> echo $emoji[<name>] +``` +E.g.: +``` +$> echo $emoji[mouse_face] +``` + +To output a random emoji, use: +``` +$> random_emoji +``` +To output a random emoji from a particular group, use: +``` +$> random_emoji <group> +``` +E.g.: +``` +$> random_emoji fruits +$> random_emoji animals +$> random_emoji vehicles +$> random_emoji faces +``` + +The defined group names can be found with `echo ${(k)emoji_groups}`. + +To list all available emoji with their names, use: +``` +$> display_emoji +$> display_emoji fruits +$> display_emoji animals +$> display_emoji vehicles +$> display_emoji faces +``` + +To use emoji in a prompt: +``` +PROMPT="$emoji[penguin] > "" +PROMPT='$(random_emoji fruits) > ' +surfer=$emoji[surfer] +PROMPT="$surfer > " +``` + +## Technical Details + +The emoji names and codes are sourced from Unicode Technical Report \#51, which provides information on emoji support in Unicode. It can be found at http://www.unicode.org/reports/tr51/index.html. + +The group definitions are added by this OMZ plugin. They are not based on external definitions. (As far as I can tell. -apjanke) + +The values in the `$emoji*` maps are the emoji characters themselves, not escape sequences or other forms that require interpretation. They can be used in any context and do not require escape sequence support from commands like `echo` or `print`. + +The emoji in the main `$emoji` map are standalone character sequences which can all be output on their own, without worrying about combining characters. The values may actually be multi-code-point sequences, instead of a single code point, and may include combining characters in those sequences. But they're arranged so their effects do not extend beyond that sequence. + +The exception to this is the skin tone variation selectors. These are included in the main `$emoji` map because they can be displayed on their own, as well as used as combining characters. (If they follow a character that is not one of the emoji characters they combine with, they are displayed as color swatches.) + + +## Experimental Features + +This defines some additional variables and functions, but these are experimental and subject to change at any time. You shouldn't rely on them being available. They're mostly for the use of emoji plugin developers to help decide what to include in future revisions. + +Variables: + +Variable | Description +----------------- | -------------------------------- + $emoji2 | Auxiliary and combining characters + $emoji_skintone | Skin tone modifiers (from Unicode 8.0) + + +#### Skin Tone Variation Selection + +This includes experimental support for the skin tone Variation Selectors introduced with Unicode 8.0, which let you select different skin tones for emoji involving humans. + +NOTE: This really is experimental. The skin tone selectors are a relatively new feature and may not be supported by all systems. And the support in this plugin is a work in progress. It may not work in all places. In fact, I haven't gotten it to work anywhere yet. -apjanke + +The "variation selectors" are combining characters which change the appearance of the preceding character. A variation selector character can be output immediately following a human emoji to change its skin tone color. You can also output a variation selector on its own to display a color swatch of that skin tone. + +The `$emoji_skintone` associative array maps skin tone IDs to the variation selector characters. To use one, output it immediately following a smiley or other human emoji. + +``` +echo "$emoji[smiling_face_with_open_mouth]$emoji_skintone[4]" +``` + +Note that `$emoji_skintone` is an associative array, and its keys are the *names* of "Fitzpatrick Skin Type" groups, not linear indexes into a normal array. The names are `1_2`, `3`, `4`, `5`, and `6`. (Types 1 and 2 are combined into a single color.) See the [Diversity section in Unicode TR 51](http://www.unicode.org/reports/tr51/index.html#Diversity) for details. + +## TODO + +These are things that could be enhanced in future revisions of the plugin. + +* Incorporate CLDR data for ordering and groupings +* Short :bracket: style names (from gemoji) +* Incorporate `gemoji` data +* Country codes for flags +* ZWJ combining function? + +#### Gemoji support + +The [gemoji project](https://github.com/github/gemoji) seems to be the de facto main source for short names and other emoji-related metadata that isn't included in the official Unicode reports. (I'm saying this just from looking at the google results for "emoji short names" and related searches. -apjanke) + +If this plugin is updated to provide short names, CLDR sorting data, and similar stuff, it should probably be changed to use the Gemoji project, and the `update_emoji.pl` script be rewritten in Ruby so it can use the Gemoji library directly instead of parsing its data files. + +This does *not* mean that it should use Gemoji at run time. None of the `zsh` plugin stuff should call Gemoji or Ruby code. Rather, the "build time" `update_emoji.pl` script should be rewritten to use Gemoji to generate a pure-native-`zsh` character definition file which would be checked in to the repo and can be called by OMZ users without having Gemoji installed. + +#### ZWJ combining function + +One of the newer features of Unicode emoji is the ability to use the "Zero-Width Joiner" character to compose multiple emoji characters in to a single "emoji ligature" glyph. For example, this is [how Apple supports "family" emoji with various genders and skin tones](http://www.unicode.org/reports/tr51/index.html#ZWJ_Sequences). + +These are a pain to write out (and probably worse to read), and it might be convenient to have a couple functions for concisely composing them, if wider support for them appears. diff --git a/plugins/emoji/emoji-char-definitions.zsh b/plugins/emoji/emoji-char-definitions.zsh new file mode 100644 index 000000000..7d110603c --- /dev/null +++ b/plugins/emoji/emoji-char-definitions.zsh @@ -0,0 +1,1294 @@ + +# emoji-char-definitions.zsh - Emoji character definitions for oh-my-zsh emoji plugin +# +# This file is auto-generated by update_emoji.pl. Do not edit it manually. +# +# This contains the definition for: +# $emoji - which maps character names to Unicode characters +# $emoji_flags - maps country names to Unicode flag characters using region indicators + +typeset -gAH emoji +typeset -gAH emoji_flags + +emoji[copyright_sign]=$'\U00A9' +emoji[registered_sign]=$'\U00AE' +emoji[double_exclamation_mark]=$'\U203C' +emoji[exclamation_question_mark]=$'\U2049' +emoji[trade_mark_sign]=$'\U2122' +emoji[information_source]=$'\U2139' +emoji[left_right_arrow]=$'\U2194' +emoji[up_down_arrow]=$'\U2195' +emoji[north_west_arrow]=$'\U2196' +emoji[north_east_arrow]=$'\U2197' +emoji[south_east_arrow]=$'\U2198' +emoji[south_west_arrow]=$'\U2199' +emoji[leftwards_arrow_with_hook]=$'\U21A9' +emoji[rightwards_arrow_with_hook]=$'\U21AA' +emoji[watch]=$'\U231A' +emoji[hourglass]=$'\U231B' +emoji[keyboard]=$'\U2328' +emoji[eject_symbol]=$'\U23CF' +emoji[black_right_pointing_double_triangle]=$'\U23E9' +emoji[black_left_pointing_double_triangle]=$'\U23EA' +emoji[black_up_pointing_double_triangle]=$'\U23EB' +emoji[black_down_pointing_double_triangle]=$'\U23EC' +emoji[black_right_pointing_double_triangle_with_vertical_bar]=$'\U23ED' +emoji[black_left_pointing_double_triangle_with_vertical_bar]=$'\U23EE' +emoji[black_right_pointing_triangle_with_double_vertical_bar]=$'\U23EF' +emoji[alarm_clock]=$'\U23F0' +emoji[stopwatch]=$'\U23F1' +emoji[timer_clock]=$'\U23F2' +emoji[hourglass_with_flowing_sand]=$'\U23F3' +emoji[double_vertical_bar]=$'\U23F8' +emoji[black_square_for_stop]=$'\U23F9' +emoji[black_circle_for_record]=$'\U23FA' +emoji[circled_latin_capital_letter_m]=$'\U24C2' +emoji[black_small_square]=$'\U25AA' +emoji[white_small_square]=$'\U25AB' +emoji[black_right_pointing_triangle]=$'\U25B6' +emoji[black_left_pointing_triangle]=$'\U25C0' +emoji[white_medium_square]=$'\U25FB' +emoji[black_medium_square]=$'\U25FC' +emoji[white_medium_small_square]=$'\U25FD' +emoji[black_medium_small_square]=$'\U25FE' +emoji[black_sun_with_rays]=$'\U2600' +emoji[cloud]=$'\U2601' +emoji[umbrella]=$'\U2602' +emoji[snowman]=$'\U2603' +emoji[comet]=$'\U2604' +emoji[black_telephone]=$'\U260E' +emoji[ballot_box_with_check]=$'\U2611' +emoji[umbrella_with_rain_drops]=$'\U2614' +emoji[hot_beverage]=$'\U2615' +emoji[shamrock]=$'\U2618' +emoji[white_up_pointing_index]=$'\U261D' +emoji[skull_and_crossbones]=$'\U2620' +emoji[radioactive_sign]=$'\U2622' +emoji[biohazard_sign]=$'\U2623' +emoji[orthodox_cross]=$'\U2626' +emoji[star_and_crescent]=$'\U262A' +emoji[peace_symbol]=$'\U262E' +emoji[yin_yang]=$'\U262F' +emoji[wheel_of_dharma]=$'\U2638' +emoji[white_frowning_face]=$'\U2639' +emoji[white_smiling_face]=$'\U263A' +emoji[aries]=$'\U2648' +emoji[taurus]=$'\U2649' +emoji[gemini]=$'\U264A' +emoji[cancer]=$'\U264B' +emoji[leo]=$'\U264C' +emoji[virgo]=$'\U264D' +emoji[libra]=$'\U264E' +emoji[scorpius]=$'\U264F' +emoji[sagittarius]=$'\U2650' +emoji[capricorn]=$'\U2651' +emoji[aquarius]=$'\U2652' +emoji[pisces]=$'\U2653' +emoji[black_spade_suit]=$'\U2660' +emoji[black_club_suit]=$'\U2663' +emoji[black_heart_suit]=$'\U2665' +emoji[black_diamond_suit]=$'\U2666' +emoji[hot_springs]=$'\U2668' +emoji[black_universal_recycling_symbol]=$'\U267B' +emoji[wheelchair_symbol]=$'\U267F' +emoji[hammer_and_pick]=$'\U2692' +emoji[anchor]=$'\U2693' +emoji[crossed_swords]=$'\U2694' +emoji[scales]=$'\U2696' +emoji[alembic]=$'\U2697' +emoji[gear]=$'\U2699' +emoji[atom_symbol]=$'\U269B' +emoji[fleur_de_lis]=$'\U269C' +emoji[warning_sign]=$'\U26A0' +emoji[high_voltage_sign]=$'\U26A1' +emoji[medium_white_circle]=$'\U26AA' +emoji[medium_black_circle]=$'\U26AB' +emoji[coffin]=$'\U26B0' +emoji[funeral_urn]=$'\U26B1' +emoji[soccer_ball]=$'\U26BD' +emoji[baseball]=$'\U26BE' +emoji[snowman_without_snow]=$'\U26C4' +emoji[sun_behind_cloud]=$'\U26C5' +emoji[thunder_cloud_and_rain]=$'\U26C8' +emoji[ophiuchus]=$'\U26CE' +emoji[pick]=$'\U26CF' +emoji[helmet_with_white_cross]=$'\U26D1' +emoji[chains]=$'\U26D3' +emoji[no_entry]=$'\U26D4' +emoji[shinto_shrine]=$'\U26E9' +emoji[church]=$'\U26EA' +emoji[mountain]=$'\U26F0' +emoji[umbrella_on_ground]=$'\U26F1' +emoji[fountain]=$'\U26F2' +emoji[flag_in_hole]=$'\U26F3' +emoji[ferry]=$'\U26F4' +emoji[sailboat]=$'\U26F5' +emoji[skier]=$'\U26F7' +emoji[ice_skate]=$'\U26F8' +emoji[person_with_ball]=$'\U26F9' +emoji[tent]=$'\U26FA' +emoji[fuel_pump]=$'\U26FD' +emoji[black_scissors]=$'\U2702' +emoji[white_heavy_check_mark]=$'\U2705' +emoji[airplane]=$'\U2708' +emoji[envelope]=$'\U2709' +emoji[raised_fist]=$'\U270A' +emoji[raised_hand]=$'\U270B' +emoji[victory_hand]=$'\U270C' +emoji[writing_hand]=$'\U270D' +emoji[pencil]=$'\U270F' +emoji[black_nib]=$'\U2712' +emoji[heavy_check_mark]=$'\U2714' +emoji[heavy_multiplication_x]=$'\U2716' +emoji[latin_cross]=$'\U271D' +emoji[star_of_david]=$'\U2721' +emoji[sparkles]=$'\U2728' +emoji[eight_spoked_asterisk]=$'\U2733' +emoji[eight_pointed_black_star]=$'\U2734' +emoji[snowflake]=$'\U2744' +emoji[sparkle]=$'\U2747' +emoji[cross_mark]=$'\U274C' +emoji[negative_squared_cross_mark]=$'\U274E' +emoji[black_question_mark_ornament]=$'\U2753' +emoji[white_question_mark_ornament]=$'\U2754' +emoji[white_exclamation_mark_ornament]=$'\U2755' +emoji[heavy_exclamation_mark_symbol]=$'\U2757' +emoji[heavy_heart_exclamation_mark_ornament]=$'\U2763' +emoji[heavy_black_heart]=$'\U2764' +emoji[heavy_plus_sign]=$'\U2795' +emoji[heavy_minus_sign]=$'\U2796' +emoji[heavy_division_sign]=$'\U2797' +emoji[black_rightwards_arrow]=$'\U27A1' +emoji[curly_loop]=$'\U27B0' +emoji[double_curly_loop]=$'\U27BF' +emoji[arrow_pointing_rightwards_then_curving_upwards]=$'\U2934' +emoji[arrow_pointing_rightwards_then_curving_downwards]=$'\U2935' +emoji[leftwards_black_arrow]=$'\U2B05' +emoji[upwards_black_arrow]=$'\U2B06' +emoji[downwards_black_arrow]=$'\U2B07' +emoji[black_large_square]=$'\U2B1B' +emoji[white_large_square]=$'\U2B1C' +emoji[white_medium_star]=$'\U2B50' +emoji[heavy_large_circle]=$'\U2B55' +emoji[wavy_dash]=$'\U3030' +emoji[part_alternation_mark]=$'\U303D' +emoji[circled_ideograph_congratulation]=$'\U3297' +emoji[circled_ideograph_secret]=$'\U3299' +emoji[mahjong_tile_red_dragon]=$'\U1F004' +emoji[playing_card_black_joker]=$'\U1F0CF' +emoji[negative_squared_latin_capital_letter_a]=$'\U1F170' +emoji[negative_squared_latin_capital_letter_b]=$'\U1F171' +emoji[negative_squared_latin_capital_letter_o]=$'\U1F17E' +emoji[negative_squared_latin_capital_letter_p]=$'\U1F17F' +emoji[negative_squared_ab]=$'\U1F18E' +emoji[squared_cl]=$'\U1F191' +emoji[squared_cool]=$'\U1F192' +emoji[squared_free]=$'\U1F193' +emoji[squared_id]=$'\U1F194' +emoji[squared_new]=$'\U1F195' +emoji[squared_ng]=$'\U1F196' +emoji[squared_ok]=$'\U1F197' +emoji[squared_sos]=$'\U1F198' +emoji[squared_up_with_exclamation_mark]=$'\U1F199' +emoji[squared_vs]=$'\U1F19A' +emoji[squared_katakana_koko]=$'\U1F201' +emoji[squared_katakana_sa]=$'\U1F202' +emoji[squared_cjk_unified_ideograph_7121]=$'\U1F21A' +emoji[squared_cjk_unified_ideograph_6307]=$'\U1F22F' +emoji[squared_cjk_unified_ideograph_7981]=$'\U1F232' +emoji[squared_cjk_unified_ideograph_7a7a]=$'\U1F233' +emoji[squared_cjk_unified_ideograph_5408]=$'\U1F234' +emoji[squared_cjk_unified_ideograph_6e80]=$'\U1F235' +emoji[squared_cjk_unified_ideograph_6709]=$'\U1F236' +emoji[squared_cjk_unified_ideograph_6708]=$'\U1F237' +emoji[squared_cjk_unified_ideograph_7533]=$'\U1F238' +emoji[squared_cjk_unified_ideograph_5272]=$'\U1F239' +emoji[squared_cjk_unified_ideograph_55b6]=$'\U1F23A' +emoji[circled_ideograph_advantage]=$'\U1F250' +emoji[circled_ideograph_accept]=$'\U1F251' +emoji[cyclone]=$'\U1F300' +emoji[foggy]=$'\U1F301' +emoji[closed_umbrella]=$'\U1F302' +emoji[night_with_stars]=$'\U1F303' +emoji[sunrise_over_mountains]=$'\U1F304' +emoji[sunrise]=$'\U1F305' +emoji[cityscape_at_dusk]=$'\U1F306' +emoji[sunset_over_buildings]=$'\U1F307' +emoji[rainbow]=$'\U1F308' +emoji[bridge_at_night]=$'\U1F309' +emoji[water_wave]=$'\U1F30A' +emoji[volcano]=$'\U1F30B' +emoji[milky_way]=$'\U1F30C' +emoji[earth_globe_europe_africa]=$'\U1F30D' +emoji[earth_globe_americas]=$'\U1F30E' +emoji[earth_globe_asia_australia]=$'\U1F30F' +emoji[globe_with_meridians]=$'\U1F310' +emoji[new_moon_symbol]=$'\U1F311' +emoji[waxing_crescent_moon_symbol]=$'\U1F312' +emoji[first_quarter_moon_symbol]=$'\U1F313' +emoji[waxing_gibbous_moon_symbol]=$'\U1F314' +emoji[full_moon_symbol]=$'\U1F315' +emoji[waning_gibbous_moon_symbol]=$'\U1F316' +emoji[last_quarter_moon_symbol]=$'\U1F317' +emoji[waning_crescent_moon_symbol]=$'\U1F318' +emoji[crescent_moon]=$'\U1F319' +emoji[new_moon_with_face]=$'\U1F31A' +emoji[first_quarter_moon_with_face]=$'\U1F31B' +emoji[last_quarter_moon_with_face]=$'\U1F31C' +emoji[full_moon_with_face]=$'\U1F31D' +emoji[sun_with_face]=$'\U1F31E' +emoji[glowing_star]=$'\U1F31F' +emoji[shooting_star]=$'\U1F320' +emoji[thermometer]=$'\U1F321' +emoji[white_sun_with_small_cloud]=$'\U1F324' +emoji[white_sun_behind_cloud]=$'\U1F325' +emoji[white_sun_behind_cloud_with_rain]=$'\U1F326' +emoji[cloud_with_rain]=$'\U1F327' +emoji[cloud_with_snow]=$'\U1F328' +emoji[cloud_with_lightning]=$'\U1F329' +emoji[cloud_with_tornado]=$'\U1F32A' +emoji[fog]=$'\U1F32B' +emoji[wind_blowing_face]=$'\U1F32C' +emoji[hot_dog]=$'\U1F32D' +emoji[taco]=$'\U1F32E' +emoji[burrito]=$'\U1F32F' +emoji[chestnut]=$'\U1F330' +emoji[seedling]=$'\U1F331' +emoji[evergreen_tree]=$'\U1F332' +emoji[deciduous_tree]=$'\U1F333' +emoji[palm_tree]=$'\U1F334' +emoji[cactus]=$'\U1F335' +emoji[hot_pepper]=$'\U1F336' +emoji[tulip]=$'\U1F337' +emoji[cherry_blossom]=$'\U1F338' +emoji[rose]=$'\U1F339' +emoji[hibiscus]=$'\U1F33A' +emoji[sunflower]=$'\U1F33B' +emoji[blossom]=$'\U1F33C' +emoji[ear_of_maize]=$'\U1F33D' +emoji[ear_of_rice]=$'\U1F33E' +emoji[herb]=$'\U1F33F' +emoji[four_leaf_clover]=$'\U1F340' +emoji[maple_leaf]=$'\U1F341' +emoji[fallen_leaf]=$'\U1F342' +emoji[leaf_fluttering_in_wind]=$'\U1F343' +emoji[mushroom]=$'\U1F344' +emoji[tomato]=$'\U1F345' +emoji[aubergine]=$'\U1F346' +emoji[grapes]=$'\U1F347' +emoji[melon]=$'\U1F348' +emoji[watermelon]=$'\U1F349' +emoji[tangerine]=$'\U1F34A' +emoji[lemon]=$'\U1F34B' +emoji[banana]=$'\U1F34C' +emoji[pineapple]=$'\U1F34D' +emoji[red_apple]=$'\U1F34E' +emoji[green_apple]=$'\U1F34F' +emoji[pear]=$'\U1F350' +emoji[peach]=$'\U1F351' +emoji[cherries]=$'\U1F352' +emoji[strawberry]=$'\U1F353' +emoji[hamburger]=$'\U1F354' +emoji[slice_of_pizza]=$'\U1F355' +emoji[meat_on_bone]=$'\U1F356' +emoji[poultry_leg]=$'\U1F357' +emoji[rice_cracker]=$'\U1F358' +emoji[rice_ball]=$'\U1F359' +emoji[cooked_rice]=$'\U1F35A' +emoji[curry_and_rice]=$'\U1F35B' +emoji[steaming_bowl]=$'\U1F35C' +emoji[spaghetti]=$'\U1F35D' +emoji[bread]=$'\U1F35E' +emoji[french_fries]=$'\U1F35F' +emoji[roasted_sweet_potato]=$'\U1F360' +emoji[dango]=$'\U1F361' +emoji[oden]=$'\U1F362' +emoji[sushi]=$'\U1F363' +emoji[fried_shrimp]=$'\U1F364' +emoji[fish_cake_with_swirl_design]=$'\U1F365' +emoji[soft_ice_cream]=$'\U1F366' +emoji[shaved_ice]=$'\U1F367' +emoji[ice_cream]=$'\U1F368' +emoji[doughnut]=$'\U1F369' +emoji[cookie]=$'\U1F36A' +emoji[chocolate_bar]=$'\U1F36B' +emoji[candy]=$'\U1F36C' +emoji[lollipop]=$'\U1F36D' +emoji[custard]=$'\U1F36E' +emoji[honey_pot]=$'\U1F36F' +emoji[shortcake]=$'\U1F370' +emoji[bento_box]=$'\U1F371' +emoji[pot_of_food]=$'\U1F372' +emoji[cooking]=$'\U1F373' +emoji[fork_and_knife]=$'\U1F374' +emoji[teacup_without_handle]=$'\U1F375' +emoji[sake_bottle_and_cup]=$'\U1F376' +emoji[wine_glass]=$'\U1F377' +emoji[cocktail_glass]=$'\U1F378' +emoji[tropical_drink]=$'\U1F379' +emoji[beer_mug]=$'\U1F37A' +emoji[clinking_beer_mugs]=$'\U1F37B' +emoji[baby_bottle]=$'\U1F37C' +emoji[fork_and_knife_with_plate]=$'\U1F37D' +emoji[bottle_with_popping_cork]=$'\U1F37E' +emoji[popcorn]=$'\U1F37F' +emoji[ribbon]=$'\U1F380' +emoji[wrapped_present]=$'\U1F381' +emoji[birthday_cake]=$'\U1F382' +emoji[jack_o_lantern]=$'\U1F383' +emoji[christmas_tree]=$'\U1F384' +emoji[father_christmas]=$'\U1F385' +emoji[fireworks]=$'\U1F386' +emoji[firework_sparkler]=$'\U1F387' +emoji[balloon]=$'\U1F388' +emoji[party_popper]=$'\U1F389' +emoji[confetti_ball]=$'\U1F38A' +emoji[tanabata_tree]=$'\U1F38B' +emoji[crossed_flags]=$'\U1F38C' +emoji[pine_decoration]=$'\U1F38D' +emoji[japanese_dolls]=$'\U1F38E' +emoji[carp_streamer]=$'\U1F38F' +emoji[wind_chime]=$'\U1F390' +emoji[moon_viewing_ceremony]=$'\U1F391' +emoji[school_satchel]=$'\U1F392' +emoji[graduation_cap]=$'\U1F393' +emoji[military_medal]=$'\U1F396' +emoji[reminder_ribbon]=$'\U1F397' +emoji[studio_microphone]=$'\U1F399' +emoji[level_slider]=$'\U1F39A' +emoji[control_knobs]=$'\U1F39B' +emoji[film_frames]=$'\U1F39E' +emoji[admission_tickets]=$'\U1F39F' +emoji[carousel_horse]=$'\U1F3A0' +emoji[ferris_wheel]=$'\U1F3A1' +emoji[roller_coaster]=$'\U1F3A2' +emoji[fishing_pole_and_fish]=$'\U1F3A3' +emoji[microphone]=$'\U1F3A4' +emoji[movie_camera]=$'\U1F3A5' +emoji[cinema]=$'\U1F3A6' +emoji[headphone]=$'\U1F3A7' +emoji[artist_palette]=$'\U1F3A8' +emoji[top_hat]=$'\U1F3A9' +emoji[circus_tent]=$'\U1F3AA' +emoji[ticket]=$'\U1F3AB' +emoji[clapper_board]=$'\U1F3AC' +emoji[performing_arts]=$'\U1F3AD' +emoji[video_game]=$'\U1F3AE' +emoji[direct_hit]=$'\U1F3AF' +emoji[slot_machine]=$'\U1F3B0' +emoji[billiards]=$'\U1F3B1' +emoji[game_die]=$'\U1F3B2' +emoji[bowling]=$'\U1F3B3' +emoji[flower_playing_cards]=$'\U1F3B4' +emoji[musical_note]=$'\U1F3B5' +emoji[multiple_musical_notes]=$'\U1F3B6' +emoji[saxophone]=$'\U1F3B7' +emoji[guitar]=$'\U1F3B8' +emoji[musical_keyboard]=$'\U1F3B9' +emoji[trumpet]=$'\U1F3BA' +emoji[violin]=$'\U1F3BB' +emoji[musical_score]=$'\U1F3BC' +emoji[running_shirt_with_sash]=$'\U1F3BD' +emoji[tennis_racquet_and_ball]=$'\U1F3BE' +emoji[ski_and_ski_boot]=$'\U1F3BF' +emoji[basketball_and_hoop]=$'\U1F3C0' +emoji[chequered_flag]=$'\U1F3C1' +emoji[snowboarder]=$'\U1F3C2' +emoji[runner]=$'\U1F3C3' +emoji[surfer]=$'\U1F3C4' +emoji[sports_medal]=$'\U1F3C5' +emoji[trophy]=$'\U1F3C6' +emoji[horse_racing]=$'\U1F3C7' +emoji[american_football]=$'\U1F3C8' +emoji[rugby_football]=$'\U1F3C9' +emoji[swimmer]=$'\U1F3CA' +emoji[weight_lifter]=$'\U1F3CB' +emoji[golfer]=$'\U1F3CC' +emoji[racing_motorcycle]=$'\U1F3CD' +emoji[racing_car]=$'\U1F3CE' +emoji[cricket_bat_and_ball]=$'\U1F3CF' +emoji[volleyball]=$'\U1F3D0' +emoji[field_hockey_stick_and_ball]=$'\U1F3D1' +emoji[ice_hockey_stick_and_puck]=$'\U1F3D2' +emoji[table_tennis_paddle_and_ball]=$'\U1F3D3' +emoji[snow_capped_mountain]=$'\U1F3D4' +emoji[camping]=$'\U1F3D5' +emoji[beach_with_umbrella]=$'\U1F3D6' +emoji[building_construction]=$'\U1F3D7' +emoji[house_buildings]=$'\U1F3D8' +emoji[cityscape]=$'\U1F3D9' +emoji[derelict_house_building]=$'\U1F3DA' +emoji[classical_building]=$'\U1F3DB' +emoji[desert]=$'\U1F3DC' +emoji[desert_island]=$'\U1F3DD' +emoji[national_park]=$'\U1F3DE' +emoji[stadium]=$'\U1F3DF' +emoji[house_building]=$'\U1F3E0' +emoji[house_with_garden]=$'\U1F3E1' +emoji[office_building]=$'\U1F3E2' +emoji[japanese_post_office]=$'\U1F3E3' +emoji[european_post_office]=$'\U1F3E4' +emoji[hospital]=$'\U1F3E5' +emoji[bank]=$'\U1F3E6' +emoji[automated_teller_machine]=$'\U1F3E7' +emoji[hotel]=$'\U1F3E8' +emoji[love_hotel]=$'\U1F3E9' +emoji[convenience_store]=$'\U1F3EA' +emoji[school]=$'\U1F3EB' +emoji[department_store]=$'\U1F3EC' +emoji[factory]=$'\U1F3ED' +emoji[izakaya_lantern]=$'\U1F3EE' +emoji[japanese_castle]=$'\U1F3EF' +emoji[european_castle]=$'\U1F3F0' +emoji[waving_white_flag]=$'\U1F3F3' +emoji[waving_black_flag]=$'\U1F3F4' +emoji[rosette]=$'\U1F3F5' +emoji[label]=$'\U1F3F7' +emoji[badminton_racquet_and_shuttlecock]=$'\U1F3F8' +emoji[bow_and_arrow]=$'\U1F3F9' +emoji[amphora]=$'\U1F3FA' +emoji[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB' +emoji[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC' +emoji[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD' +emoji[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE' +emoji[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF' +emoji[rat]=$'\U1F400' +emoji[mouse]=$'\U1F401' +emoji[ox]=$'\U1F402' +emoji[water_buffalo]=$'\U1F403' +emoji[cow]=$'\U1F404' +emoji[tiger]=$'\U1F405' +emoji[leopard]=$'\U1F406' +emoji[rabbit]=$'\U1F407' +emoji[cat]=$'\U1F408' +emoji[dragon]=$'\U1F409' +emoji[crocodile]=$'\U1F40A' +emoji[whale]=$'\U1F40B' +emoji[snail]=$'\U1F40C' +emoji[snake]=$'\U1F40D' +emoji[horse]=$'\U1F40E' +emoji[ram]=$'\U1F40F' +emoji[goat]=$'\U1F410' +emoji[sheep]=$'\U1F411' +emoji[monkey]=$'\U1F412' +emoji[rooster]=$'\U1F413' +emoji[chicken]=$'\U1F414' +emoji[dog]=$'\U1F415' +emoji[pig]=$'\U1F416' +emoji[boar]=$'\U1F417' +emoji[elephant]=$'\U1F418' +emoji[octopus]=$'\U1F419' +emoji[spiral_shell]=$'\U1F41A' +emoji[bug]=$'\U1F41B' +emoji[ant]=$'\U1F41C' +emoji[honeybee]=$'\U1F41D' +emoji[lady_beetle]=$'\U1F41E' +emoji[fish]=$'\U1F41F' +emoji[tropical_fish]=$'\U1F420' +emoji[blowfish]=$'\U1F421' +emoji[turtle]=$'\U1F422' +emoji[hatching_chick]=$'\U1F423' +emoji[baby_chick]=$'\U1F424' +emoji[front_facing_baby_chick]=$'\U1F425' +emoji[bird]=$'\U1F426' +emoji[penguin]=$'\U1F427' +emoji[koala]=$'\U1F428' +emoji[poodle]=$'\U1F429' +emoji[dromedary_camel]=$'\U1F42A' +emoji[bactrian_camel]=$'\U1F42B' +emoji[dolphin]=$'\U1F42C' +emoji[mouse_face]=$'\U1F42D' +emoji[cow_face]=$'\U1F42E' +emoji[tiger_face]=$'\U1F42F' +emoji[rabbit_face]=$'\U1F430' +emoji[cat_face]=$'\U1F431' +emoji[dragon_face]=$'\U1F432' +emoji[spouting_whale]=$'\U1F433' +emoji[horse_face]=$'\U1F434' +emoji[monkey_face]=$'\U1F435' +emoji[dog_face]=$'\U1F436' +emoji[pig_face]=$'\U1F437' +emoji[frog_face]=$'\U1F438' +emoji[hamster_face]=$'\U1F439' +emoji[wolf_face]=$'\U1F43A' +emoji[bear_face]=$'\U1F43B' +emoji[panda_face]=$'\U1F43C' +emoji[pig_nose]=$'\U1F43D' +emoji[paw_prints]=$'\U1F43E' +emoji[chipmunk]=$'\U1F43F' +emoji[eyes]=$'\U1F440' +emoji[eye]=$'\U1F441' +emoji[ear]=$'\U1F442' +emoji[nose]=$'\U1F443' +emoji[mouth]=$'\U1F444' +emoji[tongue]=$'\U1F445' +emoji[white_up_pointing_backhand_index]=$'\U1F446' +emoji[white_down_pointing_backhand_index]=$'\U1F447' +emoji[white_left_pointing_backhand_index]=$'\U1F448' +emoji[white_right_pointing_backhand_index]=$'\U1F449' +emoji[fisted_hand_sign]=$'\U1F44A' +emoji[waving_hand_sign]=$'\U1F44B' +emoji[ok_hand_sign]=$'\U1F44C' +emoji[thumbs_up_sign]=$'\U1F44D' +emoji[thumbs_down_sign]=$'\U1F44E' +emoji[clapping_hands_sign]=$'\U1F44F' +emoji[open_hands_sign]=$'\U1F450' +emoji[crown]=$'\U1F451' +emoji[womans_hat]=$'\U1F452' +emoji[eyeglasses]=$'\U1F453' +emoji[necktie]=$'\U1F454' +emoji[t_shirt]=$'\U1F455' +emoji[jeans]=$'\U1F456' +emoji[dress]=$'\U1F457' +emoji[kimono]=$'\U1F458' +emoji[bikini]=$'\U1F459' +emoji[womans_clothes]=$'\U1F45A' +emoji[purse]=$'\U1F45B' +emoji[handbag]=$'\U1F45C' +emoji[pouch]=$'\U1F45D' +emoji[mans_shoe]=$'\U1F45E' +emoji[athletic_shoe]=$'\U1F45F' +emoji[high_heeled_shoe]=$'\U1F460' +emoji[womans_sandal]=$'\U1F461' +emoji[womans_boots]=$'\U1F462' +emoji[footprints]=$'\U1F463' +emoji[bust_in_silhouette]=$'\U1F464' +emoji[busts_in_silhouette]=$'\U1F465' +emoji[boy]=$'\U1F466' +emoji[girl]=$'\U1F467' +emoji[man]=$'\U1F468' +emoji[woman]=$'\U1F469' +emoji[family]=$'\U1F46A' +emoji[man_and_woman_holding_hands]=$'\U1F46B' +emoji[two_men_holding_hands]=$'\U1F46C' +emoji[two_women_holding_hands]=$'\U1F46D' +emoji[police_officer]=$'\U1F46E' +emoji[woman_with_bunny_ears]=$'\U1F46F' +emoji[bride_with_veil]=$'\U1F470' +emoji[person_with_blond_hair]=$'\U1F471' +emoji[man_with_gua_pi_mao]=$'\U1F472' +emoji[man_with_turban]=$'\U1F473' +emoji[older_man]=$'\U1F474' +emoji[older_woman]=$'\U1F475' +emoji[baby]=$'\U1F476' +emoji[construction_worker]=$'\U1F477' +emoji[princess]=$'\U1F478' +emoji[japanese_ogre]=$'\U1F479' +emoji[japanese_goblin]=$'\U1F47A' +emoji[ghost]=$'\U1F47B' +emoji[baby_angel]=$'\U1F47C' +emoji[extraterrestrial_alien]=$'\U1F47D' +emoji[alien_monster]=$'\U1F47E' +emoji[imp]=$'\U1F47F' +emoji[skull]=$'\U1F480' +emoji[information_desk_person]=$'\U1F481' +emoji[guardsman]=$'\U1F482' +emoji[dancer]=$'\U1F483' +emoji[lipstick]=$'\U1F484' +emoji[nail_polish]=$'\U1F485' +emoji[face_massage]=$'\U1F486' +emoji[haircut]=$'\U1F487' +emoji[barber_pole]=$'\U1F488' +emoji[syringe]=$'\U1F489' +emoji[pill]=$'\U1F48A' +emoji[kiss_mark]=$'\U1F48B' +emoji[love_letter]=$'\U1F48C' +emoji[ring]=$'\U1F48D' +emoji[gem_stone]=$'\U1F48E' +emoji[kiss]=$'\U1F48F' +emoji[bouquet]=$'\U1F490' +emoji[couple_with_heart]=$'\U1F491' +emoji[wedding]=$'\U1F492' +emoji[beating_heart]=$'\U1F493' +emoji[broken_heart]=$'\U1F494' +emoji[two_hearts]=$'\U1F495' +emoji[sparkling_heart]=$'\U1F496' +emoji[growing_heart]=$'\U1F497' +emoji[heart_with_arrow]=$'\U1F498' +emoji[blue_heart]=$'\U1F499' +emoji[green_heart]=$'\U1F49A' +emoji[yellow_heart]=$'\U1F49B' +emoji[purple_heart]=$'\U1F49C' +emoji[heart_with_ribbon]=$'\U1F49D' +emoji[revolving_hearts]=$'\U1F49E' +emoji[heart_decoration]=$'\U1F49F' +emoji[diamond_shape_with_a_dot_inside]=$'\U1F4A0' +emoji[electric_light_bulb]=$'\U1F4A1' +emoji[anger_symbol]=$'\U1F4A2' +emoji[bomb]=$'\U1F4A3' +emoji[sleeping_symbol]=$'\U1F4A4' +emoji[collision_symbol]=$'\U1F4A5' +emoji[splashing_sweat_symbol]=$'\U1F4A6' +emoji[droplet]=$'\U1F4A7' +emoji[dash_symbol]=$'\U1F4A8' +emoji[pile_of_poo]=$'\U1F4A9' +emoji[flexed_biceps]=$'\U1F4AA' +emoji[dizzy_symbol]=$'\U1F4AB' +emoji[speech_balloon]=$'\U1F4AC' +emoji[thought_balloon]=$'\U1F4AD' +emoji[white_flower]=$'\U1F4AE' +emoji[hundred_points_symbol]=$'\U1F4AF' +emoji[money_bag]=$'\U1F4B0' +emoji[currency_exchange]=$'\U1F4B1' +emoji[heavy_dollar_sign]=$'\U1F4B2' +emoji[credit_card]=$'\U1F4B3' +emoji[banknote_with_yen_sign]=$'\U1F4B4' +emoji[banknote_with_dollar_sign]=$'\U1F4B5' +emoji[banknote_with_euro_sign]=$'\U1F4B6' +emoji[banknote_with_pound_sign]=$'\U1F4B7' +emoji[money_with_wings]=$'\U1F4B8' +emoji[chart_with_upwards_trend_and_yen_sign]=$'\U1F4B9' +emoji[seat]=$'\U1F4BA' +emoji[personal_computer]=$'\U1F4BB' +emoji[briefcase]=$'\U1F4BC' +emoji[minidisc]=$'\U1F4BD' +emoji[floppy_disk]=$'\U1F4BE' +emoji[optical_disc]=$'\U1F4BF' +emoji[dvd]=$'\U1F4C0' +emoji[file_folder]=$'\U1F4C1' +emoji[open_file_folder]=$'\U1F4C2' +emoji[page_with_curl]=$'\U1F4C3' +emoji[page_facing_up]=$'\U1F4C4' +emoji[calendar]=$'\U1F4C5' +emoji[tear_off_calendar]=$'\U1F4C6' +emoji[card_index]=$'\U1F4C7' +emoji[chart_with_upwards_trend]=$'\U1F4C8' +emoji[chart_with_downwards_trend]=$'\U1F4C9' +emoji[bar_chart]=$'\U1F4CA' +emoji[clipboard]=$'\U1F4CB' +emoji[pushpin]=$'\U1F4CC' +emoji[round_pushpin]=$'\U1F4CD' +emoji[paperclip]=$'\U1F4CE' +emoji[straight_ruler]=$'\U1F4CF' +emoji[triangular_ruler]=$'\U1F4D0' +emoji[bookmark_tabs]=$'\U1F4D1' +emoji[ledger]=$'\U1F4D2' +emoji[notebook]=$'\U1F4D3' +emoji[notebook_with_decorative_cover]=$'\U1F4D4' +emoji[closed_book]=$'\U1F4D5' +emoji[open_book]=$'\U1F4D6' +emoji[green_book]=$'\U1F4D7' +emoji[blue_book]=$'\U1F4D8' +emoji[orange_book]=$'\U1F4D9' +emoji[books]=$'\U1F4DA' +emoji[name_badge]=$'\U1F4DB' +emoji[scroll]=$'\U1F4DC' +emoji[memo]=$'\U1F4DD' +emoji[telephone_receiver]=$'\U1F4DE' +emoji[pager]=$'\U1F4DF' +emoji[fax_machine]=$'\U1F4E0' +emoji[satellite_antenna]=$'\U1F4E1' +emoji[public_address_loudspeaker]=$'\U1F4E2' +emoji[cheering_megaphone]=$'\U1F4E3' +emoji[outbox_tray]=$'\U1F4E4' +emoji[inbox_tray]=$'\U1F4E5' +emoji[package]=$'\U1F4E6' +emoji[e_mail_symbol]=$'\U1F4E7' +emoji[incoming_envelope]=$'\U1F4E8' +emoji[envelope_with_downwards_arrow_above]=$'\U1F4E9' +emoji[closed_mailbox_with_lowered_flag]=$'\U1F4EA' +emoji[closed_mailbox_with_raised_flag]=$'\U1F4EB' +emoji[open_mailbox_with_raised_flag]=$'\U1F4EC' +emoji[open_mailbox_with_lowered_flag]=$'\U1F4ED' +emoji[postbox]=$'\U1F4EE' +emoji[postal_horn]=$'\U1F4EF' +emoji[newspaper]=$'\U1F4F0' +emoji[mobile_phone]=$'\U1F4F1' +emoji[mobile_phone_with_rightwards_arrow_at_left]=$'\U1F4F2' +emoji[vibration_mode]=$'\U1F4F3' +emoji[mobile_phone_off]=$'\U1F4F4' +emoji[no_mobile_phones]=$'\U1F4F5' +emoji[antenna_with_bars]=$'\U1F4F6' +emoji[camera]=$'\U1F4F7' +emoji[camera_with_flash]=$'\U1F4F8' +emoji[video_camera]=$'\U1F4F9' +emoji[television]=$'\U1F4FA' +emoji[radio]=$'\U1F4FB' +emoji[videocassette]=$'\U1F4FC' +emoji[film_projector]=$'\U1F4FD' +emoji[prayer_beads]=$'\U1F4FF' +emoji[twisted_rightwards_arrows]=$'\U1F500' +emoji[clockwise_rightwards_and_leftwards_open_circle_arrows]=$'\U1F501' +emoji[clockwise_rightwards_and_leftwards_open_circle_arrows_with_circled_one_overlay]=$'\U1F502' +emoji[clockwise_downwards_and_upwards_open_circle_arrows]=$'\U1F503' +emoji[anticlockwise_downwards_and_upwards_open_circle_arrows]=$'\U1F504' +emoji[low_brightness_symbol]=$'\U1F505' +emoji[high_brightness_symbol]=$'\U1F506' +emoji[speaker_with_cancellation_stroke]=$'\U1F507' +emoji[speaker]=$'\U1F508' +emoji[speaker_with_one_sound_wave]=$'\U1F509' +emoji[speaker_with_three_sound_waves]=$'\U1F50A' +emoji[battery]=$'\U1F50B' +emoji[electric_plug]=$'\U1F50C' +emoji[left_pointing_magnifying_glass]=$'\U1F50D' +emoji[right_pointing_magnifying_glass]=$'\U1F50E' +emoji[lock_with_ink_pen]=$'\U1F50F' +emoji[closed_lock_with_key]=$'\U1F510' +emoji[key]=$'\U1F511' +emoji[lock]=$'\U1F512' +emoji[open_lock]=$'\U1F513' +emoji[bell]=$'\U1F514' +emoji[bell_with_cancellation_stroke]=$'\U1F515' +emoji[bookmark]=$'\U1F516' +emoji[link_symbol]=$'\U1F517' +emoji[radio_button]=$'\U1F518' +emoji[back_with_leftwards_arrow_above]=$'\U1F519' +emoji[end_with_leftwards_arrow_above]=$'\U1F51A' +emoji[on_with_exclamation_mark_with_left_right_arrow_above]=$'\U1F51B' +emoji[soon_with_rightwards_arrow_above]=$'\U1F51C' +emoji[top_with_upwards_arrow_above]=$'\U1F51D' +emoji[no_one_under_eighteen_symbol]=$'\U1F51E' +emoji[keycap_ten]=$'\U1F51F' +emoji[input_symbol_for_latin_capital_letters]=$'\U1F520' +emoji[input_symbol_for_latin_small_letters]=$'\U1F521' +emoji[input_symbol_for_numbers]=$'\U1F522' +emoji[input_symbol_for_symbols]=$'\U1F523' +emoji[input_symbol_for_latin_letters]=$'\U1F524' +emoji[fire]=$'\U1F525' +emoji[electric_torch]=$'\U1F526' +emoji[wrench]=$'\U1F527' +emoji[hammer]=$'\U1F528' +emoji[nut_and_bolt]=$'\U1F529' +emoji[hocho]=$'\U1F52A' +emoji[pistol]=$'\U1F52B' +emoji[microscope]=$'\U1F52C' +emoji[telescope]=$'\U1F52D' +emoji[crystal_ball]=$'\U1F52E' +emoji[six_pointed_star_with_middle_dot]=$'\U1F52F' +emoji[japanese_symbol_for_beginner]=$'\U1F530' +emoji[trident_emblem]=$'\U1F531' +emoji[black_square_button]=$'\U1F532' +emoji[white_square_button]=$'\U1F533' +emoji[large_red_circle]=$'\U1F534' +emoji[large_blue_circle]=$'\U1F535' +emoji[large_orange_diamond]=$'\U1F536' +emoji[large_blue_diamond]=$'\U1F537' +emoji[small_orange_diamond]=$'\U1F538' +emoji[small_blue_diamond]=$'\U1F539' +emoji[up_pointing_red_triangle]=$'\U1F53A' +emoji[down_pointing_red_triangle]=$'\U1F53B' +emoji[up_pointing_small_red_triangle]=$'\U1F53C' +emoji[down_pointing_small_red_triangle]=$'\U1F53D' +emoji[om_symbol]=$'\U1F549' +emoji[dove_of_peace]=$'\U1F54A' +emoji[kaaba]=$'\U1F54B' +emoji[mosque]=$'\U1F54C' +emoji[synagogue]=$'\U1F54D' +emoji[menorah_with_nine_branches]=$'\U1F54E' +emoji[clock_face_one_oclock]=$'\U1F550' +emoji[clock_face_two_oclock]=$'\U1F551' +emoji[clock_face_three_oclock]=$'\U1F552' +emoji[clock_face_four_oclock]=$'\U1F553' +emoji[clock_face_five_oclock]=$'\U1F554' +emoji[clock_face_six_oclock]=$'\U1F555' +emoji[clock_face_seven_oclock]=$'\U1F556' +emoji[clock_face_eight_oclock]=$'\U1F557' +emoji[clock_face_nine_oclock]=$'\U1F558' +emoji[clock_face_ten_oclock]=$'\U1F559' +emoji[clock_face_eleven_oclock]=$'\U1F55A' +emoji[clock_face_twelve_oclock]=$'\U1F55B' +emoji[clock_face_one_thirty]=$'\U1F55C' +emoji[clock_face_two_thirty]=$'\U1F55D' +emoji[clock_face_three_thirty]=$'\U1F55E' +emoji[clock_face_four_thirty]=$'\U1F55F' +emoji[clock_face_five_thirty]=$'\U1F560' +emoji[clock_face_six_thirty]=$'\U1F561' +emoji[clock_face_seven_thirty]=$'\U1F562' +emoji[clock_face_eight_thirty]=$'\U1F563' +emoji[clock_face_nine_thirty]=$'\U1F564' +emoji[clock_face_ten_thirty]=$'\U1F565' +emoji[clock_face_eleven_thirty]=$'\U1F566' +emoji[clock_face_twelve_thirty]=$'\U1F567' +emoji[candle]=$'\U1F56F' +emoji[mantelpiece_clock]=$'\U1F570' +emoji[hole]=$'\U1F573' +emoji[man_in_business_suit_levitating]=$'\U1F574' +emoji[sleuth_or_spy]=$'\U1F575' +emoji[dark_sunglasses]=$'\U1F576' +emoji[spider]=$'\U1F577' +emoji[spider_web]=$'\U1F578' +emoji[joystick]=$'\U1F579' +emoji[linked_paperclips]=$'\U1F587' +emoji[lower_left_ballpoint_pen]=$'\U1F58A' +emoji[lower_left_fountain_pen]=$'\U1F58B' +emoji[lower_left_paintbrush]=$'\U1F58C' +emoji[lower_left_crayon]=$'\U1F58D' +emoji[raised_hand_with_fingers_splayed]=$'\U1F590' +emoji[reversed_hand_with_middle_finger_extended]=$'\U1F595' +emoji[raised_hand_with_part_between_middle_and_ring_fingers]=$'\U1F596' +emoji[desktop_computer]=$'\U1F5A5' +emoji[printer]=$'\U1F5A8' +emoji[three_button_mouse]=$'\U1F5B1' +emoji[trackball]=$'\U1F5B2' +emoji[frame_with_picture]=$'\U1F5BC' +emoji[card_index_dividers]=$'\U1F5C2' +emoji[card_file_box]=$'\U1F5C3' +emoji[file_cabinet]=$'\U1F5C4' +emoji[wastebasket]=$'\U1F5D1' +emoji[spiral_note_pad]=$'\U1F5D2' +emoji[spiral_calendar_pad]=$'\U1F5D3' +emoji[compression]=$'\U1F5DC' +emoji[old_key]=$'\U1F5DD' +emoji[rolled_up_newspaper]=$'\U1F5DE' +emoji[dagger_knife]=$'\U1F5E1' +emoji[speaking_head_in_silhouette]=$'\U1F5E3' +emoji[right_anger_bubble]=$'\U1F5EF' +emoji[ballot_box_with_ballot]=$'\U1F5F3' +emoji[world_map]=$'\U1F5FA' +emoji[mount_fuji]=$'\U1F5FB' +emoji[tokyo_tower]=$'\U1F5FC' +emoji[statue_of_liberty]=$'\U1F5FD' +emoji[silhouette_of_japan]=$'\U1F5FE' +emoji[moyai]=$'\U1F5FF' +emoji[grinning_face]=$'\U1F600' +emoji[grinning_face_with_smiling_eyes]=$'\U1F601' +emoji[face_with_tears_of_joy]=$'\U1F602' +emoji[smiling_face_with_open_mouth]=$'\U1F603' +emoji[smiling_face_with_open_mouth_and_smiling_eyes]=$'\U1F604' +emoji[smiling_face_with_open_mouth_and_cold_sweat]=$'\U1F605' +emoji[smiling_face_with_open_mouth_and_tightly_closed_eyes]=$'\U1F606' +emoji[smiling_face_with_halo]=$'\U1F607' +emoji[smiling_face_with_horns]=$'\U1F608' +emoji[winking_face]=$'\U1F609' +emoji[smiling_face_with_smiling_eyes]=$'\U1F60A' +emoji[face_savouring_delicious_food]=$'\U1F60B' +emoji[relieved_face]=$'\U1F60C' +emoji[smiling_face_with_heart_shaped_eyes]=$'\U1F60D' +emoji[smiling_face_with_sunglasses]=$'\U1F60E' +emoji[smirking_face]=$'\U1F60F' +emoji[neutral_face]=$'\U1F610' +emoji[expressionless_face]=$'\U1F611' +emoji[unamused_face]=$'\U1F612' +emoji[face_with_cold_sweat]=$'\U1F613' +emoji[pensive_face]=$'\U1F614' +emoji[confused_face]=$'\U1F615' +emoji[confounded_face]=$'\U1F616' +emoji[kissing_face]=$'\U1F617' +emoji[face_throwing_a_kiss]=$'\U1F618' +emoji[kissing_face_with_smiling_eyes]=$'\U1F619' +emoji[kissing_face_with_closed_eyes]=$'\U1F61A' +emoji[face_with_stuck_out_tongue]=$'\U1F61B' +emoji[face_with_stuck_out_tongue_and_winking_eye]=$'\U1F61C' +emoji[face_with_stuck_out_tongue_and_tightly_closed_eyes]=$'\U1F61D' +emoji[disappointed_face]=$'\U1F61E' +emoji[worried_face]=$'\U1F61F' +emoji[angry_face]=$'\U1F620' +emoji[pouting_face]=$'\U1F621' +emoji[crying_face]=$'\U1F622' +emoji[persevering_face]=$'\U1F623' +emoji[face_with_look_of_triumph]=$'\U1F624' +emoji[disappointed_but_relieved_face]=$'\U1F625' +emoji[frowning_face_with_open_mouth]=$'\U1F626' +emoji[anguished_face]=$'\U1F627' +emoji[fearful_face]=$'\U1F628' +emoji[weary_face]=$'\U1F629' +emoji[sleepy_face]=$'\U1F62A' +emoji[tired_face]=$'\U1F62B' +emoji[grimacing_face]=$'\U1F62C' +emoji[loudly_crying_face]=$'\U1F62D' +emoji[face_with_open_mouth]=$'\U1F62E' +emoji[hushed_face]=$'\U1F62F' +emoji[face_with_open_mouth_and_cold_sweat]=$'\U1F630' +emoji[face_screaming_in_fear]=$'\U1F631' +emoji[astonished_face]=$'\U1F632' +emoji[flushed_face]=$'\U1F633' +emoji[sleeping_face]=$'\U1F634' +emoji[dizzy_face]=$'\U1F635' +emoji[face_without_mouth]=$'\U1F636' +emoji[face_with_medical_mask]=$'\U1F637' +emoji[grinning_cat_face_with_smiling_eyes]=$'\U1F638' +emoji[cat_face_with_tears_of_joy]=$'\U1F639' +emoji[smiling_cat_face_with_open_mouth]=$'\U1F63A' +emoji[smiling_cat_face_with_heart_shaped_eyes]=$'\U1F63B' +emoji[cat_face_with_wry_smile]=$'\U1F63C' +emoji[kissing_cat_face_with_closed_eyes]=$'\U1F63D' +emoji[pouting_cat_face]=$'\U1F63E' +emoji[crying_cat_face]=$'\U1F63F' +emoji[weary_cat_face]=$'\U1F640' +emoji[slightly_frowning_face]=$'\U1F641' +emoji[slightly_smiling_face]=$'\U1F642' +emoji[upside_down_face]=$'\U1F643' +emoji[face_with_rolling_eyes]=$'\U1F644' +emoji[face_with_no_good_gesture]=$'\U1F645' +emoji[face_with_ok_gesture]=$'\U1F646' +emoji[person_bowing_deeply]=$'\U1F647' +emoji[see_no_evil_monkey]=$'\U1F648' +emoji[hear_no_evil_monkey]=$'\U1F649' +emoji[speak_no_evil_monkey]=$'\U1F64A' +emoji[happy_person_raising_one_hand]=$'\U1F64B' +emoji[person_raising_both_hands_in_celebration]=$'\U1F64C' +emoji[person_frowning]=$'\U1F64D' +emoji[person_with_pouting_face]=$'\U1F64E' +emoji[person_with_folded_hands]=$'\U1F64F' +emoji[rocket]=$'\U1F680' +emoji[helicopter]=$'\U1F681' +emoji[steam_locomotive]=$'\U1F682' +emoji[railway_car]=$'\U1F683' +emoji[high_speed_train]=$'\U1F684' +emoji[high_speed_train_with_bullet_nose]=$'\U1F685' +emoji[train]=$'\U1F686' +emoji[metro]=$'\U1F687' +emoji[light_rail]=$'\U1F688' +emoji[station]=$'\U1F689' +emoji[tram]=$'\U1F68A' +emoji[tram_car]=$'\U1F68B' +emoji[bus]=$'\U1F68C' +emoji[oncoming_bus]=$'\U1F68D' +emoji[trolleybus]=$'\U1F68E' +emoji[bus_stop]=$'\U1F68F' +emoji[minibus]=$'\U1F690' +emoji[ambulance]=$'\U1F691' +emoji[fire_engine]=$'\U1F692' +emoji[police_car]=$'\U1F693' +emoji[oncoming_police_car]=$'\U1F694' +emoji[taxi]=$'\U1F695' +emoji[oncoming_taxi]=$'\U1F696' +emoji[automobile]=$'\U1F697' +emoji[oncoming_automobile]=$'\U1F698' +emoji[recreational_vehicle]=$'\U1F699' +emoji[delivery_truck]=$'\U1F69A' +emoji[articulated_lorry]=$'\U1F69B' +emoji[tractor]=$'\U1F69C' +emoji[monorail]=$'\U1F69D' +emoji[mountain_railway]=$'\U1F69E' +emoji[suspension_railway]=$'\U1F69F' +emoji[mountain_cableway]=$'\U1F6A0' +emoji[aerial_tramway]=$'\U1F6A1' +emoji[ship]=$'\U1F6A2' +emoji[rowboat]=$'\U1F6A3' +emoji[speedboat]=$'\U1F6A4' +emoji[horizontal_traffic_light]=$'\U1F6A5' +emoji[vertical_traffic_light]=$'\U1F6A6' +emoji[construction_sign]=$'\U1F6A7' +emoji[police_cars_revolving_light]=$'\U1F6A8' +emoji[triangular_flag_on_post]=$'\U1F6A9' +emoji[door]=$'\U1F6AA' +emoji[no_entry_sign]=$'\U1F6AB' +emoji[smoking_symbol]=$'\U1F6AC' +emoji[no_smoking_symbol]=$'\U1F6AD' +emoji[put_litter_in_its_place_symbol]=$'\U1F6AE' +emoji[do_not_litter_symbol]=$'\U1F6AF' +emoji[potable_water_symbol]=$'\U1F6B0' +emoji[non_potable_water_symbol]=$'\U1F6B1' +emoji[bicycle]=$'\U1F6B2' +emoji[no_bicycles]=$'\U1F6B3' +emoji[bicyclist]=$'\U1F6B4' +emoji[mountain_bicyclist]=$'\U1F6B5' +emoji[pedestrian]=$'\U1F6B6' +emoji[no_pedestrians]=$'\U1F6B7' +emoji[children_crossing]=$'\U1F6B8' +emoji[mens_symbol]=$'\U1F6B9' +emoji[womens_symbol]=$'\U1F6BA' +emoji[restroom]=$'\U1F6BB' +emoji[baby_symbol]=$'\U1F6BC' +emoji[toilet]=$'\U1F6BD' +emoji[water_closet]=$'\U1F6BE' +emoji[shower]=$'\U1F6BF' +emoji[bath]=$'\U1F6C0' +emoji[bathtub]=$'\U1F6C1' +emoji[passport_control]=$'\U1F6C2' +emoji[customs]=$'\U1F6C3' +emoji[baggage_claim]=$'\U1F6C4' +emoji[left_luggage]=$'\U1F6C5' +emoji[couch_and_lamp]=$'\U1F6CB' +emoji[sleeping_accommodation]=$'\U1F6CC' +emoji[shopping_bags]=$'\U1F6CD' +emoji[bellhop_bell]=$'\U1F6CE' +emoji[bed]=$'\U1F6CF' +emoji[place_of_worship]=$'\U1F6D0' +emoji[hammer_and_wrench]=$'\U1F6E0' +emoji[shield]=$'\U1F6E1' +emoji[oil_drum]=$'\U1F6E2' +emoji[motorway]=$'\U1F6E3' +emoji[railway_track]=$'\U1F6E4' +emoji[motor_boat]=$'\U1F6E5' +emoji[small_airplane]=$'\U1F6E9' +emoji[airplane_departure]=$'\U1F6EB' +emoji[airplane_arriving]=$'\U1F6EC' +emoji[satellite]=$'\U1F6F0' +emoji[passenger_ship]=$'\U1F6F3' +emoji[zipper_mouth_face]=$'\U1F910' +emoji[money_mouth_face]=$'\U1F911' +emoji[face_with_thermometer]=$'\U1F912' +emoji[nerd_face]=$'\U1F913' +emoji[thinking_face]=$'\U1F914' +emoji[face_with_head_bandage]=$'\U1F915' +emoji[robot_face]=$'\U1F916' +emoji[hugging_face]=$'\U1F917' +emoji[sign_of_the_horns]=$'\U1F918' +emoji[crab]=$'\U1F980' +emoji[lion_face]=$'\U1F981' +emoji[scorpion]=$'\U1F982' +emoji[turkey]=$'\U1F983' +emoji[unicorn_face]=$'\U1F984' +emoji[cheese_wedge]=$'\U1F9C0' +emoji[keycap_number_sign]=$'\U0023\U20E3' +emoji[keycap_asterisk]=$'\U002A\U20E3' +emoji[keycap_digit_zero]=$'\U0030\U20E3' +emoji[keycap_digit_one]=$'\U0031\U20E3' +emoji[keycap_digit_two]=$'\U0032\U20E3' +emoji[keycap_digit_three]=$'\U0033\U20E3' +emoji[keycap_digit_four]=$'\U0034\U20E3' +emoji[keycap_digit_five]=$'\U0035\U20E3' +emoji[keycap_digit_six]=$'\U0036\U20E3' +emoji[keycap_digit_seven]=$'\U0037\U20E3' +emoji[keycap_digit_eight]=$'\U0038\U20E3' +emoji[keycap_digit_nine]=$'\U0039\U20E3' +emoji_flags[Ascension_Island]=$'\U1F1E6\U1F1E8' +emoji_flags[Andorra]=$'\U1F1E6\U1F1E9' +emoji_flags[United_Arab_Emirates]=$'\U1F1E6\U1F1EA' +emoji_flags[Afghanistan]=$'\U1F1E6\U1F1EB' +emoji_flags[Antigua___Barbuda]=$'\U1F1E6\U1F1EC' +emoji_flags[Anguilla]=$'\U1F1E6\U1F1EE' +emoji_flags[Albania]=$'\U1F1E6\U1F1F1' +emoji_flags[Armenia]=$'\U1F1E6\U1F1F2' +emoji_flags[Angola]=$'\U1F1E6\U1F1F4' +emoji_flags[Antarctica]=$'\U1F1E6\U1F1F6' +emoji_flags[Argentina]=$'\U1F1E6\U1F1F7' +emoji_flags[American_Samoa]=$'\U1F1E6\U1F1F8' +emoji_flags[Austria]=$'\U1F1E6\U1F1F9' +emoji_flags[Australia]=$'\U1F1E6\U1F1FA' +emoji_flags[Aruba]=$'\U1F1E6\U1F1FC' +emoji_flags[ร_land_Islands]=$'\U1F1E6\U1F1FD' +emoji_flags[Azerbaijan]=$'\U1F1E6\U1F1FF' +emoji_flags[Bosnia___Herzegovina]=$'\U1F1E7\U1F1E6' +emoji_flags[Barbados]=$'\U1F1E7\U1F1E7' +emoji_flags[Bangladesh]=$'\U1F1E7\U1F1E9' +emoji_flags[Belgium]=$'\U1F1E7\U1F1EA' +emoji_flags[Burkina_Faso]=$'\U1F1E7\U1F1EB' +emoji_flags[Bulgaria]=$'\U1F1E7\U1F1EC' +emoji_flags[Bahrain]=$'\U1F1E7\U1F1ED' +emoji_flags[Burundi]=$'\U1F1E7\U1F1EE' +emoji_flags[Benin]=$'\U1F1E7\U1F1EF' +emoji_flags[St__Barthร_lemy]=$'\U1F1E7\U1F1F1' +emoji_flags[Bermuda]=$'\U1F1E7\U1F1F2' +emoji_flags[Brunei]=$'\U1F1E7\U1F1F3' +emoji_flags[Bolivia]=$'\U1F1E7\U1F1F4' +emoji_flags[Caribbean_Netherlands]=$'\U1F1E7\U1F1F6' +emoji_flags[Brazil]=$'\U1F1E7\U1F1F7' +emoji_flags[Bahamas]=$'\U1F1E7\U1F1F8' +emoji_flags[Bhutan]=$'\U1F1E7\U1F1F9' +emoji_flags[Bouvet_Island]=$'\U1F1E7\U1F1FB' +emoji_flags[Botswana]=$'\U1F1E7\U1F1FC' +emoji_flags[Belarus]=$'\U1F1E7\U1F1FE' +emoji_flags[Belize]=$'\U1F1E7\U1F1FF' +emoji_flags[Canada]=$'\U1F1E8\U1F1E6' +emoji_flags[Cocos__Islands]=$'\U1F1E8\U1F1E8' +emoji_flags[Congo___Kinshasa]=$'\U1F1E8\U1F1E9' +emoji_flags[Central_African_Republic]=$'\U1F1E8\U1F1EB' +emoji_flags[Congo___Brazzaville]=$'\U1F1E8\U1F1EC' +emoji_flags[Switzerland]=$'\U1F1E8\U1F1ED' +emoji_flags[Cร_te_dโ__Ivoire]=$'\U1F1E8\U1F1EE' +emoji_flags[Cook_Islands]=$'\U1F1E8\U1F1F0' +emoji_flags[Chile]=$'\U1F1E8\U1F1F1' +emoji_flags[Cameroon]=$'\U1F1E8\U1F1F2' +emoji_flags[China]=$'\U1F1E8\U1F1F3' +emoji_flags[Colombia]=$'\U1F1E8\U1F1F4' +emoji_flags[Clipperton_Island]=$'\U1F1E8\U1F1F5' +emoji_flags[Costa_Rica]=$'\U1F1E8\U1F1F7' +emoji_flags[Cuba]=$'\U1F1E8\U1F1FA' +emoji_flags[Cape_Verde]=$'\U1F1E8\U1F1FB' +emoji_flags[Curaร_ao]=$'\U1F1E8\U1F1FC' +emoji_flags[Christmas_Island]=$'\U1F1E8\U1F1FD' +emoji_flags[Cyprus]=$'\U1F1E8\U1F1FE' +emoji_flags[Czech_Republic]=$'\U1F1E8\U1F1FF' +emoji_flags[Germany]=$'\U1F1E9\U1F1EA' +emoji_flags[Diego_Garcia]=$'\U1F1E9\U1F1EC' +emoji_flags[Djibouti]=$'\U1F1E9\U1F1EF' +emoji_flags[Denmark]=$'\U1F1E9\U1F1F0' +emoji_flags[Dominica]=$'\U1F1E9\U1F1F2' +emoji_flags[Dominican_Republic]=$'\U1F1E9\U1F1F4' +emoji_flags[Algeria]=$'\U1F1E9\U1F1FF' +emoji_flags[Ceuta___Melilla]=$'\U1F1EA\U1F1E6' +emoji_flags[Ecuador]=$'\U1F1EA\U1F1E8' +emoji_flags[Estonia]=$'\U1F1EA\U1F1EA' +emoji_flags[Egypt]=$'\U1F1EA\U1F1EC' +emoji_flags[Western_Sahara]=$'\U1F1EA\U1F1ED' +emoji_flags[Eritrea]=$'\U1F1EA\U1F1F7' +emoji_flags[Spain]=$'\U1F1EA\U1F1F8' +emoji_flags[Ethiopia]=$'\U1F1EA\U1F1F9' +emoji_flags[European_Union]=$'\U1F1EA\U1F1FA' +emoji_flags[Finland]=$'\U1F1EB\U1F1EE' +emoji_flags[Fiji]=$'\U1F1EB\U1F1EF' +emoji_flags[Falkland_Islands]=$'\U1F1EB\U1F1F0' +emoji_flags[Micronesia]=$'\U1F1EB\U1F1F2' +emoji_flags[Faroe_Islands]=$'\U1F1EB\U1F1F4' +emoji_flags[France]=$'\U1F1EB\U1F1F7' +emoji_flags[Gabon]=$'\U1F1EC\U1F1E6' +emoji_flags[United_Kingdom]=$'\U1F1EC\U1F1E7' +emoji_flags[Grenada]=$'\U1F1EC\U1F1E9' +emoji_flags[Georgia]=$'\U1F1EC\U1F1EA' +emoji_flags[French_Guiana]=$'\U1F1EC\U1F1EB' +emoji_flags[Guernsey]=$'\U1F1EC\U1F1EC' +emoji_flags[Ghana]=$'\U1F1EC\U1F1ED' +emoji_flags[Gibraltar]=$'\U1F1EC\U1F1EE' +emoji_flags[Greenland]=$'\U1F1EC\U1F1F1' +emoji_flags[Gambia]=$'\U1F1EC\U1F1F2' +emoji_flags[Guinea]=$'\U1F1EC\U1F1F3' +emoji_flags[Guadeloupe]=$'\U1F1EC\U1F1F5' +emoji_flags[Equatorial_Guinea]=$'\U1F1EC\U1F1F6' +emoji_flags[Greece]=$'\U1F1EC\U1F1F7' +emoji_flags[South_Georgia___South_Sandwich_Islands]=$'\U1F1EC\U1F1F8' +emoji_flags[Guatemala]=$'\U1F1EC\U1F1F9' +emoji_flags[Guam]=$'\U1F1EC\U1F1FA' +emoji_flags[Guinea_Bissau]=$'\U1F1EC\U1F1FC' +emoji_flags[Guyana]=$'\U1F1EC\U1F1FE' +emoji_flags[Hong_Kong]=$'\U1F1ED\U1F1F0' +emoji_flags[Heard___McDonald_Islands]=$'\U1F1ED\U1F1F2' +emoji_flags[Honduras]=$'\U1F1ED\U1F1F3' +emoji_flags[Croatia]=$'\U1F1ED\U1F1F7' +emoji_flags[Haiti]=$'\U1F1ED\U1F1F9' +emoji_flags[Hungary]=$'\U1F1ED\U1F1FA' +emoji_flags[Canary_Islands]=$'\U1F1EE\U1F1E8' +emoji_flags[Indonesia]=$'\U1F1EE\U1F1E9' +emoji_flags[Ireland]=$'\U1F1EE\U1F1EA' +emoji_flags[Israel]=$'\U1F1EE\U1F1F1' +emoji_flags[Isle_of_Man]=$'\U1F1EE\U1F1F2' +emoji_flags[India]=$'\U1F1EE\U1F1F3' +emoji_flags[British_Indian_Ocean_Territory]=$'\U1F1EE\U1F1F4' +emoji_flags[Iraq]=$'\U1F1EE\U1F1F6' +emoji_flags[Iran]=$'\U1F1EE\U1F1F7' +emoji_flags[Iceland]=$'\U1F1EE\U1F1F8' +emoji_flags[Italy]=$'\U1F1EE\U1F1F9' +emoji_flags[Jersey]=$'\U1F1EF\U1F1EA' +emoji_flags[Jamaica]=$'\U1F1EF\U1F1F2' +emoji_flags[Jordan]=$'\U1F1EF\U1F1F4' +emoji_flags[Japan]=$'\U1F1EF\U1F1F5' +emoji_flags[Kenya]=$'\U1F1F0\U1F1EA' +emoji_flags[Kyrgyzstan]=$'\U1F1F0\U1F1EC' +emoji_flags[Cambodia]=$'\U1F1F0\U1F1ED' +emoji_flags[Kiribati]=$'\U1F1F0\U1F1EE' +emoji_flags[Comoros]=$'\U1F1F0\U1F1F2' +emoji_flags[St__Kitts___Nevis]=$'\U1F1F0\U1F1F3' +emoji_flags[North_Korea]=$'\U1F1F0\U1F1F5' +emoji_flags[South_Korea]=$'\U1F1F0\U1F1F7' +emoji_flags[Kuwait]=$'\U1F1F0\U1F1FC' +emoji_flags[Cayman_Islands]=$'\U1F1F0\U1F1FE' +emoji_flags[Kazakhstan]=$'\U1F1F0\U1F1FF' +emoji_flags[Laos]=$'\U1F1F1\U1F1E6' +emoji_flags[Lebanon]=$'\U1F1F1\U1F1E7' +emoji_flags[St__Lucia]=$'\U1F1F1\U1F1E8' +emoji_flags[Liechtenstein]=$'\U1F1F1\U1F1EE' +emoji_flags[Sri_Lanka]=$'\U1F1F1\U1F1F0' +emoji_flags[Liberia]=$'\U1F1F1\U1F1F7' +emoji_flags[Lesotho]=$'\U1F1F1\U1F1F8' +emoji_flags[Lithuania]=$'\U1F1F1\U1F1F9' +emoji_flags[Luxembourg]=$'\U1F1F1\U1F1FA' +emoji_flags[Latvia]=$'\U1F1F1\U1F1FB' +emoji_flags[Libya]=$'\U1F1F1\U1F1FE' +emoji_flags[Morocco]=$'\U1F1F2\U1F1E6' +emoji_flags[Monaco]=$'\U1F1F2\U1F1E8' +emoji_flags[Moldova]=$'\U1F1F2\U1F1E9' +emoji_flags[Montenegro]=$'\U1F1F2\U1F1EA' +emoji_flags[St__Martin]=$'\U1F1F2\U1F1EB' +emoji_flags[Madagascar]=$'\U1F1F2\U1F1EC' +emoji_flags[Marshall_Islands]=$'\U1F1F2\U1F1ED' +emoji_flags[Macedonia]=$'\U1F1F2\U1F1F0' +emoji_flags[Mali]=$'\U1F1F2\U1F1F1' +emoji_flags[Myanmar]=$'\U1F1F2\U1F1F2' +emoji_flags[Mongolia]=$'\U1F1F2\U1F1F3' +emoji_flags[Macau]=$'\U1F1F2\U1F1F4' +emoji_flags[Northern_Mariana_Islands]=$'\U1F1F2\U1F1F5' +emoji_flags[Martinique]=$'\U1F1F2\U1F1F6' +emoji_flags[Mauritania]=$'\U1F1F2\U1F1F7' +emoji_flags[Montserrat]=$'\U1F1F2\U1F1F8' +emoji_flags[Malta]=$'\U1F1F2\U1F1F9' +emoji_flags[Mauritius]=$'\U1F1F2\U1F1FA' +emoji_flags[Maldives]=$'\U1F1F2\U1F1FB' +emoji_flags[Malawi]=$'\U1F1F2\U1F1FC' +emoji_flags[Mexico]=$'\U1F1F2\U1F1FD' +emoji_flags[Malaysia]=$'\U1F1F2\U1F1FE' +emoji_flags[Mozambique]=$'\U1F1F2\U1F1FF' +emoji_flags[Namibia]=$'\U1F1F3\U1F1E6' +emoji_flags[New_Caledonia]=$'\U1F1F3\U1F1E8' +emoji_flags[Niger]=$'\U1F1F3\U1F1EA' +emoji_flags[Norfolk_Island]=$'\U1F1F3\U1F1EB' +emoji_flags[Nigeria]=$'\U1F1F3\U1F1EC' +emoji_flags[Nicaragua]=$'\U1F1F3\U1F1EE' +emoji_flags[Netherlands]=$'\U1F1F3\U1F1F1' +emoji_flags[Norway]=$'\U1F1F3\U1F1F4' +emoji_flags[Nepal]=$'\U1F1F3\U1F1F5' +emoji_flags[Nauru]=$'\U1F1F3\U1F1F7' +emoji_flags[Niue]=$'\U1F1F3\U1F1FA' +emoji_flags[New_Zealand]=$'\U1F1F3\U1F1FF' +emoji_flags[Oman]=$'\U1F1F4\U1F1F2' +emoji_flags[Panama]=$'\U1F1F5\U1F1E6' +emoji_flags[Peru]=$'\U1F1F5\U1F1EA' +emoji_flags[French_Polynesia]=$'\U1F1F5\U1F1EB' +emoji_flags[Papua_New_Guinea]=$'\U1F1F5\U1F1EC' +emoji_flags[Philippines]=$'\U1F1F5\U1F1ED' +emoji_flags[Pakistan]=$'\U1F1F5\U1F1F0' +emoji_flags[Poland]=$'\U1F1F5\U1F1F1' +emoji_flags[St__Pierre___Miquelon]=$'\U1F1F5\U1F1F2' +emoji_flags[Pitcairn_Islands]=$'\U1F1F5\U1F1F3' +emoji_flags[Puerto_Rico]=$'\U1F1F5\U1F1F7' +emoji_flags[Palestinian_Territories]=$'\U1F1F5\U1F1F8' +emoji_flags[Portugal]=$'\U1F1F5\U1F1F9' +emoji_flags[Palau]=$'\U1F1F5\U1F1FC' +emoji_flags[Paraguay]=$'\U1F1F5\U1F1FE' +emoji_flags[Qatar]=$'\U1F1F6\U1F1E6' +emoji_flags[Rร_union]=$'\U1F1F7\U1F1EA' +emoji_flags[Romania]=$'\U1F1F7\U1F1F4' +emoji_flags[Serbia]=$'\U1F1F7\U1F1F8' +emoji_flags[Russia]=$'\U1F1F7\U1F1FA' +emoji_flags[Rwanda]=$'\U1F1F7\U1F1FC' +emoji_flags[Saudi_Arabia]=$'\U1F1F8\U1F1E6' +emoji_flags[Solomon_Islands]=$'\U1F1F8\U1F1E7' +emoji_flags[Seychelles]=$'\U1F1F8\U1F1E8' +emoji_flags[Sudan]=$'\U1F1F8\U1F1E9' +emoji_flags[Sweden]=$'\U1F1F8\U1F1EA' +emoji_flags[Singapore]=$'\U1F1F8\U1F1EC' +emoji_flags[St__Helena]=$'\U1F1F8\U1F1ED' +emoji_flags[Slovenia]=$'\U1F1F8\U1F1EE' +emoji_flags[Svalbard___Jan_Mayen]=$'\U1F1F8\U1F1EF' +emoji_flags[Slovakia]=$'\U1F1F8\U1F1F0' +emoji_flags[Sierra_Leone]=$'\U1F1F8\U1F1F1' +emoji_flags[San_Marino]=$'\U1F1F8\U1F1F2' +emoji_flags[Senegal]=$'\U1F1F8\U1F1F3' +emoji_flags[Somalia]=$'\U1F1F8\U1F1F4' +emoji_flags[Suriname]=$'\U1F1F8\U1F1F7' +emoji_flags[South_Sudan]=$'\U1F1F8\U1F1F8' +emoji_flags[Sร_o_Tomร____Prร_ncipe]=$'\U1F1F8\U1F1F9' +emoji_flags[El_Salvador]=$'\U1F1F8\U1F1FB' +emoji_flags[Sint_Maarten]=$'\U1F1F8\U1F1FD' +emoji_flags[Syria]=$'\U1F1F8\U1F1FE' +emoji_flags[Swaziland]=$'\U1F1F8\U1F1FF' +emoji_flags[Tristan_da_Cunha]=$'\U1F1F9\U1F1E6' +emoji_flags[Turks___Caicos_Islands]=$'\U1F1F9\U1F1E8' +emoji_flags[Chad]=$'\U1F1F9\U1F1E9' +emoji_flags[French_Southern_Territories]=$'\U1F1F9\U1F1EB' +emoji_flags[Togo]=$'\U1F1F9\U1F1EC' +emoji_flags[Thailand]=$'\U1F1F9\U1F1ED' +emoji_flags[Tajikistan]=$'\U1F1F9\U1F1EF' +emoji_flags[Tokelau]=$'\U1F1F9\U1F1F0' +emoji_flags[Timor_Leste]=$'\U1F1F9\U1F1F1' +emoji_flags[Turkmenistan]=$'\U1F1F9\U1F1F2' +emoji_flags[Tunisia]=$'\U1F1F9\U1F1F3' +emoji_flags[Tonga]=$'\U1F1F9\U1F1F4' +emoji_flags[Turkey]=$'\U1F1F9\U1F1F7' +emoji_flags[Trinidad___Tobago]=$'\U1F1F9\U1F1F9' +emoji_flags[Tuvalu]=$'\U1F1F9\U1F1FB' +emoji_flags[Taiwan]=$'\U1F1F9\U1F1FC' +emoji_flags[Tanzania]=$'\U1F1F9\U1F1FF' +emoji_flags[Ukraine]=$'\U1F1FA\U1F1E6' +emoji_flags[Uganda]=$'\U1F1FA\U1F1EC' +emoji_flags[U_S__Outlying_Islands]=$'\U1F1FA\U1F1F2' +emoji_flags[United_States]=$'\U1F1FA\U1F1F8' +emoji_flags[Uruguay]=$'\U1F1FA\U1F1FE' +emoji_flags[Uzbekistan]=$'\U1F1FA\U1F1FF' +emoji_flags[Vatican_City]=$'\U1F1FB\U1F1E6' +emoji_flags[St__Vincent___Grenadines]=$'\U1F1FB\U1F1E8' +emoji_flags[Venezuela]=$'\U1F1FB\U1F1EA' +emoji_flags[British_Virgin_Islands]=$'\U1F1FB\U1F1EC' +emoji_flags[U_S__Virgin_Islands]=$'\U1F1FB\U1F1EE' +emoji_flags[Vietnam]=$'\U1F1FB\U1F1F3' +emoji_flags[Vanuatu]=$'\U1F1FB\U1F1FA' +emoji_flags[Wallis___Futuna]=$'\U1F1FC\U1F1EB' +emoji_flags[Samoa]=$'\U1F1FC\U1F1F8' +emoji_flags[Kosovo]=$'\U1F1FD\U1F1F0' +emoji_flags[Yemen]=$'\U1F1FE\U1F1EA' +emoji_flags[Mayotte]=$'\U1F1FE\U1F1F9' +emoji_flags[South_Africa]=$'\U1F1FF\U1F1E6' +emoji_flags[Zambia]=$'\U1F1FF\U1F1F2' +emoji_flags[Zimbabwe]=$'\U1F1FF\U1F1FC' + diff --git a/plugins/emoji/emoji-data.txt b/plugins/emoji/emoji-data.txt new file mode 100644 index 000000000..7b4c015f7 --- /dev/null +++ b/plugins/emoji/emoji-data.txt @@ -0,0 +1,1308 @@ +# DRAFT emoji-data.txt +# For details about the format and other information, see /../../../reports/tr51/index.html#Data_Files. +# +# Format: Code ; Default_Emoji_Style ; Emoji_Level ; Emoji_Modifier_Status ; Emoji_Sources # Comment +# +# Field 1 โ Default_Emoji_Style: +# text: default text presentation +# emoji: default emoji presentation +# Field 2 โ Emoji_Level: +# L1: level 1 emoji +# L2: level 2 emoji +# NA: not applicable +# Field 3 โ Emoji_Modifier_Status: +# modifier: an emoji modifier +# primary: a primary emoji modifier base +# secondary: a secondary emoji modifier base +# none: not applicable +# Field 4 โ Emoji_Sources: +# one or more values from {z, a, j, w, x} +# see the key in http://www.unicode.org/draft/reports/tr51/tr51.html#Major_Sources +# NA: not applicable +# Comment โ currently contains the version where the character was first encoded, +# followed by: +# - a character name in uppercase (for a single character), +# - a keycap name, +# - an associated flag, where is associated with value unicode region code +# +00A9 ; text ; L1 ; none ; j # V1.1 (ยฉ) COPYRIGHT SIGN +00AE ; text ; L1 ; none ; j # V1.1 (ยฎ) REGISTERED SIGN +203C ; text ; L1 ; none ; a j # V1.1 (โผ) DOUBLE EXCLAMATION MARK +2049 ; text ; L1 ; none ; a j # V3.0 (โ) EXCLAMATION QUESTION MARK +2122 ; text ; L1 ; none ; j # V1.1 (โข) TRADE MARK SIGN +2139 ; text ; L1 ; none ; j # V3.0 (โน) INFORMATION SOURCE +2194 ; text ; L1 ; none ; z j # V1.1 (โ) LEFT RIGHT ARROW +2195 ; text ; L1 ; none ; z j # V1.1 (โ) UP DOWN ARROW +2196 ; text ; L1 ; none ; j # V1.1 (โ) NORTH WEST ARROW +2197 ; text ; L1 ; none ; j # V1.1 (โ) NORTH EAST ARROW +2198 ; text ; L1 ; none ; j # V1.1 (โ) SOUTH EAST ARROW +2199 ; text ; L1 ; none ; j # V1.1 (โ) SOUTH WEST ARROW +21A9 ; text ; L1 ; none ; j # V1.1 (โฉ) LEFTWARDS ARROW WITH HOOK +21AA ; text ; L1 ; none ; j # V1.1 (โช) RIGHTWARDS ARROW WITH HOOK +231A ; emoji ; L1 ; none ; j # V1.1 (โ) WATCH +231B ; emoji ; L1 ; none ; j # V1.1 (โ) HOURGLASS +2328 ; text ; L2 ; none ; x # V1.1 (โจ) KEYBOARD +23CF ; text ; L2 ; none ; x # V4.0 (โ) EJECT SYMBOL +23E9 ; emoji ; L1 ; none ; j w # V6.0 (โฉ) BLACK RIGHT-POINTING DOUBLE TRIANGLE +23EA ; emoji ; L1 ; none ; j w # V6.0 (โช) BLACK LEFT-POINTING DOUBLE TRIANGLE +23EB ; emoji ; L1 ; none ; j # V6.0 (โซ) BLACK UP-POINTING DOUBLE TRIANGLE +23EC ; emoji ; L1 ; none ; j # V6.0 (โฌ) BLACK DOWN-POINTING DOUBLE TRIANGLE +23ED ; text ; L2 ; none ; w # V6.0 (โญ) BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR +23EE ; text ; L2 ; none ; w # V6.0 (โฎ) BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR +23EF ; text ; L2 ; none ; x # V6.0 (โฏ) BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR +23F0 ; emoji ; L1 ; none ; j # V6.0 (โฐ) ALARM CLOCK +23F1 ; text ; L2 ; none ; x # V6.0 (โฑ) STOPWATCH +23F2 ; text ; L2 ; none ; x # V6.0 (โฒ) TIMER CLOCK +23F3 ; emoji ; L1 ; none ; j w # V6.0 (โณ) HOURGLASS WITH FLOWING SAND +23F8 ; text ; L2 ; none ; w # V7.0 (โธ) DOUBLE VERTICAL BAR +23F9 ; text ; L2 ; none ; w # V7.0 (โน) BLACK SQUARE FOR STOP +23FA ; text ; L2 ; none ; w # V7.0 (โบ) BLACK CIRCLE FOR RECORD +24C2 ; text ; L1 ; none ; j # V1.1 (โ) CIRCLED LATIN CAPITAL LETTER M +25AA ; text ; L1 ; none ; j w # V1.1 (โช) BLACK SMALL SQUARE +25AB ; text ; L1 ; none ; j # V1.1 (โซ) WHITE SMALL SQUARE +25B6 ; text ; L1 ; none ; a j w # V1.1 (โถ) BLACK RIGHT-POINTING TRIANGLE +25C0 ; text ; L1 ; none ; a j w # V1.1 (โ) BLACK LEFT-POINTING TRIANGLE +25FB ; text ; L1 ; none ; j # V3.2 (โป) WHITE MEDIUM SQUARE +25FC ; text ; L1 ; none ; j w # V3.2 (โผ) BLACK MEDIUM SQUARE +25FD ; emoji ; L1 ; none ; j # V3.2 (โฝ) WHITE MEDIUM SMALL SQUARE +25FE ; emoji ; L1 ; none ; j w # V3.2 (โพ) BLACK MEDIUM SMALL SQUARE +2600 ; text ; L1 ; none ; a j # V1.1 (โ) BLACK SUN WITH RAYS +2601 ; text ; L1 ; none ; a j w # V1.1 (โ) CLOUD +2602 ; text ; L2 ; none ; a # V1.1 (โ) UMBRELLA +2603 ; text ; L2 ; none ; a # V1.1 (โ) SNOWMAN +2604 ; text ; L2 ; none ; x # V1.1 (โ) COMET +260E ; text ; L1 ; none ; z a j # V1.1 (โ) BLACK TELEPHONE +2611 ; text ; L1 ; none ; j w # V1.1 (โ) BALLOT BOX WITH CHECK +2614 ; emoji ; L1 ; none ; a j # V4.0 (โ) UMBRELLA WITH RAIN DROPS +2615 ; emoji ; L1 ; none ; j # V4.0 (โ) HOT BEVERAGE +2618 ; text ; L2 ; none ; x # V4.1 (โ) SHAMROCK +261D ; text ; L1 ; secondary ; j w # V1.1 (โ) WHITE UP POINTING INDEX +2620 ; text ; L2 ; none ; x # V1.1 (โ ) SKULL AND CROSSBONES +2622 ; text ; L2 ; none ; x # V1.1 (โข) RADIOACTIVE SIGN +2623 ; text ; L2 ; none ; x # V1.1 (โฃ) BIOHAZARD SIGN +2626 ; text ; L2 ; none ; x # V1.1 (โฆ) ORTHODOX CROSS +262A ; text ; L2 ; none ; w # V1.1 (โช) STAR AND CRESCENT +262E ; text ; L2 ; none ; x # V1.1 (โฎ) PEACE SYMBOL +262F ; text ; L2 ; none ; w # V1.1 (โฏ) YIN YANG +2638 ; text ; L2 ; none ; w # V1.1 (โธ) WHEEL OF DHARMA +2639 ; text ; L2 ; secondary ; w # V1.1 (โน) WHITE FROWNING FACE +263A ; text ; L1 ; secondary ; j w # V1.1 (โบ) WHITE SMILING FACE +2648 ; emoji ; L1 ; none ; j w # V1.1 (โ) ARIES +2649 ; emoji ; L1 ; none ; j w # V1.1 (โ) TAURUS +264A ; emoji ; L1 ; none ; j w # V1.1 (โ) GEMINI +264B ; emoji ; L1 ; none ; j w # V1.1 (โ) CANCER +264C ; emoji ; L1 ; none ; j w # V1.1 (โ) LEO +264D ; emoji ; L1 ; none ; j w # V1.1 (โ) VIRGO +264E ; emoji ; L1 ; none ; j w # V1.1 (โ) LIBRA +264F ; emoji ; L1 ; none ; j w # V1.1 (โ) SCORPIUS +2650 ; emoji ; L1 ; none ; j w # V1.1 (โ) SAGITTARIUS +2651 ; emoji ; L1 ; none ; j w # V1.1 (โ) CAPRICORN +2652 ; emoji ; L1 ; none ; j w # V1.1 (โ) AQUARIUS +2653 ; emoji ; L1 ; none ; j w # V1.1 (โ) PISCES +2660 ; text ; L1 ; none ; z a j # V1.1 (โ ) BLACK SPADE SUIT +2663 ; text ; L1 ; none ; z a j # V1.1 (โฃ) BLACK CLUB SUIT +2665 ; text ; L1 ; none ; z a j # V1.1 (โฅ) BLACK HEART SUIT +2666 ; text ; L1 ; none ; z a j # V1.1 (โฆ) BLACK DIAMOND SUIT +2668 ; text ; L1 ; none ; a j # V1.1 (โจ) HOT SPRINGS +267B ; text ; L1 ; none ; j # V3.2 (โป) BLACK UNIVERSAL RECYCLING SYMBOL +267F ; emoji ; L1 ; none ; j w # V4.1 (โฟ) WHEELCHAIR SYMBOL +2692 ; text ; L2 ; none ; x # V4.1 (โ) HAMMER AND PICK +2693 ; emoji ; L1 ; none ; a j # V4.1 (โ) ANCHOR +2694 ; text ; L2 ; none ; x # V4.1 (โ) CROSSED SWORDS +2696 ; text ; L2 ; none ; x # V4.1 (โ) SCALES +2697 ; text ; L2 ; none ; x # V4.1 (โ) ALEMBIC +2699 ; text ; L2 ; none ; x # V4.1 (โ) GEAR +269B ; text ; L2 ; none ; x # V4.1 (โ) ATOM SYMBOL +269C ; text ; L2 ; none ; x # V4.1 (โ) FLEUR-DE-LIS +26A0 ; text ; L1 ; none ; j # V4.0 (โ ) WARNING SIGN +26A1 ; emoji ; L1 ; none ; a j # V4.0 (โก) HIGH VOLTAGE SIGN +26AA ; emoji ; L1 ; none ; j # V4.1 (โช) MEDIUM WHITE CIRCLE +26AB ; emoji ; L1 ; none ; j w # V4.1 (โซ) MEDIUM BLACK CIRCLE +26B0 ; text ; L2 ; none ; x # V4.1 (โฐ) COFFIN +26B1 ; text ; L2 ; none ; x # V4.1 (โฑ) FUNERAL URN +26BD ; emoji ; L1 ; none ; j # V5.2 (โฝ) SOCCER BALL +26BE ; emoji ; L1 ; none ; a j # V5.2 (โพ) BASEBALL +26C4 ; emoji ; L1 ; none ; a j # V5.2 (โ) SNOWMAN WITHOUT SNOW +26C5 ; emoji ; L1 ; none ; a j # V5.2 (โ
) SUN BEHIND CLOUD +26C8 ; text ; L2 ; none ; a # V5.2 (โ) THUNDER CLOUD AND RAIN +26CE ; emoji ; L1 ; none ; a j # V6.0 (โ) OPHIUCHUS +26CF ; text ; L2 ; none ; a # V5.2 (โ) PICK +26D1 ; text ; L2 ; none ; a # V5.2 (โ) HELMET WITH WHITE CROSS +26D3 ; text ; L2 ; none ; a # V5.2 (โ) CHAINS +26D4 ; emoji ; L1 ; none ; a j # V5.2 (โ) NO ENTRY +26E9 ; text ; L2 ; none ; a # V5.2 (โฉ) SHINTO SHRINE +26EA ; emoji ; L1 ; none ; a j # V5.2 (โช) CHURCH +26F0 ; text ; L2 ; none ; a # V5.2 (โฐ) MOUNTAIN +26F1 ; text ; L2 ; none ; a # V5.2 (โฑ) UMBRELLA ON GROUND +26F2 ; emoji ; L1 ; none ; a j # V5.2 (โฒ) FOUNTAIN +26F3 ; emoji ; L1 ; none ; a j w # V5.2 (โณ) FLAG IN HOLE +26F4 ; text ; L2 ; none ; a # V5.2 (โด) FERRY +26F5 ; emoji ; L1 ; none ; a j # V5.2 (โต) SAILBOAT +26F7 ; text ; L2 ; none ; a w # V5.2 (โท) SKIER +26F8 ; text ; L2 ; none ; a # V5.2 (โธ) ICE SKATE +26F9 ; text ; L2 ; none ; a # V5.2 (โน) PERSON WITH BALL +26FA ; emoji ; L1 ; none ; a j # V5.2 (โบ) TENT +26FD ; emoji ; L1 ; none ; a j # V5.2 (โฝ) FUEL PUMP +2702 ; text ; L1 ; none ; z j w # V1.1 (โ) BLACK SCISSORS +2705 ; emoji ; L1 ; none ; j # V6.0 (โ
) WHITE HEAVY CHECK MARK +2708 ; text ; L1 ; none ; z a j w # V1.1 (โ) AIRPLANE +2709 ; text ; L1 ; none ; z j # V1.1 (โ) ENVELOPE +270A ; emoji ; L1 ; secondary ; j # V6.0 (โ) RAISED FIST +270B ; emoji ; L1 ; secondary ; j # V6.0 (โ) RAISED HAND +270C ; text ; L1 ; secondary ; z j w # V1.1 (โ) VICTORY HAND +270D ; text ; L2 ; secondary ; z w # V1.1 (โ) WRITING HAND +270F ; text ; L1 ; none ; z j # V1.1 (โ) PENCIL +2712 ; text ; L1 ; none ; z j # V1.1 (โ) BLACK NIB +2714 ; text ; L1 ; none ; z j w # V1.1 (โ) HEAVY CHECK MARK +2716 ; text ; L1 ; none ; z j # V1.1 (โ) HEAVY MULTIPLICATION X +271D ; text ; L2 ; none ; w # V1.1 (โ) LATIN CROSS +2721 ; text ; L2 ; none ; w # V1.1 (โก) STAR OF DAVID +2728 ; emoji ; L1 ; none ; j # V6.0 (โจ) SPARKLES +2733 ; text ; L1 ; none ; z j # V1.1 (โณ) EIGHT SPOKED ASTERISK +2734 ; text ; L1 ; none ; z j # V1.1 (โด) EIGHT POINTED BLACK STAR +2744 ; text ; L1 ; none ; z j w # V1.1 (โ) SNOWFLAKE +2747 ; text ; L1 ; none ; z j # V1.1 (โ) SPARKLE +274C ; emoji ; L1 ; none ; j # V6.0 (โ) CROSS MARK +274E ; emoji ; L1 ; none ; j # V6.0 (โ) NEGATIVE SQUARED CROSS MARK +2753 ; emoji ; L1 ; none ; j w # V6.0 (โ) BLACK QUESTION MARK ORNAMENT +2754 ; emoji ; L1 ; none ; j # V6.0 (โ) WHITE QUESTION MARK ORNAMENT +2755 ; emoji ; L1 ; none ; j # V6.0 (โ) WHITE EXCLAMATION MARK ORNAMENT +2757 ; emoji ; L1 ; none ; j # V5.2 (โ) HEAVY EXCLAMATION MARK SYMBOL +2763 ; text ; L2 ; none ; z # V1.1 (โฃ) HEAVY HEART EXCLAMATION MARK ORNAMENT +2764 ; text ; L1 ; none ; z j # V1.1 (โค) HEAVY BLACK HEART +2795 ; emoji ; L1 ; none ; j # V6.0 (โ) HEAVY PLUS SIGN +2796 ; emoji ; L1 ; none ; j # V6.0 (โ) HEAVY MINUS SIGN +2797 ; emoji ; L1 ; none ; j # V6.0 (โ) HEAVY DIVISION SIGN +27A1 ; text ; L1 ; none ; z a j # V1.1 (โก) BLACK RIGHTWARDS ARROW +27B0 ; emoji ; L1 ; none ; j # V6.0 (โฐ) CURLY LOOP +27BF ; emoji ; L1 ; none ; x # V6.0 (โฟ) DOUBLE CURLY LOOP +2934 ; text ; L1 ; none ; j # V3.2 (โคด) ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS +2935 ; text ; L1 ; none ; j # V3.2 (โคต) ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS +2B05 ; text ; L1 ; none ; a j # V4.0 (โฌ
) LEFTWARDS BLACK ARROW +2B06 ; text ; L1 ; none ; a j # V4.0 (โฌ) UPWARDS BLACK ARROW +2B07 ; text ; L1 ; none ; a j # V4.0 (โฌ) DOWNWARDS BLACK ARROW +2B1B ; emoji ; L1 ; none ; a j w # V5.1 (โฌ) BLACK LARGE SQUARE +2B1C ; emoji ; L1 ; none ; j w # V5.1 (โฌ) WHITE LARGE SQUARE +2B50 ; emoji ; L1 ; none ; j # V5.1 (โญ) WHITE MEDIUM STAR +2B55 ; emoji ; L1 ; none ; j # V5.2 (โญ) HEAVY LARGE CIRCLE +3030 ; text ; L1 ; none ; j # V1.1 (ใฐ) WAVY DASH +303D ; text ; L1 ; none ; j # V3.2 (ใฝ) PART ALTERNATION MARK +3297 ; text ; L1 ; none ; j # V1.1 (ใ) CIRCLED IDEOGRAPH CONGRATULATION +3299 ; text ; L1 ; none ; a j # V1.1 (ใ) CIRCLED IDEOGRAPH SECRET +1F004 ; emoji ; L1 ; none ; j # V5.1 (๐) MAHJONG TILE RED DRAGON +1F0CF ; emoji ; L1 ; none ; j # V6.0 (๐) PLAYING CARD BLACK JOKER +1F170 ; text ; L1 ; none ; j # V6.0 (๐
ฐ) NEGATIVE SQUARED LATIN CAPITAL LETTER A +1F171 ; text ; L1 ; none ; j # V6.0 (๐
ฑ) NEGATIVE SQUARED LATIN CAPITAL LETTER B +1F17E ; text ; L1 ; none ; j # V6.0 (๐
พ) NEGATIVE SQUARED LATIN CAPITAL LETTER O +1F17F ; text ; L1 ; none ; a j # V5.2 (๐
ฟ) NEGATIVE SQUARED LATIN CAPITAL LETTER P +1F18E ; emoji ; L1 ; none ; j # V6.0 (๐) NEGATIVE SQUARED AB +1F191 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED CL +1F192 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED COOL +1F193 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED FREE +1F194 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED ID +1F195 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED NEW +1F196 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED NG +1F197 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED OK +1F198 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED SOS +1F199 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED UP WITH EXCLAMATION MARK +1F19A ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED VS +1F201 ; emoji ; L1 ; none ; j # V6.0 (๐) SQUARED KATAKANA KOKO +1F202 ; text ; L1 ; none ; j # V6.0 (๐) SQUARED KATAKANA SA +1F21A ; emoji ; L1 ; none ; a j # V5.2 (๐) SQUARED CJK UNIFIED IDEOGRAPH-7121 +1F22F ; emoji ; L1 ; none ; a j # V5.2 (๐ฏ) SQUARED CJK UNIFIED IDEOGRAPH-6307 +1F232 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) SQUARED CJK UNIFIED IDEOGRAPH-7981 +1F233 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) SQUARED CJK UNIFIED IDEOGRAPH-7A7A +1F234 ; emoji ; L1 ; none ; j # V6.0 (๐ด) SQUARED CJK UNIFIED IDEOGRAPH-5408 +1F235 ; emoji ; L1 ; none ; j # V6.0 (๐ต) SQUARED CJK UNIFIED IDEOGRAPH-6E80 +1F236 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) SQUARED CJK UNIFIED IDEOGRAPH-6709 +1F237 ; text ; L1 ; none ; j # V6.0 (๐ท) SQUARED CJK UNIFIED IDEOGRAPH-6708 +1F238 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) SQUARED CJK UNIFIED IDEOGRAPH-7533 +1F239 ; emoji ; L1 ; none ; j # V6.0 (๐น) SQUARED CJK UNIFIED IDEOGRAPH-5272 +1F23A ; emoji ; L1 ; none ; j # V6.0 (๐บ) SQUARED CJK UNIFIED IDEOGRAPH-55B6 +1F250 ; emoji ; L1 ; none ; j # V6.0 (๐) CIRCLED IDEOGRAPH ADVANTAGE +1F251 ; emoji ; L1 ; none ; j # V6.0 (๐) CIRCLED IDEOGRAPH ACCEPT +1F300 ; emoji ; L1 ; none ; j # V6.0 (๐) CYCLONE +1F301 ; emoji ; L1 ; none ; j # V6.0 (๐) FOGGY +1F302 ; emoji ; L1 ; none ; j # V6.0 (๐) CLOSED UMBRELLA +1F303 ; emoji ; L1 ; none ; j # V6.0 (๐) NIGHT WITH STARS +1F304 ; emoji ; L1 ; none ; j # V6.0 (๐) SUNRISE OVER MOUNTAINS +1F305 ; emoji ; L1 ; none ; j # V6.0 (๐
) SUNRISE +1F306 ; emoji ; L1 ; none ; j # V6.0 (๐) CITYSCAPE AT DUSK +1F307 ; emoji ; L1 ; none ; j # V6.0 (๐) SUNSET OVER BUILDINGS +1F308 ; emoji ; L1 ; none ; j # V6.0 (๐) RAINBOW +1F309 ; emoji ; L1 ; none ; j # V6.0 (๐) BRIDGE AT NIGHT +1F30A ; emoji ; L1 ; none ; j # V6.0 (๐) WATER WAVE +1F30B ; emoji ; L1 ; none ; j # V6.0 (๐) VOLCANO +1F30C ; emoji ; L1 ; none ; j # V6.0 (๐) MILKY WAY +1F30D ; emoji ; L1 ; none ; w # V6.0 (๐) EARTH GLOBE EUROPE-AFRICA +1F30E ; emoji ; L1 ; none ; w # V6.0 (๐) EARTH GLOBE AMERICAS +1F30F ; emoji ; L1 ; none ; j w # V6.0 (๐) EARTH GLOBE ASIA-AUSTRALIA +1F310 ; emoji ; L1 ; none ; x # V6.0 (๐) GLOBE WITH MERIDIANS +1F311 ; emoji ; L1 ; none ; j # V6.0 (๐) NEW MOON SYMBOL +1F312 ; emoji ; L1 ; none ; x # V6.0 (๐) WAXING CRESCENT MOON SYMBOL +1F313 ; emoji ; L1 ; none ; j # V6.0 (๐) FIRST QUARTER MOON SYMBOL +1F314 ; emoji ; L1 ; none ; j # V6.0 (๐) WAXING GIBBOUS MOON SYMBOL +1F315 ; emoji ; L1 ; none ; j w # V6.0 (๐) FULL MOON SYMBOL +1F316 ; emoji ; L1 ; none ; x # V6.0 (๐) WANING GIBBOUS MOON SYMBOL +1F317 ; emoji ; L1 ; none ; x # V6.0 (๐) LAST QUARTER MOON SYMBOL +1F318 ; emoji ; L1 ; none ; x # V6.0 (๐) WANING CRESCENT MOON SYMBOL +1F319 ; emoji ; L1 ; none ; j # V6.0 (๐) CRESCENT MOON +1F31A ; emoji ; L1 ; none ; x # V6.0 (๐) NEW MOON WITH FACE +1F31B ; emoji ; L1 ; none ; j # V6.0 (๐) FIRST QUARTER MOON WITH FACE +1F31C ; emoji ; L1 ; none ; w # V6.0 (๐) LAST QUARTER MOON WITH FACE +1F31D ; emoji ; L1 ; none ; x # V6.0 (๐) FULL MOON WITH FACE +1F31E ; emoji ; L1 ; none ; x # V6.0 (๐) SUN WITH FACE +1F31F ; emoji ; L1 ; none ; j # V6.0 (๐) GLOWING STAR +1F320 ; emoji ; L1 ; none ; j # V6.0 (๐ ) SHOOTING STAR +1F321 ; text ; L2 ; none ; w # V7.0 (๐ก) THERMOMETER +1F324 ; text ; L2 ; none ; w # V7.0 (๐ค) WHITE SUN WITH SMALL CLOUD +1F325 ; text ; L2 ; none ; w # V7.0 (๐ฅ) WHITE SUN BEHIND CLOUD +1F326 ; text ; L2 ; none ; w # V7.0 (๐ฆ) WHITE SUN BEHIND CLOUD WITH RAIN +1F327 ; text ; L2 ; none ; w # V7.0 (๐ง) CLOUD WITH RAIN +1F328 ; text ; L2 ; none ; w # V7.0 (๐จ) CLOUD WITH SNOW +1F329 ; text ; L2 ; none ; w # V7.0 (๐ฉ) CLOUD WITH LIGHTNING +1F32A ; text ; L2 ; none ; w # V7.0 (๐ช) CLOUD WITH TORNADO +1F32B ; text ; L2 ; none ; w # V7.0 (๐ซ) FOG +1F32C ; text ; L2 ; none ; w # V7.0 (๐ฌ) WIND BLOWING FACE +1F32D ; emoji ; L2 ; none ; x # V8.0 (๐ญ) HOT DOG +1F32E ; emoji ; L2 ; none ; x # V8.0 (๐ฎ) TACO +1F32F ; emoji ; L2 ; none ; x # V8.0 (๐ฏ) BURRITO +1F330 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) CHESTNUT +1F331 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) SEEDLING +1F332 ; emoji ; L1 ; none ; x # V6.0 (๐ฒ) EVERGREEN TREE +1F333 ; emoji ; L1 ; none ; x # V6.0 (๐ณ) DECIDUOUS TREE +1F334 ; emoji ; L1 ; none ; j # V6.0 (๐ด) PALM TREE +1F335 ; emoji ; L1 ; none ; j # V6.0 (๐ต) CACTUS +1F336 ; text ; L2 ; none ; w # V7.0 (๐ถ) HOT PEPPER +1F337 ; emoji ; L1 ; none ; j # V6.0 (๐ท) TULIP +1F338 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) CHERRY BLOSSOM +1F339 ; emoji ; L1 ; none ; j # V6.0 (๐น) ROSE +1F33A ; emoji ; L1 ; none ; j # V6.0 (๐บ) HIBISCUS +1F33B ; emoji ; L1 ; none ; j # V6.0 (๐ป) SUNFLOWER +1F33C ; emoji ; L1 ; none ; j # V6.0 (๐ผ) BLOSSOM +1F33D ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) EAR OF MAIZE +1F33E ; emoji ; L1 ; none ; j # V6.0 (๐พ) EAR OF RICE +1F33F ; emoji ; L1 ; none ; j # V6.0 (๐ฟ) HERB +1F340 ; emoji ; L1 ; none ; j # V6.0 (๐) FOUR LEAF CLOVER +1F341 ; emoji ; L1 ; none ; j # V6.0 (๐) MAPLE LEAF +1F342 ; emoji ; L1 ; none ; j # V6.0 (๐) FALLEN LEAF +1F343 ; emoji ; L1 ; none ; j # V6.0 (๐) LEAF FLUTTERING IN WIND +1F344 ; emoji ; L1 ; none ; j # V6.0 (๐) MUSHROOM +1F345 ; emoji ; L1 ; none ; j # V6.0 (๐
) TOMATO +1F346 ; emoji ; L1 ; none ; j # V6.0 (๐) AUBERGINE +1F347 ; emoji ; L1 ; none ; j # V6.0 (๐) GRAPES +1F348 ; emoji ; L1 ; none ; j # V6.0 (๐) MELON +1F349 ; emoji ; L1 ; none ; j # V6.0 (๐) WATERMELON +1F34A ; emoji ; L1 ; none ; j # V6.0 (๐) TANGERINE +1F34B ; emoji ; L1 ; none ; x # V6.0 (๐) LEMON +1F34C ; emoji ; L1 ; none ; j # V6.0 (๐) BANANA +1F34D ; emoji ; L1 ; none ; j # V6.0 (๐) PINEAPPLE +1F34E ; emoji ; L1 ; none ; j # V6.0 (๐) RED APPLE +1F34F ; emoji ; L1 ; none ; j # V6.0 (๐) GREEN APPLE +1F350 ; emoji ; L1 ; none ; x # V6.0 (๐) PEAR +1F351 ; emoji ; L1 ; none ; j # V6.0 (๐) PEACH +1F352 ; emoji ; L1 ; none ; j # V6.0 (๐) CHERRIES +1F353 ; emoji ; L1 ; none ; j # V6.0 (๐) STRAWBERRY +1F354 ; emoji ; L1 ; none ; j # V6.0 (๐) HAMBURGER +1F355 ; emoji ; L1 ; none ; j # V6.0 (๐) SLICE OF PIZZA +1F356 ; emoji ; L1 ; none ; j # V6.0 (๐) MEAT ON BONE +1F357 ; emoji ; L1 ; none ; j # V6.0 (๐) POULTRY LEG +1F358 ; emoji ; L1 ; none ; j # V6.0 (๐) RICE CRACKER +1F359 ; emoji ; L1 ; none ; j # V6.0 (๐) RICE BALL +1F35A ; emoji ; L1 ; none ; j # V6.0 (๐) COOKED RICE +1F35B ; emoji ; L1 ; none ; j # V6.0 (๐) CURRY AND RICE +1F35C ; emoji ; L1 ; none ; j # V6.0 (๐) STEAMING BOWL +1F35D ; emoji ; L1 ; none ; j # V6.0 (๐) SPAGHETTI +1F35E ; emoji ; L1 ; none ; j # V6.0 (๐) BREAD +1F35F ; emoji ; L1 ; none ; j # V6.0 (๐) FRENCH FRIES +1F360 ; emoji ; L1 ; none ; j # V6.0 (๐ ) ROASTED SWEET POTATO +1F361 ; emoji ; L1 ; none ; j # V6.0 (๐ก) DANGO +1F362 ; emoji ; L1 ; none ; j # V6.0 (๐ข) ODEN +1F363 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) SUSHI +1F364 ; emoji ; L1 ; none ; j # V6.0 (๐ค) FRIED SHRIMP +1F365 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) FISH CAKE WITH SWIRL DESIGN +1F366 ; emoji ; L1 ; none ; j # V6.0 (๐ฆ) SOFT ICE CREAM +1F367 ; emoji ; L1 ; none ; j # V6.0 (๐ง) SHAVED ICE +1F368 ; emoji ; L1 ; none ; j # V6.0 (๐จ) ICE CREAM +1F369 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) DOUGHNUT +1F36A ; emoji ; L1 ; none ; j # V6.0 (๐ช) COOKIE +1F36B ; emoji ; L1 ; none ; j # V6.0 (๐ซ) CHOCOLATE BAR +1F36C ; emoji ; L1 ; none ; j # V6.0 (๐ฌ) CANDY +1F36D ; emoji ; L1 ; none ; j # V6.0 (๐ญ) LOLLIPOP +1F36E ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) CUSTARD +1F36F ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) HONEY POT +1F370 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) SHORTCAKE +1F371 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) BENTO BOX +1F372 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) POT OF FOOD +1F373 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) COOKING +1F374 ; emoji ; L1 ; none ; j # V6.0 (๐ด) FORK AND KNIFE +1F375 ; emoji ; L1 ; none ; j # V6.0 (๐ต) TEACUP WITHOUT HANDLE +1F376 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) SAKE BOTTLE AND CUP +1F377 ; emoji ; L1 ; none ; j # V6.0 (๐ท) WINE GLASS +1F378 ; emoji ; L1 ; none ; j w # V6.0 (๐ธ) COCKTAIL GLASS +1F379 ; emoji ; L1 ; none ; j # V6.0 (๐น) TROPICAL DRINK +1F37A ; emoji ; L1 ; none ; j # V6.0 (๐บ) BEER MUG +1F37B ; emoji ; L1 ; none ; j # V6.0 (๐ป) CLINKING BEER MUGS +1F37C ; emoji ; L1 ; none ; x # V6.0 (๐ผ) BABY BOTTLE +1F37D ; text ; L2 ; none ; w # V7.0 (๐ฝ) FORK AND KNIFE WITH PLATE +1F37E ; emoji ; L2 ; none ; x # V8.0 (๐พ) BOTTLE WITH POPPING CORK +1F37F ; emoji ; L2 ; none ; x # V8.0 (๐ฟ) POPCORN +1F380 ; emoji ; L1 ; none ; j # V6.0 (๐) RIBBON +1F381 ; emoji ; L1 ; none ; j # V6.0 (๐) WRAPPED PRESENT +1F382 ; emoji ; L1 ; none ; j # V6.0 (๐) BIRTHDAY CAKE +1F383 ; emoji ; L1 ; none ; j # V6.0 (๐) JACK-O-LANTERN +1F384 ; emoji ; L1 ; none ; j # V6.0 (๐) CHRISTMAS TREE +1F385 ; emoji ; L1 ; primary ; j # V6.0 (๐
) FATHER CHRISTMAS +1F386 ; emoji ; L1 ; none ; j # V6.0 (๐) FIREWORKS +1F387 ; emoji ; L1 ; none ; j # V6.0 (๐) FIREWORK SPARKLER +1F388 ; emoji ; L1 ; none ; j # V6.0 (๐) BALLOON +1F389 ; emoji ; L1 ; none ; j # V6.0 (๐) PARTY POPPER +1F38A ; emoji ; L1 ; none ; j # V6.0 (๐) CONFETTI BALL +1F38B ; emoji ; L1 ; none ; j # V6.0 (๐) TANABATA TREE +1F38C ; emoji ; L1 ; none ; j # V6.0 (๐) CROSSED FLAGS +1F38D ; emoji ; L1 ; none ; j # V6.0 (๐) PINE DECORATION +1F38E ; emoji ; L1 ; none ; j # V6.0 (๐) JAPANESE DOLLS +1F38F ; emoji ; L1 ; none ; j # V6.0 (๐) CARP STREAMER +1F390 ; emoji ; L1 ; none ; j # V6.0 (๐) WIND CHIME +1F391 ; emoji ; L1 ; none ; j # V6.0 (๐) MOON VIEWING CEREMONY +1F392 ; emoji ; L1 ; none ; j # V6.0 (๐) SCHOOL SATCHEL +1F393 ; emoji ; L1 ; none ; j w # V6.0 (๐) GRADUATION CAP +1F396 ; text ; L2 ; none ; w # V7.0 (๐) MILITARY MEDAL +1F397 ; text ; L2 ; none ; w # V7.0 (๐) REMINDER RIBBON +1F399 ; text ; L2 ; none ; w # V7.0 (๐) STUDIO MICROPHONE +1F39A ; text ; L2 ; none ; w # V7.0 (๐) LEVEL SLIDER +1F39B ; text ; L2 ; none ; w # V7.0 (๐) CONTROL KNOBS +1F39E ; text ; L2 ; none ; w # V7.0 (๐) FILM FRAMES +1F39F ; text ; L2 ; none ; w # V7.0 (๐) ADMISSION TICKETS +1F3A0 ; emoji ; L1 ; none ; j # V6.0 (๐ ) CAROUSEL HORSE +1F3A1 ; emoji ; L1 ; none ; j # V6.0 (๐ก) FERRIS WHEEL +1F3A2 ; emoji ; L1 ; none ; j # V6.0 (๐ข) ROLLER COASTER +1F3A3 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) FISHING POLE AND FISH +1F3A4 ; emoji ; L1 ; none ; j # V6.0 (๐ค) MICROPHONE +1F3A5 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) MOVIE CAMERA +1F3A6 ; emoji ; L1 ; none ; j # V6.0 (๐ฆ) CINEMA +1F3A7 ; emoji ; L1 ; none ; j w # V6.0 (๐ง) HEADPHONE +1F3A8 ; emoji ; L1 ; none ; j # V6.0 (๐จ) ARTIST PALETTE +1F3A9 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) TOP HAT +1F3AA ; emoji ; L1 ; none ; j # V6.0 (๐ช) CIRCUS TENT +1F3AB ; emoji ; L1 ; none ; j # V6.0 (๐ซ) TICKET +1F3AC ; emoji ; L1 ; none ; j w # V6.0 (๐ฌ) CLAPPER BOARD +1F3AD ; emoji ; L1 ; none ; j w # V6.0 (๐ญ) PERFORMING ARTS +1F3AE ; emoji ; L1 ; none ; j w # V6.0 (๐ฎ) VIDEO GAME +1F3AF ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) DIRECT HIT +1F3B0 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) SLOT MACHINE +1F3B1 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) BILLIARDS +1F3B2 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) GAME DIE +1F3B3 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) BOWLING +1F3B4 ; emoji ; L1 ; none ; j # V6.0 (๐ด) FLOWER PLAYING CARDS +1F3B5 ; emoji ; L1 ; none ; j # V6.0 (๐ต) MUSICAL NOTE +1F3B6 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) MULTIPLE MUSICAL NOTES +1F3B7 ; emoji ; L1 ; none ; j # V6.0 (๐ท) SAXOPHONE +1F3B8 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) GUITAR +1F3B9 ; emoji ; L1 ; none ; j # V6.0 (๐น) MUSICAL KEYBOARD +1F3BA ; emoji ; L1 ; none ; j # V6.0 (๐บ) TRUMPET +1F3BB ; emoji ; L1 ; none ; j # V6.0 (๐ป) VIOLIN +1F3BC ; emoji ; L1 ; none ; j # V6.0 (๐ผ) MUSICAL SCORE +1F3BD ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) RUNNING SHIRT WITH SASH +1F3BE ; emoji ; L1 ; none ; j # V6.0 (๐พ) TENNIS RACQUET AND BALL +1F3BF ; emoji ; L1 ; none ; j # V6.0 (๐ฟ) SKI AND SKI BOOT +1F3C0 ; emoji ; L1 ; none ; j # V6.0 (๐) BASKETBALL AND HOOP +1F3C1 ; emoji ; L1 ; none ; j # V6.0 (๐) CHEQUERED FLAG +1F3C2 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) SNOWBOARDER +1F3C3 ; emoji ; L1 ; secondary ; j # V6.0 (๐) RUNNER +1F3C4 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) SURFER +1F3C5 ; emoji ; L2 ; none ; x # V7.0 (๐
) SPORTS MEDAL +1F3C6 ; emoji ; L1 ; none ; j w # V6.0 (๐) TROPHY +1F3C7 ; emoji ; L1 ; secondary ; x # V6.0 (๐) HORSE RACING +1F3C8 ; emoji ; L1 ; none ; j # V6.0 (๐) AMERICAN FOOTBALL +1F3C9 ; emoji ; L1 ; none ; x # V6.0 (๐) RUGBY FOOTBALL +1F3CA ; emoji ; L1 ; secondary ; j w # V6.0 (๐) SWIMMER +1F3CB ; text ; L2 ; none ; w # V7.0 (๐) WEIGHT LIFTER +1F3CC ; text ; L2 ; none ; w # V7.0 (๐) GOLFER +1F3CD ; text ; L2 ; none ; w # V7.0 (๐) RACING MOTORCYCLE +1F3CE ; text ; L2 ; none ; w # V7.0 (๐) RACING CAR +1F3CF ; emoji ; L2 ; none ; x # V8.0 (๐) CRICKET BAT AND BALL +1F3D0 ; emoji ; L2 ; none ; x # V8.0 (๐) VOLLEYBALL +1F3D1 ; emoji ; L2 ; none ; x # V8.0 (๐) FIELD HOCKEY STICK AND BALL +1F3D2 ; emoji ; L2 ; none ; x # V8.0 (๐) ICE HOCKEY STICK AND PUCK +1F3D3 ; emoji ; L2 ; none ; x # V8.0 (๐) TABLE TENNIS PADDLE AND BALL +1F3D4 ; text ; L2 ; none ; w # V7.0 (๐) SNOW CAPPED MOUNTAIN +1F3D5 ; text ; L2 ; none ; w # V7.0 (๐) CAMPING +1F3D6 ; text ; L2 ; none ; w # V7.0 (๐) BEACH WITH UMBRELLA +1F3D7 ; text ; L2 ; none ; w # V7.0 (๐) BUILDING CONSTRUCTION +1F3D8 ; text ; L2 ; none ; w # V7.0 (๐) HOUSE BUILDINGS +1F3D9 ; text ; L2 ; none ; w # V7.0 (๐) CITYSCAPE +1F3DA ; text ; L2 ; none ; w # V7.0 (๐) DERELICT HOUSE BUILDING +1F3DB ; text ; L2 ; none ; w # V7.0 (๐) CLASSICAL BUILDING +1F3DC ; text ; L2 ; none ; w # V7.0 (๐) DESERT +1F3DD ; text ; L2 ; none ; w # V7.0 (๐) DESERT ISLAND +1F3DE ; text ; L2 ; none ; w # V7.0 (๐) NATIONAL PARK +1F3DF ; text ; L2 ; none ; w # V7.0 (๐) STADIUM +1F3E0 ; emoji ; L1 ; none ; j w # V6.0 (๐ ) HOUSE BUILDING +1F3E1 ; emoji ; L1 ; none ; j # V6.0 (๐ก) HOUSE WITH GARDEN +1F3E2 ; emoji ; L1 ; none ; j # V6.0 (๐ข) OFFICE BUILDING +1F3E3 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) JAPANESE POST OFFICE +1F3E4 ; emoji ; L1 ; none ; x # V6.0 (๐ค) EUROPEAN POST OFFICE +1F3E5 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) HOSPITAL +1F3E6 ; emoji ; L1 ; none ; j # V6.0 (๐ฆ) BANK +1F3E7 ; emoji ; L1 ; none ; j # V6.0 (๐ง) AUTOMATED TELLER MACHINE +1F3E8 ; emoji ; L1 ; none ; j # V6.0 (๐จ) HOTEL +1F3E9 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) LOVE HOTEL +1F3EA ; emoji ; L1 ; none ; j # V6.0 (๐ช) CONVENIENCE STORE +1F3EB ; emoji ; L1 ; none ; j # V6.0 (๐ซ) SCHOOL +1F3EC ; emoji ; L1 ; none ; j # V6.0 (๐ฌ) DEPARTMENT STORE +1F3ED ; emoji ; L1 ; none ; j w # V6.0 (๐ญ) FACTORY +1F3EE ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) IZAKAYA LANTERN +1F3EF ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) JAPANESE CASTLE +1F3F0 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) EUROPEAN CASTLE +1F3F3 ; text ; L2 ; none ; w # V7.0 (๐ณ) WAVING WHITE FLAG +1F3F4 ; emoji ; L2 ; none ; x # V7.0 (๐ด) WAVING BLACK FLAG +1F3F5 ; text ; L2 ; none ; w # V7.0 (๐ต) ROSETTE +1F3F7 ; text ; L2 ; none ; w # V7.0 (๐ท) LABEL +1F3F8 ; emoji ; L2 ; none ; x # V8.0 (๐ธ) BADMINTON RACQUET AND SHUTTLECOCK +1F3F9 ; emoji ; L2 ; none ; x # V8.0 (๐น) BOW AND ARROW +1F3FA ; emoji ; L2 ; none ; x # V8.0 (๐บ) AMPHORA +1F3FB ; emoji ; L2 ; modifier ; x # V8.0 (๐ป) EMOJI MODIFIER FITZPATRICK TYPE-1-2 +1F3FC ; emoji ; L2 ; modifier ; x # V8.0 (๐ผ) EMOJI MODIFIER FITZPATRICK TYPE-3 +1F3FD ; emoji ; L2 ; modifier ; x # V8.0 (๐ฝ) EMOJI MODIFIER FITZPATRICK TYPE-4 +1F3FE ; emoji ; L2 ; modifier ; x # V8.0 (๐พ) EMOJI MODIFIER FITZPATRICK TYPE-5 +1F3FF ; emoji ; L2 ; modifier ; x # V8.0 (๐ฟ) EMOJI MODIFIER FITZPATRICK TYPE-6 +1F400 ; emoji ; L1 ; none ; x # V6.0 (๐) RAT +1F401 ; emoji ; L1 ; none ; x # V6.0 (๐) MOUSE +1F402 ; emoji ; L1 ; none ; x # V6.0 (๐) OX +1F403 ; emoji ; L1 ; none ; x # V6.0 (๐) WATER BUFFALO +1F404 ; emoji ; L1 ; none ; x # V6.0 (๐) COW +1F405 ; emoji ; L1 ; none ; x # V6.0 (๐
) TIGER +1F406 ; emoji ; L1 ; none ; x # V6.0 (๐) LEOPARD +1F407 ; emoji ; L1 ; none ; x # V6.0 (๐) RABBIT +1F408 ; emoji ; L1 ; none ; w # V6.0 (๐) CAT +1F409 ; emoji ; L1 ; none ; x # V6.0 (๐) DRAGON +1F40A ; emoji ; L1 ; none ; x # V6.0 (๐) CROCODILE +1F40B ; emoji ; L1 ; none ; x # V6.0 (๐) WHALE +1F40C ; emoji ; L1 ; none ; j # V6.0 (๐) SNAIL +1F40D ; emoji ; L1 ; none ; j # V6.0 (๐) SNAKE +1F40E ; emoji ; L1 ; none ; j # V6.0 (๐) HORSE +1F40F ; emoji ; L1 ; none ; x # V6.0 (๐) RAM +1F410 ; emoji ; L1 ; none ; x # V6.0 (๐) GOAT +1F411 ; emoji ; L1 ; none ; j # V6.0 (๐) SHEEP +1F412 ; emoji ; L1 ; none ; j # V6.0 (๐) MONKEY +1F413 ; emoji ; L1 ; none ; x # V6.0 (๐) ROOSTER +1F414 ; emoji ; L1 ; none ; j # V6.0 (๐) CHICKEN +1F415 ; emoji ; L1 ; none ; w # V6.0 (๐) DOG +1F416 ; emoji ; L1 ; none ; x # V6.0 (๐) PIG +1F417 ; emoji ; L1 ; none ; j # V6.0 (๐) BOAR +1F418 ; emoji ; L1 ; none ; j # V6.0 (๐) ELEPHANT +1F419 ; emoji ; L1 ; none ; j # V6.0 (๐) OCTOPUS +1F41A ; emoji ; L1 ; none ; j # V6.0 (๐) SPIRAL SHELL +1F41B ; emoji ; L1 ; none ; j # V6.0 (๐) BUG +1F41C ; emoji ; L1 ; none ; j # V6.0 (๐) ANT +1F41D ; emoji ; L1 ; none ; j # V6.0 (๐) HONEYBEE +1F41E ; emoji ; L1 ; none ; j # V6.0 (๐) LADY BEETLE +1F41F ; emoji ; L1 ; none ; j w # V6.0 (๐) FISH +1F420 ; emoji ; L1 ; none ; j # V6.0 (๐ ) TROPICAL FISH +1F421 ; emoji ; L1 ; none ; j # V6.0 (๐ก) BLOWFISH +1F422 ; emoji ; L1 ; none ; j # V6.0 (๐ข) TURTLE +1F423 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) HATCHING CHICK +1F424 ; emoji ; L1 ; none ; j # V6.0 (๐ค) BABY CHICK +1F425 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) FRONT-FACING BABY CHICK +1F426 ; emoji ; L1 ; none ; j w # V6.0 (๐ฆ) BIRD +1F427 ; emoji ; L1 ; none ; j # V6.0 (๐ง) PENGUIN +1F428 ; emoji ; L1 ; none ; j # V6.0 (๐จ) KOALA +1F429 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) POODLE +1F42A ; emoji ; L1 ; none ; x # V6.0 (๐ช) DROMEDARY CAMEL +1F42B ; emoji ; L1 ; none ; j # V6.0 (๐ซ) BACTRIAN CAMEL +1F42C ; emoji ; L1 ; none ; j # V6.0 (๐ฌ) DOLPHIN +1F42D ; emoji ; L1 ; none ; j # V6.0 (๐ญ) MOUSE FACE +1F42E ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) COW FACE +1F42F ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) TIGER FACE +1F430 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) RABBIT FACE +1F431 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) CAT FACE +1F432 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) DRAGON FACE +1F433 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) SPOUTING WHALE +1F434 ; emoji ; L1 ; none ; j # V6.0 (๐ด) HORSE FACE +1F435 ; emoji ; L1 ; none ; j # V6.0 (๐ต) MONKEY FACE +1F436 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) DOG FACE +1F437 ; emoji ; L1 ; none ; j # V6.0 (๐ท) PIG FACE +1F438 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) FROG FACE +1F439 ; emoji ; L1 ; none ; j # V6.0 (๐น) HAMSTER FACE +1F43A ; emoji ; L1 ; none ; j # V6.0 (๐บ) WOLF FACE +1F43B ; emoji ; L1 ; none ; j # V6.0 (๐ป) BEAR FACE +1F43C ; emoji ; L1 ; none ; j # V6.0 (๐ผ) PANDA FACE +1F43D ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) PIG NOSE +1F43E ; emoji ; L1 ; none ; j # V6.0 (๐พ) PAW PRINTS +1F43F ; text ; L2 ; none ; w # V7.0 (๐ฟ) CHIPMUNK +1F440 ; emoji ; L1 ; none ; j # V6.0 (๐) EYES +1F441 ; text ; L2 ; none ; w # V7.0 (๐) EYE +1F442 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) EAR +1F443 ; emoji ; L1 ; secondary ; j # V6.0 (๐) NOSE +1F444 ; emoji ; L1 ; none ; j # V6.0 (๐) MOUTH +1F445 ; emoji ; L1 ; none ; j # V6.0 (๐
) TONGUE +1F446 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) WHITE UP POINTING BACKHAND INDEX +1F447 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) WHITE DOWN POINTING BACKHAND INDEX +1F448 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) WHITE LEFT POINTING BACKHAND INDEX +1F449 ; emoji ; L1 ; secondary ; j w # V6.0 (๐) WHITE RIGHT POINTING BACKHAND INDEX +1F44A ; emoji ; L1 ; secondary ; j # V6.0 (๐) FISTED HAND SIGN +1F44B ; emoji ; L1 ; secondary ; j # V6.0 (๐) WAVING HAND SIGN +1F44C ; emoji ; L1 ; secondary ; j # V6.0 (๐) OK HAND SIGN +1F44D ; emoji ; L1 ; secondary ; j w # V6.0 (๐) THUMBS UP SIGN +1F44E ; emoji ; L1 ; secondary ; j w # V6.0 (๐) THUMBS DOWN SIGN +1F44F ; emoji ; L1 ; secondary ; j # V6.0 (๐) CLAPPING HANDS SIGN +1F450 ; emoji ; L1 ; secondary ; j # V6.0 (๐) OPEN HANDS SIGN +1F451 ; emoji ; L1 ; none ; j # V6.0 (๐) CROWN +1F452 ; emoji ; L1 ; none ; j # V6.0 (๐) WOMANS HAT +1F453 ; emoji ; L1 ; none ; j w # V6.0 (๐) EYEGLASSES +1F454 ; emoji ; L1 ; none ; j # V6.0 (๐) NECKTIE +1F455 ; emoji ; L1 ; none ; j # V6.0 (๐) T-SHIRT +1F456 ; emoji ; L1 ; none ; j # V6.0 (๐) JEANS +1F457 ; emoji ; L1 ; none ; j # V6.0 (๐) DRESS +1F458 ; emoji ; L1 ; none ; j # V6.0 (๐) KIMONO +1F459 ; emoji ; L1 ; none ; j # V6.0 (๐) BIKINI +1F45A ; emoji ; L1 ; none ; j # V6.0 (๐) WOMANS CLOTHES +1F45B ; emoji ; L1 ; none ; j # V6.0 (๐) PURSE +1F45C ; emoji ; L1 ; none ; j # V6.0 (๐) HANDBAG +1F45D ; emoji ; L1 ; none ; j # V6.0 (๐) POUCH +1F45E ; emoji ; L1 ; none ; j # V6.0 (๐) MANS SHOE +1F45F ; emoji ; L1 ; none ; j # V6.0 (๐) ATHLETIC SHOE +1F460 ; emoji ; L1 ; none ; j # V6.0 (๐ ) HIGH-HEELED SHOE +1F461 ; emoji ; L1 ; none ; j # V6.0 (๐ก) WOMANS SANDAL +1F462 ; emoji ; L1 ; none ; j # V6.0 (๐ข) WOMANS BOOTS +1F463 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) FOOTPRINTS +1F464 ; emoji ; L1 ; none ; j # V6.0 (๐ค) BUST IN SILHOUETTE +1F465 ; emoji ; L1 ; none ; x # V6.0 (๐ฅ) BUSTS IN SILHOUETTE +1F466 ; emoji ; L1 ; primary ; j # V6.0 (๐ฆ) BOY +1F467 ; emoji ; L1 ; primary ; j # V6.0 (๐ง) GIRL +1F468 ; emoji ; L1 ; primary ; j # V6.0 (๐จ) MAN +1F469 ; emoji ; L1 ; primary ; j # V6.0 (๐ฉ) WOMAN +1F46A ; emoji ; L1 ; none ; j w # V6.0 (๐ช) FAMILY +1F46B ; emoji ; L1 ; none ; j # V6.0 (๐ซ) MAN AND WOMAN HOLDING HANDS +1F46C ; emoji ; L1 ; none ; x # V6.0 (๐ฌ) TWO MEN HOLDING HANDS +1F46D ; emoji ; L1 ; none ; x # V6.0 (๐ญ) TWO WOMEN HOLDING HANDS +1F46E ; emoji ; L1 ; primary ; j # V6.0 (๐ฎ) POLICE OFFICER +1F46F ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) WOMAN WITH BUNNY EARS +1F470 ; emoji ; L1 ; primary ; j # V6.0 (๐ฐ) BRIDE WITH VEIL +1F471 ; emoji ; L1 ; primary ; j # V6.0 (๐ฑ) PERSON WITH BLOND HAIR +1F472 ; emoji ; L1 ; primary ; j # V6.0 (๐ฒ) MAN WITH GUA PI MAO +1F473 ; emoji ; L1 ; primary ; j # V6.0 (๐ณ) MAN WITH TURBAN +1F474 ; emoji ; L1 ; primary ; j # V6.0 (๐ด) OLDER MAN +1F475 ; emoji ; L1 ; primary ; j # V6.0 (๐ต) OLDER WOMAN +1F476 ; emoji ; L1 ; primary ; j # V6.0 (๐ถ) BABY +1F477 ; emoji ; L1 ; primary ; j # V6.0 (๐ท) CONSTRUCTION WORKER +1F478 ; emoji ; L1 ; primary ; j # V6.0 (๐ธ) PRINCESS +1F479 ; emoji ; L1 ; none ; j # V6.0 (๐น) JAPANESE OGRE +1F47A ; emoji ; L1 ; none ; j # V6.0 (๐บ) JAPANESE GOBLIN +1F47B ; emoji ; L1 ; none ; j # V6.0 (๐ป) GHOST +1F47C ; emoji ; L1 ; primary ; j # V6.0 (๐ผ) BABY ANGEL +1F47D ; emoji ; L1 ; none ; j w # V6.0 (๐ฝ) EXTRATERRESTRIAL ALIEN +1F47E ; emoji ; L1 ; none ; j # V6.0 (๐พ) ALIEN MONSTER +1F47F ; emoji ; L1 ; secondary ; j # V6.0 (๐ฟ) IMP +1F480 ; emoji ; L1 ; none ; j # V6.0 (๐) SKULL +1F481 ; emoji ; L1 ; primary ; j # V6.0 (๐) INFORMATION DESK PERSON +1F482 ; emoji ; L1 ; primary ; j # V6.0 (๐) GUARDSMAN +1F483 ; emoji ; L1 ; secondary ; j # V6.0 (๐) DANCER +1F484 ; emoji ; L1 ; none ; j # V6.0 (๐) LIPSTICK +1F485 ; emoji ; L1 ; secondary ; j # V6.0 (๐
) NAIL POLISH +1F486 ; emoji ; L1 ; primary ; j # V6.0 (๐) FACE MASSAGE +1F487 ; emoji ; L1 ; primary ; j # V6.0 (๐) HAIRCUT +1F488 ; emoji ; L1 ; none ; j # V6.0 (๐) BARBER POLE +1F489 ; emoji ; L1 ; none ; j # V6.0 (๐) SYRINGE +1F48A ; emoji ; L1 ; none ; j # V6.0 (๐) PILL +1F48B ; emoji ; L1 ; none ; j # V6.0 (๐) KISS MARK +1F48C ; emoji ; L1 ; none ; j # V6.0 (๐) LOVE LETTER +1F48D ; emoji ; L1 ; none ; j # V6.0 (๐) RING +1F48E ; emoji ; L1 ; none ; j # V6.0 (๐) GEM STONE +1F48F ; emoji ; L1 ; none ; j # V6.0 (๐) KISS +1F490 ; emoji ; L1 ; none ; j # V6.0 (๐) BOUQUET +1F491 ; emoji ; L1 ; none ; j # V6.0 (๐) COUPLE WITH HEART +1F492 ; emoji ; L1 ; none ; j # V6.0 (๐) WEDDING +1F493 ; emoji ; L1 ; none ; j # V6.0 (๐) BEATING HEART +1F494 ; emoji ; L1 ; none ; j # V6.0 (๐) BROKEN HEART +1F495 ; emoji ; L1 ; none ; j # V6.0 (๐) TWO HEARTS +1F496 ; emoji ; L1 ; none ; j # V6.0 (๐) SPARKLING HEART +1F497 ; emoji ; L1 ; none ; j # V6.0 (๐) GROWING HEART +1F498 ; emoji ; L1 ; none ; j # V6.0 (๐) HEART WITH ARROW +1F499 ; emoji ; L1 ; none ; j # V6.0 (๐) BLUE HEART +1F49A ; emoji ; L1 ; none ; j # V6.0 (๐) GREEN HEART +1F49B ; emoji ; L1 ; none ; j # V6.0 (๐) YELLOW HEART +1F49C ; emoji ; L1 ; none ; j # V6.0 (๐) PURPLE HEART +1F49D ; emoji ; L1 ; none ; j # V6.0 (๐) HEART WITH RIBBON +1F49E ; emoji ; L1 ; none ; j # V6.0 (๐) REVOLVING HEARTS +1F49F ; emoji ; L1 ; none ; j # V6.0 (๐) HEART DECORATION +1F4A0 ; emoji ; L1 ; none ; j # V6.0 (๐ ) DIAMOND SHAPE WITH A DOT INSIDE +1F4A1 ; emoji ; L1 ; none ; j # V6.0 (๐ก) ELECTRIC LIGHT BULB +1F4A2 ; emoji ; L1 ; none ; j # V6.0 (๐ข) ANGER SYMBOL +1F4A3 ; emoji ; L1 ; none ; j w # V6.0 (๐ฃ) BOMB +1F4A4 ; emoji ; L1 ; none ; j # V6.0 (๐ค) SLEEPING SYMBOL +1F4A5 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) COLLISION SYMBOL +1F4A6 ; emoji ; L1 ; none ; j # V6.0 (๐ฆ) SPLASHING SWEAT SYMBOL +1F4A7 ; emoji ; L1 ; none ; j # V6.0 (๐ง) DROPLET +1F4A8 ; emoji ; L1 ; none ; j # V6.0 (๐จ) DASH SYMBOL +1F4A9 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) PILE OF POO +1F4AA ; emoji ; L1 ; secondary ; j # V6.0 (๐ช) FLEXED BICEPS +1F4AB ; emoji ; L1 ; none ; j # V6.0 (๐ซ) DIZZY SYMBOL +1F4AC ; emoji ; L1 ; none ; j # V6.0 (๐ฌ) SPEECH BALLOON +1F4AD ; emoji ; L1 ; none ; x # V6.0 (๐ญ) THOUGHT BALLOON +1F4AE ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) WHITE FLOWER +1F4AF ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) HUNDRED POINTS SYMBOL +1F4B0 ; emoji ; L1 ; none ; j w # V6.0 (๐ฐ) MONEY BAG +1F4B1 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) CURRENCY EXCHANGE +1F4B2 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) HEAVY DOLLAR SIGN +1F4B3 ; emoji ; L1 ; none ; j w # V6.0 (๐ณ) CREDIT CARD +1F4B4 ; emoji ; L1 ; none ; j # V6.0 (๐ด) BANKNOTE WITH YEN SIGN +1F4B5 ; emoji ; L1 ; none ; j # V6.0 (๐ต) BANKNOTE WITH DOLLAR SIGN +1F4B6 ; emoji ; L1 ; none ; x # V6.0 (๐ถ) BANKNOTE WITH EURO SIGN +1F4B7 ; emoji ; L1 ; none ; x # V6.0 (๐ท) BANKNOTE WITH POUND SIGN +1F4B8 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) MONEY WITH WINGS +1F4B9 ; emoji ; L1 ; none ; j # V6.0 (๐น) CHART WITH UPWARDS TREND AND YEN SIGN +1F4BA ; emoji ; L1 ; none ; j # V6.0 (๐บ) SEAT +1F4BB ; emoji ; L1 ; none ; j w # V6.0 (๐ป) PERSONAL COMPUTER +1F4BC ; emoji ; L1 ; none ; j # V6.0 (๐ผ) BRIEFCASE +1F4BD ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) MINIDISC +1F4BE ; emoji ; L1 ; none ; j # V6.0 (๐พ) FLOPPY DISK +1F4BF ; emoji ; L1 ; none ; j w # V6.0 (๐ฟ) OPTICAL DISC +1F4C0 ; emoji ; L1 ; none ; j # V6.0 (๐) DVD +1F4C1 ; emoji ; L1 ; none ; j # V6.0 (๐) FILE FOLDER +1F4C2 ; emoji ; L1 ; none ; j # V6.0 (๐) OPEN FILE FOLDER +1F4C3 ; emoji ; L1 ; none ; j # V6.0 (๐) PAGE WITH CURL +1F4C4 ; emoji ; L1 ; none ; j # V6.0 (๐) PAGE FACING UP +1F4C5 ; emoji ; L1 ; none ; j # V6.0 (๐
) CALENDAR +1F4C6 ; emoji ; L1 ; none ; j # V6.0 (๐) TEAR-OFF CALENDAR +1F4C7 ; emoji ; L1 ; none ; j # V6.0 (๐) CARD INDEX +1F4C8 ; emoji ; L1 ; none ; j # V6.0 (๐) CHART WITH UPWARDS TREND +1F4C9 ; emoji ; L1 ; none ; j # V6.0 (๐) CHART WITH DOWNWARDS TREND +1F4CA ; emoji ; L1 ; none ; j # V6.0 (๐) BAR CHART +1F4CB ; emoji ; L1 ; none ; j w # V6.0 (๐) CLIPBOARD +1F4CC ; emoji ; L1 ; none ; j # V6.0 (๐) PUSHPIN +1F4CD ; emoji ; L1 ; none ; j # V6.0 (๐) ROUND PUSHPIN +1F4CE ; emoji ; L1 ; none ; j # V6.0 (๐) PAPERCLIP +1F4CF ; emoji ; L1 ; none ; j # V6.0 (๐) STRAIGHT RULER +1F4D0 ; emoji ; L1 ; none ; j # V6.0 (๐) TRIANGULAR RULER +1F4D1 ; emoji ; L1 ; none ; j # V6.0 (๐) BOOKMARK TABS +1F4D2 ; emoji ; L1 ; none ; j # V6.0 (๐) LEDGER +1F4D3 ; emoji ; L1 ; none ; j # V6.0 (๐) NOTEBOOK +1F4D4 ; emoji ; L1 ; none ; j # V6.0 (๐) NOTEBOOK WITH DECORATIVE COVER +1F4D5 ; emoji ; L1 ; none ; j # V6.0 (๐) CLOSED BOOK +1F4D6 ; emoji ; L1 ; none ; j # V6.0 (๐) OPEN BOOK +1F4D7 ; emoji ; L1 ; none ; j # V6.0 (๐) GREEN BOOK +1F4D8 ; emoji ; L1 ; none ; j # V6.0 (๐) BLUE BOOK +1F4D9 ; emoji ; L1 ; none ; j # V6.0 (๐) ORANGE BOOK +1F4DA ; emoji ; L1 ; none ; j w # V6.0 (๐) BOOKS +1F4DB ; emoji ; L1 ; none ; j # V6.0 (๐) NAME BADGE +1F4DC ; emoji ; L1 ; none ; j # V6.0 (๐) SCROLL +1F4DD ; emoji ; L1 ; none ; j # V6.0 (๐) MEMO +1F4DE ; emoji ; L1 ; none ; j # V6.0 (๐) TELEPHONE RECEIVER +1F4DF ; emoji ; L1 ; none ; j w # V6.0 (๐) PAGER +1F4E0 ; emoji ; L1 ; none ; j # V6.0 (๐ ) FAX MACHINE +1F4E1 ; emoji ; L1 ; none ; j # V6.0 (๐ก) SATELLITE ANTENNA +1F4E2 ; emoji ; L1 ; none ; j # V6.0 (๐ข) PUBLIC ADDRESS LOUDSPEAKER +1F4E3 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) CHEERING MEGAPHONE +1F4E4 ; emoji ; L1 ; none ; j w # V6.0 (๐ค) OUTBOX TRAY +1F4E5 ; emoji ; L1 ; none ; j w # V6.0 (๐ฅ) INBOX TRAY +1F4E6 ; emoji ; L1 ; none ; j w # V6.0 (๐ฆ) PACKAGE +1F4E7 ; emoji ; L1 ; none ; j # V6.0 (๐ง) E-MAIL SYMBOL +1F4E8 ; emoji ; L1 ; none ; j # V6.0 (๐จ) INCOMING ENVELOPE +1F4E9 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) ENVELOPE WITH DOWNWARDS ARROW ABOVE +1F4EA ; emoji ; L1 ; none ; j w # V6.0 (๐ช) CLOSED MAILBOX WITH LOWERED FLAG +1F4EB ; emoji ; L1 ; none ; j w # V6.0 (๐ซ) CLOSED MAILBOX WITH RAISED FLAG +1F4EC ; emoji ; L1 ; none ; w # V6.0 (๐ฌ) OPEN MAILBOX WITH RAISED FLAG +1F4ED ; emoji ; L1 ; none ; w # V6.0 (๐ญ) OPEN MAILBOX WITH LOWERED FLAG +1F4EE ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) POSTBOX +1F4EF ; emoji ; L1 ; none ; x # V6.0 (๐ฏ) POSTAL HORN +1F4F0 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) NEWSPAPER +1F4F1 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) MOBILE PHONE +1F4F2 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT +1F4F3 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) VIBRATION MODE +1F4F4 ; emoji ; L1 ; none ; j # V6.0 (๐ด) MOBILE PHONE OFF +1F4F5 ; emoji ; L1 ; none ; x # V6.0 (๐ต) NO MOBILE PHONES +1F4F6 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) ANTENNA WITH BARS +1F4F7 ; emoji ; L1 ; none ; j w # V6.0 (๐ท) CAMERA +1F4F8 ; emoji ; L2 ; none ; x # V7.0 (๐ธ) CAMERA WITH FLASH +1F4F9 ; emoji ; L1 ; none ; j w # V6.0 (๐น) VIDEO CAMERA +1F4FA ; emoji ; L1 ; none ; j w # V6.0 (๐บ) TELEVISION +1F4FB ; emoji ; L1 ; none ; j w # V6.0 (๐ป) RADIO +1F4FC ; emoji ; L1 ; none ; j # V6.0 (๐ผ) VIDEOCASSETTE +1F4FD ; text ; L2 ; none ; w # V7.0 (๐ฝ) FILM PROJECTOR +1F4FF ; emoji ; L2 ; none ; x # V8.0 (๐ฟ) PRAYER BEADS +1F500 ; emoji ; L1 ; none ; x # V6.0 (๐) TWISTED RIGHTWARDS ARROWS +1F501 ; emoji ; L1 ; none ; x # V6.0 (๐) CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS +1F502 ; emoji ; L1 ; none ; x # V6.0 (๐) CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY +1F503 ; emoji ; L1 ; none ; j # V6.0 (๐) CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS +1F504 ; emoji ; L1 ; none ; x # V6.0 (๐) ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS +1F505 ; emoji ; L1 ; none ; x # V6.0 (๐
) LOW BRIGHTNESS SYMBOL +1F506 ; emoji ; L1 ; none ; x # V6.0 (๐) HIGH BRIGHTNESS SYMBOL +1F507 ; emoji ; L1 ; none ; x # V6.0 (๐) SPEAKER WITH CANCELLATION STROKE +1F508 ; emoji ; L1 ; none ; w # V6.0 (๐) SPEAKER +1F509 ; emoji ; L1 ; none ; x # V6.0 (๐) SPEAKER WITH ONE SOUND WAVE +1F50A ; emoji ; L1 ; none ; j # V6.0 (๐) SPEAKER WITH THREE SOUND WAVES +1F50B ; emoji ; L1 ; none ; j # V6.0 (๐) BATTERY +1F50C ; emoji ; L1 ; none ; j # V6.0 (๐) ELECTRIC PLUG +1F50D ; emoji ; L1 ; none ; j w # V6.0 (๐) LEFT-POINTING MAGNIFYING GLASS +1F50E ; emoji ; L1 ; none ; j # V6.0 (๐) RIGHT-POINTING MAGNIFYING GLASS +1F50F ; emoji ; L1 ; none ; j # V6.0 (๐) LOCK WITH INK PEN +1F510 ; emoji ; L1 ; none ; j # V6.0 (๐) CLOSED LOCK WITH KEY +1F511 ; emoji ; L1 ; none ; j # V6.0 (๐) KEY +1F512 ; emoji ; L1 ; none ; j w # V6.0 (๐) LOCK +1F513 ; emoji ; L1 ; none ; j w # V6.0 (๐) OPEN LOCK +1F514 ; emoji ; L1 ; none ; j # V6.0 (๐) BELL +1F515 ; emoji ; L1 ; none ; x # V6.0 (๐) BELL WITH CANCELLATION STROKE +1F516 ; emoji ; L1 ; none ; j # V6.0 (๐) BOOKMARK +1F517 ; emoji ; L1 ; none ; j # V6.0 (๐) LINK SYMBOL +1F518 ; emoji ; L1 ; none ; j # V6.0 (๐) RADIO BUTTON +1F519 ; emoji ; L1 ; none ; j # V6.0 (๐) BACK WITH LEFTWARDS ARROW ABOVE +1F51A ; emoji ; L1 ; none ; j # V6.0 (๐) END WITH LEFTWARDS ARROW ABOVE +1F51B ; emoji ; L1 ; none ; j # V6.0 (๐) ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE +1F51C ; emoji ; L1 ; none ; j # V6.0 (๐) SOON WITH RIGHTWARDS ARROW ABOVE +1F51D ; emoji ; L1 ; none ; j # V6.0 (๐) TOP WITH UPWARDS ARROW ABOVE +1F51E ; emoji ; L1 ; none ; j # V6.0 (๐) NO ONE UNDER EIGHTEEN SYMBOL +1F51F ; emoji ; L1 ; none ; j # V6.0 (๐) KEYCAP TEN +1F520 ; emoji ; L1 ; none ; j # V6.0 (๐ ) INPUT SYMBOL FOR LATIN CAPITAL LETTERS +1F521 ; emoji ; L1 ; none ; j # V6.0 (๐ก) INPUT SYMBOL FOR LATIN SMALL LETTERS +1F522 ; emoji ; L1 ; none ; j # V6.0 (๐ข) INPUT SYMBOL FOR NUMBERS +1F523 ; emoji ; L1 ; none ; j # V6.0 (๐ฃ) INPUT SYMBOL FOR SYMBOLS +1F524 ; emoji ; L1 ; none ; j # V6.0 (๐ค) INPUT SYMBOL FOR LATIN LETTERS +1F525 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) FIRE +1F526 ; emoji ; L1 ; none ; j # V6.0 (๐ฆ) ELECTRIC TORCH +1F527 ; emoji ; L1 ; none ; j # V6.0 (๐ง) WRENCH +1F528 ; emoji ; L1 ; none ; j # V6.0 (๐จ) HAMMER +1F529 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) NUT AND BOLT +1F52A ; emoji ; L1 ; none ; j # V6.0 (๐ช) HOCHO +1F52B ; emoji ; L1 ; none ; j # V6.0 (๐ซ) PISTOL +1F52C ; emoji ; L1 ; none ; x # V6.0 (๐ฌ) MICROSCOPE +1F52D ; emoji ; L1 ; none ; x # V6.0 (๐ญ) TELESCOPE +1F52E ; emoji ; L1 ; none ; j # V6.0 (๐ฎ) CRYSTAL BALL +1F52F ; emoji ; L1 ; none ; j # V6.0 (๐ฏ) SIX POINTED STAR WITH MIDDLE DOT +1F530 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ) JAPANESE SYMBOL FOR BEGINNER +1F531 ; emoji ; L1 ; none ; j # V6.0 (๐ฑ) TRIDENT EMBLEM +1F532 ; emoji ; L1 ; none ; j # V6.0 (๐ฒ) BLACK SQUARE BUTTON +1F533 ; emoji ; L1 ; none ; j # V6.0 (๐ณ) WHITE SQUARE BUTTON +1F534 ; emoji ; L1 ; none ; j # V6.0 (๐ด) LARGE RED CIRCLE +1F535 ; emoji ; L1 ; none ; j # V6.0 (๐ต) LARGE BLUE CIRCLE +1F536 ; emoji ; L1 ; none ; j # V6.0 (๐ถ) LARGE ORANGE DIAMOND +1F537 ; emoji ; L1 ; none ; j # V6.0 (๐ท) LARGE BLUE DIAMOND +1F538 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) SMALL ORANGE DIAMOND +1F539 ; emoji ; L1 ; none ; j # V6.0 (๐น) SMALL BLUE DIAMOND +1F53A ; emoji ; L1 ; none ; j # V6.0 (๐บ) UP-POINTING RED TRIANGLE +1F53B ; emoji ; L1 ; none ; j # V6.0 (๐ป) DOWN-POINTING RED TRIANGLE +1F53C ; emoji ; L1 ; none ; j # V6.0 (๐ผ) UP-POINTING SMALL RED TRIANGLE +1F53D ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) DOWN-POINTING SMALL RED TRIANGLE +1F549 ; text ; L2 ; none ; w # V7.0 (๐) OM SYMBOL +1F54A ; text ; L2 ; none ; w # V7.0 (๐) DOVE OF PEACE +1F54B ; emoji ; L2 ; none ; x # V8.0 (๐) KAABA +1F54C ; emoji ; L2 ; none ; x # V8.0 (๐) MOSQUE +1F54D ; emoji ; L2 ; none ; x # V8.0 (๐) SYNAGOGUE +1F54E ; emoji ; L2 ; none ; x # V8.0 (๐) MENORAH WITH NINE BRANCHES +1F550 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE ONE OCLOCK +1F551 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE TWO OCLOCK +1F552 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE THREE OCLOCK +1F553 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE FOUR OCLOCK +1F554 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE FIVE OCLOCK +1F555 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE SIX OCLOCK +1F556 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE SEVEN OCLOCK +1F557 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE EIGHT OCLOCK +1F558 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE NINE OCLOCK +1F559 ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE TEN OCLOCK +1F55A ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE ELEVEN OCLOCK +1F55B ; emoji ; L1 ; none ; j w # V6.0 (๐) CLOCK FACE TWELVE OCLOCK +1F55C ; emoji ; L1 ; none ; w # V6.0 (๐) CLOCK FACE ONE-THIRTY +1F55D ; emoji ; L1 ; none ; w # V6.0 (๐) CLOCK FACE TWO-THIRTY +1F55E ; emoji ; L1 ; none ; w # V6.0 (๐) CLOCK FACE THREE-THIRTY +1F55F ; emoji ; L1 ; none ; w # V6.0 (๐) CLOCK FACE FOUR-THIRTY +1F560 ; emoji ; L1 ; none ; w # V6.0 (๐ ) CLOCK FACE FIVE-THIRTY +1F561 ; emoji ; L1 ; none ; w # V6.0 (๐ก) CLOCK FACE SIX-THIRTY +1F562 ; emoji ; L1 ; none ; w # V6.0 (๐ข) CLOCK FACE SEVEN-THIRTY +1F563 ; emoji ; L1 ; none ; w # V6.0 (๐ฃ) CLOCK FACE EIGHT-THIRTY +1F564 ; emoji ; L1 ; none ; w # V6.0 (๐ค) CLOCK FACE NINE-THIRTY +1F565 ; emoji ; L1 ; none ; w # V6.0 (๐ฅ) CLOCK FACE TEN-THIRTY +1F566 ; emoji ; L1 ; none ; w # V6.0 (๐ฆ) CLOCK FACE ELEVEN-THIRTY +1F567 ; emoji ; L1 ; none ; w # V6.0 (๐ง) CLOCK FACE TWELVE-THIRTY +1F56F ; text ; L2 ; none ; w # V7.0 (๐ฏ) CANDLE +1F570 ; text ; L2 ; none ; w # V7.0 (๐ฐ) MANTELPIECE CLOCK +1F573 ; text ; L2 ; none ; w # V7.0 (๐ณ) HOLE +1F574 ; text ; L2 ; none ; w # V7.0 (๐ด) MAN IN BUSINESS SUIT LEVITATING +1F575 ; text ; L2 ; none ; w # V7.0 (๐ต) SLEUTH OR SPY +1F576 ; text ; L2 ; none ; w # V7.0 (๐ถ) DARK SUNGLASSES +1F577 ; text ; L2 ; none ; w # V7.0 (๐ท) SPIDER +1F578 ; text ; L2 ; none ; w # V7.0 (๐ธ) SPIDER WEB +1F579 ; text ; L2 ; none ; w # V7.0 (๐น) JOYSTICK +1F587 ; text ; L2 ; none ; w # V7.0 (๐) LINKED PAPERCLIPS +1F58A ; text ; L2 ; none ; w # V7.0 (๐) LOWER LEFT BALLPOINT PEN +1F58B ; text ; L2 ; none ; w # V7.0 (๐) LOWER LEFT FOUNTAIN PEN +1F58C ; text ; L2 ; none ; w # V7.0 (๐) LOWER LEFT PAINTBRUSH +1F58D ; text ; L2 ; none ; w # V7.0 (๐) LOWER LEFT CRAYON +1F590 ; text ; L2 ; secondary ; w # V7.0 (๐) RAISED HAND WITH FINGERS SPLAYED +1F595 ; emoji ; L2 ; secondary ; x # V7.0 (๐) REVERSED HAND WITH MIDDLE FINGER EXTENDED +1F596 ; emoji ; L2 ; secondary ; x # V7.0 (๐) RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS +1F5A5 ; text ; L2 ; none ; w # V7.0 (๐ฅ) DESKTOP COMPUTER +1F5A8 ; text ; L2 ; none ; w # V7.0 (๐จ) PRINTER +1F5B1 ; text ; L2 ; none ; w # V7.0 (๐ฑ) THREE BUTTON MOUSE +1F5B2 ; text ; L2 ; none ; w # V7.0 (๐ฒ) TRACKBALL +1F5BC ; text ; L2 ; none ; w # V7.0 (๐ผ) FRAME WITH PICTURE +1F5C2 ; text ; L2 ; none ; w # V7.0 (๐) CARD INDEX DIVIDERS +1F5C3 ; text ; L2 ; none ; w # V7.0 (๐) CARD FILE BOX +1F5C4 ; text ; L2 ; none ; w # V7.0 (๐) FILE CABINET +1F5D1 ; text ; L2 ; none ; w # V7.0 (๐) WASTEBASKET +1F5D2 ; text ; L2 ; none ; w # V7.0 (๐) SPIRAL NOTE PAD +1F5D3 ; text ; L2 ; none ; w # V7.0 (๐) SPIRAL CALENDAR PAD +1F5DC ; text ; L2 ; none ; w # V7.0 (๐) COMPRESSION +1F5DD ; text ; L2 ; none ; w # V7.0 (๐) OLD KEY +1F5DE ; text ; L2 ; none ; w # V7.0 (๐) ROLLED-UP NEWSPAPER +1F5E1 ; text ; L2 ; none ; w # V7.0 (๐ก) DAGGER KNIFE +1F5E3 ; text ; L2 ; none ; w # V7.0 (๐ฃ) SPEAKING HEAD IN SILHOUETTE +1F5EF ; text ; L2 ; none ; w # V7.0 (๐ฏ) RIGHT ANGER BUBBLE +1F5F3 ; text ; L2 ; none ; w # V7.0 (๐ณ) BALLOT BOX WITH BALLOT +1F5FA ; text ; L2 ; none ; w # V7.0 (๐บ) WORLD MAP +1F5FB ; emoji ; L1 ; none ; j # V6.0 (๐ป) MOUNT FUJI +1F5FC ; emoji ; L1 ; none ; j # V6.0 (๐ผ) TOKYO TOWER +1F5FD ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) STATUE OF LIBERTY +1F5FE ; emoji ; L1 ; none ; j # V6.0 (๐พ) SILHOUETTE OF JAPAN +1F5FF ; emoji ; L1 ; none ; j # V6.0 (๐ฟ) MOYAI +1F600 ; emoji ; L1 ; secondary ; x # V6.1 (๐) GRINNING FACE +1F601 ; emoji ; L1 ; secondary ; j # V6.0 (๐) GRINNING FACE WITH SMILING EYES +1F602 ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE WITH TEARS OF JOY +1F603 ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMILING FACE WITH OPEN MOUTH +1F604 ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMILING FACE WITH OPEN MOUTH AND SMILING EYES +1F605 ; emoji ; L1 ; secondary ; j # V6.0 (๐
) SMILING FACE WITH OPEN MOUTH AND COLD SWEAT +1F606 ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES +1F607 ; emoji ; L1 ; secondary ; x # V6.0 (๐) SMILING FACE WITH HALO +1F608 ; emoji ; L1 ; secondary ; x # V6.0 (๐) SMILING FACE WITH HORNS +1F609 ; emoji ; L1 ; secondary ; j # V6.0 (๐) WINKING FACE +1F60A ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMILING FACE WITH SMILING EYES +1F60B ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE SAVOURING DELICIOUS FOOD +1F60C ; emoji ; L1 ; secondary ; j # V6.0 (๐) RELIEVED FACE +1F60D ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMILING FACE WITH HEART-SHAPED EYES +1F60E ; emoji ; L1 ; secondary ; x # V6.0 (๐) SMILING FACE WITH SUNGLASSES +1F60F ; emoji ; L1 ; secondary ; j # V6.0 (๐) SMIRKING FACE +1F610 ; emoji ; L1 ; secondary ; w # V6.0 (๐) NEUTRAL FACE +1F611 ; emoji ; L1 ; secondary ; x # V6.1 (๐) EXPRESSIONLESS FACE +1F612 ; emoji ; L1 ; secondary ; j # V6.0 (๐) UNAMUSED FACE +1F613 ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE WITH COLD SWEAT +1F614 ; emoji ; L1 ; secondary ; j # V6.0 (๐) PENSIVE FACE +1F615 ; emoji ; L1 ; secondary ; x # V6.1 (๐) CONFUSED FACE +1F616 ; emoji ; L1 ; secondary ; j # V6.0 (๐) CONFOUNDED FACE +1F617 ; emoji ; L1 ; secondary ; x # V6.1 (๐) KISSING FACE +1F618 ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE THROWING A KISS +1F619 ; emoji ; L1 ; secondary ; x # V6.1 (๐) KISSING FACE WITH SMILING EYES +1F61A ; emoji ; L1 ; secondary ; j # V6.0 (๐) KISSING FACE WITH CLOSED EYES +1F61B ; emoji ; L1 ; secondary ; x # V6.1 (๐) FACE WITH STUCK-OUT TONGUE +1F61C ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE WITH STUCK-OUT TONGUE AND WINKING EYE +1F61D ; emoji ; L1 ; secondary ; j # V6.0 (๐) FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES +1F61E ; emoji ; L1 ; secondary ; j # V6.0 (๐) DISAPPOINTED FACE +1F61F ; emoji ; L1 ; secondary ; x # V6.1 (๐) WORRIED FACE +1F620 ; emoji ; L1 ; secondary ; j # V6.0 (๐ ) ANGRY FACE +1F621 ; emoji ; L1 ; secondary ; j # V6.0 (๐ก) POUTING FACE +1F622 ; emoji ; L1 ; secondary ; j # V6.0 (๐ข) CRYING FACE +1F623 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฃ) PERSEVERING FACE +1F624 ; emoji ; L1 ; secondary ; j # V6.0 (๐ค) FACE WITH LOOK OF TRIUMPH +1F625 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฅ) DISAPPOINTED BUT RELIEVED FACE +1F626 ; emoji ; L1 ; secondary ; x # V6.1 (๐ฆ) FROWNING FACE WITH OPEN MOUTH +1F627 ; emoji ; L1 ; secondary ; x # V6.1 (๐ง) ANGUISHED FACE +1F628 ; emoji ; L1 ; secondary ; j # V6.0 (๐จ) FEARFUL FACE +1F629 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฉ) WEARY FACE +1F62A ; emoji ; L1 ; secondary ; j # V6.0 (๐ช) SLEEPY FACE +1F62B ; emoji ; L1 ; secondary ; j # V6.0 (๐ซ) TIRED FACE +1F62C ; emoji ; L1 ; secondary ; x # V6.1 (๐ฌ) GRIMACING FACE +1F62D ; emoji ; L1 ; secondary ; j # V6.0 (๐ญ) LOUDLY CRYING FACE +1F62E ; emoji ; L1 ; secondary ; x # V6.1 (๐ฎ) FACE WITH OPEN MOUTH +1F62F ; emoji ; L1 ; secondary ; x # V6.1 (๐ฏ) HUSHED FACE +1F630 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฐ) FACE WITH OPEN MOUTH AND COLD SWEAT +1F631 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฑ) FACE SCREAMING IN FEAR +1F632 ; emoji ; L1 ; secondary ; j # V6.0 (๐ฒ) ASTONISHED FACE +1F633 ; emoji ; L1 ; secondary ; j # V6.0 (๐ณ) FLUSHED FACE +1F634 ; emoji ; L1 ; secondary ; x # V6.1 (๐ด) SLEEPING FACE +1F635 ; emoji ; L1 ; secondary ; j # V6.0 (๐ต) DIZZY FACE +1F636 ; emoji ; L1 ; secondary ; x # V6.0 (๐ถ) FACE WITHOUT MOUTH +1F637 ; emoji ; L1 ; secondary ; j # V6.0 (๐ท) FACE WITH MEDICAL MASK +1F638 ; emoji ; L1 ; none ; j # V6.0 (๐ธ) GRINNING CAT FACE WITH SMILING EYES +1F639 ; emoji ; L1 ; none ; j # V6.0 (๐น) CAT FACE WITH TEARS OF JOY +1F63A ; emoji ; L1 ; none ; j # V6.0 (๐บ) SMILING CAT FACE WITH OPEN MOUTH +1F63B ; emoji ; L1 ; none ; j # V6.0 (๐ป) SMILING CAT FACE WITH HEART-SHAPED EYES +1F63C ; emoji ; L1 ; none ; j # V6.0 (๐ผ) CAT FACE WITH WRY SMILE +1F63D ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) KISSING CAT FACE WITH CLOSED EYES +1F63E ; emoji ; L1 ; none ; j # V6.0 (๐พ) POUTING CAT FACE +1F63F ; emoji ; L1 ; none ; j # V6.0 (๐ฟ) CRYING CAT FACE +1F640 ; emoji ; L1 ; none ; j # V6.0 (๐) WEARY CAT FACE +1F641 ; emoji ; L2 ; secondary ; x # V7.0 (๐) SLIGHTLY FROWNING FACE +1F642 ; emoji ; L2 ; secondary ; x # V7.0 (๐) SLIGHTLY SMILING FACE +1F643 ; emoji ; L2 ; secondary ; x # V8.0 (๐) UPSIDE-DOWN FACE +1F644 ; emoji ; L2 ; secondary ; x # V8.0 (๐) FACE WITH ROLLING EYES +1F645 ; emoji ; L1 ; primary ; j # V6.0 (๐
) FACE WITH NO GOOD GESTURE +1F646 ; emoji ; L1 ; primary ; j # V6.0 (๐) FACE WITH OK GESTURE +1F647 ; emoji ; L1 ; primary ; j # V6.0 (๐) PERSON BOWING DEEPLY +1F648 ; emoji ; L1 ; none ; j # V6.0 (๐) SEE-NO-EVIL MONKEY +1F649 ; emoji ; L1 ; none ; j # V6.0 (๐) HEAR-NO-EVIL MONKEY +1F64A ; emoji ; L1 ; none ; j # V6.0 (๐) SPEAK-NO-EVIL MONKEY +1F64B ; emoji ; L1 ; primary ; j # V6.0 (๐) HAPPY PERSON RAISING ONE HAND +1F64C ; emoji ; L1 ; secondary ; j # V6.0 (๐) PERSON RAISING BOTH HANDS IN CELEBRATION +1F64D ; emoji ; L1 ; primary ; j # V6.0 (๐) PERSON FROWNING +1F64E ; emoji ; L1 ; primary ; j # V6.0 (๐) PERSON WITH POUTING FACE +1F64F ; emoji ; L1 ; secondary ; j # V6.0 (๐) PERSON WITH FOLDED HANDS +1F680 ; emoji ; L1 ; none ; j # V6.0 (๐) ROCKET +1F681 ; emoji ; L1 ; none ; x # V6.0 (๐) HELICOPTER +1F682 ; emoji ; L1 ; none ; x # V6.0 (๐) STEAM LOCOMOTIVE +1F683 ; emoji ; L1 ; none ; j # V6.0 (๐) RAILWAY CAR +1F684 ; emoji ; L1 ; none ; j # V6.0 (๐) HIGH-SPEED TRAIN +1F685 ; emoji ; L1 ; none ; j # V6.0 (๐
) HIGH-SPEED TRAIN WITH BULLET NOSE +1F686 ; emoji ; L1 ; none ; x # V6.0 (๐) TRAIN +1F687 ; emoji ; L1 ; none ; j w # V6.0 (๐) METRO +1F688 ; emoji ; L1 ; none ; x # V6.0 (๐) LIGHT RAIL +1F689 ; emoji ; L1 ; none ; j # V6.0 (๐) STATION +1F68A ; emoji ; L1 ; none ; x # V6.0 (๐) TRAM +1F68B ; emoji ; L1 ; none ; x # V6.0 (๐) TRAM CAR +1F68C ; emoji ; L1 ; none ; j # V6.0 (๐) BUS +1F68D ; emoji ; L1 ; none ; w # V6.0 (๐) ONCOMING BUS +1F68E ; emoji ; L1 ; none ; x # V6.0 (๐) TROLLEYBUS +1F68F ; emoji ; L1 ; none ; j # V6.0 (๐) BUS STOP +1F690 ; emoji ; L1 ; none ; x # V6.0 (๐) MINIBUS +1F691 ; emoji ; L1 ; none ; j w # V6.0 (๐) AMBULANCE +1F692 ; emoji ; L1 ; none ; j # V6.0 (๐) FIRE ENGINE +1F693 ; emoji ; L1 ; none ; j # V6.0 (๐) POLICE CAR +1F694 ; emoji ; L1 ; none ; w # V6.0 (๐) ONCOMING POLICE CAR +1F695 ; emoji ; L1 ; none ; j # V6.0 (๐) TAXI +1F696 ; emoji ; L1 ; none ; x # V6.0 (๐) ONCOMING TAXI +1F697 ; emoji ; L1 ; none ; j # V6.0 (๐) AUTOMOBILE +1F698 ; emoji ; L1 ; none ; w # V6.0 (๐) ONCOMING AUTOMOBILE +1F699 ; emoji ; L1 ; none ; j # V6.0 (๐) RECREATIONAL VEHICLE +1F69A ; emoji ; L1 ; none ; j # V6.0 (๐) DELIVERY TRUCK +1F69B ; emoji ; L1 ; none ; x # V6.0 (๐) ARTICULATED LORRY +1F69C ; emoji ; L1 ; none ; x # V6.0 (๐) TRACTOR +1F69D ; emoji ; L1 ; none ; x # V6.0 (๐) MONORAIL +1F69E ; emoji ; L1 ; none ; x # V6.0 (๐) MOUNTAIN RAILWAY +1F69F ; emoji ; L1 ; none ; x # V6.0 (๐) SUSPENSION RAILWAY +1F6A0 ; emoji ; L1 ; none ; x # V6.0 (๐ ) MOUNTAIN CABLEWAY +1F6A1 ; emoji ; L1 ; none ; x # V6.0 (๐ก) AERIAL TRAMWAY +1F6A2 ; emoji ; L1 ; none ; j # V6.0 (๐ข) SHIP +1F6A3 ; emoji ; L1 ; secondary ; x # V6.0 (๐ฃ) ROWBOAT +1F6A4 ; emoji ; L1 ; none ; j # V6.0 (๐ค) SPEEDBOAT +1F6A5 ; emoji ; L1 ; none ; j # V6.0 (๐ฅ) HORIZONTAL TRAFFIC LIGHT +1F6A6 ; emoji ; L1 ; none ; x # V6.0 (๐ฆ) VERTICAL TRAFFIC LIGHT +1F6A7 ; emoji ; L1 ; none ; j # V6.0 (๐ง) CONSTRUCTION SIGN +1F6A8 ; emoji ; L1 ; none ; j # V6.0 (๐จ) POLICE CARS REVOLVING LIGHT +1F6A9 ; emoji ; L1 ; none ; j # V6.0 (๐ฉ) TRIANGULAR FLAG ON POST +1F6AA ; emoji ; L1 ; none ; j # V6.0 (๐ช) DOOR +1F6AB ; emoji ; L1 ; none ; j # V6.0 (๐ซ) NO ENTRY SIGN +1F6AC ; emoji ; L1 ; none ; j # V6.0 (๐ฌ) SMOKING SYMBOL +1F6AD ; emoji ; L1 ; none ; j w # V6.0 (๐ญ) NO SMOKING SYMBOL +1F6AE ; emoji ; L1 ; none ; x # V6.0 (๐ฎ) PUT LITTER IN ITS PLACE SYMBOL +1F6AF ; emoji ; L1 ; none ; x # V6.0 (๐ฏ) DO NOT LITTER SYMBOL +1F6B0 ; emoji ; L1 ; none ; x # V6.0 (๐ฐ) POTABLE WATER SYMBOL +1F6B1 ; emoji ; L1 ; none ; x # V6.0 (๐ฑ) NON-POTABLE WATER SYMBOL +1F6B2 ; emoji ; L1 ; none ; j w # V6.0 (๐ฒ) BICYCLE +1F6B3 ; emoji ; L1 ; none ; x # V6.0 (๐ณ) NO BICYCLES +1F6B4 ; emoji ; L1 ; secondary ; x # V6.0 (๐ด) BICYCLIST +1F6B5 ; emoji ; L1 ; secondary ; x # V6.0 (๐ต) MOUNTAIN BICYCLIST +1F6B6 ; emoji ; L1 ; secondary ; j # V6.0 (๐ถ) PEDESTRIAN +1F6B7 ; emoji ; L1 ; none ; x # V6.0 (๐ท) NO PEDESTRIANS +1F6B8 ; emoji ; L1 ; none ; x # V6.0 (๐ธ) CHILDREN CROSSING +1F6B9 ; emoji ; L1 ; none ; j w # V6.0 (๐น) MENS SYMBOL +1F6BA ; emoji ; L1 ; none ; j w # V6.0 (๐บ) WOMENS SYMBOL +1F6BB ; emoji ; L1 ; none ; j # V6.0 (๐ป) RESTROOM +1F6BC ; emoji ; L1 ; none ; j w # V6.0 (๐ผ) BABY SYMBOL +1F6BD ; emoji ; L1 ; none ; j # V6.0 (๐ฝ) TOILET +1F6BE ; emoji ; L1 ; none ; j # V6.0 (๐พ) WATER CLOSET +1F6BF ; emoji ; L1 ; none ; x # V6.0 (๐ฟ) SHOWER +1F6C0 ; emoji ; L1 ; secondary ; j # V6.0 (๐) BATH +1F6C1 ; emoji ; L1 ; none ; x # V6.0 (๐) BATHTUB +1F6C2 ; emoji ; L1 ; none ; x # V6.0 (๐) PASSPORT CONTROL +1F6C3 ; emoji ; L1 ; none ; x # V6.0 (๐) CUSTOMS +1F6C4 ; emoji ; L1 ; none ; x # V6.0 (๐) BAGGAGE CLAIM +1F6C5 ; emoji ; L1 ; none ; x # V6.0 (๐
) LEFT LUGGAGE +1F6CB ; text ; L2 ; none ; w # V7.0 (๐) COUCH AND LAMP +1F6CC ; emoji ; L2 ; none ; x # V7.0 (๐) SLEEPING ACCOMMODATION +1F6CD ; text ; L2 ; none ; w # V7.0 (๐) SHOPPING BAGS +1F6CE ; text ; L2 ; none ; w # V7.0 (๐) BELLHOP BELL +1F6CF ; text ; L2 ; none ; w # V7.0 (๐) BED +1F6D0 ; emoji ; L2 ; none ; x # V8.0 (๐) PLACE OF WORSHIP +1F6E0 ; text ; L2 ; none ; w # V7.0 (๐ ) HAMMER AND WRENCH +1F6E1 ; text ; L2 ; none ; w # V7.0 (๐ก) SHIELD +1F6E2 ; text ; L2 ; none ; w # V7.0 (๐ข) OIL DRUM +1F6E3 ; text ; L2 ; none ; w # V7.0 (๐ฃ) MOTORWAY +1F6E4 ; text ; L2 ; none ; w # V7.0 (๐ค) RAILWAY TRACK +1F6E5 ; text ; L2 ; none ; w # V7.0 (๐ฅ) MOTOR BOAT +1F6E9 ; text ; L2 ; none ; w # V7.0 (๐ฉ) SMALL AIRPLANE +1F6EB ; emoji ; L2 ; none ; x # V7.0 (๐ซ) AIRPLANE DEPARTURE +1F6EC ; emoji ; L2 ; none ; x # V7.0 (๐ฌ) AIRPLANE ARRIVING +1F6F0 ; text ; L2 ; none ; w # V7.0 (๐ฐ) SATELLITE +1F6F3 ; text ; L2 ; none ; w # V7.0 (๐ณ) PASSENGER SHIP +1F910 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) ZIPPER-MOUTH FACE +1F911 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) MONEY-MOUTH FACE +1F912 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) FACE WITH THERMOMETER +1F913 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) NERD FACE +1F914 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) THINKING FACE +1F915 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) FACE WITH HEAD-BANDAGE +1F916 ; emoji ; L2 ; none ; x # V8.0 (๐ค) ROBOT FACE +1F917 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) HUGGING FACE +1F918 ; emoji ; L2 ; secondary ; x # V8.0 (๐ค) SIGN OF THE HORNS +1F980 ; emoji ; L2 ; none ; x # V8.0 (๐ฆ) CRAB +1F981 ; emoji ; L2 ; none ; x # V8.0 (๐ฆ) LION FACE +1F982 ; emoji ; L2 ; none ; x # V8.0 (๐ฆ) SCORPION +1F983 ; emoji ; L2 ; none ; x # V8.0 (๐ฆ) TURKEY +1F984 ; emoji ; L2 ; none ; x # V8.0 (๐ฆ) UNICORN FACE +1F9C0 ; emoji ; L2 ; none ; x # V8.0 (๐ง) CHEESE WEDGE +0023 20E3 ; text ; L1 ; none ; j # V3.0 (#โฃ) keycap NUMBER SIGN +002A 20E3 ; text ; L2 ; none ; x # V3.0 (*โฃ) keycap ASTERISK +0030 20E3 ; text ; L1 ; none ; j # V3.0 (0โฃ) keycap DIGIT ZERO +0031 20E3 ; text ; L1 ; none ; j # V3.0 (1โฃ) keycap DIGIT ONE +0032 20E3 ; text ; L1 ; none ; j # V3.0 (2โฃ) keycap DIGIT TWO +0033 20E3 ; text ; L1 ; none ; j # V3.0 (3โฃ) keycap DIGIT THREE +0034 20E3 ; text ; L1 ; none ; j # V3.0 (4โฃ) keycap DIGIT FOUR +0035 20E3 ; text ; L1 ; none ; j # V3.0 (5โฃ) keycap DIGIT FIVE +0036 20E3 ; text ; L1 ; none ; j # V3.0 (6โฃ) keycap DIGIT SIX +0037 20E3 ; text ; L1 ; none ; j # V3.0 (7โฃ) keycap DIGIT SEVEN +0038 20E3 ; text ; L1 ; none ; j # V3.0 (8โฃ) keycap DIGIT EIGHT +0039 20E3 ; text ; L1 ; none ; j # V3.0 (9โฃ) keycap DIGIT NINE +1F1E6 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐จ) flag for Ascension Island +1F1E6 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฉ) flag for Andorra +1F1E6 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ช) flag for United Arab Emirates +1F1E6 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ซ) flag for Afghanistan +1F1E6 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฌ) flag for Antigua & Barbuda +1F1E6 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฎ) flag for Anguilla +1F1E6 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฑ) flag for Albania +1F1E6 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฒ) flag for Armenia +1F1E6 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ด) flag for Angola +1F1E6 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ถ) flag for Antarctica +1F1E6 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ท) flag for Argentina +1F1E6 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ธ) flag for American Samoa +1F1E6 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐น) flag for Austria +1F1E6 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐บ) flag for Australia +1F1E6 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ผ) flag for Aruba +1F1E6 1F1FD ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฝ) flag for ร
land Islands +1F1E6 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ฆ๐ฟ) flag for Azerbaijan +1F1E7 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฆ) flag for Bosnia & Herzegovina +1F1E7 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ง) flag for Barbados +1F1E7 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฉ) flag for Bangladesh +1F1E7 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ช) flag for Belgium +1F1E7 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ซ) flag for Burkina Faso +1F1E7 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฌ) flag for Bulgaria +1F1E7 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ญ) flag for Bahrain +1F1E7 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฎ) flag for Burundi +1F1E7 1F1EF ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฏ) flag for Benin +1F1E7 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฑ) flag for St. Barthรฉlemy +1F1E7 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฒ) flag for Bermuda +1F1E7 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ณ) flag for Brunei +1F1E7 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ด) flag for Bolivia +1F1E7 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ถ) flag for Caribbean Netherlands +1F1E7 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ท) flag for Brazil +1F1E7 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ธ) flag for Bahamas +1F1E7 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ง๐น) flag for Bhutan +1F1E7 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ป) flag for Bouvet Island +1F1E7 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ผ) flag for Botswana +1F1E7 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ง๐พ) flag for Belarus +1F1E7 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ง๐ฟ) flag for Belize +1F1E8 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฆ) flag for Canada +1F1E8 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐จ) flag for Cocos Islands +1F1E8 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฉ) flag for Congo - Kinshasa +1F1E8 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ซ) flag for Central African Republic +1F1E8 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฌ) flag for Congo - Brazzaville +1F1E8 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ญ) flag for Switzerland +1F1E8 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฎ) flag for Cรดte dโIvoire +1F1E8 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฐ) flag for Cook Islands +1F1E8 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฑ) flag for Chile +1F1E8 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฒ) flag for Cameroon +1F1E8 1F1F3 ; emoji ; L1 ; none ; j # V6.0 (๐จ๐ณ) flag for China +1F1E8 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ด) flag for Colombia +1F1E8 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ต) flag for Clipperton Island +1F1E8 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ท) flag for Costa Rica +1F1E8 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐จ๐บ) flag for Cuba +1F1E8 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ป) flag for Cape Verde +1F1E8 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ผ) flag for Curaรงao +1F1E8 1F1FD ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฝ) flag for Christmas Island +1F1E8 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐จ๐พ) flag for Cyprus +1F1E8 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐จ๐ฟ) flag for Czech Republic +1F1E9 1F1EA ; emoji ; L1 ; none ; j # V6.0 (๐ฉ๐ช) flag for Germany +1F1E9 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ฌ) flag for Diego Garcia +1F1E9 1F1EF ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ฏ) flag for Djibouti +1F1E9 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ฐ) flag for Denmark +1F1E9 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ฒ) flag for Dominica +1F1E9 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ด) flag for Dominican Republic +1F1E9 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ฉ๐ฟ) flag for Algeria +1F1EA 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ช๐ฆ) flag for Ceuta & Melilla +1F1EA 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ช๐จ) flag for Ecuador +1F1EA 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ช๐ช) flag for Estonia +1F1EA 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ช๐ฌ) flag for Egypt +1F1EA 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ช๐ญ) flag for Western Sahara +1F1EA 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ช๐ท) flag for Eritrea +1F1EA 1F1F8 ; emoji ; L1 ; none ; j # V6.0 (๐ช๐ธ) flag for Spain +1F1EA 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ช๐น) flag for Ethiopia +1F1EA 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ช๐บ) flag for European Union +1F1EB 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ซ๐ฎ) flag for Finland +1F1EB 1F1EF ; emoji ; L2 ; none ; x # V6.0 (๐ซ๐ฏ) flag for Fiji +1F1EB 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ซ๐ฐ) flag for Falkland Islands +1F1EB 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ซ๐ฒ) flag for Micronesia +1F1EB 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ซ๐ด) flag for Faroe Islands +1F1EB 1F1F7 ; emoji ; L1 ; none ; j # V6.0 (๐ซ๐ท) flag for France +1F1EC 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฆ) flag for Gabon +1F1EC 1F1E7 ; emoji ; L1 ; none ; j # V6.0 (๐ฌ๐ง) flag for United Kingdom +1F1EC 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฉ) flag for Grenada +1F1EC 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ช) flag for Georgia +1F1EC 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ซ) flag for French Guiana +1F1EC 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฌ) flag for Guernsey +1F1EC 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ญ) flag for Ghana +1F1EC 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฎ) flag for Gibraltar +1F1EC 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฑ) flag for Greenland +1F1EC 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ฒ) flag for Gambia +1F1EC 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ณ) flag for Guinea +1F1EC 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ต) flag for Guadeloupe +1F1EC 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ถ) flag for Equatorial Guinea +1F1EC 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ท) flag for Greece +1F1EC 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ธ) flag for South Georgia & South Sandwich Islands +1F1EC 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐น) flag for Guatemala +1F1EC 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐บ) flag for Guam +1F1EC 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐ผ) flag for Guinea-Bissau +1F1EC 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ฌ๐พ) flag for Guyana +1F1ED 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐ฐ) flag for Hong Kong +1F1ED 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐ฒ) flag for Heard & McDonald Islands +1F1ED 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐ณ) flag for Honduras +1F1ED 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐ท) flag for Croatia +1F1ED 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐น) flag for Haiti +1F1ED 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ญ๐บ) flag for Hungary +1F1EE 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐จ) flag for Canary Islands +1F1EE 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ฉ) flag for Indonesia +1F1EE 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ช) flag for Ireland +1F1EE 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ฑ) flag for Israel +1F1EE 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ฒ) flag for Isle of Man +1F1EE 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ณ) flag for India +1F1EE 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ด) flag for British Indian Ocean Territory +1F1EE 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ถ) flag for Iraq +1F1EE 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ท) flag for Iran +1F1EE 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ฎ๐ธ) flag for Iceland +1F1EE 1F1F9 ; emoji ; L1 ; none ; j # V6.0 (๐ฎ๐น) flag for Italy +1F1EF 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฏ๐ช) flag for Jersey +1F1EF 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฏ๐ฒ) flag for Jamaica +1F1EF 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ฏ๐ด) flag for Jordan +1F1EF 1F1F5 ; emoji ; L1 ; none ; j # V6.0 (๐ฏ๐ต) flag for Japan +1F1F0 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ช) flag for Kenya +1F1F0 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ฌ) flag for Kyrgyzstan +1F1F0 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ญ) flag for Cambodia +1F1F0 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ฎ) flag for Kiribati +1F1F0 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ฒ) flag for Comoros +1F1F0 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ณ) flag for St. Kitts & Nevis +1F1F0 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ต) flag for North Korea +1F1F0 1F1F7 ; emoji ; L1 ; none ; j # V6.0 (๐ฐ๐ท) flag for South Korea +1F1F0 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ผ) flag for Kuwait +1F1F0 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐พ) flag for Cayman Islands +1F1F0 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ฐ๐ฟ) flag for Kazakhstan +1F1F1 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ฆ) flag for Laos +1F1F1 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ง) flag for Lebanon +1F1F1 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐จ) flag for St. Lucia +1F1F1 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ฎ) flag for Liechtenstein +1F1F1 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ฐ) flag for Sri Lanka +1F1F1 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ท) flag for Liberia +1F1F1 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ธ) flag for Lesotho +1F1F1 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐น) flag for Lithuania +1F1F1 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐บ) flag for Luxembourg +1F1F1 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐ป) flag for Latvia +1F1F1 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ฑ๐พ) flag for Libya +1F1F2 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฆ) flag for Morocco +1F1F2 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐จ) flag for Monaco +1F1F2 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฉ) flag for Moldova +1F1F2 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ช) flag for Montenegro +1F1F2 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ซ) flag for St. Martin +1F1F2 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฌ) flag for Madagascar +1F1F2 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ญ) flag for Marshall Islands +1F1F2 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฐ) flag for Macedonia +1F1F2 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฑ) flag for Mali +1F1F2 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฒ) flag for Myanmar +1F1F2 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ณ) flag for Mongolia +1F1F2 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ด) flag for Macau +1F1F2 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ต) flag for Northern Mariana Islands +1F1F2 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ถ) flag for Martinique +1F1F2 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ท) flag for Mauritania +1F1F2 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ธ) flag for Montserrat +1F1F2 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐น) flag for Malta +1F1F2 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐บ) flag for Mauritius +1F1F2 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ป) flag for Maldives +1F1F2 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ผ) flag for Malawi +1F1F2 1F1FD ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฝ) flag for Mexico +1F1F2 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐พ) flag for Malaysia +1F1F2 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ฒ๐ฟ) flag for Mozambique +1F1F3 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ฆ) flag for Namibia +1F1F3 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐จ) flag for New Caledonia +1F1F3 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ช) flag for Niger +1F1F3 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ซ) flag for Norfolk Island +1F1F3 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ฌ) flag for Nigeria +1F1F3 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ฎ) flag for Nicaragua +1F1F3 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ฑ) flag for Netherlands +1F1F3 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ด) flag for Norway +1F1F3 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ต) flag for Nepal +1F1F3 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ท) flag for Nauru +1F1F3 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐บ) flag for Niue +1F1F3 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ณ๐ฟ) flag for New Zealand +1F1F4 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ด๐ฒ) flag for Oman +1F1F5 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ฆ) flag for Panama +1F1F5 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ช) flag for Peru +1F1F5 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ซ) flag for French Polynesia +1F1F5 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ฌ) flag for Papua New Guinea +1F1F5 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ญ) flag for Philippines +1F1F5 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ฐ) flag for Pakistan +1F1F5 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ฑ) flag for Poland +1F1F5 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ฒ) flag for St. Pierre & Miquelon +1F1F5 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ณ) flag for Pitcairn Islands +1F1F5 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ท) flag for Puerto Rico +1F1F5 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ธ) flag for Palestinian Territories +1F1F5 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ต๐น) flag for Portugal +1F1F5 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ต๐ผ) flag for Palau +1F1F5 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ต๐พ) flag for Paraguay +1F1F6 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ถ๐ฆ) flag for Qatar +1F1F7 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ท๐ช) flag for Rรฉunion +1F1F7 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ท๐ด) flag for Romania +1F1F7 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ท๐ธ) flag for Serbia +1F1F7 1F1FA ; emoji ; L1 ; none ; j # V6.0 (๐ท๐บ) flag for Russia +1F1F7 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ท๐ผ) flag for Rwanda +1F1F8 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฆ) flag for Saudi Arabia +1F1F8 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ง) flag for Solomon Islands +1F1F8 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐จ) flag for Seychelles +1F1F8 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฉ) flag for Sudan +1F1F8 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ช) flag for Sweden +1F1F8 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฌ) flag for Singapore +1F1F8 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ญ) flag for St. Helena +1F1F8 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฎ) flag for Slovenia +1F1F8 1F1EF ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฏ) flag for Svalbard & Jan Mayen +1F1F8 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฐ) flag for Slovakia +1F1F8 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฑ) flag for Sierra Leone +1F1F8 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฒ) flag for San Marino +1F1F8 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ณ) flag for Senegal +1F1F8 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ด) flag for Somalia +1F1F8 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ท) flag for Suriname +1F1F8 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ธ) flag for South Sudan +1F1F8 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐น) flag for Sรฃo Tomรฉ & Prรญncipe +1F1F8 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ป) flag for El Salvador +1F1F8 1F1FD ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฝ) flag for Sint Maarten +1F1F8 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐พ) flag for Syria +1F1F8 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐ธ๐ฟ) flag for Swaziland +1F1F9 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฆ) flag for Tristan da Cunha +1F1F9 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐น๐จ) flag for Turks & Caicos Islands +1F1F9 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฉ) flag for Chad +1F1F9 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐น๐ซ) flag for French Southern Territories +1F1F9 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฌ) flag for Togo +1F1F9 1F1ED ; emoji ; L2 ; none ; x # V6.0 (๐น๐ญ) flag for Thailand +1F1F9 1F1EF ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฏ) flag for Tajikistan +1F1F9 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฐ) flag for Tokelau +1F1F9 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฑ) flag for Timor-Leste +1F1F9 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฒ) flag for Turkmenistan +1F1F9 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ณ) flag for Tunisia +1F1F9 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ด) flag for Tonga +1F1F9 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (๐น๐ท) flag for Turkey +1F1F9 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐น๐น) flag for Trinidad & Tobago +1F1F9 1F1FB ; emoji ; L2 ; none ; x # V6.0 (๐น๐ป) flag for Tuvalu +1F1F9 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐น๐ผ) flag for Taiwan +1F1F9 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐น๐ฟ) flag for Tanzania +1F1FA 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐บ๐ฆ) flag for Ukraine +1F1FA 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐บ๐ฌ) flag for Uganda +1F1FA 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐บ๐ฒ) flag for U.S. Outlying Islands +1F1FA 1F1F8 ; emoji ; L1 ; none ; j # V6.0 (๐บ๐ธ) flag for United States +1F1FA 1F1FE ; emoji ; L2 ; none ; x # V6.0 (๐บ๐พ) flag for Uruguay +1F1FA 1F1FF ; emoji ; L2 ; none ; x # V6.0 (๐บ๐ฟ) flag for Uzbekistan +1F1FB 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ป๐ฆ) flag for Vatican City +1F1FB 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (๐ป๐จ) flag for St. Vincent & Grenadines +1F1FB 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐ป๐ช) flag for Venezuela +1F1FB 1F1EC ; emoji ; L2 ; none ; x # V6.0 (๐ป๐ฌ) flag for British Virgin Islands +1F1FB 1F1EE ; emoji ; L2 ; none ; x # V6.0 (๐ป๐ฎ) flag for U.S. Virgin Islands +1F1FB 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (๐ป๐ณ) flag for Vietnam +1F1FB 1F1FA ; emoji ; L2 ; none ; x # V6.0 (๐ป๐บ) flag for Vanuatu +1F1FC 1F1EB ; emoji ; L2 ; none ; x # V6.0 (๐ผ๐ซ) flag for Wallis & Futuna +1F1FC 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (๐ผ๐ธ) flag for Samoa +1F1FD 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (๐ฝ๐ฐ) flag for Kosovo +1F1FE 1F1EA ; emoji ; L2 ; none ; x # V6.0 (๐พ๐ช) flag for Yemen +1F1FE 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (๐พ๐น) flag for Mayotte +1F1FF 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (๐ฟ๐ฆ) flag for South Africa +1F1FF 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (๐ฟ๐ฒ) flag for Zambia +1F1FF 1F1FC ; emoji ; L2 ; none ; x # V6.0 (๐ฟ๐ผ) flag for Zimbabwe diff --git a/plugins/emoji/emoji.plugin.zsh b/plugins/emoji/emoji.plugin.zsh new file mode 100644 index 000000000..a98d0b714 --- /dev/null +++ b/plugins/emoji/emoji.plugin.zsh @@ -0,0 +1,289 @@ +# emoji plugin +# +# Makes emoji support available within ZSH +# +# See the README for documentation. + +_omz_emoji_plugin_dir="${0:h}" + +() { + +local LC_ALL=en_US.UTF-8 + +typeset -gAH emoji_groups +typeset -gAH emoji_con +typeset -gAH emoji2 +typeset -gAH emoji_skintone + +source "$_omz_emoji_plugin_dir/emoji-char-definitions.zsh" +unset _omz_emoji_plugin_dir + +# These additional emoji are not in the definition file, but are useful in conjunction with it + +# This is a combinin character that can be placed after any other character to surround +# it in a "keycap" symbol. +# The digits 0-9 are already in the emoji table as keycap_digit_<N>, keycap_ten, etc. +# It's unclear whether this should be in the $emoji array, because those characters are all ones +# which can be displayed on their own. +#emoji[combining_enclosing_keycap]="\U20E3" + +emoji[regional_indicator_symbol_letter_d_regional_indicator_symbol_letter_e]=$'\xF0\x9F\x87\xA9\xF0\x9F\x87\xAA' +emoji[regional_indicator_symbol_letter_g_regional_indicator_symbol_letter_b]=$'\xF0\x9F\x87\xAC\xF0\x9F\x87\xA7' +emoji[regional_indicator_symbol_letter_c_regional_indicator_symbol_letter_n]=$'\xF0\x9F\x87\xA8\xF0\x9F\x87\xB3' +emoji[regional_indicator_symbol_letter_j_regional_indicator_symbol_letter_p]=$'\xF0\x9F\x87\xAF\xF0\x9F\x87\xB5' +emoji[regional_indicator_symbol_letter_k_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xB0\xF0\x9F\x87\xB7' +emoji[regional_indicator_symbol_letter_f_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xAB\xF0\x9F\x87\xB7' +emoji[regional_indicator_symbol_letter_e_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xAA\xF0\x9F\x87\xB8' +emoji[regional_indicator_symbol_letter_i_regional_indicator_symbol_letter_t]=$'\xF0\x9F\x87\xAE\xF0\x9F\x87\xB9' +emoji[regional_indicator_symbol_letter_u_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xBA\xF0\x9F\x87\xB8' +emoji[regional_indicator_symbol_letter_r_regional_indicator_symbol_letter_u]=$'\xF0\x9F\x87\xB7\xF0\x9F\x87\xBA' + +# Nonstandard alias names +emoji[vulcan_salute]=$'\U1F596' + + +# Emoji combining and auxiliary characters + +# "Variation Selectors" for controlling text vs emoji style presentation +# These apply to the immediately preceding character +emoji2[text_style]=$'\UFE0E' +emoji2[emoji_style]=$'\UFE0F' +# Joiner that indicates a single combined-form glyph (ligature) should be used +emoji2[zero_width_joiner]=$'\U200D' +# Skin tone modifiers +emoji2[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB' +emoji2[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC' +emoji2[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD' +emoji2[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE' +emoji2[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF' +# Various other combining characters. (Incomplete list; I selected ones that sound useful) +emoji2[combining_enclosing_circle]=$'\U20DD' +emoji2[combining_enclosing_square]=$'\U20DE' +emoji2[combining_enclosing_diamond]=$'\U20DF' +emoji2[combining_enclosing_circle_backslash]=$'\U20E0' +emoji2[combining_enclosing_screen]=$'\U20E2' +emoji2[combining_enclosing_keycap]=$'\U20E3' +emoji2[combining_enclosing_upward_pointing_triangle]=$'\U20E4' + +# Easier access to skin tone modifiers +emoji_skintone[1_2]=$'\U1F3FB' +emoji_skintone[3]=$'\U1F3FC' +emoji_skintone[4]=$'\U1F3FD' +emoji_skintone[5]=$'\U1F3FE' +emoji_skintone[6]=$'\U1F3FF' + +# Emoji groups +# These are stored in a single associative array, $emoji_groups, to avoid cluttering up the global +# namespace, and to allow adding additional group definitions at run time. +# The keys are the group names, and the values are whitespace-separated lists of emoji character names. +# +# These extra local arrays are used to allow more convenient formatting of the source code. + +emoji_groups[fruits]=" + tomato + aubergine + grapes + melon + watermelon + tangerine + banana + pineapple + red_apple + green_apple + peach + cherries + strawberry + lemon + pear +" + +emoji_groups[vehicles]=" + airplane + rocket + railway_car + high_speed_train + high_speed_train_with_bullet_nose + bus + ambulance + fire_engine + police_car + taxi + automobile + recreational_vehicle + delivery_truck + ship + speedboat + bicycle + helicopter + steam_locomotive + train + light_rail + tram + oncoming_bus + trolleybus + minibus + oncoming_police_car + oncoming_taxi + oncoming_automobile + articulated_lorry + tractor + monorail + mountain_railway + suspension_railway + mountain_cableway + aerial_tramway + rowboat + bicyclist + mountain_bicyclist + sailboat +" + +emoji_groups[animals]=" + snail + snake + horse + sheep + monkey + chicken + boar + elephant + octopus + spiral_shell + bug + ant + honeybee + lady_beetle + fish + tropical_fish + blowfish + turtle + hatching_chick + baby_chick + front_facing_baby_chick + bird + penguin + koala + poodle + bactrian_camel + dolphin + mouse_face + cow_face + tiger_face + rabbit_face + cat_face + dragon_face + spouting_whale + horse_face + monkey_face + dog_face + pig_face + frog_face + hamster_face + wolf_face + bear_face + panda_face + rat + mouse + ox + water_buffalo + cow + tiger + leopard + rabbit + cat + dragon + crocodile + whale + ram + goat + rooster + dog + pig + dromedary_camel +" + +emoji_groups[faces]=" + grinning_face_with_smiling_eyes + face_with_tears_of_joy + smiling_face_with_open_mouth + smiling_face_with_open_mouth_and_smiling_eyes + smiling_face_with_open_mouth_and_cold_sweat + smiling_face_with_open_mouth_and_tightly_closed_eyes + winking_face + smiling_face_with_smiling_eyes + face_savouring_delicious_food + relieved_face + smiling_face_with_heart_shaped_eyes + smirking_face + unamused_face + face_with_cold_sweat + pensive_face + confounded_face + face_throwing_a_kiss + kissing_face_with_closed_eyes + face_with_stuck_out_tongue_and_winking_eye + face_with_stuck_out_tongue_and_tightly_closed_eyes + disappointed_face + angry_face + pouting_face + crying_face + persevering_face + face_with_look_of_triumph + disappointed_but_relieved_face + fearful_face + weary_face + sleepy_face + tired_face + loudly_crying_face + face_with_open_mouth_and_cold_sweat + face_screaming_in_fear + astonished_face + flushed_face + dizzy_face + face_with_medical_mask +" + +} + +# Prints a random emoji character +# +# random_emoji [group] +# +function random_emoji() { + local group=$1 + local names + if [[ -z "$group" || "$group" == "all" ]]; then + names=(${(k)emoji}) + else + names=(${=emoji_groups[$group_name]}) + fi + local list_size=$#names + local random_index=$(( ( RANDOM % $list_size ) + 1 )) + local name=${names[$random_index]} + echo ${emoji[$name]} +} + +# Displays a listing of emoji with their names +# +# display_emoji [group] +# +function display_emoji() { + local group=$1 + local names + if [[ -z "$group" || "$group" == "all" ]]; then + names=(${(k)emoji}) + else + names=(${=emoji_groups[$group]}) + fi + # The extra spaces in output here are a hack for readability, since some + # terminals treat these emoji chars as single-width. + for i in $names; do + printf '%s ' "$emoji[$i]" + done + print + for i in $names; do + echo "${emoji[$i]} = $i" + done +} + + diff --git a/plugins/emoji/update_emoji.pl b/plugins/emoji/update_emoji.pl new file mode 100644 index 000000000..d90c6e316 --- /dev/null +++ b/plugins/emoji/update_emoji.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl -w +# +# update_emoji.pl +# +# This script generates the emoji.plugin.zsh emoji definitions from the Unicode +# character data for the emoji characters. +# +# The data file can be found at http://unicode.org/Public/emoji/latest/emoji-data.txt +# as referenced in Unicode TR51 (http://www.unicode.org/reports/tr51/index.html). +# +# This is known to work with the data file from version 1.0. It may not work with later +# versions if the format changes. In particular, this reads line comments to get the +# emoji character name and unicode version. +# +# Country names have punctuation and other non-letter characters removed from their name, +# to avoid possible complications with having to escape the strings when using them as +# array subscripts. The definition file seems to use some combining characters like accents +# that get stripped during this process. + +use strict; +use warnings; +use 5.010; +use autodie; + +use Path::Class; +use File::Copy; + +# Parse definitions out of the data file and convert +sub process_emoji_data_file { + my ( $infile, $outfilename ) = @_; + my $file = file($infile); + my $outfile = file($outfilename); + my $outfilebase = $outfile->basename(); + my $tempfilename = "$outfilename.tmp"; + my $tempfile = file($tempfilename); + my $outfh = $tempfile->openw(); + $outfh->print(" +# $outfilebase - Emoji character definitions for oh-my-zsh emoji plugin +# +# This file is auto-generated by update_emoji.pl. Do not edit it manually. +# +# This contains the definition for: +# \$emoji - which maps character names to Unicode characters +# \$emoji_flags - maps country names to Unicode flag characters using region indicators + +# Main emoji +typeset -gAH emoji +# National flags +typeset -gAH emoji_flags +# Combining modifiers +typeset -gAH emoji_mod + +"); + + my $fh = $file->openr(); + my $line_num = 0; + while ( my $line = $fh->getline() ) { + $line_num++; + $_ = $line; + # Skip all-comment lines (from the header) and blank lines + # (But don't strip comments on normal lines; we need to parse those for + # the emoji names.) + next if /^\s*#/ or /^\s*$/; + + if (/^(\S.*?\S)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w.*?)\s*#\s*V(\S+)\s\(.*?\)\s*(\w.*\S)\s*$/) { + my ($code, $style, $level, $modifier_status, $sources, $version, $keycap_name) + = ($1, $2, $3, $4, $5, $6, $7); + #print "code=$code style=$style level=$level modifier_status=$modifier_status sources=$sources version=$version name=$keycap_name\n"; + my @code_points = split /\s+/, $code; + my @sources = split /\s+/, $sources; + + my $flag_country = ""; + if ( $keycap_name =~ /^flag for (\S.*?)\s*$/) { + $flag_country = $1; + } + + my $zsh_code = join '', map { "\\U$_" } @code_points; + # Convert keycap names to valid associative array names that do not require any + # quoting. Works fine for most stuff, but is clumsy for flags. + my $omz_name = lc($keycap_name); + $omz_name =~ s/[^A-Za-z0-9]/_/g; + my $zsh_flag_country = $flag_country; + $zsh_flag_country =~ s/[^\p{Letter}]/_/g; + if ($flag_country) { + $outfh->print("emoji_flags[$zsh_flag_country]=\$'$zsh_code'\n"); + } else { + $outfh->print("emoji[$omz_name]=\$'$zsh_code'\n"); + } + # Modifiers are included in both the main set and their separate map, + # because they have a standalone representation as a color swatch. + if ( $modifier_status == "modifier" ) { + $outfh->print("emoji_mod[$omz_name]=\$'$zsh_code'\n"); + } + } else { + die "Failed parsing line $line_num: '$_'"; + } + } + $fh->close(); + $outfh->print("\n"); + $outfh->close(); + + move($tempfilename, $outfilename) + or die "Failed moving temp file to $outfilename: $!"; +} + +my $datafile = "emoji-data.txt"; +my $zsh_def_file = "emoji-char-definitions.zsh"; +process_emoji_data_file($datafile, $zsh_def_file); + +print "Updated definition file $zsh_def_file\n"; + + + diff --git a/plugins/fasd/fasd.plugin.zsh b/plugins/fasd/fasd.plugin.zsh index 472ab2b0f..b11f0b511 100644 --- a/plugins/fasd/fasd.plugin.zsh +++ b/plugins/fasd/fasd.plugin.zsh @@ -5,7 +5,7 @@ if [ $commands[fasd] ]; then # check if fasd is installed fi source "$fasd_cache" unset fasd_cache + alias v='f -e vim' - alias o='a -e open' + alias o='a -e open_command' fi - diff --git a/plugins/frontend-search/frontend-search.plugin.zsh b/plugins/frontend-search/frontend-search.plugin.zsh index b9fb8634c..f7485621b 100644 --- a/plugins/frontend-search/frontend-search.plugin.zsh +++ b/plugins/frontend-search/frontend-search.plugin.zsh @@ -2,14 +2,6 @@ function frontend() { - # get the open command - local open_cmd - if [[ $(uname -s) == 'Darwin' ]]; then - open_cmd='open' - else - open_cmd='xdg-open' - fi - # no keyword provided, simply show how call methods if [[ $# -le 1 ]]; then echo "Please provide a search-content and a search-term for app.\nEx:\nfrontend <search-content> <search-term>\n" @@ -113,7 +105,7 @@ function frontend() { echo "$url" - $open_cmd "$url" + open_command "$url" } diff --git a/plugins/jira/jira.plugin.zsh b/plugins/jira/jira.plugin.zsh index ca540c84c..9a8932702 100644 --- a/plugins/jira/jira.plugin.zsh +++ b/plugins/jira/jira.plugin.zsh @@ -11,13 +11,6 @@ # Usage: jira # opens a new issue # jira ABC-123 # Opens an existing issue open_jira_issue () { - local open_cmd - if [[ "$OSTYPE" = darwin* ]]; then - open_cmd='open' - else - open_cmd='xdg-open' - fi - if [ -f .jira-url ]; then jira_url=$(cat .jira-url) elif [ -f ~/.jira-url ]; then @@ -39,7 +32,7 @@ open_jira_issue () { if [ -z "$1" ]; then echo "Opening new issue" - $open_cmd "${jira_url}/secure/CreateIssue!default.jspa" + open_command "${jira_url}/secure/CreateIssue!default.jspa" elif [[ "$1" = "assigned" || "$1" = "reported" ]]; then jira_query $@ else @@ -52,9 +45,9 @@ open_jira_issue () { fi if [[ "x$JIRA_RAPID_BOARD" = "xtrue" ]]; then - $open_cmd "$jira_url/issues/$jira_prefix$1$addcomment" + open_command "$jira_url/issues/$jira_prefix$1$addcomment" else - $open_cmd "$jira_url/browse/$jira_prefix$1$addcomment" + open_command "$jira_url/browse/$jira_prefix$1$addcomment" fi fi } @@ -90,7 +83,7 @@ jira_query () { return 1 fi echo "Browsing issues ${verb} ${preposition} ${jira_name}" - $open_cmd "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC" + open_command "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC" } alias jira='open_jira_issue' diff --git a/plugins/last-working-dir/last-working-dir.plugin.zsh b/plugins/last-working-dir/last-working-dir.plugin.zsh index 75041f08e..c458464ce 100644 --- a/plugins/last-working-dir/last-working-dir.plugin.zsh +++ b/plugins/last-working-dir/last-working-dir.plugin.zsh @@ -8,7 +8,8 @@ mkdir -p $ZSH_CACHE_DIR cache_file="$ZSH_CACHE_DIR/last-working-dir" # Updates the last directory once directory is changed. -function chpwd() { +chpwd_functions+=(chpwd_last_working_dir) +function chpwd_last_working_dir() { # Use >| in case noclobber is set to avoid "file exists" error pwd >| "$cache_file" } diff --git a/plugins/lighthouse/lighthouse.plugin.zsh b/plugins/lighthouse/lighthouse.plugin.zsh index 7661c6add..48cddbccc 100644 --- a/plugins/lighthouse/lighthouse.plugin.zsh +++ b/plugins/lighthouse/lighthouse.plugin.zsh @@ -9,7 +9,7 @@ open_lighthouse_ticket () { else lighthouse_url=$(cat .lighthouse-url); echo "Opening ticket #$1"; - `open $lighthouse_url/tickets/$1`; + open_command "$lighthouse_url/tickets/$1"; fi } diff --git a/plugins/n98-magerun/n98-magerun.plugin.zsh b/plugins/n98-magerun/n98-magerun.plugin.zsh new file mode 100755 index 000000000..bfcf27b98 --- /dev/null +++ b/plugins/n98-magerun/n98-magerun.plugin.zsh @@ -0,0 +1,34 @@ +# ------------------------------------------------------------------------------ +# FILE: n98-magerun.plugin.zsh +# DESCRIPTION: oh-my-zsh n98-magerun plugin file. Adapted from composer plugin +# AUTHOR: Andrew Dwyer (andrewrdwyer at gmail dot com) +# VERSION: 1.0.0 +# ------------------------------------------------------------------------------ + +# n98-magerun basic command completion +_n98_magerun_get_command_list () { + $_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z\-:]+/ { print $1 }' +} + + +_n98_magerun () { + _arguments '1: :->command' '*:optional arg:_files' + + case $state in + command) + compadd $(_n98_magerun_get_command_list) + ;; + *) + esac +} + +compdef _n98_magerun n98-magerun.phar +compdef _n98_magerun n98-magerun + +# Aliases +alias n98='n98-magerun.phar' +alias mage='n98-magerun.phar' +alias magefl='n98-magerun.phar cache:flush' + +# Install n98-magerun into the current directory +alias mage-get='wget https://raw.github.com/netz98/n98-magerun/master/n98-magerun.phar' diff --git a/plugins/node/node.plugin.zsh b/plugins/node/node.plugin.zsh index 39d8b10d9..2463815ac 100644 --- a/plugins/node/node.plugin.zsh +++ b/plugins/node/node.plugin.zsh @@ -1,13 +1,5 @@ # Open the node api for your current version to the optional section. # TODO: Make the section part easier to use. function node-docs { - # get the open command - local open_cmd - if [[ "$OSTYPE" = darwin* ]]; then - open_cmd='open' - else - open_cmd='xdg-open' - fi - - $open_cmd "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1" + open_command "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1" } diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index 7d3db0f8e..07eb595a6 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -1,11 +1,12 @@ user_commands=( list-units is-active status show help list-unit-files - is-enabled list-jobs show-environment) + is-enabled list-jobs show-environment cat) sudo_commands=( start stop reload restart try-restart isolate kill reset-failed enable disable reenable preset mask unmask - link load cancel set-environment unset-environment) + link load cancel set-environment unset-environment + edit) for c in $user_commands; do; alias sc-$c="systemctl $c"; done for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done diff --git a/plugins/terraform/README.md b/plugins/terraform/README.md new file mode 100644 index 000000000..44e38a1c0 --- /dev/null +++ b/plugins/terraform/README.md @@ -0,0 +1,11 @@ +## atom + +Plugin for Terraform, a tool from Hashicorp for managing infrastructure safely and efficiently. + +### Requirements + + * [Terraform](https://terraform.io/) + +### Usage + + * Type `terraform` into your prompt and hit `TAB` to see available completion options diff --git a/plugins/terraform/_terraform b/plugins/terraform/_terraform new file mode 100644 index 000000000..11740dc48 --- /dev/null +++ b/plugins/terraform/_terraform @@ -0,0 +1,177 @@ +#compdef terraform + +local -a _terraform_cmds +_terraform_cmds=( + 'apply:Builds or changes infrastructure' + 'destroy:Destroy Terraform-managed infrastructure' + 'get:Download and install modules for the configuration' + 'graph:Create a visual graph of Terraform resources' + 'init:Initializes Terraform configuration from a module' + 'output:Read an output from a state file' + 'plan:Generate and show an execution plan' + 'pull:Refreshes the local state copy from the remote server' + 'push:Uploads the local state to the remote server' + 'refresh:Update local state file against real resources' + 'remote:Configures remote state management' + 'show:Inspect Terraform state or plan' + 'taint:Manually forcing a destroy and recreate on the next plan/apply' + 'version:Prints the Terraform version' +) + +__apply() { + _arguments \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ + '-input=[(true) Ask for input for variables if not directly set.]' \ + '-no-color[If specified, output will not contain any color.]' \ + '-refresh=[(true) Update state prior to checking for differences. This has no effect if a plan file is given to apply.]' \ + '-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \ + '-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \ + '-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \ + '-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \ + '-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]' +} + +__destroy() { + _arguments \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ + '-force[If set, then the destroy confirmation will not be shown.]' \ + '-input=[(true) Ask for input for variables if not directly set.]' \ + '-no-color[If specified, output will not contain any color.]' \ + '-refresh=[(true) Update state prior to checking for differences. This has no effect if a plan file is given to apply.]' \ + '-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \ + '-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \ + '-target=[(resource) Instead of affecting "dependencies" will instead also destroy any resources that depend on the target(s) specified.]' \ + '-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \ + '-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]' +} + +__get() { + _arguments \ + '-update=[(false) If true, modules already downloaded will be checked for updates and updated if necessary.]' +} + +__graph() { + _arguments \ + '-draw-cycles[Highlight any cycles in the graph with colored edges. This helps when diagnosing cycle errors.]' \ + '-module-depth=[(n) The maximum depth to expand modules. By default this is zero, which will not expand modules at all.]' \ + '-verbose[Generate a verbose, "worst-case" graph, with all nodes for potential operations in place.]' +} + +__init() { + _arguments \ + '-address=[(url) URL of the remote storage server. Required for HTTP backend, optional for Atlas and Consul.]' \ + '-access-token=[(token) Authentication token for state storage server. Required for Atlas backend, optional for Consul.]' \ + '-backend=[(atlas) Specifies the type of remote backend. Must be one of Atlas, Consul, or HTTP. Defaults to atlas.]' \ + '-name=[(name) Name of the state file in the state storage server. Required for Atlas backend.]' \ + '-path=[(path) Path of the remote state in Consul. Required for the Consul backend.]' +} + +__output() { + _arguments \ + '-state=[(path) Path to the state file to read. Defaults to "terraform.tfstate".]' \ + '-module=[(module_name) The module path which has needed output. By default this is the root path. Other modules can be specified by a period-separated list.]' +} + +__plan() { + _arguments \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with" .backup" extension. Set to "-" to disable backup.]' \ + '-destroy[If set, a plan will be generated to destroy all resources managed by the given configuration and state.]' \ + '-detailed-exitcode[Return a detailed exit code when the command exits. When provided, this argument changes the exit codes and their meanings to provide more granular information about what the resulting plan contains]' \ + '-input=[(true) Ask for input for variables if not directly set.]' \ + '-module-depth=[(n) Specifies the depth of modules to show in the output. This does not affect the plan itself, only the output shown. By default, this is zero. -1 will expand all.]' \ + '-no-color[If specified, output will not contain any color.]' \ + '-out=[(path) Write a plan file to the given path. This can be used as input to the "apply" command.]' \ + '-refresh=[(true) Update state prior to checking for differences.]' \ + '-state=[(statefile) Path to a Terraform state file to use to look up Terraform-managed resources. By default it will use the state "terraform.tfstate" if it exists.]' \ + '-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \ + '-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \ + '-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]' +} + +__push() { + _arguments \ + '-atlas-address=[(url) An alternate address to an Atlas instance. Defaults to https://atlas.hashicorp.com.]' \ + '-upload-modules=[(true) If true (default), then the modules being used are all locked at their current checkout and uploaded completely to Atlas. This prevents Atlas from running terraform get for you.]' \ + '-name=[(name) Name of the infrastructure configuration in Atlas. The format of this is: "username/name" so that you can upload configurations not just to your account but to other accounts and organizations. This setting can also be set in the configuration in the Atlas section.]' \ + '-no-color[Disables output with coloring]' \ + '-overwrite=[(foo) Marks a specific variable to be updated on Atlas. Normally, if a variable is already set in Atlas, Terraform will not send the local value (even if it is different). This forces it to send the local value to Atlas. This flag can be repeated multiple times.]' \ + '-token=[(token) Atlas API token to use to authorize the upload. If blank or unspecified, the ATLAS_TOKEN environmental variable will be used.]' \ + '-var=[("foo=bar") Set the value of a variable for the Terraform configuration.]' \ + '-var-file=[(foo) Set the value of variables using a variable file.]' \ + '-vcs=[(true) If true (default), then Terraform will detect if a VCS is in use, such as Git, and will only upload files that are comitted to version control. If no version control system is detected, Terraform will upload all files in path (parameter to the command).]' +} + +__refresh() { + _arguments \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ + '-no-color[If specified, output will not contain any color.]' \ + '-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \ + '-state-out=[(path) Path to write state to that is different than "-state". This can be used to preserve the old state.]' \ + '-target=[(resource) A Resource Address to target. Operation will be limited to this resource and its dependencies. This flag can be used multiple times.]' \ + '-var[("foo=bar") Set a variable in the Terraform configuration. This flag can be set multiple times.]' \ + '-var-file=[(path) Set variables in the Terraform configuration from a file. If "terraform.tfvars" is present, it will be automatically loaded if this flag is not specified.]' +} + +__remote() { + _arguments \ + '-address=[(url) URL of the remote storage server. Required for HTTP backend, optional for Atlas and Consul.]' \ + '-access-token=[(token) Authentication token for state storage server. Required for Atlas backend, optional for Consul.]' \ + '-backend=[(atlas) Specifies the type of remote backend. Must be one of Atlas, Consul, or HTTP. Defaults to atlas.]' \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ + '-disable[Disables remote state management and migrates the state to the -state path.]' \ + '-name=[(name) Name of the state file in the state storage server. Required for Atlas backend.]' \ + '-path=[(path) Path of the remote state in Consul. Required for the Consul backend.]' \ + '-pull=[(true) Controls if the remote state is pulled before disabling. This defaults to true to ensure the latest state is cached before disabling.]' \ + '-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' +} + +__show() { + _arguments \ + '-module-depth=[(n) The maximum depth to expand modules. By default this is zero, which will not expand modules at all.]' \ + '-no-color[If specified, output will not contain any color.]' +} + +__taint() { + _arguments \ + '-allow-missing[If specified, the command will succeed (exit code 0) even if the resource is missing.]' \ + '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ + '-module=[(path) The module path where the resource lives. By default this will be root. Child modules can be specified by names. Ex. "consul" or "consul.vpc" (nested modules).]' \ + '-no-color[If specified, output will not contain any color.]' \ + '-state=[(path) Path to read and save state (unless state-out is specified). Defaults to "terraform.tfstate".]' \ + '-state-out=[(path) Path to write updated state file. By default, the "-state" path will be used.]' +} + +_arguments '*:: :->command' + +if (( CURRENT == 1 )); then + _describe -t commands "terraform command" _terraform_cmds + return +fi + +local -a _command_args +case "$words[1]" in + apply) + __apply ;; + destroy) + __destroy ;; + get) + __get ;; + graph) + __graph ;; + init) + __init ;; + output) + __output ;; + plan) + __plan ;; + push) + __push ;; + refresh) + __refresh ;; + remote) + __remote ;; + show) + __show ;; + taint) + __taint ;; +esac diff --git a/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh b/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh index c40ca86ac..6cd30732e 100644 --- a/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh +++ b/plugins/virtualenvwrapper/virtualenvwrapper.plugin.zsh @@ -38,7 +38,7 @@ if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then local WORKON_CWD=1 # Check if this is a Git repo local GIT_REPO_ROOT="" - local GIT_TOPLEVEL=$(git rev-parse --show-toplevel 2> /dev/null) + local GIT_TOPLEVEL="$(git rev-parse --show-toplevel 2> /dev/null)" if [[ $? == 0 ]]; then GIT_REPO_ROOT="$GIT_TOPLEVEL" fi @@ -53,7 +53,7 @@ if [[ ! $DISABLE_VENV_CD -eq 1 ]]; then fi # Check for virtualenv name override if [[ -f "$PROJECT_ROOT/.venv" ]]; then - ENV_NAME=`cat "$PROJECT_ROOT/.venv"` + ENV_NAME="$(cat "$PROJECT_ROOT/.venv")" elif [[ -f "$PROJECT_ROOT/.venv/bin/activate" ]];then ENV_NAME="$PROJECT_ROOT/.venv" elif [[ "$PROJECT_ROOT" != "." ]]; then diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh index b5f1c0bbf..fa1911477 100644 --- a/plugins/vundle/vundle.plugin.zsh +++ b/plugins/vundle/vundle.plugin.zsh @@ -13,15 +13,15 @@ function vundle-init () { function vundle () { vundle-init - vim -c "execute \"PluginInstall\" | q | q" + vim -c "execute \"PluginInstall\" | qa" } function vundle-update () { vundle-init - vim -c "execute \"PluginInstall!\" | q | q" + vim -c "execute \"PluginInstall!\" | qa" } function vundle-clean () { vundle-init - vim -c "execute \"PluginClean!\" | q | q" + vim -c "execute \"PluginClean!\" | qa" } diff --git a/plugins/web-search/web-search.plugin.zsh b/plugins/web-search/web-search.plugin.zsh index d407edb96..7c3ad9046 100644 --- a/plugins/web-search/web-search.plugin.zsh +++ b/plugins/web-search/web-search.plugin.zsh @@ -14,16 +14,6 @@ function web_search() { github "https://github.com/search?q=" ) - # define the open command - case "$OSTYPE" in - darwin*) open_cmd="open" ;; - cygwin*) open_cmd="cygstart" ;; - linux*) open_cmd="xdg-open" ;; - *) echo "Platform $OSTYPE not supported" - return 1 - ;; - esac - # check whether the search engine is supported if [[ -z "$urls[$1]" ]]; then echo "Search engine $1 not supported." @@ -41,7 +31,7 @@ function web_search() { url="${(j://:)${(s:/:)urls[$1]}[1,2]}" fi - nohup $open_cmd "$url" &>/dev/null + open_command "$url" } diff --git a/themes/candy-kingdom.zsh-theme b/themes/candy-kingdom.zsh-theme index adba1ad39..9d2103926 100644 --- a/themes/candy-kingdom.zsh-theme +++ b/themes/candy-kingdom.zsh-theme @@ -13,7 +13,7 @@ patches: <patches|join( โ )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST} + [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} } PROMPT=' diff --git a/themes/fino-time.zsh-theme b/themes/fino-time.zsh-theme index 6e7e654ff..9b1db3a08 100644 --- a/themes/fino-time.zsh-theme +++ b/themes/fino-time.zsh-theme @@ -21,7 +21,7 @@ function prompt_char { } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST} + [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} } diff --git a/themes/fino.zsh-theme b/themes/fino.zsh-theme index e4477589e..6eec097f5 100644 --- a/themes/fino.zsh-theme +++ b/themes/fino.zsh-theme @@ -17,7 +17,7 @@ function prompt_char { } function box_name { - [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-HOST} + [ -f ~/.box-name ] && cat ~/.box-name || echo ${SHORT_HOST:-$HOST} } local ruby_env='' |