tanuki_emoji-0.9.0/0000755000004100000410000000000014545323276014241 5ustar www-datawww-datatanuki_emoji-0.9.0/Gemfile.lock0000644000004100000410000000747114545323276016474 0ustar www-datawww-dataPATH remote: . specs: tanuki_emoji (0.9.0) GEM remote: https://rubygems.org/ specs: addressable (2.8.0) public_suffix (>= 2.0.2, < 5.0) ast (2.4.2) claide (1.1.0) claide-plugins (0.9.2) cork nap open4 (~> 1.3) colored2 (3.1.2) cork (0.3.0) colored2 (~> 3.1) danger (8.4.5) claide (~> 1.0) claide-plugins (>= 0.9.2) colored2 (~> 3.1) cork (~> 0.1) faraday (>= 0.9.0, < 2.0) faraday-http-cache (~> 2.0) git (~> 1.7) kramdown (~> 2.3) kramdown-parser-gfm (~> 1.0) no_proxy_fix octokit (~> 4.7) terminal-table (>= 1, < 4) danger-gitlab (8.0.0) danger gitlab (~> 4.2, >= 4.2.0) diff-lcs (1.4.4) docile (1.4.0) faraday (1.10.0) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) faraday-httpclient (~> 1.0) faraday-multipart (~> 1.0) faraday-net_http (~> 1.0) faraday-net_http_persistent (~> 1.0) faraday-patron (~> 1.0) faraday-rack (~> 1.0) faraday-retry (~> 1.0) ruby2_keywords (>= 0.0.4) faraday-em_http (1.0.0) faraday-em_synchrony (1.0.0) faraday-excon (1.1.0) faraday-http-cache (2.2.0) faraday (>= 0.8) faraday-httpclient (1.0.1) faraday-multipart (1.0.3) multipart-post (>= 1.2, < 3) faraday-net_http (1.0.1) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) faraday-retry (1.0.3) git (1.10.2) rchardet (~> 1.8) gitlab (4.18.0) httparty (~> 0.18) terminal-table (>= 1.5.1) gitlab-dangerfiles (2.11.0) danger (>= 8.4.5) danger-gitlab (>= 8.0.0) httparty (0.20.0) mime-types (~> 3.0) multi_xml (>= 0.5.2) kramdown (2.3.1) rexml kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) mime-types (3.4.1) mime-types-data (~> 3.2015) mime-types-data (3.2022.0105) multi_xml (0.6.0) multipart-post (2.1.1) nap (1.1.0) no_proxy_fix (0.1.2) octokit (4.22.0) faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) open4 (1.3.4) parallel (1.20.1) parser (3.0.2.0) ast (~> 2.4.1) public_suffix (4.0.6) rainbow (3.0.0) rake (13.0.6) rchardet (1.8.0) regexp_parser (2.1.1) rexml (3.2.5) rspec (3.10.0) rspec-core (~> 3.10.0) rspec-expectations (~> 3.10.0) rspec-mocks (~> 3.10.0) rspec-core (3.10.1) rspec-support (~> 3.10.0) rspec-expectations (3.10.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.10.0) rspec-mocks (3.10.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.10.0) rspec-support (3.10.2) rspec_junit_formatter (0.4.1) rspec-core (>= 2, < 4, != 2.12.0) rubocop (1.18.4) parallel (~> 1.10) parser (>= 3.0.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml rubocop-ast (>= 1.8.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) rubocop-ast (1.8.0) parser (>= 3.0.1.1) ruby-progressbar (1.11.0) ruby2_keywords (0.0.5) sawyer (0.8.2) addressable (>= 2.3.5) faraday (> 0.8, < 2.0) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) simplecov-cobertura (1.4.2) simplecov (~> 0.8) simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) unicode-display_width (2.1.0) PLATFORMS ruby x86_64-darwin-20 x86_64-linux DEPENDENCIES gitlab-dangerfiles (~> 2.11.0) rake (~> 13.0) rspec (~> 3.0) rspec_junit_formatter (~> 0.4.0) rubocop (~> 1.7) simplecov simplecov-cobertura (~> 1.4.2) tanuki_emoji! BUNDLED WITH 2.2.22 tanuki_emoji-0.9.0/.gitlab-ci.yml0000644000004100000410000000522414545323276016700 0ustar www-datawww-data--- workflow: rules: # for default branch (pushes, merges, etc.) - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' # for all merge requests - if: '$CI_MERGE_REQUEST_IID' # for all tags - if: '$CI_COMMIT_TAG' .ruby: &ruby variables: LANG: "C.UTF-8" before_script: - ruby -v # Print out ruby version for debugging - bundle config set --local deployment true - bundle install -j $(nproc) # Install dependencies into ./vendor/ruby parallel: matrix: - RUBY_VERSION: ['3.0', '3.1', '3.2'] image: "ruby:$RUBY_VERSION" cache: paths: - vendor/ruby key: 'ruby$RUBY_VERSION' rspec: extends: .ruby variables: GIT_SUBMODULE_STRATEGY: recursive script: - bundle exec rake update_assets - bundle exec rake spec artifacts: reports: junit: rspec.xml coverage_report: path: coverage/coverage.xml coverage_format: cobertura gem: extends: .ruby variables: GIT_SUBMODULE_STRATEGY: recursive script: - bundle exec rake install artifacts: paths: - pkg/*.gem rubocop: extends: .ruby script: - bundle exec rake rubocop include: - template: Security/SAST.gitlab-ci.yml - template: Security/Dependency-Scanning.gitlab-ci.yml - template: Security/License-Scanning.gitlab-ci.yml - template: Security/Secret-Detection.gitlab-ci.yml - template: Code-Quality.gitlab-ci.yml - project: 'gitlab-org/quality/pipeline-common' file: - '/ci/gem-release.yml' - '/ci/danger-review.yml' secret_detection: rules: - if: $SECRET_DETECTION_DISABLED when: never # for default branch (pushes, merges, etc.) - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' # for all merge requests - if: '$CI_MERGE_REQUEST_IID' - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train" # specific when: never needs: [] dependencies: [] # Don't download artifacts update-changelog: stage: deploy image: ruby:3.0 rules: - if: '$GITLAB_API_TOKEN == null' when: never - changes: ["CHANGELOG.md"] when: never - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' changes: ["lib/**/version.rb"] variables: GEMSPEC_FILE: "${CI_PROJECT_NAME}.gemspec" script: - | version=$(ruby -e "print Gem::Specification.load('${GEMSPEC_FILE}').version") [ -n "${version}" ] || (echo "VERSION could not be parsed in ${GEMSPEC_FILE}!" && exit 1) - 'curl --fail --request POST --header "PRIVATE-TOKEN: ${GITLAB_API_TOKEN}" "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/repository/changelog?version=${version}&branch=${CI_MERGE_REQUEST_SOURCE_BRANCH_NAME}"' tanuki_emoji-0.9.0/.gitignore0000644000004100000410000000025014545323276016226 0ustar www-datawww-data/.bundle/ /.yardoc /_yardoc/ /coverage/ /doc/ /pkg/ /spec/reports/ /tmp/ /.idea .rspec_status /*.gem /app/assets/**/* .DS_Store # rspec failure tracking .rspec_status tanuki_emoji-0.9.0/.gitmodules0000644000004100000410000000015314545323276016415 0ustar www-datawww-data[submodule "vendor/noto-emoji"] path = vendor/noto-emoji url = https://github.com/googlefonts/noto-emoji tanuki_emoji-0.9.0/CONTRIBUTING.md0000644000004100000410000000425114545323276016474 0ustar www-datawww-data## Developer Certificate of Origin and License By contributing to GitLab B.V., you accept and agree to the following terms and conditions for your present and future contributions submitted to GitLab B.V. Except for the license granted herein to GitLab B.V. and recipients of software distributed by GitLab B.V., you reserve all right, title, and interest in and to your Contributions. All contributions are subject to the Developer Certificate of Origin and license set out at [docs.gitlab.com/ce/legal/developer_certificate_of_origin](https://docs.gitlab.com/ce/legal/developer_certificate_of_origin). ## Code of conduct As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion. Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team. This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Instances of abusive, harassing, or otherwise unacceptable behavior can be reported by emailing contact@gitlab.com. This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org), version 1.1.0, available at [https://contributor-covenant.org/version/1/1/0/](https://contributor-covenant.org/version/1/1/0/). tanuki_emoji-0.9.0/lib/0000755000004100000410000000000014545323276015007 5ustar www-datawww-datatanuki_emoji-0.9.0/lib/tanuki_emoji/0000755000004100000410000000000014545323276017465 5ustar www-datawww-datatanuki_emoji-0.9.0/lib/tanuki_emoji/db/0000755000004100000410000000000014545323276020052 5ustar www-datawww-datatanuki_emoji-0.9.0/lib/tanuki_emoji/db/emoji_data_parser.rb0000644000004100000410000001104714545323276024052 0ustar www-datawww-data# frozen_string_literal: true require 'strscan' require 'date' module TanukiEmoji module Db # Reads and extract content from emoji-data.txt and its metadata class EmojiDataParser DATA_FILE = 'vendor/unicode/emoji-data.txt' PROPERTIES = { 'Emoji' => :emoji, 'Emoji_Presentation' => :emoji_presentation, 'Emoji_Modifier' => :emoji_modifier, 'Emoji_Modifier_Base' => :emoji_modifier_base, 'Emoji_Component' => :emoji_component, 'Extended_Pictographic' => :extended_pictographic }.freeze # Return the path to the default data file (emoji-data.txt) # # @return [Pathname] path to the default data file def self.data_file Pathname.new(File.expand_path(File.join(__dir__, '../../../', DATA_FILE))) end attr_reader :data_file def initialize(data_file = self.class.data_file) @data_file = data_file end # Return the parsed data from the data file # # @return [Array] collection of EmojiData def data parsed = [] load do |line| parse_data(line).tap do |result| parsed << result unless result.nil? end end parsed end def raw_data lines = [] load do |line| lines << line end lines end def metadata parsed = [] load do |line| parse_metadata(line).tap do |result| parsed << result unless result.nil? end end meta = {} # Extract date raw_datetime = parsed.detect { |data| data[:key] == "Date" }&.fetch(:value) meta[:date] = DateTime.parse(raw_datetime) # Extract version meta[:version] = parsed.detect { |data| data[:key] == "Version" }&.fetch(:value) # Extract total elements meta[:total_elements] = parsed.select { |data| data[:key] == "Total elements" }.sum { |data| data[:value].to_i } meta end private # Parse a line extracting data and ignoring comments and metadata # # @param [String] line a line from the data file # @return [EmojiData] emoji data parsed from the line def parse_data(line) @scanner = StringScanner.new(line) data = {} skip_line_breaks # Ignore comment lines return if comment_token? || empty_line? data[:codepoints] = @scanner.scan(/[0-9A-F]+(?:\.\.[0-9A-F]+)?/) skip_spaces # match `; ` @scanner.scan(/; (?[a-zA-Z_]+)/) data[:property] = convert_property(fetch_first_capture) skip_spaces # Version in which codepoint was introduced @scanner.scan(/# E(?[0-9]+\.[0-9]+)/) data[:version] = fetch_first_capture skip_spaces # size of the range being described (1 when single codepoint) @scanner.scan(/\[(?[0-9]+)\]/) data[:range_size] = fetch_first_capture&.to_i skip_spaces # example emojis for described codepoint or range @scanner.scan(/\((?[^)]+)\)/) data[:examples] = fetch_first_capture.to_s skip_spaces # description text @scanner.scan(/(?[^\n]+)/) data[:description] = fetch_first_capture EmojiData.new(*data.values) end # Parse a line extracting metadata from comments only # # @param [String] line a line from the data file # @return [Hash] containing :date, :version and :total_elements def parse_metadata(line) @scanner = StringScanner.new(line) data = {} skip_line_breaks # process only when it's a comment line return unless comment_token? @scanner.scan(/# (?[a-zA-Z\s]+): (?[^\n]+)/) data[:key] = fetch_first_capture data[:value] = fetch_second_capture return unless data[:key] && data[:value] data end def skip_line_breaks @scanner.skip(/\n/) end def skip_spaces @scanner.skip(/\s+/) end def comment_token? @scanner.peek(1) == '#' end def empty_line? @scanner.peek(1) == '' end def fetch_first_capture @scanner.captures&.dig(0) end def fetch_second_capture @scanner.captures&.dig(1) end def convert_property(property) PROPERTIES[property] || property end def load(&block) File.open(data_file).each(&block) end end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/db/unicode_version.rb0000644000004100000410000000151714545323276023576 0ustar www-datawww-data# frozen_string_literal: true require 'json' module TanukiEmoji module Db # Emoji Unicode Version database class UnicodeVersion DATA_FILE = 'vendor/emoji-unicode-version/emoji-unicode-version-map.json' def self.data_file File.expand_path(File.join(__dir__, '../../../', DATA_FILE)) end attr_reader :data_file def initialize(index:, data_file: self.class.data_file) @data_file = data_file @index = index end def load! db = File.open(data_file, 'r:UTF-8') do |file| JSON.parse(file.read, symbolize_names: true) end db.each do |emoji_name, unicode_version| emoji = @index.find_by_alpha_code(emoji_name) next unless emoji emoji.unicode_version = unicode_version end end end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/db/unicode_ordering.rb0000644000004100000410000000221614545323276023717 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji module Db # Emoji Unicode Ordering database class UnicodeOrdering DATA_FILE = 'vendor/unicode/emoji-ordering.txt' def self.data_file File.expand_path(File.join(__dir__, '../../../', DATA_FILE)) end attr_reader :data_file def initialize(index:, data_file: nil) @data_file = data_file || self.class.data_file @index = index end def load! db = {} File.readlines(data_file, mode: 'r:UTF-8').each_with_index do |line, line_number| next if line.start_with?('#') tokens = line.split semicolon_offset = tokens.index(';') next if semicolon_offset.nil? codepoints_array = tokens[0...semicolon_offset].map do |token| token[2...token.length].hex end codepoints = codepoints_array.pack('U*') db[codepoints] = line_number end db.each do |codepoints, sort_key| emoji = @index.find_by_codepoints(codepoints) next unless emoji emoji.sort_key = sort_key end end end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/db/emoji_data.rb0000644000004100000410000000025314545323276022473 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji module Db EmojiData = Struct.new(:codepoints, :property, :version, :range_size, :examples, :description) end end tanuki_emoji-0.9.0/lib/tanuki_emoji/db/gemojione.rb0000644000004100000410000000304214545323276022352 0ustar www-datawww-data# frozen_string_literal: true require 'json' module TanukiEmoji module Db # Gemojione Emoji database class Gemojione DATA_FILE = 'vendor/gemojione/index-3.3.0.json' def self.data_file File.expand_path(File.join(__dir__, '../../../', DATA_FILE)) end attr_reader :data_file def initialize(index:, data_file: self.class.data_file) @data_file = data_file @index = index end def load! db = File.open(data_file, 'r:UTF-8') do |file| JSON.parse(file.read, symbolize_names: true) end db.each do |emoji_name, emoji_data| emoji = Character.new(emoji_name.to_s, codepoints: emoji_data[:moji], alpha_code: emoji_data[:shortname], description: emoji_data[:name], category: emoji_data[:category]) emoji_data[:unicode_alternates].each do |unicode_alternates| codepoints = unicode_hex_to_codepoint(unicode_alternates) emoji.add_codepoints(codepoints) end emoji_data[:aliases].each do |alpha_code| emoji.add_alias(alpha_code) end emoji_data[:aliases_ascii].each do |ascii_string| emoji.add_ascii_alias(ascii_string) end @index.add(emoji) end end private def unicode_hex_to_codepoint(unicode) unicode.split('-').map { |i| i.to_i(16) }.pack('U*') end end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/db.rb0000644000004100000410000000057014545323276020401 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji module Db autoload :Gemojione, 'tanuki_emoji/db/gemojione' autoload :UnicodeOrdering, 'tanuki_emoji/db/unicode_ordering' autoload :UnicodeVersion, 'tanuki_emoji/db/unicode_version' autoload :EmojiData, 'tanuki_emoji/db/emoji_data' autoload :EmojiDataParser, 'tanuki_emoji/db/emoji_data_parser' end end tanuki_emoji-0.9.0/lib/tanuki_emoji/character.rb0000644000004100000410000001031414545323276021745 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji # Character represents an Emoji character or sequence which can be formed by one or more Unicode code points # respectively which combined form a unique pictographic representation (known as Emoji) # # @see https://www.unicode.org/reports/tr51/ class Character IMAGE_PREFIX = 'emoji_u' IMAGE_EXTENSION = '.png' FLAG_REGEXP = /[🇦-🇿]{2}/u ALPHA_CODE_REGEXP = /:(?[_+\-a-z0-9]+):/ # This denotes a "color" or "emoji" version EMOJI_VARIATION_SELECTOR = 0xFE0F # This denotes a "plain" (black/white) or "textual" version PLAIN_VARIATION_SELECTOR = 0xFE0E PLAIN_VARIATION_SELECTOR_STRING = PLAIN_VARIATION_SELECTOR.chr(Encoding::UTF_8) # Zero Width Joiner is used in sequences to indicate they should all be evaluated and displayed as a single thing ZWJ_TAG = 0x200D attr_reader :name, :codepoints, :codepoints_alternates, :alpha_code, :aliases, :ascii_aliases, :description, :category attr_accessor :unicode_version, :sort_key # @param [String] name # @param [String] codepoints # @param [String] alpha_code # @param [String] description # @param [String] category def initialize(name, codepoints:, alpha_code:, description:, category:) @name = self.class.format_name(name) @codepoints = codepoints @codepoints_alternates = [] @alpha_code = self.class.format_alpha_code(alpha_code) @aliases = [] @ascii_aliases = [] @description = description @category = category end # Add alternative codepoints to this character # # @param [String] codepoints def add_codepoints(codepoints) codepoints_alternates << codepoints end # Add alternative alpha_codes to this character # # @param [String] alpha_code def add_alias(alpha_code) aliases << self.class.format_alpha_code(alpha_code) end # Add alternative ASCII aliases to this character # # @param [String] ascii_string def add_ascii_alias(ascii_string) ascii_aliases << ascii_string end # Return a Hex formatted version of the Unicode code points # # @return [String] Hex formatted version of the unicode def hex unicode_to_hex(codepoints).join('-') end # Generate the image name to be used as fallback for this character # # @return [String] image name with extension def image_name # Noto doesn't ship flags as part of regular hex-named files # Flags are stored in a separate third-party folder and follow ISO-3166-1 codes # @see http://en.wikipedia.org/wiki/ISO_3166-1 return alpha_code.tr(':', '').sub('flag_', '').upcase + IMAGE_EXTENSION if flag? # Noto omits Emoji Variation Selector on their resources file names IMAGE_PREFIX + unicode_to_hex(codepoints).reject { |i| i == EMOJI_VARIATION_SELECTOR.to_s(16) }.join('_') + IMAGE_EXTENSION end # Return whether current character represents a flag or not # # @return [Boolean] whether character represents a flag or not def flag? codepoints.match?(FLAG_REGEXP) end def to_s codepoints end def inspect "#<#{self.class.name}:#{name} #{codepoints}(#{hex})>" end def ==(other) name == other.name && codepoints == other.codepoints && codepoints_alternates == other.codepoints_alternates && alpha_code == other.alpha_code && aliases == other.aliases && ascii_aliases == other.ascii_aliases && description == other.description end # Ensure alpha code is formatted with colons # # @param [String] alpha_code # @return [String] formatted alpha code def self.format_alpha_code(alpha_code) alpha_code.to_s.match?(ALPHA_CODE_REGEXP) ? alpha_code.to_s : ":#{alpha_code}:" end def self.format_name(raw_name) matched = raw_name.match(ALPHA_CODE_REGEXP) matched ? matched['alpha_text'] : raw_name end private # Return each codepoint converted to its hex value as string # # @param [String] value # @return [Array] hex value as string def unicode_to_hex(value) value.unpack('U*').map { |i| i.to_s(16).rjust(4, '0') } end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/version.rb0000644000004100000410000000011214545323276021471 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji VERSION = "0.9.0" end tanuki_emoji-0.9.0/lib/tanuki_emoji/errors.rb0000644000004100000410000000206314545323276021327 0ustar www-datawww-data# frozen_string_literal: true module TanukiEmoji class Error < StandardError; end # Error: An Emoji with the same alpha code has been previously indexed class AlphaCodeAlreadyIndexedError < Error attr_reader :name, :alpha_code # @param [String] name # @param [String] alpha_code def initialize(name, alpha_code) @name = name @alpha_code = alpha_code message = "Cannot index Emoji '#{name}' with alpha code '#{alpha_code}'. " \ "An Emoji with that alpha code has already been indexed." super(message) end end # Error: An Emoji with the same codepoints has been previously indexed class CodepointAlreadyIndexedError < Error attr_reader :name, :codepoints # @param [String] name # @param [String] codepoint def initialize(name, codepoint) @name = name @codepoint = codepoint message = "Cannot index '#{name}' Emoji with codepoint: '#{codepoint}'. " \ "An Emoji with that codepoint has already been indexed." super(message) end end end tanuki_emoji-0.9.0/lib/tanuki_emoji/index.rb0000644000004100000410000001012414545323276021117 0ustar www-datawww-data# frozen_string_literal: true require 'singleton' module TanukiEmoji # Index of known Emoji Characters class Index include Singleton include Enumerable # @return [Array] a collection of TanukiEmoji::Character attr_reader :all # Add a new Emoji to the index # # @param [TanukiEmoji::Character] emoji # @return [TanukiEmoji::Character] def add(emoji) @name_index ||= {} @alpha_code_index ||= {} @codepoints_index ||= {} # Check if exists and index otherwise insertion_mutex.synchronize do raise ::TanukiEmoji::AlphaCodeAlreadyIndexedError.new emoji.name, emoji.alpha_code if @alpha_code_index.key? emoji.alpha_code raise ::TanukiEmoji::CodepointAlreadyIndexedError.new emoji.name, emoji.codepoints if @codepoints_index.key? emoji.codepoints emoji.codepoints_alternates.each do |codepoints| raise ::TanukiEmoji::CodepointAlreadyIndexedError.new emoji.name, codepoints if @codepoints_index.key? codepoints end @name_index[emoji.name] = emoji @alpha_code_index[emoji.alpha_code] = emoji @codepoints_index[emoji.codepoints] = emoji emoji.codepoints_alternates.each do |codepoints| @codepoints_index[codepoints] = emoji end emoji.aliases.each do |alpha_code| @name_index[::TanukiEmoji::Character.format_name(alpha_code)] = emoji @alpha_code_index[::TanukiEmoji::Character.format_alpha_code(alpha_code)] = emoji end end all << emoji emoji end # Find an Emoji by its :alpha_code: # # @param [String] alpha_code # @return [TanukiEmoji::Character] def find_by_alpha_code(alpha_code) @alpha_code_index[Character.format_alpha_code(alpha_code)] end # Find an Emoji by its Unicode representation # # @param [String] unicode_codepoints # @return [TanukiEmoji::Character] def find_by_codepoints(unicode_codepoints) @codepoints_index[unicode_codepoints] end # Clears the index to start from scratch # # @note This is intended to be used in test and development only # @param [Boolean] reload whether to reload emoji database or leave it empty def reset!(reload: true) @all = [] remove_instance_variable :@name_index if defined? @name_index remove_instance_variable :@alpha_code_index if defined? @alpha_code_index remove_instance_variable :@codepoints_index if defined? @codepoints_index load_data_files if reload end # Return a regular expression that can be used to search for indexed `:alpha_codes:` # # @return [Regexp] regular expression that matches indexed `:alpha_code:` def alpha_code_pattern /(?<=[^[:alnum:]:]|\n|^) :(#{@name_index.keys.map { |name| Regexp.escape(name) }.join('|')}): (?=[^[:alnum:]:]|$)/x end # Return a regular expression that can be used to search for emoji codepoints # # @param [Boolean] exclude_text_presentation exclude codepoints and sequences with text presentation selector # @return [Regexp] regular expression that matches indexed emoji codepoints def codepoints_pattern(exclude_text_presentation: false) possible_codepoints = sorted_codepoints.map { |moji, _| Regexp.escape(moji) }.join('|') variation_selector = "" variation_selector = /(?!#{TanukiEmoji::Character::PLAIN_VARIATION_SELECTOR_STRING})/ if exclude_text_presentation /(#{possible_codepoints})#{variation_selector}/ end private def initialize @all = [] load_data_files end def insertion_mutex @insertion_mutex ||= Mutex.new end def load_data_files Db::Gemojione.new(index: self).load! Db::UnicodeVersion.new(index: self).load! Db::UnicodeOrdering.new(index: self).load! end # Order the codepoints to match the most specific (longest) sequences first, # so #gsub doesn't unintentionally split an emoji from its modifier(s). def sorted_codepoints @sorted_codepoints ||= @codepoints_index.dup.sort_by { |_, v| -v.hex.length } end end end tanuki_emoji-0.9.0/lib/tanuki_emoji.rb0000644000004100000410000000314714545323276020017 0ustar www-datawww-data# frozen_string_literal: true # Tanuki Emoji module TanukiEmoji autoload :VERSION, 'tanuki_emoji/version' autoload :Error, 'tanuki_emoji/errors' autoload :AlphaCodeAlreadyIndexedError, 'tanuki_emoji/errors' autoload :CodepointAlreadyIndexedError, 'tanuki_emoji/errors' autoload :Index, 'tanuki_emoji/index' autoload :Character, 'tanuki_emoji/character' autoload :Db, 'tanuki_emoji/db' # Find an Emoji by its :alpha_code: # # @param [String] alpha_code # @return [TanukiEmoji::Character] def self.find_by_alpha_code(alpha_code) index.find_by_alpha_code(alpha_code) end # Find an Emoji by its Unicode representation # # @param [String] unicode_codepoints # @return [TanukiEmoji::Character] def self.find_by_codepoints(unicode_codepoints) index.find_by_codepoints(unicode_codepoints) end # Index contains all known emojis # # @return [Array] def self.index TanukiEmoji::Index.instance end # Add a new Emoji to the index # # @param [String] name # @param [String] codepoints # @param [String] alpha_code # @param [String] description # @param [String] category # @return [TanukiEmoji::Character] def self.add(name, codepoints:, alpha_code:, description:, category:) emoji = Character.new(name, codepoints: codepoints, alpha_code: alpha_code, description: description, category: category) index.add(emoji) end def self.images_path File.expand_path(File.join(__dir__, "../app/assets/images/tanuki_emoji")) end end tanuki_emoji-0.9.0/LICENSE.txt0000644000004100000410000000206614545323276016070 0ustar www-datawww-dataThe MIT License (MIT) Copyright (c) 2021 GitLab B.V. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tanuki_emoji-0.9.0/.rspec0000644000004100000410000000006514545323276015357 0ustar www-datawww-data--format documentation --color --require spec_helper tanuki_emoji-0.9.0/Rakefile0000644000004100000410000000263214545323276015711 0ustar www-datawww-data# frozen_string_literal: true require "bundler/gem_tasks" require "rspec/core/rake_task" require "rubocop/rake_task" require "tanuki_emoji" RSpec::Core::RakeTask.new(:spec) do |t| t.rspec_opts = %w[--format documentation --color --require spec_helper] t.rspec_opts += %w[--format RspecJunitFormatter --out rspec.xml] if ENV['GITLAB_CI'] end RuboCop::RakeTask.new desc 'Code coverage detail' task :simplecov do ENV['COVERAGE'] = 'true' Rake::Task['spec'].execute end task default: %i[spec rubocop] desc 'Update images from vendor/noto-emoji to app/assets folder' task update_assets: ['noto_emoji:generate_flags'] do png_path = File.join(__dir__, 'vendor/noto-emoji/png/72') flag_path = File.join(__dir__, 'vendor/noto-emoji/build/flags') TanukiEmoji.index.all.each do |emoji| if emoji.flag? source_flag = File.join(flag_path, emoji.image_name) cp(source_flag, TanukiEmoji.images_path) next end source_png = File.join(png_path, emoji.image_name) cp(source_png, TanukiEmoji.images_path) end end namespace :noto_emoji do noto_emoji_path = File.join(__dir__, 'vendor/noto-emoji') task :generate_flags do chdir(File.expand_path(noto_emoji_path)) do flags = Dir['third_party/region-flags/png/*.png'].map do |file| File.join('build/flags', File.basename(file)) end sh('make', *flags) end end end Rake::Task[:build].enhance [:update_assets] tanuki_emoji-0.9.0/Gemfile0000644000004100000410000000037114545323276015535 0ustar www-datawww-data# frozen_string_literal: true source "https://rubygems.org" gemspec gem "rake", "~> 13.0" gem "rspec", "~> 3.0" gem "rspec_junit_formatter", "~> 0.4.0" gem "rubocop", "~> 1.7" gem "simplecov", require: false gem "simplecov-cobertura", "~> 1.4.2" tanuki_emoji-0.9.0/app/0000755000004100000410000000000014545323276015021 5ustar www-datawww-datatanuki_emoji-0.9.0/app/assets/0000755000004100000410000000000014545323276016323 5ustar www-datawww-datatanuki_emoji-0.9.0/app/assets/images/0000755000004100000410000000000014545323276017570 5ustar www-datawww-datatanuki_emoji-0.9.0/app/assets/images/tanuki_emoji/0000755000004100000410000000000014545323276022246 5ustar www-datawww-datatanuki_emoji-0.9.0/app/assets/images/tanuki_emoji/.gitkeep0000644000004100000410000000000014545323276023665 0ustar www-datawww-datatanuki_emoji-0.9.0/README.md0000644000004100000410000001041014545323276015514 0ustar www-datawww-data# Tanuki Emoji This library helps you implement Emoji support in a ruby application by providing you access to native Emoji character information. We currently provides a pre-indexed set of Emojis, compatible with [Gemojione](https://github.com/bonusly/gemojione) index from 3.3.0. In the future we expect to cover the most recent version of Unicode. This gem bundles Emoji assets from [Noto Emoji](https://github.com/googlefonts/noto-emoji), to be used as fallback when Emoji is not available or not fully supported on target system. ## Development dependencies Install [cairo](https://cairographics.org/) on your local machine. ```shell # For osx users $ brew install cairo ``` ## Installation Add this line to your application's Gemfile: ```ruby gem 'tanuki_emoji' ``` And then execute: ```shell $ bundle install ``` ## Usage To access the index and list all known Emoji Characters: ```ruby TanukiEmoji.index.all ``` To search for an Emoji by it's codepoints (the unicode character): ```ruby # Find by providing the Emoji Character itself TanukiEmoji.find_by_codepoints('🐴') #=> # # Find by providing a string representation of the hexadecimal of the codepoint: TanukiEmoji.find_by_codepoints("\u{1f434}") #=> # ``` To search for an Emoji by it's `:alpha_code:` ```ruby # Find by providing the :alpha_code: TanukiEmoji.find_by_alpha_code(':horse:') #=> # # It also accepts a `shortcode` (an alpha_code not surrounded by colons) TanukiEmoji.find_by_alpha_code('horse') #=> # ``` To retrieve an alternative image for the character: ```ruby c = TanukiEmoji.find_by_alpha_code('horse') #=> # c.image_name #=> "emoji_u1f434.png" # Use the image_name with bundled assets from Noto Emoji: File.join(TanukiEmoji.images_path, c.image_name) #=> "/path/to/tanuki_emoji/app/assets/images/tanuki_emoji/emoji_u1f434.png" ``` ## Development In order to contribute to TanukiEmoji gem, you need to: 1. Clone the repository to your local machine. 1. Run `bin/setup` to initialize `git submodules` and install ruby dependencies. Many workflow tasks are available as Rake tasks: - `bundle exec rake spec` can be used to run tests. - `bundle exec rake install` will build and install the gem on your local machine. To load an interactive console with the gem you can use `bin/console`. ### Releasing a new version Before releasing a new gem, create a MR with the following changes: - Update the version number in `lib/tanuki_emoji/version.rb`. - Run `bundle install` to update `Gemfile.lock` and commit it. - Ensure that `CHANGELOG.md` is updated by the project bot in the MR. With that MR approved and merged, a [CI job](https://gitlab.com/gitlab-org/quality/pipeline-common/-/blob/master/ci/gem-release.yml): - Creates a [new release](https://gitlab.com/gitlab-org/ruby/gems/tanuki_emoji/-/releases) - Generates the changelog on the release page - Publishes new gem into [rubygems.org](https://rubygems.org) ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md) and [Development](#development) section. When you create a new Merge Request with a new feature, a feature change, or a fix, consider adding a changelog entry using a [Git trailer](https://docs.gitlab.com/ee/api/repositories.html#how-it-works), for example `Changelog: added`. You may use the [following values](.gitlab/changelog_config.yml): - `added` for new features. - `changed` for changes in existing functionality. - `deprecated` for soon-to-be removed features. - `removed` for now removed features. - `fixed` for any bug fixes. - `security` in case of vulnerabilities. Please do not increase the version numbers, as this is handled by a separate process when we [release a new version](#releasing-a-new-version). ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). Noto Emoji assets and build tools are [Apache license, version 2.0](https://github.com/googlefonts/noto-emoji/blob/main/LICENSE) licensed. Flag images are under public domain or otherwise excempt from copyright ([more info](https://github.com/googlefonts/noto-emoji/blob/main/third_party/region-flags/LICENSE)). tanuki_emoji-0.9.0/tanuki_emoji.gemspec0000644000004100000410000000262714545323276020273 0ustar www-datawww-data# frozen_string_literal: true require_relative 'lib/tanuki_emoji/version' Gem::Specification.new do |spec| spec.name = 'tanuki_emoji' spec.version = TanukiEmoji::VERSION spec.authors = ['Gabriel Mazetto'] spec.email = ['brodock@gmail.com'] spec.summary = %q{Tanuki Emoji} spec.description = %q{Tanuki Emoji provides Emoji character information and metadata with support for Noto Emoji resources as fallback} spec.homepage = 'https://gitlab.com/gitlab-org/ruby/gems/tanuki_emoji' spec.licenses = %w[MIT Apache2] spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0") spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = spec.homepage spec.metadata['changelog_uri'] = "#{spec.homepage}/-/blob/main/CHANGELOG.md" spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/-/issues" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do git_files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features|bin)/}) } asset_files = Dir.glob('app/assets/**/*').reject { |f| f.match(%r{\.DS_Store}) } git_files + asset_files end spec.require_paths = ['lib'] spec.add_development_dependency 'gitlab-dangerfiles', '~> 2.11.0' end tanuki_emoji-0.9.0/.gitlab/0000755000004100000410000000000014545323276015561 5ustar www-datawww-datatanuki_emoji-0.9.0/.gitlab/changelog_config.yml0000644000004100000410000000020214545323276021552 0ustar www-datawww-data--- categories: added: Added changed: Changed deprecated: Deprecated removed: Removed fixed: Fixed security: Security tanuki_emoji-0.9.0/.gitlab/CODEOWNERS0000644000004100000410000000015314545323276017153 0ustar www-datawww-data[Maintainers] * @brodock @cablett @mwoolf @kerrizor @brytannia @splattael @digitalmoksha @smcgivern @jlear tanuki_emoji-0.9.0/.ruby-version0000644000004100000410000000000614545323276016702 0ustar www-datawww-data3.1.4 tanuki_emoji-0.9.0/.rubocop.yml0000644000004100000410000000044514545323276016516 0ustar www-datawww-dataAllCops: TargetRubyVersion: 3.0 Exclude: - '*.gemspec' - 'vendor/**/*' SuggestExtensions: false Style/StringLiterals: Enabled: false Style/StringLiteralsInInterpolation: Enabled: true EnforcedStyle: double_quotes Layout/LineLength: Max: 140 Metrics: Enabled: false tanuki_emoji-0.9.0/CHANGELOG.md0000644000004100000410000000500114545323276016046 0ustar www-datawww-data# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## 0.9.0 (2023-10-17) ### Added (1 change) - [Added ordering information to to `Character`](gitlab-org/ruby/gems/tanuki_emoji@c618fae04409067a38ddc454d3dfaee4678da520) ([merge request](gitlab-org/ruby/gems/tanuki_emoji!61)) ## 0.8.0 (2023-09-15) ### Changed (1 change) - [Bump Ruby version to 3.1.4](gitlab-org/ruby/gems/tanuki_emoji@c7853e7b6aa5000358a8c99e402614926d479ef8) ([merge request](gitlab-org/ruby/gems/tanuki_emoji!58)) ## 0.7.0 (2023-09-04) ### Added (1 change) - [Added EmojiData and EmojiDataParser](gitlab-org/ruby/gems/tanuki_emoji@8eba857db072e099fe10eeba6c93c6a7710e01a3) ([merge request](gitlab-org/ruby/gems/tanuki_emoji!2)) ## 0.6.0 (2022-02-16) ### Added - `Character` responds to `ascii_aliases` which contain ASCII aliases from Gemojione ### Fixed - Fixed `TanukiEmoji.add` command, which should now require `category:` to be provided - Fixed issue where `TanukiEmoji::Index#codepoints_pattern` would split apart emoji-modifier pairs ## 0.5.0 - (2021-09-16) ### Added - Add Category information into `Character` - Add Character.unicode_version and index in which unicode version an emoji was introduced ## 0.4.0 - (2021-09-07) ### Added - Index can return the `alpha_code_pattern` and `codepoints_pattern` to be used as text extraction sources ### Fixed - Fixed `registered sign`, `copyright sign` and `trade mark sign` codepoints from gemojione index ## 0.3.0 - (2021-08-26) ### Changed - Characters can be compared and will be considered equal when all of its attributes matches - `:+1:` and `:-1:` which are aliases for `:thumbsup:` and `:thumbsdown:` can now be used with `find_by_alpha_code` - added tests for both `find_by_alpha_code` and `find_by_codepoints` and make sure `find_by_alpha_code` can handle `nil` correctly ## 0.2.2 - (2021-08-23) ### Changed - Fixed autoload load_path ## 0.2.1 - (2021-07-09) ### Changed - Noto Emoji assets were not included due to bug in gemspec code. Now it is. ## 0.2.0 - (2021-07-09) ### Added - Bundled Noto Emoji assets for each corresponding indexed Emoji - `Character` responds to `#image_name` pointing to Noto Emoji filenames - `TanukiEmoji` responds to `.images_path` pointing to Emoji assets folder ## 0.1.0 - (2021-07-04) ### Added - Initial release with index and Character information support tanuki_emoji-0.9.0/vendor/0000755000004100000410000000000014545323276015536 5ustar www-datawww-datatanuki_emoji-0.9.0/vendor/gemojione/0000755000004100000410000000000014545323276017512 5ustar www-datawww-datatanuki_emoji-0.9.0/vendor/gemojione/index-3.3.0.json0000644000004100000410000237725114545323276022174 0ustar www-datawww-data{ "100": { "unicode": "1F4AF", "unicode_alternates": [], "name": "hundred points symbol", "shortname": ":100:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "numbers", "perfect", "score", "100", "percent", "a", "plus", "school", "quiz", "test", "exam", "symbol", "wow", "win", "parties" ], "moji": "💯" }, "1234": { "unicode": "1F522", "unicode_alternates": [], "name": "input symbol for numbers", "shortname": ":1234:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "numbers", "symbol" ], "moji": "🔢" }, "8ball": { "unicode": "1F3B1", "unicode_alternates": [], "name": "billiards", "shortname": ":8ball:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "pool", "billiards", "eight ball", "pocket ball", "cue", "game", "ball", "sport", "luck", "boys night" ], "moji": "🎱" }, "a": { "unicode": "1F170", "unicode_alternates": [], "name": "negative squared latin capital letter a", "shortname": ":a:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅰" }, "ab": { "unicode": "1F18E", "unicode_alternates": [], "name": "negative squared ab", "shortname": ":ab:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "red-square", "symbol" ], "moji": "🆎" }, "abc": { "unicode": "1F524", "unicode_alternates": [], "name": "input symbol for latin letters", "shortname": ":abc:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "blue-square", "symbol" ], "moji": "🔤" }, "abcd": { "unicode": "1F521", "unicode_alternates": [], "name": "input symbol for latin small letters", "shortname": ":abcd:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "blue-square", "symbol" ], "moji": "🔡" }, "accept": { "unicode": "1F251", "unicode_alternates": [], "name": "circled ideograph accept", "shortname": ":accept:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "agree", "chinese", "good", "kanji", "ok", "yes", "symbol" ], "moji": "🉑" }, "aerial_tramway": { "unicode": "1F6A1", "unicode_alternates": [], "name": "aerial tramway", "shortname": ":aerial_tramway:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "aerial", "tram", "tramway", "cable", "transport", "travel", "train" ], "moji": "🚡" }, "airplane": { "unicode": "2708", "unicode_alternates": [ "2708-FE0F" ], "name": "airplane", "shortname": ":airplane:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "flight", "transportation", "vehicle", "airplane", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "✈" }, "airplane_arriving": { "unicode": "1F6EC", "unicode_alternates": [], "name": "airplane arriving", "shortname": ":airplane_arriving:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "🛬" }, "airplane_departure": { "unicode": "1F6EB", "unicode_alternates": [], "name": "airplane departure", "shortname": ":airplane_departure:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "leaving", "vacation" ], "moji": "🛫" }, "airplane_small": { "unicode": "1F6E9", "unicode_alternates": [], "name": "small airplane", "shortname": ":airplane_small:", "category": "travel", "aliases": [ ":small_airplane:" ], "aliases_ascii": [], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "🛩" }, "alarm_clock": { "unicode": "23F0", "unicode_alternates": [], "name": "alarm clock", "shortname": ":alarm_clock:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "time", "wake", "object" ], "moji": "⏰" }, "alembic": { "unicode": "2697", "unicode_alternates": [], "name": "alembic", "shortname": ":alembic:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "chemistry", "object", "tool", "science" ], "moji": "⚗" }, "alien": { "unicode": "1F47D", "unicode_alternates": [], "name": "extraterrestrial alien", "shortname": ":alien:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "UFO", "paul", "alien", "ufo", "space", "monster", "scientology" ], "moji": "👽" }, "ambulance": { "unicode": "1F691", "unicode_alternates": [], "name": "ambulance", "shortname": ":ambulance:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "911", "health", "ambulance", "emergency", "medical", "help", "assistance", "transportation" ], "moji": "🚑" }, "amphora": { "unicode": "1F3FA", "unicode_alternates": [], "name": "amphora", "shortname": ":amphora:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "object" ], "moji": "🏺" }, "anchor": { "unicode": "2693", "unicode_alternates": [ "2693-FE0F" ], "name": "anchor", "shortname": ":anchor:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "ferry", "ship", "anchor", "boat", "ocean", "harbor", "marina", "shipyard", "sailor", "tattoo", "object", "travel", "vacation" ], "moji": "⚓" }, "angel": { "unicode": "1F47C", "unicode_alternates": [], "name": "baby angel", "shortname": ":angel:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "baby", "angel", "halo", "cupid", "wings", "heaven", "jesus", "people", "diversity", "omg" ], "moji": "👼" }, "angel_tone1": { "unicode": "1F47C-1F3FB", "unicode_alternates": [], "name": "baby angel tone 1", "shortname": ":angel_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏻" }, "angel_tone2": { "unicode": "1F47C-1F3FC", "unicode_alternates": [], "name": "baby angel tone 2", "shortname": ":angel_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏼" }, "angel_tone3": { "unicode": "1F47C-1F3FD", "unicode_alternates": [], "name": "baby angel tone 3", "shortname": ":angel_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏽" }, "angel_tone4": { "unicode": "1F47C-1F3FE", "unicode_alternates": [], "name": "baby angel tone 4", "shortname": ":angel_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏾" }, "angel_tone5": { "unicode": "1F47C-1F3FF", "unicode_alternates": [], "name": "baby angel tone 5", "shortname": ":angel_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏿" }, "anger": { "unicode": "1F4A2", "unicode_alternates": [], "name": "anger symbol", "shortname": ":anger:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "anger", "angry", "mad", "symbol" ], "moji": "💢" }, "anger_right": { "unicode": "1F5EF", "unicode_alternates": [], "name": "right anger bubble", "shortname": ":anger_right:", "category": "symbols", "aliases": [ ":right_anger_bubble:" ], "aliases_ascii": [], "keywords": [ "speech", "balloon", "talk", "mood", "conversation", "communication", "comic", "angry", "symbol" ], "moji": "🗯" }, "angry": { "unicode": "1F620", "unicode_alternates": [], "name": "angry face", "shortname": ":angry:", "category": "people", "aliases": [], "aliases_ascii": [ ">:(", ">:-(", ":@" ], "keywords": [ "angry", "livid", "mad", "vexed", "irritated", "annoyed", "face", "frustrated", "smiley", "emotion" ], "moji": "😠" }, "anguished": { "unicode": "1F627", "unicode_alternates": [], "name": "anguished face", "shortname": ":anguished:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "nervous", "stunned", "pain", "anguish", "ouch", "misery", "distress", "grief", "sad", "smiley", "surprised", "emotion" ], "moji": "😧" }, "ant": { "unicode": "1F41C", "unicode_alternates": [], "name": "ant", "shortname": ":ant:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "insect", "ant", "queen", "team", "insects" ], "moji": "🐜" }, "apple": { "unicode": "1F34E", "unicode_alternates": [], "name": "red apple", "shortname": ":apple:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "fruit", "mac", "apple", "electronics", "red", "doctor", "teacher", "school", "core", "food", "creationism" ], "moji": "🍎" }, "aquarius": { "unicode": "2652", "unicode_alternates": [ "2652-FE0F" ], "name": "aquarius", "shortname": ":aquarius:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "aquarius", "water", "bearer", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♒" }, "aries": { "unicode": "2648", "unicode_alternates": [ "2648-FE0F" ], "name": "aries", "shortname": ":aries:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "aries", "ram", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♈" }, "arrow_backward": { "unicode": "25C0", "unicode_alternates": [ "25C0-FE0F" ], "name": "black left-pointing triangle", "shortname": ":arrow_backward:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "◀" }, "arrow_double_down": { "unicode": "23EC", "unicode_alternates": [], "name": "black down-pointing double triangle", "shortname": ":arrow_double_down:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⏬" }, "arrow_double_up": { "unicode": "23EB", "unicode_alternates": [], "name": "black up-pointing double triangle", "shortname": ":arrow_double_up:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⏫" }, "arrow_down": { "unicode": "2B07", "unicode_alternates": [ "2B07-FE0F" ], "name": "downwards black arrow", "shortname": ":arrow_down:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⬇" }, "arrow_down_small": { "unicode": "1F53D", "unicode_alternates": [], "name": "down-pointing small red triangle", "shortname": ":arrow_down_small:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "🔽" }, "arrow_forward": { "unicode": "25B6", "unicode_alternates": [ "25B6-FE0F" ], "name": "black right-pointing triangle", "shortname": ":arrow_forward:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "▶" }, "arrow_heading_down": { "unicode": "2935", "unicode_alternates": [ "2935-FE0F" ], "name": "arrow pointing rightwards then curving downwards", "shortname": ":arrow_heading_down:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⤵" }, "arrow_heading_up": { "unicode": "2934", "unicode_alternates": [ "2934-FE0F" ], "name": "arrow pointing rightwards then curving upwards", "shortname": ":arrow_heading_up:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⤴" }, "arrow_left": { "unicode": "2B05", "unicode_alternates": [ "2B05-FE0F" ], "name": "leftwards black arrow", "shortname": ":arrow_left:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "previous", "symbol" ], "moji": "⬅" }, "arrow_lower_left": { "unicode": "2199", "unicode_alternates": [ "2199-FE0F" ], "name": "south west arrow", "shortname": ":arrow_lower_left:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "↙" }, "arrow_lower_right": { "unicode": "2198", "unicode_alternates": [ "2198-FE0F" ], "name": "south east arrow", "shortname": ":arrow_lower_right:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "↘" }, "arrow_right": { "unicode": "27A1", "unicode_alternates": [ "27A1-FE0F" ], "name": "black rightwards arrow", "shortname": ":arrow_right:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "next", "arrow", "symbol" ], "moji": "➡" }, "arrow_right_hook": { "unicode": "21AA", "unicode_alternates": [ "21AA-FE0F" ], "name": "rightwards arrow with hook", "shortname": ":arrow_right_hook:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↪" }, "arrow_up": { "unicode": "2B06", "unicode_alternates": [ "2B06-FE0F" ], "name": "upwards black arrow", "shortname": ":arrow_up:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "⬆" }, "arrow_up_down": { "unicode": "2195", "unicode_alternates": [ "2195-FE0F" ], "name": "up down arrow", "shortname": ":arrow_up_down:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↕" }, "arrow_up_small": { "unicode": "1F53C", "unicode_alternates": [], "name": "up-pointing small red triangle", "shortname": ":arrow_up_small:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol", "triangle" ], "moji": "🔼" }, "arrow_upper_left": { "unicode": "2196", "unicode_alternates": [ "2196-FE0F" ], "name": "north west arrow", "shortname": ":arrow_upper_left:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↖" }, "arrow_upper_right": { "unicode": "2197", "unicode_alternates": [ "2197-FE0F" ], "name": "north east arrow", "shortname": ":arrow_upper_right:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↗" }, "arrows_clockwise": { "unicode": "1F503", "unicode_alternates": [], "name": "clockwise downwards and upwards open circle arrows", "shortname": ":arrows_clockwise:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sync", "arrow", "symbol" ], "moji": "🔃" }, "arrows_counterclockwise": { "unicode": "1F504", "unicode_alternates": [], "name": "anticlockwise downwards and upwards open circle ar", "shortname": ":arrows_counterclockwise:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "sync", "arrow", "symbol" ], "moji": "🔄" }, "art": { "unicode": "1F3A8", "unicode_alternates": [], "name": "artist palette", "shortname": ":art:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "design", "draw", "paint", "artist", "palette", "art", "colors", "brush", "pastels", "oils" ], "moji": "🎨" }, "articulated_lorry": { "unicode": "1F69B", "unicode_alternates": [], "name": "articulated lorry", "shortname": ":articulated_lorry:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "transportation", "vehicle", "truck", "delivery", "semi", "lorry", "articulated" ], "moji": "🚛" }, "asterisk": { "unicode": "002A-20E3", "unicode_alternates": [ "002A-FE0F-20E3" ], "name": "keycap asterisk", "shortname": ":asterisk:", "category": "symbols", "aliases": [ ":keycap_asterisk:" ], "aliases_ascii": [], "keywords": [ "*", "star", "symbol" ], "moji": "*⃣" }, "astonished": { "unicode": "1F632", "unicode_alternates": [], "name": "astonished face", "shortname": ":astonished:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "xox", "shocked", "surprise", "astonished", "smiley", "surprised", "wow", "emotion", "omg" ], "moji": "😲" }, "athletic_shoe": { "unicode": "1F45F", "unicode_alternates": [], "name": "athletic shoe", "shortname": ":athletic_shoe:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "shoes", "sports", "fashion", "shoe", "accessories", "boys night" ], "moji": "👟" }, "atm": { "unicode": "1F3E7", "unicode_alternates": [], "name": "automated teller machine", "shortname": ":atm:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "atm", "cash", "withdrawal", "money", "deposit", "financial", "bank", "adam", "payday", "blue-square", "payment", "electronics", "symbol" ], "moji": "🏧" }, "atom": { "unicode": "269B", "unicode_alternates": [], "name": "atom symbol", "shortname": ":atom:", "category": "symbols", "aliases": [ ":atom_symbol:" ], "aliases_ascii": [], "keywords": [ "atheist", "symbol", "science" ], "moji": "⚛" }, "avocado": { "unicode": "1F951", "unicode_alternates": [], "name": "avocado", "shortname": ":avocado:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥑" }, "b": { "unicode": "1F171", "unicode_alternates": [], "name": "negative squared latin capital letter b", "shortname": ":b:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅱" }, "baby": { "unicode": "1F476", "unicode_alternates": [], "name": "baby", "shortname": ":baby:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "child", "infant", "people", "baby", "diversity" ], "moji": "👶" }, "baby_bottle": { "unicode": "1F37C", "unicode_alternates": [], "name": "baby bottle", "shortname": ":baby_bottle:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "container", "food", "baby", "bottle", "milk", "mother", "nipple", "newborn", "formula", "drink", "object" ], "moji": "🍼" }, "baby_chick": { "unicode": "1F424", "unicode_alternates": [], "name": "baby chick", "shortname": ":baby_chick:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "chicken", "chick", "baby", "bird", "young", "woman", "cute" ], "moji": "🐤" }, "baby_symbol": { "unicode": "1F6BC", "unicode_alternates": [], "name": "baby symbol", "shortname": ":baby_symbol:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "orange-square", "baby", "crawl", "newborn", "human", "diaper", "small", "babe", "symbol" ], "moji": "🚼" }, "baby_tone1": { "unicode": "1F476-1F3FB", "unicode_alternates": [], "name": "baby tone 1", "shortname": ":baby_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏻" }, "baby_tone2": { "unicode": "1F476-1F3FC", "unicode_alternates": [], "name": "baby tone 2", "shortname": ":baby_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏼" }, "baby_tone3": { "unicode": "1F476-1F3FD", "unicode_alternates": [], "name": "baby tone 3", "shortname": ":baby_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏽" }, "baby_tone4": { "unicode": "1F476-1F3FE", "unicode_alternates": [], "name": "baby tone 4", "shortname": ":baby_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏾" }, "baby_tone5": { "unicode": "1F476-1F3FF", "unicode_alternates": [], "name": "baby tone 5", "shortname": ":baby_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏿" }, "back": { "unicode": "1F519", "unicode_alternates": [], "name": "back with leftwards arrow above", "shortname": ":back:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "symbol" ], "moji": "🔙" }, "bacon": { "unicode": "1F953", "unicode_alternates": [], "name": "bacon", "shortname": ":bacon:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "pig" ], "moji": "🥓" }, "badminton": { "unicode": "1F3F8", "unicode_alternates": [], "name": "badminton racquet", "shortname": ":badminton:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "game", "sport", "badminton" ], "moji": "🏸" }, "baggage_claim": { "unicode": "1F6C4", "unicode_alternates": [], "name": "baggage claim", "shortname": ":baggage_claim:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "airport", "blue-square", "transport", "bag", "baggage", "luggage", "travel", "symbol" ], "moji": "🛄" }, "balloon": { "unicode": "1F388", "unicode_alternates": [], "name": "balloon", "shortname": ":balloon:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "celebration", "party", "balloon", "birthday", "helium", "gas", "children", "float", "object", "good", "parties" ], "moji": "🎈" }, "ballot_box": { "unicode": "1F5F3", "unicode_alternates": [], "name": "ballot box with ballot", "shortname": ":ballot_box:", "category": "objects", "aliases": [ ":ballot_box_with_ballot:" ], "aliases_ascii": [], "keywords": [ "vote", "object", "office" ], "moji": "🗳" }, "ballot_box_with_check": { "unicode": "2611", "unicode_alternates": [ "2611-FE0F" ], "name": "ballot box with check", "shortname": ":ballot_box_with_check:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "agree", "ok", "symbol" ], "moji": "☑" }, "bamboo": { "unicode": "1F38D", "unicode_alternates": [], "name": "pine decoration", "shortname": ":bamboo:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "vegetable", "pine", "bamboo", "decoration", "new", "years", "spirits", "harvest", "prosperity", "longevity", "fortune", "luck", "welcome", "farming", "agriculture" ], "moji": "🎍" }, "banana": { "unicode": "1F34C", "unicode_alternates": [], "name": "banana", "shortname": ":banana:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "banana", "peel", "bunch", "penis" ], "moji": "🍌" }, "bangbang": { "unicode": "203C", "unicode_alternates": [ "203C-FE0F" ], "name": "double exclamation mark", "shortname": ":bangbang:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "exclamation", "surprise", "symbol", "punctuation" ], "moji": "‼" }, "bank": { "unicode": "1F3E6", "unicode_alternates": [], "name": "bank", "shortname": ":bank:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "places" ], "moji": "🏦" }, "bar_chart": { "unicode": "1F4CA", "unicode_alternates": [], "name": "bar chart", "shortname": ":bar_chart:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "graph", "presentation", "stats", "work", "office" ], "moji": "📊" }, "barber": { "unicode": "1F488", "unicode_alternates": [], "name": "barber pole", "shortname": ":barber:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "hair", "salon", "style", "object" ], "moji": "💈" }, "baseball": { "unicode": "26BE", "unicode_alternates": [ "26BE-FE0F" ], "name": "baseball", "shortname": ":baseball:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "MLB", "balls", "sports", "game", "ball", "sport", "baseball" ], "moji": "⚾" }, "basketball": { "unicode": "1F3C0", "unicode_alternates": [], "name": "basketball and hoop", "shortname": ":basketball:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "NBA", "balls", "sports", "basketball", "bball", "dribble", "hoop", "net", "swish", "rip city", "game", "ball", "sport" ], "moji": "🏀" }, "basketball_player": { "unicode": "26F9", "unicode_alternates": [], "name": "person with ball", "shortname": ":basketball_player:", "category": "activity", "aliases": [ ":person_with_ball:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball", "diversity" ], "moji": "⛹" }, "basketball_player_tone1": { "unicode": "26F9-1F3FB", "unicode_alternates": [], "name": "person with ball tone 1", "shortname": ":basketball_player_tone1:", "category": "activity", "aliases": [ ":person_with_ball_tone1:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏻" }, "basketball_player_tone2": { "unicode": "26F9-1F3FC", "unicode_alternates": [], "name": "person with ball tone 2", "shortname": ":basketball_player_tone2:", "category": "activity", "aliases": [ ":person_with_ball_tone2:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏼" }, "basketball_player_tone3": { "unicode": "26F9-1F3FD", "unicode_alternates": [], "name": "person with ball tone 3", "shortname": ":basketball_player_tone3:", "category": "activity", "aliases": [ ":person_with_ball_tone3:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏽" }, "basketball_player_tone4": { "unicode": "26F9-1F3FE", "unicode_alternates": [], "name": "person with ball tone 4", "shortname": ":basketball_player_tone4:", "category": "activity", "aliases": [ ":person_with_ball_tone4:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏾" }, "basketball_player_tone5": { "unicode": "26F9-1F3FF", "unicode_alternates": [], "name": "person with ball tone 5", "shortname": ":basketball_player_tone5:", "category": "activity", "aliases": [ ":person_with_ball_tone5:" ], "aliases_ascii": [], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏿" }, "bat": { "unicode": "1F987", "unicode_alternates": [], "name": "bat", "shortname": ":bat:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦇" }, "bath": { "unicode": "1F6C0", "unicode_alternates": [], "name": "bath", "shortname": ":bath:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "clean", "shower", "bath", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "shampoo", "lather", "tired", "diversity", "steam" ], "moji": "🛀" }, "bath_tone1": { "unicode": "1F6C0-1F3FB", "unicode_alternates": [], "name": "bath tone 1", "shortname": ":bath_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏻" }, "bath_tone2": { "unicode": "1F6C0-1F3FC", "unicode_alternates": [], "name": "bath tone 2", "shortname": ":bath_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏼" }, "bath_tone3": { "unicode": "1F6C0-1F3FD", "unicode_alternates": [], "name": "bath tone 3", "shortname": ":bath_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏽" }, "bath_tone4": { "unicode": "1F6C0-1F3FE", "unicode_alternates": [], "name": "bath tone 4", "shortname": ":bath_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏾" }, "bath_tone5": { "unicode": "1F6C0-1F3FF", "unicode_alternates": [], "name": "bath tone 5", "shortname": ":bath_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏿" }, "bathtub": { "unicode": "1F6C1", "unicode_alternates": [], "name": "bathtub", "shortname": ":bathtub:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "clean", "shower", "bath", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "shampoo", "lather", "object", "tired", "steam" ], "moji": "🛁" }, "battery": { "unicode": "1F50B", "unicode_alternates": [], "name": "battery", "shortname": ":battery:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "energy", "power", "sustain", "object" ], "moji": "🔋" }, "beach": { "unicode": "1F3D6", "unicode_alternates": [], "name": "beach with umbrella", "shortname": ":beach:", "category": "travel", "aliases": [ ":beach_with_umbrella:" ], "aliases_ascii": [], "keywords": [ "sand", "sun", "surf", "vacation", "relaxation", "tanning", "tan", "swimming", "places", "travel", "tropical", "beach", "swim" ], "moji": "🏖" }, "beach_umbrella": { "unicode": "26F1", "unicode_alternates": [], "name": "umbrella on ground", "shortname": ":beach_umbrella:", "category": "objects", "aliases": [ ":umbrella_on_ground:" ], "aliases_ascii": [], "keywords": [ "nature", "rain", "sun", "travel", "weather", "vacation", "tropical" ], "moji": "⛱" }, "bear": { "unicode": "1F43B", "unicode_alternates": [], "name": "bear face", "shortname": ":bear:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife", "roar" ], "moji": "🐻" }, "bed": { "unicode": "1F6CF", "unicode_alternates": [], "name": "bed", "shortname": ":bed:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "sleep", "sex", "queen", "full", "twin", "king", "mattress", "object", "tired" ], "moji": "🛏" }, "bee": { "unicode": "1F41D", "unicode_alternates": [], "name": "honeybee", "shortname": ":bee:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "insect", "bee", "queen", "buzz", "flower", "pollen", "sting", "honey", "hive", "bumble", "pollination", "insects" ], "moji": "🐝" }, "beer": { "unicode": "1F37A", "unicode_alternates": [], "name": "beer mug", "shortname": ":beer:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "beverage", "drink", "drunk", "party", "pub", "relax", "beer", "hops", "mug", "barley", "malt", "yeast", "portland", "oregon", "brewery", "micro", "pint", "boot", "alcohol", "parties" ], "moji": "🍺" }, "beers": { "unicode": "1F37B", "unicode_alternates": [], "name": "clinking beer mugs", "shortname": ":beers:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "beverage", "drink", "drunk", "party", "pub", "relax", "beer", "beers", "cheers", "mug", "toast", "celebrate", "bar", "jolly", "hops", "clink", "alcohol", "thank you", "boys night", "parties" ], "moji": "🍻" }, "beetle": { "unicode": "1F41E", "unicode_alternates": [], "name": "lady beetle", "shortname": ":beetle:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "insect", "nature", "lady", "bug", "ladybug", "ladybird", "beetle", "cow", "lady cow", "endearment", "insects", "animal" ], "moji": "🐞" }, "beginner": { "unicode": "1F530", "unicode_alternates": [], "name": "japanese symbol for beginner", "shortname": ":beginner:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "badge", "shield", "symbol" ], "moji": "🔰" }, "bell": { "unicode": "1F514", "unicode_alternates": [], "name": "bell", "shortname": ":bell:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chime", "christmas", "notification", "sound", "xmas", "object", "alarm", "symbol" ], "moji": "🔔" }, "bellhop": { "unicode": "1F6CE", "unicode_alternates": [], "name": "bellhop bell", "shortname": ":bellhop:", "category": "objects", "aliases": [ ":bellhop_bell:" ], "aliases_ascii": [], "keywords": [ "hotel", "porter", "ding", "object" ], "moji": "🛎" }, "bento": { "unicode": "1F371", "unicode_alternates": [], "name": "bento box", "shortname": ":bento:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "box", "food", "japanese", "bento", "rice", "meal", "obento", "convenient", "lunchbox", "object", "sushi", "japan" ], "moji": "🍱" }, "bicyclist": { "unicode": "1F6B4", "unicode_alternates": [], "name": "bicyclist", "shortname": ":bicyclist:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sports", "bicyclist", "road", "pedal", "bicycle", "transportation", "men", "workout", "sport", "diversity" ], "moji": "🚴" }, "bicyclist_tone1": { "unicode": "1F6B4-1F3FB", "unicode_alternates": [], "name": "bicyclist tone 1", "shortname": ":bicyclist_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏻" }, "bicyclist_tone2": { "unicode": "1F6B4-1F3FC", "unicode_alternates": [], "name": "bicyclist tone 2", "shortname": ":bicyclist_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏼" }, "bicyclist_tone3": { "unicode": "1F6B4-1F3FD", "unicode_alternates": [], "name": "bicyclist tone 3", "shortname": ":bicyclist_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏽" }, "bicyclist_tone4": { "unicode": "1F6B4-1F3FE", "unicode_alternates": [], "name": "bicyclist tone 4", "shortname": ":bicyclist_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏾" }, "bicyclist_tone5": { "unicode": "1F6B4-1F3FF", "unicode_alternates": [], "name": "bicyclist tone 5", "shortname": ":bicyclist_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏿" }, "bike": { "unicode": "1F6B2", "unicode_alternates": [], "name": "bicycle", "shortname": ":bike:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "bicycle", "exercise", "hipster", "sports", "bike", "pedal", "transportation", "travel" ], "moji": "🚲" }, "bikini": { "unicode": "1F459", "unicode_alternates": [], "name": "bikini", "shortname": ":bikini:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beach", "fashion", "female", "girl", "swimming", "woman", "women", "sexy", "vacation", "tropical", "swim" ], "moji": "👙" }, "biohazard": { "unicode": "2623", "unicode_alternates": [], "name": "biohazard sign", "shortname": ":biohazard:", "category": "symbols", "aliases": [ ":biohazard_sign:" ], "aliases_ascii": [], "keywords": [ "symbol", "science" ], "moji": "☣" }, "bird": { "unicode": "1F426", "unicode_alternates": [], "name": "bird", "shortname": ":bird:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "fly", "nature", "tweet", "wildlife" ], "moji": "🐦" }, "birthday": { "unicode": "1F382", "unicode_alternates": [], "name": "birthday cake", "shortname": ":birthday:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "cake", "party", "birthday", "birth", "dessert", "wish", "celebrate", "food", "parties" ], "moji": "🎂" }, "black_circle": { "unicode": "26AB", "unicode_alternates": [ "26AB-FE0F" ], "name": "medium black circle", "shortname": ":black_circle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "⚫" }, "black_heart": { "unicode": "1F5A4", "unicode_alternates": [], "name": "black heart", "shortname": ":black_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🖤" }, "black_joker": { "unicode": "1F0CF", "unicode_alternates": [], "name": "playing card black joker", "shortname": ":black_joker:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cards", "game", "poker", "object", "symbol" ], "moji": "🃏" }, "black_large_square": { "unicode": "2B1B", "unicode_alternates": [ "2B1B-FE0F" ], "name": "black large square", "shortname": ":black_large_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "⬛" }, "black_medium_small_square": { "unicode": "25FE", "unicode_alternates": [ "25FE-FE0F" ], "name": "black medium small square", "shortname": ":black_medium_small_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shapes", "symbol", "square" ], "moji": "◾" }, "black_medium_square": { "unicode": "25FC", "unicode_alternates": [ "25FC-FE0F" ], "name": "black medium square", "shortname": ":black_medium_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◼" }, "black_nib": { "unicode": "2712", "unicode_alternates": [ "2712-FE0F" ], "name": "black nib", "shortname": ":black_nib:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "pen", "stationery", "object", "office", "write" ], "moji": "✒" }, "black_small_square": { "unicode": "25AA", "unicode_alternates": [ "25AA-FE0F" ], "name": "black small square", "shortname": ":black_small_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shapes", "symbol", "square" ], "moji": "▪" }, "black_square_button": { "unicode": "1F532", "unicode_alternates": [], "name": "black square button", "shortname": ":black_square_button:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "frame", "shapes", "symbol", "square" ], "moji": "🔲" }, "blossom": { "unicode": "1F33C", "unicode_alternates": [], "name": "blossom", "shortname": ":blossom:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "flowers", "nature", "yellow", "blossom", "daisy", "flower", "plant" ], "moji": "🌼" }, "blowfish": { "unicode": "1F421", "unicode_alternates": [], "name": "blowfish", "shortname": ":blowfish:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "nature", "ocean", "sea", "blowfish", "pufferfish", "puffer", "ballonfish", "toadfish", "fugu fish", "sushi", "wildlife", "animal" ], "moji": "🐡" }, "blue_book": { "unicode": "1F4D8", "unicode_alternates": [], "name": "blue book", "shortname": ":blue_book:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "knowledge", "library", "read", "object", "office", "write", "book" ], "moji": "📘" }, "blue_car": { "unicode": "1F699", "unicode_alternates": [], "name": "recreational vehicle", "shortname": ":blue_car:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "car", "suv", "wagon", "automobile", "transportation", "travel" ], "moji": "🚙" }, "blue_heart": { "unicode": "1F499", "unicode_alternates": [], "name": "blue heart", "shortname": ":blue_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "blue", "heart", "stability", "truth", "loyalty", "trust", "symbol" ], "moji": "💙" }, "blush": { "unicode": "1F60A", "unicode_alternates": [], "name": "smiling face with smiling eyes", "shortname": ":blush:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "crush", "embarrassed", "face", "flushed", "happy", "shy", "smile", "smiling", "smiley", "emotion", "good", "beautiful" ], "moji": "😊" }, "boar": { "unicode": "1F417", "unicode_alternates": [], "name": "boar", "shortname": ":boar:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐗" }, "bomb": { "unicode": "1F4A3", "unicode_alternates": [], "name": "bomb", "shortname": ":bomb:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "boom", "explode", "object", "weapon", "dead", "blast" ], "moji": "💣" }, "book": { "unicode": "1F4D6", "unicode_alternates": [], "name": "open book", "shortname": ":book:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "library", "literature", "object", "office", "write", "book" ], "moji": "📖" }, "bookmark": { "unicode": "1F516", "unicode_alternates": [], "name": "bookmark", "shortname": ":bookmark:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "favorite", "object", "book" ], "moji": "🔖" }, "bookmark_tabs": { "unicode": "1F4D1", "unicode_alternates": [], "name": "bookmark tabs", "shortname": ":bookmark_tabs:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "favorite", "office", "write" ], "moji": "📑" }, "books": { "unicode": "1F4DA", "unicode_alternates": [], "name": "books", "shortname": ":books:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "library", "literature", "object", "office", "write", "book" ], "moji": "📚" }, "boom": { "unicode": "1F4A5", "unicode_alternates": [], "name": "collision symbol", "shortname": ":boom:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "bomb", "explode", "explosion", "boom", "bang", "collision", "fire", "emphasis", "wow", "bam", "symbol", "blast" ], "moji": "💥" }, "boot": { "unicode": "1F462", "unicode_alternates": [], "name": "womans boots", "shortname": ":boot:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "shoes", "women", "shoe", "sexy", "accessories" ], "moji": "👢" }, "bouquet": { "unicode": "1F490", "unicode_alternates": [], "name": "bouquet", "shortname": ":bouquet:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "flowers", "nature", "flower", "plant", "rip", "condolence" ], "moji": "💐" }, "bow": { "unicode": "1F647", "unicode_alternates": [], "name": "person bowing deeply", "shortname": ":bow:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "curtsy", "bend", "people", "pray", "diversity" ], "moji": "🙇" }, "bow_and_arrow": { "unicode": "1F3F9", "unicode_alternates": [], "name": "bow and arrow", "shortname": ":bow_and_arrow:", "category": "activity", "aliases": [ ":archery:" ], "aliases_ascii": [], "keywords": [ "weapon", "sport" ], "moji": "🏹" }, "bow_tone1": { "unicode": "1F647-1F3FB", "unicode_alternates": [], "name": "person bowing deeply tone 1", "shortname": ":bow_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏻" }, "bow_tone2": { "unicode": "1F647-1F3FC", "unicode_alternates": [], "name": "person bowing deeply tone 2", "shortname": ":bow_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏼" }, "bow_tone3": { "unicode": "1F647-1F3FD", "unicode_alternates": [], "name": "person bowing deeply tone 3", "shortname": ":bow_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏽" }, "bow_tone4": { "unicode": "1F647-1F3FE", "unicode_alternates": [], "name": "person bowing deeply tone 4", "shortname": ":bow_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏾" }, "bow_tone5": { "unicode": "1F647-1F3FF", "unicode_alternates": [], "name": "person bowing deeply tone 5", "shortname": ":bow_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏿" }, "bowling": { "unicode": "1F3B3", "unicode_alternates": [], "name": "bowling", "shortname": ":bowling:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "fun", "play", "sports", "bowl", "bowling", "ball", "pin", "strike", "spare", "game", "sport", "boys night" ], "moji": "🎳" }, "boxing_glove": { "unicode": "1F94A", "unicode_alternates": [], "name": "boxing glove", "shortname": ":boxing_glove:", "category": "activity", "aliases": [ ":boxing_gloves:" ], "aliases_ascii": [], "keywords": [], "moji": "🥊" }, "boy": { "unicode": "1F466", "unicode_alternates": [], "name": "boy", "shortname": ":boy:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "guy", "male", "man", "people", "baby", "diversity" ], "moji": "👦" }, "boy_tone1": { "unicode": "1F466-1F3FB", "unicode_alternates": [], "name": "boy tone 1", "shortname": ":boy_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "kid", "child" ], "moji": "👦🏻" }, "boy_tone2": { "unicode": "1F466-1F3FC", "unicode_alternates": [], "name": "boy tone 2", "shortname": ":boy_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "kid", "child" ], "moji": "👦🏼" }, "boy_tone3": { "unicode": "1F466-1F3FD", "unicode_alternates": [], "name": "boy tone 3", "shortname": ":boy_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "kid", "child" ], "moji": "👦🏽" }, "boy_tone4": { "unicode": "1F466-1F3FE", "unicode_alternates": [], "name": "boy tone 4", "shortname": ":boy_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "kid", "child" ], "moji": "👦🏾" }, "boy_tone5": { "unicode": "1F466-1F3FF", "unicode_alternates": [], "name": "boy tone 5", "shortname": ":boy_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "kid", "child" ], "moji": "👦🏿" }, "bread": { "unicode": "1F35E", "unicode_alternates": [], "name": "bread", "shortname": ":bread:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "breakfast", "food", "toast", "wheat", "bread", "loaf", "yeast" ], "moji": "🍞" }, "bride_with_veil": { "unicode": "1F470", "unicode_alternates": [], "name": "bride with veil", "shortname": ":bride_with_veil:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "bride", "planning", "veil", "gown", "dress", "engagement", "white", "people", "women", "diversity" ], "moji": "👰" }, "bride_with_veil_tone1": { "unicode": "1F470-1F3FB", "unicode_alternates": [], "name": "bride with veil tone 1", "shortname": ":bride_with_veil_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏻" }, "bride_with_veil_tone2": { "unicode": "1F470-1F3FC", "unicode_alternates": [], "name": "bride with veil tone 2", "shortname": ":bride_with_veil_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏼" }, "bride_with_veil_tone3": { "unicode": "1F470-1F3FD", "unicode_alternates": [], "name": "bride with veil tone 3", "shortname": ":bride_with_veil_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏽" }, "bride_with_veil_tone4": { "unicode": "1F470-1F3FE", "unicode_alternates": [], "name": "bride with veil tone 4", "shortname": ":bride_with_veil_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏾" }, "bride_with_veil_tone5": { "unicode": "1F470-1F3FF", "unicode_alternates": [], "name": "bride with veil tone 5", "shortname": ":bride_with_veil_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏿" }, "bridge_at_night": { "unicode": "1F309", "unicode_alternates": [], "name": "bridge at night", "shortname": ":bridge_at_night:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "photo", "sanfrancisco", "bridge", "night", "water", "road", "evening", "suspension", "golden", "gate", "places", "travel", "vacation", "goodnight" ], "moji": "🌉" }, "briefcase": { "unicode": "1F4BC", "unicode_alternates": [], "name": "briefcase", "shortname": ":briefcase:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "business", "documents", "work", "bag", "accessories", "nutcase", "job" ], "moji": "💼" }, "broken_heart": { "unicode": "1F494", "unicode_alternates": [], "name": "broken heart", "shortname": ":broken_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [ ":\\", ">:/", ":-/", ":-.", ":/", ":\\", "=/", "=\\", ":L", "=L" ], "keywords": [ "confused", "confuse", "daze", "perplex", "puzzle", "indifference", "skeptical", "undecided", "uneasy", "hesitant", "smiley", "surprised", "emotion" ], "moji": "😕" }, "congratulations": { "unicode": "3297", "unicode_alternates": [ "3297-FE0F" ], "name": "circled ideograph congratulation", "shortname": ":congratulations:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "japanese", "kanji", "japan", "symbol" ], "moji": "㊗" }, "construction": { "unicode": "1F6A7", "unicode_alternates": [], "name": "construction sign", "shortname": ":construction:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "caution", "progress", "wip", "object" ], "moji": "🚧" }, "construction_site": { "unicode": "1F3D7", "unicode_alternates": [], "name": "building construction", "shortname": ":construction_site:", "category": "travel", "aliases": [ ":building_construction:" ], "aliases_ascii": [], "keywords": [ "site", "work", "place", "building", "crane" ], "moji": "🏗" }, "construction_worker": { "unicode": "1F477", "unicode_alternates": [], "name": "construction worker", "shortname": ":construction_worker:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip", "people", "hat", "men", "diversity", "job" ], "moji": "👷" }, "construction_worker_tone1": { "unicode": "1F477-1F3FB", "unicode_alternates": [], "name": "construction worker tone 1", "shortname": ":construction_worker_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏻" }, "construction_worker_tone2": { "unicode": "1F477-1F3FC", "unicode_alternates": [], "name": "construction worker tone 2", "shortname": ":construction_worker_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏼" }, "construction_worker_tone3": { "unicode": "1F477-1F3FD", "unicode_alternates": [], "name": "construction worker tone 3", "shortname": ":construction_worker_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏽" }, "construction_worker_tone4": { "unicode": "1F477-1F3FE", "unicode_alternates": [], "name": "construction worker tone 4", "shortname": ":construction_worker_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏾" }, "construction_worker_tone5": { "unicode": "1F477-1F3FF", "unicode_alternates": [], "name": "construction worker tone 5", "shortname": ":construction_worker_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏿" }, "control_knobs": { "unicode": "1F39B", "unicode_alternates": [], "name": "control knobs", "shortname": ":control_knobs:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "dial", "time" ], "moji": "🎛" }, "convenience_store": { "unicode": "1F3EA", "unicode_alternates": [], "name": "convenience store", "shortname": ":convenience_store:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "places" ], "moji": "🏪" }, "cookie": { "unicode": "1F36A", "unicode_alternates": [], "name": "cookie", "shortname": ":cookie:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "chocolate", "food", "oreo", "snack", "cookie", "dessert", "biscuit", "sweet", "vagina" ], "moji": "🍪" }, "cooking": { "unicode": "1F373", "unicode_alternates": [], "name": "cooking", "shortname": ":cooking:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "breakfast", "food", "egg", "fry", "pan", "flat", "cook", "frying", "cooking", "utensil" ], "moji": "🍳" }, "cool": { "unicode": "1F192", "unicode_alternates": [], "name": "squared cool", "shortname": ":cool:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "words", "symbol" ], "moji": "🆒" }, "cop": { "unicode": "1F46E", "unicode_alternates": [], "name": "police officer", "shortname": ":cop:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "police", "people", "hat", "men", "diversity", "job", "911" ], "moji": "👮" }, "cop_tone1": { "unicode": "1F46E-1F3FB", "unicode_alternates": [], "name": "police officer tone 1", "shortname": ":cop_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏻" }, "cop_tone2": { "unicode": "1F46E-1F3FC", "unicode_alternates": [], "name": "police officer tone 2", "shortname": ":cop_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏼" }, "cop_tone3": { "unicode": "1F46E-1F3FD", "unicode_alternates": [], "name": "police officer tone 3", "shortname": ":cop_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏽" }, "cop_tone4": { "unicode": "1F46E-1F3FE", "unicode_alternates": [], "name": "police officer tone 4", "shortname": ":cop_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏾" }, "cop_tone5": { "unicode": "1F46E-1F3FF", "unicode_alternates": [], "name": "police officer tone 5", "shortname": ":cop_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏿" }, "copyright": { "moji": "©️", "unicode": "00A9", "unicode_alternates": [], "name": "copyright sign", "shortname": ":copyright:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "ip", "license", "symbol" ] }, "corn": { "unicode": "1F33D", "unicode_alternates": [], "name": "ear of maize", "shortname": ":corn:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "plant", "vegetable", "corn", "maize", "iowa", "kernel", "popcorn", "husk", "yellow", "stalk", "cob", "ear", "vegetables" ], "moji": "🌽" }, "couch": { "unicode": "1F6CB", "unicode_alternates": [], "name": "couch and lamp", "shortname": ":couch:", "category": "objects", "aliases": [ ":couch_and_lamp:" ], "aliases_ascii": [], "keywords": [ "lounge", "sectional", "sofa", "loveseat", "leather", "microfiber", "sit", "relax", "object" ], "moji": "🛋" }, "couple": { "unicode": "1F46B", "unicode_alternates": [], "name": "man and woman holding hands", "shortname": ":couple:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "date", "dating", "human", "like", "love", "marriage", "people", "valentines", "sex", "creationism" ], "moji": "👫" }, "couple_mm": { "unicode": "1F468-2764-1F468", "unicode_alternates": [ "1F468-200D-2764-FE0F-200D-1F468" ], "name": "couple (man,man)", "shortname": ":couple_mm:", "category": "people", "aliases": [ ":couple_with_heart_mm:" ], "aliases_ascii": [], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "gay", "men", "sex", "lgbt" ], "moji": "👨‍❤️‍👨" }, "couple_with_heart": { "unicode": "1F491", "unicode_alternates": [], "name": "couple with heart", "shortname": ":couple_with_heart:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "sex" ], "moji": "💑" }, "couple_ww": { "unicode": "1F469-2764-1F469", "unicode_alternates": [ "1F469-200D-2764-FE0F-200D-1F469" ], "name": "couple (woman,woman)", "shortname": ":couple_ww:", "category": "people", "aliases": [ ":couple_with_heart_ww:" ], "aliases_ascii": [], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "women", "sex", "lgbt" ], "moji": "👩‍❤️‍👩" }, "couplekiss": { "unicode": "1F48F", "unicode_alternates": [], "name": "kiss", "shortname": ":couplekiss:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "dating", "like", "love", "marriage", "valentines", "people", "sex" ], "moji": "💏" }, "cow": { "unicode": "1F42E", "unicode_alternates": [], "name": "cow face", "shortname": ":cow:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "beef", "ox" ], "moji": "🐮" }, "cow2": { "unicode": "1F404", "unicode_alternates": [], "name": "cow", "shortname": ":cow2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "beef", "nature", "ox", "cow", "milk", "dairy", "bessie", "moo" ], "moji": "🐄" }, "cowboy": { "unicode": "1F920", "unicode_alternates": [], "name": "face with cowboy hat", "shortname": ":cowboy:", "category": "people", "aliases": [ ":face_with_cowboy_hat:" ], "aliases_ascii": [], "keywords": [], "moji": "🤠" }, "crab": { "unicode": "1F980", "unicode_alternates": [], "name": "crab", "shortname": ":crab:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "tropical", "animal" ], "moji": "🦀" }, "crayon": { "unicode": "1F58D", "unicode_alternates": [], "name": "lower left crayon", "shortname": ":crayon:", "category": "objects", "aliases": [ ":lower_left_crayon:" ], "aliases_ascii": [], "keywords": [ "write", "draw", "color", "wax", "object", "office" ], "moji": "🖍" }, "credit_card": { "unicode": "1F4B3", "unicode_alternates": [], "name": "credit card", "shortname": ":credit_card:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bill", "dollar", "money", "pay", "payment", "credit", "card", "loan", "purchase", "shopping", "mastercard", "visa", "american express", "wallet", "signature", "object", "boys night" ], "moji": "💳" }, "crescent_moon": { "unicode": "1F319", "unicode_alternates": [], "name": "crescent moon", "shortname": ":crescent_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "moon", "crescent", "waxing", "sky", "cheese", "phase", "space", "goodnight" ], "moji": "🌙" }, "cricket": { "unicode": "1F3CF", "unicode_alternates": [], "name": "cricket bat and ball", "shortname": ":cricket:", "category": "activity", "aliases": [ ":cricket_bat_ball:" ], "aliases_ascii": [], "keywords": [ "ball", "sport", "cricket" ], "moji": "🏏" }, "crocodile": { "unicode": "1F40A", "unicode_alternates": [], "name": "crocodile", "shortname": ":crocodile:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "crocodile", "croc", "alligator", "gator", "cranky", "wildlife", "reptile" ], "moji": "🐊" }, "croissant": { "unicode": "1F950", "unicode_alternates": [], "name": "croissant", "shortname": ":croissant:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥐" }, "cross": { "unicode": "271D", "unicode_alternates": [], "name": "latin cross", "shortname": ":cross:", "category": "symbols", "aliases": [ ":latin_cross:" ], "aliases_ascii": [], "keywords": [ "religion", "symbol", "christian" ], "moji": "✝" }, "crossed_flags": { "unicode": "1F38C", "unicode_alternates": [], "name": "crossed flags", "shortname": ":crossed_flags:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "japan", "object" ], "moji": "🎌" }, "crossed_swords": { "unicode": "2694", "unicode_alternates": [], "name": "crossed swords", "shortname": ":crossed_swords:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "object", "weapon" ], "moji": "⚔" }, "crown": { "unicode": "1F451", "unicode_alternates": [], "name": "crown", "shortname": ":crown:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "king", "kod", "leader", "royalty", "object", "gem", "accessories" ], "moji": "👑" }, "cruise_ship": { "unicode": "1F6F3", "unicode_alternates": [], "name": "passenger ship", "shortname": ":cruise_ship:", "category": "travel", "aliases": [ ":passenger_ship:" ], "aliases_ascii": [], "keywords": [ "titanic", "transportation", "boat", "travel", "vacation" ], "moji": "🛳" }, "cry": { "unicode": "1F622", "unicode_alternates": [], "name": "crying face", "shortname": ":cry:", "category": "people", "aliases": [], "aliases_ascii": [ ":'(", ":'-(", ";(", ";-(" ], "keywords": [ "face", "sad", "cry", "tear", "weep", "tears", "smiley", "emotion", "rip", "heartbreak" ], "moji": "😢" }, "crying_cat_face": { "unicode": "1F63F", "unicode_alternates": [], "name": "crying cat face", "shortname": ":crying_cat_face:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "sad", "tears", "weep", "cry", "cat", "sob", "melancholy", "morn", "somber", "hurt" ], "moji": "😿" }, "crystal_ball": { "unicode": "1F52E", "unicode_alternates": [], "name": "crystal ball", "shortname": ":crystal_ball:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "disco", "party", "object", "ball" ], "moji": "🔮" }, "cucumber": { "unicode": "1F952", "unicode_alternates": [], "name": "cucumber", "shortname": ":cucumber:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥒" }, "cupid": { "unicode": "1F498", "unicode_alternates": [], "name": "heart with arrow", "shortname": ":cupid:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "heart", "like", "love", "valentines", "symbol" ], "moji": "💘" }, "curly_loop": { "unicode": "27B0", "unicode_alternates": [], "name": "curly loop", "shortname": ":curly_loop:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "scribble", "symbol" ], "moji": "➰" }, "currency_exchange": { "unicode": "1F4B1", "unicode_alternates": [], "name": "currency exchange", "shortname": ":currency_exchange:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "dollar", "money", "travel", "symbol" ], "moji": "💱" }, "curry": { "unicode": "1F35B", "unicode_alternates": [], "name": "curry and rice", "shortname": ":curry:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "hot", "indian", "spicy", "curry", "spice", "flavor", "meal" ], "moji": "🍛" }, "custard": { "unicode": "1F36E", "unicode_alternates": [], "name": "custard", "shortname": ":custard:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "desert", "food", "custard", "cream", "rich", "butter", "dessert", "crème", "brûlée", "french" ], "moji": "🍮" }, "customs": { "unicode": "1F6C3", "unicode_alternates": [], "name": "customs", "shortname": ":customs:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "border", "passport", "customs", "travel", "foreign", "goods", "check", "authority", "government", "symbol" ], "moji": "🛃" }, "cyclone": { "moji": "🌀", "unicode": "1F300", "unicode_alternates": [], "name": "cyclone", "shortname": ":cyclone:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue", "cloud", "swirl", "weather", "cyclone", "hurricane", "typhoon", "storm", "ocean", "symbol", "drugs" ] }, "dagger": { "unicode": "1F5E1", "unicode_alternates": [], "name": "dagger knife", "shortname": ":dagger:", "category": "objects", "aliases": [ ":dagger_knife:" ], "aliases_ascii": [], "keywords": [ "blade", "knife", "object", "weapon" ], "moji": "🗡" }, "dancer": { "unicode": "1F483", "unicode_alternates": [], "name": "dancer", "shortname": ":dancer:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dance", "dancer", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music", "people", "women", "sexy", "diversity", "girls night" ], "moji": "💃" }, "dancer_tone1": { "unicode": "1F483-1F3FB", "unicode_alternates": [], "name": "dancer tone 1", "shortname": ":dancer_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏻" }, "dancer_tone2": { "unicode": "1F483-1F3FC", "unicode_alternates": [], "name": "dancer tone 2", "shortname": ":dancer_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏼" }, "dancer_tone3": { "unicode": "1F483-1F3FD", "unicode_alternates": [], "name": "dancer tone 3", "shortname": ":dancer_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏽" }, "dancer_tone4": { "unicode": "1F483-1F3FE", "unicode_alternates": [], "name": "dancer tone 4", "shortname": ":dancer_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏾" }, "dancer_tone5": { "unicode": "1F483-1F3FF", "unicode_alternates": [], "name": "dancer tone 5", "shortname": ":dancer_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏿" }, "dancers": { "unicode": "1F46F", "unicode_alternates": [], "name": "woman with bunny ears", "shortname": ":dancers:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "bunny", "female", "girls", "women", "dancing", "dancers", "showgirl", "playboy", "costume", "cancan", "people", "sexy", "girls night", "boys night", "parties", "dance" ], "moji": "👯" }, "dango": { "unicode": "1F361", "unicode_alternates": [], "name": "dango", "shortname": ":dango:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "dango", "japanese", "dumpling", "mochi", "balls", "skewer" ], "moji": "🍡" }, "dark_sunglasses": { "unicode": "1F576", "unicode_alternates": [], "name": "dark sunglasses", "shortname": ":dark_sunglasses:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "shades", "eyes", "fashion", "glasses", "accessories" ], "moji": "🕶" }, "dart": { "unicode": "1F3AF", "unicode_alternates": [], "name": "direct hit", "shortname": ":dart:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bar", "game", "direct", "hit", "bullseye", "dart", "archery", "fletching", "arrow", "sport", "boys night" ], "moji": "🎯" }, "dash": { "unicode": "1F4A8", "unicode_alternates": [], "name": "dash symbol", "shortname": ":dash:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "air", "fast", "shoo", "wind", "cloud", "cold", "smoking" ], "moji": "💨" }, "date": { "unicode": "1F4C5", "unicode_alternates": [], "name": "calendar", "shortname": ":date:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "calendar", "schedule", "object", "office" ], "moji": "📅" }, "deciduous_tree": { "unicode": "1F333", "unicode_alternates": [], "name": "deciduous tree", "shortname": ":deciduous_tree:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "deciduous", "tree", "leaves", "fall", "color", "camp", "trees" ], "moji": "🌳" }, "deer": { "unicode": "1F98C", "unicode_alternates": [], "name": "deer", "shortname": ":deer:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦌" }, "department_store": { "unicode": "1F3EC", "unicode_alternates": [], "name": "department store", "shortname": ":department_store:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "mall", "shopping", "department", "store", "retail", "sale", "merchandise", "places" ], "moji": "🏬" }, "desert": { "unicode": "1F3DC", "unicode_alternates": [], "name": "desert", "shortname": ":desert:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "hot", "dry", "sandy", "cactus", "sunny", "barren", "places", "travel", "vacation" ], "moji": "🏜" }, "desktop": { "unicode": "1F5A5", "unicode_alternates": [], "name": "desktop computer", "shortname": ":desktop:", "category": "objects", "aliases": [ ":desktop_computer:" ], "aliases_ascii": [], "keywords": [ "cpu", "electronics", "work" ], "moji": "🖥" }, "diamond_shape_with_a_dot_inside": { "unicode": "1F4A0", "unicode_alternates": [], "name": "diamond shape with a dot inside", "shortname": ":diamond_shape_with_a_dot_inside:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "diamond", "cute", "cuteness", "kawaii", "japanese", "glyph", "adorable", "symbol" ], "moji": "💠" }, "diamonds": { "unicode": "2666", "unicode_alternates": [ "2666-FE0F" ], "name": "black diamond suit", "shortname": ":diamonds:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cards", "poker", "shapes", "symbol", "game" ], "moji": "♦" }, "disappointed": { "unicode": "1F61E", "unicode_alternates": [], "name": "disappointed face", "shortname": ":disappointed:", "category": "people", "aliases": [], "aliases_ascii": [ ">:[", ":-(", ":(", ":-[", ":[", "=(" ], "keywords": [ "disappointed", "disappoint", "frown", "depressed", "discouraged", "face", "sad", "upset", "smiley", "tired", "emotion" ], "moji": "😞" }, "disappointed_relieved": { "unicode": "1F625", "unicode_alternates": [], "name": "disappointed but relieved face", "shortname": ":disappointed_relieved:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "nervous", "phew", "sweat", "disappoint", "relief", "sad", "smiley", "stressed", "cry", "emotion" ], "moji": "😥" }, "dividers": { "unicode": "1F5C2", "unicode_alternates": [], "name": "card index dividers", "shortname": ":dividers:", "category": "objects", "aliases": [ ":card_index_dividers:" ], "aliases_ascii": [], "keywords": [ "stationery", "rolodex", "work", "office" ], "moji": "🗂" }, "dizzy": { "unicode": "1F4AB", "unicode_alternates": [], "name": "dizzy symbol", "shortname": ":dizzy:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "shoot", "sparkle", "star", "dizzy", "drunk", "sick", "intoxicated", "squeans", "starburst", "symbol" ], "moji": "💫" }, "dizzy_face": { "unicode": "1F635", "unicode_alternates": [], "name": "dizzy face", "shortname": ":dizzy_face:", "category": "people", "aliases": [], "aliases_ascii": [ "#-)", "#)", "%-)", "%)", "X)", "X-)" ], "keywords": [ "dizzy", "drunk", "inebriated", "face", "spent", "unconscious", "xox", "smiley", "surprised", "dead", "wow", "emotion", "omg" ], "moji": "😵" }, "do_not_litter": { "unicode": "1F6AF", "unicode_alternates": [], "name": "do not litter symbol", "shortname": ":do_not_litter:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "bin", "garbage", "trash", "litter", "waste", "no", "can", "symbol" ], "moji": "🚯" }, "dog": { "unicode": "1F436", "unicode_alternates": [], "name": "dog face", "shortname": ":dog:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "friend", "nature", "woof", "dog", "pug" ], "moji": "🐶" }, "dog2": { "unicode": "1F415", "unicode_alternates": [], "name": "dog", "shortname": ":dog2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "doge", "friend", "nature", "pet", "dog", "puppy", "woof", "bark", "fido", "pug" ], "moji": "🐕" }, "dollar": { "unicode": "1F4B5", "unicode_alternates": [], "name": "banknote with dollar sign", "shortname": ":dollar:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bill", "currency", "money", "dollar", "united states", "canada", "australia", "banknote", "paper", "cash", "bills" ], "moji": "💵" }, "dolls": { "unicode": "1F38E", "unicode_alternates": [], "name": "japanese dolls", "shortname": ":dolls:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "japanese", "kimono", "toy", "dolls", "japan", "day", "girls", "emperor", "empress", "pray", "blessing", "imperial", "family", "royal", "people" ], "moji": "🎎" }, "dolphin": { "unicode": "1F42C", "unicode_alternates": [], "name": "dolphin", "shortname": ":dolphin:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "fins", "fish", "flipper", "nature", "ocean", "sea", "wildlife", "tropical" ], "moji": "🐬" }, "door": { "unicode": "1F6AA", "unicode_alternates": [], "name": "door", "shortname": ":door:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "entry", "exit", "house", "door", "doorway", "entrance", "enter", "object" ], "moji": "🚪" }, "doughnut": { "unicode": "1F369", "unicode_alternates": [], "name": "doughnut", "shortname": ":doughnut:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "desert", "food", "snack", "sweet", "doughnut", "donut", "pastry", "fried", "dessert", "breakfast", "police", "homer" ], "moji": "🍩" }, "dove": { "unicode": "1F54A", "unicode_alternates": [], "name": "dove of peace", "shortname": ":dove:", "category": "nature", "aliases": [ ":dove_of_peace:" ], "aliases_ascii": [], "keywords": [ "symbol", "bird", "animal" ], "moji": "🕊" }, "dragon": { "unicode": "1F409", "unicode_alternates": [], "name": "dragon", "shortname": ":dragon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "chinese", "green", "myth", "nature", "dragon", "fire", "legendary", "roar", "reptile" ], "moji": "🐉" }, "dragon_face": { "unicode": "1F432", "unicode_alternates": [], "name": "dragon face", "shortname": ":dragon_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "chinese", "green", "myth", "nature", "dragon", "head", "fire", "legendary", "roar", "monster", "reptile" ], "moji": "🐲" }, "dress": { "unicode": "1F457", "unicode_alternates": [], "name": "dress", "shortname": ":dress:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "clothes", "fashion", "women", "sexy", "girls night" ], "moji": "👗" }, "dromedary_camel": { "unicode": "1F42A", "unicode_alternates": [], "name": "dromedary camel", "shortname": ":dromedary_camel:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "desert", "hot", "dromedary", "camel", "hump", "middle east", "heat", "water", "hump day", "wednesday", "sex", "wildlife" ], "moji": "🐪" }, "drooling_face": { "unicode": "1F924", "unicode_alternates": [], "name": "drooling face", "shortname": ":drooling_face:", "category": "people", "aliases": [ ":drool:" ], "aliases_ascii": [], "keywords": [], "moji": "🤤" }, "droplet": { "unicode": "1F4A7", "unicode_alternates": [], "name": "droplet", "shortname": ":droplet:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "drip", "faucet", "water", "drop", "droplet", "h20", "aqua", "tear", "sweat", "rain", "moisture", "wet", "moist", "spit", "weather", "sky" ], "moji": "💧" }, "drum": { "unicode": "1F941", "unicode_alternates": [], "name": "drum with drumsticks", "shortname": ":drum:", "category": "activity", "aliases": [ ":drum_with_drumsticks:" ], "aliases_ascii": [], "keywords": [], "moji": "🥁" }, "duck": { "unicode": "1F986", "unicode_alternates": [], "name": "duck", "shortname": ":duck:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦆" }, "dvd": { "unicode": "1F4C0", "unicode_alternates": [], "name": "dvd", "shortname": ":dvd:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "cd", "disc", "disk", "electronics" ], "moji": "📀" }, "e-mail": { "unicode": "1F4E7", "unicode_alternates": [], "name": "e-mail symbol", "shortname": ":e-mail:", "category": "objects", "aliases": [ ":email:" ], "aliases_ascii": [], "keywords": [ "communication", "inbox", "office" ], "moji": "📧" }, "eagle": { "unicode": "1F985", "unicode_alternates": [], "name": "eagle", "shortname": ":eagle:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦅" }, "ear": { "unicode": "1F442", "unicode_alternates": [], "name": "ear", "shortname": ":ear:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "hear", "listen", "sound", "body", "diversity" ], "moji": "👂" }, "ear_of_rice": { "unicode": "1F33E", "unicode_alternates": [], "name": "ear of rice", "shortname": ":ear_of_rice:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "ear", "rice", "food", "seed", "leaf" ], "moji": "🌾" }, "ear_tone1": { "unicode": "1F442-1F3FB", "unicode_alternates": [], "name": "ear tone 1", "shortname": ":ear_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏻" }, "ear_tone2": { "unicode": "1F442-1F3FC", "unicode_alternates": [], "name": "ear tone 2", "shortname": ":ear_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏼" }, "ear_tone3": { "unicode": "1F442-1F3FD", "unicode_alternates": [], "name": "ear tone 3", "shortname": ":ear_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏽" }, "ear_tone4": { "unicode": "1F442-1F3FE", "unicode_alternates": [], "name": "ear tone 4", "shortname": ":ear_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏾" }, "ear_tone5": { "unicode": "1F442-1F3FF", "unicode_alternates": [], "name": "ear tone 5", "shortname": ":ear_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏿" }, "earth_africa": { "unicode": "1F30D", "unicode_alternates": [], "name": "earth globe europe-africa", "shortname": ":earth_africa:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "globe", "international", "world", "earth", "space", "planet", "africa", "europe", "home", "map", "vacation" ], "moji": "🌍" }, "earth_americas": { "unicode": "1F30E", "unicode_alternates": [], "name": "earth globe americas", "shortname": ":earth_americas:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "USA", "globe", "international", "world", "earth", "space", "planet", "north", "south", "america", "americas", "home", "map", "vacation" ], "moji": "🌎" }, "earth_asia": { "unicode": "1F30F", "unicode_alternates": [], "name": "earth globe asia-australia", "shortname": ":earth_asia:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "east", "globe", "international", "world", "earth", "space", "planet", "asia", "australia", "home", "map", "vacation" ], "moji": "🌏" }, "egg": { "unicode": "1F95A", "unicode_alternates": [], "name": "egg", "shortname": ":egg:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥚" }, "eggplant": { "unicode": "1F346", "unicode_alternates": [], "name": "aubergine", "shortname": ":eggplant:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "aubergine", "food", "nature", "vegetable", "eggplant", "fruit", "purple", "penis", "vegetables" ], "moji": "🍆" }, "eight": { "moji": "8️⃣", "unicode": "0038-20E3", "unicode_alternates": [ "0038-FE0F-20E3" ], "name": "keycap digit eight", "shortname": ":eight:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "8", "blue-square", "numbers", "number", "math", "symbol" ] }, "eight_pointed_black_star": { "unicode": "2734", "unicode_alternates": [ "2734-FE0F" ], "name": "eight pointed black star", "shortname": ":eight_pointed_black_star:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "symbol" ], "moji": "✴" }, "eight_spoked_asterisk": { "unicode": "2733", "unicode_alternates": [ "2733-FE0F" ], "name": "eight spoked asterisk", "shortname": ":eight_spoked_asterisk:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "green-square", "sparkle", "star", "symbol" ], "moji": "✳" }, "eject": { "unicode": "23CF", "unicode_alternates": [ "23CF-FE0F" ], "name": "eject symbol", "shortname": ":eject:", "category": "symbols", "aliases": [ ":eject_symbol:" ], "aliases_ascii": [], "keywords": [], "moji": "⏏" }, "electric_plug": { "unicode": "1F50C", "unicode_alternates": [], "name": "electric plug", "shortname": ":electric_plug:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "charger", "power", "electronics" ], "moji": "🔌" }, "elephant": { "unicode": "1F418", "unicode_alternates": [], "name": "elephant", "shortname": ":elephant:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "nose", "thailand", "wildlife" ], "moji": "🐘" }, "end": { "unicode": "1F51A", "unicode_alternates": [], "name": "end with leftwards arrow above", "shortname": ":end:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔚" }, "envelope": { "unicode": "2709", "unicode_alternates": [ "2709-FE0F" ], "name": "envelope", "shortname": ":envelope:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "letter", "mail", "postal", "object", "office", "write" ], "moji": "✉" }, "envelope_with_arrow": { "unicode": "1F4E9", "unicode_alternates": [], "name": "envelope with downwards arrow above", "shortname": ":envelope_with_arrow:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "email", "object", "office" ], "moji": "📩" }, "euro": { "unicode": "1F4B6", "unicode_alternates": [], "name": "banknote with euro sign", "shortname": ":euro:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "currency", "dollar", "money", "euro", "europe", "banknote", "paper", "cash", "bills" ], "moji": "💶" }, "european_castle": { "unicode": "1F3F0", "unicode_alternates": [], "name": "european castle", "shortname": ":european_castle:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "history", "royalty", "castle", "european", "residence", "disneyland", "disney", "fort", "fortified", "moat", "tower", "princess", "prince", "lord", "king", "queen", "fortress", "nobel", "stronghold", "places", "travel", "vacation" ], "moji": "🏰" }, "european_post_office": { "unicode": "1F3E4", "unicode_alternates": [], "name": "european post office", "shortname": ":european_post_office:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "places", "post office" ], "moji": "🏤" }, "evergreen_tree": { "unicode": "1F332", "unicode_alternates": [], "name": "evergreen tree", "shortname": ":evergreen_tree:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "evergreen", "tree", "needles", "christmas", "holidays", "camp", "trees" ], "moji": "🌲" }, "exclamation": { "unicode": "2757", "unicode_alternates": [ "2757-FE0F" ], "name": "heavy exclamation mark symbol", "shortname": ":exclamation:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "surprise", "symbol", "punctuation" ], "moji": "❗" }, "expressionless": { "unicode": "1F611", "unicode_alternates": [], "name": "expressionless face", "shortname": ":expressionless:", "category": "people", "aliases": [], "aliases_ascii": [ "-_-", "-__-", "-___-" ], "keywords": [ "expressionless", "blank", "void", "vapid", "without expression", "face", "indifferent", "mad", "smiley", "neutral", "emotion" ], "moji": "😑" }, "eye": { "unicode": "1F441", "unicode_alternates": [], "name": "eye", "shortname": ":eye:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "look", "peek", "watch", "body", "eyes" ], "moji": "👁" }, "eye_in_speech_bubble": { "unicode": "1F441-1F5E8", "unicode_alternates": [ "1F441-200D-1F5E8" ], "name": "eye in speech bubble", "shortname": ":eye_in_speech_bubble:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "object", "symbol", "eyes", "talk" ], "moji": "👁‍🗨" }, "eyeglasses": { "unicode": "1F453", "unicode_alternates": [], "name": "eyeglasses", "shortname": ":eyeglasses:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "eyesight", "fashion", "eyeglasses", "spectacles", "eye", "sight", "nearsightedness", "myopia", "farsightedness", "hyperopia", "frames", "vision", "see", "blurry", "contacts", "glasses" ], "moji": "👓" }, "eyes": { "unicode": "1F440", "unicode_alternates": [], "name": "eyes", "shortname": ":eyes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "look", "peek", "stalk", "watch", "body", "eyes" ], "moji": "👀" }, "face_palm": { "unicode": "1F926", "unicode_alternates": [], "name": "face palm", "shortname": ":face_palm:", "category": "people", "aliases": [ ":facepalm:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦" }, "face_palm_tone1": { "unicode": "1F926-1F3FB", "unicode_alternates": [], "name": "face palm tone 1", "shortname": ":face_palm_tone1:", "category": "people", "aliases": [ ":facepalm_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦🏻" }, "face_palm_tone2": { "unicode": "1F926-1F3FC", "unicode_alternates": [], "name": "face palm tone 2", "shortname": ":face_palm_tone2:", "category": "people", "aliases": [ ":facepalm_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦🏼" }, "face_palm_tone3": { "unicode": "1F926-1F3FD", "unicode_alternates": [], "name": "face palm tone 3", "shortname": ":face_palm_tone3:", "category": "people", "aliases": [ ":facepalm_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦🏽" }, "face_palm_tone4": { "unicode": "1F926-1F3FE", "unicode_alternates": [], "name": "face palm tone 4", "shortname": ":face_palm_tone4:", "category": "people", "aliases": [ ":facepalm_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦🏾" }, "face_palm_tone5": { "unicode": "1F926-1F3FF", "unicode_alternates": [], "name": "face palm tone 5", "shortname": ":face_palm_tone5:", "category": "people", "aliases": [ ":facepalm_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤦🏿" }, "factory": { "unicode": "1F3ED", "unicode_alternates": [], "name": "factory", "shortname": ":factory:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "places", "travel", "steam" ], "moji": "🏭" }, "fallen_leaf": { "unicode": "1F342", "unicode_alternates": [], "name": "fallen leaf", "shortname": ":fallen_leaf:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "leaves", "nature", "plant", "vegetable", "leaf", "fall", "color", "deciduous", "autumn" ], "moji": "🍂" }, "family": { "unicode": "1F46A", "unicode_alternates": [], "name": "family", "shortname": ":family:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "dad", "father", "home", "mom", "mother", "parents", "family", "girl", "boy", "group", "unit", "people", "baby" ], "moji": "👪" }, "family_mmb": { "unicode": "1F468-1F468-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F466" ], "name": "family (man,man,boy)", "shortname": ":family_mmb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👦" }, "family_mmbb": { "unicode": "1F468-1F468-1F466-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F466-200D-1F466" ], "name": "family (man,man,boy,boy)", "shortname": ":family_mmbb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👦‍👦" }, "family_mmg": { "unicode": "1F468-1F468-1F467", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467" ], "name": "family (man,man,girl)", "shortname": ":family_mmg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧" }, "family_mmgb": { "unicode": "1F468-1F468-1F467-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467-200D-1F466" ], "name": "family (man,man,girl,boy)", "shortname": ":family_mmgb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧‍👦" }, "family_mmgg": { "unicode": "1F468-1F468-1F467-1F467", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467-200D-1F467" ], "name": "family (man,man,girl,girl)", "shortname": ":family_mmgg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧‍👧" }, "family_mwbb": { "unicode": "1F468-1F469-1F466-1F466", "unicode_alternates": [ "1F468-200D-1F469-200D-1F466-200D-1F466" ], "name": "family (man,woman,boy,boy)", "shortname": ":family_mwbb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👦‍👦" }, "family_mwg": { "unicode": "1F468-1F469-1F467", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467" ], "name": "family (man,woman,girl)", "shortname": ":family_mwg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "child", "dad", "father", "mom", "mother", "parents", "girl", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧" }, "family_mwgb": { "unicode": "1F468-1F469-1F467-1F466", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467-200D-1F466" ], "name": "family (man,woman,girl,boy)", "shortname": ":family_mwgb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "girl", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧‍👦" }, "family_mwgg": { "unicode": "1F468-1F469-1F467-1F467", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467-200D-1F467" ], "name": "family (man,woman,girl,girl)", "shortname": ":family_mwgg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "girl", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧‍👧" }, "family_wwb": { "unicode": "1F469-1F469-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F466" ], "name": "family (woman,woman,boy)", "shortname": ":family_wwb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mom", "mother", "parents", "child", "boy", "group", "unit", "gay", "lesbian", "homosexual", "woman", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👦" }, "family_wwbb": { "unicode": "1F469-1F469-1F466-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F466-200D-1F466" ], "name": "family (woman,woman,boy,boy)", "shortname": ":family_wwbb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "boy", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👦‍👦" }, "family_wwg": { "unicode": "1F469-1F469-1F467", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467" ], "name": "family (woman,woman,girl)", "shortname": ":family_wwg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mom", "mother", "parents", "child", "woman", "girl", "group", "unit", "gay", "lesbian", "homosexual", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧" }, "family_wwgb": { "unicode": "1F469-1F469-1F467-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467-200D-1F466" ], "name": "family (woman,woman,girl,boy)", "shortname": ":family_wwgb:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "girl", "boy", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧‍👦" }, "family_wwgg": { "unicode": "1F469-1F469-1F467-1F467", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467-200D-1F467" ], "name": "family (woman,woman,girl,girl)", "shortname": ":family_wwgg:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "girl", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧‍👧" }, "fast_forward": { "unicode": "23E9", "unicode_alternates": [], "name": "black right-pointing double triangle", "shortname": ":fast_forward:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "⏩" }, "fax": { "unicode": "1F4E0", "unicode_alternates": [], "name": "fax machine", "shortname": ":fax:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "technology", "electronics", "work", "office" ], "moji": "📠" }, "fearful": { "unicode": "1F628", "unicode_alternates": [], "name": "fearful face", "shortname": ":fearful:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "nervous", "oops", "scared", "terrified", "fear", "fearful", "frightened", "smiley", "surprised", "emotion" ], "moji": "😨" }, "feet": { "unicode": "1F43E", "unicode_alternates": [], "name": "paw prints", "shortname": ":feet:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cat", "dog", "footprints", "paw", "pet", "tracking", "prints", "mark", "imprints", "footsteps", "lion", "bear", "raccoon", "critter", "feet", "pawsteps" ], "moji": "🐾" }, "fencer": { "unicode": "1F93A", "unicode_alternates": [], "name": "fencer", "shortname": ":fencer:", "category": "activity", "aliases": [ ":fencing:" ], "aliases_ascii": [], "keywords": [], "moji": "🤺" }, "ferris_wheel": { "unicode": "1F3A1", "unicode_alternates": [], "name": "ferris wheel", "shortname": ":ferris_wheel:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "carnival", "londoneye", "photo", "farris", "wheel", "amusement", "park", "fair", "ride", "entertainment", "places", "vacation", "ferris wheel" ], "moji": "🎡" }, "ferry": { "unicode": "26F4", "unicode_alternates": [], "name": "ferry", "shortname": ":ferry:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "boat", "place", "travel", "transportation", "vacation" ], "moji": "⛴" }, "field_hockey": { "unicode": "1F3D1", "unicode_alternates": [], "name": "field hockey stick and ball", "shortname": ":field_hockey:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ball", "sport", "hockey" ], "moji": "🏑" }, "file_cabinet": { "unicode": "1F5C4", "unicode_alternates": [], "name": "file cabinet", "shortname": ":file_cabinet:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "folders", "office", "documents", "storage", "object", "work" ], "moji": "🗄" }, "file_folder": { "unicode": "1F4C1", "unicode_alternates": [], "name": "file folder", "shortname": ":file_folder:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "work", "office" ], "moji": "📁" }, "film_frames": { "unicode": "1F39E", "unicode_alternates": [], "name": "film frames", "shortname": ":film_frames:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "movie", "record", "8mm", "16mm", "reel", "celluloid", "object", "camera" ], "moji": "🎞" }, "fingers_crossed": { "unicode": "1F91E", "unicode_alternates": [], "name": "hand with first and index finger crossed", "shortname": ":fingers_crossed:", "category": "people", "aliases": [ ":hand_with_index_and_middle_finger_crossed:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞" }, "fingers_crossed_tone1": { "unicode": "1F91E-1F3FB", "unicode_alternates": [], "name": "hand with index and middle fingers crossed tone 1", "shortname": ":fingers_crossed_tone1:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞🏻" }, "fingers_crossed_tone2": { "unicode": "1F91E-1F3FC", "unicode_alternates": [], "name": "hand with index and middle fingers crossed tone 2", "shortname": ":fingers_crossed_tone2:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞🏼" }, "fingers_crossed_tone3": { "unicode": "1F91E-1F3FD", "unicode_alternates": [], "name": "hand with index and middle fingers crossed tone 3", "shortname": ":fingers_crossed_tone3:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞🏽" }, "fingers_crossed_tone4": { "unicode": "1F91E-1F3FE", "unicode_alternates": [], "name": "hand with index and middle fingers crossed tone 4", "shortname": ":fingers_crossed_tone4:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞🏾" }, "fingers_crossed_tone5": { "unicode": "1F91E-1F3FF", "unicode_alternates": [], "name": "hand with index and middle fingers crossed tone 5", "shortname": ":fingers_crossed_tone5:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤞🏿" }, "fire": { "unicode": "1F525", "unicode_alternates": [], "name": "fire", "shortname": ":fire:", "category": "nature", "aliases": [ ":flame:" ], "aliases_ascii": [], "keywords": [ "cook", "hot", "flame", "wth" ], "moji": "🔥" }, "fire_engine": { "unicode": "1F692", "unicode_alternates": [], "name": "fire engine", "shortname": ":fire_engine:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "transportation", "vehicle", "fire", "fighter", "engine", "truck", "emergency", "medical", "911" ], "moji": "🚒" }, "fireworks": { "unicode": "1F386", "unicode_alternates": [], "name": "fireworks", "shortname": ":fireworks:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "carnival", "congratulations", "festival", "photo", "fireworks", "independence", "celebration", "explosion", "july", "4th", "rocket", "sky", "idea", "excitement", "parties" ], "moji": "🎆" }, "first_place": { "unicode": "1F947", "unicode_alternates": [], "name": "first place medal", "shortname": ":first_place:", "category": "activity", "aliases": [ ":first_place_medal:" ], "aliases_ascii": [], "keywords": [], "moji": "🥇" }, "first_quarter_moon": { "unicode": "1F313", "unicode_alternates": [], "name": "first quarter moon symbol", "shortname": ":first_quarter_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "quarter", "first", "sky", "night", "cheese", "phase", "space" ], "moji": "🌓" }, "first_quarter_moon_with_face": { "unicode": "1F31B", "unicode_alternates": [], "name": "first quarter moon with face", "shortname": ":first_quarter_moon_with_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "first", "quarter", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space" ], "moji": "🌛" }, "fish": { "unicode": "1F41F", "unicode_alternates": [], "name": "fish", "shortname": ":fish:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "food", "nature", "wildlife" ], "moji": "🐟" }, "fish_cake": { "unicode": "1F365", "unicode_alternates": [], "name": "fish cake with swirl design", "shortname": ":fish_cake:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fish", "cake", "kamboko", "swirl", "ramen", "noodles", "naruto", "sushi" ], "moji": "🍥" }, "fishing_pole_and_fish": { "unicode": "1F3A3", "unicode_alternates": [], "name": "fishing pole and fish", "shortname": ":fishing_pole_and_fish:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "hobby", "fish", "fishing", "pole", "vacation", "sport" ], "moji": "🎣" }, "fist": { "unicode": "270A", "unicode_alternates": [], "name": "raised fist", "shortname": ":fist:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand", "body", "hands", "hi", "fist bump", "diversity", "condolence" ], "moji": "✊" }, "fist_tone1": { "unicode": "270A-1F3FB", "unicode_alternates": [], "name": "raised fist tone 1", "shortname": ":fist_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏻" }, "fist_tone2": { "unicode": "270A-1F3FC", "unicode_alternates": [], "name": "raised fist tone 2", "shortname": ":fist_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏼" }, "fist_tone3": { "unicode": "270A-1F3FD", "unicode_alternates": [], "name": "raised fist tone 3", "shortname": ":fist_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏽" }, "fist_tone4": { "unicode": "270A-1F3FE", "unicode_alternates": [], "name": "raised fist tone 4", "shortname": ":fist_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏾" }, "fist_tone5": { "unicode": "270A-1F3FF", "unicode_alternates": [], "name": "raised fist tone 5", "shortname": ":fist_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏿" }, "five": { "moji": "5️⃣", "unicode": "0035-20E3", "unicode_alternates": [ "0035-FE0F-20E3" ], "name": "keycap digit five", "shortname": ":five:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "flag_ac": { "unicode": "1F1E6-1F1E8", "unicode_alternates": [], "name": "ascension", "shortname": ":flag_ac:", "category": "flags", "aliases": [ ":ac:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ac", "flag" ], "moji": "🇦🇨" }, "flag_ad": { "unicode": "1F1E6-1F1E9", "unicode_alternates": [], "name": "andorra", "shortname": ":flag_ad:", "category": "flags", "aliases": [ ":ad:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ad", "flag" ], "moji": "🇦🇩" }, "flag_ae": { "unicode": "1F1E6-1F1EA", "unicode_alternates": [], "name": "the united arab emirates", "shortname": ":flag_ae:", "category": "flags", "aliases": [ ":ae:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ae", "flag" ], "moji": "🇦🇪" }, "flag_af": { "unicode": "1F1E6-1F1EB", "unicode_alternates": [], "name": "afghanistan", "shortname": ":flag_af:", "category": "flags", "aliases": [ ":af:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "afghanestan", "af", "flag" ], "moji": "🇦🇫" }, "flag_ag": { "unicode": "1F1E6-1F1EC", "unicode_alternates": [], "name": "antigua and barbuda", "shortname": ":flag_ag:", "category": "flags", "aliases": [ ":ag:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ag", "flag" ], "moji": "🇦🇬" }, "flag_ai": { "unicode": "1F1E6-1F1EE", "unicode_alternates": [], "name": "anguilla", "shortname": ":flag_ai:", "category": "flags", "aliases": [ ":ai:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ai", "flag" ], "moji": "🇦🇮" }, "flag_al": { "unicode": "1F1E6-1F1F1", "unicode_alternates": [], "name": "albania", "shortname": ":flag_al:", "category": "flags", "aliases": [ ":al:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "shqiperia", "al", "flag" ], "moji": "🇦🇱" }, "flag_am": { "unicode": "1F1E6-1F1F2", "unicode_alternates": [], "name": "armenia", "shortname": ":flag_am:", "category": "flags", "aliases": [ ":am:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "hayastan", "am", "flag" ], "moji": "🇦🇲" }, "flag_ao": { "unicode": "1F1E6-1F1F4", "unicode_alternates": [], "name": "angola", "shortname": ":flag_ao:", "category": "flags", "aliases": [ ":ao:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ao", "flag" ], "moji": "🇦🇴" }, "flag_aq": { "unicode": "1F1E6-1F1F6", "unicode_alternates": [], "name": "antarctica", "shortname": ":flag_aq:", "category": "flags", "aliases": [ ":aq:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇦🇶" }, "flag_ar": { "unicode": "1F1E6-1F1F7", "unicode_alternates": [], "name": "argentina", "shortname": ":flag_ar:", "category": "flags", "aliases": [ ":ar:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ar", "flag" ], "moji": "🇦🇷" }, "flag_as": { "unicode": "1F1E6-1F1F8", "unicode_alternates": [], "name": "american samoa", "shortname": ":flag_as:", "category": "flags", "aliases": [ ":as:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇦🇸" }, "flag_at": { "unicode": "1F1E6-1F1F9", "unicode_alternates": [], "name": "austria", "shortname": ":flag_at:", "category": "flags", "aliases": [ ":at:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "österreich", "osterreich", "at", "flag" ], "moji": "🇦🇹" }, "flag_au": { "unicode": "1F1E6-1F1FA", "unicode_alternates": [], "name": "australia", "shortname": ":flag_au:", "category": "flags", "aliases": [ ":au:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "au", "flag" ], "moji": "🇦🇺" }, "flag_aw": { "unicode": "1F1E6-1F1FC", "unicode_alternates": [], "name": "aruba", "shortname": ":flag_aw:", "category": "flags", "aliases": [ ":aw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "aw", "flag" ], "moji": "🇦🇼" }, "flag_ax": { "unicode": "1F1E6-1F1FD", "unicode_alternates": [], "name": "åland islands", "shortname": ":flag_ax:", "category": "flags", "aliases": [ ":ax:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇦🇽" }, "flag_az": { "unicode": "1F1E6-1F1FF", "unicode_alternates": [], "name": "azerbaijan", "shortname": ":flag_az:", "category": "flags", "aliases": [ ":az:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "azarbaycan", "az", "flag" ], "moji": "🇦🇿" }, "flag_ba": { "unicode": "1F1E7-1F1E6", "unicode_alternates": [], "name": "bosnia and herzegovina", "shortname": ":flag_ba:", "category": "flags", "aliases": [ ":ba:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bosna i hercegovina", "ba", "flag" ], "moji": "🇧🇦" }, "flag_bb": { "unicode": "1F1E7-1F1E7", "unicode_alternates": [], "name": "barbados", "shortname": ":flag_bb:", "category": "flags", "aliases": [ ":bb:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bb", "flag" ], "moji": "🇧🇧" }, "flag_bd": { "unicode": "1F1E7-1F1E9", "unicode_alternates": [], "name": "bangladesh", "shortname": ":flag_bd:", "category": "flags", "aliases": [ ":bd:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bd", "flag" ], "moji": "🇧🇩" }, "flag_be": { "unicode": "1F1E7-1F1EA", "unicode_alternates": [], "name": "belgium", "shortname": ":flag_be:", "category": "flags", "aliases": [ ":be:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "belgique", "belgie", "be", "flag" ], "moji": "🇧🇪" }, "flag_bf": { "unicode": "1F1E7-1F1EB", "unicode_alternates": [], "name": "burkina faso", "shortname": ":flag_bf:", "category": "flags", "aliases": [ ":bf:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bf", "flag" ], "moji": "🇧🇫" }, "flag_bg": { "unicode": "1F1E7-1F1EC", "unicode_alternates": [], "name": "bulgaria", "shortname": ":flag_bg:", "category": "flags", "aliases": [ ":bg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bg", "flag" ], "moji": "🇧🇬" }, "flag_bh": { "unicode": "1F1E7-1F1ED", "unicode_alternates": [], "name": "bahrain", "shortname": ":flag_bh:", "category": "flags", "aliases": [ ":bh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al bahrayn", "bh", "flag" ], "moji": "🇧🇭" }, "flag_bi": { "unicode": "1F1E7-1F1EE", "unicode_alternates": [], "name": "burundi", "shortname": ":flag_bi:", "category": "flags", "aliases": [ ":bi:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bi", "flag" ], "moji": "🇧🇮" }, "flag_bj": { "unicode": "1F1E7-1F1EF", "unicode_alternates": [], "name": "benin", "shortname": ":flag_bj:", "category": "flags", "aliases": [ ":bj:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bj", "flag" ], "moji": "🇧🇯" }, "flag_bl": { "unicode": "1F1E7-1F1F1", "unicode_alternates": [], "name": "saint barthélemy", "shortname": ":flag_bl:", "category": "flags", "aliases": [ ":bl:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇧🇱" }, "flag_black": { "unicode": "1F3F4", "unicode_alternates": [], "name": "waving black flag", "shortname": ":flag_black:", "category": "objects", "aliases": [ ":waving_black_flag:" ], "aliases_ascii": [], "keywords": [ "symbol", "signal", "object" ], "moji": "🏴" }, "flag_bm": { "unicode": "1F1E7-1F1F2", "unicode_alternates": [], "name": "bermuda", "shortname": ":flag_bm:", "category": "flags", "aliases": [ ":bm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bm", "flag" ], "moji": "🇧🇲" }, "flag_bn": { "unicode": "1F1E7-1F1F3", "unicode_alternates": [], "name": "brunei", "shortname": ":flag_bn:", "category": "flags", "aliases": [ ":bn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bn", "flag" ], "moji": "🇧🇳" }, "flag_bo": { "unicode": "1F1E7-1F1F4", "unicode_alternates": [], "name": "bolivia", "shortname": ":flag_bo:", "category": "flags", "aliases": [ ":bo:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bo", "flag" ], "moji": "🇧🇴" }, "flag_bq": { "unicode": "1F1E7-1F1F6", "unicode_alternates": [], "name": "caribbean netherlands", "shortname": ":flag_bq:", "category": "flags", "aliases": [ ":bq:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇧🇶" }, "flag_br": { "unicode": "1F1E7-1F1F7", "unicode_alternates": [], "name": "brazil", "shortname": ":flag_br:", "category": "flags", "aliases": [ ":br:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "brasil", "br", "flag" ], "moji": "🇧🇷" }, "flag_bs": { "unicode": "1F1E7-1F1F8", "unicode_alternates": [], "name": "the bahamas", "shortname": ":flag_bs:", "category": "flags", "aliases": [ ":bs:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bs", "flag" ], "moji": "🇧🇸" }, "flag_bt": { "unicode": "1F1E7-1F1F9", "unicode_alternates": [], "name": "bhutan", "shortname": ":flag_bt:", "category": "flags", "aliases": [ ":bt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bt", "flag" ], "moji": "🇧🇹" }, "flag_bv": { "unicode": "1F1E7-1F1FB", "unicode_alternates": [], "name": "bouvet island", "shortname": ":flag_bv:", "category": "flags", "aliases": [ ":bv:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇧🇻" }, "flag_bw": { "unicode": "1F1E7-1F1FC", "unicode_alternates": [], "name": "botswana", "shortname": ":flag_bw:", "category": "flags", "aliases": [ ":bw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bw", "flag" ], "moji": "🇧🇼" }, "flag_by": { "unicode": "1F1E7-1F1FE", "unicode_alternates": [], "name": "belarus", "shortname": ":flag_by:", "category": "flags", "aliases": [ ":by:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "byelarus", "by", "flag" ], "moji": "🇧🇾" }, "flag_bz": { "unicode": "1F1E7-1F1FF", "unicode_alternates": [], "name": "belize", "shortname": ":flag_bz:", "category": "flags", "aliases": [ ":bz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bz", "flag" ], "moji": "🇧🇿" }, "flag_ca": { "unicode": "1F1E8-1F1E6", "unicode_alternates": [], "name": "canada", "shortname": ":flag_ca:", "category": "flags", "aliases": [ ":ca:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ca", "flag" ], "moji": "🇨🇦" }, "flag_cc": { "unicode": "1F1E8-1F1E8", "unicode_alternates": [], "name": "cocos (keeling) islands", "shortname": ":flag_cc:", "category": "flags", "aliases": [ ":cc:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇨🇨" }, "flag_cd": { "unicode": "1F1E8-1F1E9", "unicode_alternates": [], "name": "the democratic republic of the congo", "shortname": ":flag_cd:", "category": "flags", "aliases": [ ":congo:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "république démocratique du congo", "republique democratique du congo", "cd", "flag" ], "moji": "🇨🇩" }, "flag_cf": { "unicode": "1F1E8-1F1EB", "unicode_alternates": [], "name": "central african republic", "shortname": ":flag_cf:", "category": "flags", "aliases": [ ":cf:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cf", "flag" ], "moji": "🇨🇫" }, "flag_cg": { "unicode": "1F1E8-1F1EC", "unicode_alternates": [], "name": "the republic of the congo", "shortname": ":flag_cg:", "category": "flags", "aliases": [ ":cg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cg", "flag" ], "moji": "🇨🇬" }, "flag_ch": { "unicode": "1F1E8-1F1ED", "unicode_alternates": [], "name": "switzerland", "shortname": ":flag_ch:", "category": "flags", "aliases": [ ":ch:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "swiss", "neutral", "flag" ], "moji": "🇨🇭" }, "flag_ci": { "unicode": "1F1E8-1F1EE", "unicode_alternates": [], "name": "cote d'ivoire", "shortname": ":flag_ci:", "category": "flags", "aliases": [ ":ci:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ci", "flag" ], "moji": "🇨🇮" }, "flag_ck": { "unicode": "1F1E8-1F1F0", "unicode_alternates": [], "name": "cook islands", "shortname": ":flag_ck:", "category": "flags", "aliases": [ ":ck:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇨🇰" }, "flag_cl": { "unicode": "1F1E8-1F1F1", "unicode_alternates": [], "name": "chile", "shortname": ":flag_cl:", "category": "flags", "aliases": [ ":chile:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cl", "flag" ], "moji": "🇨🇱" }, "flag_cm": { "unicode": "1F1E8-1F1F2", "unicode_alternates": [], "name": "cameroon", "shortname": ":flag_cm:", "category": "flags", "aliases": [ ":cm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cm", "flag" ], "moji": "🇨🇲" }, "flag_cn": { "unicode": "1F1E8-1F1F3", "unicode_alternates": [], "name": "china", "shortname": ":flag_cn:", "category": "flags", "aliases": [ ":cn:" ], "aliases_ascii": [], "keywords": [ "chinese", "prc", "zhong guo", "country", "nation", "cn", "flag" ], "moji": "🇨🇳" }, "flag_co": { "unicode": "1F1E8-1F1F4", "unicode_alternates": [], "name": "colombia", "shortname": ":flag_co:", "category": "flags", "aliases": [ ":co:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "co", "flag" ], "moji": "🇨🇴" }, "flag_cp": { "unicode": "1F1E8-1F1F5", "unicode_alternates": [], "name": "clipperton island", "shortname": ":flag_cp:", "category": "flags", "aliases": [ ":cp:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇨🇵" }, "flag_cr": { "unicode": "1F1E8-1F1F7", "unicode_alternates": [], "name": "costa rica", "shortname": ":flag_cr:", "category": "flags", "aliases": [ ":cr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cr", "flag" ], "moji": "🇨🇷" }, "flag_cu": { "unicode": "1F1E8-1F1FA", "unicode_alternates": [], "name": "cuba", "shortname": ":flag_cu:", "category": "flags", "aliases": [ ":cu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cu", "flag" ], "moji": "🇨🇺" }, "flag_cv": { "unicode": "1F1E8-1F1FB", "unicode_alternates": [], "name": "cape verde", "shortname": ":flag_cv:", "category": "flags", "aliases": [ ":cv:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "cabo verde", "cv", "flag" ], "moji": "🇨🇻" }, "flag_cw": { "unicode": "1F1E8-1F1FC", "unicode_alternates": [], "name": "curaçao", "shortname": ":flag_cw:", "category": "flags", "aliases": [ ":cw:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇨🇼" }, "flag_cx": { "unicode": "1F1E8-1F1FD", "unicode_alternates": [], "name": "christmas island", "shortname": ":flag_cx:", "category": "flags", "aliases": [ ":cx:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇨🇽" }, "flag_cy": { "unicode": "1F1E8-1F1FE", "unicode_alternates": [], "name": "cyprus", "shortname": ":flag_cy:", "category": "flags", "aliases": [ ":cy:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kibris", "kypros", "cy", "flag" ], "moji": "🇨🇾" }, "flag_cz": { "unicode": "1F1E8-1F1FF", "unicode_alternates": [], "name": "the czech republic", "shortname": ":flag_cz:", "category": "flags", "aliases": [ ":cz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ceska republika", "cz", "flag" ], "moji": "🇨🇿" }, "flag_de": { "unicode": "1F1E9-1F1EA", "unicode_alternates": [], "name": "germany", "shortname": ":flag_de:", "category": "flags", "aliases": [ ":de:" ], "aliases_ascii": [], "keywords": [ "german", "nation", "deutschland", "country", "de", "flag" ], "moji": "🇩🇪" }, "flag_dg": { "unicode": "1F1E9-1F1EC", "unicode_alternates": [], "name": "diego garcia", "shortname": ":flag_dg:", "category": "flags", "aliases": [ ":dg:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇩🇬" }, "flag_dj": { "unicode": "1F1E9-1F1EF", "unicode_alternates": [], "name": "djibouti", "shortname": ":flag_dj:", "category": "flags", "aliases": [ ":dj:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "dj", "flag" ], "moji": "🇩🇯" }, "flag_dk": { "unicode": "1F1E9-1F1F0", "unicode_alternates": [], "name": "denmark", "shortname": ":flag_dk:", "category": "flags", "aliases": [ ":dk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "danmark", "dk", "flag" ], "moji": "🇩🇰" }, "flag_dm": { "unicode": "1F1E9-1F1F2", "unicode_alternates": [], "name": "dominica", "shortname": ":flag_dm:", "category": "flags", "aliases": [ ":dm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "dm", "flag" ], "moji": "🇩🇲" }, "flag_do": { "unicode": "1F1E9-1F1F4", "unicode_alternates": [], "name": "the dominican republic", "shortname": ":flag_do:", "category": "flags", "aliases": [ ":do:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "do", "flag" ], "moji": "🇩🇴" }, "flag_dz": { "unicode": "1F1E9-1F1FF", "unicode_alternates": [], "name": "algeria", "shortname": ":flag_dz:", "category": "flags", "aliases": [ ":dz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al jaza'ir", "al jazair", "dz", "flag" ], "moji": "🇩🇿" }, "flag_ea": { "unicode": "1F1EA-1F1E6", "unicode_alternates": [], "name": "ceuta, melilla", "shortname": ":flag_ea:", "category": "flags", "aliases": [ ":ea:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇪🇦" }, "flag_ec": { "unicode": "1F1EA-1F1E8", "unicode_alternates": [], "name": "ecuador", "shortname": ":flag_ec:", "category": "flags", "aliases": [ ":ec:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ec", "flag" ], "moji": "🇪🇨" }, "flag_ee": { "unicode": "1F1EA-1F1EA", "unicode_alternates": [], "name": "estonia", "shortname": ":flag_ee:", "category": "flags", "aliases": [ ":ee:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "eesti vabariik", "ee", "flag" ], "moji": "🇪🇪" }, "flag_eg": { "unicode": "1F1EA-1F1EC", "unicode_alternates": [], "name": "egypt", "shortname": ":flag_eg:", "category": "flags", "aliases": [ ":eg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "misr", "eg", "flag" ], "moji": "🇪🇬" }, "flag_eh": { "unicode": "1F1EA-1F1ED", "unicode_alternates": [], "name": "western sahara", "shortname": ":flag_eh:", "category": "flags", "aliases": [ ":eh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "aṣ-Ṣaḥrā’ al-gharbīyah", "sahra", "gharbiyah", "eh", "flag" ], "moji": "🇪🇭" }, "flag_er": { "unicode": "1F1EA-1F1F7", "unicode_alternates": [], "name": "eritrea", "shortname": ":flag_er:", "category": "flags", "aliases": [ ":er:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "hagere ertra", "er", "flag" ], "moji": "🇪🇷" }, "flag_es": { "unicode": "1F1EA-1F1F8", "unicode_alternates": [], "name": "spain", "shortname": ":flag_es:", "category": "flags", "aliases": [ ":es:" ], "aliases_ascii": [], "keywords": [ "nation", "españa", "country", "espana", "es", "flag" ], "moji": "🇪🇸" }, "flag_et": { "unicode": "1F1EA-1F1F9", "unicode_alternates": [], "name": "ethiopia", "shortname": ":flag_et:", "category": "flags", "aliases": [ ":et:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ityop'iya", "ityopiya", "et", "flag" ], "moji": "🇪🇹" }, "flag_eu": { "unicode": "1F1EA-1F1FA", "unicode_alternates": [], "name": "european union", "shortname": ":flag_eu:", "category": "flags", "aliases": [ ":eu:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇪🇺" }, "flag_fi": { "unicode": "1F1EB-1F1EE", "unicode_alternates": [], "name": "finland", "shortname": ":flag_fi:", "category": "flags", "aliases": [ ":fi:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "suomen tasavalta", "fi", "flag" ], "moji": "🇫🇮" }, "flag_fj": { "unicode": "1F1EB-1F1EF", "unicode_alternates": [], "name": "fiji", "shortname": ":flag_fj:", "category": "flags", "aliases": [ ":fj:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "fj", "flag" ], "moji": "🇫🇯" }, "flag_fk": { "unicode": "1F1EB-1F1F0", "unicode_alternates": [], "name": "falkland islands", "shortname": ":flag_fk:", "category": "flags", "aliases": [ ":fk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "islas malvinas", "fk", "flag" ], "moji": "🇫🇰" }, "flag_fm": { "unicode": "1F1EB-1F1F2", "unicode_alternates": [], "name": "micronesia", "shortname": ":flag_fm:", "category": "flags", "aliases": [ ":fm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "fm", "flag" ], "moji": "🇫🇲" }, "flag_fo": { "unicode": "1F1EB-1F1F4", "unicode_alternates": [], "name": "faroe islands", "shortname": ":flag_fo:", "category": "flags", "aliases": [ ":fo:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "foroyar", "fo", "flag" ], "moji": "🇫🇴" }, "flag_fr": { "unicode": "1F1EB-1F1F7", "unicode_alternates": [], "name": "france", "shortname": ":flag_fr:", "category": "flags", "aliases": [ ":fr:" ], "aliases_ascii": [], "keywords": [ "french", "nation", "country", "fr", "flag" ], "moji": "🇫🇷" }, "flag_ga": { "unicode": "1F1EC-1F1E6", "unicode_alternates": [], "name": "gabon", "shortname": ":flag_ga:", "category": "flags", "aliases": [ ":ga:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ga", "flag" ], "moji": "🇬🇦" }, "flag_gb": { "unicode": "1F1EC-1F1E7", "unicode_alternates": [], "name": "great britain", "shortname": ":flag_gb:", "category": "flags", "aliases": [ ":gb:" ], "aliases_ascii": [], "keywords": [ "UK", "gb", "britsh", "nation", "united kingdom", "england", "country", "flag" ], "moji": "🇬🇧" }, "flag_gd": { "unicode": "1F1EC-1F1E9", "unicode_alternates": [], "name": "grenada", "shortname": ":flag_gd:", "category": "flags", "aliases": [ ":gd:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gd", "flag" ], "moji": "🇬🇩" }, "flag_ge": { "unicode": "1F1EC-1F1EA", "unicode_alternates": [], "name": "georgia", "shortname": ":flag_ge:", "category": "flags", "aliases": [ ":ge:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sak'art'velo", "sakartvelo", "ge", "flag" ], "moji": "🇬🇪" }, "flag_gf": { "unicode": "1F1EC-1F1EB", "unicode_alternates": [], "name": "french guiana", "shortname": ":flag_gf:", "category": "flags", "aliases": [ ":gf:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇬🇫" }, "flag_gg": { "unicode": "1F1EC-1F1EC", "unicode_alternates": [], "name": "guernsey", "shortname": ":flag_gg:", "category": "flags", "aliases": [ ":gg:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇬🇬" }, "flag_gh": { "unicode": "1F1EC-1F1ED", "unicode_alternates": [], "name": "ghana", "shortname": ":flag_gh:", "category": "flags", "aliases": [ ":gh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gh", "flag" ], "moji": "🇬🇭" }, "flag_gi": { "unicode": "1F1EC-1F1EE", "unicode_alternates": [], "name": "gibraltar", "shortname": ":flag_gi:", "category": "flags", "aliases": [ ":gi:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gi", "flag" ], "moji": "🇬🇮" }, "flag_gl": { "unicode": "1F1EC-1F1F1", "unicode_alternates": [], "name": "greenland", "shortname": ":flag_gl:", "category": "flags", "aliases": [ ":gl:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kalaallit nunaat", "gl", "flag" ], "moji": "🇬🇱" }, "flag_gm": { "unicode": "1F1EC-1F1F2", "unicode_alternates": [], "name": "the gambia", "shortname": ":flag_gm:", "category": "flags", "aliases": [ ":gm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gm", "flag" ], "moji": "🇬🇲" }, "flag_gn": { "unicode": "1F1EC-1F1F3", "unicode_alternates": [], "name": "guinea", "shortname": ":flag_gn:", "category": "flags", "aliases": [ ":gn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "guinee", "gn", "flag" ], "moji": "🇬🇳" }, "flag_gp": { "unicode": "1F1EC-1F1F5", "unicode_alternates": [], "name": "guadeloupe", "shortname": ":flag_gp:", "category": "flags", "aliases": [ ":gp:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇬🇵" }, "flag_gq": { "unicode": "1F1EC-1F1F6", "unicode_alternates": [], "name": "equatorial guinea", "shortname": ":flag_gq:", "category": "flags", "aliases": [ ":gq:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "guinea ecuatorial", "gq", "flag" ], "moji": "🇬🇶" }, "flag_gr": { "unicode": "1F1EC-1F1F7", "unicode_alternates": [], "name": "greece", "shortname": ":flag_gr:", "category": "flags", "aliases": [ ":gr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ellas", "ellada", "gr", "flag" ], "moji": "🇬🇷" }, "flag_gs": { "unicode": "1F1EC-1F1F8", "unicode_alternates": [], "name": "south georgia", "shortname": ":flag_gs:", "category": "flags", "aliases": [ ":gs:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇬🇸" }, "flag_gt": { "unicode": "1F1EC-1F1F9", "unicode_alternates": [], "name": "guatemala", "shortname": ":flag_gt:", "category": "flags", "aliases": [ ":gt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gt", "flag" ], "moji": "🇬🇹" }, "flag_gu": { "unicode": "1F1EC-1F1FA", "unicode_alternates": [], "name": "guam", "shortname": ":flag_gu:", "category": "flags", "aliases": [ ":gu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gu", "flag" ], "moji": "🇬🇺" }, "flag_gw": { "unicode": "1F1EC-1F1FC", "unicode_alternates": [], "name": "guinea-bissau", "shortname": ":flag_gw:", "category": "flags", "aliases": [ ":gw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "guine-bissau", "guine bissau", "gw", "flag" ], "moji": "🇬🇼" }, "flag_gy": { "unicode": "1F1EC-1F1FE", "unicode_alternates": [], "name": "guyana", "shortname": ":flag_gy:", "category": "flags", "aliases": [ ":gy:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "gy", "flag" ], "moji": "🇬🇾" }, "flag_hk": { "unicode": "1F1ED-1F1F0", "unicode_alternates": [], "name": "hong kong", "shortname": ":flag_hk:", "category": "flags", "aliases": [ ":hk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "xianggang", "hk", "flag" ], "moji": "🇭🇰" }, "flag_hm": { "unicode": "1F1ED-1F1F2", "unicode_alternates": [], "name": "heard island and mcdonald islands", "shortname": ":flag_hm:", "category": "flags", "aliases": [ ":hm:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇭🇲" }, "flag_hn": { "unicode": "1F1ED-1F1F3", "unicode_alternates": [], "name": "honduras", "shortname": ":flag_hn:", "category": "flags", "aliases": [ ":hn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "hn", "flag" ], "moji": "🇭🇳" }, "flag_hr": { "unicode": "1F1ED-1F1F7", "unicode_alternates": [], "name": "croatia", "shortname": ":flag_hr:", "category": "flags", "aliases": [ ":hr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "hrvatska", "hr", "flag" ], "moji": "🇭🇷" }, "flag_ht": { "unicode": "1F1ED-1F1F9", "unicode_alternates": [], "name": "haiti", "shortname": ":flag_ht:", "category": "flags", "aliases": [ ":ht:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ht", "flag" ], "moji": "🇭🇹" }, "flag_hu": { "unicode": "1F1ED-1F1FA", "unicode_alternates": [], "name": "hungary", "shortname": ":flag_hu:", "category": "flags", "aliases": [ ":hu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "magyarorszag", "hu", "flag" ], "moji": "🇭🇺" }, "flag_ic": { "unicode": "1F1EE-1F1E8", "unicode_alternates": [], "name": "canary islands", "shortname": ":flag_ic:", "category": "flags", "aliases": [ ":ic:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇮🇨" }, "flag_id": { "unicode": "1F1EE-1F1E9", "unicode_alternates": [], "name": "indonesia", "shortname": ":flag_id:", "category": "flags", "aliases": [ ":indonesia:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "id", "flag" ], "moji": "🇮🇩" }, "flag_ie": { "unicode": "1F1EE-1F1EA", "unicode_alternates": [], "name": "ireland", "shortname": ":flag_ie:", "category": "flags", "aliases": [ ":ie:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "éire", "eire", "ie", "flag" ], "moji": "🇮🇪" }, "flag_il": { "unicode": "1F1EE-1F1F1", "unicode_alternates": [], "name": "israel", "shortname": ":flag_il:", "category": "flags", "aliases": [ ":il:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "yisra'el", "yisrael", "il", "jew", "flag" ], "moji": "🇮🇱" }, "flag_im": { "unicode": "1F1EE-1F1F2", "unicode_alternates": [], "name": "isle of man", "shortname": ":flag_im:", "category": "flags", "aliases": [ ":im:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇮🇲" }, "flag_in": { "unicode": "1F1EE-1F1F3", "unicode_alternates": [], "name": "india", "shortname": ":flag_in:", "category": "flags", "aliases": [ ":in:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "bharat", "in", "flag" ], "moji": "🇮🇳" }, "flag_io": { "unicode": "1F1EE-1F1F4", "unicode_alternates": [], "name": "british indian ocean territory", "shortname": ":flag_io:", "category": "flags", "aliases": [ ":io:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇮🇴" }, "flag_iq": { "unicode": "1F1EE-1F1F6", "unicode_alternates": [], "name": "iraq", "shortname": ":flag_iq:", "category": "flags", "aliases": [ ":iq:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "iq", "flag" ], "moji": "🇮🇶" }, "flag_ir": { "unicode": "1F1EE-1F1F7", "unicode_alternates": [], "name": "iran", "shortname": ":flag_ir:", "category": "flags", "aliases": [ ":ir:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ir", "flag" ], "moji": "🇮🇷" }, "flag_is": { "unicode": "1F1EE-1F1F8", "unicode_alternates": [], "name": "iceland", "shortname": ":flag_is:", "category": "flags", "aliases": [ ":is:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lyoveldio island", "is", "flag" ], "moji": "🇮🇸" }, "flag_it": { "unicode": "1F1EE-1F1F9", "unicode_alternates": [], "name": "italy", "shortname": ":flag_it:", "category": "flags", "aliases": [ ":it:" ], "aliases_ascii": [], "keywords": [ "italia", "country", "nation", "it", "italian", "flag" ], "moji": "🇮🇹" }, "flag_je": { "unicode": "1F1EF-1F1EA", "unicode_alternates": [], "name": "jersey", "shortname": ":flag_je:", "category": "flags", "aliases": [ ":je:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "je", "flag" ], "moji": "🇯🇪" }, "flag_jm": { "unicode": "1F1EF-1F1F2", "unicode_alternates": [], "name": "jamaica", "shortname": ":flag_jm:", "category": "flags", "aliases": [ ":jm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "jm", "flag" ], "moji": "🇯🇲" }, "flag_jo": { "unicode": "1F1EF-1F1F4", "unicode_alternates": [], "name": "jordan", "shortname": ":flag_jo:", "category": "flags", "aliases": [ ":jo:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al urdun", "jo", "flag" ], "moji": "🇯🇴" }, "flag_jp": { "unicode": "1F1EF-1F1F5", "unicode_alternates": [], "name": "japan", "shortname": ":flag_jp:", "category": "flags", "aliases": [ ":jp:" ], "aliases_ascii": [], "keywords": [ "nation", "nippon", "country", "jp", "japan", "flag" ], "moji": "🇯🇵" }, "flag_ke": { "unicode": "1F1F0-1F1EA", "unicode_alternates": [], "name": "kenya", "shortname": ":flag_ke:", "category": "flags", "aliases": [ ":ke:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ke", "flag" ], "moji": "🇰🇪" }, "flag_kg": { "unicode": "1F1F0-1F1EC", "unicode_alternates": [], "name": "kyrgyzstan", "shortname": ":flag_kg:", "category": "flags", "aliases": [ ":kg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kyrgyz respublikasy", "kg", "flag" ], "moji": "🇰🇬" }, "flag_kh": { "unicode": "1F1F0-1F1ED", "unicode_alternates": [], "name": "cambodia", "shortname": ":flag_kh:", "category": "flags", "aliases": [ ":kh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kampuchea", "kh", "flag" ], "moji": "🇰🇭" }, "flag_ki": { "unicode": "1F1F0-1F1EE", "unicode_alternates": [], "name": "kiribati", "shortname": ":flag_ki:", "category": "flags", "aliases": [ ":ki:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kiribati", "kiribas", "ki", "flag" ], "moji": "🇰🇮" }, "flag_km": { "unicode": "1F1F0-1F1F2", "unicode_alternates": [], "name": "the comoros", "shortname": ":flag_km:", "category": "flags", "aliases": [ ":km:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "km", "flag" ], "moji": "🇰🇲" }, "flag_kn": { "unicode": "1F1F0-1F1F3", "unicode_alternates": [], "name": "saint kitts and nevis", "shortname": ":flag_kn:", "category": "flags", "aliases": [ ":kn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kn", "flag" ], "moji": "🇰🇳" }, "flag_kp": { "unicode": "1F1F0-1F1F5", "unicode_alternates": [], "name": "north korea", "shortname": ":flag_kp:", "category": "flags", "aliases": [ ":kp:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "kp", "flag" ], "moji": "🇰🇵" }, "flag_kr": { "unicode": "1F1F0-1F1F7", "unicode_alternates": [], "name": "korea", "shortname": ":flag_kr:", "category": "flags", "aliases": [ ":kr:" ], "aliases_ascii": [], "keywords": [ "nation", "country", "south korea", "kr", "flag" ], "moji": "🇰🇷" }, "flag_kw": { "unicode": "1F1F0-1F1FC", "unicode_alternates": [], "name": "kuwait", "shortname": ":flag_kw:", "category": "flags", "aliases": [ ":kw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al kuwayt", "kw", "flag" ], "moji": "🇰🇼" }, "flag_ky": { "unicode": "1F1F0-1F1FE", "unicode_alternates": [], "name": "cayman islands", "shortname": ":flag_ky:", "category": "flags", "aliases": [ ":ky:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ky", "flag" ], "moji": "🇰🇾" }, "flag_kz": { "unicode": "1F1F0-1F1FF", "unicode_alternates": [], "name": "kazakhstan", "shortname": ":flag_kz:", "category": "flags", "aliases": [ ":kz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "qazaqstan", "kz", "flag" ], "moji": "🇰🇿" }, "flag_la": { "unicode": "1F1F1-1F1E6", "unicode_alternates": [], "name": "laos", "shortname": ":flag_la:", "category": "flags", "aliases": [ ":la:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "la", "flag" ], "moji": "🇱🇦" }, "flag_lb": { "unicode": "1F1F1-1F1E7", "unicode_alternates": [], "name": "lebanon", "shortname": ":flag_lb:", "category": "flags", "aliases": [ ":lb:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lubnan", "lb", "flag" ], "moji": "🇱🇧" }, "flag_lc": { "unicode": "1F1F1-1F1E8", "unicode_alternates": [], "name": "saint lucia", "shortname": ":flag_lc:", "category": "flags", "aliases": [ ":lc:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lc", "flag" ], "moji": "🇱🇨" }, "flag_li": { "unicode": "1F1F1-1F1EE", "unicode_alternates": [], "name": "liechtenstein", "shortname": ":flag_li:", "category": "flags", "aliases": [ ":li:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "li", "flag" ], "moji": "🇱🇮" }, "flag_lk": { "unicode": "1F1F1-1F1F0", "unicode_alternates": [], "name": "sri lanka", "shortname": ":flag_lk:", "category": "flags", "aliases": [ ":lk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lk", "flag" ], "moji": "🇱🇰" }, "flag_lr": { "unicode": "1F1F1-1F1F7", "unicode_alternates": [], "name": "liberia", "shortname": ":flag_lr:", "category": "flags", "aliases": [ ":lr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lr", "flag" ], "moji": "🇱🇷" }, "flag_ls": { "unicode": "1F1F1-1F1F8", "unicode_alternates": [], "name": "lesotho", "shortname": ":flag_ls:", "category": "flags", "aliases": [ ":ls:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ls", "flag" ], "moji": "🇱🇸" }, "flag_lt": { "unicode": "1F1F1-1F1F9", "unicode_alternates": [], "name": "lithuania", "shortname": ":flag_lt:", "category": "flags", "aliases": [ ":lt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "lietuva", "lt", "flag" ], "moji": "🇱🇹" }, "flag_lu": { "unicode": "1F1F1-1F1FA", "unicode_alternates": [], "name": "luxembourg", "shortname": ":flag_lu:", "category": "flags", "aliases": [ ":lu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "luxembourg", "letzebuerg", "lu", "flag" ], "moji": "🇱🇺" }, "flag_lv": { "unicode": "1F1F1-1F1FB", "unicode_alternates": [], "name": "latvia", "shortname": ":flag_lv:", "category": "flags", "aliases": [ ":lv:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "latvija", "lv", "flag" ], "moji": "🇱🇻" }, "flag_ly": { "unicode": "1F1F1-1F1FE", "unicode_alternates": [], "name": "libya", "shortname": ":flag_ly:", "category": "flags", "aliases": [ ":ly:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "libiyah", "ly", "flag" ], "moji": "🇱🇾" }, "flag_ma": { "unicode": "1F1F2-1F1E6", "unicode_alternates": [], "name": "morocco", "shortname": ":flag_ma:", "category": "flags", "aliases": [ ":ma:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al maghrib", "ma", "flag" ], "moji": "🇲🇦" }, "flag_mc": { "unicode": "1F1F2-1F1E8", "unicode_alternates": [], "name": "monaco", "shortname": ":flag_mc:", "category": "flags", "aliases": [ ":mc:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mc", "flag" ], "moji": "🇲🇨" }, "flag_md": { "unicode": "1F1F2-1F1E9", "unicode_alternates": [], "name": "moldova", "shortname": ":flag_md:", "category": "flags", "aliases": [ ":md:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "md", "flag" ], "moji": "🇲🇩" }, "flag_me": { "unicode": "1F1F2-1F1EA", "unicode_alternates": [], "name": "montenegro", "shortname": ":flag_me:", "category": "flags", "aliases": [ ":me:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "crna gora", "me", "flag" ], "moji": "🇲🇪" }, "flag_mf": { "unicode": "1F1F2-1F1EB", "unicode_alternates": [], "name": "saint martin", "shortname": ":flag_mf:", "category": "flags", "aliases": [ ":mf:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇲🇫" }, "flag_mg": { "unicode": "1F1F2-1F1EC", "unicode_alternates": [], "name": "madagascar", "shortname": ":flag_mg:", "category": "flags", "aliases": [ ":mg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mg", "flag" ], "moji": "🇲🇬" }, "flag_mh": { "unicode": "1F1F2-1F1ED", "unicode_alternates": [], "name": "the marshall islands", "shortname": ":flag_mh:", "category": "flags", "aliases": [ ":mh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mh", "flag" ], "moji": "🇲🇭" }, "flag_mk": { "unicode": "1F1F2-1F1F0", "unicode_alternates": [], "name": "macedonia", "shortname": ":flag_mk:", "category": "flags", "aliases": [ ":mk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mk", "flag" ], "moji": "🇲🇰" }, "flag_ml": { "unicode": "1F1F2-1F1F1", "unicode_alternates": [], "name": "mali", "shortname": ":flag_ml:", "category": "flags", "aliases": [ ":ml:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ml", "flag" ], "moji": "🇲🇱" }, "flag_mm": { "unicode": "1F1F2-1F1F2", "unicode_alternates": [], "name": "myanmar", "shortname": ":flag_mm:", "category": "flags", "aliases": [ ":mm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "myanma naingngandaw", "mm", "flag" ], "moji": "🇲🇲" }, "flag_mn": { "unicode": "1F1F2-1F1F3", "unicode_alternates": [], "name": "mongolia", "shortname": ":flag_mn:", "category": "flags", "aliases": [ ":mn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mongol uls", "mn", "flag" ], "moji": "🇲🇳" }, "flag_mo": { "unicode": "1F1F2-1F1F4", "unicode_alternates": [], "name": "macau", "shortname": ":flag_mo:", "category": "flags", "aliases": [ ":mo:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "aomen", "mo", "flag" ], "moji": "🇲🇴" }, "flag_mp": { "unicode": "1F1F2-1F1F5", "unicode_alternates": [], "name": "northern mariana islands", "shortname": ":flag_mp:", "category": "flags", "aliases": [ ":mp:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇲🇵" }, "flag_mq": { "unicode": "1F1F2-1F1F6", "unicode_alternates": [], "name": "martinique", "shortname": ":flag_mq:", "category": "flags", "aliases": [ ":mq:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇲🇶" }, "flag_mr": { "unicode": "1F1F2-1F1F7", "unicode_alternates": [], "name": "mauritania", "shortname": ":flag_mr:", "category": "flags", "aliases": [ ":mr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "muritaniyah", "mr", "flag" ], "moji": "🇲🇷" }, "flag_ms": { "unicode": "1F1F2-1F1F8", "unicode_alternates": [], "name": "montserrat", "shortname": ":flag_ms:", "category": "flags", "aliases": [ ":ms:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ms", "flag" ], "moji": "🇲🇸" }, "flag_mt": { "unicode": "1F1F2-1F1F9", "unicode_alternates": [], "name": "malta", "shortname": ":flag_mt:", "category": "flags", "aliases": [ ":mt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mt", "flag" ], "moji": "🇲🇹" }, "flag_mu": { "unicode": "1F1F2-1F1FA", "unicode_alternates": [], "name": "mauritius", "shortname": ":flag_mu:", "category": "flags", "aliases": [ ":mu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mu", "flag" ], "moji": "🇲🇺" }, "flag_mv": { "unicode": "1F1F2-1F1FB", "unicode_alternates": [], "name": "maldives", "shortname": ":flag_mv:", "category": "flags", "aliases": [ ":mv:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "dhivehi raajje", "mv", "flag" ], "moji": "🇲🇻" }, "flag_mw": { "unicode": "1F1F2-1F1FC", "unicode_alternates": [], "name": "malawi", "shortname": ":flag_mw:", "category": "flags", "aliases": [ ":mw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mw", "flag" ], "moji": "🇲🇼" }, "flag_mx": { "unicode": "1F1F2-1F1FD", "unicode_alternates": [], "name": "mexico", "shortname": ":flag_mx:", "category": "flags", "aliases": [ ":mx:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mx", "mexican", "flag" ], "moji": "🇲🇽" }, "flag_my": { "unicode": "1F1F2-1F1FE", "unicode_alternates": [], "name": "malaysia", "shortname": ":flag_my:", "category": "flags", "aliases": [ ":my:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "my", "flag" ], "moji": "🇲🇾" }, "flag_mz": { "unicode": "1F1F2-1F1FF", "unicode_alternates": [], "name": "mozambique", "shortname": ":flag_mz:", "category": "flags", "aliases": [ ":mz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "mocambique", "mz", "flag" ], "moji": "🇲🇿" }, "flag_na": { "unicode": "1F1F3-1F1E6", "unicode_alternates": [], "name": "namibia", "shortname": ":flag_na:", "category": "flags", "aliases": [ ":na:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "na", "flag" ], "moji": "🇳🇦" }, "flag_nc": { "unicode": "1F1F3-1F1E8", "unicode_alternates": [], "name": "new caledonia", "shortname": ":flag_nc:", "category": "flags", "aliases": [ ":nc:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "nouvelle", "calédonie", "caledonie", "nc", "flag" ], "moji": "🇳🇨" }, "flag_ne": { "unicode": "1F1F3-1F1EA", "unicode_alternates": [], "name": "niger", "shortname": ":flag_ne:", "category": "flags", "aliases": [ ":ne:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ne", "flag" ], "moji": "🇳🇪" }, "flag_nf": { "unicode": "1F1F3-1F1EB", "unicode_alternates": [], "name": "norfolk island", "shortname": ":flag_nf:", "category": "flags", "aliases": [ ":nf:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇳🇫" }, "flag_ng": { "unicode": "1F1F3-1F1EC", "unicode_alternates": [], "name": "nigeria", "shortname": ":flag_ng:", "category": "flags", "aliases": [ ":nigeria:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ng", "flag" ], "moji": "🇳🇬" }, "flag_ni": { "unicode": "1F1F3-1F1EE", "unicode_alternates": [], "name": "nicaragua", "shortname": ":flag_ni:", "category": "flags", "aliases": [ ":ni:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ni", "flag" ], "moji": "🇳🇮" }, "flag_nl": { "unicode": "1F1F3-1F1F1", "unicode_alternates": [], "name": "the netherlands", "shortname": ":flag_nl:", "category": "flags", "aliases": [ ":nl:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "nederland", "holland", "nl", "flag" ], "moji": "🇳🇱" }, "flag_no": { "unicode": "1F1F3-1F1F4", "unicode_alternates": [], "name": "norway", "shortname": ":flag_no:", "category": "flags", "aliases": [ ":no:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "norge", "no", "flag" ], "moji": "🇳🇴" }, "flag_np": { "unicode": "1F1F3-1F1F5", "unicode_alternates": [], "name": "nepal", "shortname": ":flag_np:", "category": "flags", "aliases": [ ":np:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "np", "flag" ], "moji": "🇳🇵" }, "flag_nr": { "unicode": "1F1F3-1F1F7", "unicode_alternates": [], "name": "nauru", "shortname": ":flag_nr:", "category": "flags", "aliases": [ ":nr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "nr", "flag" ], "moji": "🇳🇷" }, "flag_nu": { "unicode": "1F1F3-1F1FA", "unicode_alternates": [], "name": "niue", "shortname": ":flag_nu:", "category": "flags", "aliases": [ ":nu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "nu", "flag" ], "moji": "🇳🇺" }, "flag_nz": { "unicode": "1F1F3-1F1FF", "unicode_alternates": [], "name": "new zealand", "shortname": ":flag_nz:", "category": "flags", "aliases": [ ":nz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "aotearoa", "nz", "flag" ], "moji": "🇳🇿" }, "flag_om": { "unicode": "1F1F4-1F1F2", "unicode_alternates": [], "name": "oman", "shortname": ":flag_om:", "category": "flags", "aliases": [ ":om:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "saltanat uman", "om", "flag" ], "moji": "🇴🇲" }, "flag_pa": { "unicode": "1F1F5-1F1E6", "unicode_alternates": [], "name": "panama", "shortname": ":flag_pa:", "category": "flags", "aliases": [ ":pa:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pa", "flag" ], "moji": "🇵🇦" }, "flag_pe": { "unicode": "1F1F5-1F1EA", "unicode_alternates": [], "name": "peru", "shortname": ":flag_pe:", "category": "flags", "aliases": [ ":pe:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pe", "flag" ], "moji": "🇵🇪" }, "flag_pf": { "unicode": "1F1F5-1F1EB", "unicode_alternates": [], "name": "french polynesia", "shortname": ":flag_pf:", "category": "flags", "aliases": [ ":pf:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "polynésie française", "polynesie francaise", "pf", "flag" ], "moji": "🇵🇫" }, "flag_pg": { "unicode": "1F1F5-1F1EC", "unicode_alternates": [], "name": "papua new guinea", "shortname": ":flag_pg:", "category": "flags", "aliases": [ ":pg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "papua niu gini", "pg", "flag" ], "moji": "🇵🇬" }, "flag_ph": { "unicode": "1F1F5-1F1ED", "unicode_alternates": [], "name": "the philippines", "shortname": ":flag_ph:", "category": "flags", "aliases": [ ":ph:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pilipinas", "ph", "flag" ], "moji": "🇵🇭" }, "flag_pk": { "unicode": "1F1F5-1F1F0", "unicode_alternates": [], "name": "pakistan", "shortname": ":flag_pk:", "category": "flags", "aliases": [ ":pk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pk", "flag" ], "moji": "🇵🇰" }, "flag_pl": { "unicode": "1F1F5-1F1F1", "unicode_alternates": [], "name": "poland", "shortname": ":flag_pl:", "category": "flags", "aliases": [ ":pl:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "polska", "pl", "flag" ], "moji": "🇵🇱" }, "flag_pm": { "unicode": "1F1F5-1F1F2", "unicode_alternates": [], "name": "saint pierre and miquelon", "shortname": ":flag_pm:", "category": "flags", "aliases": [ ":pm:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇵🇲" }, "flag_pn": { "unicode": "1F1F5-1F1F3", "unicode_alternates": [], "name": "pitcairn", "shortname": ":flag_pn:", "category": "flags", "aliases": [ ":pn:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇵🇳" }, "flag_pr": { "unicode": "1F1F5-1F1F7", "unicode_alternates": [], "name": "puerto rico", "shortname": ":flag_pr:", "category": "flags", "aliases": [ ":pr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pr", "flag" ], "moji": "🇵🇷" }, "flag_ps": { "unicode": "1F1F5-1F1F8", "unicode_alternates": [], "name": "palestinian authority", "shortname": ":flag_ps:", "category": "flags", "aliases": [ ":ps:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ps", "flag" ], "moji": "🇵🇸" }, "flag_pt": { "unicode": "1F1F5-1F1F9", "unicode_alternates": [], "name": "portugal", "shortname": ":flag_pt:", "category": "flags", "aliases": [ ":pt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "pt", "flag" ], "moji": "🇵🇹" }, "flag_pw": { "unicode": "1F1F5-1F1FC", "unicode_alternates": [], "name": "palau", "shortname": ":flag_pw:", "category": "flags", "aliases": [ ":pw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "belau", "pw", "flag" ], "moji": "🇵🇼" }, "flag_py": { "unicode": "1F1F5-1F1FE", "unicode_alternates": [], "name": "paraguay", "shortname": ":flag_py:", "category": "flags", "aliases": [ ":py:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "py", "flag" ], "moji": "🇵🇾" }, "flag_qa": { "unicode": "1F1F6-1F1E6", "unicode_alternates": [], "name": "qatar", "shortname": ":flag_qa:", "category": "flags", "aliases": [ ":qa:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "dawlat qatar", "qa", "flag" ], "moji": "🇶🇦" }, "flag_re": { "unicode": "1F1F7-1F1EA", "unicode_alternates": [], "name": "réunion", "shortname": ":flag_re:", "category": "flags", "aliases": [ ":re:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇷🇪" }, "flag_ro": { "unicode": "1F1F7-1F1F4", "unicode_alternates": [], "name": "romania", "shortname": ":flag_ro:", "category": "flags", "aliases": [ ":ro:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ro", "flag" ], "moji": "🇷🇴" }, "flag_rs": { "unicode": "1F1F7-1F1F8", "unicode_alternates": [], "name": "serbia", "shortname": ":flag_rs:", "category": "flags", "aliases": [ ":rs:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "srbija", "rs", "flag" ], "moji": "🇷🇸" }, "flag_ru": { "unicode": "1F1F7-1F1FA", "unicode_alternates": [], "name": "russia", "shortname": ":flag_ru:", "category": "flags", "aliases": [ ":ru:" ], "aliases_ascii": [], "keywords": [ "nation", "russian", "country", "ru", "flag" ], "moji": "🇷🇺" }, "flag_rw": { "unicode": "1F1F7-1F1FC", "unicode_alternates": [], "name": "rwanda", "shortname": ":flag_rw:", "category": "flags", "aliases": [ ":rw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "rw", "flag" ], "moji": "🇷🇼" }, "flag_sa": { "unicode": "1F1F8-1F1E6", "unicode_alternates": [], "name": "saudi arabia", "shortname": ":flag_sa:", "category": "flags", "aliases": [ ":saudiarabia:", ":saudi:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al arabiyah as suudiyah", "sa", "flag" ], "moji": "🇸🇦" }, "flag_sb": { "unicode": "1F1F8-1F1E7", "unicode_alternates": [], "name": "the solomon islands", "shortname": ":flag_sb:", "category": "flags", "aliases": [ ":sb:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sb", "flag" ], "moji": "🇸🇧" }, "flag_sc": { "unicode": "1F1F8-1F1E8", "unicode_alternates": [], "name": "the seychelles", "shortname": ":flag_sc:", "category": "flags", "aliases": [ ":sc:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "seychelles", "sc", "flag" ], "moji": "🇸🇨" }, "flag_sd": { "unicode": "1F1F8-1F1E9", "unicode_alternates": [], "name": "sudan", "shortname": ":flag_sd:", "category": "flags", "aliases": [ ":sd:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "as-sudan", "sd", "flag" ], "moji": "🇸🇩" }, "flag_se": { "unicode": "1F1F8-1F1EA", "unicode_alternates": [], "name": "sweden", "shortname": ":flag_se:", "category": "flags", "aliases": [ ":se:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sverige", "se", "flag" ], "moji": "🇸🇪" }, "flag_sg": { "unicode": "1F1F8-1F1EC", "unicode_alternates": [], "name": "singapore", "shortname": ":flag_sg:", "category": "flags", "aliases": [ ":sg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sg", "flag" ], "moji": "🇸🇬" }, "flag_sh": { "unicode": "1F1F8-1F1ED", "unicode_alternates": [], "name": "saint helena", "shortname": ":flag_sh:", "category": "flags", "aliases": [ ":sh:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sh", "flag" ], "moji": "🇸🇭" }, "flag_si": { "unicode": "1F1F8-1F1EE", "unicode_alternates": [], "name": "slovenia", "shortname": ":flag_si:", "category": "flags", "aliases": [ ":si:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "slovenija", "si", "flag" ], "moji": "🇸🇮" }, "flag_sj": { "unicode": "1F1F8-1F1EF", "unicode_alternates": [], "name": "svalbard and jan mayen", "shortname": ":flag_sj:", "category": "flags", "aliases": [ ":sj:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇸🇯" }, "flag_sk": { "unicode": "1F1F8-1F1F0", "unicode_alternates": [], "name": "slovakia", "shortname": ":flag_sk:", "category": "flags", "aliases": [ ":sk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sk", "flag" ], "moji": "🇸🇰" }, "flag_sl": { "unicode": "1F1F8-1F1F1", "unicode_alternates": [], "name": "sierra leone", "shortname": ":flag_sl:", "category": "flags", "aliases": [ ":sl:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sl", "flag" ], "moji": "🇸🇱" }, "flag_sm": { "unicode": "1F1F8-1F1F2", "unicode_alternates": [], "name": "san marino", "shortname": ":flag_sm:", "category": "flags", "aliases": [ ":sm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sm", "flag" ], "moji": "🇸🇲" }, "flag_sn": { "unicode": "1F1F8-1F1F3", "unicode_alternates": [], "name": "senegal", "shortname": ":flag_sn:", "category": "flags", "aliases": [ ":sn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sn", "flag" ], "moji": "🇸🇳" }, "flag_so": { "unicode": "1F1F8-1F1F4", "unicode_alternates": [], "name": "somalia", "shortname": ":flag_so:", "category": "flags", "aliases": [ ":so:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "so", "flag" ], "moji": "🇸🇴" }, "flag_sr": { "unicode": "1F1F8-1F1F7", "unicode_alternates": [], "name": "suriname", "shortname": ":flag_sr:", "category": "flags", "aliases": [ ":sr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sr", "flag" ], "moji": "🇸🇷" }, "flag_ss": { "unicode": "1F1F8-1F1F8", "unicode_alternates": [], "name": "south sudan", "shortname": ":flag_ss:", "category": "flags", "aliases": [ ":ss:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇸🇸" }, "flag_st": { "unicode": "1F1F8-1F1F9", "unicode_alternates": [], "name": "sao tome and principe", "shortname": ":flag_st:", "category": "flags", "aliases": [ ":st:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sao tome e principe", "st", "flag" ], "moji": "🇸🇹" }, "flag_sv": { "unicode": "1F1F8-1F1FB", "unicode_alternates": [], "name": "el salvador", "shortname": ":flag_sv:", "category": "flags", "aliases": [ ":sv:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sv", "flag" ], "moji": "🇸🇻" }, "flag_sx": { "unicode": "1F1F8-1F1FD", "unicode_alternates": [], "name": "sint maarten", "shortname": ":flag_sx:", "category": "flags", "aliases": [ ":sx:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇸🇽" }, "flag_sy": { "unicode": "1F1F8-1F1FE", "unicode_alternates": [], "name": "syria", "shortname": ":flag_sy:", "category": "flags", "aliases": [ ":sy:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sy", "flag" ], "moji": "🇸🇾" }, "flag_sz": { "unicode": "1F1F8-1F1FF", "unicode_alternates": [], "name": "swaziland", "shortname": ":flag_sz:", "category": "flags", "aliases": [ ":sz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "sz", "flag" ], "moji": "🇸🇿" }, "flag_ta": { "unicode": "1F1F9-1F1E6", "unicode_alternates": [], "name": "tristan da cunha", "shortname": ":flag_ta:", "category": "flags", "aliases": [ ":ta:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇹🇦" }, "flag_tc": { "unicode": "1F1F9-1F1E8", "unicode_alternates": [], "name": "turks and caicos islands", "shortname": ":flag_tc:", "category": "flags", "aliases": [ ":tc:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇹🇨" }, "flag_td": { "unicode": "1F1F9-1F1E9", "unicode_alternates": [], "name": "chad", "shortname": ":flag_td:", "category": "flags", "aliases": [ ":td:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tchad", "td", "flag" ], "moji": "🇹🇩" }, "flag_tf": { "unicode": "1F1F9-1F1EB", "unicode_alternates": [], "name": "french southern territories", "shortname": ":flag_tf:", "category": "flags", "aliases": [ ":tf:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇹🇫" }, "flag_tg": { "unicode": "1F1F9-1F1EC", "unicode_alternates": [], "name": "togo", "shortname": ":flag_tg:", "category": "flags", "aliases": [ ":tg:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "republique togolaise", "tg", "flag" ], "moji": "🇹🇬" }, "flag_th": { "unicode": "1F1F9-1F1ED", "unicode_alternates": [], "name": "thailand", "shortname": ":flag_th:", "category": "flags", "aliases": [ ":th:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "prathet thai", "th", "flag" ], "moji": "🇹🇭" }, "flag_tj": { "unicode": "1F1F9-1F1EF", "unicode_alternates": [], "name": "tajikistan", "shortname": ":flag_tj:", "category": "flags", "aliases": [ ":tj:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "jumhurii tojikiston", "tj", "flag" ], "moji": "🇹🇯" }, "flag_tk": { "unicode": "1F1F9-1F1F0", "unicode_alternates": [], "name": "tokelau", "shortname": ":flag_tk:", "category": "flags", "aliases": [ ":tk:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇹🇰" }, "flag_tl": { "unicode": "1F1F9-1F1F1", "unicode_alternates": [], "name": "east timor", "shortname": ":flag_tl:", "category": "flags", "aliases": [ ":tl:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tl", "flag" ], "moji": "🇹🇱" }, "flag_tm": { "unicode": "1F1F9-1F1F2", "unicode_alternates": [], "name": "turkmenistan", "shortname": ":flag_tm:", "category": "flags", "aliases": [ ":turkmenistan:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tm", "flag" ], "moji": "🇹🇲" }, "flag_tn": { "unicode": "1F1F9-1F1F3", "unicode_alternates": [], "name": "tunisia", "shortname": ":flag_tn:", "category": "flags", "aliases": [ ":tn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tunis", "tn", "flag" ], "moji": "🇹🇳" }, "flag_to": { "unicode": "1F1F9-1F1F4", "unicode_alternates": [], "name": "tonga", "shortname": ":flag_to:", "category": "flags", "aliases": [ ":to:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "to", "flag" ], "moji": "🇹🇴" }, "flag_tr": { "unicode": "1F1F9-1F1F7", "unicode_alternates": [], "name": "turkey", "shortname": ":flag_tr:", "category": "flags", "aliases": [ ":tr:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "turkiye", "flag" ], "moji": "🇹🇷" }, "flag_tt": { "unicode": "1F1F9-1F1F9", "unicode_alternates": [], "name": "trinidad and tobago", "shortname": ":flag_tt:", "category": "flags", "aliases": [ ":tt:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tt", "flag" ], "moji": "🇹🇹" }, "flag_tv": { "unicode": "1F1F9-1F1FB", "unicode_alternates": [], "name": "tuvalu", "shortname": ":flag_tv:", "category": "flags", "aliases": [ ":tuvalu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tv", "flag" ], "moji": "🇹🇻" }, "flag_tw": { "unicode": "1F1F9-1F1FC", "unicode_alternates": [], "name": "the republic of china", "shortname": ":flag_tw:", "category": "flags", "aliases": [ ":tw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "taiwan", "tw", "flag" ], "moji": "🇹🇼" }, "flag_tz": { "unicode": "1F1F9-1F1FF", "unicode_alternates": [], "name": "tanzania", "shortname": ":flag_tz:", "category": "flags", "aliases": [ ":tz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "tz", "flag" ], "moji": "🇹🇿" }, "flag_ua": { "unicode": "1F1FA-1F1E6", "unicode_alternates": [], "name": "ukraine", "shortname": ":flag_ua:", "category": "flags", "aliases": [ ":ua:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ukrayina", "ua", "flag" ], "moji": "🇺🇦" }, "flag_ug": { "unicode": "1F1FA-1F1EC", "unicode_alternates": [], "name": "uganda", "shortname": ":flag_ug:", "category": "flags", "aliases": [ ":ug:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ug", "flag" ], "moji": "🇺🇬" }, "flag_um": { "unicode": "1F1FA-1F1F2", "unicode_alternates": [], "name": "united states minor outlying islands", "shortname": ":flag_um:", "category": "flags", "aliases": [ ":um:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇺🇲" }, "flag_us": { "unicode": "1F1FA-1F1F8", "unicode_alternates": [], "name": "united states", "shortname": ":flag_us:", "category": "flags", "aliases": [ ":us:" ], "aliases_ascii": [], "keywords": [ "american", "country", "nation", "usa", "united states of america", "america", "old glory", "us", "flag" ], "moji": "🇺🇸" }, "flag_uy": { "unicode": "1F1FA-1F1FE", "unicode_alternates": [], "name": "uruguay", "shortname": ":flag_uy:", "category": "flags", "aliases": [ ":uy:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "uy", "flag" ], "moji": "🇺🇾" }, "flag_uz": { "unicode": "1F1FA-1F1FF", "unicode_alternates": [], "name": "uzbekistan", "shortname": ":flag_uz:", "category": "flags", "aliases": [ ":uz:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "uzbekiston respublikasi", "uz", "flag" ], "moji": "🇺🇿" }, "flag_va": { "unicode": "1F1FB-1F1E6", "unicode_alternates": [], "name": "the vatican city", "shortname": ":flag_va:", "category": "flags", "aliases": [ ":va:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "va", "flag" ], "moji": "🇻🇦" }, "flag_vc": { "unicode": "1F1FB-1F1E8", "unicode_alternates": [], "name": "saint vincent and the grenadines", "shortname": ":flag_vc:", "category": "flags", "aliases": [ ":vc:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "vc", "flag" ], "moji": "🇻🇨" }, "flag_ve": { "unicode": "1F1FB-1F1EA", "unicode_alternates": [], "name": "venezuela", "shortname": ":flag_ve:", "category": "flags", "aliases": [ ":ve:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "ve", "flag" ], "moji": "🇻🇪" }, "flag_vg": { "unicode": "1F1FB-1F1EC", "unicode_alternates": [], "name": "british virgin islands", "shortname": ":flag_vg:", "category": "flags", "aliases": [ ":vg:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇻🇬" }, "flag_vi": { "unicode": "1F1FB-1F1EE", "unicode_alternates": [], "name": "u.s. virgin islands", "shortname": ":flag_vi:", "category": "flags", "aliases": [ ":vi:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "vi", "flag" ], "moji": "🇻🇮" }, "flag_vn": { "unicode": "1F1FB-1F1F3", "unicode_alternates": [], "name": "vietnam", "shortname": ":flag_vn:", "category": "flags", "aliases": [ ":vn:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "viet nam", "vn", "flag" ], "moji": "🇻🇳" }, "flag_vu": { "unicode": "1F1FB-1F1FA", "unicode_alternates": [], "name": "vanuatu", "shortname": ":flag_vu:", "category": "flags", "aliases": [ ":vu:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "vu", "flag" ], "moji": "🇻🇺" }, "flag_wf": { "unicode": "1F1FC-1F1EB", "unicode_alternates": [], "name": "wallis and futuna", "shortname": ":flag_wf:", "category": "flags", "aliases": [ ":wf:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "wf", "flag" ], "moji": "🇼🇫" }, "flag_white": { "unicode": "1F3F3", "unicode_alternates": [], "name": "waving white flag", "shortname": ":flag_white:", "category": "objects", "aliases": [ ":waving_white_flag:" ], "aliases_ascii": [], "keywords": [ "symbol", "signal", "object" ], "moji": "🏳" }, "flag_ws": { "unicode": "1F1FC-1F1F8", "unicode_alternates": [], "name": "samoa", "shortname": ":flag_ws:", "category": "flags", "aliases": [ ":ws:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "american samoa", "ws", "flag" ], "moji": "🇼🇸" }, "flag_xk": { "unicode": "1F1FD-1F1F0", "unicode_alternates": [], "name": "kosovo", "shortname": ":flag_xk:", "category": "flags", "aliases": [ ":xk:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "xk", "flag" ], "moji": "🇽🇰" }, "flag_ye": { "unicode": "1F1FE-1F1EA", "unicode_alternates": [], "name": "yemen", "shortname": ":flag_ye:", "category": "flags", "aliases": [ ":ye:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "al yaman", "ye", "flag" ], "moji": "🇾🇪" }, "flag_yt": { "unicode": "1F1FE-1F1F9", "unicode_alternates": [], "name": "mayotte", "shortname": ":flag_yt:", "category": "flags", "aliases": [ ":yt:" ], "aliases_ascii": [], "keywords": [ "country", "flag" ], "moji": "🇾🇹" }, "flag_za": { "unicode": "1F1FF-1F1E6", "unicode_alternates": [], "name": "south africa", "shortname": ":flag_za:", "category": "flags", "aliases": [ ":za:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "flag" ], "moji": "🇿🇦" }, "flag_zm": { "unicode": "1F1FF-1F1F2", "unicode_alternates": [], "name": "zambia", "shortname": ":flag_zm:", "category": "flags", "aliases": [ ":zm:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "zm", "flag" ], "moji": "🇿🇲" }, "flag_zw": { "unicode": "1F1FF-1F1FC", "unicode_alternates": [], "name": "zimbabwe", "shortname": ":flag_zw:", "category": "flags", "aliases": [ ":zw:" ], "aliases_ascii": [], "keywords": [ "country", "nation", "zw", "flag" ], "moji": "🇿🇼" }, "flags": { "unicode": "1F38F", "unicode_alternates": [], "name": "carp streamer", "shortname": ":flags:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "banner", "carp", "fish", "japanese", "koinobori", "children", "kids", "boys", "celebration", "happiness", "streamers", "holiday", "flags", "object", "japan" ], "moji": "🎏" }, "flashlight": { "unicode": "1F526", "unicode_alternates": [], "name": "electric torch", "shortname": ":flashlight:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "dark", "electronics", "object" ], "moji": "🔦" }, "fleur-de-lis": { "unicode": "269C", "unicode_alternates": [], "name": "fleur-de-lis", "shortname": ":fleur-de-lis:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "symbol", "object" ], "moji": "⚜" }, "floppy_disk": { "unicode": "1F4BE", "unicode_alternates": [], "name": "floppy disk", "shortname": ":floppy_disk:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "oldschool", "save", "technology", "floppy", "disk", "storage", "information", "computer", "drive", "megabyte", "electronics", "office" ], "moji": "💾" }, "flower_playing_cards": { "unicode": "1F3B4", "unicode_alternates": [], "name": "flower playing cards", "shortname": ":flower_playing_cards:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "playing", "card", "flower", "game", "august", "moon", "special", "object", "symbol" ], "moji": "🎴" }, "flushed": { "unicode": "1F633", "unicode_alternates": [], "name": "flushed face", "shortname": ":flushed:", "category": "people", "aliases": [], "aliases_ascii": [ ":$", "=$" ], "keywords": [ "blush", "face", "flattered", "flush", "red", "pink", "cheeks", "shy", "smiley", "emotion", "omg" ], "moji": "😳" }, "fog": { "unicode": "1F32B", "unicode_alternates": [], "name": "fog", "shortname": ":fog:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "weather", "damp", "cloud", "hazy", "sky", "cold" ], "moji": "🌫" }, "foggy": { "unicode": "1F301", "unicode_alternates": [], "name": "foggy", "shortname": ":foggy:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "mountain", "photo", "bridge", "weather", "fog", "foggy", "places", "building", "sky", "travel", "vacation" ], "moji": "🌁" }, "football": { "unicode": "1F3C8", "unicode_alternates": [], "name": "american football", "shortname": ":football:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "NFL", "balls", "sports", "football", "ball", "sport", "america", "american", "game" ], "moji": "🏈" }, "footprints": { "unicode": "1F463", "unicode_alternates": [], "name": "footprints", "shortname": ":footprints:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "feet" ], "moji": "👣" }, "fork_and_knife": { "unicode": "1F374", "unicode_alternates": [], "name": "fork and knife", "shortname": ":fork_and_knife:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "cutlery", "kitchen", "fork", "knife", "restaurant", "meal", "food", "eat", "object", "weapon" ], "moji": "🍴" }, "fork_knife_plate": { "unicode": "1F37D", "unicode_alternates": [], "name": "fork and knife with plate", "shortname": ":fork_knife_plate:", "category": "food", "aliases": [ ":fork_and_knife_with_plate:" ], "aliases_ascii": [], "keywords": [ "meal", "food", "breakfast", "lunch", "dinner", "utensils", "setting", "object" ], "moji": "🍽" }, "fountain": { "unicode": "26F2", "unicode_alternates": [ "26F2-FE0F" ], "name": "fountain", "shortname": ":fountain:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "photo", "travel", "vacation" ], "moji": "⛲" }, "four": { "moji": "4️⃣", "unicode": "0034-20E3", "unicode_alternates": [ "0034-FE0F-20E3" ], "name": "keycap digit four", "shortname": ":four:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "4", "blue-square", "numbers", "number", "math", "symbol" ] }, "four_leaf_clover": { "unicode": "1F340", "unicode_alternates": [], "name": "four leaf clover", "shortname": ":four_leaf_clover:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "lucky", "nature", "plant", "vegetable", "clover", "four", "leaf", "luck", "irish", "saint", "patrick", "green", "sol" ], "moji": "🍀" }, "fox": { "unicode": "1F98A", "unicode_alternates": [], "name": "fox face", "shortname": ":fox:", "category": "nature", "aliases": [ ":fox_face:" ], "aliases_ascii": [], "keywords": [], "moji": "🦊" }, "frame_photo": { "unicode": "1F5BC", "unicode_alternates": [], "name": "frame with picture", "shortname": ":frame_photo:", "category": "objects", "aliases": [ ":frame_with_picture:" ], "aliases_ascii": [], "keywords": [ "photo", "travel", "vacation" ], "moji": "🖼" }, "free": { "unicode": "1F193", "unicode_alternates": [], "name": "squared free", "shortname": ":free:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "words", "symbol" ], "moji": "🆓" }, "french_bread": { "unicode": "1F956", "unicode_alternates": [], "name": "baguette bread", "shortname": ":french_bread:", "category": "food", "aliases": [ ":baguette_bread:" ], "aliases_ascii": [], "keywords": [], "moji": "🥖" }, "fried_shrimp": { "unicode": "1F364", "unicode_alternates": [], "name": "fried shrimp", "shortname": ":fried_shrimp:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "food", "shrimp", "fried", "seafood", "small", "fish" ], "moji": "🍤" }, "fries": { "unicode": "1F35F", "unicode_alternates": [], "name": "french fries", "shortname": ":fries:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "chips", "food", "fries", "french", "potato", "fry", "russet", "idaho", "america" ], "moji": "🍟" }, "frog": { "unicode": "1F438", "unicode_alternates": [], "name": "frog face", "shortname": ":frog:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐸" }, "frowning": { "unicode": "1F626", "unicode_alternates": [], "name": "frowning face with open mouth", "shortname": ":frowning:", "category": "people", "aliases": [ ], "aliases_ascii": [], "keywords": [ "aw", "face", "frown", "sad", "pout", "sulk", "glower", "smiley", "surprised", "emotion" ], "moji": "😦" }, "frowning2": { "unicode": "2639", "unicode_alternates": [], "name": "white frowning face", "shortname": ":frowning2:", "category": "people", "aliases": [ ":white_frowning_face:" ], "aliases_ascii": [], "keywords": [ "frown", "person", "sad", "smiley", "emotion" ], "moji": "☹" }, "fuelpump": { "unicode": "26FD", "unicode_alternates": [ "26FD-FE0F" ], "name": "fuel pump", "shortname": ":fuelpump:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "gas station", "petroleum", "object", "gas pump" ], "moji": "⛽" }, "full_moon": { "unicode": "1F315", "unicode_alternates": [], "name": "full moon symbol", "shortname": ":full_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "yellow", "moon", "full", "sky", "night", "cheese", "phase", "monster", "spooky", "werewolves", "twilight", "space" ], "moji": "🌕" }, "full_moon_with_face": { "unicode": "1F31D", "unicode_alternates": [], "name": "full moon with face", "shortname": ":full_moon_with_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "moon", "full", "anthropomorphic", "face", "sky", "cheese", "phase", "spooky", "werewolves", "monsters", "space", "goodnight" ], "moji": "🌝" }, "game_die": { "unicode": "1F3B2", "unicode_alternates": [], "name": "game die", "shortname": ":game_die:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "dice", "game", "die", "craps", "gamble", "play", "object", "boys night" ], "moji": "🎲" }, "gear": { "unicode": "2699", "unicode_alternates": [], "name": "gear", "shortname": ":gear:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "object", "tool" ], "moji": "⚙" }, "gem": { "unicode": "1F48E", "unicode_alternates": [], "name": "gem stone", "shortname": ":gem:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "blue", "ruby", "object", "gem" ], "moji": "💎" }, "gay_pride_flag": { "unicode": "1F3F3-1F308", "unicode_alternates": [], "name": "gay_pride_flag", "shortname": ":gay_pride_flag:", "category": "flags", "aliases": [ ":rainbow_flag:" ], "aliases_ascii": [], "keywords": [], "moji": "🏳️‍🌈" }, "gemini": { "unicode": "264A", "unicode_alternates": [ "264A-FE0F" ], "name": "gemini", "shortname": ":gemini:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "gemini", "twins", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♊" }, "ghost": { "unicode": "1F47B", "unicode_alternates": [], "name": "ghost", "shortname": ":ghost:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "halloween", "holidays", "monster" ], "moji": "👻" }, "gift": { "unicode": "1F381", "unicode_alternates": [], "name": "wrapped present", "shortname": ":gift:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "birthday", "christmas", "present", "xmas", "gift", "wrap", "package", "wedding", "object", "holidays", "parties" ], "moji": "🎁" }, "gift_heart": { "unicode": "1F49D", "unicode_alternates": [], "name": "heart with ribbon", "shortname": ":gift_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "love", "valentines", "symbol", "condolence" ], "moji": "💝" }, "girl": { "unicode": "1F467", "unicode_alternates": [], "name": "girl", "shortname": ":girl:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "woman", "people", "women", "baby", "diversity" ], "moji": "👧" }, "girl_tone1": { "unicode": "1F467-1F3FB", "unicode_alternates": [], "name": "girl tone 1", "shortname": ":girl_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "kid", "child" ], "moji": "👧🏻" }, "girl_tone2": { "unicode": "1F467-1F3FC", "unicode_alternates": [], "name": "girl tone 2", "shortname": ":girl_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "kid", "child" ], "moji": "👧🏼" }, "girl_tone3": { "unicode": "1F467-1F3FD", "unicode_alternates": [], "name": "girl tone 3", "shortname": ":girl_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "kid", "child" ], "moji": "👧🏽" }, "girl_tone4": { "unicode": "1F467-1F3FE", "unicode_alternates": [], "name": "girl tone 4", "shortname": ":girl_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "kid", "child" ], "moji": "👧🏾" }, "girl_tone5": { "unicode": "1F467-1F3FF", "unicode_alternates": [], "name": "girl tone 5", "shortname": ":girl_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "kid", "child" ], "moji": "👧🏿" }, "globe_with_meridians": { "unicode": "1F310", "unicode_alternates": [], "name": "globe with meridians", "shortname": ":globe_with_meridians:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "earth", "international", "world", "meridian", "globe", "space", "planet", "home", "symbol" ], "moji": "🌐" }, "goal": { "unicode": "1F945", "unicode_alternates": [], "name": "goal net", "shortname": ":goal:", "category": "activity", "aliases": [ ":goal_net:" ], "aliases_ascii": [], "keywords": [], "moji": "🥅" }, "goat": { "unicode": "1F410", "unicode_alternates": [], "name": "goat", "shortname": ":goat:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "goat", "sheep", "kid", "billy", "livestock" ], "moji": "🐐" }, "golf": { "unicode": "26F3", "unicode_alternates": [ "26F3-FE0F" ], "name": "flag in hole", "shortname": ":golf:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "business", "sports", "game", "ball", "vacation", "sport", "golf" ], "moji": "⛳" }, "golfer": { "unicode": "1F3CC", "unicode_alternates": [], "name": "golfer", "shortname": ":golfer:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "par", "birdie", "eagle", "mulligan", "men", "game", "ball", "vacation", "golf" ], "moji": "🏌" }, "gorilla": { "unicode": "1F98D", "unicode_alternates": [], "name": "gorilla", "shortname": ":gorilla:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦍" }, "grapes": { "unicode": "1F347", "unicode_alternates": [], "name": "grapes", "shortname": ":grapes:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "grapes", "wine", "vinegar", "cluster", "vine" ], "moji": "🍇" }, "green_apple": { "unicode": "1F34F", "unicode_alternates": [], "name": "green apple", "shortname": ":green_apple:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "fruit", "nature", "apple", "green", "pie", "granny", "smith", "core", "food" ], "moji": "🍏" }, "green_book": { "unicode": "1F4D7", "unicode_alternates": [], "name": "green book", "shortname": ":green_book:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "knowledge", "library", "read", "object", "office", "book" ], "moji": "📗" }, "green_heart": { "unicode": "1F49A", "unicode_alternates": [], "name": "green heart", "shortname": ":green_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "green", "heart", "nature", "rebirth", "reborn", "jealous", "clingy", "envious", "possessive", "symbol" ], "moji": "💚" }, "grey_exclamation": { "unicode": "2755", "unicode_alternates": [], "name": "white exclamation mark ornament", "shortname": ":grey_exclamation:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "surprise", "symbol", "punctuation" ], "moji": "❕" }, "grey_question": { "unicode": "2754", "unicode_alternates": [], "name": "white question mark ornament", "shortname": ":grey_question:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "doubts", "symbol", "punctuation" ], "moji": "❔" }, "grimacing": { "unicode": "1F62C", "unicode_alternates": [], "name": "grimacing face", "shortname": ":grimacing:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "grimace", "teeth", "disapprove", "pain", "silly", "smiley", "emotion", "selfie" ], "moji": "😬" }, "grin": { "unicode": "1F601", "unicode_alternates": [], "name": "grinning face with smiling eyes", "shortname": ":grin:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "happy", "joy", "smile", "grin", "grinning", "smiling", "smiley", "silly", "emotion", "good", "selfie" ], "moji": "😁" }, "grinning": { "unicode": "1F600", "unicode_alternates": [], "name": "grinning face", "shortname": ":grinning:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "happy", "joy", "smile", "grin", "grinning", "smiling", "smiley", "emotion" ], "moji": "😀" }, "guardsman": { "unicode": "1F482", "unicode_alternates": [], "name": "guardsman", "shortname": ":guardsman:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guardsman", "guard", "bearskin", "hat", "queen", "ceremonial", "military", "people", "men", "diversity", "job" ], "moji": "💂" }, "guardsman_tone1": { "unicode": "1F482-1F3FB", "unicode_alternates": [], "name": "guardsman tone 1", "shortname": ":guardsman_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏻" }, "guardsman_tone2": { "unicode": "1F482-1F3FC", "unicode_alternates": [], "name": "guardsman tone 2", "shortname": ":guardsman_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏼" }, "guardsman_tone3": { "unicode": "1F482-1F3FD", "unicode_alternates": [], "name": "guardsman tone 3", "shortname": ":guardsman_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏽" }, "guardsman_tone4": { "unicode": "1F482-1F3FE", "unicode_alternates": [], "name": "guardsman tone 4", "shortname": ":guardsman_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏾" }, "guardsman_tone5": { "unicode": "1F482-1F3FF", "unicode_alternates": [], "name": "guardsman tone 5", "shortname": ":guardsman_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏿" }, "guitar": { "unicode": "1F3B8", "unicode_alternates": [], "name": "guitar", "shortname": ":guitar:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "instrument", "music", "guitar", "string", "jam", "rock", "acoustic", "electric", "instruments" ], "moji": "🎸" }, "gun": { "unicode": "1F52B", "unicode_alternates": [], "name": "pistol", "shortname": ":gun:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "violence", "weapon", "object", "dead", "gun", "sarcastic" ], "moji": "🔫" }, "haircut": { "unicode": "1F487", "unicode_alternates": [], "name": "haircut", "shortname": ":haircut:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "people", "women", "diversity" ], "moji": "💇" }, "haircut_tone1": { "unicode": "1F487-1F3FB", "unicode_alternates": [], "name": "haircut tone 1", "shortname": ":haircut_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏻" }, "haircut_tone2": { "unicode": "1F487-1F3FC", "unicode_alternates": [], "name": "haircut tone 2", "shortname": ":haircut_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏼" }, "haircut_tone3": { "unicode": "1F487-1F3FD", "unicode_alternates": [], "name": "haircut tone 3", "shortname": ":haircut_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏽" }, "haircut_tone4": { "unicode": "1F487-1F3FE", "unicode_alternates": [], "name": "haircut tone 4", "shortname": ":haircut_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏾" }, "haircut_tone5": { "unicode": "1F487-1F3FF", "unicode_alternates": [], "name": "haircut tone 5", "shortname": ":haircut_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏿" }, "hamburger": { "unicode": "1F354", "unicode_alternates": [], "name": "hamburger", "shortname": ":hamburger:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "meat", "hamburger", "burger", "cow", "beef", "america" ], "moji": "🍔" }, "hammer": { "unicode": "1F528", "unicode_alternates": [], "name": "hammer", "shortname": ":hammer:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "done", "judge", "law", "ruling", "tools", "verdict", "object", "tool", "weapon" ], "moji": "🔨" }, "hammer_pick": { "unicode": "2692", "unicode_alternates": [], "name": "hammer and pick", "shortname": ":hammer_pick:", "category": "objects", "aliases": [ ":hammer_and_pick:" ], "aliases_ascii": [], "keywords": [ "object", "tool", "weapon" ], "moji": "⚒" }, "hamster": { "unicode": "1F439", "unicode_alternates": [], "name": "hamster face", "shortname": ":hamster:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature" ], "moji": "🐹" }, "hand_splayed": { "unicode": "1F590", "unicode_alternates": [], "name": "raised hand with fingers splayed", "shortname": ":hand_splayed:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt", "body", "hands", "diversity" ], "moji": "🖐" }, "hand_splayed_tone1": { "unicode": "1F590-1F3FB", "unicode_alternates": [], "name": "raised hand with fingers splayed tone 1", "shortname": ":hand_splayed_tone1:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone1:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏻" }, "hand_splayed_tone2": { "unicode": "1F590-1F3FC", "unicode_alternates": [], "name": "raised hand with fingers splayed tone 2", "shortname": ":hand_splayed_tone2:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone2:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏼" }, "hand_splayed_tone3": { "unicode": "1F590-1F3FD", "unicode_alternates": [], "name": "raised hand with fingers splayed tone 3", "shortname": ":hand_splayed_tone3:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone3:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏽" }, "hand_splayed_tone4": { "unicode": "1F590-1F3FE", "unicode_alternates": [], "name": "raised hand with fingers splayed tone 4", "shortname": ":hand_splayed_tone4:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone4:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏾" }, "hand_splayed_tone5": { "unicode": "1F590-1F3FF", "unicode_alternates": [], "name": "raised hand with fingers splayed tone 5", "shortname": ":hand_splayed_tone5:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone5:" ], "aliases_ascii": [], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏿" }, "handbag": { "unicode": "1F45C", "unicode_alternates": [], "name": "handbag", "shortname": ":handbag:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "accessory", "bag", "fashion", "women", "vacation" ], "moji": "👜" }, "handball": { "unicode": "1F93E", "unicode_alternates": [], "name": "handball", "shortname": ":handball:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾" }, "handball_tone1": { "unicode": "1F93E-1F3FB", "unicode_alternates": [], "name": "handball tone 1", "shortname": ":handball_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾🏻" }, "handball_tone2": { "unicode": "1F93E-1F3FC", "unicode_alternates": [], "name": "handball tone 2", "shortname": ":handball_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾🏼" }, "handball_tone3": { "unicode": "1F93E-1F3FD", "unicode_alternates": [], "name": "handball tone 3", "shortname": ":handball_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾🏽" }, "handball_tone4": { "unicode": "1F93E-1F3FE", "unicode_alternates": [], "name": "handball tone 4", "shortname": ":handball_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾🏾" }, "handball_tone5": { "unicode": "1F93E-1F3FF", "unicode_alternates": [], "name": "handball tone 5", "shortname": ":handball_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤾🏿" }, "handshake": { "unicode": "1F91D", "unicode_alternates": [], "name": "handshake", "shortname": ":handshake:", "category": "people", "aliases": [ ":shaking_hands:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝" }, "handshake_tone1": { "unicode": "1F91D-1F3FB", "unicode_alternates": [], "name": "handshake tone 1", "shortname": ":handshake_tone1:", "category": "people", "aliases": [ ":shaking_hands_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝🏻" }, "handshake_tone2": { "unicode": "1F91D-1F3FC", "unicode_alternates": [], "name": "handshake tone 2", "shortname": ":handshake_tone2:", "category": "people", "aliases": [ ":shaking_hands_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝🏼" }, "handshake_tone3": { "unicode": "1F91D-1F3FD", "unicode_alternates": [], "name": "handshake tone 3", "shortname": ":handshake_tone3:", "category": "people", "aliases": [ ":shaking_hands_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝🏽" }, "handshake_tone4": { "unicode": "1F91D-1F3FE", "unicode_alternates": [], "name": "handshake tone 4", "shortname": ":handshake_tone4:", "category": "people", "aliases": [ ":shaking_hands_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝🏾" }, "handshake_tone5": { "unicode": "1F91D-1F3FF", "unicode_alternates": [], "name": "handshake tone 5", "shortname": ":handshake_tone5:", "category": "people", "aliases": [ ":shaking_hands_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤝🏿" }, "hash": { "moji": "#⃣", "unicode": "0023-20E3", "unicode_alternates": [ "0023-FE0F-20E3" ], "name": "number sign", "shortname": ":hash:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "symbol", "number" ] }, "hatched_chick": { "unicode": "1F425", "unicode_alternates": [], "name": "front-facing baby chick", "shortname": ":hatched_chick:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "baby", "chicken", "chick", "bird", "young", "woman", "cute", "animal" ], "moji": "🐥" }, "hatching_chick": { "unicode": "1F423", "unicode_alternates": [], "name": "hatching chick", "shortname": ":hatching_chick:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "born", "chicken", "egg", "chick", "baby", "bird", "young", "woman", "cute", "animal" ], "moji": "🐣" }, "head_bandage": { "unicode": "1F915", "unicode_alternates": [], "name": "face with head-bandage", "shortname": ":head_bandage:", "category": "people", "aliases": [ ":face_with_head_bandage:" ], "aliases_ascii": [], "keywords": [ "smiley", "health", "sick", "emotion" ], "moji": "🤕" }, "headphones": { "unicode": "1F3A7", "unicode_alternates": [], "name": "headphone", "shortname": ":headphones:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "gadgets", "music", "score", "headphone", "sound", "ears", "beats", "buds", "audio", "listen", "instruments" ], "moji": "🎧" }, "hear_no_evil": { "unicode": "1F649", "unicode_alternates": [], "name": "hear-no-evil monkey", "shortname": ":hear_no_evil:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "monkey", "ears", "hear", "sound", "kikazaru" ], "moji": "🙉" }, "heart": { "moji": "❤", "unicode": "2764", "unicode_alternates": [ "2764-FE0F" ], "name": "heavy black heart", "shortname": ":heart:", "category": "symbols", "aliases": [], "aliases_ascii": [ "<3" ], "keywords": [ "like", "love", "red", "pink", "black", "heart", "passion", "romance", "intense", "desire", "death", "evil", "cold", "valentines", "symbol", "parties" ] }, "heart_decoration": { "unicode": "1F49F", "unicode_alternates": [], "name": "heart decoration", "shortname": ":heart_decoration:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "like", "love", "purple-square", "symbol" ], "moji": "💟" }, "heart_exclamation": { "unicode": "2763", "unicode_alternates": [], "name": "heavy heart exclamation mark ornament", "shortname": ":heart_exclamation:", "category": "symbols", "aliases": [ ":heavy_heart_exclamation_mark_ornament:" ], "aliases_ascii": [], "keywords": [ "emotion", "punctuation", "symbol", "love" ], "moji": "❣" }, "heart_eyes": { "unicode": "1F60D", "unicode_alternates": [], "name": "smiling face with heart-shaped eyes", "shortname": ":heart_eyes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "crush", "face", "infatuation", "like", "love", "valentines", "smiling", "heart", "lovestruck", "flirt", "smile", "heart-shaped", "happy", "smiley", "sex", "heart eyes", "emotion", "beautiful" ], "moji": "😍" }, "heart_eyes_cat": { "unicode": "1F63B", "unicode_alternates": [], "name": "smiling cat face with heart-shaped eyes", "shortname": ":heart_eyes_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "animal", "cats", "like", "love", "valentines", "lovestruck", "heart", "heart eyes", "cat", "beautiful" ], "moji": "😻" }, "heartbeat": { "unicode": "1F493", "unicode_alternates": [], "name": "beating heart", "shortname": ":heartbeat:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "symbol" ], "moji": "💓" }, "heartpulse": { "unicode": "1F497", "unicode_alternates": [], "name": "growing heart", "shortname": ":heartpulse:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "symbol" ], "moji": "💗" }, "hearts": { "unicode": "2665", "unicode_alternates": [ "2665-FE0F" ], "name": "black heart suit", "shortname": ":hearts:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cards", "poker", "love", "symbol", "game" ], "moji": "♥" }, "heavy_check_mark": { "unicode": "2714", "unicode_alternates": [ "2714-FE0F" ], "name": "heavy check mark", "shortname": ":heavy_check_mark:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "nike", "ok", "symbol" ], "moji": "✔" }, "heavy_division_sign": { "unicode": "2797", "unicode_alternates": [], "name": "heavy division sign", "shortname": ":heavy_division_sign:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "calculation", "divide", "math", "symbol" ], "moji": "➗" }, "heavy_dollar_sign": { "unicode": "1F4B2", "unicode_alternates": [], "name": "heavy dollar sign", "shortname": ":heavy_dollar_sign:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "currency", "money", "payment", "dollar", "cash", "sale", "purchase", "value", "math", "symbol" ], "moji": "💲" }, "heavy_minus_sign": { "unicode": "2796", "unicode_alternates": [], "name": "heavy minus sign", "shortname": ":heavy_minus_sign:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "calculation", "math", "symbol" ], "moji": "➖" }, "heavy_multiplication_x": { "unicode": "2716", "unicode_alternates": [ "2716-FE0F" ], "name": "heavy multiplication x", "shortname": ":heavy_multiplication_x:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "calculation", "math", "symbol" ], "moji": "✖" }, "heavy_plus_sign": { "unicode": "2795", "unicode_alternates": [], "name": "heavy plus sign", "shortname": ":heavy_plus_sign:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "calculation", "math", "symbol" ], "moji": "➕" }, "helicopter": { "unicode": "1F681", "unicode_alternates": [], "name": "helicopter", "shortname": ":helicopter:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "helicopter", "helo", "gyro", "gyrocopter", "plane", "travel", "fly" ], "moji": "🚁" }, "helmet_with_cross": { "unicode": "26D1", "unicode_alternates": [], "name": "helmet with white cross", "shortname": ":helmet_with_cross:", "category": "people", "aliases": [ ":helmet_with_white_cross:" ], "aliases_ascii": [], "keywords": [ "aid", "face", "hat", "person", "object", "accessories", "job" ], "moji": "⛑" }, "herb": { "unicode": "1F33F", "unicode_alternates": [], "name": "herb", "shortname": ":herb:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "grass", "lawn", "medicine", "plant", "vegetable", "weed", "herb", "spice", "cook", "cooking", "nature", "leaf" ], "moji": "🌿" }, "hibiscus": { "unicode": "1F33A", "unicode_alternates": [], "name": "hibiscus", "shortname": ":hibiscus:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "flowers", "plant", "vegetable", "hibiscus", "flower", "warm", "nature", "tropical" ], "moji": "🌺" }, "high_brightness": { "unicode": "1F506", "unicode_alternates": [], "name": "high brightness symbol", "shortname": ":high_brightness:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "light", "summer", "sun", "symbol" ], "moji": "🔆" }, "high_heel": { "unicode": "1F460", "unicode_alternates": [], "name": "high-heeled shoe", "shortname": ":high_heel:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "female", "shoes", "women", "shoe", "sexy", "accessories", "girls night" ], "moji": "👠" }, "hockey": { "unicode": "1F3D2", "unicode_alternates": [], "name": "ice hockey stick and puck", "shortname": ":hockey:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "game", "sport", "hockey" ], "moji": "🏒" }, "hole": { "unicode": "1F573", "unicode_alternates": [], "name": "hole", "shortname": ":hole:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "pit", "well", "object" ], "moji": "🕳" }, "homes": { "unicode": "1F3D8", "unicode_alternates": [], "name": "house buildings", "shortname": ":homes:", "category": "travel", "aliases": [ ":house_buildings:" ], "aliases_ascii": [], "keywords": [ "home", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "places", "building", "house" ], "moji": "🏘" }, "honey_pot": { "unicode": "1F36F", "unicode_alternates": [], "name": "honey pot", "shortname": ":honey_pot:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "bees", "sweet", "honey", "pot", "pooh", "bear", "food", "vagina" ], "moji": "🍯" }, "horse": { "unicode": "1F434", "unicode_alternates": [], "name": "horse face", "shortname": ":horse:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "brown", "wildlife" ], "moji": "🐴" }, "horse_racing": { "unicode": "1F3C7", "unicode_alternates": [], "name": "horse racing", "shortname": ":horse_racing:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "horse", "race", "racing", "jockey", "triple crown", "men", "sport", "horse racing" ], "moji": "🏇" }, "horse_racing_tone1": { "unicode": "1F3C7-1F3FB", "unicode_alternates": [], "name": "horse racing tone 1", "shortname": ":horse_racing_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏻" }, "horse_racing_tone2": { "unicode": "1F3C7-1F3FC", "unicode_alternates": [], "name": "horse racing tone 2", "shortname": ":horse_racing_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏼" }, "horse_racing_tone3": { "unicode": "1F3C7-1F3FD", "unicode_alternates": [], "name": "horse racing tone 3", "shortname": ":horse_racing_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏽" }, "horse_racing_tone4": { "unicode": "1F3C7-1F3FE", "unicode_alternates": [], "name": "horse racing tone 4", "shortname": ":horse_racing_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏾" }, "horse_racing_tone5": { "unicode": "1F3C7-1F3FF", "unicode_alternates": [], "name": "horse racing tone 5", "shortname": ":horse_racing_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏿" }, "hospital": { "unicode": "1F3E5", "unicode_alternates": [], "name": "hospital", "shortname": ":hospital:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "doctor", "health", "surgery", "places", "911" ], "moji": "🏥" }, "hot_pepper": { "unicode": "1F336", "unicode_alternates": [], "name": "hot pepper", "shortname": ":hot_pepper:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "nature", "spicy", "chili", "cayenne", "habanero", "jalapeno", "vegetables" ], "moji": "🌶" }, "hotdog": { "unicode": "1F32D", "unicode_alternates": [], "name": "hot dog", "shortname": ":hotdog:", "category": "food", "aliases": [ ":hot_dog:" ], "aliases_ascii": [], "keywords": [ "america", "food" ], "moji": "🌭" }, "hotel": { "unicode": "1F3E8", "unicode_alternates": [], "name": "hotel", "shortname": ":hotel:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "accomodation", "building", "checkin", "whotel", "hotel", "motel", "holiday inn", "hospital", "places", "vacation" ], "moji": "🏨" }, "hotsprings": { "unicode": "2668", "unicode_alternates": [ "2668-FE0F" ], "name": "hot springs", "shortname": ":hotsprings:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "bath", "relax", "warm", "symbol" ], "moji": "♨" }, "hourglass": { "unicode": "231B", "unicode_alternates": [ "231B-FE0F" ], "name": "hourglass", "shortname": ":hourglass:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "clock", "oldschool", "time", "object" ], "moji": "⌛" }, "hourglass_flowing_sand": { "unicode": "23F3", "unicode_alternates": [], "name": "hourglass with flowing sand", "shortname": ":hourglass_flowing_sand:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "countdown", "oldschool", "time", "object" ], "moji": "⏳" }, "house": { "unicode": "1F3E0", "unicode_alternates": [], "name": "house building", "shortname": ":house:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "home", "house", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "places" ], "moji": "🏠" }, "house_abandoned": { "unicode": "1F3DA", "unicode_alternates": [], "name": "derelict house building", "shortname": ":house_abandoned:", "category": "travel", "aliases": [ ":derelict_house_building:" ], "aliases_ascii": [], "keywords": [ "home", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "boarded", "abandoned", "vacant", "run down", "shoddy", "places", "building", "house" ], "moji": "🏚" }, "house_with_garden": { "unicode": "1F3E1", "unicode_alternates": [], "name": "house with garden", "shortname": ":house_with_garden:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "home", "nature", "plant", "places", "building", "house" ], "moji": "🏡" }, "hugging": { "unicode": "1F917", "unicode_alternates": [], "name": "hugging face", "shortname": ":hugging:", "category": "people", "aliases": [ ":hugging_face:" ], "aliases_ascii": [], "keywords": [ "smiley", "hug", "thank you" ], "moji": "🤗" }, "hushed": { "unicode": "1F62F", "unicode_alternates": [], "name": "hushed face", "shortname": ":hushed:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "woo", "quiet", "hush", "whisper", "silent", "smiley", "surprised", "wow" ], "moji": "😯" }, "ice_cream": { "unicode": "1F368", "unicode_alternates": [], "name": "ice cream", "shortname": ":ice_cream:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "desert", "food", "hot", "icecream", "ice", "cream", "dairy", "dessert", "cold", "soft", "serve", "cone", "waffle" ], "moji": "🍨" }, "ice_skate": { "unicode": "26F8", "unicode_alternates": [], "name": "ice skate", "shortname": ":ice_skate:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "place", "sport", "travel", "cold", "ice skating" ], "moji": "⛸" }, "icecream": { "unicode": "1F366", "unicode_alternates": [], "name": "soft ice cream", "shortname": ":icecream:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "desert", "food", "hot", "icecream", "ice", "cream", "dairy", "dessert", "cold", "soft", "serve", "cone", "yogurt" ], "moji": "🍦" }, "id": { "unicode": "1F194", "unicode_alternates": [], "name": "squared id", "shortname": ":id:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "purple-square", "identification", "identity", "symbol", "word" ], "moji": "🆔" }, "ideograph_advantage": { "unicode": "1F250", "unicode_alternates": [], "name": "circled ideograph advantage", "shortname": ":ideograph_advantage:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "get", "kanji", "obtain", "japan", "symbol" ], "moji": "🉐" }, "imp": { "unicode": "1F47F", "unicode_alternates": [], "name": "imp", "shortname": ":imp:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "angry", "devil", "evil", "horns", "cute", "smiley", "monster", "wth" ], "moji": "👿" }, "inbox_tray": { "unicode": "1F4E5", "unicode_alternates": [], "name": "inbox tray", "shortname": ":inbox_tray:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "email", "work", "office" ], "moji": "📥" }, "incoming_envelope": { "unicode": "1F4E8", "unicode_alternates": [], "name": "incoming envelope", "shortname": ":incoming_envelope:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "email", "inbox", "object" ], "moji": "📨" }, "information_desk_person": { "unicode": "1F481", "unicode_alternates": [], "name": "information desk person", "shortname": ":information_desk_person:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "information", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky", "people", "women", "diversity" ], "moji": "💁" }, "information_desk_person_tone1": { "unicode": "1F481-1F3FB", "unicode_alternates": [], "name": "information desk person tone 1", "shortname": ":information_desk_person_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏻" }, "information_desk_person_tone2": { "unicode": "1F481-1F3FC", "unicode_alternates": [], "name": "information desk person tone 2", "shortname": ":information_desk_person_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏼" }, "information_desk_person_tone3": { "unicode": "1F481-1F3FD", "unicode_alternates": [], "name": "information desk person tone 3", "shortname": ":information_desk_person_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏽" }, "information_desk_person_tone4": { "unicode": "1F481-1F3FE", "unicode_alternates": [], "name": "information desk person tone 4", "shortname": ":information_desk_person_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏾" }, "information_desk_person_tone5": { "unicode": "1F481-1F3FF", "unicode_alternates": [], "name": "information desk person tone 5", "shortname": ":information_desk_person_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏿" }, "information_source": { "unicode": "2139", "unicode_alternates": [ "2139-FE0F" ], "name": "information source", "shortname": ":information_source:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "blue-square", "letter", "symbol" ], "moji": "ℹ" }, "innocent": { "unicode": "1F607", "unicode_alternates": [], "name": "smiling face with halo", "shortname": ":innocent:", "category": "people", "aliases": [], "aliases_ascii": [ "O:-)", "0:-3", "0:3", "0:-)", "0:)", "0;^)", "O:)", "O;-)", "O=)", "0;-)", "O:-3", "O:3" ], "keywords": [ "angel", "face", "halo", "innocent", "ring", "circle", "heaven", "smiley", "emotion" ], "moji": "😇" }, "interrobang": { "unicode": "2049", "unicode_alternates": [ "2049-FE0F" ], "name": "exclamation question mark", "shortname": ":interrobang:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "punctuation", "surprise", "wat", "symbol" ], "moji": "⁉" }, "iphone": { "unicode": "1F4F1", "unicode_alternates": [], "name": "mobile phone", "shortname": ":iphone:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "apple", "dial", "gadgets", "technology", "electronics", "phone", "selfie" ], "moji": "📱" }, "island": { "unicode": "1F3DD", "unicode_alternates": [], "name": "desert island", "shortname": ":island:", "category": "travel", "aliases": [ ":desert_island:" ], "aliases_ascii": [], "keywords": [ "land", "solitude", "alone", "places", "travel", "vacation", "tropical", "beach", "swim" ], "moji": "🏝" }, "izakaya_lantern": { "unicode": "1F3EE", "unicode_alternates": [], "name": "izakaya lantern", "shortname": ":izakaya_lantern:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "light", "izakaya", "lantern", "stay", "drink", "alcohol", "bar", "sake", "restaurant", "object", "japan" ], "moji": "🏮" }, "jack_o_lantern": { "unicode": "1F383", "unicode_alternates": [], "name": "jack-o-lantern", "shortname": ":jack_o_lantern:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "halloween", "jack-o-lantern", "pumpkin", "holiday", "carve", "autumn", "fall", "october", "saints", "costume", "spooky", "horror", "scary", "scared", "dead", "holidays" ], "moji": "🎃" }, "japan": { "unicode": "1F5FE", "unicode_alternates": [], "name": "silhouette of japan", "shortname": ":japan:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "nation", "places", "travel", "map", "vacation", "tropical" ], "moji": "🗾" }, "japanese_castle": { "unicode": "1F3EF", "unicode_alternates": [], "name": "japanese castle", "shortname": ":japanese_castle:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "photo", "castle", "japanese", "residence", "royalty", "fort", "fortified", "fortress", "places", "travel", "vacation" ], "moji": "🏯" }, "japanese_goblin": { "unicode": "1F47A", "unicode_alternates": [], "name": "japanese goblin", "shortname": ":japanese_goblin:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "evil", "mask", "red", "japanese", "tengu", "supernatural", "avian", "demon", "goblin", "theater", "nose", "frown", "mustache", "anger", "frustration", "angry", "monster" ], "moji": "👺" }, "japanese_ogre": { "unicode": "1F479", "unicode_alternates": [], "name": "japanese ogre", "shortname": ":japanese_ogre:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "monster", "japanese", "oni", "demon", "troll", "ogre", "folklore", "devil", "mask", "theater", "horns", "teeth" ], "moji": "👹" }, "jeans": { "unicode": "1F456", "unicode_alternates": [], "name": "jeans", "shortname": ":jeans:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "shopping", "jeans", "pants", "blue", "denim", "levi's", "levi", "designer", "work", "skinny" ], "moji": "👖" }, "joy": { "unicode": "1F602", "unicode_alternates": [], "name": "face with tears of joy", "shortname": ":joy:", "category": "people", "aliases": [], "aliases_ascii": [ ":')", ":'-)" ], "keywords": [ "cry", "face", "haha", "happy", "tears", "joy", "weep", "silly", "smiley", "laugh", "emotion", "sarcastic" ], "moji": "😂" }, "joy_cat": { "unicode": "1F639", "unicode_alternates": [], "name": "cat face with tears of joy", "shortname": ":joy_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "haha", "happy", "tears", "cry", "joy", "silly", "laugh", "cat", "sarcastic" ], "moji": "😹" }, "joystick": { "unicode": "1F579", "unicode_alternates": [], "name": "joystick", "shortname": ":joystick:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "games", "atari", "controller", "electronics", "game", "boys night" ], "moji": "🕹" }, "juggling": { "unicode": "1F939", "unicode_alternates": [], "name": "juggling", "shortname": ":juggling:", "category": "activity", "aliases": [ ":juggler:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹" }, "juggling_tone1": { "unicode": "1F939-1F3FB", "unicode_alternates": [], "name": "juggling tone 1", "shortname": ":juggling_tone1:", "category": "activity", "aliases": [ ":juggler_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹🏻" }, "juggling_tone2": { "unicode": "1F939-1F3FC", "unicode_alternates": [], "name": "juggling tone 2", "shortname": ":juggling_tone2:", "category": "activity", "aliases": [ ":juggler_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹🏼" }, "juggling_tone3": { "unicode": "1F939-1F3FD", "unicode_alternates": [], "name": "juggling tone 3", "shortname": ":juggling_tone3:", "category": "activity", "aliases": [ ":juggler_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹🏽" }, "juggling_tone4": { "unicode": "1F939-1F3FE", "unicode_alternates": [], "name": "juggling tone 4", "shortname": ":juggling_tone4:", "category": "activity", "aliases": [ ":juggler_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹🏾" }, "juggling_tone5": { "unicode": "1F939-1F3FF", "unicode_alternates": [], "name": "juggling tone 5", "shortname": ":juggling_tone5:", "category": "activity", "aliases": [ ":juggler_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤹🏿" }, "kaaba": { "unicode": "1F54B", "unicode_alternates": [], "name": "kaaba", "shortname": ":kaaba:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "places", "religion", "building", "condolence" ], "moji": "🕋" }, "key": { "unicode": "1F511", "unicode_alternates": [], "name": "key", "shortname": ":key:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "door", "lock", "password", "object" ], "moji": "🔑" }, "key2": { "unicode": "1F5DD", "unicode_alternates": [], "name": "old key", "shortname": ":key2:", "category": "objects", "aliases": [ ":old_key:" ], "aliases_ascii": [], "keywords": [ "door", "lock", "password", "skeleton", "object" ], "moji": "🗝" }, "keyboard": { "unicode": "2328", "unicode_alternates": [ "2328-FE0F" ], "name": "keyboard", "shortname": ":keyboard:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "electronics", "work", "office" ], "moji": "⌨" }, "kimono": { "unicode": "1F458", "unicode_alternates": [], "name": "kimono", "shortname": ":kimono:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "dress", "fashion", "female", "japanese", "women" ], "moji": "👘" }, "kiss": { "unicode": "1F48B", "unicode_alternates": [], "name": "kiss mark", "shortname": ":kiss:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "face", "like", "lips", "love", "valentines", "women", "sexy", "lip", "beautiful", "girls night" ], "moji": "💋" }, "kiss_mm": { "unicode": "1F468-2764-1F48B-1F468", "unicode_alternates": [ "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468" ], "name": "kiss (man,man)", "shortname": ":kiss_mm:", "category": "people", "aliases": [ ":couplekiss_mm:" ], "aliases_ascii": [], "keywords": [ "dating", "like", "love", "marriage", "valentines", "couple", "people", "gay", "men", "sex", "lgbt" ], "moji": "👨‍❤️‍💋‍👨" }, "kiss_ww": { "unicode": "1F469-2764-1F48B-1F469", "unicode_alternates": [ "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469" ], "name": "kiss (woman,woman)", "shortname": ":kiss_ww:", "category": "people", "aliases": [ ":couplekiss_ww:" ], "aliases_ascii": [], "keywords": [ "dating", "like", "love", "marriage", "valentines", "couple", "people", "women", "sex", "lgbt", "lesbian" ], "moji": "👩‍❤️‍💋‍👩" }, "kissing": { "unicode": "1F617", "unicode_alternates": [], "name": "kissing face", "shortname": ":kissing:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "3", "face", "infatuation", "like", "love", "valentines", "kissing", "kiss", "pucker", "lips", "smooch", "smiley", "sexy" ], "moji": "😗" }, "kissing_cat": { "unicode": "1F63D", "unicode_alternates": [], "name": "kissing cat face with closed eyes", "shortname": ":kissing_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "passion", "kiss", "puckered", "heart", "love", "cat" ], "moji": "😽" }, "kissing_closed_eyes": { "unicode": "1F61A", "unicode_alternates": [], "name": "kissing face with closed eyes", "shortname": ":kissing_closed_eyes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "face", "infatuation", "like", "love", "valentines", "kissing", "kiss", "passion", "puckered", "heart", "smooch", "smiley", "sexy" ], "moji": "😚" }, "kissing_heart": { "unicode": "1F618", "unicode_alternates": [], "name": "face throwing a kiss", "shortname": ":kissing_heart:", "category": "people", "aliases": [], "aliases_ascii": [ ":*", ":-*", "=*", ":^*" ], "keywords": [ "affection", "face", "infatuation", "kiss", "blowing kiss", "heart", "love", "lips", "like", "valentines", "smiley", "sexy" ], "moji": "😘" }, "kissing_smiling_eyes": { "unicode": "1F619", "unicode_alternates": [], "name": "kissing face with smiling eyes", "shortname": ":kissing_smiling_eyes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "face", "infatuation", "valentines", "kissing", "kiss", "smile", "pucker", "lips", "smooch", "smiley", "sexy" ], "moji": "😙" }, "kiwi": { "unicode": "1F95D", "unicode_alternates": [], "name": "kiwifruit", "shortname": ":kiwi:", "category": "food", "aliases": [ ":kiwifruit:" ], "aliases_ascii": [], "keywords": [], "moji": "🥝" }, "knife": { "unicode": "1F52A", "unicode_alternates": [], "name": "hocho", "shortname": ":knife:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "object", "weapon" ], "moji": "🔪" }, "koala": { "unicode": "1F428", "unicode_alternates": [], "name": "koala", "shortname": ":koala:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐨" }, "koko": { "unicode": "1F201", "unicode_alternates": [], "name": "squared katakana koko", "shortname": ":koko:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "destination", "here", "japanese", "katakana", "symbol" ], "moji": "🈁" }, "label": { "unicode": "1F3F7", "unicode_alternates": [], "name": "label", "shortname": ":label:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "tag", "object" ], "moji": "🏷" }, "large_blue_circle": { "unicode": "1F535", "unicode_alternates": [], "name": "large blue circle", "shortname": ":large_blue_circle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shapes", "symbol", "circle" ], "moji": "🔵" }, "large_blue_diamond": { "unicode": "1F537", "unicode_alternates": [], "name": "large blue diamond", "shortname": ":large_blue_diamond:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔷" }, "large_orange_diamond": { "unicode": "1F536", "unicode_alternates": [], "name": "large orange diamond", "shortname": ":large_orange_diamond:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔶" }, "last_quarter_moon": { "unicode": "1F317", "unicode_alternates": [], "name": "last quarter moon symbol", "shortname": ":last_quarter_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "last", "quarter", "sky", "night", "cheese", "phase", "space" ], "moji": "🌗" }, "last_quarter_moon_with_face": { "unicode": "1F31C", "unicode_alternates": [], "name": "last quarter moon with face", "shortname": ":last_quarter_moon_with_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "last", "quarter", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space" ], "moji": "🌜" }, "laughing": { "unicode": "1F606", "unicode_alternates": [], "name": "smiling face with open mouth and tightly-closed ey", "shortname": ":laughing:", "category": "people", "aliases": [ ":satisfied:" ], "aliases_ascii": [ ">:)", ">;)", ">:-)", ">=)" ], "keywords": [ "happy", "joy", "lol", "smiling", "laughing", "laugh", "smiley", "emotion" ], "moji": "😆" }, "leaves": { "unicode": "1F343", "unicode_alternates": [], "name": "leaf fluttering in wind", "shortname": ":leaves:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "grass", "lawn", "nature", "plant", "tree", "vegetable", "leaves", "leaf", "wind", "float", "fluttering" ], "moji": "🍃" }, "ledger": { "unicode": "1F4D2", "unicode_alternates": [], "name": "ledger", "shortname": ":ledger:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "notes", "paper", "object", "office", "write" ], "moji": "📒" }, "left_facing_fist": { "unicode": "1F91B", "unicode_alternates": [], "name": "left-facing fist", "shortname": ":left_facing_fist:", "category": "people", "aliases": [ ":left_fist:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛" }, "left_facing_fist_tone1": { "unicode": "1F91B-1F3FB", "unicode_alternates": [], "name": "left facing fist tone 1", "shortname": ":left_facing_fist_tone1:", "category": "people", "aliases": [ ":left_fist_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛🏻" }, "left_facing_fist_tone2": { "unicode": "1F91B-1F3FC", "unicode_alternates": [], "name": "left facing fist tone 2", "shortname": ":left_facing_fist_tone2:", "category": "people", "aliases": [ ":left_fist_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛🏼" }, "left_facing_fist_tone3": { "unicode": "1F91B-1F3FD", "unicode_alternates": [], "name": "left facing fist tone 3", "shortname": ":left_facing_fist_tone3:", "category": "people", "aliases": [ ":left_fist_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛🏽" }, "left_facing_fist_tone4": { "unicode": "1F91B-1F3FE", "unicode_alternates": [], "name": "left facing fist tone 4", "shortname": ":left_facing_fist_tone4:", "category": "people", "aliases": [ ":left_fist_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛🏾" }, "left_facing_fist_tone5": { "unicode": "1F91B-1F3FF", "unicode_alternates": [], "name": "left facing fist tone 5", "shortname": ":left_facing_fist_tone5:", "category": "people", "aliases": [ ":left_fist_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤛🏿" }, "left_luggage": { "unicode": "1F6C5", "unicode_alternates": [], "name": "left luggage", "shortname": ":left_luggage:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "travel", "bag", "baggage", "luggage", "symbol" ], "moji": "🛅" }, "left_right_arrow": { "unicode": "2194", "unicode_alternates": [ "2194-FE0F" ], "name": "left right arrow", "shortname": ":left_right_arrow:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "arrow", "symbol" ], "moji": "↔" }, "leftwards_arrow_with_hook": { "unicode": "21A9", "unicode_alternates": [ "21A9-FE0F" ], "name": "leftwards arrow with hook", "shortname": ":leftwards_arrow_with_hook:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "symbol" ], "moji": "↩" }, "lemon": { "unicode": "1F34B", "unicode_alternates": [], "name": "lemon", "shortname": ":lemon:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "fruit", "nature", "lemon", "yellow", "citrus", "food" ], "moji": "🍋" }, "leo": { "unicode": "264C", "unicode_alternates": [ "264C-FE0F" ], "name": "leo", "shortname": ":leo:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "leo", "lion", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♌" }, "leopard": { "unicode": "1F406", "unicode_alternates": [], "name": "leopard", "shortname": ":leopard:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "leopard", "cat", "spot", "spotted", "sexy", "wildlife", "roar" ], "moji": "🐆" }, "level_slider": { "unicode": "1F39A", "unicode_alternates": [], "name": "level slider", "shortname": ":level_slider:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "controls" ], "moji": "🎚" }, "levitate": { "unicode": "1F574", "unicode_alternates": [], "name": "man in business suit levitating", "shortname": ":levitate:", "category": "activity", "aliases": [ ":man_in_business_suit_levitating:" ], "aliases_ascii": [], "keywords": [ "hover", "exclamation", "men", "job" ], "moji": "🕴" }, "libra": { "unicode": "264E", "unicode_alternates": [ "264E-FE0F" ], "name": "libra", "shortname": ":libra:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "libra", "scales", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♎" }, "lifter": { "unicode": "1F3CB", "unicode_alternates": [], "name": "weight lifter", "shortname": ":lifter:", "category": "activity", "aliases": [ ":weight_lifter:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift", "men", "workout", "flex", "sport", "weight lifting", "win", "diversity" ], "moji": "🏋" }, "lifter_tone1": { "unicode": "1F3CB-1F3FB", "unicode_alternates": [], "name": "weight lifter tone 1", "shortname": ":lifter_tone1:", "category": "activity", "aliases": [ ":weight_lifter_tone1:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏻" }, "lifter_tone2": { "unicode": "1F3CB-1F3FC", "unicode_alternates": [], "name": "weight lifter tone 2", "shortname": ":lifter_tone2:", "category": "activity", "aliases": [ ":weight_lifter_tone2:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏼" }, "lifter_tone3": { "unicode": "1F3CB-1F3FD", "unicode_alternates": [], "name": "weight lifter tone 3", "shortname": ":lifter_tone3:", "category": "activity", "aliases": [ ":weight_lifter_tone3:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏽" }, "lifter_tone4": { "unicode": "1F3CB-1F3FE", "unicode_alternates": [], "name": "weight lifter tone 4", "shortname": ":lifter_tone4:", "category": "activity", "aliases": [ ":weight_lifter_tone4:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏾" }, "lifter_tone5": { "unicode": "1F3CB-1F3FF", "unicode_alternates": [], "name": "weight lifter tone 5", "shortname": ":lifter_tone5:", "category": "activity", "aliases": [ ":weight_lifter_tone5:" ], "aliases_ascii": [], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏿" }, "light_rail": { "unicode": "1F688", "unicode_alternates": [], "name": "light rail", "shortname": ":light_rail:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "train", "rail", "light", "travel" ], "moji": "🚈" }, "link": { "unicode": "1F517", "unicode_alternates": [], "name": "link symbol", "shortname": ":link:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "rings", "url", "symbol", "office" ], "moji": "🔗" }, "lion_face": { "unicode": "1F981", "unicode_alternates": [], "name": "lion face", "shortname": ":lion_face:", "category": "nature", "aliases": [ ":lion:" ], "aliases_ascii": [], "keywords": [ "wildlife", "roar", "cat", "animal" ], "moji": "🦁" }, "lips": { "unicode": "1F444", "unicode_alternates": [], "name": "mouth", "shortname": ":lips:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "kiss", "mouth", "women", "body", "sexy", "lip" ], "moji": "👄" }, "lipstick": { "unicode": "1F484", "unicode_alternates": [], "name": "lipstick", "shortname": ":lipstick:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "female", "girl", "object", "women", "sexy", "lip" ], "moji": "💄" }, "lizard": { "unicode": "1F98E", "unicode_alternates": [], "name": "lizard", "shortname": ":lizard:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦎" }, "lock": { "unicode": "1F512", "unicode_alternates": [], "name": "lock", "shortname": ":lock:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "password", "security", "object", "lock" ], "moji": "🔒" }, "lock_with_ink_pen": { "unicode": "1F50F", "unicode_alternates": [], "name": "lock with ink pen", "shortname": ":lock_with_ink_pen:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "secret", "security", "object", "lock" ], "moji": "🔏" }, "lollipop": { "unicode": "1F36D", "unicode_alternates": [], "name": "lollipop", "shortname": ":lollipop:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "candy", "food", "snack", "sweet", "lollipop", "stick", "lick", "sugar", "halloween" ], "moji": "🍭" }, "loop": { "unicode": "27BF", "unicode_alternates": [], "name": "double curly loop", "shortname": ":loop:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "curly", "symbol" ], "moji": "➿" }, "loud_sound": { "unicode": "1F50A", "unicode_alternates": [], "name": "speaker with three sound waves", "shortname": ":loud_sound:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alarm", "symbol" ], "moji": "🔊" }, "loudspeaker": { "unicode": "1F4E2", "unicode_alternates": [], "name": "public address loudspeaker", "shortname": ":loudspeaker:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "volume", "object", "alarm", "symbol" ], "moji": "📢" }, "love_hotel": { "unicode": "1F3E9", "unicode_alternates": [], "name": "love hotel", "shortname": ":love_hotel:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "dating", "like", "love", "hotel", "sex", "romance", "leisure", "adultery", "prostitution", "hospital", "birth", "happy", "places", "building" ], "moji": "🏩" }, "love_letter": { "unicode": "1F48C", "unicode_alternates": [], "name": "love letter", "shortname": ":love_letter:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "email", "envelope", "like", "valentines", "love", "letter", "kiss", "heart", "object" ], "moji": "💌" }, "low_brightness": { "unicode": "1F505", "unicode_alternates": [], "name": "low brightness symbol", "shortname": ":low_brightness:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "summer", "sun", "symbol" ], "moji": "🔅" }, "lying_face": { "unicode": "1F925", "unicode_alternates": [], "name": "lying face", "shortname": ":lying_face:", "category": "people", "aliases": [ ":liar:" ], "aliases_ascii": [], "keywords": [], "moji": "🤥" }, "m": { "unicode": "24C2", "unicode_alternates": [ "24C2-FE0F" ], "name": "circled latin capital letter m", "shortname": ":m:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "blue-circle", "letter", "symbol" ], "moji": "Ⓜ" }, "mag": { "unicode": "1F50D", "unicode_alternates": [], "name": "left-pointing magnifying glass", "shortname": ":mag:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "search", "zoom", "detective", "investigator", "detail", "details", "object" ], "moji": "🔍" }, "mag_right": { "unicode": "1F50E", "unicode_alternates": [], "name": "right-pointing magnifying glass", "shortname": ":mag_right:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "search", "zoom", "detective", "investigator", "detail", "details", "object" ], "moji": "🔎" }, "mahjong": { "unicode": "1F004", "unicode_alternates": [ "1F004-FE0F" ], "name": "mahjong tile red dragon", "shortname": ":mahjong:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "game", "kanji", "object", "symbol" ], "moji": "🀄" }, "mailbox": { "unicode": "1F4EB", "unicode_alternates": [], "name": "closed mailbox with raised flag", "shortname": ":mailbox:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "email", "inbox", "object" ], "moji": "📫" }, "mailbox_closed": { "unicode": "1F4EA", "unicode_alternates": [], "name": "closed mailbox with lowered flag", "shortname": ":mailbox_closed:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "email", "inbox", "object", "office" ], "moji": "📪" }, "mailbox_with_mail": { "unicode": "1F4EC", "unicode_alternates": [], "name": "open mailbox with raised flag", "shortname": ":mailbox_with_mail:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "email", "inbox", "object" ], "moji": "📬" }, "mailbox_with_no_mail": { "unicode": "1F4ED", "unicode_alternates": [], "name": "open mailbox with lowered flag", "shortname": ":mailbox_with_no_mail:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "email", "inbox", "object" ], "moji": "📭" }, "man": { "unicode": "1F468", "unicode_alternates": [], "name": "man", "shortname": ":man:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustashe", "people", "men", "sex", "diversity", "selfie", "boys night" ], "moji": "👨" }, "man_dancing": { "unicode": "1F57A", "unicode_alternates": [], "name": "man dancing", "shortname": ":man_dancing:", "category": "people", "aliases": [ ":male_dancer:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺" }, "man_dancing_tone1": { "unicode": "1F57A-1F3FB", "unicode_alternates": [], "name": "man dancing tone 1", "shortname": ":man_dancing_tone1:", "category": "activity", "aliases": [ ":male_dancer_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺🏻" }, "man_dancing_tone2": { "unicode": "1F57A-1F3FC", "unicode_alternates": [], "name": "man dancing tone 2", "shortname": ":man_dancing_tone2:", "category": "activity", "aliases": [ ":male_dancer_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺🏼" }, "man_dancing_tone3": { "unicode": "1F57A-1F3FD", "unicode_alternates": [], "name": "man dancing tone 3", "shortname": ":man_dancing_tone3:", "category": "activity", "aliases": [ ":male_dancer_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺🏽" }, "man_dancing_tone4": { "unicode": "1F57A-1F3FE", "unicode_alternates": [], "name": "man dancing tone 4", "shortname": ":man_dancing_tone4:", "category": "activity", "aliases": [ ":male_dancer_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺🏾" }, "man_dancing_tone5": { "unicode": "1F57A-1F3FF", "unicode_alternates": [], "name": "man dancing tone 5", "shortname": ":man_dancing_tone5:", "category": "activity", "aliases": [ ":male_dancer_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🕺🏿" }, "man_in_tuxedo": { "unicode": "1F935", "unicode_alternates": [], "name": "man in tuxedo", "shortname": ":man_in_tuxedo:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤵" }, "man_in_tuxedo_tone1": { "unicode": "1F935-1F3FB", "unicode_alternates": [], "name": "man in tuxedo tone 1", "shortname": ":man_in_tuxedo_tone1:", "category": "people", "aliases": [ ":tuxedo_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤵🏻" }, "man_in_tuxedo_tone2": { "unicode": "1F935-1F3FC", "unicode_alternates": [], "name": "man in tuxedo tone 2", "shortname": ":man_in_tuxedo_tone2:", "category": "people", "aliases": [ ":tuxedo_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤵🏼" }, "man_in_tuxedo_tone3": { "unicode": "1F935-1F3FD", "unicode_alternates": [], "name": "man in tuxedo tone 3", "shortname": ":man_in_tuxedo_tone3:", "category": "people", "aliases": [ ":tuxedo_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤵🏽" }, "man_in_tuxedo_tone4": { "unicode": "1F935-1F3FE", "unicode_alternates": [], "name": "man in tuxedo tone 4", "shortname": ":man_in_tuxedo_tone4:", "category": "people", "aliases": [ ":tuxedo_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤵🏾" }, "man_in_tuxedo_tone5": { "unicode": "1F935-1F3FF", "unicode_alternates": [], "name": "man in tuxedo tone 5", "shortname": ":man_in_tuxedo_tone5:", "category": "people", "aliases": [ ":tuxedo_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤵🏿" }, "man_tone1": { "unicode": "1F468-1F3FB", "unicode_alternates": [], "name": "man tone 1", "shortname": ":man_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏻" }, "man_tone2": { "unicode": "1F468-1F3FC", "unicode_alternates": [], "name": "man tone 2", "shortname": ":man_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏼" }, "man_tone3": { "unicode": "1F468-1F3FD", "unicode_alternates": [], "name": "man tone 3", "shortname": ":man_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏽" }, "man_tone4": { "unicode": "1F468-1F3FE", "unicode_alternates": [], "name": "man tone 4", "shortname": ":man_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏾" }, "man_tone5": { "unicode": "1F468-1F3FF", "unicode_alternates": [], "name": "man tone 5", "shortname": ":man_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏿" }, "man_with_gua_pi_mao": { "unicode": "1F472", "unicode_alternates": [], "name": "man with gua pi mao", "shortname": ":man_with_gua_pi_mao:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing", "people", "hat", "men", "diversity" ], "moji": "👲" }, "man_with_gua_pi_mao_tone1": { "unicode": "1F472-1F3FB", "unicode_alternates": [], "name": "man with gua pi mao tone 1", "shortname": ":man_with_gua_pi_mao_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏻" }, "man_with_gua_pi_mao_tone2": { "unicode": "1F472-1F3FC", "unicode_alternates": [], "name": "man with gua pi mao tone 2", "shortname": ":man_with_gua_pi_mao_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏼" }, "man_with_gua_pi_mao_tone3": { "unicode": "1F472-1F3FD", "unicode_alternates": [], "name": "man with gua pi mao tone 3", "shortname": ":man_with_gua_pi_mao_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏽" }, "man_with_gua_pi_mao_tone4": { "unicode": "1F472-1F3FE", "unicode_alternates": [], "name": "man with gua pi mao tone 4", "shortname": ":man_with_gua_pi_mao_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏾" }, "man_with_gua_pi_mao_tone5": { "unicode": "1F472-1F3FF", "unicode_alternates": [], "name": "man with gua pi mao tone 5", "shortname": ":man_with_gua_pi_mao_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏿" }, "man_with_turban": { "unicode": "1F473", "unicode_alternates": [], "name": "man with turban", "shortname": ":man_with_turban:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "turban", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace", "people", "hat", "diversity" ], "moji": "👳" }, "man_with_turban_tone1": { "unicode": "1F473-1F3FB", "unicode_alternates": [], "name": "man with turban tone 1", "shortname": ":man_with_turban_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏻" }, "man_with_turban_tone2": { "unicode": "1F473-1F3FC", "unicode_alternates": [], "name": "man with turban tone 2", "shortname": ":man_with_turban_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏼" }, "man_with_turban_tone3": { "unicode": "1F473-1F3FD", "unicode_alternates": [], "name": "man with turban tone 3", "shortname": ":man_with_turban_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏽" }, "man_with_turban_tone4": { "unicode": "1F473-1F3FE", "unicode_alternates": [], "name": "man with turban tone 4", "shortname": ":man_with_turban_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏾" }, "man_with_turban_tone5": { "unicode": "1F473-1F3FF", "unicode_alternates": [], "name": "man with turban tone 5", "shortname": ":man_with_turban_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏿" }, "mans_shoe": { "unicode": "1F45E", "unicode_alternates": [], "name": "mans shoe", "shortname": ":mans_shoe:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "male", "shoe", "accessories" ], "moji": "👞" }, "map": { "unicode": "1F5FA", "unicode_alternates": [], "name": "world map", "shortname": ":map:", "category": "objects", "aliases": [ ":world_map:" ], "aliases_ascii": [], "keywords": [ "atlas", "earth", "cartography", "travel", "map", "vacation" ], "moji": "🗺" }, "maple_leaf": { "unicode": "1F341", "unicode_alternates": [], "name": "maple leaf", "shortname": ":maple_leaf:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "canada", "nature", "plant", "vegetable", "maple", "leaf", "syrup", "tree" ], "moji": "🍁" }, "martial_arts_uniform": { "unicode": "1F94B", "unicode_alternates": [], "name": "martial arts uniform", "shortname": ":martial_arts_uniform:", "category": "activity", "aliases": [ ":karate_uniform:" ], "aliases_ascii": [], "keywords": [], "moji": "🥋" }, "mask": { "unicode": "1F637", "unicode_alternates": [], "name": "face with medical mask", "shortname": ":mask:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "ill", "sick", "virus", "flu", "medical", "mask", "smiley", "dead", "health" ], "moji": "😷" }, "massage": { "unicode": "1F486", "unicode_alternates": [], "name": "face massage", "shortname": ":massage:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "people", "women", "diversity" ], "moji": "💆" }, "massage_tone1": { "unicode": "1F486-1F3FB", "unicode_alternates": [], "name": "face massage tone 1", "shortname": ":massage_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏻" }, "massage_tone2": { "unicode": "1F486-1F3FC", "unicode_alternates": [], "name": "face massage tone 2", "shortname": ":massage_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏼" }, "massage_tone3": { "unicode": "1F486-1F3FD", "unicode_alternates": [], "name": "face massage tone 3", "shortname": ":massage_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏽" }, "massage_tone4": { "unicode": "1F486-1F3FE", "unicode_alternates": [], "name": "face massage tone 4", "shortname": ":massage_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏾" }, "massage_tone5": { "unicode": "1F486-1F3FF", "unicode_alternates": [], "name": "face massage tone 5", "shortname": ":massage_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏿" }, "meat_on_bone": { "unicode": "1F356", "unicode_alternates": [], "name": "meat on bone", "shortname": ":meat_on_bone:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "good", "meat", "bone", "animal", "cooked" ], "moji": "🍖" }, "medal": { "unicode": "1F3C5", "unicode_alternates": [], "name": "sports medal", "shortname": ":medal:", "category": "activity", "aliases": [ ":sports_medal:" ], "aliases_ascii": [], "keywords": [ "award", "ceremony", "contest", "ftw", "place", "win", "first", "show", "reward", "achievement", "object", "sport", "perfect" ], "moji": "🏅" }, "mega": { "unicode": "1F4E3", "unicode_alternates": [], "name": "cheering megaphone", "shortname": ":mega:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "speaker", "volume", "object", "sport" ], "moji": "📣" }, "melon": { "unicode": "1F348", "unicode_alternates": [], "name": "melon", "shortname": ":melon:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "melon", "cantaloupe", "honeydew", "boobs" ], "moji": "🍈" }, "menorah": { "unicode": "1F54E", "unicode_alternates": [], "name": "menorah with nine branches", "shortname": ":menorah:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "religion", "object", "jew", "symbol", "holidays" ], "moji": "🕎" }, "mens": { "unicode": "1F6B9", "unicode_alternates": [], "name": "mens symbol", "shortname": ":mens:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "restroom", "toilet", "wc", "men", "bathroom", "sign", "boy", "male", "avatar", "symbol" ], "moji": "🚹" }, "metal": { "unicode": "1F918", "unicode_alternates": [], "name": "sign of the horns", "shortname": ":metal:", "category": "people", "aliases": [ ":sign_of_the_horns:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll", "body", "hands", "hi", "diversity", "boys night", "parties" ], "moji": "🤘" }, "metal_tone1": { "unicode": "1F918-1F3FB", "unicode_alternates": [], "name": "sign of the horns tone 1", "shortname": ":metal_tone1:", "category": "people", "aliases": [ ":sign_of_the_horns_tone1:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏻" }, "metal_tone2": { "unicode": "1F918-1F3FC", "unicode_alternates": [], "name": "sign of the horns tone 2", "shortname": ":metal_tone2:", "category": "people", "aliases": [ ":sign_of_the_horns_tone2:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏼" }, "metal_tone3": { "unicode": "1F918-1F3FD", "unicode_alternates": [], "name": "sign of the horns tone 3", "shortname": ":metal_tone3:", "category": "people", "aliases": [ ":sign_of_the_horns_tone3:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏽" }, "metal_tone4": { "unicode": "1F918-1F3FE", "unicode_alternates": [], "name": "sign of the horns tone 4", "shortname": ":metal_tone4:", "category": "people", "aliases": [ ":sign_of_the_horns_tone4:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏾" }, "metal_tone5": { "unicode": "1F918-1F3FF", "unicode_alternates": [], "name": "sign of the horns tone 5", "shortname": ":metal_tone5:", "category": "people", "aliases": [ ":sign_of_the_horns_tone5:" ], "aliases_ascii": [], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏿" }, "metro": { "unicode": "1F687", "unicode_alternates": [], "name": "metro", "shortname": ":metro:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "mrt", "transportation", "tube", "underground", "metro", "subway", "train", "travel" ], "moji": "🚇" }, "microphone": { "unicode": "1F3A4", "unicode_alternates": [], "name": "microphone", "shortname": ":microphone:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "PA", "music", "sound", "microphone", "mic", "audio", "voice", "karaoke", "instruments" ], "moji": "🎤" }, "microphone2": { "unicode": "1F399", "unicode_alternates": [], "name": "studio microphone", "shortname": ":microphone2:", "category": "objects", "aliases": [ ":studio_microphone:" ], "aliases_ascii": [], "keywords": [ "mic", "audio", "recording", "electronics", "object" ], "moji": "🎙" }, "microscope": { "unicode": "1F52C", "unicode_alternates": [], "name": "microscope", "shortname": ":microscope:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "experiment", "laboratory", "zoomin", "object", "science" ], "moji": "🔬" }, "middle_finger": { "unicode": "1F595", "unicode_alternates": [], "name": "reversed hand with middle finger extended", "shortname": ":middle_finger:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended:" ], "aliases_ascii": [], "keywords": [ "fu", "body", "hands", "middle finger", "diversity" ], "moji": "🖕" }, "middle_finger_tone1": { "unicode": "1F595-1F3FB", "unicode_alternates": [], "name": "reversed hand with middle finger extended tone 1", "shortname": ":middle_finger_tone1:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone1:" ], "aliases_ascii": [], "keywords": [ "fu" ], "moji": "🖕🏻" }, "middle_finger_tone2": { "unicode": "1F595-1F3FC", "unicode_alternates": [], "name": "reversed hand with middle finger extended tone 2", "shortname": ":middle_finger_tone2:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone2:" ], "aliases_ascii": [], "keywords": [ "fu" ], "moji": "🖕🏼" }, "middle_finger_tone3": { "unicode": "1F595-1F3FD", "unicode_alternates": [], "name": "reversed hand with middle finger extended tone 3", "shortname": ":middle_finger_tone3:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone3:" ], "aliases_ascii": [], "keywords": [ "fu" ], "moji": "🖕🏽" }, "middle_finger_tone4": { "unicode": "1F595-1F3FE", "unicode_alternates": [], "name": "reversed hand with middle finger extended tone 4", "shortname": ":middle_finger_tone4:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone4:" ], "aliases_ascii": [], "keywords": [ "fu" ], "moji": "🖕🏾" }, "middle_finger_tone5": { "unicode": "1F595-1F3FF", "unicode_alternates": [], "name": "reversed hand with middle finger extended tone 5", "shortname": ":middle_finger_tone5:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone5:" ], "aliases_ascii": [], "keywords": [ "fu" ], "moji": "🖕🏿" }, "military_medal": { "unicode": "1F396", "unicode_alternates": [], "name": "military medal", "shortname": ":military_medal:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "honor", "acknowledgment", "purple heart", "heroism", "veteran", "object", "award", "win" ], "moji": "🎖" }, "milk": { "unicode": "1F95B", "unicode_alternates": [], "name": "glass of milk", "shortname": ":milk:", "category": "food", "aliases": [ ":glass_of_milk:" ], "aliases_ascii": [], "keywords": [], "moji": "🥛" }, "milky_way": { "unicode": "1F30C", "unicode_alternates": [], "name": "milky way", "shortname": ":milky_way:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "photo", "space", "milky", "galaxy", "star", "stars", "planets", "sky", "places", "travel", "vacation" ], "moji": "🌌" }, "minibus": { "unicode": "1F690", "unicode_alternates": [], "name": "minibus", "shortname": ":minibus:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "car", "transportation", "vehicle", "bus", "city", "transport" ], "moji": "🚐" }, "minidisc": { "unicode": "1F4BD", "unicode_alternates": [], "name": "minidisc", "shortname": ":minidisc:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "data", "disc", "disk", "record", "technology", "electronics" ], "moji": "💽" }, "mobile_phone_off": { "unicode": "1F4F4", "unicode_alternates": [], "name": "mobile phone off", "shortname": ":mobile_phone_off:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "mute", "symbol" ], "moji": "📴" }, "money_mouth": { "unicode": "1F911", "unicode_alternates": [], "name": "money-mouth face", "shortname": ":money_mouth:", "category": "people", "aliases": [ ":money_mouth_face:" ], "aliases_ascii": [], "keywords": [ "smiley", "win", "money", "emotion", "boys night" ], "moji": "🤑" }, "money_with_wings": { "unicode": "1F4B8", "unicode_alternates": [], "name": "money with wings", "shortname": ":money_with_wings:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bills", "dollar", "payment", "money", "wings", "easy", "spend", "work", "lost", "blown", "burned", "gift", "cash", "boys night" ], "moji": "💸" }, "moneybag": { "unicode": "1F4B0", "unicode_alternates": [], "name": "money bag", "shortname": ":moneybag:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "coins", "dollar", "payment", "bag", "award", "money" ], "moji": "💰" }, "monkey": { "unicode": "1F412", "unicode_alternates": [], "name": "monkey", "shortname": ":monkey:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "monkey", "primate", "banana", "silly", "wildlife" ], "moji": "🐒" }, "monkey_face": { "unicode": "1F435", "unicode_alternates": [], "name": "monkey face", "shortname": ":monkey_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature" ], "moji": "🐵" }, "monorail": { "unicode": "1F69D", "unicode_alternates": [], "name": "monorail", "shortname": ":monorail:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "train", "mono", "rail", "transport", "travel", "vacation" ], "moji": "🚝" }, "mortar_board": { "unicode": "1F393", "unicode_alternates": [], "name": "graduation cap", "shortname": ":mortar_board:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "cap", "college", "degree", "graduation", "hat", "school", "university", "mortarboard", "academic", "education", "ceremony", "square", "tassel", "office", "accessories" ], "moji": "🎓" }, "mosque": { "unicode": "1F54C", "unicode_alternates": [], "name": "mosque", "shortname": ":mosque:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "places", "religion", "building", "vacation", "condolence" ], "moji": "🕌" }, "motor_scooter": { "unicode": "1F6F5", "unicode_alternates": [], "name": "motor scooter", "shortname": ":motor_scooter:", "category": "travel", "aliases": [ ":motorbike:" ], "aliases_ascii": [], "keywords": [ "moped" ], "moji": "🛵" }, "motorboat": { "unicode": "1F6E5", "unicode_alternates": [], "name": "motorboat", "shortname": ":motorboat:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "boat", "speedboat", "powerboat", "travel" ], "moji": "🛥" }, "motorcycle": { "unicode": "1F3CD", "unicode_alternates": [], "name": "racing motorcycle", "shortname": ":motorcycle:", "category": "travel", "aliases": [ ":racing_motorcycle:" ], "aliases_ascii": [], "keywords": [ "bike", "speed", "transportation", "travel" ], "moji": "🏍" }, "motorway": { "unicode": "1F6E3", "unicode_alternates": [], "name": "motorway", "shortname": ":motorway:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "road", "highway", "freeway", "traffic", "travel", "vacation", "camp" ], "moji": "🛣" }, "mount_fuji": { "unicode": "1F5FB", "unicode_alternates": [], "name": "mount fuji", "shortname": ":mount_fuji:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "japan", "mountain", "nature", "photo", "places", "travel", "vacation", "cold", "camp" ], "moji": "🗻" }, "mountain": { "unicode": "26F0", "unicode_alternates": [], "name": "mountain", "shortname": ":mountain:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "place", "places", "travel", "vacation", "camp" ], "moji": "⛰" }, "mountain_bicyclist": { "unicode": "1F6B5", "unicode_alternates": [], "name": "mountain bicyclist", "shortname": ":mountain_bicyclist:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "sports", "transportation", "bicyclist", "mountain", "bike", "pedal", "bicycle", "men", "sport", "diversity" ], "moji": "🚵" }, "mountain_bicyclist_tone1": { "unicode": "1F6B5-1F3FB", "unicode_alternates": [], "name": "mountain bicyclist tone 1", "shortname": ":mountain_bicyclist_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏻" }, "mountain_bicyclist_tone2": { "unicode": "1F6B5-1F3FC", "unicode_alternates": [], "name": "mountain bicyclist tone 2", "shortname": ":mountain_bicyclist_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏼" }, "mountain_bicyclist_tone3": { "unicode": "1F6B5-1F3FD", "unicode_alternates": [], "name": "mountain bicyclist tone 3", "shortname": ":mountain_bicyclist_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏽" }, "mountain_bicyclist_tone4": { "unicode": "1F6B5-1F3FE", "unicode_alternates": [], "name": "mountain bicyclist tone 4", "shortname": ":mountain_bicyclist_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏾" }, "mountain_bicyclist_tone5": { "unicode": "1F6B5-1F3FF", "unicode_alternates": [], "name": "mountain bicyclist tone 5", "shortname": ":mountain_bicyclist_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏿" }, "mountain_cableway": { "unicode": "1F6A0", "unicode_alternates": [], "name": "mountain cableway", "shortname": ":mountain_cableway:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "mountain", "cable", "rail", "train", "railway", "travel" ], "moji": "🚠" }, "mountain_railway": { "unicode": "1F69E", "unicode_alternates": [], "name": "mountain railway", "shortname": ":mountain_railway:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "mountain", "railway", "rail", "train", "transport", "travel" ], "moji": "🚞" }, "mountain_snow": { "unicode": "1F3D4", "unicode_alternates": [], "name": "snow capped mountain", "shortname": ":mountain_snow:", "category": "travel", "aliases": [ ":snow_capped_mountain:" ], "aliases_ascii": [], "keywords": [ "cold", "elevation", "hiking", "peak", "places", "travel", "vacation", "camp" ], "moji": "🏔" }, "mouse": { "unicode": "1F42D", "unicode_alternates": [], "name": "mouse face", "shortname": ":mouse:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature" ], "moji": "🐭" }, "mouse2": { "unicode": "1F401", "unicode_alternates": [], "name": "mouse", "shortname": ":mouse2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "mouse", "mice", "rodent" ], "moji": "🐁" }, "mouse_three_button": { "unicode": "1F5B1", "unicode_alternates": [], "name": "three button mouse", "shortname": ":mouse_three_button:", "category": "objects", "aliases": [ ":three_button_mouse:" ], "aliases_ascii": [], "keywords": [ "3", "computer", "object", "office", "electronics", "work", "game" ], "moji": "🖱" }, "movie_camera": { "unicode": "1F3A5", "unicode_alternates": [], "name": "movie camera", "shortname": ":movie_camera:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "film", "record", "movie", "camera", "camcorder", "video", "motion", "picture", "object" ], "moji": "🎥" }, "moyai": { "unicode": "1F5FF", "unicode_alternates": [], "name": "moyai", "shortname": ":moyai:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "island", "stone", "travel", "vacation" ], "moji": "🗿" }, "mrs_claus": { "unicode": "1F936", "unicode_alternates": [], "name": "mother christmas", "shortname": ":mrs_claus:", "category": "people", "aliases": [ ":mother_christmas:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶" }, "mrs_claus_tone1": { "unicode": "1F936-1F3FB", "unicode_alternates": [], "name": "mother christmas tone 1", "shortname": ":mrs_claus_tone1:", "category": "people", "aliases": [ ":mother_christmas_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶🏻" }, "mrs_claus_tone2": { "unicode": "1F936-1F3FC", "unicode_alternates": [], "name": "mother christmas tone 2", "shortname": ":mrs_claus_tone2:", "category": "people", "aliases": [ ":mother_christmas_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶🏼" }, "mrs_claus_tone3": { "unicode": "1F936-1F3FD", "unicode_alternates": [], "name": "mother christmas tone 3", "shortname": ":mrs_claus_tone3:", "category": "people", "aliases": [ ":mother_christmas_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶🏽" }, "mrs_claus_tone4": { "unicode": "1F936-1F3FE", "unicode_alternates": [], "name": "mother christmas tone 4", "shortname": ":mrs_claus_tone4:", "category": "people", "aliases": [ ":mother_christmas_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶🏾" }, "mrs_claus_tone5": { "unicode": "1F936-1F3FF", "unicode_alternates": [], "name": "mother christmas tone 5", "shortname": ":mrs_claus_tone5:", "category": "people", "aliases": [ ":mother_christmas_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤶🏿" }, "muscle": { "unicode": "1F4AA", "unicode_alternates": [], "name": "flexed biceps", "shortname": ":muscle:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep", "body", "hands", "workout", "win", "diversity", "feminist", "boys night" ], "moji": "💪" }, "muscle_tone1": { "unicode": "1F4AA-1F3FB", "unicode_alternates": [], "name": "flexed biceps tone 1", "shortname": ":muscle_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏻" }, "muscle_tone2": { "unicode": "1F4AA-1F3FC", "unicode_alternates": [], "name": "flexed biceps tone 2", "shortname": ":muscle_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏼" }, "muscle_tone3": { "unicode": "1F4AA-1F3FD", "unicode_alternates": [], "name": "flexed biceps tone 3", "shortname": ":muscle_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏽" }, "muscle_tone4": { "unicode": "1F4AA-1F3FE", "unicode_alternates": [], "name": "flexed biceps tone 4", "shortname": ":muscle_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏾" }, "muscle_tone5": { "unicode": "1F4AA-1F3FF", "unicode_alternates": [], "name": "flexed biceps tone 5", "shortname": ":muscle_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏿" }, "mushroom": { "unicode": "1F344", "unicode_alternates": [], "name": "mushroom", "shortname": ":mushroom:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "plant", "vegetable", "mushroom", "fungi", "food", "fungus", "nature", "drugs" ], "moji": "🍄" }, "musical_keyboard": { "unicode": "1F3B9", "unicode_alternates": [], "name": "musical keyboard", "shortname": ":musical_keyboard:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "instrument", "piano", "music", "keyboard", "organ", "electric", "instruments" ], "moji": "🎹" }, "musical_note": { "unicode": "1F3B5", "unicode_alternates": [], "name": "musical note", "shortname": ":musical_note:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "score", "musical", "music", "note", "sound", "instruments", "symbol" ], "moji": "🎵" }, "musical_score": { "unicode": "1F3BC", "unicode_alternates": [], "name": "musical score", "shortname": ":musical_score:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "clef", "treble", "music", "musical", "score", "g-clef", "stave", "staff", "instruments" ], "moji": "🎼" }, "mute": { "unicode": "1F507", "unicode_alternates": [], "name": "speaker with cancellation stroke", "shortname": ":mute:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "volume", "alarm", "symbol" ], "moji": "🔇" }, "nail_care": { "unicode": "1F485", "unicode_alternates": [], "name": "nail polish", "shortname": ":nail_care:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure", "women", "body", "hands", "nailpolish", "diversity", "girls night" ], "moji": "💅" }, "nail_care_tone1": { "unicode": "1F485-1F3FB", "unicode_alternates": [], "name": "nail polish tone 1", "shortname": ":nail_care_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure" ], "moji": "💅🏻" }, "nail_care_tone2": { "unicode": "1F485-1F3FC", "unicode_alternates": [], "name": "nail polish tone 2", "shortname": ":nail_care_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure" ], "moji": "💅🏼" }, "nail_care_tone3": { "unicode": "1F485-1F3FD", "unicode_alternates": [], "name": "nail polish tone 3", "shortname": ":nail_care_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure" ], "moji": "💅🏽" }, "nail_care_tone4": { "unicode": "1F485-1F3FE", "unicode_alternates": [], "name": "nail polish tone 4", "shortname": ":nail_care_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure" ], "moji": "💅🏾" }, "nail_care_tone5": { "unicode": "1F485-1F3FF", "unicode_alternates": [], "name": "nail polish tone 5", "shortname": ":nail_care_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "beauty", "manicure" ], "moji": "💅🏿" }, "name_badge": { "unicode": "1F4DB", "unicode_alternates": [], "name": "name badge", "shortname": ":name_badge:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "fire", "forbid", "work" ], "moji": "📛" }, "nauseated_face": { "unicode": "1F922", "unicode_alternates": [], "name": "nauseated face", "shortname": ":nauseated_face:", "category": "people", "aliases": [ ":sick:" ], "aliases_ascii": [], "keywords": [], "moji": "🤢" }, "necktie": { "unicode": "1F454", "unicode_alternates": [], "name": "necktie", "shortname": ":necktie:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "cloth", "fashion", "formal", "shirt", "suitup" ], "moji": "👔" }, "negative_squared_cross_mark": { "unicode": "274E", "unicode_alternates": [], "name": "negative squared cross mark", "shortname": ":negative_squared_cross_mark:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "deny", "green-square", "no", "x", "symbol" ], "moji": "❎" }, "nerd": { "unicode": "1F913", "unicode_alternates": [], "name": "nerd face", "shortname": ":nerd:", "category": "people", "aliases": [ ":nerd_face:" ], "aliases_ascii": [], "keywords": [ "smiley", "glasses" ], "moji": "🤓" }, "neutral_face": { "unicode": "1F610", "unicode_alternates": [], "name": "neutral face", "shortname": ":neutral_face:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "indifference", "neutral", "objective", "impartial", "blank", "mad", "smiley", "shrug", "emotion" ], "moji": "😐" }, "new": { "unicode": "1F195", "unicode_alternates": [], "name": "squared new", "shortname": ":new:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "symbol" ], "moji": "🆕" }, "new_moon": { "unicode": "1F311", "unicode_alternates": [], "name": "new moon symbol", "shortname": ":new_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "new", "sky", "night", "cheese", "phase", "space" ], "moji": "🌑" }, "new_moon_with_face": { "unicode": "1F31A", "unicode_alternates": [], "name": "new moon with face", "shortname": ":new_moon_with_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "new", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space", "goodnight" ], "moji": "🌚" }, "newspaper": { "unicode": "1F4F0", "unicode_alternates": [], "name": "newspaper", "shortname": ":newspaper:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "headline", "press", "office", "write" ], "moji": "📰" }, "newspaper2": { "unicode": "1F5DE", "unicode_alternates": [], "name": "rolled-up newspaper", "shortname": ":newspaper2:", "category": "objects", "aliases": [ ":rolled_up_newspaper:" ], "aliases_ascii": [], "keywords": [ "headline", "press", "office", "write" ], "moji": "🗞" }, "ng": { "unicode": "1F196", "unicode_alternates": [], "name": "squared ng", "shortname": ":ng:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "no good", "symbol", "word" ], "moji": "🆖" }, "night_with_stars": { "unicode": "1F303", "unicode_alternates": [], "name": "night with stars", "shortname": ":night_with_stars:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "star", "cloudless", "evening", "planets", "space", "sky", "places", "building", "vacation", "goodnight" ], "moji": "🌃" }, "nine": { "moji": "9️⃣", "unicode": "0039-20E3", "unicode_alternates": [ "0039-FE0F-20E3" ], "name": "keycap digit nine", "shortname": ":nine:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "9", "blue-square", "numbers", "number", "math", "symbol" ] }, "no_bell": { "unicode": "1F515", "unicode_alternates": [], "name": "bell with cancellation stroke", "shortname": ":no_bell:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "mute", "sound", "volume", "alarm", "symbol" ], "moji": "🔕" }, "no_bicycles": { "unicode": "1F6B3", "unicode_alternates": [], "name": "no bicycles", "shortname": ":no_bicycles:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cyclist", "prohibited", "bicycle", "bike pedal", "no", "symbol" ], "moji": "🚳" }, "no_entry": { "unicode": "26D4", "unicode_alternates": [ "26D4-FE0F" ], "name": "no entry", "shortname": ":no_entry:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "bad", "denied", "limit", "privacy", "security", "stop", "symbol", "circle" ], "moji": "⛔" }, "no_entry_sign": { "unicode": "1F6AB", "unicode_alternates": [], "name": "no entry sign", "shortname": ":no_entry_sign:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "denied", "disallow", "forbid", "limit", "stop", "no", "entry", "symbol", "circle" ], "moji": "🚫" }, "no_good": { "unicode": "1F645", "unicode_alternates": [], "name": "face with no good gesture", "shortname": ":no_good:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "no", "stop", "nope", "don't", "not", "people", "women", "diversity", "girls night" ], "moji": "🙅" }, "no_good_tone1": { "unicode": "1F645-1F3FB", "unicode_alternates": [], "name": "face with no good gesture tone 1", "shortname": ":no_good_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏻" }, "no_good_tone2": { "unicode": "1F645-1F3FC", "unicode_alternates": [], "name": "face with no good gesture tone 2", "shortname": ":no_good_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏼" }, "no_good_tone3": { "unicode": "1F645-1F3FD", "unicode_alternates": [], "name": "face with no good gesture tone 3", "shortname": ":no_good_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏽" }, "no_good_tone4": { "unicode": "1F645-1F3FE", "unicode_alternates": [], "name": "face with no good gesture tone 4", "shortname": ":no_good_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏾" }, "no_good_tone5": { "unicode": "1F645-1F3FF", "unicode_alternates": [], "name": "face with no good gesture tone 5", "shortname": ":no_good_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏿" }, "no_mobile_phones": { "unicode": "1F4F5", "unicode_alternates": [], "name": "no mobile phones", "shortname": ":no_mobile_phones:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "iphone", "mute", "symbol", "phone" ], "moji": "📵" }, "no_mouth": { "unicode": "1F636", "unicode_alternates": [], "name": "face without mouth", "shortname": ":no_mouth:", "category": "people", "aliases": [], "aliases_ascii": [ ":-X", ":X", ":-#", ":#", "=X", "=x", ":x", ":-x", "=#" ], "keywords": [ "face", "hellokitty", "mouth", "silent", "vapid", "mad", "smiley", "neutral", "emotion" ], "moji": "😶" }, "no_pedestrians": { "unicode": "1F6B7", "unicode_alternates": [], "name": "no pedestrians", "shortname": ":no_pedestrians:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "crossing", "rules", "walking", "no", "walk", "pedestrian", "stroll", "stride", "foot", "feet", "symbol" ], "moji": "🚷" }, "no_smoking": { "unicode": "1F6AD", "unicode_alternates": [], "name": "no smoking symbol", "shortname": ":no_smoking:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cigarette", "no", "smoking", "smoke", "cancer", "lungs", "inhale", "tar", "nicotine", "symbol" ], "moji": "🚭" }, "non-potable_water": { "unicode": "1F6B1", "unicode_alternates": [], "name": "non-potable water symbol", "shortname": ":non-potable_water:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "drink", "faucet", "tap", "non-potable", "water", "not drinkable", "dirty", "gross", "aqua", "h20", "symbol" ], "moji": "🚱" }, "nose": { "unicode": "1F443", "unicode_alternates": [], "name": "nose", "shortname": ":nose:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff", "body", "diversity" ], "moji": "👃" }, "nose_tone1": { "unicode": "1F443-1F3FB", "unicode_alternates": [], "name": "nose tone 1", "shortname": ":nose_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff" ], "moji": "👃🏻" }, "nose_tone2": { "unicode": "1F443-1F3FC", "unicode_alternates": [], "name": "nose tone 2", "shortname": ":nose_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff" ], "moji": "👃🏼" }, "nose_tone3": { "unicode": "1F443-1F3FD", "unicode_alternates": [], "name": "nose tone 3", "shortname": ":nose_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff" ], "moji": "👃🏽" }, "nose_tone4": { "unicode": "1F443-1F3FE", "unicode_alternates": [], "name": "nose tone 4", "shortname": ":nose_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff" ], "moji": "👃🏾" }, "nose_tone5": { "unicode": "1F443-1F3FF", "unicode_alternates": [], "name": "nose tone 5", "shortname": ":nose_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "smell", "sniff" ], "moji": "👃🏿" }, "notebook": { "unicode": "1F4D3", "unicode_alternates": [], "name": "notebook", "shortname": ":notebook:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "notes", "paper", "record", "stationery", "object", "office", "write" ], "moji": "📓" }, "notebook_with_decorative_cover": { "unicode": "1F4D4", "unicode_alternates": [], "name": "notebook with decorative cover", "shortname": ":notebook_with_decorative_cover:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "classroom", "notes", "paper", "record", "object", "office", "write" ], "moji": "📔" }, "notepad_spiral": { "unicode": "1F5D2", "unicode_alternates": [], "name": "spiral note pad", "shortname": ":notepad_spiral:", "category": "objects", "aliases": [ ":spiral_note_pad:" ], "aliases_ascii": [], "keywords": [ "stationery", "work", "office", "write" ], "moji": "🗒" }, "notes": { "unicode": "1F3B6", "unicode_alternates": [], "name": "multiple musical notes", "shortname": ":notes:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "music", "score", "musical", "notes", "sound", "melody", "instruments", "symbol" ], "moji": "🎶" }, "nut_and_bolt": { "unicode": "1F529", "unicode_alternates": [], "name": "nut and bolt", "shortname": ":nut_and_bolt:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "handy", "tools", "object", "tool", "nutcase" ], "moji": "🔩" }, "o": { "unicode": "2B55", "unicode_alternates": [ "2B55-FE0F" ], "name": "heavy large circle", "shortname": ":o:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "circle", "round", "symbol" ], "moji": "⭕" }, "o2": { "unicode": "1F17E", "unicode_alternates": [], "name": "negative squared latin capital letter o", "shortname": ":o2:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅾" }, "ocean": { "unicode": "1F30A", "unicode_alternates": [], "name": "water wave", "shortname": ":ocean:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "sea", "water", "wave", "ocean", "surf", "beach", "tide", "weather", "boat", "tropical", "swim" ], "moji": "🌊" }, "octagonal_sign": { "unicode": "1F6D1", "unicode_alternates": [], "name": "octagonal sign", "shortname": ":octagonal_sign:", "category": "symbols", "aliases": [ ":stop_sign:" ], "aliases_ascii": [], "keywords": [], "moji": "🛑" }, "octopus": { "unicode": "1F419", "unicode_alternates": [], "name": "octopus", "shortname": ":octopus:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "creature", "ocean", "sea", "wildlife" ], "moji": "🐙" }, "oden": { "unicode": "1F362", "unicode_alternates": [], "name": "oden", "shortname": ":oden:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "japanese", "oden", "seafood", "casserole", "stew" ], "moji": "🍢" }, "office": { "unicode": "1F3E2", "unicode_alternates": [], "name": "office building", "shortname": ":office:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "bureau", "work", "places" ], "moji": "🏢" }, "oil": { "unicode": "1F6E2", "unicode_alternates": [], "name": "oil drum", "shortname": ":oil:", "category": "objects", "aliases": [ ":oil_drum:" ], "aliases_ascii": [], "keywords": [ "petroleum", "object" ], "moji": "🛢" }, "ok": { "unicode": "1F197", "unicode_alternates": [], "name": "squared ok", "shortname": ":ok:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "agree", "blue-square", "good", "yes", "symbol" ], "moji": "🆗" }, "ok_hand": { "unicode": "1F44C", "unicode_alternates": [], "name": "ok hand sign", "shortname": ":ok_hand:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "ok", "smoke", "smoking", "marijuana", "joint", "pot", "420", "body", "hands", "hi", "diversity", "good", "beautiful" ], "moji": "👌" }, "ok_hand_tone1": { "unicode": "1F44C-1F3FB", "unicode_alternates": [], "name": "ok hand sign tone 1", "shortname": ":ok_hand_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏻" }, "ok_hand_tone2": { "unicode": "1F44C-1F3FC", "unicode_alternates": [], "name": "ok hand sign tone 2", "shortname": ":ok_hand_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏼" }, "ok_hand_tone3": { "unicode": "1F44C-1F3FD", "unicode_alternates": [], "name": "ok hand sign tone 3", "shortname": ":ok_hand_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏽" }, "ok_hand_tone4": { "unicode": "1F44C-1F3FE", "unicode_alternates": [], "name": "ok hand sign tone 4", "shortname": ":ok_hand_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏾" }, "ok_hand_tone5": { "unicode": "1F44C-1F3FF", "unicode_alternates": [], "name": "ok hand sign tone 5", "shortname": ":ok_hand_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏿" }, "ok_woman": { "unicode": "1F646", "unicode_alternates": [], "name": "face with ok gesture", "shortname": ":ok_woman:", "category": "people", "aliases": [], "aliases_ascii": [ "*\\0/*", "\\0/", "*\\O/*", "\\O/" ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "ok", "okay", "accept", "people", "diversity" ], "moji": "🙆" }, "ok_woman_tone1": { "unicode": "1F646-1F3FB", "unicode_alternates": [], "name": "face with ok gesture tone1", "shortname": ":ok_woman_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏻" }, "ok_woman_tone2": { "unicode": "1F646-1F3FC", "unicode_alternates": [], "name": "face with ok gesture tone2", "shortname": ":ok_woman_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏼" }, "ok_woman_tone3": { "unicode": "1F646-1F3FD", "unicode_alternates": [], "name": "face with ok gesture tone3", "shortname": ":ok_woman_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏽" }, "ok_woman_tone4": { "unicode": "1F646-1F3FE", "unicode_alternates": [], "name": "face with ok gesture tone4", "shortname": ":ok_woman_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏾" }, "ok_woman_tone5": { "unicode": "1F646-1F3FF", "unicode_alternates": [], "name": "face with ok gesture tone5", "shortname": ":ok_woman_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏿" }, "older_man": { "unicode": "1F474", "unicode_alternates": [], "name": "older man", "shortname": ":older_man:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "male", "men", "people", "old people", "diversity" ], "moji": "👴" }, "older_man_tone1": { "unicode": "1F474-1F3FB", "unicode_alternates": [], "name": "older man tone 1", "shortname": ":older_man_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏻" }, "older_man_tone2": { "unicode": "1F474-1F3FC", "unicode_alternates": [], "name": "older man tone 2", "shortname": ":older_man_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏼" }, "older_man_tone3": { "unicode": "1F474-1F3FD", "unicode_alternates": [], "name": "older man tone 3", "shortname": ":older_man_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏽" }, "older_man_tone4": { "unicode": "1F474-1F3FE", "unicode_alternates": [], "name": "older man tone 4", "shortname": ":older_man_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏾" }, "older_man_tone5": { "unicode": "1F474-1F3FF", "unicode_alternates": [], "name": "older man tone 5", "shortname": ":older_man_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏿" }, "older_woman": { "unicode": "1F475", "unicode_alternates": [], "name": "older woman", "shortname": ":older_woman:", "category": "people", "aliases": [ ":grandma:" ], "aliases_ascii": [], "keywords": [ "female", "girl", "women", "grandma", "grandmother", "people", "old people", "diversity" ], "moji": "👵" }, "older_woman_tone1": { "unicode": "1F475-1F3FB", "unicode_alternates": [], "name": "older woman tone 1", "shortname": ":older_woman_tone1:", "category": "people", "aliases": [ ":grandma_tone1:" ], "aliases_ascii": [], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏻" }, "older_woman_tone2": { "unicode": "1F475-1F3FC", "unicode_alternates": [], "name": "older woman tone 2", "shortname": ":older_woman_tone2:", "category": "people", "aliases": [ ":grandma_tone2:" ], "aliases_ascii": [], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏼" }, "older_woman_tone3": { "unicode": "1F475-1F3FD", "unicode_alternates": [], "name": "older woman tone 3", "shortname": ":older_woman_tone3:", "category": "people", "aliases": [ ":grandma_tone3:" ], "aliases_ascii": [], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏽" }, "older_woman_tone4": { "unicode": "1F475-1F3FE", "unicode_alternates": [], "name": "older woman tone 4", "shortname": ":older_woman_tone4:", "category": "people", "aliases": [ ":grandma_tone4:" ], "aliases_ascii": [], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏾" }, "older_woman_tone5": { "unicode": "1F475-1F3FF", "unicode_alternates": [], "name": "older woman tone 5", "shortname": ":older_woman_tone5:", "category": "people", "aliases": [ ":grandma_tone5:" ], "aliases_ascii": [], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏿" }, "om_symbol": { "unicode": "1F549", "unicode_alternates": [], "name": "om symbol", "shortname": ":om_symbol:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "hinduism", "sound", "spiritual", "icon", "dharmic", "buddhism", "jainism", "meditate", "religion", "symbol" ], "moji": "🕉" }, "on": { "unicode": "1F51B", "unicode_alternates": [], "name": "on with exclamation mark with left right arrow abo", "shortname": ":on:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔛" }, "oncoming_automobile": { "unicode": "1F698", "unicode_alternates": [], "name": "oncoming automobile", "shortname": ":oncoming_automobile:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "car", "transportation", "vehicle", "sedan", "automobile", "travel" ], "moji": "🚘" }, "oncoming_bus": { "unicode": "1F68D", "unicode_alternates": [], "name": "oncoming bus", "shortname": ":oncoming_bus:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "bus", "school", "city", "public", "travel" ], "moji": "🚍" }, "oncoming_police_car": { "unicode": "1F694", "unicode_alternates": [], "name": "oncoming police car", "shortname": ":oncoming_police_car:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "enforcement", "law", "vehicle", "police", "car", "emergency", "ticket", "citation", "crime", "help", "officer", "transportation", "911" ], "moji": "🚔" }, "oncoming_taxi": { "unicode": "1F696", "unicode_alternates": [], "name": "oncoming taxi", "shortname": ":oncoming_taxi:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "uber", "vehicle", "taxi", "car", "automobile", "city", "transport", "service", "transportation", "travel" ], "moji": "🚖" }, "one": { "moji": "1️⃣", "unicode": "0031-20E3", "unicode_alternates": [ "0031-FE0F-20E3" ], "name": "keycap digit one", "shortname": ":one:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "1", "blue-square", "numbers", "number", "math", "symbol" ] }, "open_file_folder": { "unicode": "1F4C2", "unicode_alternates": [], "name": "open file folder", "shortname": ":open_file_folder:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "load", "work", "office" ], "moji": "📂" }, "open_hands": { "unicode": "1F450", "unicode_alternates": [], "name": "open hands sign", "shortname": ":open_hands:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers", "body", "hands", "diversity", "condolence" ], "moji": "👐" }, "open_hands_tone1": { "unicode": "1F450-1F3FB", "unicode_alternates": [], "name": "open hands sign tone 1", "shortname": ":open_hands_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏻" }, "open_hands_tone2": { "unicode": "1F450-1F3FC", "unicode_alternates": [], "name": "open hands sign tone 2", "shortname": ":open_hands_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏼" }, "open_hands_tone3": { "unicode": "1F450-1F3FD", "unicode_alternates": [], "name": "open hands sign tone 3", "shortname": ":open_hands_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏽" }, "open_hands_tone4": { "unicode": "1F450-1F3FE", "unicode_alternates": [], "name": "open hands sign tone 4", "shortname": ":open_hands_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏾" }, "open_hands_tone5": { "unicode": "1F450-1F3FF", "unicode_alternates": [], "name": "open hands sign tone 5", "shortname": ":open_hands_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏿" }, "open_mouth": { "unicode": "1F62E", "unicode_alternates": [], "name": "face with open mouth", "shortname": ":open_mouth:", "category": "people", "aliases": [], "aliases_ascii": [ ":-O", ":O", ":-o", ":o", "O_O", ">:O" ], "keywords": [ "face", "impressed", "mouth", "open", "jaw", "gapping", "surprise", "wow", "smiley", "surprised", "emotion" ], "moji": "😮" }, "ophiuchus": { "unicode": "26CE", "unicode_alternates": [], "name": "ophiuchus", "shortname": ":ophiuchus:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "ophiuchus", "serpent", "snake", "astrology", "greek", "constellation", "stars", "zodiac", "purple-square", "sign", "horoscope", "symbol" ], "moji": "⛎" }, "orange_book": { "unicode": "1F4D9", "unicode_alternates": [], "name": "orange book", "shortname": ":orange_book:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "knowledge", "library", "read", "object", "office", "write", "book" ], "moji": "📙" }, "orthodox_cross": { "unicode": "2626", "unicode_alternates": [], "name": "orthodox cross", "shortname": ":orthodox_cross:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "christian", "religion", "symbol" ], "moji": "☦" }, "outbox_tray": { "unicode": "1F4E4", "unicode_alternates": [], "name": "outbox tray", "shortname": ":outbox_tray:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "email", "inbox", "work", "office" ], "moji": "📤" }, "owl": { "unicode": "1F989", "unicode_alternates": [], "name": "owl", "shortname": ":owl:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦉" }, "ox": { "unicode": "1F402", "unicode_alternates": [], "name": "ox", "shortname": ":ox:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "beef", "cow" ], "moji": "🐂" }, "package": { "unicode": "1F4E6", "unicode_alternates": [], "name": "package", "shortname": ":package:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "gift", "mail", "object", "office" ], "moji": "📦" }, "page_facing_up": { "unicode": "1F4C4", "unicode_alternates": [], "name": "page facing up", "shortname": ":page_facing_up:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "work", "office", "write" ], "moji": "📄" }, "page_with_curl": { "unicode": "1F4C3", "unicode_alternates": [], "name": "page with curl", "shortname": ":page_with_curl:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "office", "write" ], "moji": "📃" }, "pager": { "unicode": "1F4DF", "unicode_alternates": [], "name": "pager", "shortname": ":pager:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bbcall", "oldschool", "electronics", "work" ], "moji": "📟" }, "paintbrush": { "unicode": "1F58C", "unicode_alternates": [], "name": "lower left paintbrush", "shortname": ":paintbrush:", "category": "objects", "aliases": [ ":lower_left_paintbrush:" ], "aliases_ascii": [], "keywords": [ "brush", "art", "painting", "object", "office", "write" ], "moji": "🖌" }, "palm_tree": { "unicode": "1F334", "unicode_alternates": [], "name": "palm tree", "shortname": ":palm_tree:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "vegetable", "palm", "tree", "coconuts", "fronds", "warm", "tropical", "trees" ], "moji": "🌴" }, "pancakes": { "unicode": "1F95E", "unicode_alternates": [], "name": "pancakes", "shortname": ":pancakes:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥞" }, "panda_face": { "unicode": "1F43C", "unicode_alternates": [], "name": "panda face", "shortname": ":panda_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "panda", "bear", "face", "cub", "cute", "endearment", "friendship", "love", "bamboo", "china", "black", "white", "wildlife", "roar" ], "moji": "🐼" }, "paperclip": { "unicode": "1F4CE", "unicode_alternates": [], "name": "paperclip", "shortname": ":paperclip:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "stationery", "object", "work", "office" ], "moji": "📎" }, "paperclips": { "unicode": "1F587", "unicode_alternates": [], "name": "linked paperclips", "shortname": ":paperclips:", "category": "objects", "aliases": [ ":linked_paperclips:" ], "aliases_ascii": [], "keywords": [ "documents", "stationery", "object", "work", "office" ], "moji": "🖇" }, "park": { "unicode": "1F3DE", "unicode_alternates": [], "name": "national park", "shortname": ":park:", "category": "travel", "aliases": [ ":national_park:" ], "aliases_ascii": [], "keywords": [ "woods", "nature", "wildlife", "forest", "wilderness", "national", "travel", "vacation", "park", "camp" ], "moji": "🏞" }, "parking": { "unicode": "1F17F", "unicode_alternates": [ "1F17F-FE0F" ], "name": "negative squared latin capital letter p", "shortname": ":parking:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "blue-square", "cars", "letter", "symbol" ], "moji": "🅿" }, "part_alternation_mark": { "unicode": "303D", "unicode_alternates": [ "303D-FE0F" ], "name": "part alternation mark", "shortname": ":part_alternation_mark:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "graph", "sing", "song", "vocal", "music", "karaoke", "cue", "letter", "m", "japanese", "symbol" ], "moji": "〽" }, "partly_sunny": { "unicode": "26C5", "unicode_alternates": [ "26C5-FE0F" ], "name": "sun behind cloud", "shortname": ":partly_sunny:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "cloud", "morning", "nature", "weather", "sky", "sun" ], "moji": "⛅" }, "passport_control": { "unicode": "1F6C2", "unicode_alternates": [], "name": "passport control", "shortname": ":passport_control:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "custom", "passport", "official", "travel", "control", "foreign", "identification", "symbol" ], "moji": "🛂" }, "pause_button": { "unicode": "23F8", "unicode_alternates": [], "name": "double vertical bar", "shortname": ":pause_button:", "category": "symbols", "aliases": [ ":double_vertical_bar:" ], "aliases_ascii": [], "keywords": [ "pause", "sound", "symbol" ], "moji": "⏸" }, "peace": { "unicode": "262E", "unicode_alternates": [], "name": "peace symbol", "shortname": ":peace:", "category": "symbols", "aliases": [ ":peace_symbol:" ], "aliases_ascii": [], "keywords": [ "sign", "symbol", "peace", "drugs" ], "moji": "☮" }, "peach": { "unicode": "1F351", "unicode_alternates": [], "name": "peach", "shortname": ":peach:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "peach", "juicy", "pit", "butt" ], "moji": "🍑" }, "peanuts": { "unicode": "1F95C", "unicode_alternates": [], "name": "peanuts", "shortname": ":peanuts:", "category": "food", "aliases": [ ":shelled_peanut:" ], "aliases_ascii": [], "keywords": [], "moji": "🥜" }, "pear": { "unicode": "1F350", "unicode_alternates": [], "name": "pear", "shortname": ":pear:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "fruit", "nature", "pear", "shape", "food" ], "moji": "🍐" }, "pen_ballpoint": { "unicode": "1F58A", "unicode_alternates": [], "name": "lower left ballpoint pen", "shortname": ":pen_ballpoint:", "category": "objects", "aliases": [ ":lower_left_ballpoint_pen:" ], "aliases_ascii": [], "keywords": [ "write", "bic", "ink", "object", "office" ], "moji": "🖊" }, "pen_fountain": { "unicode": "1F58B", "unicode_alternates": [], "name": "lower left fountain pen", "shortname": ":pen_fountain:", "category": "objects", "aliases": [ ":lower_left_fountain_pen:" ], "aliases_ascii": [], "keywords": [ "write", "calligraphy", "ink", "object", "office" ], "moji": "🖋" }, "pencil": { "unicode": "1F4DD", "unicode_alternates": [], "name": "memo", "shortname": ":pencil:", "category": "objects", "aliases": [ ":memo:" ], "aliases_ascii": [], "keywords": [ "documents", "paper", "station", "write", "work", "office" ], "moji": "📝" }, "pencil2": { "unicode": "270F", "unicode_alternates": [ "270F-FE0F" ], "name": "pencil", "shortname": ":pencil2:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "paper", "stationery", "write", "object", "office" ], "moji": "✏" }, "penguin": { "unicode": "1F427", "unicode_alternates": [], "name": "penguin", "shortname": ":penguin:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐧" }, "pensive": { "unicode": "1F614", "unicode_alternates": [], "name": "pensive face", "shortname": ":pensive:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "okay", "sad", "pensive", "thoughtful", "think", "reflective", "wistful", "meditate", "serious", "smiley", "emotion", "rip" ], "moji": "😔" }, "performing_arts": { "unicode": "1F3AD", "unicode_alternates": [], "name": "performing arts", "shortname": ":performing_arts:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "acting", "drama", "theater", "performing", "arts", "performance", "entertainment", "story", "mask", "masks", "theatre", "movie" ], "moji": "🎭" }, "persevere": { "unicode": "1F623", "unicode_alternates": [], "name": "persevering face", "shortname": ":persevere:", "category": "people", "aliases": [], "aliases_ascii": [ ">.<" ], "keywords": [ "endure", "persevere", "face", "no", "sick", "upset", "sad", "smiley", "angry", "emotion" ], "moji": "😣" }, "person_frowning": { "unicode": "1F64D", "unicode_alternates": [], "name": "person frowning", "shortname": ":person_frowning:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown", "people", "women", "diversity" ], "moji": "🙍" }, "person_frowning_tone1": { "unicode": "1F64D-1F3FB", "unicode_alternates": [], "name": "person frowning tone 1", "shortname": ":person_frowning_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏻" }, "person_frowning_tone2": { "unicode": "1F64D-1F3FC", "unicode_alternates": [], "name": "person frowning tone 2", "shortname": ":person_frowning_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏼" }, "person_frowning_tone3": { "unicode": "1F64D-1F3FD", "unicode_alternates": [], "name": "person frowning tone 3", "shortname": ":person_frowning_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏽" }, "person_frowning_tone4": { "unicode": "1F64D-1F3FE", "unicode_alternates": [], "name": "person frowning tone 4", "shortname": ":person_frowning_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏾" }, "person_frowning_tone5": { "unicode": "1F64D-1F3FF", "unicode_alternates": [], "name": "person frowning tone 5", "shortname": ":person_frowning_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏿" }, "person_with_blond_hair": { "unicode": "1F471", "unicode_alternates": [], "name": "person with blond hair", "shortname": ":person_with_blond_hair:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental", "people", "men", "diversity" ], "moji": "👱" }, "person_with_blond_hair_tone1": { "unicode": "1F471-1F3FB", "unicode_alternates": [], "name": "person with blond hair tone 1", "shortname": ":person_with_blond_hair_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏻" }, "person_with_blond_hair_tone2": { "unicode": "1F471-1F3FC", "unicode_alternates": [], "name": "person with blond hair tone 2", "shortname": ":person_with_blond_hair_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏼" }, "person_with_blond_hair_tone3": { "unicode": "1F471-1F3FD", "unicode_alternates": [], "name": "person with blond hair tone 3", "shortname": ":person_with_blond_hair_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏽" }, "person_with_blond_hair_tone4": { "unicode": "1F471-1F3FE", "unicode_alternates": [], "name": "person with blond hair tone 4", "shortname": ":person_with_blond_hair_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏾" }, "person_with_blond_hair_tone5": { "unicode": "1F471-1F3FF", "unicode_alternates": [], "name": "person with blond hair tone 5", "shortname": ":person_with_blond_hair_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏿" }, "person_with_pouting_face": { "unicode": "1F64E", "unicode_alternates": [], "name": "person with pouting face", "shortname": ":person_with_pouting_face:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed", "people", "women", "diversity" ], "moji": "🙎" }, "person_with_pouting_face_tone1": { "unicode": "1F64E-1F3FB", "unicode_alternates": [], "name": "person with pouting face tone1", "shortname": ":person_with_pouting_face_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏻" }, "person_with_pouting_face_tone2": { "unicode": "1F64E-1F3FC", "unicode_alternates": [], "name": "person with pouting face tone2", "shortname": ":person_with_pouting_face_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏼" }, "person_with_pouting_face_tone3": { "unicode": "1F64E-1F3FD", "unicode_alternates": [], "name": "person with pouting face tone3", "shortname": ":person_with_pouting_face_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏽" }, "person_with_pouting_face_tone4": { "unicode": "1F64E-1F3FE", "unicode_alternates": [], "name": "person with pouting face tone4", "shortname": ":person_with_pouting_face_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏾" }, "person_with_pouting_face_tone5": { "unicode": "1F64E-1F3FF", "unicode_alternates": [], "name": "person with pouting face tone5", "shortname": ":person_with_pouting_face_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏿" }, "pick": { "unicode": "26CF", "unicode_alternates": [], "name": "pick", "shortname": ":pick:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "mining", "object", "tool", "weapon" ], "moji": "⛏" }, "pig": { "unicode": "1F437", "unicode_alternates": [], "name": "pig face", "shortname": ":pig:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "oink" ], "moji": "🐷" }, "pig2": { "unicode": "1F416", "unicode_alternates": [], "name": "pig", "shortname": ":pig2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "pig", "piggy", "pork", "ham", "hog", "bacon", "oink", "slop", "livestock", "greed", "greedy" ], "moji": "🐖" }, "pig_nose": { "unicode": "1F43D", "unicode_alternates": [], "name": "pig nose", "shortname": ":pig_nose:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "oink", "pig", "nose", "snout", "food", "eat", "cute", "pink", "smell", "truffle" ], "moji": "🐽" }, "pill": { "unicode": "1F48A", "unicode_alternates": [], "name": "pill", "shortname": ":pill:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "health", "medicine", "object", "drugs" ], "moji": "💊" }, "pineapple": { "unicode": "1F34D", "unicode_alternates": [], "name": "pineapple", "shortname": ":pineapple:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "pineapple", "pina", "tropical", "flower" ], "moji": "🍍" }, "ping_pong": { "unicode": "1F3D3", "unicode_alternates": [], "name": "table tennis paddle and ball", "shortname": ":ping_pong:", "category": "activity", "aliases": [ ":table_tennis:" ], "aliases_ascii": [], "keywords": [ "game", "ball", "sport", "ping pong" ], "moji": "🏓" }, "pisces": { "unicode": "2653", "unicode_alternates": [ "2653-FE0F" ], "name": "pisces", "shortname": ":pisces:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "pisces", "fish", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♓" }, "pizza": { "unicode": "1F355", "unicode_alternates": [], "name": "slice of pizza", "shortname": ":pizza:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "party", "pizza", "pie", "new york", "italian", "italy", "slice", "peperoni", "boys night" ], "moji": "🍕" }, "place_of_worship": { "unicode": "1F6D0", "unicode_alternates": [], "name": "place of worship", "shortname": ":place_of_worship:", "category": "symbols", "aliases": [ ":worship_symbol:" ], "aliases_ascii": [], "keywords": [ "religion", "symbol", "pray" ], "moji": "🛐" }, "play_pause": { "unicode": "23EF", "unicode_alternates": [], "name": "black right-pointing double triangle with double vertical bar", "shortname": ":play_pause:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "pause", "play", "right", "sound", "symbol" ], "moji": "⏯" }, "point_down": { "unicode": "1F447", "unicode_alternates": [], "name": "white down pointing backhand index", "shortname": ":point_down:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "fingers", "hand", "body", "hands", "diversity" ], "moji": "👇" }, "point_down_tone1": { "unicode": "1F447-1F3FB", "unicode_alternates": [], "name": "white down pointing backhand index tone 1", "shortname": ":point_down_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏻" }, "point_down_tone2": { "unicode": "1F447-1F3FC", "unicode_alternates": [], "name": "white down pointing backhand index tone 2", "shortname": ":point_down_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏼" }, "point_down_tone3": { "unicode": "1F447-1F3FD", "unicode_alternates": [], "name": "white down pointing backhand index tone 3", "shortname": ":point_down_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏽" }, "point_down_tone4": { "unicode": "1F447-1F3FE", "unicode_alternates": [], "name": "white down pointing backhand index tone 4", "shortname": ":point_down_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏾" }, "point_down_tone5": { "unicode": "1F447-1F3FF", "unicode_alternates": [], "name": "white down pointing backhand index tone 5", "shortname": ":point_down_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏿" }, "point_left": { "unicode": "1F448", "unicode_alternates": [], "name": "white left pointing backhand index", "shortname": ":point_left:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "fingers", "hand", "body", "hands", "hi", "diversity" ], "moji": "👈" }, "point_left_tone1": { "unicode": "1F448-1F3FB", "unicode_alternates": [], "name": "white left pointing backhand index tone 1", "shortname": ":point_left_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏻" }, "point_left_tone2": { "unicode": "1F448-1F3FC", "unicode_alternates": [], "name": "white left pointing backhand index tone 2", "shortname": ":point_left_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏼" }, "point_left_tone3": { "unicode": "1F448-1F3FD", "unicode_alternates": [], "name": "white left pointing backhand index tone 3", "shortname": ":point_left_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏽" }, "point_left_tone4": { "unicode": "1F448-1F3FE", "unicode_alternates": [], "name": "white left pointing backhand index tone 4", "shortname": ":point_left_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏾" }, "point_left_tone5": { "unicode": "1F448-1F3FF", "unicode_alternates": [], "name": "white left pointing backhand index tone 5", "shortname": ":point_left_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏿" }, "point_right": { "unicode": "1F449", "unicode_alternates": [], "name": "white right pointing backhand index", "shortname": ":point_right:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "fingers", "hand", "body", "hands", "hi", "diversity" ], "moji": "👉" }, "point_right_tone1": { "unicode": "1F449-1F3FB", "unicode_alternates": [], "name": "white right pointing backhand index tone 1", "shortname": ":point_right_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏻" }, "point_right_tone2": { "unicode": "1F449-1F3FC", "unicode_alternates": [], "name": "white right pointing backhand index tone 2", "shortname": ":point_right_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏼" }, "point_right_tone3": { "unicode": "1F449-1F3FD", "unicode_alternates": [], "name": "white right pointing backhand index tone 3", "shortname": ":point_right_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏽" }, "point_right_tone4": { "unicode": "1F449-1F3FE", "unicode_alternates": [], "name": "white right pointing backhand index tone 4", "shortname": ":point_right_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏾" }, "point_right_tone5": { "unicode": "1F449-1F3FF", "unicode_alternates": [], "name": "white right pointing backhand index tone 5", "shortname": ":point_right_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏿" }, "point_up": { "unicode": "261D", "unicode_alternates": [ "261D-FE0F" ], "name": "white up pointing index", "shortname": ":point_up:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "fingers", "hand", "body", "hands", "emojione", "diversity" ], "moji": "☝" }, "point_up_2": { "unicode": "1F446", "unicode_alternates": [], "name": "white up pointing backhand index", "shortname": ":point_up_2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "fingers", "hand", "body", "hands", "diversity" ], "moji": "👆" }, "point_up_2_tone1": { "unicode": "1F446-1F3FB", "unicode_alternates": [], "name": "white up pointing backhand index tone 1", "shortname": ":point_up_2_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏻" }, "point_up_2_tone2": { "unicode": "1F446-1F3FC", "unicode_alternates": [], "name": "white up pointing backhand index tone 2", "shortname": ":point_up_2_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏼" }, "point_up_2_tone3": { "unicode": "1F446-1F3FD", "unicode_alternates": [], "name": "white up pointing backhand index tone 3", "shortname": ":point_up_2_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏽" }, "point_up_2_tone4": { "unicode": "1F446-1F3FE", "unicode_alternates": [], "name": "white up pointing backhand index tone 4", "shortname": ":point_up_2_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏾" }, "point_up_2_tone5": { "unicode": "1F446-1F3FF", "unicode_alternates": [], "name": "white up pointing backhand index tone 5", "shortname": ":point_up_2_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏿" }, "point_up_tone1": { "unicode": "261D-1F3FB", "unicode_alternates": [], "name": "white up pointing index tone 1", "shortname": ":point_up_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏻" }, "point_up_tone2": { "unicode": "261D-1F3FC", "unicode_alternates": [], "name": "white up pointing index tone 2", "shortname": ":point_up_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏼" }, "point_up_tone3": { "unicode": "261D-1F3FD", "unicode_alternates": [], "name": "white up pointing index tone 3", "shortname": ":point_up_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏽" }, "point_up_tone4": { "unicode": "261D-1F3FE", "unicode_alternates": [], "name": "white up pointing index tone 4", "shortname": ":point_up_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏾" }, "point_up_tone5": { "unicode": "261D-1F3FF", "unicode_alternates": [], "name": "white up pointing index tone 5", "shortname": ":point_up_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏿" }, "police_car": { "unicode": "1F693", "unicode_alternates": [], "name": "police car", "shortname": ":police_car:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "enforcement", "law", "transportation", "vehicle", "police", "car", "emergency", "ticket", "citation", "crime", "help", "officer", "911" ], "moji": "🚓" }, "poodle": { "unicode": "1F429", "unicode_alternates": [], "name": "poodle", "shortname": ":poodle:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "101", "animal", "dog", "nature", "poodle", "clip", "showy", "sophisticated", "vain" ], "moji": "🐩" }, "poop": { "unicode": "1F4A9", "unicode_alternates": [], "name": "pile of poo", "shortname": ":poop:", "category": "people", "aliases": [ ":shit:", ":hankey:", ":poo:" ], "aliases_ascii": [], "keywords": [ "poop", "shit", "shitface", "turd", "poo", "bathroom", "sol", "diarrhea" ], "moji": "💩" }, "popcorn": { "unicode": "1F37F", "unicode_alternates": [], "name": "popcorn", "shortname": ":popcorn:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "parties" ], "moji": "🍿" }, "post_office": { "unicode": "1F3E3", "unicode_alternates": [], "name": "japanese post office", "shortname": ":post_office:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "communication", "email", "places", "post office" ], "moji": "🏣" }, "postal_horn": { "unicode": "1F4EF", "unicode_alternates": [], "name": "postal horn", "shortname": ":postal_horn:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "instrument", "music", "object" ], "moji": "📯" }, "postbox": { "unicode": "1F4EE", "unicode_alternates": [], "name": "postbox", "shortname": ":postbox:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "email", "envelope", "letter", "object" ], "moji": "📮" }, "potable_water": { "unicode": "1F6B0", "unicode_alternates": [], "name": "potable water symbol", "shortname": ":potable_water:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "cleaning", "faucet", "liquid", "restroom", "potable", "water", "drinkable", "pure", "clear", "clean", "aqua", "h20", "symbol" ], "moji": "🚰" }, "potato": { "unicode": "1F954", "unicode_alternates": [], "name": "potato", "shortname": ":potato:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥔" }, "pouch": { "unicode": "1F45D", "unicode_alternates": [], "name": "pouch", "shortname": ":pouch:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "bag", "pouch", "cosmetic", "packing", "grandma", "makeup", "women", "fashion" ], "moji": "👝" }, "poultry_leg": { "unicode": "1F357", "unicode_alternates": [], "name": "poultry leg", "shortname": ":poultry_leg:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "meat", "poultry", "leg", "chicken", "fried", "holidays" ], "moji": "🍗" }, "pound": { "unicode": "1F4B7", "unicode_alternates": [], "name": "banknote with pound sign", "shortname": ":pound:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bills", "british", "currency", "england", "money", "sterling", "uk", "pound", "britain", "banknote", "paper", "cash" ], "moji": "💷" }, "pouting_cat": { "unicode": "1F63E", "unicode_alternates": [], "name": "pouting cat face", "shortname": ":pouting_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "pout", "annoyed", "miffed", "glower", "frown", "cat" ], "moji": "😾" }, "pray": { "unicode": "1F64F", "unicode_alternates": [], "name": "person with folded hands", "shortname": ":pray:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "hands", "sorrow", "regret", "sorry", "body", "hi", "luck", "thank you", "diversity", "scientology" ], "moji": "🙏" }, "pray_tone1": { "unicode": "1F64F-1F3FB", "unicode_alternates": [], "name": "person with folded hands tone 1", "shortname": ":pray_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏻" }, "pray_tone2": { "unicode": "1F64F-1F3FC", "unicode_alternates": [], "name": "person with folded hands tone 2", "shortname": ":pray_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏼" }, "pray_tone3": { "unicode": "1F64F-1F3FD", "unicode_alternates": [], "name": "person with folded hands tone 3", "shortname": ":pray_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏽" }, "pray_tone4": { "unicode": "1F64F-1F3FE", "unicode_alternates": [], "name": "person with folded hands tone 4", "shortname": ":pray_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏾" }, "pray_tone5": { "unicode": "1F64F-1F3FF", "unicode_alternates": [], "name": "person with folded hands tone 5", "shortname": ":pray_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏿" }, "prayer_beads": { "unicode": "1F4FF", "unicode_alternates": [], "name": "prayer beads", "shortname": ":prayer_beads:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "object", "rosary" ], "moji": "📿" }, "pregnant_woman": { "unicode": "1F930", "unicode_alternates": [], "name": "pregnant woman", "shortname": ":pregnant_woman:", "category": "people", "aliases": [ ":expecting_woman:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰" }, "pregnant_woman_tone1": { "unicode": "1F930-1F3FB", "unicode_alternates": [], "name": "pregnant woman tone 1", "shortname": ":pregnant_woman_tone1:", "category": "people", "aliases": [ ":expecting_woman_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰🏻" }, "pregnant_woman_tone2": { "unicode": "1F930-1F3FC", "unicode_alternates": [], "name": "pregnant woman tone 2", "shortname": ":pregnant_woman_tone2:", "category": "people", "aliases": [ ":expecting_woman_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰🏼" }, "pregnant_woman_tone3": { "unicode": "1F930-1F3FD", "unicode_alternates": [], "name": "pregnant woman tone 3", "shortname": ":pregnant_woman_tone3:", "category": "people", "aliases": [ ":expecting_woman_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰🏽" }, "pregnant_woman_tone4": { "unicode": "1F930-1F3FE", "unicode_alternates": [], "name": "pregnant woman tone 4", "shortname": ":pregnant_woman_tone4:", "category": "people", "aliases": [ ":expecting_woman_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰🏾" }, "pregnant_woman_tone5": { "unicode": "1F930-1F3FF", "unicode_alternates": [], "name": "pregnant woman tone 5", "shortname": ":pregnant_woman_tone5:", "category": "people", "aliases": [ ":expecting_woman_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤰🏿" }, "prince": { "unicode": "1F934", "unicode_alternates": [], "name": "prince", "shortname": ":prince:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴" }, "prince_tone1": { "unicode": "1F934-1F3FB", "unicode_alternates": [], "name": "prince tone 1", "shortname": ":prince_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴🏻" }, "prince_tone2": { "unicode": "1F934-1F3FC", "unicode_alternates": [], "name": "prince tone 2", "shortname": ":prince_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴🏼" }, "prince_tone3": { "unicode": "1F934-1F3FD", "unicode_alternates": [], "name": "prince tone 3", "shortname": ":prince_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴🏽" }, "prince_tone4": { "unicode": "1F934-1F3FE", "unicode_alternates": [], "name": "prince tone 4", "shortname": ":prince_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴🏾" }, "prince_tone5": { "unicode": "1F934-1F3FF", "unicode_alternates": [], "name": "prince tone 5", "shortname": ":prince_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤴🏿" }, "princess": { "unicode": "1F478", "unicode_alternates": [], "name": "princess", "shortname": ":princess:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "princess", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance", "people", "women", "diversity", "beautiful", "girls night" ], "moji": "👸" }, "princess_tone1": { "unicode": "1F478-1F3FB", "unicode_alternates": [], "name": "princess tone 1", "shortname": ":princess_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏻" }, "princess_tone2": { "unicode": "1F478-1F3FC", "unicode_alternates": [], "name": "princess tone 2", "shortname": ":princess_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏼" }, "princess_tone3": { "unicode": "1F478-1F3FD", "unicode_alternates": [], "name": "princess tone 3", "shortname": ":princess_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏽" }, "princess_tone4": { "unicode": "1F478-1F3FE", "unicode_alternates": [], "name": "princess tone 4", "shortname": ":princess_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏾" }, "princess_tone5": { "unicode": "1F478-1F3FF", "unicode_alternates": [], "name": "princess tone 5", "shortname": ":princess_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏿" }, "printer": { "unicode": "1F5A8", "unicode_alternates": [], "name": "printer", "shortname": ":printer:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "hardcopy", "paper", "inkjet", "laser", "electronics", "work", "office" ], "moji": "🖨" }, "projector": { "unicode": "1F4FD", "unicode_alternates": [], "name": "film projector", "shortname": ":projector:", "category": "objects", "aliases": [ ":film_projector:" ], "aliases_ascii": [], "keywords": [ "movie", "video", "motion", "picture", "8mm", "16mm", "object", "camera" ], "moji": "📽" }, "punch": { "unicode": "1F44A", "unicode_alternates": [], "name": "fisted hand sign", "shortname": ":punch:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "hand", "body", "hands", "hi", "fist bump", "diversity", "boys night" ], "moji": "👊" }, "punch_tone1": { "unicode": "1F44A-1F3FB", "unicode_alternates": [], "name": "fisted hand sign tone 1", "shortname": ":punch_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "punch" ], "moji": "👊🏻" }, "punch_tone2": { "unicode": "1F44A-1F3FC", "unicode_alternates": [], "name": "fisted hand sign tone 2", "shortname": ":punch_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "punch" ], "moji": "👊🏼" }, "punch_tone3": { "unicode": "1F44A-1F3FD", "unicode_alternates": [], "name": "fisted hand sign tone 3", "shortname": ":punch_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "punch" ], "moji": "👊🏽" }, "punch_tone4": { "unicode": "1F44A-1F3FE", "unicode_alternates": [], "name": "fisted hand sign tone 4", "shortname": ":punch_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "punch" ], "moji": "👊🏾" }, "punch_tone5": { "unicode": "1F44A-1F3FF", "unicode_alternates": [], "name": "fisted hand sign tone 5", "shortname": ":punch_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fist", "punch" ], "moji": "👊🏿" }, "purple_heart": { "unicode": "1F49C", "unicode_alternates": [], "name": "purple heart", "shortname": ":purple_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "purple", "violet", "heart", "sensitive", "understanding", "compassionate", "compassion", "duty", "honor", "royalty", "veteran", "sacrifice", "symbol" ], "moji": "💜" }, "purse": { "unicode": "1F45B", "unicode_alternates": [], "name": "purse", "shortname": ":purse:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "fashion", "money", "purse", "clutch", "bag", "handbag", "coin bag", "accessory", "ladies", "shopping", "women" ], "moji": "👛" }, "pushpin": { "unicode": "1F4CC", "unicode_alternates": [], "name": "pushpin", "shortname": ":pushpin:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "stationery", "object", "office" ], "moji": "📌" }, "put_litter_in_its_place": { "unicode": "1F6AE", "unicode_alternates": [], "name": "put litter in its place symbol", "shortname": ":put_litter_in_its_place:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "litter", "waste", "trash", "garbage", "receptacle", "can", "symbol" ], "moji": "🚮" }, "question": { "unicode": "2753", "unicode_alternates": [], "name": "black question mark ornament", "shortname": ":question:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "confused", "doubt", "symbol", "punctuation", "wth" ], "moji": "❓" }, "rabbit": { "unicode": "1F430", "unicode_alternates": [], "name": "rabbit face", "shortname": ":rabbit:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐰" }, "rabbit2": { "unicode": "1F407", "unicode_alternates": [], "name": "rabbit", "shortname": ":rabbit2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "rabbit", "bunny", "easter", "reproduction", "prolific", "wildlife" ], "moji": "🐇" }, "race_car": { "unicode": "1F3CE", "unicode_alternates": [], "name": "racing car", "shortname": ":race_car:", "category": "travel", "aliases": [ ":racing_car:" ], "aliases_ascii": [], "keywords": [ "formula 1", "race", "stock", "nascar", "speed", "drive", "transportation", "car" ], "moji": "🏎" }, "racehorse": { "unicode": "1F40E", "unicode_alternates": [], "name": "horse", "shortname": ":racehorse:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "gamble", "horse", "powerful", "draft", "calvary", "cowboy", "cowgirl", "mounted", "race", "ride", "gallop", "trot", "colt", "filly", "mare", "stallion", "gelding", "yearling", "thoroughbred", "pony", "wildlife" ], "moji": "🐎" }, "radio": { "unicode": "1F4FB", "unicode_alternates": [], "name": "radio", "shortname": ":radio:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "music", "podcast", "program", "electronics" ], "moji": "📻" }, "radio_button": { "unicode": "1F518", "unicode_alternates": [], "name": "radio button", "shortname": ":radio_button:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "input", "symbol", "circle" ], "moji": "🔘" }, "radioactive": { "unicode": "2622", "unicode_alternates": [], "name": "radioactive sign", "shortname": ":radioactive:", "category": "symbols", "aliases": [ ":radioactive_sign:" ], "aliases_ascii": [], "keywords": [ "symbol", "science" ], "moji": "☢" }, "rage": { "unicode": "1F621", "unicode_alternates": [], "name": "pouting face", "shortname": ":rage:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "angry", "despise", "hate", "mad", "pout", "anger", "rage", "irate", "smiley", "emotion" ], "moji": "😡" }, "railway_car": { "unicode": "1F683", "unicode_alternates": [], "name": "railway car", "shortname": ":railway_car:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "railway", "rail", "car", "coach", "train", "travel" ], "moji": "🚃" }, "railway_track": { "unicode": "1F6E4", "unicode_alternates": [], "name": "railway track", "shortname": ":railway_track:", "category": "travel", "aliases": [ ":railroad_track:" ], "aliases_ascii": [], "keywords": [ "train", "trolley", "subway", "locomotive", "transit", "travel", "vacation" ], "moji": "🛤" }, "rainbow": { "unicode": "1F308", "unicode_alternates": [], "name": "rainbow", "shortname": ":rainbow:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "happy", "nature", "photo", "sky", "unicorn", "rainbow", "color", "pride", "diversity", "spectrum", "refract", "leprechaun", "gold", "weather", "gay", "rain" ], "moji": "🌈" }, "raised_back_of_hand": { "unicode": "1F91A", "unicode_alternates": [], "name": "raised back of hand", "shortname": ":raised_back_of_hand:", "category": "people", "aliases": [ ":back_of_hand:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚" }, "raised_back_of_hand_tone1": { "unicode": "1F91A-1F3FB", "unicode_alternates": [], "name": "raised back of hand tone 1", "shortname": ":raised_back_of_hand_tone1:", "category": "people", "aliases": [ ":back_of_hand_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚🏻" }, "raised_back_of_hand_tone2": { "unicode": "1F91A-1F3FC", "unicode_alternates": [], "name": "raised back of hand tone 2", "shortname": ":raised_back_of_hand_tone2:", "category": "people", "aliases": [ ":back_of_hand_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚🏼" }, "raised_back_of_hand_tone3": { "unicode": "1F91A-1F3FD", "unicode_alternates": [], "name": "raised back of hand tone 3", "shortname": ":raised_back_of_hand_tone3:", "category": "people", "aliases": [ ":back_of_hand_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚🏽" }, "raised_back_of_hand_tone4": { "unicode": "1F91A-1F3FE", "unicode_alternates": [], "name": "raised back of hand tone 4", "shortname": ":raised_back_of_hand_tone4:", "category": "people", "aliases": [ ":back_of_hand_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚🏾" }, "raised_back_of_hand_tone5": { "unicode": "1F91A-1F3FF", "unicode_alternates": [], "name": "raised back of hand tone 5", "shortname": ":raised_back_of_hand_tone5:", "category": "people", "aliases": [ ":back_of_hand_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤚🏿" }, "raised_hand": { "unicode": "270B", "unicode_alternates": [], "name": "raised hand", "shortname": ":raised_hand:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "body", "hands", "hi", "diversity", "girls night" ], "moji": "✋" }, "raised_hand_tone1": { "unicode": "270B-1F3FB", "unicode_alternates": [], "name": "raised hand tone 1", "shortname": ":raised_hand_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏻" }, "raised_hand_tone2": { "unicode": "270B-1F3FC", "unicode_alternates": [], "name": "raised hand tone 2", "shortname": ":raised_hand_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏼" }, "raised_hand_tone3": { "unicode": "270B-1F3FD", "unicode_alternates": [], "name": "raised hand tone 3", "shortname": ":raised_hand_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏽" }, "raised_hand_tone4": { "unicode": "270B-1F3FE", "unicode_alternates": [], "name": "raised hand tone 4", "shortname": ":raised_hand_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏾" }, "raised_hand_tone5": { "unicode": "270B-1F3FF", "unicode_alternates": [], "name": "raised hand tone 5", "shortname": ":raised_hand_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏿" }, "raised_hands": { "unicode": "1F64C", "unicode_alternates": [], "name": "person raising both hands in celebration", "shortname": ":raised_hands:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "body", "hands", "diversity", "perfect", "good", "parties" ], "moji": "🙌" }, "raised_hands_tone1": { "unicode": "1F64C-1F3FB", "unicode_alternates": [], "name": "person raising both hands in celebration tone 1", "shortname": ":raised_hands_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏻" }, "raised_hands_tone2": { "unicode": "1F64C-1F3FC", "unicode_alternates": [], "name": "person raising both hands in celebration tone 2", "shortname": ":raised_hands_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏼" }, "raised_hands_tone3": { "unicode": "1F64C-1F3FD", "unicode_alternates": [], "name": "person raising both hands in celebration tone 3", "shortname": ":raised_hands_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏽" }, "raised_hands_tone4": { "unicode": "1F64C-1F3FE", "unicode_alternates": [], "name": "person raising both hands in celebration tone 4", "shortname": ":raised_hands_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏾" }, "raised_hands_tone5": { "unicode": "1F64C-1F3FF", "unicode_alternates": [], "name": "person raising both hands in celebration tone 5", "shortname": ":raised_hands_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏿" }, "raising_hand": { "unicode": "1F64B", "unicode_alternates": [], "name": "happy person raising one hand", "shortname": ":raising_hand:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "hand", "raise", "notice", "attention", "answer", "people", "women", "diversity" ], "moji": "🙋" }, "raising_hand_tone1": { "unicode": "1F64B-1F3FB", "unicode_alternates": [], "name": "happy person raising one hand tone1", "shortname": ":raising_hand_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏻" }, "raising_hand_tone2": { "unicode": "1F64B-1F3FC", "unicode_alternates": [], "name": "happy person raising one hand tone2", "shortname": ":raising_hand_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏼" }, "raising_hand_tone3": { "unicode": "1F64B-1F3FD", "unicode_alternates": [], "name": "happy person raising one hand tone3", "shortname": ":raising_hand_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏽" }, "raising_hand_tone4": { "unicode": "1F64B-1F3FE", "unicode_alternates": [], "name": "happy person raising one hand tone4", "shortname": ":raising_hand_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏾" }, "raising_hand_tone5": { "unicode": "1F64B-1F3FF", "unicode_alternates": [], "name": "happy person raising one hand tone5", "shortname": ":raising_hand_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏿" }, "ram": { "unicode": "1F40F", "unicode_alternates": [], "name": "ram", "shortname": ":ram:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "sheep", "ram", "male", "horn", "horns", "wildlife" ], "moji": "🐏" }, "ramen": { "unicode": "1F35C", "unicode_alternates": [], "name": "steaming bowl", "shortname": ":ramen:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "chipsticks", "food", "japanese", "noodle", "ramen", "noodles", "bowl", "steaming", "soup", "japan" ], "moji": "🍜" }, "rat": { "unicode": "1F400", "unicode_alternates": [], "name": "rat", "shortname": ":rat:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "mouse", "rat", "rodent", "crooked", "snitch" ], "moji": "🐀" }, "record_button": { "unicode": "23FA", "unicode_alternates": [], "name": "black circle for record", "shortname": ":record_button:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "symbol", "circle" ], "moji": "⏺" }, "recycle": { "unicode": "267B", "unicode_alternates": [ "267B-FE0F" ], "name": "black universal recycling symbol", "shortname": ":recycle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "environment", "garbage", "trash", "symbol" ], "moji": "♻" }, "red_car": { "unicode": "1F697", "unicode_alternates": [], "name": "automobile", "shortname": ":red_car:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "car", "travel" ], "moji": "🚗" }, "red_circle": { "unicode": "1F534", "unicode_alternates": [], "name": "large red circle", "shortname": ":red_circle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "🔴" }, "registered": { "moji": "®️", "unicode": "00AE", "unicode_alternates": [], "name": "registered sign", "shortname": ":registered:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "alphabet", "circle", "symbol" ] }, "relaxed": { "unicode": "263A", "unicode_alternates": [ "263A-FE0F" ], "name": "white smiling face", "shortname": ":relaxed:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "blush", "face", "happiness", "massage", "smile", "happy", "smiley" ], "moji": "☺" }, "relieved": { "unicode": "1F60C", "unicode_alternates": [], "name": "relieved face", "shortname": ":relieved:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "happiness", "massage", "phew", "relaxed", "relieved", "satisfied", "relief", "smiley", "emotion" ], "moji": "😌" }, "reminder_ribbon": { "unicode": "1F397", "unicode_alternates": [], "name": "reminder ribbon", "shortname": ":reminder_ribbon:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "awareness", "award" ], "moji": "🎗" }, "repeat": { "unicode": "1F501", "unicode_alternates": [], "name": "clockwise rightwards and leftwards open circle arr", "shortname": ":repeat:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "loop", "record", "arrow", "symbol" ], "moji": "🔁" }, "repeat_one": { "unicode": "1F502", "unicode_alternates": [], "name": "clockwise rightwards and leftwards open circle arr", "shortname": ":repeat_one:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "loop", "arrow", "symbol" ], "moji": "🔂" }, "restroom": { "unicode": "1F6BB", "unicode_alternates": [], "name": "restroom", "shortname": ":restroom:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "woman", "man", "unisex", "bathroom", "restroom", "sign", "shared", "toilet", "symbol" ], "moji": "🚻" }, "revolving_hearts": { "unicode": "1F49E", "unicode_alternates": [], "name": "revolving hearts", "shortname": ":revolving_hearts:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "heart", "hearts", "revolving", "moving", "circle", "multiple", "lovers", "symbol" ], "moji": "💞" }, "rewind": { "unicode": "23EA", "unicode_alternates": [], "name": "black left-pointing double triangle", "shortname": ":rewind:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "play", "arrow", "symbol" ], "moji": "⏪" }, "rhino": { "unicode": "1F98F", "unicode_alternates": [], "name": "rhinoceros", "shortname": ":rhino:", "category": "nature", "aliases": [ ":rhinoceros:" ], "aliases_ascii": [], "keywords": [], "moji": "🦏" }, "ribbon": { "unicode": "1F380", "unicode_alternates": [], "name": "ribbon", "shortname": ":ribbon:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bowtie", "decoration", "girl", "pink", "ribbon", "lace", "wrap", "decorate", "object", "gift", "birthday" ], "moji": "🎀" }, "rice": { "unicode": "1F35A", "unicode_alternates": [], "name": "cooked rice", "shortname": ":rice:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "rice", "white", "grain", "bowl", "sushi", "japan" ], "moji": "🍚" }, "rice_ball": { "unicode": "1F359", "unicode_alternates": [], "name": "rice ball", "shortname": ":rice_ball:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "japanese", "rice", "ball", "white", "nori", "seaweed", "sushi", "japan" ], "moji": "🍙" }, "rice_cracker": { "unicode": "1F358", "unicode_alternates": [], "name": "rice cracker", "shortname": ":rice_cracker:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "japanese", "rice", "cracker", "seaweed", "sushi" ], "moji": "🍘" }, "rice_scene": { "unicode": "1F391", "unicode_alternates": [], "name": "moon viewing ceremony", "shortname": ":rice_scene:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "photo", "moon", "viewing", "observing", "otsukimi", "tsukimi", "rice", "scene", "festival", "autumn", "places", "space", "sky", "travel" ], "moji": "🎑" }, "right_facing_fist": { "unicode": "1F91C", "unicode_alternates": [], "name": "right-facing fist", "shortname": ":right_facing_fist:", "category": "people", "aliases": [ ":right_fist:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜" }, "right_facing_fist_tone1": { "unicode": "1F91C-1F3FB", "unicode_alternates": [], "name": "right facing fist tone 1", "shortname": ":right_facing_fist_tone1:", "category": "people", "aliases": [ ":right_fist_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜🏻" }, "right_facing_fist_tone2": { "unicode": "1F91C-1F3FC", "unicode_alternates": [], "name": "right facing fist tone 2", "shortname": ":right_facing_fist_tone2:", "category": "people", "aliases": [ ":right_fist_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜🏼" }, "right_facing_fist_tone3": { "unicode": "1F91C-1F3FD", "unicode_alternates": [], "name": "right facing fist tone 3", "shortname": ":right_facing_fist_tone3:", "category": "people", "aliases": [ ":right_fist_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜🏽" }, "right_facing_fist_tone4": { "unicode": "1F91C-1F3FE", "unicode_alternates": [], "name": "right facing fist tone 4", "shortname": ":right_facing_fist_tone4:", "category": "people", "aliases": [ ":right_fist_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜🏾" }, "right_facing_fist_tone5": { "unicode": "1F91C-1F3FF", "unicode_alternates": [], "name": "right facing fist tone 5", "shortname": ":right_facing_fist_tone5:", "category": "people", "aliases": [ ":right_fist_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤜🏿" }, "ring": { "unicode": "1F48D", "unicode_alternates": [], "name": "ring", "shortname": ":ring:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "marriage", "propose", "valentines", "wedding", "object", "fashion", "gem", "accessories" ], "moji": "💍" }, "robot": { "unicode": "1F916", "unicode_alternates": [], "name": "robot face", "shortname": ":robot:", "category": "people", "aliases": [ ":robot_face:" ], "aliases_ascii": [], "keywords": [ "monster", "robot" ], "moji": "🤖" }, "rocket": { "unicode": "1F680", "unicode_alternates": [], "name": "rocket", "shortname": ":rocket:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "launch", "ship", "staffmode", "rocket", "space", "spacecraft", "astronaut", "cosmonaut", "transportation", "object", "fly", "blast" ], "moji": "🚀" }, "rofl": { "unicode": "1F923", "unicode_alternates": [], "name": "rolling on the floor laughing", "shortname": ":rofl:", "category": "people", "aliases": [ ":rolling_on_the_floor_laughing:" ], "aliases_ascii": [], "keywords": [], "moji": "🤣" }, "roller_coaster": { "unicode": "1F3A2", "unicode_alternates": [], "name": "roller coaster", "shortname": ":roller_coaster:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "carnival", "fun", "photo", "play", "playground", "roller", "coaster", "amusement", "park", "fair", "ride", "entertainment", "places", "vacation", "roller coaster" ], "moji": "🎢" }, "rolling_eyes": { "unicode": "1F644", "unicode_alternates": [], "name": "face with rolling eyes", "shortname": ":rolling_eyes:", "category": "people", "aliases": [ ":face_with_rolling_eyes:" ], "aliases_ascii": [], "keywords": [ "mad", "smiley", "rolling eyes", "emotion", "sarcastic" ], "moji": "🙄" }, "rooster": { "unicode": "1F413", "unicode_alternates": [], "name": "rooster", "shortname": ":rooster:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "chicken", "nature", "rooster", "cockerel", "cock", "male", "cock-a-doodle-doo", "crowing" ], "moji": "🐓" }, "rose": { "unicode": "1F339", "unicode_alternates": [], "name": "rose", "shortname": ":rose:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "flowers", "love", "valentines", "rose", "fragrant", "flower", "thorns", "petals", "romance", "nature", "plant", "rip", "condolence", "beautiful" ], "moji": "🌹" }, "rosette": { "unicode": "1F3F5", "unicode_alternates": [], "name": "rosette", "shortname": ":rosette:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "flower", "tropical" ], "moji": "🏵" }, "rotating_light": { "unicode": "1F6A8", "unicode_alternates": [], "name": "police cars revolving light", "shortname": ":rotating_light:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "911", "ambulance", "emergency", "police", "light", "transportation", "object" ], "moji": "🚨" }, "round_pushpin": { "unicode": "1F4CD", "unicode_alternates": [], "name": "round pushpin", "shortname": ":round_pushpin:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "stationery", "object", "office" ], "moji": "📍" }, "rowboat": { "unicode": "1F6A3", "unicode_alternates": [], "name": "rowboat", "shortname": ":rowboat:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "sports", "water", "boat", "row", "oar", "paddle", "men", "workout", "sport", "rowing", "diversity" ], "moji": "🚣" }, "rowboat_tone1": { "unicode": "1F6A3-1F3FB", "unicode_alternates": [], "name": "rowboat tone 1", "shortname": ":rowboat_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏻" }, "rowboat_tone2": { "unicode": "1F6A3-1F3FC", "unicode_alternates": [], "name": "rowboat tone 2", "shortname": ":rowboat_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏼" }, "rowboat_tone3": { "unicode": "1F6A3-1F3FD", "unicode_alternates": [], "name": "rowboat tone 3", "shortname": ":rowboat_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏽" }, "rowboat_tone4": { "unicode": "1F6A3-1F3FE", "unicode_alternates": [], "name": "rowboat tone 4", "shortname": ":rowboat_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏾" }, "rowboat_tone5": { "unicode": "1F6A3-1F3FF", "unicode_alternates": [], "name": "rowboat tone 5", "shortname": ":rowboat_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏿" }, "rugby_football": { "unicode": "1F3C9", "unicode_alternates": [], "name": "rugby football", "shortname": ":rugby_football:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sports", "rugby", "football", "ball", "sport", "team", "england", "game" ], "moji": "🏉" }, "runner": { "unicode": "1F3C3", "unicode_alternates": [], "name": "runner", "shortname": ":runner:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "walking", "run", "runner", "jog", "sprint", "race", "dash", "people", "men", "diversity", "boys night" ], "moji": "🏃" }, "runner_tone1": { "unicode": "1F3C3-1F3FB", "unicode_alternates": [], "name": "runner tone 1", "shortname": ":runner_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏻" }, "runner_tone2": { "unicode": "1F3C3-1F3FC", "unicode_alternates": [], "name": "runner tone 2", "shortname": ":runner_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏼" }, "runner_tone3": { "unicode": "1F3C3-1F3FD", "unicode_alternates": [], "name": "runner tone 3", "shortname": ":runner_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏽" }, "runner_tone4": { "unicode": "1F3C3-1F3FE", "unicode_alternates": [], "name": "runner tone 4", "shortname": ":runner_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏾" }, "runner_tone5": { "unicode": "1F3C3-1F3FF", "unicode_alternates": [], "name": "runner tone 5", "shortname": ":runner_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏿" }, "running_shirt_with_sash": { "unicode": "1F3BD", "unicode_alternates": [], "name": "running shirt with sash", "shortname": ":running_shirt_with_sash:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "pageant", "play", "running", "run", "shirt", "cloths", "compete", "sports", "award" ], "moji": "🎽" }, "sa": { "unicode": "1F202", "unicode_alternates": [], "name": "squared katakana sa", "shortname": ":sa:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "japanese", "symbol", "word" ], "moji": "🈂" }, "sagittarius": { "unicode": "2650", "unicode_alternates": [ "2650-FE0F" ], "name": "sagittarius", "shortname": ":sagittarius:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sagittarius", "centaur", "archer", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♐" }, "sailboat": { "unicode": "26F5", "unicode_alternates": [ "26F5-FE0F" ], "name": "sailboat", "shortname": ":sailboat:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "ship", "transportation", "travel", "boat", "vacation" ], "moji": "⛵" }, "sake": { "unicode": "1F376", "unicode_alternates": [], "name": "sake bottle and cup", "shortname": ":sake:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "beverage", "drink", "drunk", "wine", "sake", "rice", "ferment", "alcohol", "japanese", "japan", "girls night" ], "moji": "🍶" }, "salad": { "unicode": "1F957", "unicode_alternates": [], "name": "green salad", "shortname": ":salad:", "category": "food", "aliases": [ ":green_salad:" ], "aliases_ascii": [], "keywords": [], "moji": "🥗" }, "sandal": { "unicode": "1F461", "unicode_alternates": [], "name": "womans sandal", "shortname": ":sandal:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "shoes", "shoe", "accessories" ], "moji": "👡" }, "santa": { "unicode": "1F385", "unicode_alternates": [], "name": "father christmas", "shortname": ":santa:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "christmas", "father christmas", "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "father", "holiday", "people", "hat", "winter", "holidays", "diversity" ], "moji": "🎅" }, "santa_tone1": { "unicode": "1F385-1F3FB", "unicode_alternates": [], "name": "father christmas tone 1", "shortname": ":santa_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏻" }, "santa_tone2": { "unicode": "1F385-1F3FC", "unicode_alternates": [], "name": "father christmas tone 2", "shortname": ":santa_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏼" }, "santa_tone3": { "unicode": "1F385-1F3FD", "unicode_alternates": [], "name": "father christmas tone 3", "shortname": ":santa_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏽" }, "santa_tone4": { "unicode": "1F385-1F3FE", "unicode_alternates": [], "name": "father christmas tone 4", "shortname": ":santa_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏾" }, "santa_tone5": { "unicode": "1F385-1F3FF", "unicode_alternates": [], "name": "father christmas tone 5", "shortname": ":santa_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏿" }, "satellite": { "unicode": "1F4E1", "unicode_alternates": [], "name": "satellite antenna", "shortname": ":satellite:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "object" ], "moji": "📡" }, "satellite_orbital": { "unicode": "1F6F0", "unicode_alternates": [], "name": "satellite", "shortname": ":satellite_orbital:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "orbital", "space", "object" ], "moji": "🛰" }, "saxophone": { "unicode": "1F3B7", "unicode_alternates": [], "name": "saxophone", "shortname": ":saxophone:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "instrument", "music", "saxophone", "sax", "woodwind", "instruments" ], "moji": "🎷" }, "scales": { "unicode": "2696", "unicode_alternates": [], "name": "scales", "shortname": ":scales:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "balance", "justice", "libra", "object", "tool", "weight", "zodiac" ], "moji": "⚖" }, "school": { "unicode": "1F3EB", "unicode_alternates": [], "name": "school", "shortname": ":school:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "building", "school", "university", "elementary", "middle", "high", "college", "teach", "education", "places" ], "moji": "🏫" }, "school_satchel": { "unicode": "1F392", "unicode_alternates": [], "name": "school satchel", "shortname": ":school_satchel:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "bag", "education", "student", "school", "satchel", "backpack", "packing", "pack", "hike", "adventure", "travel", "sightsee", "fashion", "office", "vacation", "accessories" ], "moji": "🎒" }, "scissors": { "unicode": "2702", "unicode_alternates": [ "2702-FE0F" ], "name": "black scissors", "shortname": ":scissors:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "cut", "stationery", "object", "tool", "weapon", "office" ], "moji": "✂" }, "scooter": { "unicode": "1F6F4", "unicode_alternates": [], "name": "scooter", "shortname": ":scooter:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🛴" }, "scorpion": { "unicode": "1F982", "unicode_alternates": [], "name": "scorpion", "shortname": ":scorpion:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "insects", "reptile", "animal" ], "moji": "🦂" }, "scorpius": { "unicode": "264F", "unicode_alternates": [ "264F-FE0F" ], "name": "scorpius", "shortname": ":scorpius:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "scorpius", "scorpion", "scorpio", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♏" }, "scream": { "unicode": "1F631", "unicode_alternates": [], "name": "face screaming in fear", "shortname": ":scream:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "munch", "scream", "painting", "artist", "alien", "smiley", "surprised", "wow", "emotion", "omg" ], "moji": "😱" }, "scream_cat": { "unicode": "1F640", "unicode_alternates": [], "name": "weary cat face", "shortname": ":scream_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "munch", "weary", "sleepy", "tired", "tiredness", "study", "finals", "school", "exhausted", "scream", "painting", "artist", "cat" ], "moji": "🙀" }, "scroll": { "unicode": "1F4DC", "unicode_alternates": [], "name": "scroll", "shortname": ":scroll:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "documents", "object", "office" ], "moji": "📜" }, "seat": { "unicode": "1F4BA", "unicode_alternates": [], "name": "seat", "shortname": ":seat:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "sit", "transportation", "object", "travel", "vacation" ], "moji": "💺" }, "second_place": { "unicode": "1F948", "unicode_alternates": [], "name": "second place medal", "shortname": ":second_place:", "category": "activity", "aliases": [ ":second_place_medal:" ], "aliases_ascii": [], "keywords": [], "moji": "🥈" }, "secret": { "unicode": "3299", "unicode_alternates": [ "3299-FE0F" ], "name": "circled ideograph secret", "shortname": ":secret:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "privacy", "japan", "symbol" ], "moji": "㊙" }, "see_no_evil": { "unicode": "1F648", "unicode_alternates": [], "name": "see-no-evil monkey", "shortname": ":see_no_evil:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "monkey", "nature", "see", "eyes", "vision", "sight", "mizaru" ], "moji": "🙈" }, "seedling": { "unicode": "1F331", "unicode_alternates": [], "name": "seedling", "shortname": ":seedling:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "grass", "lawn", "nature", "plant", "seedling", "new", "start", "grow", "leaf" ], "moji": "🌱" }, "selfie": { "unicode": "1F933", "unicode_alternates": [], "name": "selfie", "shortname": ":selfie:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳" }, "selfie_tone1": { "unicode": "1F933-1F3FB", "unicode_alternates": [], "name": "selfie tone 1", "shortname": ":selfie_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳🏻" }, "selfie_tone2": { "unicode": "1F933-1F3FC", "unicode_alternates": [], "name": "selfie tone 2", "shortname": ":selfie_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳🏼" }, "selfie_tone3": { "unicode": "1F933-1F3FD", "unicode_alternates": [], "name": "selfie tone 3", "shortname": ":selfie_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳🏽" }, "selfie_tone4": { "unicode": "1F933-1F3FE", "unicode_alternates": [], "name": "selfie tone 4", "shortname": ":selfie_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳🏾" }, "selfie_tone5": { "unicode": "1F933-1F3FF", "unicode_alternates": [], "name": "selfie tone 5", "shortname": ":selfie_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤳🏿" }, "seven": { "moji": "7️⃣", "unicode": "0037-20E3", "unicode_alternates": [ "0037-FE0F-20E3" ], "name": "keycap digit seven", "shortname": ":seven:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "7", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "shallow_pan_of_food": { "unicode": "1F958", "unicode_alternates": [], "name": "shallow pan of food", "shortname": ":shallow_pan_of_food:", "category": "food", "aliases": [ ":paella:" ], "aliases_ascii": [], "keywords": [ "pan of food" ], "moji": "🥘" }, "shamrock": { "unicode": "2618", "unicode_alternates": [], "name": "shamrock", "shortname": ":shamrock:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "luck", "leaf" ], "moji": "☘" }, "shark": { "unicode": "1F988", "unicode_alternates": [], "name": "shark", "shortname": ":shark:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦈" }, "shaved_ice": { "unicode": "1F367", "unicode_alternates": [], "name": "shaved ice", "shortname": ":shaved_ice:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "desert", "hot", "shaved", "ice", "dessert", "treat", "syrup", "flavoring", "food" ], "moji": "🍧" }, "sheep": { "unicode": "1F411", "unicode_alternates": [], "name": "sheep", "shortname": ":sheep:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "sheep", "wool", "flock", "follower", "ewe", "female", "lamb" ], "moji": "🐑" }, "shell": { "unicode": "1F41A", "unicode_alternates": [], "name": "spiral shell", "shortname": ":shell:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "beach", "nature", "sea", "shell", "spiral", "sand", "crab", "nautilus" ], "moji": "🐚" }, "shield": { "unicode": "1F6E1", "unicode_alternates": [], "name": "shield", "shortname": ":shield:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "interstate", "route", "sign", "highway", "object" ], "moji": "🛡" }, "shinto_shrine": { "unicode": "26E9", "unicode_alternates": [], "name": "shinto shrine", "shortname": ":shinto_shrine:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "religion", "symbol", "places", "building", "travel", "vacation" ], "moji": "⛩" }, "ship": { "unicode": "1F6A2", "unicode_alternates": [], "name": "ship", "shortname": ":ship:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "titanic", "transportation", "ferry", "ship", "boat", "travel", "vacation" ], "moji": "🚢" }, "shirt": { "unicode": "1F455", "unicode_alternates": [], "name": "t-shirt", "shortname": ":shirt:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "cloth", "fashion" ], "moji": "👕" }, "shopping_bags": { "unicode": "1F6CD", "unicode_alternates": [], "name": "shopping bags", "shortname": ":shopping_bags:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "purchase", "mall", "buy", "store", "shop", "object", "birthday", "parties" ], "moji": "🛍" }, "shopping_cart": { "unicode": "1F6D2", "unicode_alternates": [], "name": "shopping trolley", "shortname": ":shopping_cart:", "category": "objects", "aliases": [ ":shopping_trolley:" ], "aliases_ascii": [], "keywords": [], "moji": "🛒" }, "shower": { "unicode": "1F6BF", "unicode_alternates": [], "name": "shower", "shortname": ":shower:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "bath", "clean", "wash", "bathroom", "shower", "soap", "water", "shampoo", "lather", "object" ], "moji": "🚿" }, "shrimp": { "unicode": "1F990", "unicode_alternates": [], "name": "shrimp", "shortname": ":shrimp:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦐" }, "shrug": { "unicode": "1F937", "unicode_alternates": [], "name": "shrug", "shortname": ":shrug:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷" }, "shrug_tone1": { "unicode": "1F937-1F3FB", "unicode_alternates": [], "name": "shrug tone 1", "shortname": ":shrug_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷🏻" }, "shrug_tone2": { "unicode": "1F937-1F3FC", "unicode_alternates": [], "name": "shrug tone 2", "shortname": ":shrug_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷🏼" }, "shrug_tone3": { "unicode": "1F937-1F3FD", "unicode_alternates": [], "name": "shrug tone 3", "shortname": ":shrug_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷🏽" }, "shrug_tone4": { "unicode": "1F937-1F3FE", "unicode_alternates": [], "name": "shrug tone 4", "shortname": ":shrug_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷🏾" }, "shrug_tone5": { "unicode": "1F937-1F3FF", "unicode_alternates": [], "name": "shrug tone 5", "shortname": ":shrug_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤷🏿" }, "signal_strength": { "unicode": "1F4F6", "unicode_alternates": [], "name": "antenna with bars", "shortname": ":signal_strength:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "symbol" ], "moji": "📶" }, "six": { "moji": "6️⃣", "unicode": "0036-20E3", "unicode_alternates": [ "0036-FE0F-20E3" ], "name": "keycap digit six", "shortname": ":six:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "6", "blue-square", "numbers", "number", "math", "symbol" ] }, "six_pointed_star": { "unicode": "1F52F", "unicode_alternates": [], "name": "six pointed star with middle dot", "shortname": ":six_pointed_star:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "purple-square", "religion", "jew", "star", "symbol" ], "moji": "🔯" }, "ski": { "unicode": "1F3BF", "unicode_alternates": [], "name": "ski and ski boot", "shortname": ":ski:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "cold", "sports", "winter", "ski", "downhill", "cross-country", "poles", "snow", "mountain", "alpine", "powder", "slalom", "freestyle", "sport", "skiing" ], "moji": "🎿" }, "skier": { "unicode": "26F7", "unicode_alternates": [], "name": "skier", "shortname": ":skier:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "person", "ski", "snow", "sport", "travel", "hat", "vacation", "cold", "skiing" ], "moji": "⛷" }, "skull": { "unicode": "1F480", "unicode_alternates": [], "name": "skull", "shortname": ":skull:", "category": "people", "aliases": [ ":skeleton:" ], "aliases_ascii": [], "keywords": [ "dead", "skeleton", "dying", "halloween", "skull" ], "moji": "💀" }, "skull_crossbones": { "unicode": "2620", "unicode_alternates": [], "name": "skull and crossbones", "shortname": ":skull_crossbones:", "category": "objects", "aliases": [ ":skull_and_crossbones:" ], "aliases_ascii": [], "keywords": [ "body", "death", "face", "monster", "person", "symbol", "dead", "skull" ], "moji": "☠" }, "sleeping": { "unicode": "1F634", "unicode_alternates": [], "name": "sleeping face", "shortname": ":sleeping:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "sleepy", "tired", "sleep", "sleeping", "snore", "smiley", "emotion", "goodnight" ], "moji": "😴" }, "sleeping_accommodation": { "unicode": "1F6CC", "unicode_alternates": [], "name": "sleeping accommodation", "shortname": ":sleeping_accommodation:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "hotel", "motel", "rest", "tired" ], "moji": "🛌" }, "sleepy": { "unicode": "1F62A", "unicode_alternates": [], "name": "sleepy face", "shortname": ":sleepy:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "rest", "tired", "sleepy", "exhausted", "smiley", "sick", "emotion" ], "moji": "😪" }, "slight_frown": { "unicode": "1F641", "unicode_alternates": [], "name": "slightly frowning face", "shortname": ":slight_frown:", "category": "people", "aliases": [ ":slightly_frowning_face:" ], "aliases_ascii": [], "keywords": [ "slight", "frown", "unhappy", "disappointed", "sad", "smiley", "emotion" ], "moji": "🙁" }, "slight_smile": { "unicode": "1F642", "unicode_alternates": [], "name": "slightly smiling face", "shortname": ":slight_smile:", "category": "people", "aliases": [ ":slightly_smiling_face:" ], "aliases_ascii": [], "keywords": [ "slight", "smile", "happy", "smiley" ], "moji": "🙂" }, "slot_machine": { "unicode": "1F3B0", "unicode_alternates": [], "name": "slot machine", "shortname": ":slot_machine:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "bet", "gamble", "vegas", "slot", "machine", "one-armed bandit", "slots", "luck", "game", "boys night" ], "moji": "🎰" }, "small_blue_diamond": { "unicode": "1F539", "unicode_alternates": [], "name": "small blue diamond", "shortname": ":small_blue_diamond:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔹" }, "small_orange_diamond": { "unicode": "1F538", "unicode_alternates": [], "name": "small orange diamond", "shortname": ":small_orange_diamond:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔸" }, "small_red_triangle": { "unicode": "1F53A", "unicode_alternates": [], "name": "up-pointing red triangle", "shortname": ":small_red_triangle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "triangle" ], "moji": "🔺" }, "small_red_triangle_down": { "unicode": "1F53B", "unicode_alternates": [], "name": "down-pointing red triangle", "shortname": ":small_red_triangle_down:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "triangle" ], "moji": "🔻" }, "smile": { "unicode": "1F604", "unicode_alternates": [], "name": "smiling face with open mouth and smiling eyes", "shortname": ":smile:", "category": "people", "aliases": [], "aliases_ascii": [ ":)", ":-)", "=]", "=)", ":]" ], "keywords": [ "face", "funny", "haha", "happy", "joy", "laugh", "smile", "smiley", "smiling", "emotion" ], "moji": "😄" }, "smile_cat": { "unicode": "1F638", "unicode_alternates": [], "name": "grinning cat face with smiling eyes", "shortname": ":smile_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "cat", "smile", "grin", "grinning", "happy" ], "moji": "😸" }, "smiley": { "unicode": "1F603", "unicode_alternates": [], "name": "smiling face with open mouth", "shortname": ":smiley:", "category": "people", "aliases": [], "aliases_ascii": [ ":D", ":-D", "=D" ], "keywords": [ "face", "haha", "happy", "joy", "smiling", "smile", "smiley", "emotion", "good" ], "moji": "😃" }, "smiley_cat": { "unicode": "1F63A", "unicode_alternates": [], "name": "smiling cat face with open mouth", "shortname": ":smiley_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "happy", "smile", "smiley", "cat" ], "moji": "😺" }, "smiling_imp": { "unicode": "1F608", "unicode_alternates": [], "name": "smiling face with horns", "shortname": ":smiling_imp:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "devil", "horns", "impish", "trouble", "silly", "smiley", "angry", "monster", "boys night" ], "moji": "😈" }, "smirk": { "unicode": "1F60F", "unicode_alternates": [], "name": "smirking face", "shortname": ":smirk:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mean", "prank", "smile", "smug", "smirking", "smirk", "half-smile", "conceited", "silly", "smiley", "sexy", "sarcastic" ], "moji": "😏" }, "smirk_cat": { "unicode": "1F63C", "unicode_alternates": [], "name": "cat face with wry smile", "shortname": ":smirk_cat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cats", "smirk", "smirking", "wry", "confident", "confidence", "cat" ], "moji": "😼" }, "smoking": { "unicode": "1F6AC", "unicode_alternates": [], "name": "smoking symbol", "shortname": ":smoking:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "cigarette", "kills", "tobacco", "smoking", "smoke", "cancer", "lungs", "inhale", "tar", "nicotine", "symbol", "drugs" ], "moji": "🚬" }, "snail": { "unicode": "1F40C", "unicode_alternates": [], "name": "snail", "shortname": ":snail:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "shell", "slow", "snail", "escargot", "french", "appetizer", "insects" ], "moji": "🐌" }, "snake": { "unicode": "1F40D", "unicode_alternates": [], "name": "snake", "shortname": ":snake:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "evil", "wildlife", "reptile", "creationism" ], "moji": "🐍" }, "sneezing_face": { "unicode": "1F927", "unicode_alternates": [], "name": "sneezing face", "shortname": ":sneezing_face:", "category": "people", "aliases": [ ":sneeze:" ], "aliases_ascii": [], "keywords": [], "moji": "🤧" }, "snowboarder": { "unicode": "1F3C2", "unicode_alternates": [], "name": "snowboarder", "shortname": ":snowboarder:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sports", "winter", "snow", "boarding", "freestyle", "halfpipe", "board", "mountain", "alpine", "hat", "vacation", "cold", "sport", "snowboarding" ], "moji": "🏂" }, "snowflake": { "unicode": "2744", "unicode_alternates": [ "2744-FE0F" ], "name": "snowflake", "shortname": ":snowflake:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "christmas", "cold", "season", "weather", "winter", "xmas", "snowflake", "snow", "frozen", "droplet", "ice", "crystal", "chilly", "unique", "special", "below zero", "elsa", "sky", "holidays" ], "moji": "❄" }, "snowman": { "unicode": "26C4", "unicode_alternates": [ "26C4-FE0F" ], "name": "snowman without snow", "shortname": ":snowman:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "christmas", "cold", "season", "weather", "winter", "xmas", "holidays", "snow" ], "moji": "⛄" }, "snowman2": { "unicode": "2603", "unicode_alternates": [], "name": "snowman", "shortname": ":snowman2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "cold", "nature", "snow", "weather", "winter", "holidays", "christmas" ], "moji": "☃" }, "sob": { "unicode": "1F62D", "unicode_alternates": [], "name": "loudly crying face", "shortname": ":sob:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "cry", "face", "sad", "tears", "upset", "sob", "melancholy", "morn", "somber", "hurt", "smiley", "emotion", "heartbreak" ], "moji": "😭" }, "soccer": { "unicode": "26BD", "unicode_alternates": [ "26BD-FE0F" ], "name": "soccer ball", "shortname": ":soccer:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "balls", "fifa", "football", "sports", "european", "game", "ball", "sport", "soccer" ], "moji": "⚽" }, "soon": { "unicode": "1F51C", "unicode_alternates": [], "name": "soon with rightwards arrow above", "shortname": ":soon:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔜" }, "sos": { "unicode": "1F198", "unicode_alternates": [], "name": "squared sos", "shortname": ":sos:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "emergency", "help", "red-square", "words", "symbol" ], "moji": "🆘" }, "sound": { "unicode": "1F509", "unicode_alternates": [], "name": "speaker with one sound wave", "shortname": ":sound:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "speaker", "volume", "alarm", "symbol" ], "moji": "🔉" }, "space_invader": { "unicode": "1F47E", "unicode_alternates": [], "name": "alien monster", "shortname": ":space_invader:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "arcade", "game", "monster", "alien" ], "moji": "👾" }, "spades": { "unicode": "2660", "unicode_alternates": [ "2660-FE0F" ], "name": "black spade suit", "shortname": ":spades:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "cards", "poker", "symbol", "game" ], "moji": "♠" }, "spaghetti": { "unicode": "1F35D", "unicode_alternates": [], "name": "spaghetti", "shortname": ":spaghetti:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "italian", "noodle", "spaghetti", "noodles", "tomato", "sauce", "pasta" ], "moji": "🍝" }, "sparkle": { "unicode": "2747", "unicode_alternates": [ "2747-FE0F" ], "name": "sparkle", "shortname": ":sparkle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "green-square", "stars", "symbol" ], "moji": "❇" }, "sparkler": { "unicode": "1F387", "unicode_alternates": [], "name": "firework sparkler", "shortname": ":sparkler:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "shine", "stars", "parties" ], "moji": "🎇" }, "sparkles": { "unicode": "2728", "unicode_alternates": [], "name": "sparkles", "shortname": ":sparkles:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "cool", "shine", "shiny", "stars", "star", "girls night" ], "moji": "✨" }, "sparkling_heart": { "unicode": "1F496", "unicode_alternates": [], "name": "sparkling heart", "shortname": ":sparkling_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "symbol", "girls night" ], "moji": "💖" }, "speak_no_evil": { "unicode": "1F64A", "unicode_alternates": [], "name": "speak-no-evil monkey", "shortname": ":speak_no_evil:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "monkey", "mouth", "talk", "say", "words", "verbal", "verbalize", "oral", "iwazaru" ], "moji": "🙊" }, "speaker": { "unicode": "1F508", "unicode_alternates": [], "name": "speaker", "shortname": ":speaker:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "listen", "hear", "noise", "alarm", "symbol" ], "moji": "🔈" }, "speaking_head": { "unicode": "1F5E3", "unicode_alternates": [], "name": "speaking head in silhouette", "shortname": ":speaking_head:", "category": "people", "aliases": [ ":speaking_head_in_silhouette:" ], "aliases_ascii": [], "keywords": [ "talk", "people" ], "moji": "🗣" }, "speech_balloon": { "unicode": "1F4AC", "unicode_alternates": [], "name": "speech balloon", "shortname": ":speech_balloon:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "bubble", "words", "speech", "balloon", "talk", "conversation", "communication", "comic", "dialogue", "symbol", "free speech" ], "moji": "💬" }, "speech_left": { "unicode": "1F5E8", "unicode_alternates": [ "1F5E8-FE0F" ], "name": "left speech bubble", "shortname": ":speech_left:", "category": "symbols", "aliases": [ ":left_speech_bubble:" ], "aliases_ascii": [], "keywords": [], "moji": "🗨" }, "speedboat": { "unicode": "1F6A4", "unicode_alternates": [], "name": "speedboat", "shortname": ":speedboat:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "ship", "transportation", "vehicle", "motor", "speed", "ski", "power", "boat", "travel", "vacation", "tropical" ], "moji": "🚤" }, "spider": { "unicode": "1F577", "unicode_alternates": [], "name": "spider", "shortname": ":spider:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "arachnid", "eight-legged", "insects", "halloween", "animal" ], "moji": "🕷" }, "spider_web": { "unicode": "1F578", "unicode_alternates": [], "name": "spider web", "shortname": ":spider_web:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "cobweb", "halloween" ], "moji": "🕸" }, "spoon": { "unicode": "1F944", "unicode_alternates": [], "name": "spoon", "shortname": ":spoon:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🥄" }, "spy": { "unicode": "1F575", "unicode_alternates": [], "name": "sleuth or spy", "shortname": ":spy:", "category": "people", "aliases": [ ":sleuth_or_spy:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "people", "hat", "men", "glasses", "diversity", "job" ], "moji": "🕵" }, "spy_tone1": { "unicode": "1F575-1F3FB", "unicode_alternates": [], "name": "sleuth or spy tone 1", "shortname": ":spy_tone1:", "category": "people", "aliases": [ ":sleuth_or_spy_tone1:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏻" }, "spy_tone2": { "unicode": "1F575-1F3FC", "unicode_alternates": [], "name": "sleuth or spy tone 2", "shortname": ":spy_tone2:", "category": "people", "aliases": [ ":sleuth_or_spy_tone2:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏼" }, "spy_tone3": { "unicode": "1F575-1F3FD", "unicode_alternates": [], "name": "sleuth or spy tone 3", "shortname": ":spy_tone3:", "category": "people", "aliases": [ ":sleuth_or_spy_tone3:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏽" }, "spy_tone4": { "unicode": "1F575-1F3FE", "unicode_alternates": [], "name": "sleuth or spy tone 4", "shortname": ":spy_tone4:", "category": "people", "aliases": [ ":sleuth_or_spy_tone4:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏾" }, "spy_tone5": { "unicode": "1F575-1F3FF", "unicode_alternates": [], "name": "sleuth or spy tone 5", "shortname": ":spy_tone5:", "category": "people", "aliases": [ ":sleuth_or_spy_tone5:" ], "aliases_ascii": [], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏿" }, "squid": { "unicode": "1F991", "unicode_alternates": [], "name": "squid", "shortname": ":squid:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🦑" }, "stadium": { "unicode": "1F3DF", "unicode_alternates": [], "name": "stadium", "shortname": ":stadium:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "event", "concert", "convention", "game", "places", "building", "travel", "vacation", "boys night" ], "moji": "🏟" }, "star": { "unicode": "2B50", "unicode_alternates": [ "2B50-FE0F" ], "name": "white medium star", "shortname": ":star:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "yellow", "space", "sky", "star" ], "moji": "⭐" }, "star2": { "unicode": "1F31F", "unicode_alternates": [], "name": "glowing star", "shortname": ":star2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "sparkle", "glow", "glowing", "star", "five", "points", "classic", "space", "sky" ], "moji": "🌟" }, "star_and_crescent": { "unicode": "262A", "unicode_alternates": [], "name": "star and crescent", "shortname": ":star_and_crescent:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "islam", "muslim", "religion", "symbol" ], "moji": "☪" }, "star_of_david": { "unicode": "2721", "unicode_alternates": [], "name": "star of david", "shortname": ":star_of_david:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "jew", "jewish", "religion", "symbol", "star" ], "moji": "✡" }, "stars": { "unicode": "1F320", "unicode_alternates": [], "name": "shooting star", "shortname": ":stars:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "night", "photo", "shooting", "shoot", "star", "sky", "comet", "meteoroid", "space" ], "moji": "🌠" }, "station": { "unicode": "1F689", "unicode_alternates": [], "name": "station", "shortname": ":station:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "public", "transportation", "vehicle", "station", "train", "subway", "travel" ], "moji": "🚉" }, "statue_of_liberty": { "unicode": "1F5FD", "unicode_alternates": [], "name": "statue of liberty", "shortname": ":statue_of_liberty:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "american", "newyork", "places", "america", "travel", "vacation", "statue of liberty", "free speech" ], "moji": "🗽" }, "steam_locomotive": { "unicode": "1F682", "unicode_alternates": [], "name": "steam locomotive", "shortname": ":steam_locomotive:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "train", "transportation", "vehicle", "locomotive", "steam", "engine", "travel" ], "moji": "🚂" }, "stew": { "unicode": "1F372", "unicode_alternates": [], "name": "pot of food", "shortname": ":stew:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "meat", "stew", "hearty", "soup", "thick", "hot", "pot", "steam" ], "moji": "🍲" }, "stop_button": { "unicode": "23F9", "unicode_alternates": [], "name": "black square for stop", "shortname": ":stop_button:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sound", "symbol", "square" ], "moji": "⏹" }, "stopwatch": { "unicode": "23F1", "unicode_alternates": [], "name": "stopwatch", "shortname": ":stopwatch:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "clock", "object", "time", "electronics" ], "moji": "⏱" }, "straight_ruler": { "unicode": "1F4CF", "unicode_alternates": [], "name": "straight ruler", "shortname": ":straight_ruler:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "stationery", "object", "tool", "office" ], "moji": "📏" }, "strawberry": { "unicode": "1F353", "unicode_alternates": [], "name": "strawberry", "shortname": ":strawberry:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "strawberry", "short", "cake", "berry" ], "moji": "🍓" }, "stuck_out_tongue": { "unicode": "1F61B", "unicode_alternates": [], "name": "face with stuck-out tongue", "shortname": ":stuck_out_tongue:", "category": "people", "aliases": [], "aliases_ascii": [ ":P", ":-P", "=P", ":-p", ":p", "=p", ":-Þ", ":Þ", ":þ", ":-þ", ":-b", ":b", "d:" ], "keywords": [ "childish", "face", "mischievous", "playful", "prank", "tongue", "silly", "cheeky", "smiley", "sex", "emotion" ], "moji": "😛" }, "stuck_out_tongue_closed_eyes": { "unicode": "1F61D", "unicode_alternates": [], "name": "face with stuck-out tongue and tightly-closed eyes", "shortname": ":stuck_out_tongue_closed_eyes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "mischievous", "playful", "prank", "tongue", "kidding", "silly", "ecstatic", "happy", "smiley", "emotion" ], "moji": "😝" }, "stuck_out_tongue_winking_eye": { "unicode": "1F61C", "unicode_alternates": [], "name": "face with stuck-out tongue and winking eye", "shortname": ":stuck_out_tongue_winking_eye:", "category": "people", "aliases": [], "aliases_ascii": [ ">:P", "X-P", "x-p" ], "keywords": [ "childish", "face", "mischievous", "playful", "prank", "tongue", "wink", "winking", "kidding", "silly", "crazy", "happy", "smiley", "emotion", "parties" ], "moji": "😜" }, "stuffed_flatbread": { "unicode": "1F959", "unicode_alternates": [], "name": "stuffed flatbread", "shortname": ":stuffed_flatbread:", "category": "food", "aliases": [ ":stuffed_pita:" ], "aliases_ascii": [], "keywords": [], "moji": "🥙" }, "sun_with_face": { "unicode": "1F31E", "unicode_alternates": [], "name": "sun with face", "shortname": ":sun_with_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "morning", "sun", "anthropomorphic", "face", "sky", "day", "hump day" ], "moji": "🌞" }, "sunflower": { "unicode": "1F33B", "unicode_alternates": [], "name": "sunflower", "shortname": ":sunflower:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "sunflower", "sun", "flower", "seeds", "yellow" ], "moji": "🌻" }, "sunglasses": { "unicode": "1F60E", "unicode_alternates": [], "name": "smiling face with sunglasses", "shortname": ":sunglasses:", "category": "people", "aliases": [], "aliases_ascii": [ "B-)", "B)", "8)", "8-)", "B-D", "8-D" ], "keywords": [ "cool", "face", "smiling", "sunglasses", "sun", "glasses", "sunny", "smooth", "silly", "smiley", "emojione", "boys night" ], "moji": "😎" }, "sunny": { "unicode": "2600", "unicode_alternates": [ "2600-FE0F" ], "name": "black sun with rays", "shortname": ":sunny:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "brightness", "weather", "sky", "day", "sun", "hot", "morning" ], "moji": "☀" }, "sunrise": { "unicode": "1F305", "unicode_alternates": [], "name": "sunrise", "shortname": ":sunrise:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "morning", "photo", "vacation", "view", "sunrise", "sun", "color", "sky", "places", "travel", "tropical", "day", "hump day" ], "moji": "🌅" }, "sunrise_over_mountains": { "unicode": "1F304", "unicode_alternates": [], "name": "sunrise over mountains", "shortname": ":sunrise_over_mountains:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "photo", "vacation", "view", "sunrise", "sun", "morning", "mountain", "rural", "color", "sky", "places", "travel", "day", "camp" ], "moji": "🌄" }, "surfer": { "unicode": "1F3C4", "unicode_alternates": [], "name": "surfer", "shortname": ":surfer:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sports", "surfer", "surf", "wave", "ride", "swell", "men", "vacation", "tropical", "sport", "diversity" ], "moji": "🏄" }, "surfer_tone1": { "unicode": "1F3C4-1F3FB", "unicode_alternates": [], "name": "surfer tone 1", "shortname": ":surfer_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏻" }, "surfer_tone2": { "unicode": "1F3C4-1F3FC", "unicode_alternates": [], "name": "surfer tone 2", "shortname": ":surfer_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏼" }, "surfer_tone3": { "unicode": "1F3C4-1F3FD", "unicode_alternates": [], "name": "surfer tone 3", "shortname": ":surfer_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏽" }, "surfer_tone4": { "unicode": "1F3C4-1F3FE", "unicode_alternates": [], "name": "surfer tone 4", "shortname": ":surfer_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏾" }, "surfer_tone5": { "unicode": "1F3C4-1F3FF", "unicode_alternates": [], "name": "surfer tone 5", "shortname": ":surfer_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏿" }, "sushi": { "unicode": "1F363", "unicode_alternates": [], "name": "sushi", "shortname": ":sushi:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "japanese", "sushi", "fish", "raw", "nigiri", "japan" ], "moji": "🍣" }, "suspension_railway": { "unicode": "1F69F", "unicode_alternates": [], "name": "suspension railway", "shortname": ":suspension_railway:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "suspension", "railway", "rail", "train", "travel" ], "moji": "🚟" }, "sweat": { "unicode": "1F613", "unicode_alternates": [], "name": "face with cold sweat", "shortname": ":sweat:", "category": "people", "aliases": [], "aliases_ascii": [ "':(", "':-(", "'=(" ], "keywords": [ "cold", "sweat", "sick", "anxious", "worried", "clammy", "diaphoresis", "face", "hot", "sad", "smiley", "stressed", "emotion" ], "moji": "😓" }, "sweat_drops": { "unicode": "1F4A6", "unicode_alternates": [], "name": "splashing sweat symbol", "shortname": ":sweat_drops:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "water", "rain", "stressed", "sweat" ], "moji": "💦" }, "sweat_smile": { "unicode": "1F605", "unicode_alternates": [], "name": "smiling face with open mouth and cold sweat", "shortname": ":sweat_smile:", "category": "people", "aliases": [], "aliases_ascii": [ "':)", "':-)", "'=)", "':D", "':-D", "'=D" ], "keywords": [ "face", "happy", "hot", "smiling", "cold", "sweat", "perspiration", "smiley", "workout", "emotion" ], "moji": "😅" }, "sweet_potato": { "unicode": "1F360", "unicode_alternates": [], "name": "roasted sweet potato", "shortname": ":sweet_potato:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "nature", "sweet", "potato", "potassium", "roasted", "roast", "vegetables" ], "moji": "🍠" }, "swimmer": { "unicode": "1F3CA", "unicode_alternates": [], "name": "swimmer", "shortname": ":swimmer:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sports", "swimmer", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke", "workout", "sport", "diversity" ], "moji": "🏊" }, "swimmer_tone1": { "unicode": "1F3CA-1F3FB", "unicode_alternates": [], "name": "swimmer tone 1", "shortname": ":swimmer_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏻" }, "swimmer_tone2": { "unicode": "1F3CA-1F3FC", "unicode_alternates": [], "name": "swimmer tone 2", "shortname": ":swimmer_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏼" }, "swimmer_tone3": { "unicode": "1F3CA-1F3FD", "unicode_alternates": [], "name": "swimmer tone 3", "shortname": ":swimmer_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏽" }, "swimmer_tone4": { "unicode": "1F3CA-1F3FE", "unicode_alternates": [], "name": "swimmer tone 4", "shortname": ":swimmer_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏾" }, "swimmer_tone5": { "unicode": "1F3CA-1F3FF", "unicode_alternates": [], "name": "swimmer tone 5", "shortname": ":swimmer_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏿" }, "symbols": { "unicode": "1F523", "unicode_alternates": [], "name": "input symbol for symbols", "shortname": ":symbols:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "symbol" ], "moji": "🔣" }, "synagogue": { "unicode": "1F54D", "unicode_alternates": [], "name": "synagogue", "shortname": ":synagogue:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "places", "religion", "building", "travel", "vacation", "condolence" ], "moji": "🕍" }, "syringe": { "unicode": "1F489", "unicode_alternates": [], "name": "syringe", "shortname": ":syringe:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "blood", "drugs", "health", "hospital", "medicine", "needle", "object", "weapon" ], "moji": "💉" }, "taco": { "unicode": "1F32E", "unicode_alternates": [], "name": "taco", "shortname": ":taco:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "mexican", "vagina" ], "moji": "🌮" }, "tada": { "unicode": "1F389", "unicode_alternates": [], "name": "party popper", "shortname": ":tada:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "contulations", "party", "popper", "tada", "celebration", "victory", "announcement", "climax", "congratulations", "object", "birthday", "holidays", "cheers", "good", "girls night", "boys night", "parties" ], "moji": "🎉" }, "tanabata_tree": { "unicode": "1F38B", "unicode_alternates": [], "name": "tanabata tree", "shortname": ":tanabata_tree:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "plant", "tanabata", "tree", "festival", "star", "wish", "holiday", "trees" ], "moji": "🎋" }, "tangerine": { "unicode": "1F34A", "unicode_alternates": [], "name": "tangerine", "shortname": ":tangerine:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "tangerine", "citrus", "orange" ], "moji": "🍊" }, "taurus": { "unicode": "2649", "unicode_alternates": [ "2649-FE0F" ], "name": "taurus", "shortname": ":taurus:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "purple-square", "sign", "taurus", "bull", "astrology", "greek", "constellation", "stars", "zodiac", "horoscope", "symbol" ], "moji": "♉" }, "taxi": { "unicode": "1F695", "unicode_alternates": [], "name": "taxi", "shortname": ":taxi:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "transportation", "uber", "vehicle", "taxi", "car", "automobile", "city", "transport", "service", "travel" ], "moji": "🚕" }, "tea": { "unicode": "1F375", "unicode_alternates": [], "name": "teacup without handle", "shortname": ":tea:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "bowl", "breakfast", "british", "drink", "green", "tea", "leaf", "teacup", "hot", "beverage", "japan", "caffeine", "steam", "morning" ], "moji": "🍵" }, "telephone": { "unicode": "260E", "unicode_alternates": [ "260E-FE0F" ], "name": "black telephone", "shortname": ":telephone:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "dial", "technology", "electronics", "phone" ], "moji": "☎" }, "telephone_receiver": { "unicode": "1F4DE", "unicode_alternates": [], "name": "telephone receiver", "shortname": ":telephone_receiver:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "communication", "dial", "technology", "electronics", "phone" ], "moji": "📞" }, "telescope": { "unicode": "1F52D", "unicode_alternates": [], "name": "telescope", "shortname": ":telescope:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "space", "stars", "object", "science" ], "moji": "🔭" }, "ten": { "unicode": "1F51F", "unicode_alternates": [], "name": "keycap ten", "shortname": ":ten:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "10", "blue-square", "numbers", "symbol", "word", "number", "math" ], "moji": "🔟" }, "tennis": { "unicode": "1F3BE", "unicode_alternates": [], "name": "tennis racquet and ball", "shortname": ":tennis:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "balls", "green", "sports", "tennis", "racket", "racquet", "ball", "game", "net", "court", "love", "sport" ], "moji": "🎾" }, "tent": { "unicode": "26FA", "unicode_alternates": [ "26FA-FE0F" ], "name": "tent", "shortname": ":tent:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "camp", "outdoors", "photo", "places", "travel", "vacation" ], "moji": "⛺" }, "thermometer": { "unicode": "1F321", "unicode_alternates": [], "name": "thermometer", "shortname": ":thermometer:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "temperature", "object", "science", "health", "hot" ], "moji": "🌡" }, "thermometer_face": { "unicode": "1F912", "unicode_alternates": [], "name": "face with thermometer", "shortname": ":thermometer_face:", "category": "people", "aliases": [ ":face_with_thermometer:" ], "aliases_ascii": [], "keywords": [ "smiley", "health", "sick", "emotion" ], "moji": "🤒" }, "thinking": { "unicode": "1F914", "unicode_alternates": [], "name": "thinking face", "shortname": ":thinking:", "category": "people", "aliases": [ ":thinking_face:" ], "aliases_ascii": [], "keywords": [ "smiley", "thinking", "boys night" ], "moji": "🤔" }, "third_place": { "unicode": "1F949", "unicode_alternates": [], "name": "third place medal", "shortname": ":third_place:", "category": "activity", "aliases": [ ":third_place_medal:" ], "aliases_ascii": [], "keywords": [], "moji": "🥉" }, "thought_balloon": { "unicode": "1F4AD", "unicode_alternates": [], "name": "thought balloon", "shortname": ":thought_balloon:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "bubble", "cloud", "speech", "thought", "balloon", "comic", "think", "day dream", "wonder", "symbol" ], "moji": "💭" }, "three": { "moji": "3️⃣", "unicode": "0033-20E3", "unicode_alternates": [ "0033-FE0F-20E3" ], "name": "keycap digit three", "shortname": ":three:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "3", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "thumbsdown": { "unicode": "1F44E", "unicode_alternates": [], "name": "thumbs down sign", "shortname": ":thumbsdown:", "category": "people", "aliases": [ ":-1:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "body", "hands", "diversity" ], "moji": "👎" }, "thumbsdown_tone1": { "unicode": "1F44E-1F3FB", "unicode_alternates": [], "name": "thumbs down sign tone 1", "shortname": ":thumbsdown_tone1:", "category": "people", "aliases": [ ":-1_tone1:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏻" }, "thumbsdown_tone2": { "unicode": "1F44E-1F3FC", "unicode_alternates": [], "name": "thumbs down sign tone 2", "shortname": ":thumbsdown_tone2:", "category": "people", "aliases": [ ":-1_tone2:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏼" }, "thumbsdown_tone3": { "unicode": "1F44E-1F3FD", "unicode_alternates": [], "name": "thumbs down sign tone 3", "shortname": ":thumbsdown_tone3:", "category": "people", "aliases": [ ":-1_tone3:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏽" }, "thumbsdown_tone4": { "unicode": "1F44E-1F3FE", "unicode_alternates": [], "name": "thumbs down sign tone 4", "shortname": ":thumbsdown_tone4:", "category": "people", "aliases": [ ":-1_tone4:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏾" }, "thumbsdown_tone5": { "unicode": "1F44E-1F3FF", "unicode_alternates": [], "name": "thumbs down sign tone 5", "shortname": ":thumbsdown_tone5:", "category": "people", "aliases": [ ":-1_tone5:" ], "aliases_ascii": [], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏿" }, "thumbsup": { "unicode": "1F44D", "unicode_alternates": [], "name": "thumbs up sign", "shortname": ":thumbsup:", "category": "people", "aliases": [ ":+1:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "body", "hands", "hi", "luck", "thank you", "diversity", "perfect", "good", "beautiful" ], "moji": "👍" }, "thumbsup_tone1": { "unicode": "1F44D-1F3FB", "unicode_alternates": [], "name": "thumbs up sign tone 1", "shortname": ":thumbsup_tone1:", "category": "people", "aliases": [ ":+1_tone1:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏻" }, "thumbsup_tone2": { "unicode": "1F44D-1F3FC", "unicode_alternates": [], "name": "thumbs up sign tone 2", "shortname": ":thumbsup_tone2:", "category": "people", "aliases": [ ":+1_tone2:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏼" }, "thumbsup_tone3": { "unicode": "1F44D-1F3FD", "unicode_alternates": [], "name": "thumbs up sign tone 3", "shortname": ":thumbsup_tone3:", "category": "people", "aliases": [ ":+1_tone3:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏽" }, "thumbsup_tone4": { "unicode": "1F44D-1F3FE", "unicode_alternates": [], "name": "thumbs up sign tone 4", "shortname": ":thumbsup_tone4:", "category": "people", "aliases": [ ":+1_tone4:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏾" }, "thumbsup_tone5": { "unicode": "1F44D-1F3FF", "unicode_alternates": [], "name": "thumbs up sign tone 5", "shortname": ":thumbsup_tone5:", "category": "people", "aliases": [ ":+1_tone5:" ], "aliases_ascii": [], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏿" }, "thunder_cloud_rain": { "unicode": "26C8", "unicode_alternates": [], "name": "thunder cloud and rain", "shortname": ":thunder_cloud_rain:", "category": "nature", "aliases": [ ":thunder_cloud_and_rain:" ], "aliases_ascii": [], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "rain" ], "moji": "⛈" }, "ticket": { "unicode": "1F3AB", "unicode_alternates": [], "name": "ticket", "shortname": ":ticket:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "concert", "event", "pass", "ticket", "show", "entertainment", "stub", "admission", "proof", "purchase", "theatre", "movie", "parties" ], "moji": "🎫" }, "tickets": { "unicode": "1F39F", "unicode_alternates": [], "name": "admission tickets", "shortname": ":tickets:", "category": "activity", "aliases": [ ":admission_tickets:" ], "aliases_ascii": [], "keywords": [ "concert", "event", "pass", "show", "entertainment", "stub", "proof", "purchase", "theatre", "movie", "parties" ], "moji": "🎟" }, "tiger": { "unicode": "1F42F", "unicode_alternates": [], "name": "tiger face", "shortname": ":tiger:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "wildlife", "roar", "cat" ], "moji": "🐯" }, "tiger2": { "unicode": "1F405", "unicode_alternates": [], "name": "tiger", "shortname": ":tiger2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "tiger", "cat", "striped", "tony", "tigger", "hobs", "wildlife", "roar" ], "moji": "🐅" }, "timer": { "unicode": "23F2", "unicode_alternates": [], "name": "timer clock", "shortname": ":timer:", "category": "objects", "aliases": [ ":timer_clock:" ], "aliases_ascii": [], "keywords": [ "object", "time" ], "moji": "⏲" }, "tired_face": { "unicode": "1F62B", "unicode_alternates": [], "name": "tired face", "shortname": ":tired_face:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "frustrated", "sick", "upset", "whine", "exhausted", "sleepy", "tired", "sad", "smiley", "emotion" ], "moji": "😫" }, "tm": { "unicode": "2122", "unicode_alternates": [ "2122-FE0F" ], "name": "trade mark sign", "shortname": ":tm:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "brand", "trademark", "symbol", "tm", "word" ], "moji": "™️" }, "toilet": { "unicode": "1F6BD", "unicode_alternates": [], "name": "toilet", "shortname": ":toilet:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "restroom", "wc", "toilet", "bathroom", "throne", "porcelain", "waste", "flush", "plumbing", "object" ], "moji": "🚽" }, "tokyo_tower": { "unicode": "1F5FC", "unicode_alternates": [], "name": "tokyo tower", "shortname": ":tokyo_tower:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "japan", "photo", "places", "travel", "vacation", "eiffel tower" ], "moji": "🗼" }, "tomato": { "unicode": "1F345", "unicode_alternates": [], "name": "tomato", "shortname": ":tomato:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "nature", "vegetable", "tomato", "sauce", "italian", "vegetables" ], "moji": "🍅" }, "tone1": { "unicode": "1F3FB", "unicode_alternates": [], "name": "emoji modifier Fitzpatrick type-1-2", "shortname": ":tone1:", "category": "modifier", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🏻" }, "tone2": { "unicode": "1F3FC", "unicode_alternates": [], "name": "emoji modifier Fitzpatrick type-3", "shortname": ":tone2:", "category": "modifier", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🏼" }, "tone3": { "unicode": "1F3FD", "unicode_alternates": [], "name": "emoji modifier Fitzpatrick type-4", "shortname": ":tone3:", "category": "modifier", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🏽" }, "tone4": { "unicode": "1F3FE", "unicode_alternates": [], "name": "emoji modifier Fitzpatrick type-5", "shortname": ":tone4:", "category": "modifier", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🏾" }, "tone5": { "unicode": "1F3FF", "unicode_alternates": [], "name": "emoji modifier Fitzpatrick type-6", "shortname": ":tone5:", "category": "modifier", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🏿" }, "tongue": { "unicode": "1F445", "unicode_alternates": [], "name": "tongue", "shortname": ":tongue:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "mouth", "playful", "tongue", "taste", "buds", "food", "silly", "tease", "kiss", "french kiss", "lick", "tasty", "playfulness", "silliness", "intimacy", "body", "sexy", "lip" ], "moji": "👅" }, "tools": { "unicode": "1F6E0", "unicode_alternates": [], "name": "hammer and wrench", "shortname": ":tools:", "category": "objects", "aliases": [ ":hammer_and_wrench:" ], "aliases_ascii": [], "keywords": [ "tools", "object", "tool" ], "moji": "🛠" }, "top": { "unicode": "1F51D", "unicode_alternates": [], "name": "top with upwards arrow above", "shortname": ":top:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "words", "arrow", "symbol" ], "moji": "🔝" }, "tophat": { "unicode": "1F3A9", "unicode_alternates": [], "name": "top hat", "shortname": ":tophat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "classy", "gentleman", "magic", "top", "hat", "cap", "beaver", "high", "tall", "stove", "pipe", "chimney", "topper", "london", "period piece", "magician", "fashion", "accessories" ], "moji": "🎩" }, "track_next": { "unicode": "23ED", "unicode_alternates": [], "name": "black right-pointing double triangle with vertical bar", "shortname": ":track_next:", "category": "symbols", "aliases": [ ":next_track:" ], "aliases_ascii": [], "keywords": [ "arrow", "next scene", "next track", "sound", "symbol" ], "moji": "⏭" }, "track_previous": { "unicode": "23EE", "unicode_alternates": [], "name": "black left-pointing double triangle with vertical bar", "shortname": ":track_previous:", "category": "symbols", "aliases": [ ":previous_track:" ], "aliases_ascii": [], "keywords": [ "arrow", "previous scene", "previous track", "sound", "symbol" ], "moji": "⏮" }, "trackball": { "unicode": "1F5B2", "unicode_alternates": [], "name": "trackball", "shortname": ":trackball:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "input", "device", "gadget", "electronics", "work", "game", "office" ], "moji": "🖲" }, "tractor": { "unicode": "1F69C", "unicode_alternates": [], "name": "tractor", "shortname": ":tractor:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "agriculture", "car", "farming", "vehicle", "tractor", "farm", "construction", "machine", "digger", "transportation" ], "moji": "🚜" }, "traffic_light": { "unicode": "1F6A5", "unicode_alternates": [], "name": "horizontal traffic light", "shortname": ":traffic_light:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "traffic", "transportation", "light", "stop", "go", "yield", "horizontal", "object", "stop light" ], "moji": "🚥" }, "train": { "unicode": "1F68B", "unicode_alternates": [], "name": "Tram Car", "shortname": ":train:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "tram", "rail", "transportation", "travel", "train" ], "moji": "🚋" }, "train2": { "unicode": "1F686", "unicode_alternates": [], "name": "train", "shortname": ":train2:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "train", "locomotive", "rail", "travel" ], "moji": "🚆" }, "tram": { "unicode": "1F68A", "unicode_alternates": [], "name": "tram", "shortname": ":tram:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "vehicle", "tram", "transport", "travel", "train" ], "moji": "🚊" }, "triangular_flag_on_post": { "unicode": "1F6A9", "unicode_alternates": [], "name": "triangular flag on post", "shortname": ":triangular_flag_on_post:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "triangle", "triangular", "flag", "golf", "post", "flagpole", "object" ], "moji": "🚩" }, "triangular_ruler": { "unicode": "1F4D0", "unicode_alternates": [], "name": "triangular ruler", "shortname": ":triangular_ruler:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "architect", "math", "sketch", "stationery", "object", "tool", "office" ], "moji": "📐" }, "trident": { "unicode": "1F531", "unicode_alternates": [], "name": "trident emblem", "shortname": ":trident:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "spear", "weapon", "object", "symbol" ], "moji": "🔱" }, "triumph": { "unicode": "1F624", "unicode_alternates": [], "name": "face with look of triumph", "shortname": ":triumph:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "gas", "phew", "triumph", "steam", "breath", "mad", "smiley", "angry", "emotion" ], "moji": "😤" }, "trolleybus": { "unicode": "1F68E", "unicode_alternates": [], "name": "trolleybus", "shortname": ":trolleybus:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "bart", "transportation", "vehicle", "trolley", "bus", "city", "transport", "travel" ], "moji": "🚎" }, "trophy": { "unicode": "1F3C6", "unicode_alternates": [], "name": "trophy", "shortname": ":trophy:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "award", "ceremony", "contest", "ftw", "place", "win", "trophy", "first", "show", "reward", "achievement", "medal", "object", "game", "perfect", "parties" ], "moji": "🏆" }, "tropical_drink": { "unicode": "1F379", "unicode_alternates": [], "name": "tropical drink", "shortname": ":tropical_drink:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "beverage", "tropical", "drink", "mixed", "pineapple", "coconut", "pina", "fruit", "umbrella", "cocktail", "alcohol" ], "moji": "🍹" }, "tropical_fish": { "unicode": "1F420", "unicode_alternates": [], "name": "tropical fish", "shortname": ":tropical_fish:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "swim", "wildlife" ], "moji": "🐠" }, "truck": { "unicode": "1F69A", "unicode_alternates": [], "name": "delivery truck", "shortname": ":truck:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "cars", "transportation", "truck", "delivery", "package" ], "moji": "🚚" }, "trumpet": { "unicode": "1F3BA", "unicode_alternates": [], "name": "trumpet", "shortname": ":trumpet:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "brass", "music", "trumpet", "instrument", "instruments" ], "moji": "🎺" }, "tulip": { "unicode": "1F337", "unicode_alternates": [], "name": "tulip", "shortname": ":tulip:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "flowers", "nature", "plant", "tulip", "flower", "bulb", "spring", "easter", "vagina", "girls night" ], "moji": "🌷" }, "tumbler_glass": { "unicode": "1F943", "unicode_alternates": [], "name": "tumbler glass", "shortname": ":tumbler_glass:", "category": "food", "aliases": [ ":whisky:" ], "aliases_ascii": [], "keywords": [ "booze" ], "moji": "🥃" }, "turkey": { "unicode": "1F983", "unicode_alternates": [], "name": "turkey", "shortname": ":turkey:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "wildlife", "animal" ], "moji": "🦃" }, "turtle": { "unicode": "1F422", "unicode_alternates": [], "name": "turtle", "shortname": ":turtle:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "slow", "turtle", "shell", "tortoise", "chelonian", "reptile", "snap", "steady", "wildlife" ], "moji": "🐢" }, "tv": { "unicode": "1F4FA", "unicode_alternates": [], "name": "television", "shortname": ":tv:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "oldschool", "program", "show", "technology", "tv", "entertainment", "object", "video", "electronics" ], "moji": "📺" }, "twisted_rightwards_arrows": { "unicode": "1F500", "unicode_alternates": [], "name": "twisted rightwards arrows", "shortname": ":twisted_rightwards_arrows:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "🔀" }, "two": { "moji": "2️⃣", "unicode": "0032-20E3", "unicode_alternates": [ "0032-FE0F-20E3" ], "name": "keycap digit two", "shortname": ":two:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "2", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "two_hearts": { "unicode": "1F495", "unicode_alternates": [], "name": "two hearts", "shortname": ":two_hearts:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "heart", "hearts", "two", "emotion", "symbol" ], "moji": "💕" }, "two_men_holding_hands": { "unicode": "1F46C", "unicode_alternates": [], "name": "two men holding hands", "shortname": ":two_men_holding_hands:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "bromance", "couple", "friends", "like", "love", "men", "gay", "homosexual", "hands", "holding", "team", "unity", "people", "sex", "lgbt" ], "moji": "👬" }, "two_women_holding_hands": { "unicode": "1F46D", "unicode_alternates": [], "name": "two women holding hands", "shortname": ":two_women_holding_hands:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "couple", "female", "friends", "like", "love", "women", "hands", "girlfriends", "sisters", "mother", "daughter", "gay", "homosexual", "unity", "people", "sex", "lgbt", "lesbian", "girls night" ], "moji": "👭" }, "u5272": { "unicode": "1F239", "unicode_alternates": [], "name": "squared cjk unified ideograph-5272", "shortname": ":u5272:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "cut", "divide", "kanji", "pink", "symbol" ], "moji": "🈹" }, "u5408": { "unicode": "1F234", "unicode_alternates": [], "name": "squared cjk unified ideograph-5408", "shortname": ":u5408:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "japanese", "join", "kanji", "japan", "symbol" ], "moji": "🈴" }, "u55b6": { "unicode": "1F23A", "unicode_alternates": [], "name": "squared cjk unified ideograph-55b6", "shortname": ":u55b6:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "japanese", "opening hours", "symbol" ], "moji": "🈺" }, "u6307": { "unicode": "1F22F", "unicode_alternates": [ "1F22F-FE0F" ], "name": "squared cjk unified ideograph-6307", "shortname": ":u6307:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "green-square", "kanji", "point", "symbol" ], "moji": "🈯" }, "u6708": { "unicode": "1F237", "unicode_alternates": [], "name": "squared cjk unified ideograph-6708", "shortname": ":u6708:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "japanese", "kanji", "moon", "orange-square", "symbol" ], "moji": "🈷" }, "u6709": { "unicode": "1F236", "unicode_alternates": [], "name": "squared cjk unified ideograph-6709", "shortname": ":u6709:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "have", "kanji", "orange-square", "symbol" ], "moji": "🈶" }, "u6e80": { "unicode": "1F235", "unicode_alternates": [], "name": "squared cjk unified ideograph-6e80", "shortname": ":u6e80:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "full", "japanese", "kanji", "red-square", "japan", "symbol" ], "moji": "🈵" }, "u7121": { "unicode": "1F21A", "unicode_alternates": [ "1F21A-FE0F" ], "name": "squared cjk unified ideograph-7121", "shortname": ":u7121:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "japanese", "kanji", "no", "nothing", "orange-square", "symbol" ], "moji": "🈚" }, "u7533": { "unicode": "1F238", "unicode_alternates": [], "name": "squared cjk unified ideograph-7533", "shortname": ":u7533:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "japanese", "kanji", "symbol" ], "moji": "🈸" }, "u7981": { "unicode": "1F232", "unicode_alternates": [], "name": "squared cjk unified ideograph-7981", "shortname": ":u7981:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "forbidden", "japanese", "kanji", "limit", "restricted", "japan", "symbol" ], "moji": "🈲" }, "u7a7a": { "unicode": "1F233", "unicode_alternates": [], "name": "squared cjk unified ideograph-7a7a", "shortname": ":u7a7a:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "chinese", "empty", "japanese", "kanji", "symbol" ], "moji": "🈳" }, "umbrella": { "unicode": "2614", "unicode_alternates": [ "2614-FE0F" ], "name": "umbrella with rain drops", "shortname": ":umbrella:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "rain", "weather", "sky", "cold" ], "moji": "☔" }, "umbrella2": { "unicode": "2602", "unicode_alternates": [], "name": "umbrella", "shortname": ":umbrella2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "clothing", "nature", "rain", "weather", "object", "sky", "cold" ], "moji": "☂" }, "unamused": { "unicode": "1F612", "unicode_alternates": [], "name": "unamused face", "shortname": ":unamused:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "bored", "face", "indifference", "serious", "straight face", "unamused", "not amused", "depressed", "unhappy", "disapprove", "lame", "sad", "mad", "smiley", "tired", "emotion" ], "moji": "😒" }, "underage": { "unicode": "1F51E", "unicode_alternates": [], "name": "no one under eighteen symbol", "shortname": ":underage:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "18", "drink", "night", "pub", "symbol" ], "moji": "🔞" }, "unicorn": { "unicode": "1F984", "unicode_alternates": [], "name": "unicorn face", "shortname": ":unicorn:", "category": "nature", "aliases": [ ":unicorn_face:" ], "aliases_ascii": [], "keywords": [ "animal" ], "moji": "🦄" }, "unlock": { "unicode": "1F513", "unicode_alternates": [], "name": "open lock", "shortname": ":unlock:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "privacy", "security", "object", "lock" ], "moji": "🔓" }, "up": { "unicode": "1F199", "unicode_alternates": [], "name": "squared up with exclamation mark", "shortname": ":up:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "symbol" ], "moji": "🆙" }, "upside_down": { "unicode": "1F643", "unicode_alternates": [], "name": "upside-down face", "shortname": ":upside_down:", "category": "people", "aliases": [ ":upside_down_face:" ], "aliases_ascii": [], "keywords": [ "silly", "smiley", "sarcastic" ], "moji": "🙃" }, "urn": { "unicode": "26B1", "unicode_alternates": [], "name": "funeral urn", "shortname": ":urn:", "category": "objects", "aliases": [ ":funeral_urn:" ], "aliases_ascii": [], "keywords": [ "death", "object", "dead", "rip" ], "moji": "⚱" }, "v": { "unicode": "270C", "unicode_alternates": [ "270C-FE0F" ], "name": "victory hand", "shortname": ":v:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "hand", "ohyeah", "peace", "two", "victory", "body", "hands", "hi", "thank you", "diversity", "girls night" ], "moji": "✌" }, "v_tone1": { "unicode": "270C-1F3FB", "unicode_alternates": [], "name": "victory hand tone 1", "shortname": ":v_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏻" }, "v_tone2": { "unicode": "270C-1F3FC", "unicode_alternates": [], "name": "victory hand tone 2", "shortname": ":v_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏼" }, "v_tone3": { "unicode": "270C-1F3FD", "unicode_alternates": [], "name": "victory hand tone 3", "shortname": ":v_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏽" }, "v_tone4": { "unicode": "270C-1F3FE", "unicode_alternates": [], "name": "victory hand tone 4", "shortname": ":v_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏾" }, "v_tone5": { "unicode": "270C-1F3FF", "unicode_alternates": [], "name": "victory hand tone 5", "shortname": ":v_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏿" }, "vertical_traffic_light": { "unicode": "1F6A6", "unicode_alternates": [], "name": "vertical traffic light", "shortname": ":vertical_traffic_light:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "transportation", "traffic", "light", "stop", "go", "yield", "vertical", "object", "stop light" ], "moji": "🚦" }, "vhs": { "unicode": "1F4FC", "unicode_alternates": [], "name": "videocassette", "shortname": ":vhs:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "oldschool", "record", "video", "electronics" ], "moji": "📼" }, "vibration_mode": { "unicode": "1F4F3", "unicode_alternates": [], "name": "vibration mode", "shortname": ":vibration_mode:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "orange-square", "phone", "symbol" ], "moji": "📳" }, "video_camera": { "unicode": "1F4F9", "unicode_alternates": [], "name": "video camera", "shortname": ":video_camera:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "film", "record", "electronics", "camera", "movie" ], "moji": "📹" }, "video_game": { "unicode": "1F3AE", "unicode_alternates": [], "name": "video game", "shortname": ":video_game:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "PS4", "console", "controller", "play", "video", "game", "nintendo", "xbox", "playstation", "electronics", "boys night" ], "moji": "🎮" }, "violin": { "unicode": "1F3BB", "unicode_alternates": [], "name": "violin", "shortname": ":violin:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "instrument", "music", "violin", "fiddle", "instruments", "sarcastic" ], "moji": "🎻" }, "virgo": { "unicode": "264D", "unicode_alternates": [ "264D-FE0F" ], "name": "virgo", "shortname": ":virgo:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "sign", "virgo", "maiden", "astrology", "greek", "constellation", "stars", "zodiac", "horoscope", "symbol" ], "moji": "♍" }, "volcano": { "unicode": "1F30B", "unicode_alternates": [], "name": "volcano", "shortname": ":volcano:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "photo", "volcano", "lava", "magma", "hot", "explode", "places", "tropical" ], "moji": "🌋" }, "volleyball": { "unicode": "1F3D0", "unicode_alternates": [], "name": "volleyball", "shortname": ":volleyball:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [ "game", "ball", "sport", "volleyball" ], "moji": "🏐" }, "vs": { "unicode": "1F19A", "unicode_alternates": [], "name": "squared vs", "shortname": ":vs:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "orange-square", "words", "symbol" ], "moji": "🆚" }, "vulcan": { "unicode": "1F596", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers", "shortname": ":vulcan:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long", "body", "hands", "hi", "diversity" ], "moji": "🖖" }, "vulcan_tone1": { "unicode": "1F596-1F3FB", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers tone 1", "shortname": ":vulcan_tone1:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone1:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏻" }, "vulcan_tone2": { "unicode": "1F596-1F3FC", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers tone 2", "shortname": ":vulcan_tone2:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone2:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏼" }, "vulcan_tone3": { "unicode": "1F596-1F3FD", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers tone 3", "shortname": ":vulcan_tone3:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone3:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏽" }, "vulcan_tone4": { "unicode": "1F596-1F3FE", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers tone 4", "shortname": ":vulcan_tone4:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone4:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏾" }, "vulcan_tone5": { "unicode": "1F596-1F3FF", "unicode_alternates": [], "name": "raised hand with part between middle and ring fingers tone 5", "shortname": ":vulcan_tone5:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone5:" ], "aliases_ascii": [], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏿" }, "walking": { "unicode": "1F6B6", "unicode_alternates": [], "name": "pedestrian", "shortname": ":walking:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "human", "man", "walk", "pedestrian", "stroll", "stride", "foot", "feet", "people", "men", "diversity" ], "moji": "🚶" }, "walking_tone1": { "unicode": "1F6B6-1F3FB", "unicode_alternates": [], "name": "pedestrian tone 1", "shortname": ":walking_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏻" }, "walking_tone2": { "unicode": "1F6B6-1F3FC", "unicode_alternates": [], "name": "pedestrian tone 2", "shortname": ":walking_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏼" }, "walking_tone3": { "unicode": "1F6B6-1F3FD", "unicode_alternates": [], "name": "pedestrian tone 3", "shortname": ":walking_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏽" }, "walking_tone4": { "unicode": "1F6B6-1F3FE", "unicode_alternates": [], "name": "pedestrian tone 4", "shortname": ":walking_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏾" }, "walking_tone5": { "unicode": "1F6B6-1F3FF", "unicode_alternates": [], "name": "pedestrian tone 5", "shortname": ":walking_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏿" }, "waning_crescent_moon": { "unicode": "1F318", "unicode_alternates": [], "name": "waning crescent moon symbol", "shortname": ":waning_crescent_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "crescent", "waning", "sky", "night", "cheese", "phase", "space" ], "moji": "🌘" }, "waning_gibbous_moon": { "unicode": "1F316", "unicode_alternates": [], "name": "waning gibbous moon symbol", "shortname": ":waning_gibbous_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "waning", "gibbous", "sky", "night", "cheese", "phase", "space" ], "moji": "🌖" }, "warning": { "unicode": "26A0", "unicode_alternates": [ "26A0-FE0F" ], "name": "warning sign", "shortname": ":warning:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "exclamation", "wip", "symbol", "punctuation" ], "moji": "⚠" }, "wastebasket": { "unicode": "1F5D1", "unicode_alternates": [], "name": "wastebasket", "shortname": ":wastebasket:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "trash", "garbage", "dispose", "object", "work" ], "moji": "🗑" }, "watch": { "unicode": "231A", "unicode_alternates": [ "231A-FE0F" ], "name": "watch", "shortname": ":watch:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "time", "electronics" ], "moji": "⌚" }, "water_buffalo": { "unicode": "1F403", "unicode_alternates": [], "name": "water buffalo", "shortname": ":water_buffalo:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "cow", "nature", "ox", "water", "buffalo", "asia", "bovine", "milk", "dairy", "wildlife" ], "moji": "🐃" }, "water_polo": { "unicode": "1F93D", "unicode_alternates": [], "name": "water polo", "shortname": ":water_polo:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽" }, "water_polo_tone1": { "unicode": "1F93D-1F3FB", "unicode_alternates": [], "name": "water polo tone 1", "shortname": ":water_polo_tone1:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽🏻" }, "water_polo_tone2": { "unicode": "1F93D-1F3FC", "unicode_alternates": [], "name": "water polo tone 2", "shortname": ":water_polo_tone2:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽🏼" }, "water_polo_tone3": { "unicode": "1F93D-1F3FD", "unicode_alternates": [], "name": "water polo tone 3", "shortname": ":water_polo_tone3:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽🏽" }, "water_polo_tone4": { "unicode": "1F93D-1F3FE", "unicode_alternates": [], "name": "water polo tone 4", "shortname": ":water_polo_tone4:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽🏾" }, "water_polo_tone5": { "unicode": "1F93D-1F3FF", "unicode_alternates": [], "name": "water polo tone 5", "shortname": ":water_polo_tone5:", "category": "activity", "aliases": [], "aliases_ascii": [], "keywords": [], "moji": "🤽🏿" }, "watermelon": { "unicode": "1F349", "unicode_alternates": [], "name": "watermelon", "shortname": ":watermelon:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "food", "fruit", "melon", "watermelon", "summer", "large" ], "moji": "🍉" }, "wave": { "unicode": "1F44B", "unicode_alternates": [], "name": "waving hand sign", "shortname": ":wave:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "hands", "solong", "body", "hi", "diversity" ], "moji": "👋" }, "wave_tone1": { "unicode": "1F44B-1F3FB", "unicode_alternates": [], "name": "waving hand sign tone 1", "shortname": ":wave_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏻" }, "wave_tone2": { "unicode": "1F44B-1F3FC", "unicode_alternates": [], "name": "waving hand sign tone 2", "shortname": ":wave_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏼" }, "wave_tone3": { "unicode": "1F44B-1F3FD", "unicode_alternates": [], "name": "waving hand sign tone 3", "shortname": ":wave_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏽" }, "wave_tone4": { "unicode": "1F44B-1F3FE", "unicode_alternates": [], "name": "waving hand sign tone 4", "shortname": ":wave_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏾" }, "wave_tone5": { "unicode": "1F44B-1F3FF", "unicode_alternates": [], "name": "waving hand sign tone 5", "shortname": ":wave_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏿" }, "wavy_dash": { "unicode": "3030", "unicode_alternates": [], "name": "wavy dash", "shortname": ":wavy_dash:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "draw", "line", "symbol" ], "moji": "〰" }, "waxing_crescent_moon": { "unicode": "1F312", "unicode_alternates": [], "name": "waxing crescent moon symbol", "shortname": ":waxing_crescent_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "moon", "waxing", "sky", "night", "cheese", "phase", "space" ], "moji": "🌒" }, "waxing_gibbous_moon": { "unicode": "1F314", "unicode_alternates": [], "name": "waxing gibbous moon symbol", "shortname": ":waxing_gibbous_moon:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "nature", "space", "sky", "moon" ], "moji": "🌔" }, "wc": { "unicode": "1F6BE", "unicode_alternates": [], "name": "water closet", "shortname": ":wc:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "restroom", "toilet", "water", "closet", "bathroom", "throne", "porcelain", "waste", "flush", "plumbing", "symbol" ], "moji": "🚾" }, "weary": { "unicode": "1F629", "unicode_alternates": [], "name": "weary face", "shortname": ":weary:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "frustrated", "sad", "sleepy", "tired", "weary", "tiredness", "study", "finals", "school", "exhausted", "smiley", "stressed", "emotion" ], "moji": "😩" }, "wedding": { "unicode": "1F492", "unicode_alternates": [], "name": "wedding", "shortname": ":wedding:", "category": "travel", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "bride", "couple", "groom", "like", "love", "marriage", "places", "wedding", "building", "parties" ], "moji": "💒" }, "whale": { "unicode": "1F433", "unicode_alternates": [], "name": "spouting whale", "shortname": ":whale:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "ocean", "sea", "wildlife", "tropical", "whales" ], "moji": "🐳" }, "whale2": { "unicode": "1F40B", "unicode_alternates": [], "name": "whale", "shortname": ":whale2:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "ocean", "sea", "whale", "blubber", "bloated", "fat", "large", "massive", "wildlife", "tropical", "whales" ], "moji": "🐋" }, "wheel_of_dharma": { "unicode": "2638", "unicode_alternates": [], "name": "wheel of dharma", "shortname": ":wheel_of_dharma:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "buddhist", "religion", "symbol" ], "moji": "☸" }, "wheelchair": { "unicode": "267F", "unicode_alternates": [ "267F-FE0F" ], "name": "wheelchair symbol", "shortname": ":wheelchair:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "disabled", "symbol" ], "moji": "♿" }, "white_check_mark": { "unicode": "2705", "unicode_alternates": [], "name": "white heavy check mark", "shortname": ":white_check_mark:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "agree", "green-square", "ok", "symbol" ], "moji": "✅" }, "white_circle": { "unicode": "26AA", "unicode_alternates": [ "26AA-FE0F" ], "name": "medium white circle", "shortname": ":white_circle:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "⚪" }, "white_flower": { "unicode": "1F4AE", "unicode_alternates": [], "name": "white flower", "shortname": ":white_flower:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "japanese", "white", "flower", "teacher", "school", "grade", "score", "brilliance", "intelligence", "homework", "student", "assignment", "praise", "symbol" ], "moji": "💮" }, "white_large_square": { "unicode": "2B1C", "unicode_alternates": [ "2B1C-FE0F" ], "name": "white large square", "shortname": ":white_large_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "⬜" }, "white_medium_small_square": { "unicode": "25FD", "unicode_alternates": [ "25FD-FE0F" ], "name": "white medium small square", "shortname": ":white_medium_small_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◽" }, "white_medium_square": { "unicode": "25FB", "unicode_alternates": [ "25FB-FE0F" ], "name": "white medium square", "shortname": ":white_medium_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◻" }, "white_small_square": { "unicode": "25AB", "unicode_alternates": [ "25AB-FE0F" ], "name": "white small square", "shortname": ":white_small_square:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "▫" }, "white_square_button": { "unicode": "1F533", "unicode_alternates": [], "name": "white square button", "shortname": ":white_square_button:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "🔳" }, "white_sun_cloud": { "unicode": "1F325", "unicode_alternates": [], "name": "white sun behind cloud", "shortname": ":white_sun_cloud:", "category": "nature", "aliases": [ ":white_sun_behind_cloud:" ], "aliases_ascii": [], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "sun" ], "moji": "🌥" }, "white_sun_rain_cloud": { "unicode": "1F326", "unicode_alternates": [], "name": "white sun behind cloud with rain", "shortname": ":white_sun_rain_cloud:", "category": "nature", "aliases": [ ":white_sun_behind_cloud_with_rain:" ], "aliases_ascii": [], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "rain", "sun" ], "moji": "🌦" }, "white_sun_small_cloud": { "unicode": "1F324", "unicode_alternates": [], "name": "white sun with small cloud", "shortname": ":white_sun_small_cloud:", "category": "nature", "aliases": [ ":white_sun_with_small_cloud:" ], "aliases_ascii": [], "keywords": [ "nature", "weather", "sky", "cloud", "sun" ], "moji": "🌤" }, "wilted_rose": { "unicode": "1F940", "unicode_alternates": [], "name": "wilted flower", "shortname": ":wilted_rose:", "category": "nature", "aliases": [ ":wilted_flower:" ], "aliases_ascii": [], "keywords": [], "moji": "🥀" }, "wind_blowing_face": { "unicode": "1F32C", "unicode_alternates": [], "name": "wind blowing face", "shortname": ":wind_blowing_face:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "mother", "nature", "weather", "cold" ], "moji": "🌬" }, "wind_chime": { "unicode": "1F390", "unicode_alternates": [], "name": "wind chime", "shortname": ":wind_chime:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "ding", "nature", "wind", "chime", "bell", "fūrin", "instrument", "music", "spirits", "soothing", "protective", "spiritual", "sound", "object", "japan" ], "moji": "🎐" }, "wine_glass": { "unicode": "1F377", "unicode_alternates": [], "name": "wine glass", "shortname": ":wine_glass:", "category": "food", "aliases": [], "aliases_ascii": [], "keywords": [ "alcohol", "beverage", "booze", "bottle", "drink", "drunk", "fermented", "glass", "grapes", "tasting", "wine", "winery", "italian", "girls night", "parties" ], "moji": "🍷" }, "wink": { "unicode": "1F609", "unicode_alternates": [], "name": "winking face", "shortname": ":wink:", "category": "people", "aliases": [], "aliases_ascii": [ ";)", ";-)", "*-)", "*)", ";-]", ";]", ";D", ";^)" ], "keywords": [ "face", "happy", "mischievous", "secret", "wink", "winking", "friendly", "joke", "silly", "smiley", "emotion" ], "moji": "😉" }, "wolf": { "unicode": "1F43A", "unicode_alternates": [], "name": "wolf face", "shortname": ":wolf:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "animal", "nature", "wildlife", "roar" ], "moji": "🐺" }, "woman": { "unicode": "1F469", "unicode_alternates": [], "name": "woman", "shortname": ":woman:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girls", "people", "women", "sex", "diversity", "feminist", "selfie", "girls night" ], "moji": "👩" }, "woman_tone1": { "unicode": "1F469-1F3FB", "unicode_alternates": [], "name": "woman tone 1", "shortname": ":woman_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏻" }, "woman_tone2": { "unicode": "1F469-1F3FC", "unicode_alternates": [], "name": "woman tone 2", "shortname": ":woman_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏼" }, "woman_tone3": { "unicode": "1F469-1F3FD", "unicode_alternates": [], "name": "woman tone 3", "shortname": ":woman_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏽" }, "woman_tone4": { "unicode": "1F469-1F3FE", "unicode_alternates": [], "name": "woman tone 4", "shortname": ":woman_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏾" }, "woman_tone5": { "unicode": "1F469-1F3FF", "unicode_alternates": [], "name": "woman tone 5", "shortname": ":woman_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏿" }, "womans_clothes": { "unicode": "1F45A", "unicode_alternates": [], "name": "womans clothes", "shortname": ":womans_clothes:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "fashion", "woman", "clothing", "clothes", "blouse", "shirt", "wardrobe", "breasts", "cleavage", "shopping", "shop", "dressing", "dressed", "women" ], "moji": "👚" }, "womans_hat": { "unicode": "1F452", "unicode_alternates": [], "name": "womans hat", "shortname": ":womans_hat:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "accessories", "fashion", "female", "women" ], "moji": "👒" }, "womens": { "unicode": "1F6BA", "unicode_alternates": [], "name": "womens symbol", "shortname": ":womens:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "purple-square", "woman", "bathroom", "restroom", "sign", "girl", "female", "avatar", "symbol" ], "moji": "🚺" }, "worried": { "unicode": "1F61F", "unicode_alternates": [], "name": "worried face", "shortname": ":worried:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "concern", "face", "nervous", "worried", "anxious", "distressed", "tense", "sad", "smiley", "emotion" ], "moji": "😟" }, "wrench": { "unicode": "1F527", "unicode_alternates": [], "name": "wrench", "shortname": ":wrench:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "diy", "ikea", "tools", "object", "tool" ], "moji": "🔧" }, "wrestlers": { "unicode": "1F93C", "unicode_alternates": [], "name": "wrestlers", "shortname": ":wrestlers:", "category": "activity", "aliases": [ ":wrestling:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼" }, "wrestlers_tone1": { "unicode": "1F93C-1F3FB", "unicode_alternates": [], "name": "wrestlers tone 1", "shortname": ":wrestlers_tone1:", "category": "activity", "aliases": [ ":wrestling_tone1:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼🏻" }, "wrestlers_tone2": { "unicode": "1F93C-1F3FC", "unicode_alternates": [], "name": "wrestlers tone 2", "shortname": ":wrestlers_tone2:", "category": "activity", "aliases": [ ":wrestling_tone2:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼🏼" }, "wrestlers_tone3": { "unicode": "1F93C-1F3FD", "unicode_alternates": [], "name": "wrestlers tone 3", "shortname": ":wrestlers_tone3:", "category": "activity", "aliases": [ ":wrestling_tone3:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼🏽" }, "wrestlers_tone4": { "unicode": "1F93C-1F3FE", "unicode_alternates": [], "name": "wrestlers tone 4", "shortname": ":wrestlers_tone4:", "category": "activity", "aliases": [ ":wrestling_tone4:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼🏾" }, "wrestlers_tone5": { "unicode": "1F93C-1F3FF", "unicode_alternates": [], "name": "wrestlers tone 5", "shortname": ":wrestlers_tone5:", "category": "activity", "aliases": [ ":wrestling_tone5:" ], "aliases_ascii": [], "keywords": [], "moji": "🤼🏿" }, "writing_hand": { "unicode": "270D", "unicode_alternates": [ "270D-FE0F" ], "name": "writing hand", "shortname": ":writing_hand:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "body", "hands", "write", "diversity" ], "moji": "✍" }, "writing_hand_tone1": { "unicode": "270D-1F3FB", "unicode_alternates": [], "name": "writing hand tone 1", "shortname": ":writing_hand_tone1:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏻" }, "writing_hand_tone2": { "unicode": "270D-1F3FC", "unicode_alternates": [], "name": "writing hand tone 2", "shortname": ":writing_hand_tone2:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏼" }, "writing_hand_tone3": { "unicode": "270D-1F3FD", "unicode_alternates": [], "name": "writing hand tone 3", "shortname": ":writing_hand_tone3:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏽" }, "writing_hand_tone4": { "unicode": "270D-1F3FE", "unicode_alternates": [], "name": "writing hand tone 4", "shortname": ":writing_hand_tone4:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏾" }, "writing_hand_tone5": { "unicode": "270D-1F3FF", "unicode_alternates": [], "name": "writing hand tone 5", "shortname": ":writing_hand_tone5:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏿" }, "x": { "unicode": "274C", "unicode_alternates": [], "name": "cross mark", "shortname": ":x:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "delete", "no", "remove", "symbol", "sol" ], "moji": "❌" }, "yellow_heart": { "unicode": "1F49B", "unicode_alternates": [], "name": "yellow heart", "shortname": ":yellow_heart:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "affection", "like", "love", "valentines", "yellow", "gold", "heart", "friendship", "happy", "happiness", "trust", "compassionate", "respectful", "honest", "caring", "selfless", "symbol" ], "moji": "💛" }, "yen": { "unicode": "1F4B4", "unicode_alternates": [], "name": "banknote with yen sign", "shortname": ":yen:", "category": "objects", "aliases": [], "aliases_ascii": [], "keywords": [ "currency", "dollar", "japanese", "money", "yen", "japan", "banknote", "paper", "cash", "bill" ], "moji": "💴" }, "yin_yang": { "unicode": "262F", "unicode_alternates": [], "name": "yin yang", "shortname": ":yin_yang:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "religion", "sign", "symbol", "tao", "taoist" ], "moji": "☯" }, "yum": { "unicode": "1F60B", "unicode_alternates": [], "name": "face savouring delicious food", "shortname": ":yum:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "face", "happy", "joy", "smile", "tongue", "delicious", "savoring", "food", "eat", "yummy", "yum", "tasty", "savory", "silly", "smiley", "emotion", "sarcastic", "good" ], "moji": "😋" }, "zap": { "unicode": "26A1", "unicode_alternates": [ "26A1-FE0F" ], "name": "high voltage sign", "shortname": ":zap:", "category": "nature", "aliases": [], "aliases_ascii": [], "keywords": [ "lightning bolt", "thunder", "weather", "sky", "diarrhea" ], "moji": "⚡" }, "zero": { "moji": "0️⃣", "unicode": "0030-20E3", "unicode_alternates": [ "0030-FE0F-20E3" ], "name": "keycap digit zero", "shortname": ":zero:", "category": "symbols", "aliases": [], "aliases_ascii": [], "keywords": [ "blue-square", "null", "numbers", "number", "math", "symbol" ] }, "zipper_mouth": { "unicode": "1F910", "unicode_alternates": [], "name": "zipper-mouth face", "shortname": ":zipper_mouth:", "category": "people", "aliases": [ ":zipper_mouth_face:" ], "aliases_ascii": [], "keywords": [ "mad", "smiley" ], "moji": "🤐" }, "zzz": { "unicode": "1F4A4", "unicode_alternates": [], "name": "sleeping symbol", "shortname": ":zzz:", "category": "people", "aliases": [], "aliases_ascii": [], "keywords": [ "sleepy", "tired", "goodnight" ], "moji": "💤" } } tanuki_emoji-0.9.0/vendor/gemojione/LICENSE.txt0000644000004100000410000000220614545323276021335 0ustar www-datawww-dataCopyright (c) 2013 Jonathan Wiesel Original work by Steve Klabnik on [emoji gem](https://github.com/steveklabnik/emoji) MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tanuki_emoji-0.9.0/vendor/gemojione/index-4.1.0.json0000644000004100000410000256754514545323276022202 0ustar www-datawww-data{ "100": { "unicode": "1F4AF", "unicode_alternates": [ ], "name": "hundred points symbol", "shortname": ":100:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "numbers", "perfect", "score", "100", "percent", "a", "plus", "school", "quiz", "test", "exam", "symbol", "wow", "win", "parties" ], "moji": "💯" }, "1234": { "unicode": "1F522", "unicode_alternates": [ ], "name": "input symbol for numbers", "shortname": ":1234:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "numbers", "symbol" ], "moji": "🔢" }, "8ball": { "unicode": "1F3B1", "unicode_alternates": [ ], "name": "billiards", "shortname": ":8ball:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pool", "billiards", "eight ball", "pocket ball", "cue", "game", "ball", "sport", "luck", "boys night" ], "moji": "🎱" }, "a": { "unicode": "1F170", "unicode_alternates": [ ], "name": "negative squared latin capital letter a", "shortname": ":a:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅰" }, "ab": { "unicode": "1F18E", "unicode_alternates": [ ], "name": "negative squared ab", "shortname": ":ab:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "red-square", "symbol" ], "moji": "🆎" }, "abc": { "unicode": "1F524", "unicode_alternates": [ ], "name": "input symbol for latin letters", "shortname": ":abc:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "blue-square", "symbol" ], "moji": "🔤" }, "abcd": { "unicode": "1F521", "unicode_alternates": [ ], "name": "input symbol for latin small letters", "shortname": ":abcd:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "blue-square", "symbol" ], "moji": "🔡" }, "accept": { "unicode": "1F251", "unicode_alternates": [ ], "name": "circled ideograph accept", "shortname": ":accept:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "agree", "chinese", "good", "kanji", "ok", "yes", "symbol" ], "moji": "🉑" }, "aerial_tramway": { "unicode": "1F6A1", "unicode_alternates": [ ], "name": "aerial tramway", "shortname": ":aerial_tramway:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "aerial", "tram", "tramway", "cable", "transport", "travel", "train" ], "moji": "🚡" }, "airplane": { "unicode": "2708", "unicode_alternates": [ "2708-FE0F" ], "name": "airplane", "shortname": ":airplane:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flight", "transportation", "vehicle", "airplane", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "✈" }, "airplane_arriving": { "unicode": "1F6EC", "unicode_alternates": [ ], "name": "airplane arriving", "shortname": ":airplane_arriving:", "category": "travel", "aliases": [ ":flight_arrival:" ], "aliases_ascii": [ ], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "🛬" }, "airplane_departure": { "unicode": "1F6EB", "unicode_alternates": [ ], "name": "airplane departure", "shortname": ":airplane_departure:", "category": "travel", "aliases": [ ":flight_departure:" ], "aliases_ascii": [ ], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "leaving", "vacation" ], "moji": "🛫" }, "airplane_small": { "unicode": "1F6E9", "unicode_alternates": [ ], "name": "small airplane", "shortname": ":airplane_small:", "category": "travel", "aliases": [ ":small_airplane:" ], "aliases_ascii": [ ], "keywords": [ "flight", "transportation", "vehicle", "plane", "airport", "travel", "airlines", "fly", "jet", "jumbo", "boeing", "airbus", "vacation" ], "moji": "🛩" }, "alarm_clock": { "unicode": "23F0", "unicode_alternates": [ ], "name": "alarm clock", "shortname": ":alarm_clock:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "time", "wake", "object" ], "moji": "⏰" }, "alembic": { "unicode": "2697", "unicode_alternates": [ ], "name": "alembic", "shortname": ":alembic:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chemistry", "object", "tool", "science" ], "moji": "⚗" }, "alien": { "unicode": "1F47D", "unicode_alternates": [ ], "name": "extraterrestrial alien", "shortname": ":alien:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "UFO", "paul", "alien", "ufo", "space", "monster", "scientology" ], "moji": "👽" }, "ambulance": { "unicode": "1F691", "unicode_alternates": [ ], "name": "ambulance", "shortname": ":ambulance:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "911", "health", "ambulance", "emergency", "medical", "help", "assistance", "transportation" ], "moji": "🚑" }, "amphora": { "unicode": "1F3FA", "unicode_alternates": [ ], "name": "amphora", "shortname": ":amphora:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "object" ], "moji": "🏺" }, "anchor": { "unicode": "2693", "unicode_alternates": [ "2693-FE0F" ], "name": "anchor", "shortname": ":anchor:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ferry", "ship", "anchor", "boat", "ocean", "harbor", "marina", "shipyard", "sailor", "tattoo", "object", "travel", "vacation" ], "moji": "⚓" }, "angel": { "unicode": "1F47C", "unicode_alternates": [ ], "name": "baby angel", "shortname": ":angel:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "baby", "angel", "halo", "cupid", "wings", "heaven", "jesus", "people", "diversity", "omg" ], "moji": "👼" }, "angel_tone1": { "unicode": "1F47C-1F3FB", "unicode_alternates": [ ], "name": "baby angel tone 1", "shortname": ":angel_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏻" }, "angel_tone2": { "unicode": "1F47C-1F3FC", "unicode_alternates": [ ], "name": "baby angel tone 2", "shortname": ":angel_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏼" }, "angel_tone3": { "unicode": "1F47C-1F3FD", "unicode_alternates": [ ], "name": "baby angel tone 3", "shortname": ":angel_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏽" }, "angel_tone4": { "unicode": "1F47C-1F3FE", "unicode_alternates": [ ], "name": "baby angel tone 4", "shortname": ":angel_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏾" }, "angel_tone5": { "unicode": "1F47C-1F3FF", "unicode_alternates": [ ], "name": "baby angel tone 5", "shortname": ":angel_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halo", "cupid", "heaven", "wings", "jesus" ], "moji": "👼🏿" }, "anger": { "unicode": "1F4A2", "unicode_alternates": [ ], "name": "anger symbol", "shortname": ":anger:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "anger", "angry", "mad", "symbol" ], "moji": "💢" }, "anger_right": { "unicode": "1F5EF", "unicode_alternates": [ ], "name": "right anger bubble", "shortname": ":anger_right:", "category": "symbols", "aliases": [ ":right_anger_bubble:" ], "aliases_ascii": [ ], "keywords": [ "speech", "balloon", "talk", "mood", "conversation", "communication", "comic", "angry", "symbol" ], "moji": "🗯" }, "angry": { "unicode": "1F620", "unicode_alternates": [ ], "name": "angry face", "shortname": ":angry:", "category": "people", "aliases": [ ], "aliases_ascii": [ ">:(", ">:-(", ":@" ], "keywords": [ "angry", "livid", "mad", "vexed", "irritated", "annoyed", "face", "frustrated", "smiley", "emotion" ], "moji": "😠" }, "anguished": { "unicode": "1F627", "unicode_alternates": [ ], "name": "anguished face", "shortname": ":anguished:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "nervous", "stunned", "pain", "anguish", "ouch", "misery", "distress", "grief", "sad", "smiley", "surprised", "emotion" ], "moji": "😧" }, "ant": { "unicode": "1F41C", "unicode_alternates": [ ], "name": "ant", "shortname": ":ant:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "insect", "ant", "queen", "team", "insects" ], "moji": "🐜" }, "apple": { "unicode": "1F34E", "unicode_alternates": [ ], "name": "red apple", "shortname": ":apple:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fruit", "mac", "apple", "electronics", "red", "doctor", "teacher", "school", "core", "food", "creationism" ], "moji": "🍎" }, "aquarius": { "unicode": "2652", "unicode_alternates": [ "2652-FE0F" ], "name": "aquarius", "shortname": ":aquarius:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "aquarius", "water", "bearer", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♒" }, "aries": { "unicode": "2648", "unicode_alternates": [ "2648-FE0F" ], "name": "aries", "shortname": ":aries:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "aries", "ram", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♈" }, "arrow_backward": { "unicode": "25C0", "unicode_alternates": [ "25C0-FE0F" ], "name": "black left-pointing triangle", "shortname": ":arrow_backward:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "◀" }, "arrow_double_down": { "unicode": "23EC", "unicode_alternates": [ ], "name": "black down-pointing double triangle", "shortname": ":arrow_double_down:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⏬" }, "arrow_double_up": { "unicode": "23EB", "unicode_alternates": [ ], "name": "black up-pointing double triangle", "shortname": ":arrow_double_up:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⏫" }, "arrow_down": { "unicode": "2B07", "unicode_alternates": [ "2B07-FE0F" ], "name": "downwards black arrow", "shortname": ":arrow_down:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⬇" }, "arrow_down_small": { "unicode": "1F53D", "unicode_alternates": [ ], "name": "down-pointing small red triangle", "shortname": ":arrow_down_small:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "🔽" }, "arrow_forward": { "unicode": "25B6", "unicode_alternates": [ "25B6-FE0F" ], "name": "black right-pointing triangle", "shortname": ":arrow_forward:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol", "triangle" ], "moji": "▶" }, "arrow_heading_down": { "unicode": "2935", "unicode_alternates": [ "2935-FE0F" ], "name": "arrow pointing rightwards then curving downwards", "shortname": ":arrow_heading_down:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⤵" }, "arrow_heading_up": { "unicode": "2934", "unicode_alternates": [ "2934-FE0F" ], "name": "arrow pointing rightwards then curving upwards", "shortname": ":arrow_heading_up:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "⤴" }, "arrow_left": { "unicode": "2B05", "unicode_alternates": [ "2B05-FE0F" ], "name": "leftwards black arrow", "shortname": ":arrow_left:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "previous", "symbol" ], "moji": "⬅" }, "arrow_lower_left": { "unicode": "2199", "unicode_alternates": [ "2199-FE0F" ], "name": "south west arrow", "shortname": ":arrow_lower_left:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "↙" }, "arrow_lower_right": { "unicode": "2198", "unicode_alternates": [ "2198-FE0F" ], "name": "south east arrow", "shortname": ":arrow_lower_right:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "blue-square", "symbol" ], "moji": "↘" }, "arrow_right": { "unicode": "27A1", "unicode_alternates": [ "27A1-FE0F" ], "name": "black rightwards arrow", "shortname": ":arrow_right:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "next", "arrow", "symbol" ], "moji": "➡" }, "arrow_right_hook": { "unicode": "21AA", "unicode_alternates": [ "21AA-FE0F" ], "name": "rightwards arrow with hook", "shortname": ":arrow_right_hook:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↪" }, "arrow_up": { "unicode": "2B06", "unicode_alternates": [ "2B06-FE0F" ], "name": "upwards black arrow", "shortname": ":arrow_up:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "⬆" }, "arrow_up_down": { "unicode": "2195", "unicode_alternates": [ "2195-FE0F" ], "name": "up down arrow", "shortname": ":arrow_up_down:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↕" }, "arrow_up_small": { "unicode": "1F53C", "unicode_alternates": [ ], "name": "up-pointing small red triangle", "shortname": ":arrow_up_small:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol", "triangle" ], "moji": "🔼" }, "arrow_upper_left": { "unicode": "2196", "unicode_alternates": [ "2196-FE0F" ], "name": "north west arrow", "shortname": ":arrow_upper_left:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↖" }, "arrow_upper_right": { "unicode": "2197", "unicode_alternates": [ "2197-FE0F" ], "name": "north east arrow", "shortname": ":arrow_upper_right:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "↗" }, "arrows_clockwise": { "unicode": "1F503", "unicode_alternates": [ ], "name": "clockwise downwards and upwards open circle arrows", "shortname": ":arrows_clockwise:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sync", "arrow", "symbol" ], "moji": "🔃" }, "arrows_counterclockwise": { "unicode": "1F504", "unicode_alternates": [ ], "name": "anticlockwise downwards and upwards open circle ar", "shortname": ":arrows_counterclockwise:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "sync", "arrow", "symbol" ], "moji": "🔄" }, "art": { "unicode": "1F3A8", "unicode_alternates": [ ], "name": "artist palette", "shortname": ":art:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "design", "draw", "paint", "artist", "palette", "art", "colors", "brush", "pastels", "oils" ], "moji": "🎨" }, "articulated_lorry": { "unicode": "1F69B", "unicode_alternates": [ ], "name": "articulated lorry", "shortname": ":articulated_lorry:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "transportation", "vehicle", "truck", "delivery", "semi", "lorry", "articulated" ], "moji": "🚛" }, "asterisk": { "unicode": "002A-20E3", "unicode_alternates": [ "002A-FE0F-20E3" ], "name": "keycap asterisk", "shortname": ":asterisk:", "category": "symbols", "aliases": [ ":keycap_asterisk:" ], "aliases_ascii": [ ], "keywords": [ "*", "star", "symbol" ], "moji": "*⃣" }, "astonished": { "unicode": "1F632", "unicode_alternates": [ ], "name": "astonished face", "shortname": ":astonished:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "xox", "shocked", "surprise", "astonished", "smiley", "surprised", "wow", "emotion", "omg" ], "moji": "😲" }, "athletic_shoe": { "unicode": "1F45F", "unicode_alternates": [ ], "name": "athletic shoe", "shortname": ":athletic_shoe:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shoes", "sports", "fashion", "shoe", "accessories", "boys night" ], "moji": "👟" }, "atm": { "unicode": "1F3E7", "unicode_alternates": [ ], "name": "automated teller machine", "shortname": ":atm:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "atm", "cash", "withdrawal", "money", "deposit", "financial", "bank", "adam", "payday", "blue-square", "payment", "electronics", "symbol" ], "moji": "🏧" }, "atom": { "unicode": "269B", "unicode_alternates": [ ], "name": "atom symbol", "shortname": ":atom:", "category": "symbols", "aliases": [ ":atom_symbol:" ], "aliases_ascii": [ ], "keywords": [ "atheist", "symbol", "science" ], "moji": "⚛" }, "avocado": { "unicode": "1F951", "unicode_alternates": [ ], "name": "avocado", "shortname": ":avocado:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥑" }, "b": { "unicode": "1F171", "unicode_alternates": [ ], "name": "negative squared latin capital letter b", "shortname": ":b:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅱" }, "baby": { "unicode": "1F476", "unicode_alternates": [ ], "name": "baby", "shortname": ":baby:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "child", "infant", "people", "baby", "diversity" ], "moji": "👶" }, "baby_bottle": { "unicode": "1F37C", "unicode_alternates": [ ], "name": "baby bottle", "shortname": ":baby_bottle:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "container", "food", "baby", "bottle", "milk", "mother", "nipple", "newborn", "formula", "drink", "object" ], "moji": "🍼" }, "baby_chick": { "unicode": "1F424", "unicode_alternates": [ ], "name": "baby chick", "shortname": ":baby_chick:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "chicken", "chick", "baby", "bird", "young", "woman", "cute" ], "moji": "🐤" }, "baby_symbol": { "unicode": "1F6BC", "unicode_alternates": [ ], "name": "baby symbol", "shortname": ":baby_symbol:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "orange-square", "baby", "crawl", "newborn", "human", "diaper", "small", "babe", "symbol" ], "moji": "🚼" }, "baby_tone1": { "unicode": "1F476-1F3FB", "unicode_alternates": [ ], "name": "baby tone 1", "shortname": ":baby_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏻" }, "baby_tone2": { "unicode": "1F476-1F3FC", "unicode_alternates": [ ], "name": "baby tone 2", "shortname": ":baby_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏼" }, "baby_tone3": { "unicode": "1F476-1F3FD", "unicode_alternates": [ ], "name": "baby tone 3", "shortname": ":baby_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏽" }, "baby_tone4": { "unicode": "1F476-1F3FE", "unicode_alternates": [ ], "name": "baby tone 4", "shortname": ":baby_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏾" }, "baby_tone5": { "unicode": "1F476-1F3FF", "unicode_alternates": [ ], "name": "baby tone 5", "shortname": ":baby_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "child", "infant", "toddler" ], "moji": "👶🏿" }, "back": { "unicode": "1F519", "unicode_alternates": [ ], "name": "back with leftwards arrow above", "shortname": ":back:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "symbol" ], "moji": "🔙" }, "bacon": { "unicode": "1F953", "unicode_alternates": [ ], "name": "bacon", "shortname": ":bacon:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pig" ], "moji": "🥓" }, "badminton": { "unicode": "1F3F8", "unicode_alternates": [ ], "name": "badminton racquet", "shortname": ":badminton:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "game", "sport", "badminton" ], "moji": "🏸" }, "baggage_claim": { "unicode": "1F6C4", "unicode_alternates": [ ], "name": "baggage claim", "shortname": ":baggage_claim:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "airport", "blue-square", "transport", "bag", "baggage", "luggage", "travel", "symbol" ], "moji": "🛄" }, "balloon": { "unicode": "1F388", "unicode_alternates": [ ], "name": "balloon", "shortname": ":balloon:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "celebration", "party", "balloon", "birthday", "helium", "gas", "children", "float", "object", "good", "parties" ], "moji": "🎈" }, "ballot_box": { "unicode": "1F5F3", "unicode_alternates": [ ], "name": "ballot box with ballot", "shortname": ":ballot_box:", "category": "objects", "aliases": [ ":ballot_box_with_ballot:" ], "aliases_ascii": [ ], "keywords": [ "vote", "object", "office" ], "moji": "🗳" }, "ballot_box_with_check": { "unicode": "2611", "unicode_alternates": [ "2611-FE0F" ], "name": "ballot box with check", "shortname": ":ballot_box_with_check:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "agree", "ok", "symbol" ], "moji": "☑" }, "bamboo": { "unicode": "1F38D", "unicode_alternates": [ ], "name": "pine decoration", "shortname": ":bamboo:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "vegetable", "pine", "bamboo", "decoration", "new", "years", "spirits", "harvest", "prosperity", "longevity", "fortune", "luck", "welcome", "farming", "agriculture" ], "moji": "🎍" }, "banana": { "unicode": "1F34C", "unicode_alternates": [ ], "name": "banana", "shortname": ":banana:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "banana", "peel", "bunch", "penis" ], "moji": "🍌" }, "bangbang": { "unicode": "203C", "unicode_alternates": [ "203C-FE0F" ], "name": "double exclamation mark", "shortname": ":bangbang:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exclamation", "surprise", "symbol", "punctuation" ], "moji": "‼" }, "bank": { "unicode": "1F3E6", "unicode_alternates": [ ], "name": "bank", "shortname": ":bank:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "places" ], "moji": "🏦" }, "bar_chart": { "unicode": "1F4CA", "unicode_alternates": [ ], "name": "bar chart", "shortname": ":bar_chart:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "graph", "presentation", "stats", "work", "office" ], "moji": "📊" }, "barber": { "unicode": "1F488", "unicode_alternates": [ ], "name": "barber pole", "shortname": ":barber:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hair", "salon", "style", "object" ], "moji": "💈" }, "baseball": { "unicode": "26BE", "unicode_alternates": [ "26BE-FE0F" ], "name": "baseball", "shortname": ":baseball:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "MLB", "balls", "sports", "game", "ball", "sport", "baseball" ], "moji": "⚾" }, "basketball": { "unicode": "1F3C0", "unicode_alternates": [ ], "name": "basketball and hoop", "shortname": ":basketball:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "NBA", "balls", "sports", "basketball", "bball", "dribble", "hoop", "net", "swish", "rip city", "game", "ball", "sport" ], "moji": "🏀" }, "basketball_player": { "unicode": "26F9", "unicode_alternates": [ ], "name": "person with ball", "shortname": ":basketball_player:", "category": "activity", "aliases": [ ":person_with_ball:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball", "diversity" ], "moji": "⛹" }, "basketball_player_tone1": { "unicode": "26F9-1F3FB", "unicode_alternates": [ ], "name": "person with ball tone 1", "shortname": ":basketball_player_tone1:", "category": "activity", "aliases": [ ":person_with_ball_tone1:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏻" }, "basketball_player_tone2": { "unicode": "26F9-1F3FC", "unicode_alternates": [ ], "name": "person with ball tone 2", "shortname": ":basketball_player_tone2:", "category": "activity", "aliases": [ ":person_with_ball_tone2:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏼" }, "basketball_player_tone3": { "unicode": "26F9-1F3FD", "unicode_alternates": [ ], "name": "person with ball tone 3", "shortname": ":basketball_player_tone3:", "category": "activity", "aliases": [ ":person_with_ball_tone3:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏽" }, "basketball_player_tone4": { "unicode": "26F9-1F3FE", "unicode_alternates": [ ], "name": "person with ball tone 4", "shortname": ":basketball_player_tone4:", "category": "activity", "aliases": [ ":person_with_ball_tone4:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏾" }, "basketball_player_tone5": { "unicode": "26F9-1F3FF", "unicode_alternates": [ ], "name": "person with ball tone 5", "shortname": ":basketball_player_tone5:", "category": "activity", "aliases": [ ":person_with_ball_tone5:" ], "aliases_ascii": [ ], "keywords": [ "sport", "travel", "men", "game", "ball", "basketball" ], "moji": "⛹🏿" }, "bat": { "unicode": "1F987", "unicode_alternates": [ ], "name": "bat", "shortname": ":bat:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦇" }, "bath": { "unicode": "1F6C0", "unicode_alternates": [ ], "name": "bath", "shortname": ":bath:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clean", "shower", "bath", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "shampoo", "lather", "tired", "diversity", "steam" ], "moji": "🛀" }, "bath_tone1": { "unicode": "1F6C0-1F3FB", "unicode_alternates": [ ], "name": "bath tone 1", "shortname": ":bath_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏻" }, "bath_tone2": { "unicode": "1F6C0-1F3FC", "unicode_alternates": [ ], "name": "bath tone 2", "shortname": ":bath_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏼" }, "bath_tone3": { "unicode": "1F6C0-1F3FD", "unicode_alternates": [ ], "name": "bath tone 3", "shortname": ":bath_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏽" }, "bath_tone4": { "unicode": "1F6C0-1F3FE", "unicode_alternates": [ ], "name": "bath tone 4", "shortname": ":bath_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏾" }, "bath_tone5": { "unicode": "1F6C0-1F3FF", "unicode_alternates": [ ], "name": "bath tone 5", "shortname": ":bath_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shower", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "clean", "shampoo", "lather" ], "moji": "🛀🏿" }, "bathtub": { "unicode": "1F6C1", "unicode_alternates": [ ], "name": "bathtub", "shortname": ":bathtub:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clean", "shower", "bath", "tub", "basin", "wash", "bubble", "soak", "bathroom", "soap", "water", "shampoo", "lather", "object", "tired", "steam" ], "moji": "🛁" }, "battery": { "unicode": "1F50B", "unicode_alternates": [ ], "name": "battery", "shortname": ":battery:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "energy", "power", "sustain", "object" ], "moji": "🔋" }, "beach": { "unicode": "1F3D6", "unicode_alternates": [ ], "name": "beach with umbrella", "shortname": ":beach:", "category": "travel", "aliases": [ ":beach_with_umbrella:" ], "aliases_ascii": [ ], "keywords": [ "sand", "sun", "surf", "vacation", "relaxation", "tanning", "tan", "swimming", "places", "travel", "tropical", "beach", "swim" ], "moji": "🏖" }, "beach_umbrella": { "unicode": "26F1", "unicode_alternates": [ ], "name": "umbrella on ground", "shortname": ":beach_umbrella:", "category": "objects", "aliases": [ ":umbrella_on_ground:", ":parasol_on_ground:" ], "aliases_ascii": [ ], "keywords": [ "nature", "rain", "sun", "travel", "weather", "vacation", "tropical" ], "moji": "⛱" }, "bear": { "unicode": "1F43B", "unicode_alternates": [ ], "name": "bear face", "shortname": ":bear:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife", "roar" ], "moji": "🐻" }, "bed": { "unicode": "1F6CF", "unicode_alternates": [ ], "name": "bed", "shortname": ":bed:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sleep", "sex", "queen", "full", "twin", "king", "mattress", "object", "tired" ], "moji": "🛏" }, "bee": { "unicode": "1F41D", "unicode_alternates": [ ], "name": "honeybee", "shortname": ":bee:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "insect", "bee", "queen", "buzz", "flower", "pollen", "sting", "honey", "hive", "bumble", "pollination", "insects" ], "moji": "🐝" }, "beer": { "unicode": "1F37A", "unicode_alternates": [ ], "name": "beer mug", "shortname": ":beer:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beverage", "drink", "drunk", "party", "pub", "relax", "beer", "hops", "mug", "barley", "malt", "yeast", "portland", "oregon", "brewery", "micro", "pint", "boot", "alcohol", "parties" ], "moji": "🍺" }, "beers": { "unicode": "1F37B", "unicode_alternates": [ ], "name": "clinking beer mugs", "shortname": ":beers:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beverage", "drink", "drunk", "party", "pub", "relax", "beer", "beers", "cheers", "mug", "toast", "celebrate", "bar", "jolly", "hops", "clink", "alcohol", "thank you", "boys night", "parties" ], "moji": "🍻" }, "beetle": { "unicode": "1F41E", "unicode_alternates": [ ], "name": "lady beetle", "shortname": ":beetle:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "insect", "nature", "lady", "bug", "ladybug", "ladybird", "beetle", "cow", "lady cow", "endearment", "insects", "animal" ], "moji": "🐞" }, "beginner": { "unicode": "1F530", "unicode_alternates": [ ], "name": "japanese symbol for beginner", "shortname": ":beginner:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "badge", "shield", "symbol" ], "moji": "🔰" }, "bell": { "unicode": "1F514", "unicode_alternates": [ ], "name": "bell", "shortname": ":bell:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chime", "christmas", "notification", "sound", "xmas", "object", "alarm", "symbol" ], "moji": "🔔" }, "bellhop": { "unicode": "1F6CE", "unicode_alternates": [ ], "name": "bellhop bell", "shortname": ":bellhop:", "category": "objects", "aliases": [ ":bellhop_bell:" ], "aliases_ascii": [ ], "keywords": [ "hotel", "porter", "ding", "object" ], "moji": "🛎" }, "bento": { "unicode": "1F371", "unicode_alternates": [ ], "name": "bento box", "shortname": ":bento:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "box", "food", "japanese", "bento", "rice", "meal", "obento", "convenient", "lunchbox", "object", "sushi", "japan" ], "moji": "🍱" }, "bicyclist": { "unicode": "1F6B4", "unicode_alternates": [ ], "name": "bicyclist", "shortname": ":bicyclist:", "category": "activity", "aliases": [ ":biking_man:" ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sports", "bicyclist", "road", "pedal", "bicycle", "transportation", "men", "workout", "sport", "diversity" ], "moji": "🚴" }, "bicyclist_tone1": { "unicode": "1F6B4-1F3FB", "unicode_alternates": [ ], "name": "bicyclist tone 1", "shortname": ":bicyclist_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏻" }, "bicyclist_tone2": { "unicode": "1F6B4-1F3FC", "unicode_alternates": [ ], "name": "bicyclist tone 2", "shortname": ":bicyclist_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏼" }, "bicyclist_tone3": { "unicode": "1F6B4-1F3FD", "unicode_alternates": [ ], "name": "bicyclist tone 3", "shortname": ":bicyclist_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏽" }, "bicyclist_tone4": { "unicode": "1F6B4-1F3FE", "unicode_alternates": [ ], "name": "bicyclist tone 4", "shortname": ":bicyclist_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏾" }, "bicyclist_tone5": { "unicode": "1F6B4-1F3FF", "unicode_alternates": [ ], "name": "bicyclist tone 5", "shortname": ":bicyclist_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bike", "exercise", "hipster", "sport", "road", "pedal", "bicycle", "transportation" ], "moji": "🚴🏿" }, "bike": { "unicode": "1F6B2", "unicode_alternates": [ ], "name": "bicycle", "shortname": ":bike:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bicycle", "exercise", "hipster", "sports", "bike", "pedal", "transportation", "travel" ], "moji": "🚲" }, "bikini": { "unicode": "1F459", "unicode_alternates": [ ], "name": "bikini", "shortname": ":bikini:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beach", "fashion", "female", "girl", "swimming", "woman", "women", "sexy", "vacation", "tropical", "swim" ], "moji": "👙" }, "biohazard": { "unicode": "2623", "unicode_alternates": [ ], "name": "biohazard sign", "shortname": ":biohazard:", "category": "symbols", "aliases": [ ":biohazard_sign:" ], "aliases_ascii": [ ], "keywords": [ "symbol", "science" ], "moji": "☣" }, "bird": { "unicode": "1F426", "unicode_alternates": [ ], "name": "bird", "shortname": ":bird:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "fly", "nature", "tweet", "wildlife" ], "moji": "🐦" }, "birthday": { "unicode": "1F382", "unicode_alternates": [ ], "name": "birthday cake", "shortname": ":birthday:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cake", "party", "birthday", "birth", "dessert", "wish", "celebrate", "food", "parties" ], "moji": "🎂" }, "black_circle": { "unicode": "26AB", "unicode_alternates": [ "26AB-FE0F" ], "name": "medium black circle", "shortname": ":black_circle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "⚫" }, "black_heart": { "unicode": "1F5A4", "unicode_alternates": [ ], "name": "black heart", "shortname": ":black_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🖤" }, "black_joker": { "unicode": "1F0CF", "unicode_alternates": [ ], "name": "playing card black joker", "shortname": ":black_joker:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cards", "game", "poker", "object", "symbol" ], "moji": "🃏" }, "black_large_square": { "unicode": "2B1B", "unicode_alternates": [ "2B1B-FE0F" ], "name": "black large square", "shortname": ":black_large_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "⬛" }, "black_medium_small_square": { "unicode": "25FE", "unicode_alternates": [ "25FE-FE0F" ], "name": "black medium small square", "shortname": ":black_medium_small_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shapes", "symbol", "square" ], "moji": "◾" }, "black_medium_square": { "unicode": "25FC", "unicode_alternates": [ "25FC-FE0F" ], "name": "black medium square", "shortname": ":black_medium_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◼" }, "black_nib": { "unicode": "2712", "unicode_alternates": [ "2712-FE0F" ], "name": "black nib", "shortname": ":black_nib:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pen", "stationery", "object", "office", "write" ], "moji": "✒" }, "black_small_square": { "unicode": "25AA", "unicode_alternates": [ "25AA-FE0F" ], "name": "black small square", "shortname": ":black_small_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shapes", "symbol", "square" ], "moji": "▪" }, "black_square_button": { "unicode": "1F532", "unicode_alternates": [ ], "name": "black square button", "shortname": ":black_square_button:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "frame", "shapes", "symbol", "square" ], "moji": "🔲" }, "blossom": { "unicode": "1F33C", "unicode_alternates": [ ], "name": "blossom", "shortname": ":blossom:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flowers", "nature", "yellow", "blossom", "daisy", "flower", "plant" ], "moji": "🌼" }, "blowfish": { "unicode": "1F421", "unicode_alternates": [ ], "name": "blowfish", "shortname": ":blowfish:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "nature", "ocean", "sea", "blowfish", "pufferfish", "puffer", "ballonfish", "toadfish", "fugu fish", "sushi", "wildlife", "animal" ], "moji": "🐡" }, "blue_book": { "unicode": "1F4D8", "unicode_alternates": [ ], "name": "blue book", "shortname": ":blue_book:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "knowledge", "library", "read", "object", "office", "write", "book" ], "moji": "📘" }, "blue_car": { "unicode": "1F699", "unicode_alternates": [ ], "name": "recreational vehicle", "shortname": ":blue_car:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "car", "suv", "wagon", "automobile", "transportation", "travel" ], "moji": "🚙" }, "blue_heart": { "unicode": "1F499", "unicode_alternates": [ ], "name": "blue heart", "shortname": ":blue_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "blue", "heart", "stability", "truth", "loyalty", "trust", "symbol" ], "moji": "💙" }, "blush": { "unicode": "1F60A", "unicode_alternates": [ ], "name": "smiling face with smiling eyes", "shortname": ":blush:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "crush", "embarrassed", "face", "flushed", "happy", "shy", "smile", "smiling", "smiley", "emotion", "good", "beautiful" ], "moji": "😊" }, "boar": { "unicode": "1F417", "unicode_alternates": [ ], "name": "boar", "shortname": ":boar:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐗" }, "bomb": { "unicode": "1F4A3", "unicode_alternates": [ ], "name": "bomb", "shortname": ":bomb:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boom", "explode", "object", "weapon", "dead", "blast" ], "moji": "💣" }, "book": { "unicode": "1F4D6", "unicode_alternates": [ ], "name": "open book", "shortname": ":book:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "library", "literature", "object", "office", "write", "book" ], "moji": "📖" }, "bookmark": { "unicode": "1F516", "unicode_alternates": [ ], "name": "bookmark", "shortname": ":bookmark:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "favorite", "object", "book" ], "moji": "🔖" }, "bookmark_tabs": { "unicode": "1F4D1", "unicode_alternates": [ ], "name": "bookmark tabs", "shortname": ":bookmark_tabs:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "favorite", "office", "write" ], "moji": "📑" }, "books": { "unicode": "1F4DA", "unicode_alternates": [ ], "name": "books", "shortname": ":books:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "library", "literature", "object", "office", "write", "book" ], "moji": "📚" }, "boom": { "unicode": "1F4A5", "unicode_alternates": [ ], "name": "collision symbol", "shortname": ":boom:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bomb", "explode", "explosion", "boom", "bang", "collision", "fire", "emphasis", "wow", "bam", "symbol", "blast" ], "moji": "💥" }, "boot": { "unicode": "1F462", "unicode_alternates": [ ], "name": "womans boots", "shortname": ":boot:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "shoes", "women", "shoe", "sexy", "accessories" ], "moji": "👢" }, "bouquet": { "unicode": "1F490", "unicode_alternates": [ ], "name": "bouquet", "shortname": ":bouquet:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flowers", "nature", "flower", "plant", "rip", "condolence" ], "moji": "💐" }, "bow": { "unicode": "1F647", "unicode_alternates": [ ], "name": "person bowing deeply", "shortname": ":bow:", "category": "people", "aliases": [ ":bowing_man:" ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "curtsy", "bend", "people", "pray", "diversity" ], "moji": "🙇" }, "bow_and_arrow": { "unicode": "1F3F9", "unicode_alternates": [ ], "name": "bow and arrow", "shortname": ":bow_and_arrow:", "category": "activity", "aliases": [ ":archery:" ], "aliases_ascii": [ ], "keywords": [ "weapon", "sport" ], "moji": "🏹" }, "bow_tone1": { "unicode": "1F647-1F3FB", "unicode_alternates": [ ], "name": "person bowing deeply tone 1", "shortname": ":bow_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏻" }, "bow_tone2": { "unicode": "1F647-1F3FC", "unicode_alternates": [ ], "name": "person bowing deeply tone 2", "shortname": ":bow_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏼" }, "bow_tone3": { "unicode": "1F647-1F3FD", "unicode_alternates": [ ], "name": "person bowing deeply tone 3", "shortname": ":bow_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏽" }, "bow_tone4": { "unicode": "1F647-1F3FE", "unicode_alternates": [ ], "name": "person bowing deeply tone 4", "shortname": ":bow_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏾" }, "bow_tone5": { "unicode": "1F647-1F3FF", "unicode_alternates": [ ], "name": "person bowing deeply tone 5", "shortname": ":bow_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "man", "sorry", "bow", "respect", "bend" ], "moji": "🙇🏿" }, "bowling": { "unicode": "1F3B3", "unicode_alternates": [ ], "name": "bowling", "shortname": ":bowling:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fun", "play", "sports", "bowl", "bowling", "ball", "pin", "strike", "spare", "game", "sport", "boys night" ], "moji": "🎳" }, "boxing_glove": { "unicode": "1F94A", "unicode_alternates": [ ], "name": "boxing glove", "shortname": ":boxing_glove:", "category": "activity", "aliases": [ ":boxing_gloves:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥊" }, "boy": { "unicode": "1F466", "unicode_alternates": [ ], "name": "boy", "shortname": ":boy:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "guy", "male", "man", "people", "baby", "diversity" ], "moji": "👦" }, "boy_tone1": { "unicode": "1F466-1F3FB", "unicode_alternates": [ ], "name": "boy tone 1", "shortname": ":boy_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "kid", "child" ], "moji": "👦🏻" }, "boy_tone2": { "unicode": "1F466-1F3FC", "unicode_alternates": [ ], "name": "boy tone 2", "shortname": ":boy_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "kid", "child" ], "moji": "👦🏼" }, "boy_tone3": { "unicode": "1F466-1F3FD", "unicode_alternates": [ ], "name": "boy tone 3", "shortname": ":boy_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "kid", "child" ], "moji": "👦🏽" }, "boy_tone4": { "unicode": "1F466-1F3FE", "unicode_alternates": [ ], "name": "boy tone 4", "shortname": ":boy_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "kid", "child" ], "moji": "👦🏾" }, "boy_tone5": { "unicode": "1F466-1F3FF", "unicode_alternates": [ ], "name": "boy tone 5", "shortname": ":boy_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "kid", "child" ], "moji": "👦🏿" }, "bread": { "unicode": "1F35E", "unicode_alternates": [ ], "name": "bread", "shortname": ":bread:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "breakfast", "food", "toast", "wheat", "bread", "loaf", "yeast" ], "moji": "🍞" }, "bride_with_veil": { "unicode": "1F470", "unicode_alternates": [ ], "name": "bride with veil", "shortname": ":bride_with_veil:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "bride", "planning", "veil", "gown", "dress", "engagement", "white", "people", "women", "diversity" ], "moji": "👰" }, "bride_with_veil_tone1": { "unicode": "1F470-1F3FB", "unicode_alternates": [ ], "name": "bride with veil tone 1", "shortname": ":bride_with_veil_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏻" }, "bride_with_veil_tone2": { "unicode": "1F470-1F3FC", "unicode_alternates": [ ], "name": "bride with veil tone 2", "shortname": ":bride_with_veil_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏼" }, "bride_with_veil_tone3": { "unicode": "1F470-1F3FD", "unicode_alternates": [ ], "name": "bride with veil tone 3", "shortname": ":bride_with_veil_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏽" }, "bride_with_veil_tone4": { "unicode": "1F470-1F3FE", "unicode_alternates": [ ], "name": "bride with veil tone 4", "shortname": ":bride_with_veil_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏾" }, "bride_with_veil_tone5": { "unicode": "1F470-1F3FF", "unicode_alternates": [ ], "name": "bride with veil tone 5", "shortname": ":bride_with_veil_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "marriage", "wedding", "planning", "gown", "dress", "engagement", "white" ], "moji": "👰🏿" }, "bridge_at_night": { "unicode": "1F309", "unicode_alternates": [ ], "name": "bridge at night", "shortname": ":bridge_at_night:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "photo", "sanfrancisco", "bridge", "night", "water", "road", "evening", "suspension", "golden", "gate", "places", "travel", "vacation", "goodnight" ], "moji": "🌉" }, "briefcase": { "unicode": "1F4BC", "unicode_alternates": [ ], "name": "briefcase", "shortname": ":briefcase:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "business", "documents", "work", "bag", "accessories", "nutcase", "job" ], "moji": "💼" }, "broken_heart": { "unicode": "1F494", "unicode_alternates": [ ], "name": "broken heart", "shortname": ":broken_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ":\\", ">:/", ":-/", ":-.", ":/", ":\\", "=/", "=\\", ":L", "=L" ], "keywords": [ "confused", "confuse", "daze", "perplex", "puzzle", "indifference", "skeptical", "undecided", "uneasy", "hesitant", "smiley", "surprised", "emotion" ], "moji": "😕" }, "congratulations": { "unicode": "3297", "unicode_alternates": [ "3297-FE0F" ], "name": "circled ideograph congratulation", "shortname": ":congratulations:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "japanese", "kanji", "japan", "symbol" ], "moji": "㊗" }, "construction": { "unicode": "1F6A7", "unicode_alternates": [ ], "name": "construction sign", "shortname": ":construction:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "caution", "progress", "wip", "object" ], "moji": "🚧" }, "construction_site": { "unicode": "1F3D7", "unicode_alternates": [ ], "name": "building construction", "shortname": ":construction_site:", "category": "travel", "aliases": [ ":building_construction:" ], "aliases_ascii": [ ], "keywords": [ "site", "work", "place", "building", "crane" ], "moji": "🏗" }, "construction_worker": { "unicode": "1F477", "unicode_alternates": [ ], "name": "construction worker", "shortname": ":construction_worker:", "category": "people", "aliases": [ ":construction_worker_man:" ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip", "people", "hat", "men", "diversity", "job" ], "moji": "👷" }, "construction_worker_tone1": { "unicode": "1F477-1F3FB", "unicode_alternates": [ ], "name": "construction worker tone 1", "shortname": ":construction_worker_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏻" }, "construction_worker_tone2": { "unicode": "1F477-1F3FC", "unicode_alternates": [ ], "name": "construction worker tone 2", "shortname": ":construction_worker_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏼" }, "construction_worker_tone3": { "unicode": "1F477-1F3FD", "unicode_alternates": [ ], "name": "construction worker tone 3", "shortname": ":construction_worker_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏽" }, "construction_worker_tone4": { "unicode": "1F477-1F3FE", "unicode_alternates": [ ], "name": "construction worker tone 4", "shortname": ":construction_worker_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏾" }, "construction_worker_tone5": { "unicode": "1F477-1F3FF", "unicode_alternates": [ ], "name": "construction worker tone 5", "shortname": ":construction_worker_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "man", "wip" ], "moji": "👷🏿" }, "control_knobs": { "unicode": "1F39B", "unicode_alternates": [ ], "name": "control knobs", "shortname": ":control_knobs:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "dial", "time" ], "moji": "🎛" }, "convenience_store": { "unicode": "1F3EA", "unicode_alternates": [ ], "name": "convenience store", "shortname": ":convenience_store:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "places" ], "moji": "🏪" }, "cookie": { "unicode": "1F36A", "unicode_alternates": [ ], "name": "cookie", "shortname": ":cookie:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chocolate", "food", "oreo", "snack", "cookie", "dessert", "biscuit", "sweet", "vagina" ], "moji": "🍪" }, "cooking": { "unicode": "1F373", "unicode_alternates": [ ], "name": "cooking", "shortname": ":cooking:", "category": "food", "aliases": [ ":fried_egg:" ], "aliases_ascii": [ ], "keywords": [ "breakfast", "food", "egg", "fry", "pan", "flat", "cook", "frying", "cooking", "utensil" ], "moji": "🍳" }, "cool": { "unicode": "1F192", "unicode_alternates": [ ], "name": "squared cool", "shortname": ":cool:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "words", "symbol" ], "moji": "🆒" }, "cop": { "unicode": "1F46E", "unicode_alternates": [ ], "name": "police officer", "shortname": ":cop:", "category": "people", "aliases": [ ":policeman:" ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "police", "people", "hat", "men", "diversity", "job", "911" ], "moji": "👮" }, "cop_tone1": { "unicode": "1F46E-1F3FB", "unicode_alternates": [ ], "name": "police officer tone 1", "shortname": ":cop_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏻" }, "cop_tone2": { "unicode": "1F46E-1F3FC", "unicode_alternates": [ ], "name": "police officer tone 2", "shortname": ":cop_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏼" }, "cop_tone3": { "unicode": "1F46E-1F3FD", "unicode_alternates": [ ], "name": "police officer tone 3", "shortname": ":cop_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏽" }, "cop_tone4": { "unicode": "1F46E-1F3FE", "unicode_alternates": [ ], "name": "police officer tone 4", "shortname": ":cop_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏾" }, "cop_tone5": { "unicode": "1F46E-1F3FF", "unicode_alternates": [ ], "name": "police officer tone 5", "shortname": ":cop_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrest", "enforcement", "law", "man", "cop" ], "moji": "👮🏿" }, "copyright": { "moji": "©️", "unicode": "00A9", "unicode_alternates": [ ], "name": "copyright sign", "shortname": ":copyright:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ip", "license", "symbol" ] }, "corn": { "unicode": "1F33D", "unicode_alternates": [ ], "name": "ear of maize", "shortname": ":corn:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "plant", "vegetable", "corn", "maize", "iowa", "kernel", "popcorn", "husk", "yellow", "stalk", "cob", "ear", "vegetables" ], "moji": "🌽" }, "couch": { "unicode": "1F6CB", "unicode_alternates": [ ], "name": "couch and lamp", "shortname": ":couch:", "category": "objects", "aliases": [ ":couch_and_lamp:" ], "aliases_ascii": [ ], "keywords": [ "lounge", "sectional", "sofa", "loveseat", "leather", "microfiber", "sit", "relax", "object" ], "moji": "🛋" }, "couple": { "unicode": "1F46B", "unicode_alternates": [ ], "name": "man and woman holding hands", "shortname": ":couple:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "date", "dating", "human", "like", "love", "marriage", "people", "valentines", "sex", "creationism" ], "moji": "👫" }, "couple_mm": { "unicode": "1F468-2764-1F468", "unicode_alternates": [ "1F468-200D-2764-FE0F-200D-1F468" ], "name": "couple (man,man)", "shortname": ":couple_mm:", "category": "people", "aliases": [ ":couple_with_heart_mm:", ":couple_with_heart_man_man:" ], "aliases_ascii": [ ], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "gay", "men", "sex", "lgbt" ], "moji": "👨‍❤️‍👨" }, "couple_with_heart": { "unicode": "1F491", "unicode_alternates": [ ], "name": "couple with heart", "shortname": ":couple_with_heart:", "category": "people", "aliases": [ ":couple_with_heart_woman_man:" ], "aliases_ascii": [ ], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "sex" ], "moji": "💑" }, "couple_ww": { "unicode": "1F469-2764-1F469", "unicode_alternates": [ "1F469-200D-2764-FE0F-200D-1F469" ], "name": "couple (woman,woman)", "shortname": ":couple_ww:", "category": "people", "aliases": [ ":couple_with_heart_ww:", ":couple_with_heart_woman_woman:" ], "aliases_ascii": [ ], "keywords": [ "affection", "dating", "human", "like", "love", "marriage", "valentines", "people", "women", "sex", "lgbt" ], "moji": "👩‍❤️‍👩" }, "couplekiss": { "unicode": "1F48F", "unicode_alternates": [ ], "name": "kiss", "shortname": ":couplekiss:", "category": "people", "aliases": [ ":couplekiss_man_woman:" ], "aliases_ascii": [ ], "keywords": [ "dating", "like", "love", "marriage", "valentines", "people", "sex" ], "moji": "💏" }, "cow": { "unicode": "1F42E", "unicode_alternates": [ ], "name": "cow face", "shortname": ":cow:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "beef", "ox" ], "moji": "🐮" }, "cow2": { "unicode": "1F404", "unicode_alternates": [ ], "name": "cow", "shortname": ":cow2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "beef", "nature", "ox", "cow", "milk", "dairy", "bessie", "moo" ], "moji": "🐄" }, "cowboy": { "unicode": "1F920", "unicode_alternates": [ ], "name": "face with cowboy hat", "shortname": ":cowboy:", "category": "people", "aliases": [ ":face_with_cowboy_hat:", ":cowboy_hat_face:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤠" }, "crab": { "unicode": "1F980", "unicode_alternates": [ ], "name": "crab", "shortname": ":crab:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "tropical", "animal" ], "moji": "🦀" }, "crayon": { "unicode": "1F58D", "unicode_alternates": [ ], "name": "lower left crayon", "shortname": ":crayon:", "category": "objects", "aliases": [ ":lower_left_crayon:" ], "aliases_ascii": [ ], "keywords": [ "write", "draw", "color", "wax", "object", "office" ], "moji": "🖍" }, "credit_card": { "unicode": "1F4B3", "unicode_alternates": [ ], "name": "credit card", "shortname": ":credit_card:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bill", "dollar", "money", "pay", "payment", "credit", "card", "loan", "purchase", "shopping", "mastercard", "visa", "american express", "wallet", "signature", "object", "boys night" ], "moji": "💳" }, "crescent_moon": { "unicode": "1F319", "unicode_alternates": [ ], "name": "crescent moon", "shortname": ":crescent_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "moon", "crescent", "waxing", "sky", "cheese", "phase", "space", "goodnight" ], "moji": "🌙" }, "cricket": { "unicode": "1F3CF", "unicode_alternates": [ ], "name": "cricket bat and ball", "shortname": ":cricket:", "category": "activity", "aliases": [ ":cricket_bat_ball:" ], "aliases_ascii": [ ], "keywords": [ "ball", "sport", "cricket" ], "moji": "🏏" }, "crocodile": { "unicode": "1F40A", "unicode_alternates": [ ], "name": "crocodile", "shortname": ":crocodile:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "crocodile", "croc", "alligator", "gator", "cranky", "wildlife", "reptile" ], "moji": "🐊" }, "croissant": { "unicode": "1F950", "unicode_alternates": [ ], "name": "croissant", "shortname": ":croissant:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥐" }, "cross": { "unicode": "271D", "unicode_alternates": [ ], "name": "latin cross", "shortname": ":cross:", "category": "symbols", "aliases": [ ":latin_cross:" ], "aliases_ascii": [ ], "keywords": [ "religion", "symbol", "christian" ], "moji": "✝" }, "crossed_flags": { "unicode": "1F38C", "unicode_alternates": [ ], "name": "crossed flags", "shortname": ":crossed_flags:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japan", "object" ], "moji": "🎌" }, "crossed_swords": { "unicode": "2694", "unicode_alternates": [ ], "name": "crossed swords", "shortname": ":crossed_swords:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "object", "weapon" ], "moji": "⚔" }, "crown": { "unicode": "1F451", "unicode_alternates": [ ], "name": "crown", "shortname": ":crown:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "king", "kod", "leader", "royalty", "object", "gem", "accessories" ], "moji": "👑" }, "cruise_ship": { "unicode": "1F6F3", "unicode_alternates": [ ], "name": "passenger ship", "shortname": ":cruise_ship:", "category": "travel", "aliases": [ ":passenger_ship:" ], "aliases_ascii": [ ], "keywords": [ "titanic", "transportation", "boat", "travel", "vacation" ], "moji": "🛳" }, "cry": { "unicode": "1F622", "unicode_alternates": [ ], "name": "crying face", "shortname": ":cry:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":'(", ":'-(", ";(", ";-(" ], "keywords": [ "face", "sad", "cry", "tear", "weep", "tears", "smiley", "emotion", "rip", "heartbreak" ], "moji": "😢" }, "crying_cat_face": { "unicode": "1F63F", "unicode_alternates": [ ], "name": "crying cat face", "shortname": ":crying_cat_face:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "sad", "tears", "weep", "cry", "cat", "sob", "melancholy", "morn", "somber", "hurt" ], "moji": "😿" }, "crystal_ball": { "unicode": "1F52E", "unicode_alternates": [ ], "name": "crystal ball", "shortname": ":crystal_ball:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "disco", "party", "object", "ball" ], "moji": "🔮" }, "cucumber": { "unicode": "1F952", "unicode_alternates": [ ], "name": "cucumber", "shortname": ":cucumber:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥒" }, "cupid": { "unicode": "1F498", "unicode_alternates": [ ], "name": "heart with arrow", "shortname": ":cupid:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "heart", "like", "love", "valentines", "symbol" ], "moji": "💘" }, "curly_loop": { "unicode": "27B0", "unicode_alternates": [ ], "name": "curly loop", "shortname": ":curly_loop:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "scribble", "symbol" ], "moji": "➰" }, "currency_exchange": { "unicode": "1F4B1", "unicode_alternates": [ ], "name": "currency exchange", "shortname": ":currency_exchange:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "dollar", "money", "travel", "symbol" ], "moji": "💱" }, "curry": { "unicode": "1F35B", "unicode_alternates": [ ], "name": "curry and rice", "shortname": ":curry:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "hot", "indian", "spicy", "curry", "spice", "flavor", "meal" ], "moji": "🍛" }, "custard": { "unicode": "1F36E", "unicode_alternates": [ ], "name": "custard", "shortname": ":custard:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "desert", "food", "custard", "cream", "rich", "butter", "dessert", "crème", "brûlée", "french" ], "moji": "🍮" }, "customs": { "unicode": "1F6C3", "unicode_alternates": [ ], "name": "customs", "shortname": ":customs:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "border", "passport", "customs", "travel", "foreign", "goods", "check", "authority", "government", "symbol" ], "moji": "🛃" }, "cyclone": { "moji": "🌀", "unicode": "1F300", "unicode_alternates": [ ], "name": "cyclone", "shortname": ":cyclone:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue", "cloud", "swirl", "weather", "cyclone", "hurricane", "typhoon", "storm", "ocean", "symbol", "drugs" ] }, "dagger": { "unicode": "1F5E1", "unicode_alternates": [ ], "name": "dagger knife", "shortname": ":dagger:", "category": "objects", "aliases": [ ":dagger_knife:" ], "aliases_ascii": [ ], "keywords": [ "blade", "knife", "object", "weapon" ], "moji": "🗡" }, "dancer": { "unicode": "1F483", "unicode_alternates": [ ], "name": "dancer", "shortname": ":dancer:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dance", "dancer", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music", "people", "women", "sexy", "diversity", "girls night" ], "moji": "💃" }, "dancer_tone1": { "unicode": "1F483-1F3FB", "unicode_alternates": [ ], "name": "dancer tone 1", "shortname": ":dancer_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏻" }, "dancer_tone2": { "unicode": "1F483-1F3FC", "unicode_alternates": [ ], "name": "dancer tone 2", "shortname": ":dancer_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏼" }, "dancer_tone3": { "unicode": "1F483-1F3FD", "unicode_alternates": [ ], "name": "dancer tone 3", "shortname": ":dancer_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏽" }, "dancer_tone4": { "unicode": "1F483-1F3FE", "unicode_alternates": [ ], "name": "dancer tone 4", "shortname": ":dancer_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏾" }, "dancer_tone5": { "unicode": "1F483-1F3FF", "unicode_alternates": [ ], "name": "dancer tone 5", "shortname": ":dancer_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "fun", "girl", "woman", "dress", "fancy", "boogy", "party", "celebrate", "ballet", "tango", "cha cha", "music" ], "moji": "💃🏿" }, "dancers": { "unicode": "1F46F", "unicode_alternates": [ ], "name": "woman with bunny ears", "shortname": ":dancers:", "category": "people", "aliases": [ ":dancing_women:" ], "aliases_ascii": [ ], "keywords": [ "bunny", "female", "girls", "women", "dancing", "dancers", "showgirl", "playboy", "costume", "cancan", "people", "sexy", "girls night", "boys night", "parties", "dance" ], "moji": "👯" }, "dango": { "unicode": "1F361", "unicode_alternates": [ ], "name": "dango", "shortname": ":dango:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "dango", "japanese", "dumpling", "mochi", "balls", "skewer" ], "moji": "🍡" }, "dark_sunglasses": { "unicode": "1F576", "unicode_alternates": [ ], "name": "dark sunglasses", "shortname": ":dark_sunglasses:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shades", "eyes", "fashion", "glasses", "accessories" ], "moji": "🕶" }, "dart": { "unicode": "1F3AF", "unicode_alternates": [ ], "name": "direct hit", "shortname": ":dart:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bar", "game", "direct", "hit", "bullseye", "dart", "archery", "fletching", "arrow", "sport", "boys night" ], "moji": "🎯" }, "dash": { "unicode": "1F4A8", "unicode_alternates": [ ], "name": "dash symbol", "shortname": ":dash:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "air", "fast", "shoo", "wind", "cloud", "cold", "smoking" ], "moji": "💨" }, "date": { "unicode": "1F4C5", "unicode_alternates": [ ], "name": "calendar", "shortname": ":date:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "calendar", "schedule", "object", "office" ], "moji": "📅" }, "deciduous_tree": { "unicode": "1F333", "unicode_alternates": [ ], "name": "deciduous tree", "shortname": ":deciduous_tree:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "deciduous", "tree", "leaves", "fall", "color", "camp", "trees" ], "moji": "🌳" }, "deer": { "unicode": "1F98C", "unicode_alternates": [ ], "name": "deer", "shortname": ":deer:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦌" }, "department_store": { "unicode": "1F3EC", "unicode_alternates": [ ], "name": "department store", "shortname": ":department_store:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "mall", "shopping", "department", "store", "retail", "sale", "merchandise", "places" ], "moji": "🏬" }, "desert": { "unicode": "1F3DC", "unicode_alternates": [ ], "name": "desert", "shortname": ":desert:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hot", "dry", "sandy", "cactus", "sunny", "barren", "places", "travel", "vacation" ], "moji": "🏜" }, "desktop": { "unicode": "1F5A5", "unicode_alternates": [ ], "name": "desktop computer", "shortname": ":desktop:", "category": "objects", "aliases": [ ":desktop_computer:" ], "aliases_ascii": [ ], "keywords": [ "cpu", "electronics", "work" ], "moji": "🖥" }, "diamond_shape_with_a_dot_inside": { "unicode": "1F4A0", "unicode_alternates": [ ], "name": "diamond shape with a dot inside", "shortname": ":diamond_shape_with_a_dot_inside:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "diamond", "cute", "cuteness", "kawaii", "japanese", "glyph", "adorable", "symbol" ], "moji": "💠" }, "diamonds": { "unicode": "2666", "unicode_alternates": [ "2666-FE0F" ], "name": "black diamond suit", "shortname": ":diamonds:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cards", "poker", "shapes", "symbol", "game" ], "moji": "♦" }, "disappointed": { "unicode": "1F61E", "unicode_alternates": [ ], "name": "disappointed face", "shortname": ":disappointed:", "category": "people", "aliases": [ ], "aliases_ascii": [ ">:[", ":-(", ":(", ":-[", ":[", "=(" ], "keywords": [ "disappointed", "disappoint", "frown", "depressed", "discouraged", "face", "sad", "upset", "smiley", "tired", "emotion" ], "moji": "😞" }, "disappointed_relieved": { "unicode": "1F625", "unicode_alternates": [ ], "name": "disappointed but relieved face", "shortname": ":disappointed_relieved:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "nervous", "phew", "sweat", "disappoint", "relief", "sad", "smiley", "stressed", "cry", "emotion" ], "moji": "😥" }, "dividers": { "unicode": "1F5C2", "unicode_alternates": [ ], "name": "card index dividers", "shortname": ":dividers:", "category": "objects", "aliases": [ ":card_index_dividers:" ], "aliases_ascii": [ ], "keywords": [ "stationery", "rolodex", "work", "office" ], "moji": "🗂" }, "dizzy": { "unicode": "1F4AB", "unicode_alternates": [ ], "name": "dizzy symbol", "shortname": ":dizzy:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shoot", "sparkle", "star", "dizzy", "drunk", "sick", "intoxicated", "squeans", "starburst", "symbol" ], "moji": "💫" }, "dizzy_face": { "unicode": "1F635", "unicode_alternates": [ ], "name": "dizzy face", "shortname": ":dizzy_face:", "category": "people", "aliases": [ ], "aliases_ascii": [ "#-)", "#)", "%-)", "%)", "X)", "X-)" ], "keywords": [ "dizzy", "drunk", "inebriated", "face", "spent", "unconscious", "xox", "smiley", "surprised", "dead", "wow", "emotion", "omg" ], "moji": "😵" }, "do_not_litter": { "unicode": "1F6AF", "unicode_alternates": [ ], "name": "do not litter symbol", "shortname": ":do_not_litter:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bin", "garbage", "trash", "litter", "waste", "no", "can", "symbol" ], "moji": "🚯" }, "dog": { "unicode": "1F436", "unicode_alternates": [ ], "name": "dog face", "shortname": ":dog:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "friend", "nature", "woof", "dog", "pug" ], "moji": "🐶" }, "dog2": { "unicode": "1F415", "unicode_alternates": [ ], "name": "dog", "shortname": ":dog2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "doge", "friend", "nature", "pet", "dog", "puppy", "woof", "bark", "fido", "pug" ], "moji": "🐕" }, "dollar": { "unicode": "1F4B5", "unicode_alternates": [ ], "name": "banknote with dollar sign", "shortname": ":dollar:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bill", "currency", "money", "dollar", "united states", "canada", "australia", "banknote", "paper", "cash", "bills" ], "moji": "💵" }, "dolls": { "unicode": "1F38E", "unicode_alternates": [ ], "name": "japanese dolls", "shortname": ":dolls:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japanese", "kimono", "toy", "dolls", "japan", "day", "girls", "emperor", "empress", "pray", "blessing", "imperial", "family", "royal", "people" ], "moji": "🎎" }, "dolphin": { "unicode": "1F42C", "unicode_alternates": [ ], "name": "dolphin", "shortname": ":dolphin:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "fins", "fish", "flipper", "nature", "ocean", "sea", "wildlife", "tropical" ], "moji": "🐬" }, "door": { "unicode": "1F6AA", "unicode_alternates": [ ], "name": "door", "shortname": ":door:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "entry", "exit", "house", "door", "doorway", "entrance", "enter", "object" ], "moji": "🚪" }, "doughnut": { "unicode": "1F369", "unicode_alternates": [ ], "name": "doughnut", "shortname": ":doughnut:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "desert", "food", "snack", "sweet", "doughnut", "donut", "pastry", "fried", "dessert", "breakfast", "police", "homer" ], "moji": "🍩" }, "dove": { "unicode": "1F54A", "unicode_alternates": [ ], "name": "dove of peace", "shortname": ":dove:", "category": "nature", "aliases": [ ":dove_of_peace:" ], "aliases_ascii": [ ], "keywords": [ "symbol", "bird", "animal" ], "moji": "🕊" }, "dragon": { "unicode": "1F409", "unicode_alternates": [ ], "name": "dragon", "shortname": ":dragon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "chinese", "green", "myth", "nature", "dragon", "fire", "legendary", "roar", "reptile" ], "moji": "🐉" }, "dragon_face": { "unicode": "1F432", "unicode_alternates": [ ], "name": "dragon face", "shortname": ":dragon_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "chinese", "green", "myth", "nature", "dragon", "head", "fire", "legendary", "roar", "monster", "reptile" ], "moji": "🐲" }, "dress": { "unicode": "1F457", "unicode_alternates": [ ], "name": "dress", "shortname": ":dress:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clothes", "fashion", "women", "sexy", "girls night" ], "moji": "👗" }, "dromedary_camel": { "unicode": "1F42A", "unicode_alternates": [ ], "name": "dromedary camel", "shortname": ":dromedary_camel:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "desert", "hot", "dromedary", "camel", "hump", "middle east", "heat", "water", "hump day", "wednesday", "sex", "wildlife" ], "moji": "🐪" }, "drooling_face": { "unicode": "1F924", "unicode_alternates": [ ], "name": "drooling face", "shortname": ":drooling_face:", "category": "people", "aliases": [ ":drool:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤤" }, "droplet": { "unicode": "1F4A7", "unicode_alternates": [ ], "name": "droplet", "shortname": ":droplet:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "drip", "faucet", "water", "drop", "droplet", "h20", "aqua", "tear", "sweat", "rain", "moisture", "wet", "moist", "spit", "weather", "sky" ], "moji": "💧" }, "drum": { "unicode": "1F941", "unicode_alternates": [ ], "name": "drum with drumsticks", "shortname": ":drum:", "category": "activity", "aliases": [ ":drum_with_drumsticks:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥁" }, "duck": { "unicode": "1F986", "unicode_alternates": [ ], "name": "duck", "shortname": ":duck:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦆" }, "dvd": { "unicode": "1F4C0", "unicode_alternates": [ ], "name": "dvd", "shortname": ":dvd:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cd", "disc", "disk", "electronics" ], "moji": "📀" }, "e-mail": { "unicode": "1F4E7", "unicode_alternates": [ ], "name": "e-mail symbol", "shortname": ":e-mail:", "category": "objects", "aliases": [ ":email:" ], "aliases_ascii": [ ], "keywords": [ "communication", "inbox", "office" ], "moji": "📧" }, "eagle": { "unicode": "1F985", "unicode_alternates": [ ], "name": "eagle", "shortname": ":eagle:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦅" }, "ear": { "unicode": "1F442", "unicode_alternates": [ ], "name": "ear", "shortname": ":ear:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "hear", "listen", "sound", "body", "diversity" ], "moji": "👂" }, "ear_of_rice": { "unicode": "1F33E", "unicode_alternates": [ ], "name": "ear of rice", "shortname": ":ear_of_rice:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "ear", "rice", "food", "seed", "leaf" ], "moji": "🌾" }, "ear_tone1": { "unicode": "1F442-1F3FB", "unicode_alternates": [ ], "name": "ear tone 1", "shortname": ":ear_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏻" }, "ear_tone2": { "unicode": "1F442-1F3FC", "unicode_alternates": [ ], "name": "ear tone 2", "shortname": ":ear_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏼" }, "ear_tone3": { "unicode": "1F442-1F3FD", "unicode_alternates": [ ], "name": "ear tone 3", "shortname": ":ear_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏽" }, "ear_tone4": { "unicode": "1F442-1F3FE", "unicode_alternates": [ ], "name": "ear tone 4", "shortname": ":ear_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏾" }, "ear_tone5": { "unicode": "1F442-1F3FF", "unicode_alternates": [ ], "name": "ear tone 5", "shortname": ":ear_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hear", "listen", "sound" ], "moji": "👂🏿" }, "earth_africa": { "unicode": "1F30D", "unicode_alternates": [ ], "name": "earth globe europe-africa", "shortname": ":earth_africa:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "globe", "international", "world", "earth", "space", "planet", "africa", "europe", "home", "map", "vacation" ], "moji": "🌍" }, "earth_americas": { "unicode": "1F30E", "unicode_alternates": [ ], "name": "earth globe americas", "shortname": ":earth_americas:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "USA", "globe", "international", "world", "earth", "space", "planet", "north", "south", "america", "americas", "home", "map", "vacation" ], "moji": "🌎" }, "earth_asia": { "unicode": "1F30F", "unicode_alternates": [ ], "name": "earth globe asia-australia", "shortname": ":earth_asia:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "east", "globe", "international", "world", "earth", "space", "planet", "asia", "australia", "home", "map", "vacation" ], "moji": "🌏" }, "egg": { "unicode": "1F95A", "unicode_alternates": [ ], "name": "egg", "shortname": ":egg:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥚" }, "eggplant": { "unicode": "1F346", "unicode_alternates": [ ], "name": "aubergine", "shortname": ":eggplant:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "aubergine", "food", "nature", "vegetable", "eggplant", "fruit", "purple", "penis", "vegetables" ], "moji": "🍆" }, "eight": { "moji": "8️⃣", "unicode": "0038-20E3", "unicode_alternates": [ "0038-FE0F-20E3" ], "name": "keycap digit eight", "shortname": ":eight:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "8", "blue-square", "numbers", "number", "math", "symbol" ] }, "eight_pointed_black_star": { "unicode": "2734", "unicode_alternates": [ "2734-FE0F" ], "name": "eight pointed black star", "shortname": ":eight_pointed_black_star:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "symbol" ], "moji": "✴" }, "eight_spoked_asterisk": { "unicode": "2733", "unicode_alternates": [ "2733-FE0F" ], "name": "eight spoked asterisk", "shortname": ":eight_spoked_asterisk:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "green-square", "sparkle", "star", "symbol" ], "moji": "✳" }, "eject": { "unicode": "23CF", "unicode_alternates": [ "23CF-FE0F" ], "name": "eject symbol", "shortname": ":eject:", "category": "symbols", "aliases": [ ":eject_symbol:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "⏏" }, "electric_plug": { "unicode": "1F50C", "unicode_alternates": [ ], "name": "electric plug", "shortname": ":electric_plug:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "charger", "power", "electronics" ], "moji": "🔌" }, "elephant": { "unicode": "1F418", "unicode_alternates": [ ], "name": "elephant", "shortname": ":elephant:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "nose", "thailand", "wildlife" ], "moji": "🐘" }, "end": { "unicode": "1F51A", "unicode_alternates": [ ], "name": "end with leftwards arrow above", "shortname": ":end:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔚" }, "envelope": { "unicode": "2709", "unicode_alternates": [ "2709-FE0F" ], "name": "envelope", "shortname": ":envelope:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "letter", "mail", "postal", "object", "office", "write" ], "moji": "✉" }, "envelope_with_arrow": { "unicode": "1F4E9", "unicode_alternates": [ ], "name": "envelope with downwards arrow above", "shortname": ":envelope_with_arrow:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "email", "object", "office" ], "moji": "📩" }, "euro": { "unicode": "1F4B6", "unicode_alternates": [ ], "name": "banknote with euro sign", "shortname": ":euro:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "currency", "dollar", "money", "euro", "europe", "banknote", "paper", "cash", "bills" ], "moji": "💶" }, "european_castle": { "unicode": "1F3F0", "unicode_alternates": [ ], "name": "european castle", "shortname": ":european_castle:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "history", "royalty", "castle", "european", "residence", "disneyland", "disney", "fort", "fortified", "moat", "tower", "princess", "prince", "lord", "king", "queen", "fortress", "nobel", "stronghold", "places", "travel", "vacation" ], "moji": "🏰" }, "european_post_office": { "unicode": "1F3E4", "unicode_alternates": [ ], "name": "european post office", "shortname": ":european_post_office:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "places", "post office" ], "moji": "🏤" }, "evergreen_tree": { "unicode": "1F332", "unicode_alternates": [ ], "name": "evergreen tree", "shortname": ":evergreen_tree:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "evergreen", "tree", "needles", "christmas", "holidays", "camp", "trees" ], "moji": "🌲" }, "exclamation": { "unicode": "2757", "unicode_alternates": [ "2757-FE0F" ], "name": "heavy exclamation mark symbol", "shortname": ":exclamation:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "surprise", "symbol", "punctuation" ], "moji": "❗" }, "expressionless": { "unicode": "1F611", "unicode_alternates": [ ], "name": "expressionless face", "shortname": ":expressionless:", "category": "people", "aliases": [ ], "aliases_ascii": [ "-_-", "-__-", "-___-" ], "keywords": [ "expressionless", "blank", "void", "vapid", "without expression", "face", "indifferent", "mad", "smiley", "neutral", "emotion" ], "moji": "😑" }, "eye": { "unicode": "1F441", "unicode_alternates": [ ], "name": "eye", "shortname": ":eye:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "look", "peek", "watch", "body", "eyes" ], "moji": "👁" }, "eye_in_speech_bubble": { "unicode": "1F441-1F5E8", "unicode_alternates": [ "1F441-200D-1F5E8" ], "name": "eye in speech bubble", "shortname": ":eye_in_speech_bubble:", "category": "symbols", "aliases": [ ":eye_speech_bubble:" ], "aliases_ascii": [ ], "keywords": [ "object", "symbol", "eyes", "talk" ], "moji": "👁‍🗨" }, "eyeglasses": { "unicode": "1F453", "unicode_alternates": [ ], "name": "eyeglasses", "shortname": ":eyeglasses:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "eyesight", "fashion", "eyeglasses", "spectacles", "eye", "sight", "nearsightedness", "myopia", "farsightedness", "hyperopia", "frames", "vision", "see", "blurry", "contacts", "glasses" ], "moji": "👓" }, "eyes": { "unicode": "1F440", "unicode_alternates": [ ], "name": "eyes", "shortname": ":eyes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "look", "peek", "stalk", "watch", "body", "eyes" ], "moji": "👀" }, "face_palm": { "unicode": "1F926", "unicode_alternates": [ ], "name": "face palm", "shortname": ":face_palm:", "category": "people", "aliases": [ ":facepalm:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦" }, "face_palm_tone1": { "unicode": "1F926-1F3FB", "unicode_alternates": [ ], "name": "face palm tone 1", "shortname": ":face_palm_tone1:", "category": "people", "aliases": [ ":facepalm_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦🏻" }, "face_palm_tone2": { "unicode": "1F926-1F3FC", "unicode_alternates": [ ], "name": "face palm tone 2", "shortname": ":face_palm_tone2:", "category": "people", "aliases": [ ":facepalm_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦🏼" }, "face_palm_tone3": { "unicode": "1F926-1F3FD", "unicode_alternates": [ ], "name": "face palm tone 3", "shortname": ":face_palm_tone3:", "category": "people", "aliases": [ ":facepalm_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦🏽" }, "face_palm_tone4": { "unicode": "1F926-1F3FE", "unicode_alternates": [ ], "name": "face palm tone 4", "shortname": ":face_palm_tone4:", "category": "people", "aliases": [ ":facepalm_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦🏾" }, "face_palm_tone5": { "unicode": "1F926-1F3FF", "unicode_alternates": [ ], "name": "face palm tone 5", "shortname": ":face_palm_tone5:", "category": "people", "aliases": [ ":facepalm_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤦🏿" }, "factory": { "unicode": "1F3ED", "unicode_alternates": [ ], "name": "factory", "shortname": ":factory:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "places", "travel", "steam" ], "moji": "🏭" }, "fallen_leaf": { "unicode": "1F342", "unicode_alternates": [ ], "name": "fallen leaf", "shortname": ":fallen_leaf:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "leaves", "nature", "plant", "vegetable", "leaf", "fall", "color", "deciduous", "autumn" ], "moji": "🍂" }, "family": { "unicode": "1F46A", "unicode_alternates": [ ], "name": "family", "shortname": ":family:", "category": "people", "aliases": [ ":family_man_woman_boy:" ], "aliases_ascii": [ ], "keywords": [ "child", "dad", "father", "home", "mom", "mother", "parents", "family", "girl", "boy", "group", "unit", "people", "baby" ], "moji": "👪" }, "family_mmb": { "unicode": "1F468-1F468-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F466" ], "name": "family (man,man,boy)", "shortname": ":family_mmb:", "category": "people", "aliases": [ ":family_man_man_boy:" ], "aliases_ascii": [ ], "keywords": [ "child", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👦" }, "family_mmbb": { "unicode": "1F468-1F468-1F466-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F466-200D-1F466" ], "name": "family (man,man,boy,boy)", "shortname": ":family_mmbb:", "category": "people", "aliases": [ ":family_man_man_boy_boy:" ], "aliases_ascii": [ ], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👦‍👦" }, "family_mmg": { "unicode": "1F468-1F468-1F467", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467" ], "name": "family (man,man,girl)", "shortname": ":family_mmg:", "category": "people", "aliases": [ ":family_man_man_girl:" ], "aliases_ascii": [ ], "keywords": [ "child", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧" }, "family_mmgb": { "unicode": "1F468-1F468-1F467-1F466", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467-200D-1F466" ], "name": "family (man,man,girl,boy)", "shortname": ":family_mmgb:", "category": "people", "aliases": [ ":family_man_man_girl_boy:" ], "aliases_ascii": [ ], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "boy", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧‍👦" }, "family_mmgg": { "unicode": "1F468-1F468-1F467-1F467", "unicode_alternates": [ "1F468-200D-1F468-200D-1F467-200D-1F467" ], "name": "family (man,man,girl,girl)", "shortname": ":family_mmgg:", "category": "people", "aliases": [ ":family_man_man_girl_girl:" ], "aliases_ascii": [ ], "keywords": [ "children", "dad", "father", "parents", "group", "unit", "gay", "homosexual", "man", "girl", "people", "family", "men", "baby", "lgbt" ], "moji": "👨‍👨‍👧‍👧" }, "family_mwbb": { "unicode": "1F468-1F469-1F466-1F466", "unicode_alternates": [ "1F468-200D-1F469-200D-1F466-200D-1F466" ], "name": "family (man,woman,boy,boy)", "shortname": ":family_mwbb:", "category": "people", "aliases": [ ":family_man_woman_boy_boy:" ], "aliases_ascii": [ ], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👦‍👦" }, "family_mwg": { "unicode": "1F468-1F469-1F467", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467" ], "name": "family (man,woman,girl)", "shortname": ":family_mwg:", "category": "people", "aliases": [ ":family_man_woman_girl:" ], "aliases_ascii": [ ], "keywords": [ "child", "dad", "father", "mom", "mother", "parents", "girl", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧" }, "family_mwgb": { "unicode": "1F468-1F469-1F467-1F466", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467-200D-1F466" ], "name": "family (man,woman,girl,boy)", "shortname": ":family_mwgb:", "category": "people", "aliases": [ ":family_man_woman_girl_boy:" ], "aliases_ascii": [ ], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "girl", "boy", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧‍👦" }, "family_mwgg": { "unicode": "1F468-1F469-1F467-1F467", "unicode_alternates": [ "1F468-200D-1F469-200D-1F467-200D-1F467" ], "name": "family (man,woman,girl,girl)", "shortname": ":family_mwgg:", "category": "people", "aliases": [ ":family_man_woman_girl_girl:" ], "aliases_ascii": [ ], "keywords": [ "dad", "father", "mom", "mother", "parents", "children", "girl", "group", "unit", "man", "woman", "people", "family", "baby" ], "moji": "👨‍👩‍👧‍👧" }, "family_wwb": { "unicode": "1F469-1F469-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F466" ], "name": "family (woman,woman,boy)", "shortname": ":family_wwb:", "category": "people", "aliases": [ ":family_woman_woman_boy:" ], "aliases_ascii": [ ], "keywords": [ "mom", "mother", "parents", "child", "boy", "group", "unit", "gay", "lesbian", "homosexual", "woman", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👦" }, "family_wwbb": { "unicode": "1F469-1F469-1F466-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F466-200D-1F466" ], "name": "family (woman,woman,boy,boy)", "shortname": ":family_wwbb:", "category": "people", "aliases": [ ":family_woman_woman_boy_boy:" ], "aliases_ascii": [ ], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "boy", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👦‍👦" }, "family_wwg": { "unicode": "1F469-1F469-1F467", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467" ], "name": "family (woman,woman,girl)", "shortname": ":family_wwg:", "category": "people", "aliases": [ ":family_woman_woman_girl:" ], "aliases_ascii": [ ], "keywords": [ "mom", "mother", "parents", "child", "woman", "girl", "group", "unit", "gay", "lesbian", "homosexual", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧" }, "family_wwgb": { "unicode": "1F469-1F469-1F467-1F466", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467-200D-1F466" ], "name": "family (woman,woman,girl,boy)", "shortname": ":family_wwgb:", "category": "people", "aliases": [ ":family_woman_woman_girl_boy:" ], "aliases_ascii": [ ], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "girl", "boy", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧‍👦" }, "family_wwgg": { "unicode": "1F469-1F469-1F467-1F467", "unicode_alternates": [ "1F469-200D-1F469-200D-1F467-200D-1F467" ], "name": "family (woman,woman,girl,girl)", "shortname": ":family_wwgg:", "category": "people", "aliases": [ ":family_woman_woman_girl_girl:" ], "aliases_ascii": [ ], "keywords": [ "mom", "mother", "parents", "children", "group", "unit", "gay", "lesbian", "homosexual", "woman", "girl", "people", "family", "women", "baby", "lgbt" ], "moji": "👩‍👩‍👧‍👧" }, "fast_forward": { "unicode": "23E9", "unicode_alternates": [ ], "name": "black right-pointing double triangle", "shortname": ":fast_forward:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "⏩" }, "fax": { "unicode": "1F4E0", "unicode_alternates": [ ], "name": "fax machine", "shortname": ":fax:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "technology", "electronics", "work", "office" ], "moji": "📠" }, "fearful": { "unicode": "1F628", "unicode_alternates": [ ], "name": "fearful face", "shortname": ":fearful:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "nervous", "oops", "scared", "terrified", "fear", "fearful", "frightened", "smiley", "surprised", "emotion" ], "moji": "😨" }, "feet": { "unicode": "1F43E", "unicode_alternates": [ ], "name": "paw prints", "shortname": ":feet:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cat", "dog", "footprints", "paw", "pet", "tracking", "prints", "mark", "imprints", "footsteps", "lion", "bear", "raccoon", "critter", "feet", "pawsteps" ], "moji": "🐾" }, "fencer": { "unicode": "1F93A", "unicode_alternates": [ ], "name": "fencer", "shortname": ":fencer:", "category": "activity", "aliases": [ ":fencing:", ":person_fencing:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤺" }, "ferris_wheel": { "unicode": "1F3A1", "unicode_alternates": [ ], "name": "ferris wheel", "shortname": ":ferris_wheel:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "carnival", "londoneye", "photo", "farris", "wheel", "amusement", "park", "fair", "ride", "entertainment", "places", "vacation", "ferris wheel" ], "moji": "🎡" }, "ferry": { "unicode": "26F4", "unicode_alternates": [ ], "name": "ferry", "shortname": ":ferry:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boat", "place", "travel", "transportation", "vacation" ], "moji": "⛴" }, "field_hockey": { "unicode": "1F3D1", "unicode_alternates": [ ], "name": "field hockey stick and ball", "shortname": ":field_hockey:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ball", "sport", "hockey" ], "moji": "🏑" }, "file_cabinet": { "unicode": "1F5C4", "unicode_alternates": [ ], "name": "file cabinet", "shortname": ":file_cabinet:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "folders", "office", "documents", "storage", "object", "work" ], "moji": "🗄" }, "file_folder": { "unicode": "1F4C1", "unicode_alternates": [ ], "name": "file folder", "shortname": ":file_folder:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "work", "office" ], "moji": "📁" }, "film_frames": { "unicode": "1F39E", "unicode_alternates": [ ], "name": "film frames", "shortname": ":film_frames:", "category": "objects", "aliases": [ ":film_strip:" ], "aliases_ascii": [ ], "keywords": [ "movie", "record", "8mm", "16mm", "reel", "celluloid", "object", "camera" ], "moji": "🎞" }, "fingers_crossed": { "unicode": "1F91E", "unicode_alternates": [ ], "name": "hand with first and index finger crossed", "shortname": ":fingers_crossed:", "category": "people", "aliases": [ ":hand_with_index_and_middle_finger_crossed:", ":crossed_fingers:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞" }, "fingers_crossed_tone1": { "unicode": "1F91E-1F3FB", "unicode_alternates": [ ], "name": "hand with index and middle fingers crossed tone 1", "shortname": ":fingers_crossed_tone1:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞🏻" }, "fingers_crossed_tone2": { "unicode": "1F91E-1F3FC", "unicode_alternates": [ ], "name": "hand with index and middle fingers crossed tone 2", "shortname": ":fingers_crossed_tone2:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞🏼" }, "fingers_crossed_tone3": { "unicode": "1F91E-1F3FD", "unicode_alternates": [ ], "name": "hand with index and middle fingers crossed tone 3", "shortname": ":fingers_crossed_tone3:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞🏽" }, "fingers_crossed_tone4": { "unicode": "1F91E-1F3FE", "unicode_alternates": [ ], "name": "hand with index and middle fingers crossed tone 4", "shortname": ":fingers_crossed_tone4:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞🏾" }, "fingers_crossed_tone5": { "unicode": "1F91E-1F3FF", "unicode_alternates": [ ], "name": "hand with index and middle fingers crossed tone 5", "shortname": ":fingers_crossed_tone5:", "category": "people", "aliases": [ ":hand_with_index_and_middle_fingers_crossed_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤞🏿" }, "fire": { "unicode": "1F525", "unicode_alternates": [ ], "name": "fire", "shortname": ":fire:", "category": "nature", "aliases": [ ":flame:" ], "aliases_ascii": [ ], "keywords": [ "cook", "hot", "flame", "wth" ], "moji": "🔥" }, "fire_engine": { "unicode": "1F692", "unicode_alternates": [ ], "name": "fire engine", "shortname": ":fire_engine:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "transportation", "vehicle", "fire", "fighter", "engine", "truck", "emergency", "medical", "911" ], "moji": "🚒" }, "fireworks": { "unicode": "1F386", "unicode_alternates": [ ], "name": "fireworks", "shortname": ":fireworks:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "carnival", "congratulations", "festival", "photo", "fireworks", "independence", "celebration", "explosion", "july", "4th", "rocket", "sky", "idea", "excitement", "parties" ], "moji": "🎆" }, "first_place": { "unicode": "1F947", "unicode_alternates": [ ], "name": "first place medal", "shortname": ":first_place:", "category": "activity", "aliases": [ ":first_place_medal:", ":1st_place_medal:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥇" }, "first_quarter_moon": { "unicode": "1F313", "unicode_alternates": [ ], "name": "first quarter moon symbol", "shortname": ":first_quarter_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "quarter", "first", "sky", "night", "cheese", "phase", "space" ], "moji": "🌓" }, "first_quarter_moon_with_face": { "unicode": "1F31B", "unicode_alternates": [ ], "name": "first quarter moon with face", "shortname": ":first_quarter_moon_with_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "first", "quarter", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space" ], "moji": "🌛" }, "fish": { "unicode": "1F41F", "unicode_alternates": [ ], "name": "fish", "shortname": ":fish:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "food", "nature", "wildlife" ], "moji": "🐟" }, "fish_cake": { "unicode": "1F365", "unicode_alternates": [ ], "name": "fish cake with swirl design", "shortname": ":fish_cake:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fish", "cake", "kamboko", "swirl", "ramen", "noodles", "naruto", "sushi" ], "moji": "🍥" }, "fishing_pole_and_fish": { "unicode": "1F3A3", "unicode_alternates": [ ], "name": "fishing pole and fish", "shortname": ":fishing_pole_and_fish:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "hobby", "fish", "fishing", "pole", "vacation", "sport" ], "moji": "🎣" }, "fist": { "unicode": "270A", "unicode_alternates": [ ], "name": "raised fist", "shortname": ":fist:", "category": "people", "aliases": [ ":fist_raised:" ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand", "body", "hands", "hi", "fist bump", "diversity", "condolence" ], "moji": "✊" }, "fist_tone1": { "unicode": "270A-1F3FB", "unicode_alternates": [ ], "name": "raised fist tone 1", "shortname": ":fist_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏻" }, "fist_tone2": { "unicode": "270A-1F3FC", "unicode_alternates": [ ], "name": "raised fist tone 2", "shortname": ":fist_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏼" }, "fist_tone3": { "unicode": "270A-1F3FD", "unicode_alternates": [ ], "name": "raised fist tone 3", "shortname": ":fist_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏽" }, "fist_tone4": { "unicode": "270A-1F3FE", "unicode_alternates": [ ], "name": "raised fist tone 4", "shortname": ":fist_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏾" }, "fist_tone5": { "unicode": "270A-1F3FF", "unicode_alternates": [ ], "name": "raised fist tone 5", "shortname": ":fist_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "grasp", "hand" ], "moji": "✊🏿" }, "five": { "moji": "5️⃣", "unicode": "0035-20E3", "unicode_alternates": [ "0035-FE0F-20E3" ], "name": "keycap digit five", "shortname": ":five:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "flag_ac": { "unicode": "1F1E6-1F1E8", "unicode_alternates": [ ], "name": "ascension", "shortname": ":flag_ac:", "category": "flags", "aliases": [ ":ac:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ac", "flag" ], "moji": "🇦🇨" }, "flag_ad": { "unicode": "1F1E6-1F1E9", "unicode_alternates": [ ], "name": "andorra", "shortname": ":flag_ad:", "category": "flags", "aliases": [ ":ad:", ":andorra:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ad", "flag" ], "moji": "🇦🇩" }, "flag_ae": { "unicode": "1F1E6-1F1EA", "unicode_alternates": [ ], "name": "the united arab emirates", "shortname": ":flag_ae:", "category": "flags", "aliases": [ ":ae:", ":united_arab_emirates:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ae", "flag" ], "moji": "🇦🇪" }, "flag_af": { "unicode": "1F1E6-1F1EB", "unicode_alternates": [ ], "name": "afghanistan", "shortname": ":flag_af:", "category": "flags", "aliases": [ ":af:", ":afghanistan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "afghanestan", "af", "flag" ], "moji": "🇦🇫" }, "flag_ag": { "unicode": "1F1E6-1F1EC", "unicode_alternates": [ ], "name": "antigua and barbuda", "shortname": ":flag_ag:", "category": "flags", "aliases": [ ":ag:", ":antigua_barbuda:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ag", "flag" ], "moji": "🇦🇬" }, "flag_ai": { "unicode": "1F1E6-1F1EE", "unicode_alternates": [ ], "name": "anguilla", "shortname": ":flag_ai:", "category": "flags", "aliases": [ ":ai:", ":anguilla:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ai", "flag" ], "moji": "🇦🇮" }, "flag_al": { "unicode": "1F1E6-1F1F1", "unicode_alternates": [ ], "name": "albania", "shortname": ":flag_al:", "category": "flags", "aliases": [ ":al:", ":albania:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "shqiperia", "al", "flag" ], "moji": "🇦🇱" }, "flag_am": { "unicode": "1F1E6-1F1F2", "unicode_alternates": [ ], "name": "armenia", "shortname": ":flag_am:", "category": "flags", "aliases": [ ":am:", ":armenia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "hayastan", "am", "flag" ], "moji": "🇦🇲" }, "flag_ao": { "unicode": "1F1E6-1F1F4", "unicode_alternates": [ ], "name": "angola", "shortname": ":flag_ao:", "category": "flags", "aliases": [ ":ao:", ":angola:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ao", "flag" ], "moji": "🇦🇴" }, "flag_aq": { "unicode": "1F1E6-1F1F6", "unicode_alternates": [ ], "name": "antarctica", "shortname": ":flag_aq:", "category": "flags", "aliases": [ ":aq:", ":antarctica:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇦🇶" }, "flag_ar": { "unicode": "1F1E6-1F1F7", "unicode_alternates": [ ], "name": "argentina", "shortname": ":flag_ar:", "category": "flags", "aliases": [ ":ar:", ":argentina:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ar", "flag" ], "moji": "🇦🇷" }, "flag_as": { "unicode": "1F1E6-1F1F8", "unicode_alternates": [ ], "name": "american samoa", "shortname": ":flag_as:", "category": "flags", "aliases": [ ":as:", ":american_samoa:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇦🇸" }, "flag_at": { "unicode": "1F1E6-1F1F9", "unicode_alternates": [ ], "name": "austria", "shortname": ":flag_at:", "category": "flags", "aliases": [ ":at:", ":austria:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "österreich", "osterreich", "at", "flag" ], "moji": "🇦🇹" }, "flag_au": { "unicode": "1F1E6-1F1FA", "unicode_alternates": [ ], "name": "australia", "shortname": ":flag_au:", "category": "flags", "aliases": [ ":au:", ":australia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "au", "flag" ], "moji": "🇦🇺" }, "flag_aw": { "unicode": "1F1E6-1F1FC", "unicode_alternates": [ ], "name": "aruba", "shortname": ":flag_aw:", "category": "flags", "aliases": [ ":aw:", ":aruba:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "aw", "flag" ], "moji": "🇦🇼" }, "flag_ax": { "unicode": "1F1E6-1F1FD", "unicode_alternates": [ ], "name": "åland islands", "shortname": ":flag_ax:", "category": "flags", "aliases": [ ":ax:", ":aland_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇦🇽" }, "flag_az": { "unicode": "1F1E6-1F1FF", "unicode_alternates": [ ], "name": "azerbaijan", "shortname": ":flag_az:", "category": "flags", "aliases": [ ":az:", ":azerbaijan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "azarbaycan", "az", "flag" ], "moji": "🇦🇿" }, "flag_ba": { "unicode": "1F1E7-1F1E6", "unicode_alternates": [ ], "name": "bosnia and herzegovina", "shortname": ":flag_ba:", "category": "flags", "aliases": [ ":ba:", ":bosnia_herzegovina:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bosna i hercegovina", "ba", "flag" ], "moji": "🇧🇦" }, "flag_bb": { "unicode": "1F1E7-1F1E7", "unicode_alternates": [ ], "name": "barbados", "shortname": ":flag_bb:", "category": "flags", "aliases": [ ":bb:", ":barbados:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bb", "flag" ], "moji": "🇧🇧" }, "flag_bd": { "unicode": "1F1E7-1F1E9", "unicode_alternates": [ ], "name": "bangladesh", "shortname": ":flag_bd:", "category": "flags", "aliases": [ ":bd:", ":bangladesh:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bd", "flag" ], "moji": "🇧🇩" }, "flag_be": { "unicode": "1F1E7-1F1EA", "unicode_alternates": [ ], "name": "belgium", "shortname": ":flag_be:", "category": "flags", "aliases": [ ":be:", ":belgium:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "belgique", "belgie", "be", "flag" ], "moji": "🇧🇪" }, "flag_bf": { "unicode": "1F1E7-1F1EB", "unicode_alternates": [ ], "name": "burkina faso", "shortname": ":flag_bf:", "category": "flags", "aliases": [ ":bf:", ":burkina_faso:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bf", "flag" ], "moji": "🇧🇫" }, "flag_bg": { "unicode": "1F1E7-1F1EC", "unicode_alternates": [ ], "name": "bulgaria", "shortname": ":flag_bg:", "category": "flags", "aliases": [ ":bg:", ":bulgaria:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bg", "flag" ], "moji": "🇧🇬" }, "flag_bh": { "unicode": "1F1E7-1F1ED", "unicode_alternates": [ ], "name": "bahrain", "shortname": ":flag_bh:", "category": "flags", "aliases": [ ":bh:", ":bahrain:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al bahrayn", "bh", "flag" ], "moji": "🇧🇭" }, "flag_bi": { "unicode": "1F1E7-1F1EE", "unicode_alternates": [ ], "name": "burundi", "shortname": ":flag_bi:", "category": "flags", "aliases": [ ":bi:", ":burundi:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bi", "flag" ], "moji": "🇧🇮" }, "flag_bj": { "unicode": "1F1E7-1F1EF", "unicode_alternates": [ ], "name": "benin", "shortname": ":flag_bj:", "category": "flags", "aliases": [ ":bj:", ":benin:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bj", "flag" ], "moji": "🇧🇯" }, "flag_bl": { "unicode": "1F1E7-1F1F1", "unicode_alternates": [ ], "name": "saint barthélemy", "shortname": ":flag_bl:", "category": "flags", "aliases": [ ":bl:", ":st_barthelemy:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇧🇱" }, "flag_black": { "unicode": "1F3F4", "unicode_alternates": [ ], "name": "waving black flag", "shortname": ":flag_black:", "category": "objects", "aliases": [ ":waving_black_flag:", ":black_flag:" ], "aliases_ascii": [ ], "keywords": [ "symbol", "signal", "object" ], "moji": "🏴" }, "flag_bm": { "unicode": "1F1E7-1F1F2", "unicode_alternates": [ ], "name": "bermuda", "shortname": ":flag_bm:", "category": "flags", "aliases": [ ":bm:", ":bermuda:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bm", "flag" ], "moji": "🇧🇲" }, "flag_bn": { "unicode": "1F1E7-1F1F3", "unicode_alternates": [ ], "name": "brunei", "shortname": ":flag_bn:", "category": "flags", "aliases": [ ":bn:", ":brunei:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bn", "flag" ], "moji": "🇧🇳" }, "flag_bo": { "unicode": "1F1E7-1F1F4", "unicode_alternates": [ ], "name": "bolivia", "shortname": ":flag_bo:", "category": "flags", "aliases": [ ":bo:", ":bolivia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bo", "flag" ], "moji": "🇧🇴" }, "flag_bq": { "unicode": "1F1E7-1F1F6", "unicode_alternates": [ ], "name": "caribbean netherlands", "shortname": ":flag_bq:", "category": "flags", "aliases": [ ":bq:", ":caribbean_netherlands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇧🇶" }, "flag_br": { "unicode": "1F1E7-1F1F7", "unicode_alternates": [ ], "name": "brazil", "shortname": ":flag_br:", "category": "flags", "aliases": [ ":br:", ":brazil:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "brasil", "br", "flag" ], "moji": "🇧🇷" }, "flag_bs": { "unicode": "1F1E7-1F1F8", "unicode_alternates": [ ], "name": "the bahamas", "shortname": ":flag_bs:", "category": "flags", "aliases": [ ":bs:", ":bahamas:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bs", "flag" ], "moji": "🇧🇸" }, "flag_bt": { "unicode": "1F1E7-1F1F9", "unicode_alternates": [ ], "name": "bhutan", "shortname": ":flag_bt:", "category": "flags", "aliases": [ ":bt:", ":bhutan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bt", "flag" ], "moji": "🇧🇹" }, "flag_bv": { "unicode": "1F1E7-1F1FB", "unicode_alternates": [ ], "name": "bouvet island", "shortname": ":flag_bv:", "category": "flags", "aliases": [ ":bv:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇧🇻" }, "flag_bw": { "unicode": "1F1E7-1F1FC", "unicode_alternates": [ ], "name": "botswana", "shortname": ":flag_bw:", "category": "flags", "aliases": [ ":bw:", ":botswana:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bw", "flag" ], "moji": "🇧🇼" }, "flag_by": { "unicode": "1F1E7-1F1FE", "unicode_alternates": [ ], "name": "belarus", "shortname": ":flag_by:", "category": "flags", "aliases": [ ":by:", ":belarus:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "byelarus", "by", "flag" ], "moji": "🇧🇾" }, "flag_bz": { "unicode": "1F1E7-1F1FF", "unicode_alternates": [ ], "name": "belize", "shortname": ":flag_bz:", "category": "flags", "aliases": [ ":bz:", ":belize:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bz", "flag" ], "moji": "🇧🇿" }, "flag_ca": { "unicode": "1F1E8-1F1E6", "unicode_alternates": [ ], "name": "canada", "shortname": ":flag_ca:", "category": "flags", "aliases": [ ":ca:", ":canada:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ca", "flag" ], "moji": "🇨🇦" }, "flag_cc": { "unicode": "1F1E8-1F1E8", "unicode_alternates": [ ], "name": "cocos (keeling) islands", "shortname": ":flag_cc:", "category": "flags", "aliases": [ ":cc:", ":cocos_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇨🇨" }, "flag_cd": { "unicode": "1F1E8-1F1E9", "unicode_alternates": [ ], "name": "the democratic republic of the congo", "shortname": ":flag_cd:", "category": "flags", "aliases": [ ":congo:", ":congo_kinshasa:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "république démocratique du congo", "republique democratique du congo", "cd", "flag" ], "moji": "🇨🇩" }, "flag_cf": { "unicode": "1F1E8-1F1EB", "unicode_alternates": [ ], "name": "central african republic", "shortname": ":flag_cf:", "category": "flags", "aliases": [ ":cf:", ":central_african_republic:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cf", "flag" ], "moji": "🇨🇫" }, "flag_cg": { "unicode": "1F1E8-1F1EC", "unicode_alternates": [ ], "name": "the republic of the congo", "shortname": ":flag_cg:", "category": "flags", "aliases": [ ":cg:", ":congo_brazzaville:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cg", "flag" ], "moji": "🇨🇬" }, "flag_ch": { "unicode": "1F1E8-1F1ED", "unicode_alternates": [ ], "name": "switzerland", "shortname": ":flag_ch:", "category": "flags", "aliases": [ ":ch:", ":switzerland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "swiss", "neutral", "flag" ], "moji": "🇨🇭" }, "flag_ci": { "unicode": "1F1E8-1F1EE", "unicode_alternates": [ ], "name": "cote d'ivoire", "shortname": ":flag_ci:", "category": "flags", "aliases": [ ":ci:", ":cote_divoire:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ci", "flag" ], "moji": "🇨🇮" }, "flag_ck": { "unicode": "1F1E8-1F1F0", "unicode_alternates": [ ], "name": "cook islands", "shortname": ":flag_ck:", "category": "flags", "aliases": [ ":ck:", ":cook_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇨🇰" }, "flag_cl": { "unicode": "1F1E8-1F1F1", "unicode_alternates": [ ], "name": "chile", "shortname": ":flag_cl:", "category": "flags", "aliases": [ ":chile:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cl", "flag" ], "moji": "🇨🇱" }, "flag_cm": { "unicode": "1F1E8-1F1F2", "unicode_alternates": [ ], "name": "cameroon", "shortname": ":flag_cm:", "category": "flags", "aliases": [ ":cm:", ":cameroon:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cm", "flag" ], "moji": "🇨🇲" }, "flag_cn": { "unicode": "1F1E8-1F1F3", "unicode_alternates": [ ], "name": "china", "shortname": ":flag_cn:", "category": "flags", "aliases": [ ":cn:" ], "aliases_ascii": [ ], "keywords": [ "chinese", "prc", "zhong guo", "country", "nation", "cn", "flag" ], "moji": "🇨🇳" }, "flag_co": { "unicode": "1F1E8-1F1F4", "unicode_alternates": [ ], "name": "colombia", "shortname": ":flag_co:", "category": "flags", "aliases": [ ":co:", ":colombia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "co", "flag" ], "moji": "🇨🇴" }, "flag_cp": { "unicode": "1F1E8-1F1F5", "unicode_alternates": [ ], "name": "clipperton island", "shortname": ":flag_cp:", "category": "flags", "aliases": [ ":cp:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇨🇵" }, "flag_cr": { "unicode": "1F1E8-1F1F7", "unicode_alternates": [ ], "name": "costa rica", "shortname": ":flag_cr:", "category": "flags", "aliases": [ ":cr:", ":costa_rica:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cr", "flag" ], "moji": "🇨🇷" }, "flag_cu": { "unicode": "1F1E8-1F1FA", "unicode_alternates": [ ], "name": "cuba", "shortname": ":flag_cu:", "category": "flags", "aliases": [ ":cu:", ":cuba:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cu", "flag" ], "moji": "🇨🇺" }, "flag_cv": { "unicode": "1F1E8-1F1FB", "unicode_alternates": [ ], "name": "cape verde", "shortname": ":flag_cv:", "category": "flags", "aliases": [ ":cv:", ":cape_verde:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "cabo verde", "cv", "flag" ], "moji": "🇨🇻" }, "flag_cw": { "unicode": "1F1E8-1F1FC", "unicode_alternates": [ ], "name": "curaçao", "shortname": ":flag_cw:", "category": "flags", "aliases": [ ":cw:", ":curacao:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇨🇼" }, "flag_cx": { "unicode": "1F1E8-1F1FD", "unicode_alternates": [ ], "name": "christmas island", "shortname": ":flag_cx:", "category": "flags", "aliases": [ ":cx:", ":christmas_island:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇨🇽" }, "flag_cy": { "unicode": "1F1E8-1F1FE", "unicode_alternates": [ ], "name": "cyprus", "shortname": ":flag_cy:", "category": "flags", "aliases": [ ":cy:", ":cyprus:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kibris", "kypros", "cy", "flag" ], "moji": "🇨🇾" }, "flag_cz": { "unicode": "1F1E8-1F1FF", "unicode_alternates": [ ], "name": "the czech republic", "shortname": ":flag_cz:", "category": "flags", "aliases": [ ":cz:", ":czech_republic:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ceska republika", "cz", "flag" ], "moji": "🇨🇿" }, "flag_de": { "unicode": "1F1E9-1F1EA", "unicode_alternates": [ ], "name": "germany", "shortname": ":flag_de:", "category": "flags", "aliases": [ ":de:" ], "aliases_ascii": [ ], "keywords": [ "german", "nation", "deutschland", "country", "de", "flag" ], "moji": "🇩🇪" }, "flag_dg": { "unicode": "1F1E9-1F1EC", "unicode_alternates": [ ], "name": "diego garcia", "shortname": ":flag_dg:", "category": "flags", "aliases": [ ":dg:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇩🇬" }, "flag_dj": { "unicode": "1F1E9-1F1EF", "unicode_alternates": [ ], "name": "djibouti", "shortname": ":flag_dj:", "category": "flags", "aliases": [ ":dj:", ":djibouti:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "dj", "flag" ], "moji": "🇩🇯" }, "flag_dk": { "unicode": "1F1E9-1F1F0", "unicode_alternates": [ ], "name": "denmark", "shortname": ":flag_dk:", "category": "flags", "aliases": [ ":dk:", ":denmark:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "danmark", "dk", "flag" ], "moji": "🇩🇰" }, "flag_dm": { "unicode": "1F1E9-1F1F2", "unicode_alternates": [ ], "name": "dominica", "shortname": ":flag_dm:", "category": "flags", "aliases": [ ":dm:", ":dominica:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "dm", "flag" ], "moji": "🇩🇲" }, "flag_do": { "unicode": "1F1E9-1F1F4", "unicode_alternates": [ ], "name": "the dominican republic", "shortname": ":flag_do:", "category": "flags", "aliases": [ ":do:", ":dominican_republic:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "do", "flag" ], "moji": "🇩🇴" }, "flag_dz": { "unicode": "1F1E9-1F1FF", "unicode_alternates": [ ], "name": "algeria", "shortname": ":flag_dz:", "category": "flags", "aliases": [ ":dz:", ":algeria:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al jaza'ir", "al jazair", "dz", "flag" ], "moji": "🇩🇿" }, "flag_ea": { "unicode": "1F1EA-1F1E6", "unicode_alternates": [ ], "name": "ceuta, melilla", "shortname": ":flag_ea:", "category": "flags", "aliases": [ ":ea:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇪🇦" }, "flag_ec": { "unicode": "1F1EA-1F1E8", "unicode_alternates": [ ], "name": "ecuador", "shortname": ":flag_ec:", "category": "flags", "aliases": [ ":ec:", ":ecuador:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ec", "flag" ], "moji": "🇪🇨" }, "flag_ee": { "unicode": "1F1EA-1F1EA", "unicode_alternates": [ ], "name": "estonia", "shortname": ":flag_ee:", "category": "flags", "aliases": [ ":ee:", ":estonia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "eesti vabariik", "ee", "flag" ], "moji": "🇪🇪" }, "flag_eg": { "unicode": "1F1EA-1F1EC", "unicode_alternates": [ ], "name": "egypt", "shortname": ":flag_eg:", "category": "flags", "aliases": [ ":eg:", ":egypt:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "misr", "eg", "flag" ], "moji": "🇪🇬" }, "flag_eh": { "unicode": "1F1EA-1F1ED", "unicode_alternates": [ ], "name": "western sahara", "shortname": ":flag_eh:", "category": "flags", "aliases": [ ":eh:", ":western_sahara:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "aṣ-Ṣaḥrā’ al-gharbīyah", "sahra", "gharbiyah", "eh", "flag" ], "moji": "🇪🇭" }, "flag_er": { "unicode": "1F1EA-1F1F7", "unicode_alternates": [ ], "name": "eritrea", "shortname": ":flag_er:", "category": "flags", "aliases": [ ":er:", ":eritrea:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "hagere ertra", "er", "flag" ], "moji": "🇪🇷" }, "flag_es": { "unicode": "1F1EA-1F1F8", "unicode_alternates": [ ], "name": "spain", "shortname": ":flag_es:", "category": "flags", "aliases": [ ":es:" ], "aliases_ascii": [ ], "keywords": [ "nation", "españa", "country", "espana", "es", "flag" ], "moji": "🇪🇸" }, "flag_et": { "unicode": "1F1EA-1F1F9", "unicode_alternates": [ ], "name": "ethiopia", "shortname": ":flag_et:", "category": "flags", "aliases": [ ":et:", ":ethiopia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ityop'iya", "ityopiya", "et", "flag" ], "moji": "🇪🇹" }, "flag_eu": { "unicode": "1F1EA-1F1FA", "unicode_alternates": [ ], "name": "european union", "shortname": ":flag_eu:", "category": "flags", "aliases": [ ":eu:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇪🇺" }, "flag_fi": { "unicode": "1F1EB-1F1EE", "unicode_alternates": [ ], "name": "finland", "shortname": ":flag_fi:", "category": "flags", "aliases": [ ":fi:", ":finland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "suomen tasavalta", "fi", "flag" ], "moji": "🇫🇮" }, "flag_fj": { "unicode": "1F1EB-1F1EF", "unicode_alternates": [ ], "name": "fiji", "shortname": ":flag_fj:", "category": "flags", "aliases": [ ":fj:", ":fiji:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "fj", "flag" ], "moji": "🇫🇯" }, "flag_fk": { "unicode": "1F1EB-1F1F0", "unicode_alternates": [ ], "name": "falkland islands", "shortname": ":flag_fk:", "category": "flags", "aliases": [ ":fk:", ":falkland_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "islas malvinas", "fk", "flag" ], "moji": "🇫🇰" }, "flag_fm": { "unicode": "1F1EB-1F1F2", "unicode_alternates": [ ], "name": "micronesia", "shortname": ":flag_fm:", "category": "flags", "aliases": [ ":fm:", ":micronesia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "fm", "flag" ], "moji": "🇫🇲" }, "flag_fo": { "unicode": "1F1EB-1F1F4", "unicode_alternates": [ ], "name": "faroe islands", "shortname": ":flag_fo:", "category": "flags", "aliases": [ ":fo:", ":faroe_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "foroyar", "fo", "flag" ], "moji": "🇫🇴" }, "flag_fr": { "unicode": "1F1EB-1F1F7", "unicode_alternates": [ ], "name": "france", "shortname": ":flag_fr:", "category": "flags", "aliases": [ ":fr:" ], "aliases_ascii": [ ], "keywords": [ "french", "nation", "country", "fr", "flag" ], "moji": "🇫🇷" }, "flag_ga": { "unicode": "1F1EC-1F1E6", "unicode_alternates": [ ], "name": "gabon", "shortname": ":flag_ga:", "category": "flags", "aliases": [ ":ga:", ":gabon:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ga", "flag" ], "moji": "🇬🇦" }, "flag_gb": { "unicode": "1F1EC-1F1E7", "unicode_alternates": [ ], "name": "great britain", "shortname": ":flag_gb:", "category": "flags", "aliases": [ ":gb:" ], "aliases_ascii": [ ], "keywords": [ "UK", "gb", "britsh", "nation", "united kingdom", "england", "country", "flag" ], "moji": "🇬🇧" }, "flag_gd": { "unicode": "1F1EC-1F1E9", "unicode_alternates": [ ], "name": "grenada", "shortname": ":flag_gd:", "category": "flags", "aliases": [ ":gd:", ":grenada:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gd", "flag" ], "moji": "🇬🇩" }, "flag_ge": { "unicode": "1F1EC-1F1EA", "unicode_alternates": [ ], "name": "georgia", "shortname": ":flag_ge:", "category": "flags", "aliases": [ ":ge:", ":georgia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sak'art'velo", "sakartvelo", "ge", "flag" ], "moji": "🇬🇪" }, "flag_gf": { "unicode": "1F1EC-1F1EB", "unicode_alternates": [ ], "name": "french guiana", "shortname": ":flag_gf:", "category": "flags", "aliases": [ ":gf:", ":french_guiana:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇬🇫" }, "flag_gg": { "unicode": "1F1EC-1F1EC", "unicode_alternates": [ ], "name": "guernsey", "shortname": ":flag_gg:", "category": "flags", "aliases": [ ":gg:", ":guernsey:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇬🇬" }, "flag_gh": { "unicode": "1F1EC-1F1ED", "unicode_alternates": [ ], "name": "ghana", "shortname": ":flag_gh:", "category": "flags", "aliases": [ ":gh:", ":ghana:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gh", "flag" ], "moji": "🇬🇭" }, "flag_gi": { "unicode": "1F1EC-1F1EE", "unicode_alternates": [ ], "name": "gibraltar", "shortname": ":flag_gi:", "category": "flags", "aliases": [ ":gi:", ":gibraltar:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gi", "flag" ], "moji": "🇬🇮" }, "flag_gl": { "unicode": "1F1EC-1F1F1", "unicode_alternates": [ ], "name": "greenland", "shortname": ":flag_gl:", "category": "flags", "aliases": [ ":gl:", ":greenland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kalaallit nunaat", "gl", "flag" ], "moji": "🇬🇱" }, "flag_gm": { "unicode": "1F1EC-1F1F2", "unicode_alternates": [ ], "name": "the gambia", "shortname": ":flag_gm:", "category": "flags", "aliases": [ ":gm:", ":gambia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gm", "flag" ], "moji": "🇬🇲" }, "flag_gn": { "unicode": "1F1EC-1F1F3", "unicode_alternates": [ ], "name": "guinea", "shortname": ":flag_gn:", "category": "flags", "aliases": [ ":gn:", ":guinea:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "guinee", "gn", "flag" ], "moji": "🇬🇳" }, "flag_gp": { "unicode": "1F1EC-1F1F5", "unicode_alternates": [ ], "name": "guadeloupe", "shortname": ":flag_gp:", "category": "flags", "aliases": [ ":gp:", ":guadeloupe:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇬🇵" }, "flag_gq": { "unicode": "1F1EC-1F1F6", "unicode_alternates": [ ], "name": "equatorial guinea", "shortname": ":flag_gq:", "category": "flags", "aliases": [ ":gq:", ":equatorial_guinea:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "guinea ecuatorial", "gq", "flag" ], "moji": "🇬🇶" }, "flag_gr": { "unicode": "1F1EC-1F1F7", "unicode_alternates": [ ], "name": "greece", "shortname": ":flag_gr:", "category": "flags", "aliases": [ ":gr:", ":greece:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ellas", "ellada", "gr", "flag" ], "moji": "🇬🇷" }, "flag_gs": { "unicode": "1F1EC-1F1F8", "unicode_alternates": [ ], "name": "south georgia", "shortname": ":flag_gs:", "category": "flags", "aliases": [ ":gs:", ":south_georgia_south_sandwich_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇬🇸" }, "flag_gt": { "unicode": "1F1EC-1F1F9", "unicode_alternates": [ ], "name": "guatemala", "shortname": ":flag_gt:", "category": "flags", "aliases": [ ":gt:", ":guatemala:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gt", "flag" ], "moji": "🇬🇹" }, "flag_gu": { "unicode": "1F1EC-1F1FA", "unicode_alternates": [ ], "name": "guam", "shortname": ":flag_gu:", "category": "flags", "aliases": [ ":gu:", ":guam:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gu", "flag" ], "moji": "🇬🇺" }, "flag_gw": { "unicode": "1F1EC-1F1FC", "unicode_alternates": [ ], "name": "guinea-bissau", "shortname": ":flag_gw:", "category": "flags", "aliases": [ ":gw:", ":guinea_bissau:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "guine-bissau", "guine bissau", "gw", "flag" ], "moji": "🇬🇼" }, "flag_gy": { "unicode": "1F1EC-1F1FE", "unicode_alternates": [ ], "name": "guyana", "shortname": ":flag_gy:", "category": "flags", "aliases": [ ":gy:", ":guyana:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "gy", "flag" ], "moji": "🇬🇾" }, "flag_hk": { "unicode": "1F1ED-1F1F0", "unicode_alternates": [ ], "name": "hong kong", "shortname": ":flag_hk:", "category": "flags", "aliases": [ ":hk:", ":hong_kong:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "xianggang", "hk", "flag" ], "moji": "🇭🇰" }, "flag_hm": { "unicode": "1F1ED-1F1F2", "unicode_alternates": [ ], "name": "heard island and mcdonald islands", "shortname": ":flag_hm:", "category": "flags", "aliases": [ ":hm:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇭🇲" }, "flag_hn": { "unicode": "1F1ED-1F1F3", "unicode_alternates": [ ], "name": "honduras", "shortname": ":flag_hn:", "category": "flags", "aliases": [ ":hn:", ":honduras:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "hn", "flag" ], "moji": "🇭🇳" }, "flag_hr": { "unicode": "1F1ED-1F1F7", "unicode_alternates": [ ], "name": "croatia", "shortname": ":flag_hr:", "category": "flags", "aliases": [ ":hr:", ":croatia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "hrvatska", "hr", "flag" ], "moji": "🇭🇷" }, "flag_ht": { "unicode": "1F1ED-1F1F9", "unicode_alternates": [ ], "name": "haiti", "shortname": ":flag_ht:", "category": "flags", "aliases": [ ":ht:", ":haiti:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ht", "flag" ], "moji": "🇭🇹" }, "flag_hu": { "unicode": "1F1ED-1F1FA", "unicode_alternates": [ ], "name": "hungary", "shortname": ":flag_hu:", "category": "flags", "aliases": [ ":hu:", ":hungary:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "magyarorszag", "hu", "flag" ], "moji": "🇭🇺" }, "flag_ic": { "unicode": "1F1EE-1F1E8", "unicode_alternates": [ ], "name": "canary islands", "shortname": ":flag_ic:", "category": "flags", "aliases": [ ":ic:", ":canary_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇮🇨" }, "flag_id": { "unicode": "1F1EE-1F1E9", "unicode_alternates": [ ], "name": "indonesia", "shortname": ":flag_id:", "category": "flags", "aliases": [ ":indonesia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "id", "flag" ], "moji": "🇮🇩" }, "flag_ie": { "unicode": "1F1EE-1F1EA", "unicode_alternates": [ ], "name": "ireland", "shortname": ":flag_ie:", "category": "flags", "aliases": [ ":ie:", ":ireland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "éire", "eire", "ie", "flag" ], "moji": "🇮🇪" }, "flag_il": { "unicode": "1F1EE-1F1F1", "unicode_alternates": [ ], "name": "israel", "shortname": ":flag_il:", "category": "flags", "aliases": [ ":il:", ":israel:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "yisra'el", "yisrael", "il", "jew", "flag" ], "moji": "🇮🇱" }, "flag_im": { "unicode": "1F1EE-1F1F2", "unicode_alternates": [ ], "name": "isle of man", "shortname": ":flag_im:", "category": "flags", "aliases": [ ":im:", ":isle_of_man:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇮🇲" }, "flag_in": { "unicode": "1F1EE-1F1F3", "unicode_alternates": [ ], "name": "india", "shortname": ":flag_in:", "category": "flags", "aliases": [ ":in:", ":india:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "bharat", "in", "flag" ], "moji": "🇮🇳" }, "flag_io": { "unicode": "1F1EE-1F1F4", "unicode_alternates": [ ], "name": "british indian ocean territory", "shortname": ":flag_io:", "category": "flags", "aliases": [ ":io:", ":british_indian_ocean_territory:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇮🇴" }, "flag_iq": { "unicode": "1F1EE-1F1F6", "unicode_alternates": [ ], "name": "iraq", "shortname": ":flag_iq:", "category": "flags", "aliases": [ ":iq:", ":iraq:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "iq", "flag" ], "moji": "🇮🇶" }, "flag_ir": { "unicode": "1F1EE-1F1F7", "unicode_alternates": [ ], "name": "iran", "shortname": ":flag_ir:", "category": "flags", "aliases": [ ":ir:", ":iran:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ir", "flag" ], "moji": "🇮🇷" }, "flag_is": { "unicode": "1F1EE-1F1F8", "unicode_alternates": [ ], "name": "iceland", "shortname": ":flag_is:", "category": "flags", "aliases": [ ":is:", ":iceland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lyoveldio island", "is", "flag" ], "moji": "🇮🇸" }, "flag_it": { "unicode": "1F1EE-1F1F9", "unicode_alternates": [ ], "name": "italy", "shortname": ":flag_it:", "category": "flags", "aliases": [ ":it:" ], "aliases_ascii": [ ], "keywords": [ "italia", "country", "nation", "it", "italian", "flag" ], "moji": "🇮🇹" }, "flag_je": { "unicode": "1F1EF-1F1EA", "unicode_alternates": [ ], "name": "jersey", "shortname": ":flag_je:", "category": "flags", "aliases": [ ":je:", ":jersey:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "je", "flag" ], "moji": "🇯🇪" }, "flag_jm": { "unicode": "1F1EF-1F1F2", "unicode_alternates": [ ], "name": "jamaica", "shortname": ":flag_jm:", "category": "flags", "aliases": [ ":jm:", ":jamaica:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "jm", "flag" ], "moji": "🇯🇲" }, "flag_jo": { "unicode": "1F1EF-1F1F4", "unicode_alternates": [ ], "name": "jordan", "shortname": ":flag_jo:", "category": "flags", "aliases": [ ":jo:", ":jordan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al urdun", "jo", "flag" ], "moji": "🇯🇴" }, "flag_jp": { "unicode": "1F1EF-1F1F5", "unicode_alternates": [ ], "name": "japan", "shortname": ":flag_jp:", "category": "flags", "aliases": [ ":jp:" ], "aliases_ascii": [ ], "keywords": [ "nation", "nippon", "country", "jp", "japan", "flag" ], "moji": "🇯🇵" }, "flag_ke": { "unicode": "1F1F0-1F1EA", "unicode_alternates": [ ], "name": "kenya", "shortname": ":flag_ke:", "category": "flags", "aliases": [ ":ke:", ":kenya:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ke", "flag" ], "moji": "🇰🇪" }, "flag_kg": { "unicode": "1F1F0-1F1EC", "unicode_alternates": [ ], "name": "kyrgyzstan", "shortname": ":flag_kg:", "category": "flags", "aliases": [ ":kg:", ":kyrgyzstan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kyrgyz respublikasy", "kg", "flag" ], "moji": "🇰🇬" }, "flag_kh": { "unicode": "1F1F0-1F1ED", "unicode_alternates": [ ], "name": "cambodia", "shortname": ":flag_kh:", "category": "flags", "aliases": [ ":kh:", ":cambodia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kampuchea", "kh", "flag" ], "moji": "🇰🇭" }, "flag_ki": { "unicode": "1F1F0-1F1EE", "unicode_alternates": [ ], "name": "kiribati", "shortname": ":flag_ki:", "category": "flags", "aliases": [ ":ki:", ":kiribati:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kiribati", "kiribas", "ki", "flag" ], "moji": "🇰🇮" }, "flag_km": { "unicode": "1F1F0-1F1F2", "unicode_alternates": [ ], "name": "the comoros", "shortname": ":flag_km:", "category": "flags", "aliases": [ ":km:", ":comoros:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "km", "flag" ], "moji": "🇰🇲" }, "flag_kn": { "unicode": "1F1F0-1F1F3", "unicode_alternates": [ ], "name": "saint kitts and nevis", "shortname": ":flag_kn:", "category": "flags", "aliases": [ ":kn:", ":st_kitts_nevis:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kn", "flag" ], "moji": "🇰🇳" }, "flag_kp": { "unicode": "1F1F0-1F1F5", "unicode_alternates": [ ], "name": "north korea", "shortname": ":flag_kp:", "category": "flags", "aliases": [ ":kp:", ":north_korea:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "kp", "flag" ], "moji": "🇰🇵" }, "flag_kr": { "unicode": "1F1F0-1F1F7", "unicode_alternates": [ ], "name": "korea", "shortname": ":flag_kr:", "category": "flags", "aliases": [ ":kr:" ], "aliases_ascii": [ ], "keywords": [ "nation", "country", "south korea", "kr", "flag" ], "moji": "🇰🇷" }, "flag_kw": { "unicode": "1F1F0-1F1FC", "unicode_alternates": [ ], "name": "kuwait", "shortname": ":flag_kw:", "category": "flags", "aliases": [ ":kw:", ":kuwait:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al kuwayt", "kw", "flag" ], "moji": "🇰🇼" }, "flag_ky": { "unicode": "1F1F0-1F1FE", "unicode_alternates": [ ], "name": "cayman islands", "shortname": ":flag_ky:", "category": "flags", "aliases": [ ":ky:", ":cayman_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ky", "flag" ], "moji": "🇰🇾" }, "flag_kz": { "unicode": "1F1F0-1F1FF", "unicode_alternates": [ ], "name": "kazakhstan", "shortname": ":flag_kz:", "category": "flags", "aliases": [ ":kz:", ":kazakhstan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "qazaqstan", "kz", "flag" ], "moji": "🇰🇿" }, "flag_la": { "unicode": "1F1F1-1F1E6", "unicode_alternates": [ ], "name": "laos", "shortname": ":flag_la:", "category": "flags", "aliases": [ ":la:", ":laos:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "la", "flag" ], "moji": "🇱🇦" }, "flag_lb": { "unicode": "1F1F1-1F1E7", "unicode_alternates": [ ], "name": "lebanon", "shortname": ":flag_lb:", "category": "flags", "aliases": [ ":lb:", ":lebanon:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lubnan", "lb", "flag" ], "moji": "🇱🇧" }, "flag_lc": { "unicode": "1F1F1-1F1E8", "unicode_alternates": [ ], "name": "saint lucia", "shortname": ":flag_lc:", "category": "flags", "aliases": [ ":lc:", ":st_lucia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lc", "flag" ], "moji": "🇱🇨" }, "flag_li": { "unicode": "1F1F1-1F1EE", "unicode_alternates": [ ], "name": "liechtenstein", "shortname": ":flag_li:", "category": "flags", "aliases": [ ":li:", ":liechtenstein:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "li", "flag" ], "moji": "🇱🇮" }, "flag_lk": { "unicode": "1F1F1-1F1F0", "unicode_alternates": [ ], "name": "sri lanka", "shortname": ":flag_lk:", "category": "flags", "aliases": [ ":lk:", ":sri_lanka:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lk", "flag" ], "moji": "🇱🇰" }, "flag_lr": { "unicode": "1F1F1-1F1F7", "unicode_alternates": [ ], "name": "liberia", "shortname": ":flag_lr:", "category": "flags", "aliases": [ ":lr:", ":liberia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lr", "flag" ], "moji": "🇱🇷" }, "flag_ls": { "unicode": "1F1F1-1F1F8", "unicode_alternates": [ ], "name": "lesotho", "shortname": ":flag_ls:", "category": "flags", "aliases": [ ":ls:", ":lesotho:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ls", "flag" ], "moji": "🇱🇸" }, "flag_lt": { "unicode": "1F1F1-1F1F9", "unicode_alternates": [ ], "name": "lithuania", "shortname": ":flag_lt:", "category": "flags", "aliases": [ ":lt:", ":lithuania:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "lietuva", "lt", "flag" ], "moji": "🇱🇹" }, "flag_lu": { "unicode": "1F1F1-1F1FA", "unicode_alternates": [ ], "name": "luxembourg", "shortname": ":flag_lu:", "category": "flags", "aliases": [ ":lu:", ":luxembourg:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "luxembourg", "letzebuerg", "lu", "flag" ], "moji": "🇱🇺" }, "flag_lv": { "unicode": "1F1F1-1F1FB", "unicode_alternates": [ ], "name": "latvia", "shortname": ":flag_lv:", "category": "flags", "aliases": [ ":lv:", ":latvia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "latvija", "lv", "flag" ], "moji": "🇱🇻" }, "flag_ly": { "unicode": "1F1F1-1F1FE", "unicode_alternates": [ ], "name": "libya", "shortname": ":flag_ly:", "category": "flags", "aliases": [ ":ly:", ":libya:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "libiyah", "ly", "flag" ], "moji": "🇱🇾" }, "flag_ma": { "unicode": "1F1F2-1F1E6", "unicode_alternates": [ ], "name": "morocco", "shortname": ":flag_ma:", "category": "flags", "aliases": [ ":ma:", ":morocco:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al maghrib", "ma", "flag" ], "moji": "🇲🇦" }, "flag_mc": { "unicode": "1F1F2-1F1E8", "unicode_alternates": [ ], "name": "monaco", "shortname": ":flag_mc:", "category": "flags", "aliases": [ ":mc:", ":monaco:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mc", "flag" ], "moji": "🇲🇨" }, "flag_md": { "unicode": "1F1F2-1F1E9", "unicode_alternates": [ ], "name": "moldova", "shortname": ":flag_md:", "category": "flags", "aliases": [ ":md:", ":moldova:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "md", "flag" ], "moji": "🇲🇩" }, "flag_me": { "unicode": "1F1F2-1F1EA", "unicode_alternates": [ ], "name": "montenegro", "shortname": ":flag_me:", "category": "flags", "aliases": [ ":me:", ":montenegro:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "crna gora", "me", "flag" ], "moji": "🇲🇪" }, "flag_mf": { "unicode": "1F1F2-1F1EB", "unicode_alternates": [ ], "name": "saint martin", "shortname": ":flag_mf:", "category": "flags", "aliases": [ ":mf:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇲🇫" }, "flag_mg": { "unicode": "1F1F2-1F1EC", "unicode_alternates": [ ], "name": "madagascar", "shortname": ":flag_mg:", "category": "flags", "aliases": [ ":mg:", ":madagascar:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mg", "flag" ], "moji": "🇲🇬" }, "flag_mh": { "unicode": "1F1F2-1F1ED", "unicode_alternates": [ ], "name": "the marshall islands", "shortname": ":flag_mh:", "category": "flags", "aliases": [ ":mh:", ":marshall_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mh", "flag" ], "moji": "🇲🇭" }, "flag_mk": { "unicode": "1F1F2-1F1F0", "unicode_alternates": [ ], "name": "macedonia", "shortname": ":flag_mk:", "category": "flags", "aliases": [ ":mk:", ":macedonia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mk", "flag" ], "moji": "🇲🇰" }, "flag_ml": { "unicode": "1F1F2-1F1F1", "unicode_alternates": [ ], "name": "mali", "shortname": ":flag_ml:", "category": "flags", "aliases": [ ":ml:", ":mali:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ml", "flag" ], "moji": "🇲🇱" }, "flag_mm": { "unicode": "1F1F2-1F1F2", "unicode_alternates": [ ], "name": "myanmar", "shortname": ":flag_mm:", "category": "flags", "aliases": [ ":mm:", ":myanmar:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "myanma naingngandaw", "mm", "flag" ], "moji": "🇲🇲" }, "flag_mn": { "unicode": "1F1F2-1F1F3", "unicode_alternates": [ ], "name": "mongolia", "shortname": ":flag_mn:", "category": "flags", "aliases": [ ":mn:", ":mongolia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mongol uls", "mn", "flag" ], "moji": "🇲🇳" }, "flag_mo": { "unicode": "1F1F2-1F1F4", "unicode_alternates": [ ], "name": "macau", "shortname": ":flag_mo:", "category": "flags", "aliases": [ ":mo:", ":macau:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "aomen", "mo", "flag" ], "moji": "🇲🇴" }, "flag_mp": { "unicode": "1F1F2-1F1F5", "unicode_alternates": [ ], "name": "northern mariana islands", "shortname": ":flag_mp:", "category": "flags", "aliases": [ ":mp:", ":northern_mariana_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇲🇵" }, "flag_mq": { "unicode": "1F1F2-1F1F6", "unicode_alternates": [ ], "name": "martinique", "shortname": ":flag_mq:", "category": "flags", "aliases": [ ":mq:", ":martinique:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇲🇶" }, "flag_mr": { "unicode": "1F1F2-1F1F7", "unicode_alternates": [ ], "name": "mauritania", "shortname": ":flag_mr:", "category": "flags", "aliases": [ ":mr:", ":mauritania:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "muritaniyah", "mr", "flag" ], "moji": "🇲🇷" }, "flag_ms": { "unicode": "1F1F2-1F1F8", "unicode_alternates": [ ], "name": "montserrat", "shortname": ":flag_ms:", "category": "flags", "aliases": [ ":ms:", ":montserrat:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ms", "flag" ], "moji": "🇲🇸" }, "flag_mt": { "unicode": "1F1F2-1F1F9", "unicode_alternates": [ ], "name": "malta", "shortname": ":flag_mt:", "category": "flags", "aliases": [ ":mt:", ":malta:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mt", "flag" ], "moji": "🇲🇹" }, "flag_mu": { "unicode": "1F1F2-1F1FA", "unicode_alternates": [ ], "name": "mauritius", "shortname": ":flag_mu:", "category": "flags", "aliases": [ ":mu:", ":mauritius:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mu", "flag" ], "moji": "🇲🇺" }, "flag_mv": { "unicode": "1F1F2-1F1FB", "unicode_alternates": [ ], "name": "maldives", "shortname": ":flag_mv:", "category": "flags", "aliases": [ ":mv:", ":maldives:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "dhivehi raajje", "mv", "flag" ], "moji": "🇲🇻" }, "flag_mw": { "unicode": "1F1F2-1F1FC", "unicode_alternates": [ ], "name": "malawi", "shortname": ":flag_mw:", "category": "flags", "aliases": [ ":mw:", ":malawi:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mw", "flag" ], "moji": "🇲🇼" }, "flag_mx": { "unicode": "1F1F2-1F1FD", "unicode_alternates": [ ], "name": "mexico", "shortname": ":flag_mx:", "category": "flags", "aliases": [ ":mx:", ":mexico:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mx", "mexican", "flag" ], "moji": "🇲🇽" }, "flag_my": { "unicode": "1F1F2-1F1FE", "unicode_alternates": [ ], "name": "malaysia", "shortname": ":flag_my:", "category": "flags", "aliases": [ ":my:", ":malaysia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "my", "flag" ], "moji": "🇲🇾" }, "flag_mz": { "unicode": "1F1F2-1F1FF", "unicode_alternates": [ ], "name": "mozambique", "shortname": ":flag_mz:", "category": "flags", "aliases": [ ":mz:", ":mozambique:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "mocambique", "mz", "flag" ], "moji": "🇲🇿" }, "flag_na": { "unicode": "1F1F3-1F1E6", "unicode_alternates": [ ], "name": "namibia", "shortname": ":flag_na:", "category": "flags", "aliases": [ ":na:", ":namibia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "na", "flag" ], "moji": "🇳🇦" }, "flag_nc": { "unicode": "1F1F3-1F1E8", "unicode_alternates": [ ], "name": "new caledonia", "shortname": ":flag_nc:", "category": "flags", "aliases": [ ":nc:", ":new_caledonia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "nouvelle", "calédonie", "caledonie", "nc", "flag" ], "moji": "🇳🇨" }, "flag_ne": { "unicode": "1F1F3-1F1EA", "unicode_alternates": [ ], "name": "niger", "shortname": ":flag_ne:", "category": "flags", "aliases": [ ":ne:", ":niger:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ne", "flag" ], "moji": "🇳🇪" }, "flag_nf": { "unicode": "1F1F3-1F1EB", "unicode_alternates": [ ], "name": "norfolk island", "shortname": ":flag_nf:", "category": "flags", "aliases": [ ":nf:", ":norfolk_island:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇳🇫" }, "flag_ng": { "unicode": "1F1F3-1F1EC", "unicode_alternates": [ ], "name": "nigeria", "shortname": ":flag_ng:", "category": "flags", "aliases": [ ":nigeria:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ng", "flag" ], "moji": "🇳🇬" }, "flag_ni": { "unicode": "1F1F3-1F1EE", "unicode_alternates": [ ], "name": "nicaragua", "shortname": ":flag_ni:", "category": "flags", "aliases": [ ":ni:", ":nicaragua:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ni", "flag" ], "moji": "🇳🇮" }, "flag_nl": { "unicode": "1F1F3-1F1F1", "unicode_alternates": [ ], "name": "the netherlands", "shortname": ":flag_nl:", "category": "flags", "aliases": [ ":nl:", ":netherlands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "nederland", "holland", "nl", "flag" ], "moji": "🇳🇱" }, "flag_no": { "unicode": "1F1F3-1F1F4", "unicode_alternates": [ ], "name": "norway", "shortname": ":flag_no:", "category": "flags", "aliases": [ ":no:", ":norway:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "norge", "no", "flag" ], "moji": "🇳🇴" }, "flag_np": { "unicode": "1F1F3-1F1F5", "unicode_alternates": [ ], "name": "nepal", "shortname": ":flag_np:", "category": "flags", "aliases": [ ":np:", ":nepal:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "np", "flag" ], "moji": "🇳🇵" }, "flag_nr": { "unicode": "1F1F3-1F1F7", "unicode_alternates": [ ], "name": "nauru", "shortname": ":flag_nr:", "category": "flags", "aliases": [ ":nr:", ":nauru:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "nr", "flag" ], "moji": "🇳🇷" }, "flag_nu": { "unicode": "1F1F3-1F1FA", "unicode_alternates": [ ], "name": "niue", "shortname": ":flag_nu:", "category": "flags", "aliases": [ ":nu:", ":niue:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "nu", "flag" ], "moji": "🇳🇺" }, "flag_nz": { "unicode": "1F1F3-1F1FF", "unicode_alternates": [ ], "name": "new zealand", "shortname": ":flag_nz:", "category": "flags", "aliases": [ ":nz:", ":new_zealand:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "aotearoa", "nz", "flag" ], "moji": "🇳🇿" }, "flag_om": { "unicode": "1F1F4-1F1F2", "unicode_alternates": [ ], "name": "oman", "shortname": ":flag_om:", "category": "flags", "aliases": [ ":om:", ":oman:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "saltanat uman", "om", "flag" ], "moji": "🇴🇲" }, "flag_pa": { "unicode": "1F1F5-1F1E6", "unicode_alternates": [ ], "name": "panama", "shortname": ":flag_pa:", "category": "flags", "aliases": [ ":pa:", ":panama:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pa", "flag" ], "moji": "🇵🇦" }, "flag_pe": { "unicode": "1F1F5-1F1EA", "unicode_alternates": [ ], "name": "peru", "shortname": ":flag_pe:", "category": "flags", "aliases": [ ":pe:", ":peru:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pe", "flag" ], "moji": "🇵🇪" }, "flag_pf": { "unicode": "1F1F5-1F1EB", "unicode_alternates": [ ], "name": "french polynesia", "shortname": ":flag_pf:", "category": "flags", "aliases": [ ":pf:", ":french_polynesia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "polynésie française", "polynesie francaise", "pf", "flag" ], "moji": "🇵🇫" }, "flag_pg": { "unicode": "1F1F5-1F1EC", "unicode_alternates": [ ], "name": "papua new guinea", "shortname": ":flag_pg:", "category": "flags", "aliases": [ ":pg:", ":papua_new_guinea:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "papua niu gini", "pg", "flag" ], "moji": "🇵🇬" }, "flag_ph": { "unicode": "1F1F5-1F1ED", "unicode_alternates": [ ], "name": "the philippines", "shortname": ":flag_ph:", "category": "flags", "aliases": [ ":ph:", ":philippines:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pilipinas", "ph", "flag" ], "moji": "🇵🇭" }, "flag_pk": { "unicode": "1F1F5-1F1F0", "unicode_alternates": [ ], "name": "pakistan", "shortname": ":flag_pk:", "category": "flags", "aliases": [ ":pk:", ":pakistan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pk", "flag" ], "moji": "🇵🇰" }, "flag_pl": { "unicode": "1F1F5-1F1F1", "unicode_alternates": [ ], "name": "poland", "shortname": ":flag_pl:", "category": "flags", "aliases": [ ":pl:", ":poland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "polska", "pl", "flag" ], "moji": "🇵🇱" }, "flag_pm": { "unicode": "1F1F5-1F1F2", "unicode_alternates": [ ], "name": "saint pierre and miquelon", "shortname": ":flag_pm:", "category": "flags", "aliases": [ ":pm:", ":st_pierre_miquelon:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇵🇲" }, "flag_pn": { "unicode": "1F1F5-1F1F3", "unicode_alternates": [ ], "name": "pitcairn", "shortname": ":flag_pn:", "category": "flags", "aliases": [ ":pn:", ":pitcairn_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇵🇳" }, "flag_pr": { "unicode": "1F1F5-1F1F7", "unicode_alternates": [ ], "name": "puerto rico", "shortname": ":flag_pr:", "category": "flags", "aliases": [ ":pr:", ":puerto_rico:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pr", "flag" ], "moji": "🇵🇷" }, "flag_ps": { "unicode": "1F1F5-1F1F8", "unicode_alternates": [ ], "name": "palestinian authority", "shortname": ":flag_ps:", "category": "flags", "aliases": [ ":ps:", ":palestinian_territories:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ps", "flag" ], "moji": "🇵🇸" }, "flag_pt": { "unicode": "1F1F5-1F1F9", "unicode_alternates": [ ], "name": "portugal", "shortname": ":flag_pt:", "category": "flags", "aliases": [ ":pt:", ":portugal:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "pt", "flag" ], "moji": "🇵🇹" }, "flag_pw": { "unicode": "1F1F5-1F1FC", "unicode_alternates": [ ], "name": "palau", "shortname": ":flag_pw:", "category": "flags", "aliases": [ ":pw:", ":palau:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "belau", "pw", "flag" ], "moji": "🇵🇼" }, "flag_py": { "unicode": "1F1F5-1F1FE", "unicode_alternates": [ ], "name": "paraguay", "shortname": ":flag_py:", "category": "flags", "aliases": [ ":py:", ":paraguay:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "py", "flag" ], "moji": "🇵🇾" }, "flag_qa": { "unicode": "1F1F6-1F1E6", "unicode_alternates": [ ], "name": "qatar", "shortname": ":flag_qa:", "category": "flags", "aliases": [ ":qa:", ":qatar:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "dawlat qatar", "qa", "flag" ], "moji": "🇶🇦" }, "flag_re": { "unicode": "1F1F7-1F1EA", "unicode_alternates": [ ], "name": "réunion", "shortname": ":flag_re:", "category": "flags", "aliases": [ ":re:", ":reunion:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇷🇪" }, "flag_ro": { "unicode": "1F1F7-1F1F4", "unicode_alternates": [ ], "name": "romania", "shortname": ":flag_ro:", "category": "flags", "aliases": [ ":ro:", ":romania:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ro", "flag" ], "moji": "🇷🇴" }, "flag_rs": { "unicode": "1F1F7-1F1F8", "unicode_alternates": [ ], "name": "serbia", "shortname": ":flag_rs:", "category": "flags", "aliases": [ ":rs:", ":serbia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "srbija", "rs", "flag" ], "moji": "🇷🇸" }, "flag_ru": { "unicode": "1F1F7-1F1FA", "unicode_alternates": [ ], "name": "russia", "shortname": ":flag_ru:", "category": "flags", "aliases": [ ":ru:" ], "aliases_ascii": [ ], "keywords": [ "nation", "russian", "country", "ru", "flag" ], "moji": "🇷🇺" }, "flag_rw": { "unicode": "1F1F7-1F1FC", "unicode_alternates": [ ], "name": "rwanda", "shortname": ":flag_rw:", "category": "flags", "aliases": [ ":rw:", ":rwanda:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "rw", "flag" ], "moji": "🇷🇼" }, "flag_sa": { "unicode": "1F1F8-1F1E6", "unicode_alternates": [ ], "name": "saudi arabia", "shortname": ":flag_sa:", "category": "flags", "aliases": [ ":saudiarabia:", ":saudi:", ":saudi_arabia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al arabiyah as suudiyah", "sa", "flag" ], "moji": "🇸🇦" }, "flag_sb": { "unicode": "1F1F8-1F1E7", "unicode_alternates": [ ], "name": "the solomon islands", "shortname": ":flag_sb:", "category": "flags", "aliases": [ ":sb:", ":solomon_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sb", "flag" ], "moji": "🇸🇧" }, "flag_sc": { "unicode": "1F1F8-1F1E8", "unicode_alternates": [ ], "name": "the seychelles", "shortname": ":flag_sc:", "category": "flags", "aliases": [ ":sc:", ":seychelles:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "seychelles", "sc", "flag" ], "moji": "🇸🇨" }, "flag_sd": { "unicode": "1F1F8-1F1E9", "unicode_alternates": [ ], "name": "sudan", "shortname": ":flag_sd:", "category": "flags", "aliases": [ ":sd:", ":sudan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "as-sudan", "sd", "flag" ], "moji": "🇸🇩" }, "flag_se": { "unicode": "1F1F8-1F1EA", "unicode_alternates": [ ], "name": "sweden", "shortname": ":flag_se:", "category": "flags", "aliases": [ ":se:", ":sweden:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sverige", "se", "flag" ], "moji": "🇸🇪" }, "flag_sg": { "unicode": "1F1F8-1F1EC", "unicode_alternates": [ ], "name": "singapore", "shortname": ":flag_sg:", "category": "flags", "aliases": [ ":sg:", ":singapore:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sg", "flag" ], "moji": "🇸🇬" }, "flag_sh": { "unicode": "1F1F8-1F1ED", "unicode_alternates": [ ], "name": "saint helena", "shortname": ":flag_sh:", "category": "flags", "aliases": [ ":sh:", ":st_helena:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sh", "flag" ], "moji": "🇸🇭" }, "flag_si": { "unicode": "1F1F8-1F1EE", "unicode_alternates": [ ], "name": "slovenia", "shortname": ":flag_si:", "category": "flags", "aliases": [ ":si:", ":slovenia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "slovenija", "si", "flag" ], "moji": "🇸🇮" }, "flag_sj": { "unicode": "1F1F8-1F1EF", "unicode_alternates": [ ], "name": "svalbard and jan mayen", "shortname": ":flag_sj:", "category": "flags", "aliases": [ ":sj:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇸🇯" }, "flag_sk": { "unicode": "1F1F8-1F1F0", "unicode_alternates": [ ], "name": "slovakia", "shortname": ":flag_sk:", "category": "flags", "aliases": [ ":sk:", ":slovakia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sk", "flag" ], "moji": "🇸🇰" }, "flag_sl": { "unicode": "1F1F8-1F1F1", "unicode_alternates": [ ], "name": "sierra leone", "shortname": ":flag_sl:", "category": "flags", "aliases": [ ":sl:", ":sierra_leone:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sl", "flag" ], "moji": "🇸🇱" }, "flag_sm": { "unicode": "1F1F8-1F1F2", "unicode_alternates": [ ], "name": "san marino", "shortname": ":flag_sm:", "category": "flags", "aliases": [ ":sm:", ":san_marino:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sm", "flag" ], "moji": "🇸🇲" }, "flag_sn": { "unicode": "1F1F8-1F1F3", "unicode_alternates": [ ], "name": "senegal", "shortname": ":flag_sn:", "category": "flags", "aliases": [ ":sn:", ":senegal:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sn", "flag" ], "moji": "🇸🇳" }, "flag_so": { "unicode": "1F1F8-1F1F4", "unicode_alternates": [ ], "name": "somalia", "shortname": ":flag_so:", "category": "flags", "aliases": [ ":so:", ":somalia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "so", "flag" ], "moji": "🇸🇴" }, "flag_sr": { "unicode": "1F1F8-1F1F7", "unicode_alternates": [ ], "name": "suriname", "shortname": ":flag_sr:", "category": "flags", "aliases": [ ":sr:", ":suriname:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sr", "flag" ], "moji": "🇸🇷" }, "flag_ss": { "unicode": "1F1F8-1F1F8", "unicode_alternates": [ ], "name": "south sudan", "shortname": ":flag_ss:", "category": "flags", "aliases": [ ":ss:", ":south_sudan:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇸🇸" }, "flag_st": { "unicode": "1F1F8-1F1F9", "unicode_alternates": [ ], "name": "sao tome and principe", "shortname": ":flag_st:", "category": "flags", "aliases": [ ":st:", ":sao_tome_principe:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sao tome e principe", "st", "flag" ], "moji": "🇸🇹" }, "flag_sv": { "unicode": "1F1F8-1F1FB", "unicode_alternates": [ ], "name": "el salvador", "shortname": ":flag_sv:", "category": "flags", "aliases": [ ":sv:", ":el_salvador:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sv", "flag" ], "moji": "🇸🇻" }, "flag_sx": { "unicode": "1F1F8-1F1FD", "unicode_alternates": [ ], "name": "sint maarten", "shortname": ":flag_sx:", "category": "flags", "aliases": [ ":sx:", ":sint_maarten:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇸🇽" }, "flag_sy": { "unicode": "1F1F8-1F1FE", "unicode_alternates": [ ], "name": "syria", "shortname": ":flag_sy:", "category": "flags", "aliases": [ ":sy:", ":syria:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sy", "flag" ], "moji": "🇸🇾" }, "flag_sz": { "unicode": "1F1F8-1F1FF", "unicode_alternates": [ ], "name": "swaziland", "shortname": ":flag_sz:", "category": "flags", "aliases": [ ":sz:", ":swaziland:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "sz", "flag" ], "moji": "🇸🇿" }, "flag_ta": { "unicode": "1F1F9-1F1E6", "unicode_alternates": [ ], "name": "tristan da cunha", "shortname": ":flag_ta:", "category": "flags", "aliases": [ ":ta:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇹🇦" }, "flag_tc": { "unicode": "1F1F9-1F1E8", "unicode_alternates": [ ], "name": "turks and caicos islands", "shortname": ":flag_tc:", "category": "flags", "aliases": [ ":tc:", ":turks_caicos_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇹🇨" }, "flag_td": { "unicode": "1F1F9-1F1E9", "unicode_alternates": [ ], "name": "chad", "shortname": ":flag_td:", "category": "flags", "aliases": [ ":td:", ":chad:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tchad", "td", "flag" ], "moji": "🇹🇩" }, "flag_tf": { "unicode": "1F1F9-1F1EB", "unicode_alternates": [ ], "name": "french southern territories", "shortname": ":flag_tf:", "category": "flags", "aliases": [ ":tf:", ":french_southern_territories:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇹🇫" }, "flag_tg": { "unicode": "1F1F9-1F1EC", "unicode_alternates": [ ], "name": "togo", "shortname": ":flag_tg:", "category": "flags", "aliases": [ ":tg:", ":togo:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "republique togolaise", "tg", "flag" ], "moji": "🇹🇬" }, "flag_th": { "unicode": "1F1F9-1F1ED", "unicode_alternates": [ ], "name": "thailand", "shortname": ":flag_th:", "category": "flags", "aliases": [ ":th:", ":thailand:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "prathet thai", "th", "flag" ], "moji": "🇹🇭" }, "flag_tj": { "unicode": "1F1F9-1F1EF", "unicode_alternates": [ ], "name": "tajikistan", "shortname": ":flag_tj:", "category": "flags", "aliases": [ ":tj:", ":tajikistan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "jumhurii tojikiston", "tj", "flag" ], "moji": "🇹🇯" }, "flag_tk": { "unicode": "1F1F9-1F1F0", "unicode_alternates": [ ], "name": "tokelau", "shortname": ":flag_tk:", "category": "flags", "aliases": [ ":tk:", ":tokelau:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇹🇰" }, "flag_tl": { "unicode": "1F1F9-1F1F1", "unicode_alternates": [ ], "name": "east timor", "shortname": ":flag_tl:", "category": "flags", "aliases": [ ":tl:", ":timor_leste:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tl", "flag" ], "moji": "🇹🇱" }, "flag_tm": { "unicode": "1F1F9-1F1F2", "unicode_alternates": [ ], "name": "turkmenistan", "shortname": ":flag_tm:", "category": "flags", "aliases": [ ":turkmenistan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tm", "flag" ], "moji": "🇹🇲" }, "flag_tn": { "unicode": "1F1F9-1F1F3", "unicode_alternates": [ ], "name": "tunisia", "shortname": ":flag_tn:", "category": "flags", "aliases": [ ":tn:", ":tunisia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tunis", "tn", "flag" ], "moji": "🇹🇳" }, "flag_to": { "unicode": "1F1F9-1F1F4", "unicode_alternates": [ ], "name": "tonga", "shortname": ":flag_to:", "category": "flags", "aliases": [ ":to:", ":tonga:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "to", "flag" ], "moji": "🇹🇴" }, "flag_tr": { "unicode": "1F1F9-1F1F7", "unicode_alternates": [ ], "name": "turkey", "shortname": ":flag_tr:", "category": "flags", "aliases": [ ":tr:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "turkiye", "flag" ], "moji": "🇹🇷" }, "flag_tt": { "unicode": "1F1F9-1F1F9", "unicode_alternates": [ ], "name": "trinidad and tobago", "shortname": ":flag_tt:", "category": "flags", "aliases": [ ":tt:", ":trinidad_tobago:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tt", "flag" ], "moji": "🇹🇹" }, "flag_tv": { "unicode": "1F1F9-1F1FB", "unicode_alternates": [ ], "name": "tuvalu", "shortname": ":flag_tv:", "category": "flags", "aliases": [ ":tuvalu:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tv", "flag" ], "moji": "🇹🇻" }, "flag_tw": { "unicode": "1F1F9-1F1FC", "unicode_alternates": [ ], "name": "the republic of china", "shortname": ":flag_tw:", "category": "flags", "aliases": [ ":tw:", ":taiwan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "taiwan", "tw", "flag" ], "moji": "🇹🇼" }, "flag_tz": { "unicode": "1F1F9-1F1FF", "unicode_alternates": [ ], "name": "tanzania", "shortname": ":flag_tz:", "category": "flags", "aliases": [ ":tz:", ":tanzania:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "tz", "flag" ], "moji": "🇹🇿" }, "flag_ua": { "unicode": "1F1FA-1F1E6", "unicode_alternates": [ ], "name": "ukraine", "shortname": ":flag_ua:", "category": "flags", "aliases": [ ":ua:", ":ukraine:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ukrayina", "ua", "flag" ], "moji": "🇺🇦" }, "flag_ug": { "unicode": "1F1FA-1F1EC", "unicode_alternates": [ ], "name": "uganda", "shortname": ":flag_ug:", "category": "flags", "aliases": [ ":ug:", ":uganda:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ug", "flag" ], "moji": "🇺🇬" }, "flag_um": { "unicode": "1F1FA-1F1F2", "unicode_alternates": [ ], "name": "united states minor outlying islands", "shortname": ":flag_um:", "category": "flags", "aliases": [ ":um:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇺🇲" }, "flag_us": { "unicode": "1F1FA-1F1F8", "unicode_alternates": [ ], "name": "united states", "shortname": ":flag_us:", "category": "flags", "aliases": [ ":us:" ], "aliases_ascii": [ ], "keywords": [ "american", "country", "nation", "usa", "united states of america", "america", "old glory", "us", "flag" ], "moji": "🇺🇸" }, "flag_uy": { "unicode": "1F1FA-1F1FE", "unicode_alternates": [ ], "name": "uruguay", "shortname": ":flag_uy:", "category": "flags", "aliases": [ ":uy:", ":uruguay:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "uy", "flag" ], "moji": "🇺🇾" }, "flag_uz": { "unicode": "1F1FA-1F1FF", "unicode_alternates": [ ], "name": "uzbekistan", "shortname": ":flag_uz:", "category": "flags", "aliases": [ ":uz:", ":uzbekistan:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "uzbekiston respublikasi", "uz", "flag" ], "moji": "🇺🇿" }, "flag_va": { "unicode": "1F1FB-1F1E6", "unicode_alternates": [ ], "name": "the vatican city", "shortname": ":flag_va:", "category": "flags", "aliases": [ ":va:", ":vatican_city:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "va", "flag" ], "moji": "🇻🇦" }, "flag_vc": { "unicode": "1F1FB-1F1E8", "unicode_alternates": [ ], "name": "saint vincent and the grenadines", "shortname": ":flag_vc:", "category": "flags", "aliases": [ ":vc:", ":st_vincent_grenadines:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "vc", "flag" ], "moji": "🇻🇨" }, "flag_ve": { "unicode": "1F1FB-1F1EA", "unicode_alternates": [ ], "name": "venezuela", "shortname": ":flag_ve:", "category": "flags", "aliases": [ ":ve:", ":venezuela:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "ve", "flag" ], "moji": "🇻🇪" }, "flag_vg": { "unicode": "1F1FB-1F1EC", "unicode_alternates": [ ], "name": "british virgin islands", "shortname": ":flag_vg:", "category": "flags", "aliases": [ ":vg:", ":british_virgin_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇻🇬" }, "flag_vi": { "unicode": "1F1FB-1F1EE", "unicode_alternates": [ ], "name": "u.s. virgin islands", "shortname": ":flag_vi:", "category": "flags", "aliases": [ ":vi:", ":us_virgin_islands:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "vi", "flag" ], "moji": "🇻🇮" }, "flag_vn": { "unicode": "1F1FB-1F1F3", "unicode_alternates": [ ], "name": "vietnam", "shortname": ":flag_vn:", "category": "flags", "aliases": [ ":vn:", ":vietnam:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "viet nam", "vn", "flag" ], "moji": "🇻🇳" }, "flag_vu": { "unicode": "1F1FB-1F1FA", "unicode_alternates": [ ], "name": "vanuatu", "shortname": ":flag_vu:", "category": "flags", "aliases": [ ":vu:", ":vanuatu:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "vu", "flag" ], "moji": "🇻🇺" }, "flag_wf": { "unicode": "1F1FC-1F1EB", "unicode_alternates": [ ], "name": "wallis and futuna", "shortname": ":flag_wf:", "category": "flags", "aliases": [ ":wf:", ":wallis_futuna:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "wf", "flag" ], "moji": "🇼🇫" }, "flag_white": { "unicode": "1F3F3", "unicode_alternates": [ ], "name": "waving white flag", "shortname": ":flag_white:", "category": "objects", "aliases": [ ":waving_white_flag:" ], "aliases_ascii": [ ], "keywords": [ "symbol", "signal", "object" ], "moji": "🏳" }, "flag_ws": { "unicode": "1F1FC-1F1F8", "unicode_alternates": [ ], "name": "samoa", "shortname": ":flag_ws:", "category": "flags", "aliases": [ ":ws:", ":samoa:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "american samoa", "ws", "flag" ], "moji": "🇼🇸" }, "flag_xk": { "unicode": "1F1FD-1F1F0", "unicode_alternates": [ ], "name": "kosovo", "shortname": ":flag_xk:", "category": "flags", "aliases": [ ":xk:", ":kosovo:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "xk", "flag" ], "moji": "🇽🇰" }, "flag_ye": { "unicode": "1F1FE-1F1EA", "unicode_alternates": [ ], "name": "yemen", "shortname": ":flag_ye:", "category": "flags", "aliases": [ ":ye:", ":yemen:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "al yaman", "ye", "flag" ], "moji": "🇾🇪" }, "flag_yt": { "unicode": "1F1FE-1F1F9", "unicode_alternates": [ ], "name": "mayotte", "shortname": ":flag_yt:", "category": "flags", "aliases": [ ":yt:", ":mayotte:" ], "aliases_ascii": [ ], "keywords": [ "country", "flag" ], "moji": "🇾🇹" }, "flag_za": { "unicode": "1F1FF-1F1E6", "unicode_alternates": [ ], "name": "south africa", "shortname": ":flag_za:", "category": "flags", "aliases": [ ":za:", ":south_africa:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "flag" ], "moji": "🇿🇦" }, "flag_zm": { "unicode": "1F1FF-1F1F2", "unicode_alternates": [ ], "name": "zambia", "shortname": ":flag_zm:", "category": "flags", "aliases": [ ":zm:", ":zambia:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "zm", "flag" ], "moji": "🇿🇲" }, "flag_zw": { "unicode": "1F1FF-1F1FC", "unicode_alternates": [ ], "name": "zimbabwe", "shortname": ":flag_zw:", "category": "flags", "aliases": [ ":zw:", ":zimbabwe:" ], "aliases_ascii": [ ], "keywords": [ "country", "nation", "zw", "flag" ], "moji": "🇿🇼" }, "flags": { "unicode": "1F38F", "unicode_alternates": [ ], "name": "carp streamer", "shortname": ":flags:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "banner", "carp", "fish", "japanese", "koinobori", "children", "kids", "boys", "celebration", "happiness", "streamers", "holiday", "flags", "object", "japan" ], "moji": "🎏" }, "flashlight": { "unicode": "1F526", "unicode_alternates": [ ], "name": "electric torch", "shortname": ":flashlight:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "dark", "electronics", "object" ], "moji": "🔦" }, "fleur-de-lis": { "unicode": "269C", "unicode_alternates": [ ], "name": "fleur-de-lis", "shortname": ":fleur-de-lis:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "symbol", "object" ], "moji": "⚜" }, "floppy_disk": { "unicode": "1F4BE", "unicode_alternates": [ ], "name": "floppy disk", "shortname": ":floppy_disk:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "oldschool", "save", "technology", "floppy", "disk", "storage", "information", "computer", "drive", "megabyte", "electronics", "office" ], "moji": "💾" }, "flower_playing_cards": { "unicode": "1F3B4", "unicode_alternates": [ ], "name": "flower playing cards", "shortname": ":flower_playing_cards:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "playing", "card", "flower", "game", "august", "moon", "special", "object", "symbol" ], "moji": "🎴" }, "flushed": { "unicode": "1F633", "unicode_alternates": [ ], "name": "flushed face", "shortname": ":flushed:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":$", "=$" ], "keywords": [ "blush", "face", "flattered", "flush", "red", "pink", "cheeks", "shy", "smiley", "emotion", "omg" ], "moji": "😳" }, "fog": { "unicode": "1F32B", "unicode_alternates": [ ], "name": "fog", "shortname": ":fog:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "weather", "damp", "cloud", "hazy", "sky", "cold" ], "moji": "🌫" }, "foggy": { "unicode": "1F301", "unicode_alternates": [ ], "name": "foggy", "shortname": ":foggy:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mountain", "photo", "bridge", "weather", "fog", "foggy", "places", "building", "sky", "travel", "vacation" ], "moji": "🌁" }, "football": { "unicode": "1F3C8", "unicode_alternates": [ ], "name": "american football", "shortname": ":football:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "NFL", "balls", "sports", "football", "ball", "sport", "america", "american", "game" ], "moji": "🏈" }, "footprints": { "unicode": "1F463", "unicode_alternates": [ ], "name": "footprints", "shortname": ":footprints:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "feet" ], "moji": "👣" }, "fork_and_knife": { "unicode": "1F374", "unicode_alternates": [ ], "name": "fork and knife", "shortname": ":fork_and_knife:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cutlery", "kitchen", "fork", "knife", "restaurant", "meal", "food", "eat", "object", "weapon" ], "moji": "🍴" }, "fork_knife_plate": { "unicode": "1F37D", "unicode_alternates": [ ], "name": "fork and knife with plate", "shortname": ":fork_knife_plate:", "category": "food", "aliases": [ ":fork_and_knife_with_plate:", ":plate_with_cutlery:" ], "aliases_ascii": [ ], "keywords": [ "meal", "food", "breakfast", "lunch", "dinner", "utensils", "setting", "object" ], "moji": "🍽" }, "fountain": { "unicode": "26F2", "unicode_alternates": [ "26F2-FE0F" ], "name": "fountain", "shortname": ":fountain:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "photo", "travel", "vacation" ], "moji": "⛲" }, "four": { "moji": "4️⃣", "unicode": "0034-20E3", "unicode_alternates": [ "0034-FE0F-20E3" ], "name": "keycap digit four", "shortname": ":four:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "4", "blue-square", "numbers", "number", "math", "symbol" ] }, "four_leaf_clover": { "unicode": "1F340", "unicode_alternates": [ ], "name": "four leaf clover", "shortname": ":four_leaf_clover:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "lucky", "nature", "plant", "vegetable", "clover", "four", "leaf", "luck", "irish", "saint", "patrick", "green", "sol" ], "moji": "🍀" }, "fox": { "unicode": "1F98A", "unicode_alternates": [ ], "name": "fox face", "shortname": ":fox:", "category": "nature", "aliases": [ ":fox_face:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦊" }, "frame_photo": { "unicode": "1F5BC", "unicode_alternates": [ ], "name": "frame with picture", "shortname": ":frame_photo:", "category": "objects", "aliases": [ ":frame_with_picture:", ":framed_picture:" ], "aliases_ascii": [ ], "keywords": [ "photo", "travel", "vacation" ], "moji": "🖼" }, "free": { "unicode": "1F193", "unicode_alternates": [ ], "name": "squared free", "shortname": ":free:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "words", "symbol" ], "moji": "🆓" }, "french_bread": { "unicode": "1F956", "unicode_alternates": [ ], "name": "baguette bread", "shortname": ":french_bread:", "category": "food", "aliases": [ ":baguette_bread:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥖" }, "fried_shrimp": { "unicode": "1F364", "unicode_alternates": [ ], "name": "fried shrimp", "shortname": ":fried_shrimp:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "food", "shrimp", "fried", "seafood", "small", "fish" ], "moji": "🍤" }, "fries": { "unicode": "1F35F", "unicode_alternates": [ ], "name": "french fries", "shortname": ":fries:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chips", "food", "fries", "french", "potato", "fry", "russet", "idaho", "america" ], "moji": "🍟" }, "frog": { "unicode": "1F438", "unicode_alternates": [ ], "name": "frog face", "shortname": ":frog:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐸" }, "frowning": { "unicode": "1F626", "unicode_alternates": [ ], "name": "frowning face with open mouth", "shortname": ":frowning:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "aw", "face", "frown", "sad", "pout", "sulk", "glower", "smiley", "surprised", "emotion" ], "moji": "😦" }, "frowning2": { "unicode": "2639", "unicode_alternates": [ ], "name": "white frowning face", "shortname": ":frowning2:", "category": "people", "aliases": [ ":white_frowning_face:" ], "aliases_ascii": [ ], "keywords": [ "frown", "person", "sad", "smiley", "emotion" ], "moji": "☹" }, "fuelpump": { "unicode": "26FD", "unicode_alternates": [ "26FD-FE0F" ], "name": "fuel pump", "shortname": ":fuelpump:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gas station", "petroleum", "object", "gas pump" ], "moji": "⛽" }, "full_moon": { "unicode": "1F315", "unicode_alternates": [ ], "name": "full moon symbol", "shortname": ":full_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "yellow", "moon", "full", "sky", "night", "cheese", "phase", "monster", "spooky", "werewolves", "twilight", "space" ], "moji": "🌕" }, "full_moon_with_face": { "unicode": "1F31D", "unicode_alternates": [ ], "name": "full moon with face", "shortname": ":full_moon_with_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "moon", "full", "anthropomorphic", "face", "sky", "cheese", "phase", "spooky", "werewolves", "monsters", "space", "goodnight" ], "moji": "🌝" }, "game_die": { "unicode": "1F3B2", "unicode_alternates": [ ], "name": "game die", "shortname": ":game_die:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "dice", "game", "die", "craps", "gamble", "play", "object", "boys night" ], "moji": "🎲" }, "gear": { "unicode": "2699", "unicode_alternates": [ ], "name": "gear", "shortname": ":gear:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "object", "tool" ], "moji": "⚙" }, "gem": { "unicode": "1F48E", "unicode_alternates": [ ], "name": "gem stone", "shortname": ":gem:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue", "ruby", "object", "gem" ], "moji": "💎" }, "gay_pride_flag": { "unicode": "1F3F3-1F308", "unicode_alternates": [ ], "name": "gay_pride_flag", "shortname": ":gay_pride_flag:", "category": "flags", "aliases": [ ":rainbow_flag:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏳️‍🌈" }, "gemini": { "unicode": "264A", "unicode_alternates": [ "264A-FE0F" ], "name": "gemini", "shortname": ":gemini:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gemini", "twins", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♊" }, "ghost": { "unicode": "1F47B", "unicode_alternates": [ ], "name": "ghost", "shortname": ":ghost:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halloween", "holidays", "monster" ], "moji": "👻" }, "gift": { "unicode": "1F381", "unicode_alternates": [ ], "name": "wrapped present", "shortname": ":gift:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "birthday", "christmas", "present", "xmas", "gift", "wrap", "package", "wedding", "object", "holidays", "parties" ], "moji": "🎁" }, "gift_heart": { "unicode": "1F49D", "unicode_alternates": [ ], "name": "heart with ribbon", "shortname": ":gift_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "love", "valentines", "symbol", "condolence" ], "moji": "💝" }, "girl": { "unicode": "1F467", "unicode_alternates": [ ], "name": "girl", "shortname": ":girl:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "woman", "people", "women", "baby", "diversity" ], "moji": "👧" }, "girl_tone1": { "unicode": "1F467-1F3FB", "unicode_alternates": [ ], "name": "girl tone 1", "shortname": ":girl_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "kid", "child" ], "moji": "👧🏻" }, "girl_tone2": { "unicode": "1F467-1F3FC", "unicode_alternates": [ ], "name": "girl tone 2", "shortname": ":girl_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "kid", "child" ], "moji": "👧🏼" }, "girl_tone3": { "unicode": "1F467-1F3FD", "unicode_alternates": [ ], "name": "girl tone 3", "shortname": ":girl_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "kid", "child" ], "moji": "👧🏽" }, "girl_tone4": { "unicode": "1F467-1F3FE", "unicode_alternates": [ ], "name": "girl tone 4", "shortname": ":girl_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "kid", "child" ], "moji": "👧🏾" }, "girl_tone5": { "unicode": "1F467-1F3FF", "unicode_alternates": [ ], "name": "girl tone 5", "shortname": ":girl_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "kid", "child" ], "moji": "👧🏿" }, "globe_with_meridians": { "unicode": "1F310", "unicode_alternates": [ ], "name": "globe with meridians", "shortname": ":globe_with_meridians:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "earth", "international", "world", "meridian", "globe", "space", "planet", "home", "symbol" ], "moji": "🌐" }, "goal": { "unicode": "1F945", "unicode_alternates": [ ], "name": "goal net", "shortname": ":goal:", "category": "activity", "aliases": [ ":goal_net:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥅" }, "goat": { "unicode": "1F410", "unicode_alternates": [ ], "name": "goat", "shortname": ":goat:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "goat", "sheep", "kid", "billy", "livestock" ], "moji": "🐐" }, "golf": { "unicode": "26F3", "unicode_alternates": [ "26F3-FE0F" ], "name": "flag in hole", "shortname": ":golf:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "business", "sports", "game", "ball", "vacation", "sport", "golf" ], "moji": "⛳" }, "golfer": { "unicode": "1F3CC", "unicode_alternates": [ ], "name": "golfer", "shortname": ":golfer:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "par", "birdie", "eagle", "mulligan", "men", "game", "ball", "vacation", "golf" ], "moji": "🏌" }, "gorilla": { "unicode": "1F98D", "unicode_alternates": [ ], "name": "gorilla", "shortname": ":gorilla:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦍" }, "grapes": { "unicode": "1F347", "unicode_alternates": [ ], "name": "grapes", "shortname": ":grapes:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "grapes", "wine", "vinegar", "cluster", "vine" ], "moji": "🍇" }, "green_apple": { "unicode": "1F34F", "unicode_alternates": [ ], "name": "green apple", "shortname": ":green_apple:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fruit", "nature", "apple", "green", "pie", "granny", "smith", "core", "food" ], "moji": "🍏" }, "green_book": { "unicode": "1F4D7", "unicode_alternates": [ ], "name": "green book", "shortname": ":green_book:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "knowledge", "library", "read", "object", "office", "book" ], "moji": "📗" }, "green_heart": { "unicode": "1F49A", "unicode_alternates": [ ], "name": "green heart", "shortname": ":green_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "green", "heart", "nature", "rebirth", "reborn", "jealous", "clingy", "envious", "possessive", "symbol" ], "moji": "💚" }, "grey_exclamation": { "unicode": "2755", "unicode_alternates": [ ], "name": "white exclamation mark ornament", "shortname": ":grey_exclamation:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "surprise", "symbol", "punctuation" ], "moji": "❕" }, "grey_question": { "unicode": "2754", "unicode_alternates": [ ], "name": "white question mark ornament", "shortname": ":grey_question:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "doubts", "symbol", "punctuation" ], "moji": "❔" }, "grimacing": { "unicode": "1F62C", "unicode_alternates": [ ], "name": "grimacing face", "shortname": ":grimacing:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "grimace", "teeth", "disapprove", "pain", "silly", "smiley", "emotion", "selfie" ], "moji": "😬" }, "grin": { "unicode": "1F601", "unicode_alternates": [ ], "name": "grinning face with smiling eyes", "shortname": ":grin:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "happy", "joy", "smile", "grin", "grinning", "smiling", "smiley", "silly", "emotion", "good", "selfie" ], "moji": "😁" }, "grinning": { "unicode": "1F600", "unicode_alternates": [ ], "name": "grinning face", "shortname": ":grinning:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "happy", "joy", "smile", "grin", "grinning", "smiling", "smiley", "emotion" ], "moji": "😀" }, "guardsman": { "unicode": "1F482", "unicode_alternates": [ ], "name": "guardsman", "shortname": ":guardsman:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guardsman", "guard", "bearskin", "hat", "queen", "ceremonial", "military", "people", "men", "diversity", "job" ], "moji": "💂" }, "guardsman_tone1": { "unicode": "1F482-1F3FB", "unicode_alternates": [ ], "name": "guardsman tone 1", "shortname": ":guardsman_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏻" }, "guardsman_tone2": { "unicode": "1F482-1F3FC", "unicode_alternates": [ ], "name": "guardsman tone 2", "shortname": ":guardsman_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏼" }, "guardsman_tone3": { "unicode": "1F482-1F3FD", "unicode_alternates": [ ], "name": "guardsman tone 3", "shortname": ":guardsman_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏽" }, "guardsman_tone4": { "unicode": "1F482-1F3FE", "unicode_alternates": [ ], "name": "guardsman tone 4", "shortname": ":guardsman_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏾" }, "guardsman_tone5": { "unicode": "1F482-1F3FF", "unicode_alternates": [ ], "name": "guardsman tone 5", "shortname": ":guardsman_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "british", "gb", "male", "man", "uk", "guard", "bearskin", "hat", "queen", "ceremonial", "military" ], "moji": "💂🏿" }, "guitar": { "unicode": "1F3B8", "unicode_alternates": [ ], "name": "guitar", "shortname": ":guitar:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "instrument", "music", "guitar", "string", "jam", "rock", "acoustic", "electric", "instruments" ], "moji": "🎸" }, "gun": { "unicode": "1F52B", "unicode_alternates": [ ], "name": "pistol", "shortname": ":gun:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "violence", "weapon", "object", "dead", "gun", "sarcastic" ], "moji": "🔫" }, "haircut": { "unicode": "1F487", "unicode_alternates": [ ], "name": "haircut", "shortname": ":haircut:", "category": "people", "aliases": [ ":haircut_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "people", "women", "diversity" ], "moji": "💇" }, "haircut_tone1": { "unicode": "1F487-1F3FB", "unicode_alternates": [ ], "name": "haircut tone 1", "shortname": ":haircut_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏻" }, "haircut_tone2": { "unicode": "1F487-1F3FC", "unicode_alternates": [ ], "name": "haircut tone 2", "shortname": ":haircut_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏼" }, "haircut_tone3": { "unicode": "1F487-1F3FD", "unicode_alternates": [ ], "name": "haircut tone 3", "shortname": ":haircut_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏽" }, "haircut_tone4": { "unicode": "1F487-1F3FE", "unicode_alternates": [ ], "name": "haircut tone 4", "shortname": ":haircut_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏾" }, "haircut_tone5": { "unicode": "1F487-1F3FF", "unicode_alternates": [ ], "name": "haircut tone 5", "shortname": ":haircut_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💇🏿" }, "hamburger": { "unicode": "1F354", "unicode_alternates": [ ], "name": "hamburger", "shortname": ":hamburger:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "meat", "hamburger", "burger", "cow", "beef", "america" ], "moji": "🍔" }, "hammer": { "unicode": "1F528", "unicode_alternates": [ ], "name": "hammer", "shortname": ":hammer:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "done", "judge", "law", "ruling", "tools", "verdict", "object", "tool", "weapon" ], "moji": "🔨" }, "hammer_pick": { "unicode": "2692", "unicode_alternates": [ ], "name": "hammer and pick", "shortname": ":hammer_pick:", "category": "objects", "aliases": [ ":hammer_and_pick:" ], "aliases_ascii": [ ], "keywords": [ "object", "tool", "weapon" ], "moji": "⚒" }, "hamster": { "unicode": "1F439", "unicode_alternates": [ ], "name": "hamster face", "shortname": ":hamster:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature" ], "moji": "🐹" }, "hand_splayed": { "unicode": "1F590", "unicode_alternates": [ ], "name": "raised hand with fingers splayed", "shortname": ":hand_splayed:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt", "body", "hands", "diversity" ], "moji": "🖐" }, "hand_splayed_tone1": { "unicode": "1F590-1F3FB", "unicode_alternates": [ ], "name": "raised hand with fingers splayed tone 1", "shortname": ":hand_splayed_tone1:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone1:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏻" }, "hand_splayed_tone2": { "unicode": "1F590-1F3FC", "unicode_alternates": [ ], "name": "raised hand with fingers splayed tone 2", "shortname": ":hand_splayed_tone2:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone2:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏼" }, "hand_splayed_tone3": { "unicode": "1F590-1F3FD", "unicode_alternates": [ ], "name": "raised hand with fingers splayed tone 3", "shortname": ":hand_splayed_tone3:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone3:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏽" }, "hand_splayed_tone4": { "unicode": "1F590-1F3FE", "unicode_alternates": [ ], "name": "raised hand with fingers splayed tone 4", "shortname": ":hand_splayed_tone4:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone4:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏾" }, "hand_splayed_tone5": { "unicode": "1F590-1F3FF", "unicode_alternates": [ ], "name": "raised hand with fingers splayed tone 5", "shortname": ":hand_splayed_tone5:", "category": "people", "aliases": [ ":raised_hand_with_fingers_splayed_tone5:" ], "aliases_ascii": [ ], "keywords": [ "hi", "five", "stop", "halt" ], "moji": "🖐🏿" }, "handbag": { "unicode": "1F45C", "unicode_alternates": [ ], "name": "handbag", "shortname": ":handbag:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "accessory", "bag", "fashion", "women", "vacation" ], "moji": "👜" }, "handball": { "unicode": "1F93E", "unicode_alternates": [ ], "name": "handball", "shortname": ":handball:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾" }, "handball_tone1": { "unicode": "1F93E-1F3FB", "unicode_alternates": [ ], "name": "handball tone 1", "shortname": ":handball_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾🏻" }, "handball_tone2": { "unicode": "1F93E-1F3FC", "unicode_alternates": [ ], "name": "handball tone 2", "shortname": ":handball_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾🏼" }, "handball_tone3": { "unicode": "1F93E-1F3FD", "unicode_alternates": [ ], "name": "handball tone 3", "shortname": ":handball_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾🏽" }, "handball_tone4": { "unicode": "1F93E-1F3FE", "unicode_alternates": [ ], "name": "handball tone 4", "shortname": ":handball_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾🏾" }, "handball_tone5": { "unicode": "1F93E-1F3FF", "unicode_alternates": [ ], "name": "handball tone 5", "shortname": ":handball_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤾🏿" }, "handshake": { "unicode": "1F91D", "unicode_alternates": [ ], "name": "handshake", "shortname": ":handshake:", "category": "people", "aliases": [ ":shaking_hands:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤝" }, "hash": { "moji": "#⃣", "unicode": "0023-20E3", "unicode_alternates": [ "0023-FE0F-20E3" ], "name": "number sign", "shortname": ":hash:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "symbol", "number" ] }, "hatched_chick": { "unicode": "1F425", "unicode_alternates": [ ], "name": "front-facing baby chick", "shortname": ":hatched_chick:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "baby", "chicken", "chick", "bird", "young", "woman", "cute", "animal" ], "moji": "🐥" }, "hatching_chick": { "unicode": "1F423", "unicode_alternates": [ ], "name": "hatching chick", "shortname": ":hatching_chick:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "born", "chicken", "egg", "chick", "baby", "bird", "young", "woman", "cute", "animal" ], "moji": "🐣" }, "head_bandage": { "unicode": "1F915", "unicode_alternates": [ ], "name": "face with head-bandage", "shortname": ":head_bandage:", "category": "people", "aliases": [ ":face_with_head_bandage:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "health", "sick", "emotion" ], "moji": "🤕" }, "headphones": { "unicode": "1F3A7", "unicode_alternates": [ ], "name": "headphone", "shortname": ":headphones:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gadgets", "music", "score", "headphone", "sound", "ears", "beats", "buds", "audio", "listen", "instruments" ], "moji": "🎧" }, "hear_no_evil": { "unicode": "1F649", "unicode_alternates": [ ], "name": "hear-no-evil monkey", "shortname": ":hear_no_evil:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "monkey", "ears", "hear", "sound", "kikazaru" ], "moji": "🙉" }, "heart": { "moji": "❤", "unicode": "2764", "unicode_alternates": [ "2764-FE0F" ], "name": "heavy black heart", "shortname": ":heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ "<3" ], "keywords": [ "like", "love", "red", "pink", "black", "heart", "passion", "romance", "intense", "desire", "death", "evil", "cold", "valentines", "symbol", "parties" ] }, "heart_decoration": { "unicode": "1F49F", "unicode_alternates": [ ], "name": "heart decoration", "shortname": ":heart_decoration:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "like", "love", "purple-square", "symbol" ], "moji": "💟" }, "heart_exclamation": { "unicode": "2763", "unicode_alternates": [ ], "name": "heavy heart exclamation mark ornament", "shortname": ":heart_exclamation:", "category": "symbols", "aliases": [ ":heavy_heart_exclamation_mark_ornament:" ], "aliases_ascii": [ ], "keywords": [ "emotion", "punctuation", "symbol", "love" ], "moji": "❣" }, "heart_eyes": { "unicode": "1F60D", "unicode_alternates": [ ], "name": "smiling face with heart-shaped eyes", "shortname": ":heart_eyes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "crush", "face", "infatuation", "like", "love", "valentines", "smiling", "heart", "lovestruck", "flirt", "smile", "heart-shaped", "happy", "smiley", "sex", "heart eyes", "emotion", "beautiful" ], "moji": "😍" }, "heart_eyes_cat": { "unicode": "1F63B", "unicode_alternates": [ ], "name": "smiling cat face with heart-shaped eyes", "shortname": ":heart_eyes_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "animal", "cats", "like", "love", "valentines", "lovestruck", "heart", "heart eyes", "cat", "beautiful" ], "moji": "😻" }, "heartbeat": { "unicode": "1F493", "unicode_alternates": [ ], "name": "beating heart", "shortname": ":heartbeat:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "symbol" ], "moji": "💓" }, "heartpulse": { "unicode": "1F497", "unicode_alternates": [ ], "name": "growing heart", "shortname": ":heartpulse:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "symbol" ], "moji": "💗" }, "hearts": { "unicode": "2665", "unicode_alternates": [ "2665-FE0F" ], "name": "black heart suit", "shortname": ":hearts:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cards", "poker", "love", "symbol", "game" ], "moji": "♥" }, "heavy_check_mark": { "unicode": "2714", "unicode_alternates": [ "2714-FE0F" ], "name": "heavy check mark", "shortname": ":heavy_check_mark:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nike", "ok", "symbol" ], "moji": "✔" }, "heavy_division_sign": { "unicode": "2797", "unicode_alternates": [ ], "name": "heavy division sign", "shortname": ":heavy_division_sign:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "calculation", "divide", "math", "symbol" ], "moji": "➗" }, "heavy_dollar_sign": { "unicode": "1F4B2", "unicode_alternates": [ ], "name": "heavy dollar sign", "shortname": ":heavy_dollar_sign:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "currency", "money", "payment", "dollar", "cash", "sale", "purchase", "value", "math", "symbol" ], "moji": "💲" }, "heavy_minus_sign": { "unicode": "2796", "unicode_alternates": [ ], "name": "heavy minus sign", "shortname": ":heavy_minus_sign:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "calculation", "math", "symbol" ], "moji": "➖" }, "heavy_multiplication_x": { "unicode": "2716", "unicode_alternates": [ "2716-FE0F" ], "name": "heavy multiplication x", "shortname": ":heavy_multiplication_x:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "calculation", "math", "symbol" ], "moji": "✖" }, "heavy_plus_sign": { "unicode": "2795", "unicode_alternates": [ ], "name": "heavy plus sign", "shortname": ":heavy_plus_sign:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "calculation", "math", "symbol" ], "moji": "➕" }, "helicopter": { "unicode": "1F681", "unicode_alternates": [ ], "name": "helicopter", "shortname": ":helicopter:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "helicopter", "helo", "gyro", "gyrocopter", "plane", "travel", "fly" ], "moji": "🚁" }, "helmet_with_cross": { "unicode": "26D1", "unicode_alternates": [ ], "name": "helmet with white cross", "shortname": ":helmet_with_cross:", "category": "people", "aliases": [ ":helmet_with_white_cross:", ":rescue_worker_helmet:" ], "aliases_ascii": [ ], "keywords": [ "aid", "face", "hat", "person", "object", "accessories", "job" ], "moji": "⛑" }, "herb": { "unicode": "1F33F", "unicode_alternates": [ ], "name": "herb", "shortname": ":herb:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "grass", "lawn", "medicine", "plant", "vegetable", "weed", "herb", "spice", "cook", "cooking", "nature", "leaf" ], "moji": "🌿" }, "hibiscus": { "unicode": "1F33A", "unicode_alternates": [ ], "name": "hibiscus", "shortname": ":hibiscus:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flowers", "plant", "vegetable", "hibiscus", "flower", "warm", "nature", "tropical" ], "moji": "🌺" }, "high_brightness": { "unicode": "1F506", "unicode_alternates": [ ], "name": "high brightness symbol", "shortname": ":high_brightness:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "light", "summer", "sun", "symbol" ], "moji": "🔆" }, "high_heel": { "unicode": "1F460", "unicode_alternates": [ ], "name": "high-heeled shoe", "shortname": ":high_heel:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "female", "shoes", "women", "shoe", "sexy", "accessories", "girls night" ], "moji": "👠" }, "hockey": { "unicode": "1F3D2", "unicode_alternates": [ ], "name": "ice hockey stick and puck", "shortname": ":hockey:", "category": "activity", "aliases": [ ":ice_hockey:" ], "aliases_ascii": [ ], "keywords": [ "game", "sport", "hockey" ], "moji": "🏒" }, "hole": { "unicode": "1F573", "unicode_alternates": [ ], "name": "hole", "shortname": ":hole:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pit", "well", "object" ], "moji": "🕳" }, "homes": { "unicode": "1F3D8", "unicode_alternates": [ ], "name": "house buildings", "shortname": ":homes:", "category": "travel", "aliases": [ ":house_buildings:", ":houses:" ], "aliases_ascii": [ ], "keywords": [ "home", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "places", "building", "house" ], "moji": "🏘" }, "honey_pot": { "unicode": "1F36F", "unicode_alternates": [ ], "name": "honey pot", "shortname": ":honey_pot:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bees", "sweet", "honey", "pot", "pooh", "bear", "food", "vagina" ], "moji": "🍯" }, "horse": { "unicode": "1F434", "unicode_alternates": [ ], "name": "horse face", "shortname": ":horse:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "brown", "wildlife" ], "moji": "🐴" }, "horse_racing": { "unicode": "1F3C7", "unicode_alternates": [ ], "name": "horse racing", "shortname": ":horse_racing:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "horse", "race", "racing", "jockey", "triple crown", "men", "sport", "horse racing" ], "moji": "🏇" }, "horse_racing_tone1": { "unicode": "1F3C7-1F3FB", "unicode_alternates": [ ], "name": "horse racing tone 1", "shortname": ":horse_racing_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏻" }, "horse_racing_tone2": { "unicode": "1F3C7-1F3FC", "unicode_alternates": [ ], "name": "horse racing tone 2", "shortname": ":horse_racing_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏼" }, "horse_racing_tone3": { "unicode": "1F3C7-1F3FD", "unicode_alternates": [ ], "name": "horse racing tone 3", "shortname": ":horse_racing_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏽" }, "horse_racing_tone4": { "unicode": "1F3C7-1F3FE", "unicode_alternates": [ ], "name": "horse racing tone 4", "shortname": ":horse_racing_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏾" }, "horse_racing_tone5": { "unicode": "1F3C7-1F3FF", "unicode_alternates": [ ], "name": "horse racing tone 5", "shortname": ":horse_racing_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "betting", "competition", "race", "jockey", "triple crown" ], "moji": "🏇🏿" }, "hospital": { "unicode": "1F3E5", "unicode_alternates": [ ], "name": "hospital", "shortname": ":hospital:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "doctor", "health", "surgery", "places", "911" ], "moji": "🏥" }, "hot_pepper": { "unicode": "1F336", "unicode_alternates": [ ], "name": "hot pepper", "shortname": ":hot_pepper:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "nature", "spicy", "chili", "cayenne", "habanero", "jalapeno", "vegetables" ], "moji": "🌶" }, "hotdog": { "unicode": "1F32D", "unicode_alternates": [ ], "name": "hot dog", "shortname": ":hotdog:", "category": "food", "aliases": [ ":hot_dog:" ], "aliases_ascii": [ ], "keywords": [ "america", "food" ], "moji": "🌭" }, "hotel": { "unicode": "1F3E8", "unicode_alternates": [ ], "name": "hotel", "shortname": ":hotel:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accommodation", "building", "checkin", "whotel", "hotel", "motel", "holiday inn", "hospital", "places", "vacation" ], "moji": "🏨" }, "hotsprings": { "unicode": "2668", "unicode_alternates": [ "2668-FE0F" ], "name": "hot springs", "shortname": ":hotsprings:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bath", "relax", "warm", "symbol" ], "moji": "♨" }, "hourglass": { "unicode": "231B", "unicode_alternates": [ "231B-FE0F" ], "name": "hourglass", "shortname": ":hourglass:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clock", "oldschool", "time", "object" ], "moji": "⌛" }, "hourglass_flowing_sand": { "unicode": "23F3", "unicode_alternates": [ ], "name": "hourglass with flowing sand", "shortname": ":hourglass_flowing_sand:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "countdown", "oldschool", "time", "object" ], "moji": "⏳" }, "house": { "unicode": "1F3E0", "unicode_alternates": [ ], "name": "house building", "shortname": ":house:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "home", "house", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "places" ], "moji": "🏠" }, "house_abandoned": { "unicode": "1F3DA", "unicode_alternates": [ ], "name": "derelict house building", "shortname": ":house_abandoned:", "category": "travel", "aliases": [ ":derelict_house_building:", ":derelict_house:" ], "aliases_ascii": [ ], "keywords": [ "home", "residence", "dwelling", "mansion", "bungalow", "ranch", "craftsman", "boarded", "abandoned", "vacant", "run down", "shoddy", "places", "building", "house" ], "moji": "🏚" }, "house_with_garden": { "unicode": "1F3E1", "unicode_alternates": [ ], "name": "house with garden", "shortname": ":house_with_garden:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "home", "nature", "plant", "places", "building", "house" ], "moji": "🏡" }, "hugging": { "unicode": "1F917", "unicode_alternates": [ ], "name": "hugging face", "shortname": ":hugging:", "category": "people", "aliases": [ ":hugging_face:", ":hugs:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "hug", "thank you" ], "moji": "🤗" }, "hushed": { "unicode": "1F62F", "unicode_alternates": [ ], "name": "hushed face", "shortname": ":hushed:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "woo", "quiet", "hush", "whisper", "silent", "smiley", "surprised", "wow" ], "moji": "😯" }, "ice_cream": { "unicode": "1F368", "unicode_alternates": [ ], "name": "ice cream", "shortname": ":ice_cream:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "desert", "food", "hot", "icecream", "ice", "cream", "dairy", "dessert", "cold", "soft", "serve", "cone", "waffle" ], "moji": "🍨" }, "ice_skate": { "unicode": "26F8", "unicode_alternates": [ ], "name": "ice skate", "shortname": ":ice_skate:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "place", "sport", "travel", "cold", "ice skating" ], "moji": "⛸" }, "icecream": { "unicode": "1F366", "unicode_alternates": [ ], "name": "soft ice cream", "shortname": ":icecream:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "desert", "food", "hot", "icecream", "ice", "cream", "dairy", "dessert", "cold", "soft", "serve", "cone", "yogurt" ], "moji": "🍦" }, "id": { "unicode": "1F194", "unicode_alternates": [ ], "name": "squared id", "shortname": ":id:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "purple-square", "identification", "identity", "symbol", "word" ], "moji": "🆔" }, "ideograph_advantage": { "unicode": "1F250", "unicode_alternates": [ ], "name": "circled ideograph advantage", "shortname": ":ideograph_advantage:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "get", "kanji", "obtain", "japan", "symbol" ], "moji": "🉐" }, "imp": { "unicode": "1F47F", "unicode_alternates": [ ], "name": "imp", "shortname": ":imp:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "angry", "devil", "evil", "horns", "cute", "smiley", "monster", "wth" ], "moji": "👿" }, "inbox_tray": { "unicode": "1F4E5", "unicode_alternates": [ ], "name": "inbox tray", "shortname": ":inbox_tray:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "email", "work", "office" ], "moji": "📥" }, "incoming_envelope": { "unicode": "1F4E8", "unicode_alternates": [ ], "name": "incoming envelope", "shortname": ":incoming_envelope:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "email", "inbox", "object" ], "moji": "📨" }, "information_desk_person": { "unicode": "1F481", "unicode_alternates": [ ], "name": "information desk person", "shortname": ":information_desk_person:", "category": "people", "aliases": [ ":tipping_hand_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "information", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky", "people", "women", "diversity" ], "moji": "💁" }, "information_desk_person_tone1": { "unicode": "1F481-1F3FB", "unicode_alternates": [ ], "name": "information desk person tone 1", "shortname": ":information_desk_person_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏻" }, "information_desk_person_tone2": { "unicode": "1F481-1F3FC", "unicode_alternates": [ ], "name": "information desk person tone 2", "shortname": ":information_desk_person_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏼" }, "information_desk_person_tone3": { "unicode": "1F481-1F3FD", "unicode_alternates": [ ], "name": "information desk person tone 3", "shortname": ":information_desk_person_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏽" }, "information_desk_person_tone4": { "unicode": "1F481-1F3FE", "unicode_alternates": [ ], "name": "information desk person tone 4", "shortname": ":information_desk_person_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏾" }, "information_desk_person_tone5": { "unicode": "1F481-1F3FF", "unicode_alternates": [ ], "name": "information desk person tone 5", "shortname": ":information_desk_person_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "woman", "help", "question", "answer", "sassy", "unimpressed", "attitude", "snarky" ], "moji": "💁🏿" }, "information_source": { "unicode": "2139", "unicode_alternates": [ "2139-FE0F" ], "name": "information source", "shortname": ":information_source:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "blue-square", "letter", "symbol" ], "moji": "ℹ" }, "innocent": { "unicode": "1F607", "unicode_alternates": [ ], "name": "smiling face with halo", "shortname": ":innocent:", "category": "people", "aliases": [ ], "aliases_ascii": [ "O:-)", "0:-3", "0:3", "0:-)", "0:)", "0;^)", "O:)", "O;-)", "O=)", "0;-)", "O:-3", "O:3" ], "keywords": [ "angel", "face", "halo", "innocent", "ring", "circle", "heaven", "smiley", "emotion" ], "moji": "😇" }, "interrobang": { "unicode": "2049", "unicode_alternates": [ "2049-FE0F" ], "name": "exclamation question mark", "shortname": ":interrobang:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "punctuation", "surprise", "wat", "symbol" ], "moji": "⁉" }, "iphone": { "unicode": "1F4F1", "unicode_alternates": [ ], "name": "mobile phone", "shortname": ":iphone:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "apple", "dial", "gadgets", "technology", "electronics", "phone", "selfie" ], "moji": "📱" }, "island": { "unicode": "1F3DD", "unicode_alternates": [ ], "name": "desert island", "shortname": ":island:", "category": "travel", "aliases": [ ":desert_island:" ], "aliases_ascii": [ ], "keywords": [ "land", "solitude", "alone", "places", "travel", "vacation", "tropical", "beach", "swim" ], "moji": "🏝" }, "izakaya_lantern": { "unicode": "1F3EE", "unicode_alternates": [ ], "name": "izakaya lantern", "shortname": ":izakaya_lantern:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "light", "izakaya", "lantern", "stay", "drink", "alcohol", "bar", "sake", "restaurant", "object", "japan" ], "moji": "🏮" }, "jack_o_lantern": { "unicode": "1F383", "unicode_alternates": [ ], "name": "jack-o-lantern", "shortname": ":jack_o_lantern:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "halloween", "jack-o-lantern", "pumpkin", "holiday", "carve", "autumn", "fall", "october", "saints", "costume", "spooky", "horror", "scary", "scared", "dead", "holidays" ], "moji": "🎃" }, "japan": { "unicode": "1F5FE", "unicode_alternates": [ ], "name": "silhouette of japan", "shortname": ":japan:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nation", "places", "travel", "map", "vacation", "tropical" ], "moji": "🗾" }, "japanese_castle": { "unicode": "1F3EF", "unicode_alternates": [ ], "name": "japanese castle", "shortname": ":japanese_castle:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "photo", "castle", "japanese", "residence", "royalty", "fort", "fortified", "fortress", "places", "travel", "vacation" ], "moji": "🏯" }, "japanese_goblin": { "unicode": "1F47A", "unicode_alternates": [ ], "name": "japanese goblin", "shortname": ":japanese_goblin:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "evil", "mask", "red", "japanese", "tengu", "supernatural", "avian", "demon", "goblin", "theater", "nose", "frown", "mustache", "anger", "frustration", "angry", "monster" ], "moji": "👺" }, "japanese_ogre": { "unicode": "1F479", "unicode_alternates": [ ], "name": "japanese ogre", "shortname": ":japanese_ogre:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "monster", "japanese", "oni", "demon", "troll", "ogre", "folklore", "devil", "mask", "theater", "horns", "teeth" ], "moji": "👹" }, "jeans": { "unicode": "1F456", "unicode_alternates": [ ], "name": "jeans", "shortname": ":jeans:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "shopping", "jeans", "pants", "blue", "denim", "levi's", "levi", "designer", "work", "skinny" ], "moji": "👖" }, "joy": { "unicode": "1F602", "unicode_alternates": [ ], "name": "face with tears of joy", "shortname": ":joy:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":')", ":'-)" ], "keywords": [ "cry", "face", "haha", "happy", "tears", "joy", "weep", "silly", "smiley", "laugh", "emotion", "sarcastic" ], "moji": "😂" }, "joy_cat": { "unicode": "1F639", "unicode_alternates": [ ], "name": "cat face with tears of joy", "shortname": ":joy_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "haha", "happy", "tears", "cry", "joy", "silly", "laugh", "cat", "sarcastic" ], "moji": "😹" }, "joystick": { "unicode": "1F579", "unicode_alternates": [ ], "name": "joystick", "shortname": ":joystick:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "games", "atari", "controller", "electronics", "game", "boys night" ], "moji": "🕹" }, "juggling": { "unicode": "1F939", "unicode_alternates": [ ], "name": "juggling", "shortname": ":juggling:", "category": "activity", "aliases": [ ":juggler:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹" }, "juggling_tone1": { "unicode": "1F939-1F3FB", "unicode_alternates": [ ], "name": "juggling tone 1", "shortname": ":juggling_tone1:", "category": "activity", "aliases": [ ":juggler_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹🏻" }, "juggling_tone2": { "unicode": "1F939-1F3FC", "unicode_alternates": [ ], "name": "juggling tone 2", "shortname": ":juggling_tone2:", "category": "activity", "aliases": [ ":juggler_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹🏼" }, "juggling_tone3": { "unicode": "1F939-1F3FD", "unicode_alternates": [ ], "name": "juggling tone 3", "shortname": ":juggling_tone3:", "category": "activity", "aliases": [ ":juggler_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹🏽" }, "juggling_tone4": { "unicode": "1F939-1F3FE", "unicode_alternates": [ ], "name": "juggling tone 4", "shortname": ":juggling_tone4:", "category": "activity", "aliases": [ ":juggler_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹🏾" }, "juggling_tone5": { "unicode": "1F939-1F3FF", "unicode_alternates": [ ], "name": "juggling tone 5", "shortname": ":juggling_tone5:", "category": "activity", "aliases": [ ":juggler_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤹🏿" }, "kaaba": { "unicode": "1F54B", "unicode_alternates": [ ], "name": "kaaba", "shortname": ":kaaba:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "places", "religion", "building", "condolence" ], "moji": "🕋" }, "key": { "unicode": "1F511", "unicode_alternates": [ ], "name": "key", "shortname": ":key:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "door", "lock", "password", "object" ], "moji": "🔑" }, "key2": { "unicode": "1F5DD", "unicode_alternates": [ ], "name": "old key", "shortname": ":key2:", "category": "objects", "aliases": [ ":old_key:" ], "aliases_ascii": [ ], "keywords": [ "door", "lock", "password", "skeleton", "object" ], "moji": "🗝" }, "keyboard": { "unicode": "2328", "unicode_alternates": [ "2328-FE0F" ], "name": "keyboard", "shortname": ":keyboard:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "electronics", "work", "office" ], "moji": "⌨" }, "kimono": { "unicode": "1F458", "unicode_alternates": [ ], "name": "kimono", "shortname": ":kimono:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "dress", "fashion", "female", "japanese", "women" ], "moji": "👘" }, "kiss": { "unicode": "1F48B", "unicode_alternates": [ ], "name": "kiss mark", "shortname": ":kiss:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "face", "like", "lips", "love", "valentines", "women", "sexy", "lip", "beautiful", "girls night" ], "moji": "💋" }, "kiss_mm": { "unicode": "1F468-2764-1F48B-1F468", "unicode_alternates": [ "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468" ], "name": "kiss (man,man)", "shortname": ":kiss_mm:", "category": "people", "aliases": [ ":couplekiss_mm:", ":couplekiss_man_man:" ], "aliases_ascii": [ ], "keywords": [ "dating", "like", "love", "marriage", "valentines", "couple", "people", "gay", "men", "sex", "lgbt" ], "moji": "👨‍❤️‍💋‍👨" }, "kiss_ww": { "unicode": "1F469-2764-1F48B-1F469", "unicode_alternates": [ "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469" ], "name": "kiss (woman,woman)", "shortname": ":kiss_ww:", "category": "people", "aliases": [ ":couplekiss_ww:", ":couplekiss_woman_woman:" ], "aliases_ascii": [ ], "keywords": [ "dating", "like", "love", "marriage", "valentines", "couple", "people", "women", "sex", "lgbt", "lesbian" ], "moji": "👩‍❤️‍💋‍👩" }, "kissing": { "unicode": "1F617", "unicode_alternates": [ ], "name": "kissing face", "shortname": ":kissing:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "3", "face", "infatuation", "like", "love", "valentines", "kissing", "kiss", "pucker", "lips", "smooch", "smiley", "sexy" ], "moji": "😗" }, "kissing_cat": { "unicode": "1F63D", "unicode_alternates": [ ], "name": "kissing cat face with closed eyes", "shortname": ":kissing_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "passion", "kiss", "puckered", "heart", "love", "cat" ], "moji": "😽" }, "kissing_closed_eyes": { "unicode": "1F61A", "unicode_alternates": [ ], "name": "kissing face with closed eyes", "shortname": ":kissing_closed_eyes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "face", "infatuation", "like", "love", "valentines", "kissing", "kiss", "passion", "puckered", "heart", "smooch", "smiley", "sexy" ], "moji": "😚" }, "kissing_heart": { "unicode": "1F618", "unicode_alternates": [ ], "name": "face throwing a kiss", "shortname": ":kissing_heart:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":*", ":-*", "=*", ":^*" ], "keywords": [ "affection", "face", "infatuation", "kiss", "blowing kiss", "heart", "love", "lips", "like", "valentines", "smiley", "sexy" ], "moji": "😘" }, "kissing_smiling_eyes": { "unicode": "1F619", "unicode_alternates": [ ], "name": "kissing face with smiling eyes", "shortname": ":kissing_smiling_eyes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "face", "infatuation", "valentines", "kissing", "kiss", "smile", "pucker", "lips", "smooch", "smiley", "sexy" ], "moji": "😙" }, "kiwi": { "unicode": "1F95D", "unicode_alternates": [ ], "name": "kiwifruit", "shortname": ":kiwi:", "category": "food", "aliases": [ ":kiwifruit:", ":kiwi_fruit:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥝" }, "knife": { "unicode": "1F52A", "unicode_alternates": [ ], "name": "hocho", "shortname": ":knife:", "category": "objects", "aliases": [ ":hocho:" ], "aliases_ascii": [ ], "keywords": [ "object", "weapon" ], "moji": "🔪" }, "koala": { "unicode": "1F428", "unicode_alternates": [ ], "name": "koala", "shortname": ":koala:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐨" }, "koko": { "unicode": "1F201", "unicode_alternates": [ ], "name": "squared katakana koko", "shortname": ":koko:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "destination", "here", "japanese", "katakana", "symbol" ], "moji": "🈁" }, "label": { "unicode": "1F3F7", "unicode_alternates": [ ], "name": "label", "shortname": ":label:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "tag", "object" ], "moji": "🏷" }, "large_blue_circle": { "unicode": "1F535", "unicode_alternates": [ ], "name": "large blue circle", "shortname": ":large_blue_circle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shapes", "symbol", "circle" ], "moji": "🔵" }, "large_blue_diamond": { "unicode": "1F537", "unicode_alternates": [ ], "name": "large blue diamond", "shortname": ":large_blue_diamond:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔷" }, "large_orange_diamond": { "unicode": "1F536", "unicode_alternates": [ ], "name": "large orange diamond", "shortname": ":large_orange_diamond:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔶" }, "last_quarter_moon": { "unicode": "1F317", "unicode_alternates": [ ], "name": "last quarter moon symbol", "shortname": ":last_quarter_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "last", "quarter", "sky", "night", "cheese", "phase", "space" ], "moji": "🌗" }, "last_quarter_moon_with_face": { "unicode": "1F31C", "unicode_alternates": [ ], "name": "last quarter moon with face", "shortname": ":last_quarter_moon_with_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "last", "quarter", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space" ], "moji": "🌜" }, "laughing": { "unicode": "1F606", "unicode_alternates": [ ], "name": "smiling face with open mouth and tightly-closed ey", "shortname": ":laughing:", "category": "people", "aliases": [ ":satisfied:" ], "aliases_ascii": [ ">:)", ">;)", ">:-)", ">=)" ], "keywords": [ "happy", "joy", "lol", "smiling", "laughing", "laugh", "smiley", "emotion" ], "moji": "😆" }, "leaves": { "unicode": "1F343", "unicode_alternates": [ ], "name": "leaf fluttering in wind", "shortname": ":leaves:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "grass", "lawn", "nature", "plant", "tree", "vegetable", "leaves", "leaf", "wind", "float", "fluttering" ], "moji": "🍃" }, "ledger": { "unicode": "1F4D2", "unicode_alternates": [ ], "name": "ledger", "shortname": ":ledger:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "notes", "paper", "object", "office", "write" ], "moji": "📒" }, "left_facing_fist": { "unicode": "1F91B", "unicode_alternates": [ ], "name": "left-facing fist", "shortname": ":left_facing_fist:", "category": "people", "aliases": [ ":left_fist:", ":fist_left:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛" }, "left_facing_fist_tone1": { "unicode": "1F91B-1F3FB", "unicode_alternates": [ ], "name": "left facing fist tone 1", "shortname": ":left_facing_fist_tone1:", "category": "people", "aliases": [ ":left_fist_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛🏻" }, "left_facing_fist_tone2": { "unicode": "1F91B-1F3FC", "unicode_alternates": [ ], "name": "left facing fist tone 2", "shortname": ":left_facing_fist_tone2:", "category": "people", "aliases": [ ":left_fist_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛🏼" }, "left_facing_fist_tone3": { "unicode": "1F91B-1F3FD", "unicode_alternates": [ ], "name": "left facing fist tone 3", "shortname": ":left_facing_fist_tone3:", "category": "people", "aliases": [ ":left_fist_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛🏽" }, "left_facing_fist_tone4": { "unicode": "1F91B-1F3FE", "unicode_alternates": [ ], "name": "left facing fist tone 4", "shortname": ":left_facing_fist_tone4:", "category": "people", "aliases": [ ":left_fist_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛🏾" }, "left_facing_fist_tone5": { "unicode": "1F91B-1F3FF", "unicode_alternates": [ ], "name": "left facing fist tone 5", "shortname": ":left_facing_fist_tone5:", "category": "people", "aliases": [ ":left_fist_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤛🏿" }, "left_luggage": { "unicode": "1F6C5", "unicode_alternates": [ ], "name": "left luggage", "shortname": ":left_luggage:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "travel", "bag", "baggage", "luggage", "symbol" ], "moji": "🛅" }, "left_right_arrow": { "unicode": "2194", "unicode_alternates": [ "2194-FE0F" ], "name": "left right arrow", "shortname": ":left_right_arrow:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "arrow", "symbol" ], "moji": "↔" }, "leftwards_arrow_with_hook": { "unicode": "21A9", "unicode_alternates": [ "21A9-FE0F" ], "name": "leftwards arrow with hook", "shortname": ":leftwards_arrow_with_hook:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "symbol" ], "moji": "↩" }, "lemon": { "unicode": "1F34B", "unicode_alternates": [ ], "name": "lemon", "shortname": ":lemon:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fruit", "nature", "lemon", "yellow", "citrus", "food" ], "moji": "🍋" }, "leo": { "unicode": "264C", "unicode_alternates": [ "264C-FE0F" ], "name": "leo", "shortname": ":leo:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "leo", "lion", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♌" }, "leopard": { "unicode": "1F406", "unicode_alternates": [ ], "name": "leopard", "shortname": ":leopard:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "leopard", "cat", "spot", "spotted", "sexy", "wildlife", "roar" ], "moji": "🐆" }, "level_slider": { "unicode": "1F39A", "unicode_alternates": [ ], "name": "level slider", "shortname": ":level_slider:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "controls" ], "moji": "🎚" }, "levitate": { "unicode": "1F574", "unicode_alternates": [ ], "name": "man in business suit levitating", "shortname": ":levitate:", "category": "activity", "aliases": [ ":man_in_business_suit_levitating:", ":business_suit_levitating:" ], "aliases_ascii": [ ], "keywords": [ "hover", "exclamation", "men", "job" ], "moji": "🕴" }, "libra": { "unicode": "264E", "unicode_alternates": [ "264E-FE0F" ], "name": "libra", "shortname": ":libra:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "libra", "scales", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♎" }, "lifter": { "unicode": "1F3CB", "unicode_alternates": [ ], "name": "weight lifter", "shortname": ":lifter:", "category": "activity", "aliases": [ ":weight_lifter:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift", "men", "workout", "flex", "sport", "weight lifting", "win", "diversity" ], "moji": "🏋" }, "lifter_tone1": { "unicode": "1F3CB-1F3FB", "unicode_alternates": [ ], "name": "weight lifter tone 1", "shortname": ":lifter_tone1:", "category": "activity", "aliases": [ ":weight_lifter_tone1:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏻" }, "lifter_tone2": { "unicode": "1F3CB-1F3FC", "unicode_alternates": [ ], "name": "weight lifter tone 2", "shortname": ":lifter_tone2:", "category": "activity", "aliases": [ ":weight_lifter_tone2:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏼" }, "lifter_tone3": { "unicode": "1F3CB-1F3FD", "unicode_alternates": [ ], "name": "weight lifter tone 3", "shortname": ":lifter_tone3:", "category": "activity", "aliases": [ ":weight_lifter_tone3:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏽" }, "lifter_tone4": { "unicode": "1F3CB-1F3FE", "unicode_alternates": [ ], "name": "weight lifter tone 4", "shortname": ":lifter_tone4:", "category": "activity", "aliases": [ ":weight_lifter_tone4:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏾" }, "lifter_tone5": { "unicode": "1F3CB-1F3FF", "unicode_alternates": [ ], "name": "weight lifter tone 5", "shortname": ":lifter_tone5:", "category": "activity", "aliases": [ ":weight_lifter_tone5:" ], "aliases_ascii": [ ], "keywords": [ "bench", "press", "squats", "deadlift" ], "moji": "🏋🏿" }, "light_rail": { "unicode": "1F688", "unicode_alternates": [ ], "name": "light rail", "shortname": ":light_rail:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "train", "rail", "light", "travel" ], "moji": "🚈" }, "link": { "unicode": "1F517", "unicode_alternates": [ ], "name": "link symbol", "shortname": ":link:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "rings", "url", "symbol", "office" ], "moji": "🔗" }, "lion_face": { "unicode": "1F981", "unicode_alternates": [ ], "name": "lion face", "shortname": ":lion_face:", "category": "nature", "aliases": [ ":lion:" ], "aliases_ascii": [ ], "keywords": [ "wildlife", "roar", "cat", "animal" ], "moji": "🦁" }, "lips": { "unicode": "1F444", "unicode_alternates": [ ], "name": "mouth", "shortname": ":lips:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "kiss", "mouth", "women", "body", "sexy", "lip" ], "moji": "👄" }, "lipstick": { "unicode": "1F484", "unicode_alternates": [ ], "name": "lipstick", "shortname": ":lipstick:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "female", "girl", "object", "women", "sexy", "lip" ], "moji": "💄" }, "lizard": { "unicode": "1F98E", "unicode_alternates": [ ], "name": "lizard", "shortname": ":lizard:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦎" }, "lock": { "unicode": "1F512", "unicode_alternates": [ ], "name": "lock", "shortname": ":lock:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "password", "security", "object", "lock" ], "moji": "🔒" }, "lock_with_ink_pen": { "unicode": "1F50F", "unicode_alternates": [ ], "name": "lock with ink pen", "shortname": ":lock_with_ink_pen:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "secret", "security", "object", "lock" ], "moji": "🔏" }, "lollipop": { "unicode": "1F36D", "unicode_alternates": [ ], "name": "lollipop", "shortname": ":lollipop:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "candy", "food", "snack", "sweet", "lollipop", "stick", "lick", "sugar", "halloween" ], "moji": "🍭" }, "loop": { "unicode": "27BF", "unicode_alternates": [ ], "name": "double curly loop", "shortname": ":loop:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "curly", "symbol" ], "moji": "➿" }, "loud_sound": { "unicode": "1F50A", "unicode_alternates": [ ], "name": "speaker with three sound waves", "shortname": ":loud_sound:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alarm", "symbol" ], "moji": "🔊" }, "loudspeaker": { "unicode": "1F4E2", "unicode_alternates": [ ], "name": "public address loudspeaker", "shortname": ":loudspeaker:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "volume", "object", "alarm", "symbol" ], "moji": "📢" }, "love_hotel": { "unicode": "1F3E9", "unicode_alternates": [ ], "name": "love hotel", "shortname": ":love_hotel:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "dating", "like", "love", "hotel", "sex", "romance", "leisure", "adultery", "prostitution", "hospital", "birth", "happy", "places", "building" ], "moji": "🏩" }, "love_letter": { "unicode": "1F48C", "unicode_alternates": [ ], "name": "love letter", "shortname": ":love_letter:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "email", "envelope", "like", "valentines", "love", "letter", "kiss", "heart", "object" ], "moji": "💌" }, "low_brightness": { "unicode": "1F505", "unicode_alternates": [ ], "name": "low brightness symbol", "shortname": ":low_brightness:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "summer", "sun", "symbol" ], "moji": "🔅" }, "lying_face": { "unicode": "1F925", "unicode_alternates": [ ], "name": "lying face", "shortname": ":lying_face:", "category": "people", "aliases": [ ":liar:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤥" }, "m": { "unicode": "24C2", "unicode_alternates": [ "24C2-FE0F" ], "name": "circled latin capital letter m", "shortname": ":m:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "blue-circle", "letter", "symbol" ], "moji": "Ⓜ" }, "mag": { "unicode": "1F50D", "unicode_alternates": [ ], "name": "left-pointing magnifying glass", "shortname": ":mag:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "search", "zoom", "detective", "investigator", "detail", "details", "object" ], "moji": "🔍" }, "mag_right": { "unicode": "1F50E", "unicode_alternates": [ ], "name": "right-pointing magnifying glass", "shortname": ":mag_right:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "search", "zoom", "detective", "investigator", "detail", "details", "object" ], "moji": "🔎" }, "mahjong": { "unicode": "1F004", "unicode_alternates": [ "1F004-FE0F" ], "name": "mahjong tile red dragon", "shortname": ":mahjong:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "game", "kanji", "object", "symbol" ], "moji": "🀄" }, "mailbox": { "unicode": "1F4EB", "unicode_alternates": [ ], "name": "closed mailbox with raised flag", "shortname": ":mailbox:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "email", "inbox", "object" ], "moji": "📫" }, "mailbox_closed": { "unicode": "1F4EA", "unicode_alternates": [ ], "name": "closed mailbox with lowered flag", "shortname": ":mailbox_closed:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "email", "inbox", "object", "office" ], "moji": "📪" }, "mailbox_with_mail": { "unicode": "1F4EC", "unicode_alternates": [ ], "name": "open mailbox with raised flag", "shortname": ":mailbox_with_mail:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "email", "inbox", "object" ], "moji": "📬" }, "mailbox_with_no_mail": { "unicode": "1F4ED", "unicode_alternates": [ ], "name": "open mailbox with lowered flag", "shortname": ":mailbox_with_no_mail:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "email", "inbox", "object" ], "moji": "📭" }, "man": { "unicode": "1F468", "unicode_alternates": [ ], "name": "man", "shortname": ":man:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustashe", "people", "men", "sex", "diversity", "selfie", "boys night" ], "moji": "👨" }, "man_dancing": { "unicode": "1F57A", "unicode_alternates": [ ], "name": "man dancing", "shortname": ":man_dancing:", "category": "people", "aliases": [ ":male_dancer:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺" }, "man_dancing_tone1": { "unicode": "1F57A-1F3FB", "unicode_alternates": [ ], "name": "man dancing tone 1", "shortname": ":man_dancing_tone1:", "category": "activity", "aliases": [ ":male_dancer_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺🏻" }, "man_dancing_tone2": { "unicode": "1F57A-1F3FC", "unicode_alternates": [ ], "name": "man dancing tone 2", "shortname": ":man_dancing_tone2:", "category": "activity", "aliases": [ ":male_dancer_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺🏼" }, "man_dancing_tone3": { "unicode": "1F57A-1F3FD", "unicode_alternates": [ ], "name": "man dancing tone 3", "shortname": ":man_dancing_tone3:", "category": "activity", "aliases": [ ":male_dancer_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺🏽" }, "man_dancing_tone4": { "unicode": "1F57A-1F3FE", "unicode_alternates": [ ], "name": "man dancing tone 4", "shortname": ":man_dancing_tone4:", "category": "activity", "aliases": [ ":male_dancer_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺🏾" }, "man_dancing_tone5": { "unicode": "1F57A-1F3FF", "unicode_alternates": [ ], "name": "man dancing tone 5", "shortname": ":man_dancing_tone5:", "category": "activity", "aliases": [ ":male_dancer_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🕺🏿" }, "man_in_tuxedo": { "unicode": "1F935", "unicode_alternates": [ ], "name": "man in tuxedo", "shortname": ":man_in_tuxedo:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵" }, "man_in_tuxedo_tone1": { "unicode": "1F935-1F3FB", "unicode_alternates": [ ], "name": "man in tuxedo tone 1", "shortname": ":man_in_tuxedo_tone1:", "category": "people", "aliases": [ ":tuxedo_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵🏻" }, "man_in_tuxedo_tone2": { "unicode": "1F935-1F3FC", "unicode_alternates": [ ], "name": "man in tuxedo tone 2", "shortname": ":man_in_tuxedo_tone2:", "category": "people", "aliases": [ ":tuxedo_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵🏼" }, "man_in_tuxedo_tone3": { "unicode": "1F935-1F3FD", "unicode_alternates": [ ], "name": "man in tuxedo tone 3", "shortname": ":man_in_tuxedo_tone3:", "category": "people", "aliases": [ ":tuxedo_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵🏽" }, "man_in_tuxedo_tone4": { "unicode": "1F935-1F3FE", "unicode_alternates": [ ], "name": "man in tuxedo tone 4", "shortname": ":man_in_tuxedo_tone4:", "category": "people", "aliases": [ ":tuxedo_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵🏾" }, "man_in_tuxedo_tone5": { "unicode": "1F935-1F3FF", "unicode_alternates": [ ], "name": "man in tuxedo tone 5", "shortname": ":man_in_tuxedo_tone5:", "category": "people", "aliases": [ ":tuxedo_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤵🏿" }, "man_tone1": { "unicode": "1F468-1F3FB", "unicode_alternates": [ ], "name": "man tone 1", "shortname": ":man_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏻" }, "man_tone2": { "unicode": "1F468-1F3FC", "unicode_alternates": [ ], "name": "man tone 2", "shortname": ":man_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏼" }, "man_tone3": { "unicode": "1F468-1F3FD", "unicode_alternates": [ ], "name": "man tone 3", "shortname": ":man_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏽" }, "man_tone4": { "unicode": "1F468-1F3FE", "unicode_alternates": [ ], "name": "man tone 4", "shortname": ":man_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏾" }, "man_tone5": { "unicode": "1F468-1F3FF", "unicode_alternates": [ ], "name": "man tone 5", "shortname": ":man_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "dad", "father", "guy", "mustache" ], "moji": "👨🏿" }, "man_with_gua_pi_mao": { "unicode": "1F472", "unicode_alternates": [ ], "name": "man with gua pi mao", "shortname": ":man_with_gua_pi_mao:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing", "people", "hat", "men", "diversity" ], "moji": "👲" }, "man_with_gua_pi_mao_tone1": { "unicode": "1F472-1F3FB", "unicode_alternates": [ ], "name": "man with gua pi mao tone 1", "shortname": ":man_with_gua_pi_mao_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏻" }, "man_with_gua_pi_mao_tone2": { "unicode": "1F472-1F3FC", "unicode_alternates": [ ], "name": "man with gua pi mao tone 2", "shortname": ":man_with_gua_pi_mao_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏼" }, "man_with_gua_pi_mao_tone3": { "unicode": "1F472-1F3FD", "unicode_alternates": [ ], "name": "man with gua pi mao tone 3", "shortname": ":man_with_gua_pi_mao_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏽" }, "man_with_gua_pi_mao_tone4": { "unicode": "1F472-1F3FE", "unicode_alternates": [ ], "name": "man with gua pi mao tone 4", "shortname": ":man_with_gua_pi_mao_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏾" }, "man_with_gua_pi_mao_tone5": { "unicode": "1F472-1F3FF", "unicode_alternates": [ ], "name": "man with gua pi mao tone 5", "shortname": ":man_with_gua_pi_mao_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "boy", "male", "skullcap", "chinese", "asian", "qing" ], "moji": "👲🏿" }, "man_with_turban": { "unicode": "1F473", "unicode_alternates": [ ], "name": "man with turban", "shortname": ":man_with_turban:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "turban", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace", "people", "hat", "diversity" ], "moji": "👳" }, "man_with_turban_tone1": { "unicode": "1F473-1F3FB", "unicode_alternates": [ ], "name": "man with turban tone 1", "shortname": ":man_with_turban_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏻" }, "man_with_turban_tone2": { "unicode": "1F473-1F3FC", "unicode_alternates": [ ], "name": "man with turban tone 2", "shortname": ":man_with_turban_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏼" }, "man_with_turban_tone3": { "unicode": "1F473-1F3FD", "unicode_alternates": [ ], "name": "man with turban tone 3", "shortname": ":man_with_turban_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏽" }, "man_with_turban_tone4": { "unicode": "1F473-1F3FE", "unicode_alternates": [ ], "name": "man with turban tone 4", "shortname": ":man_with_turban_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏾" }, "man_with_turban_tone5": { "unicode": "1F473-1F3FF", "unicode_alternates": [ ], "name": "man with turban tone 5", "shortname": ":man_with_turban_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "headdress", "headwear", "pagri", "india", "indian", "mummy", "wisdom", "peace" ], "moji": "👳🏿" }, "mans_shoe": { "unicode": "1F45E", "unicode_alternates": [ ], "name": "mans shoe", "shortname": ":mans_shoe:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "male", "shoe", "accessories" ], "moji": "👞" }, "map": { "unicode": "1F5FA", "unicode_alternates": [ ], "name": "world map", "shortname": ":map:", "category": "objects", "aliases": [ ":world_map:" ], "aliases_ascii": [ ], "keywords": [ "atlas", "earth", "cartography", "travel", "map", "vacation" ], "moji": "🗺" }, "maple_leaf": { "unicode": "1F341", "unicode_alternates": [ ], "name": "maple leaf", "shortname": ":maple_leaf:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "canada", "nature", "plant", "vegetable", "maple", "leaf", "syrup", "tree" ], "moji": "🍁" }, "martial_arts_uniform": { "unicode": "1F94B", "unicode_alternates": [ ], "name": "martial arts uniform", "shortname": ":martial_arts_uniform:", "category": "activity", "aliases": [ ":karate_uniform:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥋" }, "mask": { "unicode": "1F637", "unicode_alternates": [ ], "name": "face with medical mask", "shortname": ":mask:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "ill", "sick", "virus", "flu", "medical", "mask", "smiley", "dead", "health" ], "moji": "😷" }, "massage": { "unicode": "1F486", "unicode_alternates": [ ], "name": "face massage", "shortname": ":massage:", "category": "people", "aliases": [ ":massage_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "people", "women", "diversity" ], "moji": "💆" }, "massage_tone1": { "unicode": "1F486-1F3FB", "unicode_alternates": [ ], "name": "face massage tone 1", "shortname": ":massage_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏻" }, "massage_tone2": { "unicode": "1F486-1F3FC", "unicode_alternates": [ ], "name": "face massage tone 2", "shortname": ":massage_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏼" }, "massage_tone3": { "unicode": "1F486-1F3FD", "unicode_alternates": [ ], "name": "face massage tone 3", "shortname": ":massage_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏽" }, "massage_tone4": { "unicode": "1F486-1F3FE", "unicode_alternates": [ ], "name": "face massage tone 4", "shortname": ":massage_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏾" }, "massage_tone5": { "unicode": "1F486-1F3FF", "unicode_alternates": [ ], "name": "face massage tone 5", "shortname": ":massage_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "💆🏿" }, "meat_on_bone": { "unicode": "1F356", "unicode_alternates": [ ], "name": "meat on bone", "shortname": ":meat_on_bone:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "good", "meat", "bone", "animal", "cooked" ], "moji": "🍖" }, "medal": { "unicode": "1F3C5", "unicode_alternates": [ ], "name": "sports medal", "shortname": ":medal:", "category": "activity", "aliases": [ ":sports_medal:", ":medal_sports:" ], "aliases_ascii": [ ], "keywords": [ "award", "ceremony", "contest", "ftw", "place", "win", "first", "show", "reward", "achievement", "object", "sport", "perfect" ], "moji": "🏅" }, "mega": { "unicode": "1F4E3", "unicode_alternates": [ ], "name": "cheering megaphone", "shortname": ":mega:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "speaker", "volume", "object", "sport" ], "moji": "📣" }, "melon": { "unicode": "1F348", "unicode_alternates": [ ], "name": "melon", "shortname": ":melon:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "melon", "cantaloupe", "honeydew", "boobs" ], "moji": "🍈" }, "menorah": { "unicode": "1F54E", "unicode_alternates": [ ], "name": "menorah with nine branches", "shortname": ":menorah:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "religion", "object", "jew", "symbol", "holidays" ], "moji": "🕎" }, "mens": { "unicode": "1F6B9", "unicode_alternates": [ ], "name": "mens symbol", "shortname": ":mens:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "restroom", "toilet", "wc", "men", "bathroom", "sign", "boy", "male", "avatar", "symbol" ], "moji": "🚹" }, "metal": { "unicode": "1F918", "unicode_alternates": [ ], "name": "sign of the horns", "shortname": ":metal:", "category": "people", "aliases": [ ":sign_of_the_horns:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll", "body", "hands", "hi", "diversity", "boys night", "parties" ], "moji": "🤘" }, "metal_tone1": { "unicode": "1F918-1F3FB", "unicode_alternates": [ ], "name": "sign of the horns tone 1", "shortname": ":metal_tone1:", "category": "people", "aliases": [ ":sign_of_the_horns_tone1:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏻" }, "metal_tone2": { "unicode": "1F918-1F3FC", "unicode_alternates": [ ], "name": "sign of the horns tone 2", "shortname": ":metal_tone2:", "category": "people", "aliases": [ ":sign_of_the_horns_tone2:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏼" }, "metal_tone3": { "unicode": "1F918-1F3FD", "unicode_alternates": [ ], "name": "sign of the horns tone 3", "shortname": ":metal_tone3:", "category": "people", "aliases": [ ":sign_of_the_horns_tone3:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏽" }, "metal_tone4": { "unicode": "1F918-1F3FE", "unicode_alternates": [ ], "name": "sign of the horns tone 4", "shortname": ":metal_tone4:", "category": "people", "aliases": [ ":sign_of_the_horns_tone4:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏾" }, "metal_tone5": { "unicode": "1F918-1F3FF", "unicode_alternates": [ ], "name": "sign of the horns tone 5", "shortname": ":metal_tone5:", "category": "people", "aliases": [ ":sign_of_the_horns_tone5:" ], "aliases_ascii": [ ], "keywords": [ "band", "concert", "fingers", "rocknroll" ], "moji": "🤘🏿" }, "metro": { "unicode": "1F687", "unicode_alternates": [ ], "name": "metro", "shortname": ":metro:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "mrt", "transportation", "tube", "underground", "metro", "subway", "train", "travel" ], "moji": "🚇" }, "microphone": { "unicode": "1F3A4", "unicode_alternates": [ ], "name": "microphone", "shortname": ":microphone:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "PA", "music", "sound", "microphone", "mic", "audio", "voice", "karaoke", "instruments" ], "moji": "🎤" }, "microphone2": { "unicode": "1F399", "unicode_alternates": [ ], "name": "studio microphone", "shortname": ":microphone2:", "category": "objects", "aliases": [ ":studio_microphone:" ], "aliases_ascii": [ ], "keywords": [ "mic", "audio", "recording", "electronics", "object" ], "moji": "🎙" }, "microscope": { "unicode": "1F52C", "unicode_alternates": [ ], "name": "microscope", "shortname": ":microscope:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "experiment", "laboratory", "zoomin", "object", "science" ], "moji": "🔬" }, "middle_finger": { "unicode": "1F595", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended", "shortname": ":middle_finger:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended:" ], "aliases_ascii": [ ], "keywords": [ "fu", "body", "hands", "middle finger", "diversity" ], "moji": "🖕" }, "middle_finger_tone1": { "unicode": "1F595-1F3FB", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended tone 1", "shortname": ":middle_finger_tone1:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone1:" ], "aliases_ascii": [ ], "keywords": [ "fu" ], "moji": "🖕🏻" }, "middle_finger_tone2": { "unicode": "1F595-1F3FC", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended tone 2", "shortname": ":middle_finger_tone2:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone2:" ], "aliases_ascii": [ ], "keywords": [ "fu" ], "moji": "🖕🏼" }, "middle_finger_tone3": { "unicode": "1F595-1F3FD", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended tone 3", "shortname": ":middle_finger_tone3:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone3:" ], "aliases_ascii": [ ], "keywords": [ "fu" ], "moji": "🖕🏽" }, "middle_finger_tone4": { "unicode": "1F595-1F3FE", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended tone 4", "shortname": ":middle_finger_tone4:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone4:" ], "aliases_ascii": [ ], "keywords": [ "fu" ], "moji": "🖕🏾" }, "middle_finger_tone5": { "unicode": "1F595-1F3FF", "unicode_alternates": [ ], "name": "reversed hand with middle finger extended tone 5", "shortname": ":middle_finger_tone5:", "category": "people", "aliases": [ ":reversed_hand_with_middle_finger_extended_tone5:" ], "aliases_ascii": [ ], "keywords": [ "fu" ], "moji": "🖕🏿" }, "military_medal": { "unicode": "1F396", "unicode_alternates": [ ], "name": "military medal", "shortname": ":military_medal:", "category": "activity", "aliases": [ ":medal_military:" ], "aliases_ascii": [ ], "keywords": [ "honor", "acknowledgment", "purple heart", "heroism", "veteran", "object", "award", "win" ], "moji": "🎖" }, "milk": { "unicode": "1F95B", "unicode_alternates": [ ], "name": "glass of milk", "shortname": ":milk:", "category": "food", "aliases": [ ":glass_of_milk:", ":milk_glass:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥛" }, "milky_way": { "unicode": "1F30C", "unicode_alternates": [ ], "name": "milky way", "shortname": ":milky_way:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "photo", "space", "milky", "galaxy", "star", "stars", "planets", "sky", "places", "travel", "vacation" ], "moji": "🌌" }, "minibus": { "unicode": "1F690", "unicode_alternates": [ ], "name": "minibus", "shortname": ":minibus:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "car", "transportation", "vehicle", "bus", "city", "transport" ], "moji": "🚐" }, "minidisc": { "unicode": "1F4BD", "unicode_alternates": [ ], "name": "minidisc", "shortname": ":minidisc:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "data", "disc", "disk", "record", "technology", "electronics" ], "moji": "💽" }, "mobile_phone_off": { "unicode": "1F4F4", "unicode_alternates": [ ], "name": "mobile phone off", "shortname": ":mobile_phone_off:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mute", "symbol" ], "moji": "📴" }, "money_mouth": { "unicode": "1F911", "unicode_alternates": [ ], "name": "money-mouth face", "shortname": ":money_mouth:", "category": "people", "aliases": [ ":money_mouth_face:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "win", "money", "emotion", "boys night" ], "moji": "🤑" }, "money_with_wings": { "unicode": "1F4B8", "unicode_alternates": [ ], "name": "money with wings", "shortname": ":money_with_wings:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bills", "dollar", "payment", "money", "wings", "easy", "spend", "work", "lost", "blown", "burned", "gift", "cash", "boys night" ], "moji": "💸" }, "moneybag": { "unicode": "1F4B0", "unicode_alternates": [ ], "name": "money bag", "shortname": ":moneybag:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "coins", "dollar", "payment", "bag", "award", "money" ], "moji": "💰" }, "monkey": { "unicode": "1F412", "unicode_alternates": [ ], "name": "monkey", "shortname": ":monkey:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "monkey", "primate", "banana", "silly", "wildlife" ], "moji": "🐒" }, "monkey_face": { "unicode": "1F435", "unicode_alternates": [ ], "name": "monkey face", "shortname": ":monkey_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature" ], "moji": "🐵" }, "monorail": { "unicode": "1F69D", "unicode_alternates": [ ], "name": "monorail", "shortname": ":monorail:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "train", "mono", "rail", "transport", "travel", "vacation" ], "moji": "🚝" }, "mortar_board": { "unicode": "1F393", "unicode_alternates": [ ], "name": "graduation cap", "shortname": ":mortar_board:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cap", "college", "degree", "graduation", "hat", "school", "university", "mortarboard", "academic", "education", "ceremony", "square", "tassel", "office", "accessories" ], "moji": "🎓" }, "mosque": { "unicode": "1F54C", "unicode_alternates": [ ], "name": "mosque", "shortname": ":mosque:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "places", "religion", "building", "vacation", "condolence" ], "moji": "🕌" }, "motor_scooter": { "unicode": "1F6F5", "unicode_alternates": [ ], "name": "motor scooter", "shortname": ":motor_scooter:", "category": "travel", "aliases": [ ":motorbike:" ], "aliases_ascii": [ ], "keywords": [ "moped" ], "moji": "🛵" }, "motorboat": { "unicode": "1F6E5", "unicode_alternates": [ ], "name": "motorboat", "shortname": ":motorboat:", "category": "travel", "aliases": [ ":motor_boat:" ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "boat", "speedboat", "powerboat", "travel" ], "moji": "🛥" }, "motorcycle": { "unicode": "1F3CD", "unicode_alternates": [ ], "name": "racing motorcycle", "shortname": ":motorcycle:", "category": "travel", "aliases": [ ":racing_motorcycle:" ], "aliases_ascii": [ ], "keywords": [ "bike", "speed", "transportation", "travel" ], "moji": "🏍" }, "motorway": { "unicode": "1F6E3", "unicode_alternates": [ ], "name": "motorway", "shortname": ":motorway:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "road", "highway", "freeway", "traffic", "travel", "vacation", "camp" ], "moji": "🛣" }, "mount_fuji": { "unicode": "1F5FB", "unicode_alternates": [ ], "name": "mount fuji", "shortname": ":mount_fuji:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japan", "mountain", "nature", "photo", "places", "travel", "vacation", "cold", "camp" ], "moji": "🗻" }, "mountain": { "unicode": "26F0", "unicode_alternates": [ ], "name": "mountain", "shortname": ":mountain:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "place", "places", "travel", "vacation", "camp" ], "moji": "⛰" }, "mountain_bicyclist": { "unicode": "1F6B5", "unicode_alternates": [ ], "name": "mountain bicyclist", "shortname": ":mountain_bicyclist:", "category": "activity", "aliases": [ ":mountain_biking_man:" ], "aliases_ascii": [ ], "keywords": [ "human", "sports", "transportation", "bicyclist", "mountain", "bike", "pedal", "bicycle", "men", "sport", "diversity" ], "moji": "🚵" }, "mountain_bicyclist_tone1": { "unicode": "1F6B5-1F3FB", "unicode_alternates": [ ], "name": "mountain bicyclist tone 1", "shortname": ":mountain_bicyclist_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏻" }, "mountain_bicyclist_tone2": { "unicode": "1F6B5-1F3FC", "unicode_alternates": [ ], "name": "mountain bicyclist tone 2", "shortname": ":mountain_bicyclist_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏼" }, "mountain_bicyclist_tone3": { "unicode": "1F6B5-1F3FD", "unicode_alternates": [ ], "name": "mountain bicyclist tone 3", "shortname": ":mountain_bicyclist_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏽" }, "mountain_bicyclist_tone4": { "unicode": "1F6B5-1F3FE", "unicode_alternates": [ ], "name": "mountain bicyclist tone 4", "shortname": ":mountain_bicyclist_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏾" }, "mountain_bicyclist_tone5": { "unicode": "1F6B5-1F3FF", "unicode_alternates": [ ], "name": "mountain bicyclist tone 5", "shortname": ":mountain_bicyclist_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "transportation", "bike", "pedal", "bicycle" ], "moji": "🚵🏿" }, "mountain_cableway": { "unicode": "1F6A0", "unicode_alternates": [ ], "name": "mountain cableway", "shortname": ":mountain_cableway:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "mountain", "cable", "rail", "train", "railway", "travel" ], "moji": "🚠" }, "mountain_railway": { "unicode": "1F69E", "unicode_alternates": [ ], "name": "mountain railway", "shortname": ":mountain_railway:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "mountain", "railway", "rail", "train", "transport", "travel" ], "moji": "🚞" }, "mountain_snow": { "unicode": "1F3D4", "unicode_alternates": [ ], "name": "snow capped mountain", "shortname": ":mountain_snow:", "category": "travel", "aliases": [ ":snow_capped_mountain:" ], "aliases_ascii": [ ], "keywords": [ "cold", "elevation", "hiking", "peak", "places", "travel", "vacation", "camp" ], "moji": "🏔" }, "mouse": { "unicode": "1F42D", "unicode_alternates": [ ], "name": "mouse face", "shortname": ":mouse:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature" ], "moji": "🐭" }, "mouse2": { "unicode": "1F401", "unicode_alternates": [ ], "name": "mouse", "shortname": ":mouse2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "mouse", "mice", "rodent" ], "moji": "🐁" }, "mouse_three_button": { "unicode": "1F5B1", "unicode_alternates": [ ], "name": "three button mouse", "shortname": ":mouse_three_button:", "category": "objects", "aliases": [ ":three_button_mouse:", ":computer_mouse:" ], "aliases_ascii": [ ], "keywords": [ "3", "computer", "object", "office", "electronics", "work", "game" ], "moji": "🖱" }, "movie_camera": { "unicode": "1F3A5", "unicode_alternates": [ ], "name": "movie camera", "shortname": ":movie_camera:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "film", "record", "movie", "camera", "camcorder", "video", "motion", "picture", "object" ], "moji": "🎥" }, "moyai": { "unicode": "1F5FF", "unicode_alternates": [ ], "name": "moyai", "shortname": ":moyai:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "island", "stone", "travel", "vacation" ], "moji": "🗿" }, "mrs_claus": { "unicode": "1F936", "unicode_alternates": [ ], "name": "mother christmas", "shortname": ":mrs_claus:", "category": "people", "aliases": [ ":mother_christmas:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶" }, "mrs_claus_tone1": { "unicode": "1F936-1F3FB", "unicode_alternates": [ ], "name": "mother christmas tone 1", "shortname": ":mrs_claus_tone1:", "category": "people", "aliases": [ ":mother_christmas_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶🏻" }, "mrs_claus_tone2": { "unicode": "1F936-1F3FC", "unicode_alternates": [ ], "name": "mother christmas tone 2", "shortname": ":mrs_claus_tone2:", "category": "people", "aliases": [ ":mother_christmas_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶🏼" }, "mrs_claus_tone3": { "unicode": "1F936-1F3FD", "unicode_alternates": [ ], "name": "mother christmas tone 3", "shortname": ":mrs_claus_tone3:", "category": "people", "aliases": [ ":mother_christmas_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶🏽" }, "mrs_claus_tone4": { "unicode": "1F936-1F3FE", "unicode_alternates": [ ], "name": "mother christmas tone 4", "shortname": ":mrs_claus_tone4:", "category": "people", "aliases": [ ":mother_christmas_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶🏾" }, "mrs_claus_tone5": { "unicode": "1F936-1F3FF", "unicode_alternates": [ ], "name": "mother christmas tone 5", "shortname": ":mrs_claus_tone5:", "category": "people", "aliases": [ ":mother_christmas_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤶🏿" }, "muscle": { "unicode": "1F4AA", "unicode_alternates": [ ], "name": "flexed biceps", "shortname": ":muscle:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep", "body", "hands", "workout", "win", "diversity", "feminist", "boys night" ], "moji": "💪" }, "muscle_tone1": { "unicode": "1F4AA-1F3FB", "unicode_alternates": [ ], "name": "flexed biceps tone 1", "shortname": ":muscle_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏻" }, "muscle_tone2": { "unicode": "1F4AA-1F3FC", "unicode_alternates": [ ], "name": "flexed biceps tone 2", "shortname": ":muscle_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏼" }, "muscle_tone3": { "unicode": "1F4AA-1F3FD", "unicode_alternates": [ ], "name": "flexed biceps tone 3", "shortname": ":muscle_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏽" }, "muscle_tone4": { "unicode": "1F4AA-1F3FE", "unicode_alternates": [ ], "name": "flexed biceps tone 4", "shortname": ":muscle_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏾" }, "muscle_tone5": { "unicode": "1F4AA-1F3FF", "unicode_alternates": [ ], "name": "flexed biceps tone 5", "shortname": ":muscle_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arm", "flex", "hand", "strong", "muscle", "bicep" ], "moji": "💪🏿" }, "mushroom": { "unicode": "1F344", "unicode_alternates": [ ], "name": "mushroom", "shortname": ":mushroom:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "plant", "vegetable", "mushroom", "fungi", "food", "fungus", "nature", "drugs" ], "moji": "🍄" }, "musical_keyboard": { "unicode": "1F3B9", "unicode_alternates": [ ], "name": "musical keyboard", "shortname": ":musical_keyboard:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "instrument", "piano", "music", "keyboard", "organ", "electric", "instruments" ], "moji": "🎹" }, "musical_note": { "unicode": "1F3B5", "unicode_alternates": [ ], "name": "musical note", "shortname": ":musical_note:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "score", "musical", "music", "note", "sound", "instruments", "symbol" ], "moji": "🎵" }, "musical_score": { "unicode": "1F3BC", "unicode_alternates": [ ], "name": "musical score", "shortname": ":musical_score:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clef", "treble", "music", "musical", "score", "g-clef", "stave", "staff", "instruments" ], "moji": "🎼" }, "mute": { "unicode": "1F507", "unicode_alternates": [ ], "name": "speaker with cancellation stroke", "shortname": ":mute:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "volume", "alarm", "symbol" ], "moji": "🔇" }, "nail_care": { "unicode": "1F485", "unicode_alternates": [ ], "name": "nail polish", "shortname": ":nail_care:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure", "women", "body", "hands", "nailpolish", "diversity", "girls night" ], "moji": "💅" }, "nail_care_tone1": { "unicode": "1F485-1F3FB", "unicode_alternates": [ ], "name": "nail polish tone 1", "shortname": ":nail_care_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure" ], "moji": "💅🏻" }, "nail_care_tone2": { "unicode": "1F485-1F3FC", "unicode_alternates": [ ], "name": "nail polish tone 2", "shortname": ":nail_care_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure" ], "moji": "💅🏼" }, "nail_care_tone3": { "unicode": "1F485-1F3FD", "unicode_alternates": [ ], "name": "nail polish tone 3", "shortname": ":nail_care_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure" ], "moji": "💅🏽" }, "nail_care_tone4": { "unicode": "1F485-1F3FE", "unicode_alternates": [ ], "name": "nail polish tone 4", "shortname": ":nail_care_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure" ], "moji": "💅🏾" }, "nail_care_tone5": { "unicode": "1F485-1F3FF", "unicode_alternates": [ ], "name": "nail polish tone 5", "shortname": ":nail_care_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beauty", "manicure" ], "moji": "💅🏿" }, "name_badge": { "unicode": "1F4DB", "unicode_alternates": [ ], "name": "name badge", "shortname": ":name_badge:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fire", "forbid", "work" ], "moji": "📛" }, "nauseated_face": { "unicode": "1F922", "unicode_alternates": [ ], "name": "nauseated face", "shortname": ":nauseated_face:", "category": "people", "aliases": [ ":sick:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤢" }, "necktie": { "unicode": "1F454", "unicode_alternates": [ ], "name": "necktie", "shortname": ":necktie:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cloth", "fashion", "formal", "shirt", "suitup" ], "moji": "👔" }, "negative_squared_cross_mark": { "unicode": "274E", "unicode_alternates": [ ], "name": "negative squared cross mark", "shortname": ":negative_squared_cross_mark:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "deny", "green-square", "no", "x", "symbol" ], "moji": "❎" }, "nerd": { "unicode": "1F913", "unicode_alternates": [ ], "name": "nerd face", "shortname": ":nerd:", "category": "people", "aliases": [ ":nerd_face:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "glasses" ], "moji": "🤓" }, "neutral_face": { "unicode": "1F610", "unicode_alternates": [ ], "name": "neutral face", "shortname": ":neutral_face:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "indifference", "neutral", "objective", "impartial", "blank", "mad", "smiley", "shrug", "emotion" ], "moji": "😐" }, "new": { "unicode": "1F195", "unicode_alternates": [ ], "name": "squared new", "shortname": ":new:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "symbol" ], "moji": "🆕" }, "new_moon": { "unicode": "1F311", "unicode_alternates": [ ], "name": "new moon symbol", "shortname": ":new_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "new", "sky", "night", "cheese", "phase", "space" ], "moji": "🌑" }, "new_moon_with_face": { "unicode": "1F31A", "unicode_alternates": [ ], "name": "new moon with face", "shortname": ":new_moon_with_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "new", "anthropomorphic", "face", "sky", "night", "cheese", "phase", "space", "goodnight" ], "moji": "🌚" }, "newspaper": { "unicode": "1F4F0", "unicode_alternates": [ ], "name": "newspaper", "shortname": ":newspaper:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "headline", "press", "office", "write" ], "moji": "📰" }, "newspaper2": { "unicode": "1F5DE", "unicode_alternates": [ ], "name": "rolled-up newspaper", "shortname": ":newspaper2:", "category": "objects", "aliases": [ ":rolled_up_newspaper:", ":newspaper_roll:" ], "aliases_ascii": [ ], "keywords": [ "headline", "press", "office", "write" ], "moji": "🗞" }, "ng": { "unicode": "1F196", "unicode_alternates": [ ], "name": "squared ng", "shortname": ":ng:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "no good", "symbol", "word" ], "moji": "🆖" }, "night_with_stars": { "unicode": "1F303", "unicode_alternates": [ ], "name": "night with stars", "shortname": ":night_with_stars:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "star", "cloudless", "evening", "planets", "space", "sky", "places", "building", "vacation", "goodnight" ], "moji": "🌃" }, "nine": { "moji": "9️⃣", "unicode": "0039-20E3", "unicode_alternates": [ "0039-FE0F-20E3" ], "name": "keycap digit nine", "shortname": ":nine:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "9", "blue-square", "numbers", "number", "math", "symbol" ] }, "no_bell": { "unicode": "1F515", "unicode_alternates": [ ], "name": "bell with cancellation stroke", "shortname": ":no_bell:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mute", "sound", "volume", "alarm", "symbol" ], "moji": "🔕" }, "no_bicycles": { "unicode": "1F6B3", "unicode_alternates": [ ], "name": "no bicycles", "shortname": ":no_bicycles:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cyclist", "prohibited", "bicycle", "bike pedal", "no", "symbol" ], "moji": "🚳" }, "no_entry": { "unicode": "26D4", "unicode_alternates": [ "26D4-FE0F" ], "name": "no entry", "shortname": ":no_entry:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bad", "denied", "limit", "privacy", "security", "stop", "symbol", "circle" ], "moji": "⛔" }, "no_entry_sign": { "unicode": "1F6AB", "unicode_alternates": [ ], "name": "no entry sign", "shortname": ":no_entry_sign:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "denied", "disallow", "forbid", "limit", "stop", "no", "entry", "symbol", "circle" ], "moji": "🚫" }, "no_good": { "unicode": "1F645", "unicode_alternates": [ ], "name": "face with no good gesture", "shortname": ":no_good:", "category": "people", "aliases": [ ":no_good_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "no", "stop", "nope", "don't", "not", "people", "women", "diversity", "girls night" ], "moji": "🙅" }, "no_good_tone1": { "unicode": "1F645-1F3FB", "unicode_alternates": [ ], "name": "face with no good gesture tone 1", "shortname": ":no_good_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏻" }, "no_good_tone2": { "unicode": "1F645-1F3FC", "unicode_alternates": [ ], "name": "face with no good gesture tone 2", "shortname": ":no_good_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏼" }, "no_good_tone3": { "unicode": "1F645-1F3FD", "unicode_alternates": [ ], "name": "face with no good gesture tone 3", "shortname": ":no_good_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏽" }, "no_good_tone4": { "unicode": "1F645-1F3FE", "unicode_alternates": [ ], "name": "face with no good gesture tone 4", "shortname": ":no_good_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏾" }, "no_good_tone5": { "unicode": "1F645-1F3FF", "unicode_alternates": [ ], "name": "face with no good gesture tone 5", "shortname": ":no_good_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "stop", "nope", "don't", "not", "forbidden", "hand", "person", "prohibited" ], "moji": "🙅🏿" }, "no_mobile_phones": { "unicode": "1F4F5", "unicode_alternates": [ ], "name": "no mobile phones", "shortname": ":no_mobile_phones:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "iphone", "mute", "symbol", "phone" ], "moji": "📵" }, "no_mouth": { "unicode": "1F636", "unicode_alternates": [ ], "name": "face without mouth", "shortname": ":no_mouth:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":-X", ":X", ":-#", ":#", "=X", "=x", ":x", ":-x", "=#" ], "keywords": [ "face", "hellokitty", "mouth", "silent", "vapid", "mad", "smiley", "neutral", "emotion" ], "moji": "😶" }, "no_pedestrians": { "unicode": "1F6B7", "unicode_alternates": [ ], "name": "no pedestrians", "shortname": ":no_pedestrians:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "crossing", "rules", "walking", "no", "walk", "pedestrian", "stroll", "stride", "foot", "feet", "symbol" ], "moji": "🚷" }, "no_smoking": { "unicode": "1F6AD", "unicode_alternates": [ ], "name": "no smoking symbol", "shortname": ":no_smoking:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cigarette", "no", "smoking", "smoke", "cancer", "lungs", "inhale", "tar", "nicotine", "symbol" ], "moji": "🚭" }, "non-potable_water": { "unicode": "1F6B1", "unicode_alternates": [ ], "name": "non-potable water symbol", "shortname": ":non-potable_water:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "drink", "faucet", "tap", "non-potable", "water", "not drinkable", "dirty", "gross", "aqua", "h20", "symbol" ], "moji": "🚱" }, "nose": { "unicode": "1F443", "unicode_alternates": [ ], "name": "nose", "shortname": ":nose:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff", "body", "diversity" ], "moji": "👃" }, "nose_tone1": { "unicode": "1F443-1F3FB", "unicode_alternates": [ ], "name": "nose tone 1", "shortname": ":nose_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff" ], "moji": "👃🏻" }, "nose_tone2": { "unicode": "1F443-1F3FC", "unicode_alternates": [ ], "name": "nose tone 2", "shortname": ":nose_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff" ], "moji": "👃🏼" }, "nose_tone3": { "unicode": "1F443-1F3FD", "unicode_alternates": [ ], "name": "nose tone 3", "shortname": ":nose_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff" ], "moji": "👃🏽" }, "nose_tone4": { "unicode": "1F443-1F3FE", "unicode_alternates": [ ], "name": "nose tone 4", "shortname": ":nose_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff" ], "moji": "👃🏾" }, "nose_tone5": { "unicode": "1F443-1F3FF", "unicode_alternates": [ ], "name": "nose tone 5", "shortname": ":nose_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "smell", "sniff" ], "moji": "👃🏿" }, "notebook": { "unicode": "1F4D3", "unicode_alternates": [ ], "name": "notebook", "shortname": ":notebook:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "notes", "paper", "record", "stationery", "object", "office", "write" ], "moji": "📓" }, "notebook_with_decorative_cover": { "unicode": "1F4D4", "unicode_alternates": [ ], "name": "notebook with decorative cover", "shortname": ":notebook_with_decorative_cover:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classroom", "notes", "paper", "record", "object", "office", "write" ], "moji": "📔" }, "notepad_spiral": { "unicode": "1F5D2", "unicode_alternates": [ ], "name": "spiral note pad", "shortname": ":notepad_spiral:", "category": "objects", "aliases": [ ":spiral_note_pad:", ":spiral_notepad:" ], "aliases_ascii": [ ], "keywords": [ "stationery", "work", "office", "write" ], "moji": "🗒" }, "notes": { "unicode": "1F3B6", "unicode_alternates": [ ], "name": "multiple musical notes", "shortname": ":notes:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "music", "score", "musical", "notes", "sound", "melody", "instruments", "symbol" ], "moji": "🎶" }, "nut_and_bolt": { "unicode": "1F529", "unicode_alternates": [ ], "name": "nut and bolt", "shortname": ":nut_and_bolt:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "handy", "tools", "object", "tool", "nutcase" ], "moji": "🔩" }, "o": { "unicode": "2B55", "unicode_alternates": [ "2B55-FE0F" ], "name": "heavy large circle", "shortname": ":o:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "circle", "round", "symbol" ], "moji": "⭕" }, "o2": { "unicode": "1F17E", "unicode_alternates": [ ], "name": "negative squared latin capital letter o", "shortname": ":o2:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "letter", "red-square", "symbol" ], "moji": "🅾" }, "ocean": { "unicode": "1F30A", "unicode_alternates": [ ], "name": "water wave", "shortname": ":ocean:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sea", "water", "wave", "ocean", "surf", "beach", "tide", "weather", "boat", "tropical", "swim" ], "moji": "🌊" }, "octagonal_sign": { "unicode": "1F6D1", "unicode_alternates": [ ], "name": "octagonal sign", "shortname": ":octagonal_sign:", "category": "symbols", "aliases": [ ":stop_sign:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🛑" }, "octopus": { "unicode": "1F419", "unicode_alternates": [ ], "name": "octopus", "shortname": ":octopus:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "creature", "ocean", "sea", "wildlife" ], "moji": "🐙" }, "oden": { "unicode": "1F362", "unicode_alternates": [ ], "name": "oden", "shortname": ":oden:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "japanese", "oden", "seafood", "casserole", "stew" ], "moji": "🍢" }, "office": { "unicode": "1F3E2", "unicode_alternates": [ ], "name": "office building", "shortname": ":office:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "bureau", "work", "places" ], "moji": "🏢" }, "oil": { "unicode": "1F6E2", "unicode_alternates": [ ], "name": "oil drum", "shortname": ":oil:", "category": "objects", "aliases": [ ":oil_drum:" ], "aliases_ascii": [ ], "keywords": [ "petroleum", "object" ], "moji": "🛢" }, "ok": { "unicode": "1F197", "unicode_alternates": [ ], "name": "squared ok", "shortname": ":ok:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "agree", "blue-square", "good", "yes", "symbol" ], "moji": "🆗" }, "ok_hand": { "unicode": "1F44C", "unicode_alternates": [ ], "name": "ok hand sign", "shortname": ":ok_hand:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "ok", "smoke", "smoking", "marijuana", "joint", "pot", "420", "body", "hands", "hi", "diversity", "good", "beautiful" ], "moji": "👌" }, "ok_hand_tone1": { "unicode": "1F44C-1F3FB", "unicode_alternates": [ ], "name": "ok hand sign tone 1", "shortname": ":ok_hand_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏻" }, "ok_hand_tone2": { "unicode": "1F44C-1F3FC", "unicode_alternates": [ ], "name": "ok hand sign tone 2", "shortname": ":ok_hand_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏼" }, "ok_hand_tone3": { "unicode": "1F44C-1F3FD", "unicode_alternates": [ ], "name": "ok hand sign tone 3", "shortname": ":ok_hand_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏽" }, "ok_hand_tone4": { "unicode": "1F44C-1F3FE", "unicode_alternates": [ ], "name": "ok hand sign tone 4", "shortname": ":ok_hand_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏾" }, "ok_hand_tone5": { "unicode": "1F44C-1F3FF", "unicode_alternates": [ ], "name": "ok hand sign tone 5", "shortname": ":ok_hand_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "limbs", "perfect", "okay", "smoke", "smoking", "marijuana", "joint", "pot", "420" ], "moji": "👌🏿" }, "ok_woman": { "unicode": "1F646", "unicode_alternates": [ ], "name": "face with ok gesture", "shortname": ":ok_woman:", "category": "people", "aliases": [ ], "aliases_ascii": [ "*\\0/*", "\\0/", "*\\O/*", "\\O/" ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "ok", "okay", "accept", "people", "diversity" ], "moji": "🙆" }, "ok_woman_tone1": { "unicode": "1F646-1F3FB", "unicode_alternates": [ ], "name": "face with ok gesture tone1", "shortname": ":ok_woman_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏻" }, "ok_woman_tone2": { "unicode": "1F646-1F3FC", "unicode_alternates": [ ], "name": "face with ok gesture tone2", "shortname": ":ok_woman_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏼" }, "ok_woman_tone3": { "unicode": "1F646-1F3FD", "unicode_alternates": [ ], "name": "face with ok gesture tone3", "shortname": ":ok_woman_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏽" }, "ok_woman_tone4": { "unicode": "1F646-1F3FE", "unicode_alternates": [ ], "name": "face with ok gesture tone4", "shortname": ":ok_woman_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏾" }, "ok_woman_tone5": { "unicode": "1F646-1F3FF", "unicode_alternates": [ ], "name": "face with ok gesture tone5", "shortname": ":ok_woman_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "human", "pink", "women", "yes", "okay", "accept" ], "moji": "🙆🏿" }, "older_man": { "unicode": "1F474", "unicode_alternates": [ ], "name": "older man", "shortname": ":older_man:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "human", "male", "men", "people", "old people", "diversity" ], "moji": "👴" }, "older_man_tone1": { "unicode": "1F474-1F3FB", "unicode_alternates": [ ], "name": "older man tone 1", "shortname": ":older_man_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏻" }, "older_man_tone2": { "unicode": "1F474-1F3FC", "unicode_alternates": [ ], "name": "older man tone 2", "shortname": ":older_man_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏼" }, "older_man_tone3": { "unicode": "1F474-1F3FD", "unicode_alternates": [ ], "name": "older man tone 3", "shortname": ":older_man_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏽" }, "older_man_tone4": { "unicode": "1F474-1F3FE", "unicode_alternates": [ ], "name": "older man tone 4", "shortname": ":older_man_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏾" }, "older_man_tone5": { "unicode": "1F474-1F3FF", "unicode_alternates": [ ], "name": "older man tone 5", "shortname": ":older_man_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "men", "grandpa", "grandfather" ], "moji": "👴🏿" }, "older_woman": { "unicode": "1F475", "unicode_alternates": [ ], "name": "older woman", "shortname": ":older_woman:", "category": "people", "aliases": [ ":grandma:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "women", "grandma", "grandmother", "people", "old people", "diversity" ], "moji": "👵" }, "older_woman_tone1": { "unicode": "1F475-1F3FB", "unicode_alternates": [ ], "name": "older woman tone 1", "shortname": ":older_woman_tone1:", "category": "people", "aliases": [ ":grandma_tone1:" ], "aliases_ascii": [ ], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏻" }, "older_woman_tone2": { "unicode": "1F475-1F3FC", "unicode_alternates": [ ], "name": "older woman tone 2", "shortname": ":older_woman_tone2:", "category": "people", "aliases": [ ":grandma_tone2:" ], "aliases_ascii": [ ], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏼" }, "older_woman_tone3": { "unicode": "1F475-1F3FD", "unicode_alternates": [ ], "name": "older woman tone 3", "shortname": ":older_woman_tone3:", "category": "people", "aliases": [ ":grandma_tone3:" ], "aliases_ascii": [ ], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏽" }, "older_woman_tone4": { "unicode": "1F475-1F3FE", "unicode_alternates": [ ], "name": "older woman tone 4", "shortname": ":older_woman_tone4:", "category": "people", "aliases": [ ":grandma_tone4:" ], "aliases_ascii": [ ], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏾" }, "older_woman_tone5": { "unicode": "1F475-1F3FF", "unicode_alternates": [ ], "name": "older woman tone 5", "shortname": ":older_woman_tone5:", "category": "people", "aliases": [ ":grandma_tone5:" ], "aliases_ascii": [ ], "keywords": [ "female", "women", "lady", "grandma", "grandmother" ], "moji": "👵🏿" }, "om_symbol": { "unicode": "1F549", "unicode_alternates": [ ], "name": "om symbol", "shortname": ":om_symbol:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hinduism", "sound", "spiritual", "icon", "dharmic", "buddhism", "jainism", "meditate", "religion", "symbol" ], "moji": "🕉" }, "on": { "unicode": "1F51B", "unicode_alternates": [ ], "name": "on with exclamation mark with left right arrow abo", "shortname": ":on:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔛" }, "oncoming_automobile": { "unicode": "1F698", "unicode_alternates": [ ], "name": "oncoming automobile", "shortname": ":oncoming_automobile:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "car", "transportation", "vehicle", "sedan", "automobile", "travel" ], "moji": "🚘" }, "oncoming_bus": { "unicode": "1F68D", "unicode_alternates": [ ], "name": "oncoming bus", "shortname": ":oncoming_bus:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "bus", "school", "city", "public", "travel" ], "moji": "🚍" }, "oncoming_police_car": { "unicode": "1F694", "unicode_alternates": [ ], "name": "oncoming police car", "shortname": ":oncoming_police_car:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "enforcement", "law", "vehicle", "police", "car", "emergency", "ticket", "citation", "crime", "help", "officer", "transportation", "911" ], "moji": "🚔" }, "oncoming_taxi": { "unicode": "1F696", "unicode_alternates": [ ], "name": "oncoming taxi", "shortname": ":oncoming_taxi:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "uber", "vehicle", "taxi", "car", "automobile", "city", "transport", "service", "transportation", "travel" ], "moji": "🚖" }, "one": { "moji": "1️⃣", "unicode": "0031-20E3", "unicode_alternates": [ "0031-FE0F-20E3" ], "name": "keycap digit one", "shortname": ":one:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "1", "blue-square", "numbers", "number", "math", "symbol" ] }, "open_file_folder": { "unicode": "1F4C2", "unicode_alternates": [ ], "name": "open file folder", "shortname": ":open_file_folder:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "load", "work", "office" ], "moji": "📂" }, "open_hands": { "unicode": "1F450", "unicode_alternates": [ ], "name": "open hands sign", "shortname": ":open_hands:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers", "body", "hands", "diversity", "condolence" ], "moji": "👐" }, "open_hands_tone1": { "unicode": "1F450-1F3FB", "unicode_alternates": [ ], "name": "open hands sign tone 1", "shortname": ":open_hands_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏻" }, "open_hands_tone2": { "unicode": "1F450-1F3FC", "unicode_alternates": [ ], "name": "open hands sign tone 2", "shortname": ":open_hands_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏼" }, "open_hands_tone3": { "unicode": "1F450-1F3FD", "unicode_alternates": [ ], "name": "open hands sign tone 3", "shortname": ":open_hands_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏽" }, "open_hands_tone4": { "unicode": "1F450-1F3FE", "unicode_alternates": [ ], "name": "open hands sign tone 4", "shortname": ":open_hands_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏾" }, "open_hands_tone5": { "unicode": "1F450-1F3FF", "unicode_alternates": [ ], "name": "open hands sign tone 5", "shortname": ":open_hands_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "butterfly", "fingers" ], "moji": "👐🏿" }, "open_mouth": { "unicode": "1F62E", "unicode_alternates": [ ], "name": "face with open mouth", "shortname": ":open_mouth:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":-O", ":O", ":-o", ":o", "O_O", ">:O" ], "keywords": [ "face", "impressed", "mouth", "open", "jaw", "gapping", "surprise", "wow", "smiley", "surprised", "emotion" ], "moji": "😮" }, "ophiuchus": { "unicode": "26CE", "unicode_alternates": [ ], "name": "ophiuchus", "shortname": ":ophiuchus:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ophiuchus", "serpent", "snake", "astrology", "greek", "constellation", "stars", "zodiac", "purple-square", "sign", "horoscope", "symbol" ], "moji": "⛎" }, "orange_book": { "unicode": "1F4D9", "unicode_alternates": [ ], "name": "orange book", "shortname": ":orange_book:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "knowledge", "library", "read", "object", "office", "write", "book" ], "moji": "📙" }, "orthodox_cross": { "unicode": "2626", "unicode_alternates": [ ], "name": "orthodox cross", "shortname": ":orthodox_cross:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "christian", "religion", "symbol" ], "moji": "☦" }, "outbox_tray": { "unicode": "1F4E4", "unicode_alternates": [ ], "name": "outbox tray", "shortname": ":outbox_tray:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "email", "inbox", "work", "office" ], "moji": "📤" }, "owl": { "unicode": "1F989", "unicode_alternates": [ ], "name": "owl", "shortname": ":owl:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦉" }, "ox": { "unicode": "1F402", "unicode_alternates": [ ], "name": "ox", "shortname": ":ox:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "beef", "cow" ], "moji": "🐂" }, "package": { "unicode": "1F4E6", "unicode_alternates": [ ], "name": "package", "shortname": ":package:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gift", "mail", "object", "office" ], "moji": "📦" }, "page_facing_up": { "unicode": "1F4C4", "unicode_alternates": [ ], "name": "page facing up", "shortname": ":page_facing_up:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "work", "office", "write" ], "moji": "📄" }, "page_with_curl": { "unicode": "1F4C3", "unicode_alternates": [ ], "name": "page with curl", "shortname": ":page_with_curl:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "office", "write" ], "moji": "📃" }, "pager": { "unicode": "1F4DF", "unicode_alternates": [ ], "name": "pager", "shortname": ":pager:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bbcall", "oldschool", "electronics", "work" ], "moji": "📟" }, "paintbrush": { "unicode": "1F58C", "unicode_alternates": [ ], "name": "lower left paintbrush", "shortname": ":paintbrush:", "category": "objects", "aliases": [ ":lower_left_paintbrush:" ], "aliases_ascii": [ ], "keywords": [ "brush", "art", "painting", "object", "office", "write" ], "moji": "🖌" }, "palm_tree": { "unicode": "1F334", "unicode_alternates": [ ], "name": "palm tree", "shortname": ":palm_tree:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "vegetable", "palm", "tree", "coconuts", "fronds", "warm", "tropical", "trees" ], "moji": "🌴" }, "pancakes": { "unicode": "1F95E", "unicode_alternates": [ ], "name": "pancakes", "shortname": ":pancakes:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥞" }, "panda_face": { "unicode": "1F43C", "unicode_alternates": [ ], "name": "panda face", "shortname": ":panda_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "panda", "bear", "face", "cub", "cute", "endearment", "friendship", "love", "bamboo", "china", "black", "white", "wildlife", "roar" ], "moji": "🐼" }, "paperclip": { "unicode": "1F4CE", "unicode_alternates": [ ], "name": "paperclip", "shortname": ":paperclip:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "stationery", "object", "work", "office" ], "moji": "📎" }, "paperclips": { "unicode": "1F587", "unicode_alternates": [ ], "name": "linked paperclips", "shortname": ":paperclips:", "category": "objects", "aliases": [ ":linked_paperclips:" ], "aliases_ascii": [ ], "keywords": [ "documents", "stationery", "object", "work", "office" ], "moji": "🖇" }, "park": { "unicode": "1F3DE", "unicode_alternates": [ ], "name": "national park", "shortname": ":park:", "category": "travel", "aliases": [ ":national_park:" ], "aliases_ascii": [ ], "keywords": [ "woods", "nature", "wildlife", "forest", "wilderness", "national", "travel", "vacation", "park", "camp" ], "moji": "🏞" }, "parking": { "unicode": "1F17F", "unicode_alternates": [ "1F17F-FE0F" ], "name": "negative squared latin capital letter p", "shortname": ":parking:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "blue-square", "cars", "letter", "symbol" ], "moji": "🅿" }, "part_alternation_mark": { "unicode": "303D", "unicode_alternates": [ "303D-FE0F" ], "name": "part alternation mark", "shortname": ":part_alternation_mark:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "graph", "sing", "song", "vocal", "music", "karaoke", "cue", "letter", "m", "japanese", "symbol" ], "moji": "〽" }, "partly_sunny": { "unicode": "26C5", "unicode_alternates": [ "26C5-FE0F" ], "name": "sun behind cloud", "shortname": ":partly_sunny:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cloud", "morning", "nature", "weather", "sky", "sun" ], "moji": "⛅" }, "passport_control": { "unicode": "1F6C2", "unicode_alternates": [ ], "name": "passport control", "shortname": ":passport_control:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "custom", "passport", "official", "travel", "control", "foreign", "identification", "symbol" ], "moji": "🛂" }, "pause_button": { "unicode": "23F8", "unicode_alternates": [ ], "name": "double vertical bar", "shortname": ":pause_button:", "category": "symbols", "aliases": [ ":double_vertical_bar:" ], "aliases_ascii": [ ], "keywords": [ "pause", "sound", "symbol" ], "moji": "⏸" }, "peace": { "unicode": "262E", "unicode_alternates": [ ], "name": "peace symbol", "shortname": ":peace:", "category": "symbols", "aliases": [ ":peace_symbol:" ], "aliases_ascii": [ ], "keywords": [ "sign", "symbol", "peace", "drugs" ], "moji": "☮" }, "peach": { "unicode": "1F351", "unicode_alternates": [ ], "name": "peach", "shortname": ":peach:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "peach", "juicy", "pit", "butt" ], "moji": "🍑" }, "peanuts": { "unicode": "1F95C", "unicode_alternates": [ ], "name": "peanuts", "shortname": ":peanuts:", "category": "food", "aliases": [ ":shelled_peanut:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥜" }, "pear": { "unicode": "1F350", "unicode_alternates": [ ], "name": "pear", "shortname": ":pear:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fruit", "nature", "pear", "shape", "food" ], "moji": "🍐" }, "pen_ballpoint": { "unicode": "1F58A", "unicode_alternates": [ ], "name": "lower left ballpoint pen", "shortname": ":pen_ballpoint:", "category": "objects", "aliases": [ ":lower_left_ballpoint_pen:", ":pen:" ], "aliases_ascii": [ ], "keywords": [ "write", "bic", "ink", "object", "office" ], "moji": "🖊" }, "pen_fountain": { "unicode": "1F58B", "unicode_alternates": [ ], "name": "lower left fountain pen", "shortname": ":pen_fountain:", "category": "objects", "aliases": [ ":lower_left_fountain_pen:", ":fountain_pen:" ], "aliases_ascii": [ ], "keywords": [ "write", "calligraphy", "ink", "object", "office" ], "moji": "🖋" }, "pencil": { "unicode": "1F4DD", "unicode_alternates": [ ], "name": "memo", "shortname": ":pencil:", "category": "objects", "aliases": [ ":memo:" ], "aliases_ascii": [ ], "keywords": [ "documents", "paper", "station", "write", "work", "office" ], "moji": "📝" }, "pencil2": { "unicode": "270F", "unicode_alternates": [ "270F-FE0F" ], "name": "pencil", "shortname": ":pencil2:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "paper", "stationery", "write", "object", "office" ], "moji": "✏" }, "penguin": { "unicode": "1F427", "unicode_alternates": [ ], "name": "penguin", "shortname": ":penguin:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐧" }, "pensive": { "unicode": "1F614", "unicode_alternates": [ ], "name": "pensive face", "shortname": ":pensive:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "okay", "sad", "pensive", "thoughtful", "think", "reflective", "wistful", "meditate", "serious", "smiley", "emotion", "rip" ], "moji": "😔" }, "performing_arts": { "unicode": "1F3AD", "unicode_alternates": [ ], "name": "performing arts", "shortname": ":performing_arts:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "acting", "drama", "theater", "performing", "arts", "performance", "entertainment", "story", "mask", "masks", "theatre", "movie" ], "moji": "🎭" }, "persevere": { "unicode": "1F623", "unicode_alternates": [ ], "name": "persevering face", "shortname": ":persevere:", "category": "people", "aliases": [ ], "aliases_ascii": [ ">.<" ], "keywords": [ "endure", "persevere", "face", "no", "sick", "upset", "sad", "smiley", "angry", "emotion" ], "moji": "😣" }, "person_frowning": { "unicode": "1F64D", "unicode_alternates": [ ], "name": "person frowning", "shortname": ":person_frowning:", "category": "people", "aliases": [ ":frowning_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown", "people", "women", "diversity" ], "moji": "🙍" }, "person_frowning_tone1": { "unicode": "1F64D-1F3FB", "unicode_alternates": [ ], "name": "person frowning tone 1", "shortname": ":person_frowning_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏻" }, "person_frowning_tone2": { "unicode": "1F64D-1F3FC", "unicode_alternates": [ ], "name": "person frowning tone 2", "shortname": ":person_frowning_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏼" }, "person_frowning_tone3": { "unicode": "1F64D-1F3FD", "unicode_alternates": [ ], "name": "person frowning tone 3", "shortname": ":person_frowning_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏽" }, "person_frowning_tone4": { "unicode": "1F64D-1F3FE", "unicode_alternates": [ ], "name": "person frowning tone 4", "shortname": ":person_frowning_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏾" }, "person_frowning_tone5": { "unicode": "1F64D-1F3FF", "unicode_alternates": [ ], "name": "person frowning tone 5", "shortname": ":person_frowning_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "dejected", "rejected", "sad", "frown" ], "moji": "🙍🏿" }, "person_with_blond_hair": { "unicode": "1F471", "unicode_alternates": [ ], "name": "person with blond hair", "shortname": ":person_with_blond_hair:", "category": "people", "aliases": [ ":blonde_man:" ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental", "people", "men", "diversity" ], "moji": "👱" }, "person_with_blond_hair_tone1": { "unicode": "1F471-1F3FB", "unicode_alternates": [ ], "name": "person with blond hair tone 1", "shortname": ":person_with_blond_hair_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏻" }, "person_with_blond_hair_tone2": { "unicode": "1F471-1F3FC", "unicode_alternates": [ ], "name": "person with blond hair tone 2", "shortname": ":person_with_blond_hair_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏼" }, "person_with_blond_hair_tone3": { "unicode": "1F471-1F3FD", "unicode_alternates": [ ], "name": "person with blond hair tone 3", "shortname": ":person_with_blond_hair_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏽" }, "person_with_blond_hair_tone4": { "unicode": "1F471-1F3FE", "unicode_alternates": [ ], "name": "person with blond hair tone 4", "shortname": ":person_with_blond_hair_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏾" }, "person_with_blond_hair_tone5": { "unicode": "1F471-1F3FF", "unicode_alternates": [ ], "name": "person with blond hair tone 5", "shortname": ":person_with_blond_hair_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "male", "man", "blonde", "young", "western", "westerner", "occidental" ], "moji": "👱🏿" }, "person_with_pouting_face": { "unicode": "1F64E", "unicode_alternates": [ ], "name": "person with pouting face", "shortname": ":person_with_pouting_face:", "category": "people", "aliases": [ ":pouting_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed", "people", "women", "diversity" ], "moji": "🙎" }, "person_with_pouting_face_tone1": { "unicode": "1F64E-1F3FB", "unicode_alternates": [ ], "name": "person with pouting face tone1", "shortname": ":person_with_pouting_face_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏻" }, "person_with_pouting_face_tone2": { "unicode": "1F64E-1F3FC", "unicode_alternates": [ ], "name": "person with pouting face tone2", "shortname": ":person_with_pouting_face_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏼" }, "person_with_pouting_face_tone3": { "unicode": "1F64E-1F3FD", "unicode_alternates": [ ], "name": "person with pouting face tone3", "shortname": ":person_with_pouting_face_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏽" }, "person_with_pouting_face_tone4": { "unicode": "1F64E-1F3FE", "unicode_alternates": [ ], "name": "person with pouting face tone4", "shortname": ":person_with_pouting_face_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏾" }, "person_with_pouting_face_tone5": { "unicode": "1F64E-1F3FF", "unicode_alternates": [ ], "name": "person with pouting face tone5", "shortname": ":person_with_pouting_face_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "pout", "sexy", "cute", "annoyed" ], "moji": "🙎🏿" }, "pick": { "unicode": "26CF", "unicode_alternates": [ ], "name": "pick", "shortname": ":pick:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mining", "object", "tool", "weapon" ], "moji": "⛏" }, "pig": { "unicode": "1F437", "unicode_alternates": [ ], "name": "pig face", "shortname": ":pig:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "oink" ], "moji": "🐷" }, "pig2": { "unicode": "1F416", "unicode_alternates": [ ], "name": "pig", "shortname": ":pig2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "pig", "piggy", "pork", "ham", "hog", "bacon", "oink", "slop", "livestock", "greed", "greedy" ], "moji": "🐖" }, "pig_nose": { "unicode": "1F43D", "unicode_alternates": [ ], "name": "pig nose", "shortname": ":pig_nose:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "oink", "pig", "nose", "snout", "food", "eat", "cute", "pink", "smell", "truffle" ], "moji": "🐽" }, "pill": { "unicode": "1F48A", "unicode_alternates": [ ], "name": "pill", "shortname": ":pill:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "health", "medicine", "object", "drugs" ], "moji": "💊" }, "pineapple": { "unicode": "1F34D", "unicode_alternates": [ ], "name": "pineapple", "shortname": ":pineapple:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "pineapple", "pina", "tropical", "flower" ], "moji": "🍍" }, "ping_pong": { "unicode": "1F3D3", "unicode_alternates": [ ], "name": "table tennis paddle and ball", "shortname": ":ping_pong:", "category": "activity", "aliases": [ ":table_tennis:" ], "aliases_ascii": [ ], "keywords": [ "game", "ball", "sport", "ping pong" ], "moji": "🏓" }, "pisces": { "unicode": "2653", "unicode_alternates": [ "2653-FE0F" ], "name": "pisces", "shortname": ":pisces:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pisces", "fish", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "purple-square", "horoscope", "symbol" ], "moji": "♓" }, "pizza": { "unicode": "1F355", "unicode_alternates": [ ], "name": "slice of pizza", "shortname": ":pizza:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "party", "pizza", "pie", "new york", "italian", "italy", "slice", "peperoni", "boys night" ], "moji": "🍕" }, "place_of_worship": { "unicode": "1F6D0", "unicode_alternates": [ ], "name": "place of worship", "shortname": ":place_of_worship:", "category": "symbols", "aliases": [ ":worship_symbol:" ], "aliases_ascii": [ ], "keywords": [ "religion", "symbol", "pray" ], "moji": "🛐" }, "play_pause": { "unicode": "23EF", "unicode_alternates": [ ], "name": "black right-pointing double triangle with double vertical bar", "shortname": ":play_pause:", "category": "symbols", "aliases": [ ":play_or_pause_button:" ], "aliases_ascii": [ ], "keywords": [ "arrow", "pause", "play", "right", "sound", "symbol" ], "moji": "⏯" }, "point_down": { "unicode": "1F447", "unicode_alternates": [ ], "name": "white down pointing backhand index", "shortname": ":point_down:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "fingers", "hand", "body", "hands", "diversity" ], "moji": "👇" }, "point_down_tone1": { "unicode": "1F447-1F3FB", "unicode_alternates": [ ], "name": "white down pointing backhand index tone 1", "shortname": ":point_down_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏻" }, "point_down_tone2": { "unicode": "1F447-1F3FC", "unicode_alternates": [ ], "name": "white down pointing backhand index tone 2", "shortname": ":point_down_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏼" }, "point_down_tone3": { "unicode": "1F447-1F3FD", "unicode_alternates": [ ], "name": "white down pointing backhand index tone 3", "shortname": ":point_down_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏽" }, "point_down_tone4": { "unicode": "1F447-1F3FE", "unicode_alternates": [ ], "name": "white down pointing backhand index tone 4", "shortname": ":point_down_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏾" }, "point_down_tone5": { "unicode": "1F447-1F3FF", "unicode_alternates": [ ], "name": "white down pointing backhand index tone 5", "shortname": ":point_down_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👇🏿" }, "point_left": { "unicode": "1F448", "unicode_alternates": [ ], "name": "white left pointing backhand index", "shortname": ":point_left:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "fingers", "hand", "body", "hands", "hi", "diversity" ], "moji": "👈" }, "point_left_tone1": { "unicode": "1F448-1F3FB", "unicode_alternates": [ ], "name": "white left pointing backhand index tone 1", "shortname": ":point_left_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏻" }, "point_left_tone2": { "unicode": "1F448-1F3FC", "unicode_alternates": [ ], "name": "white left pointing backhand index tone 2", "shortname": ":point_left_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏼" }, "point_left_tone3": { "unicode": "1F448-1F3FD", "unicode_alternates": [ ], "name": "white left pointing backhand index tone 3", "shortname": ":point_left_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏽" }, "point_left_tone4": { "unicode": "1F448-1F3FE", "unicode_alternates": [ ], "name": "white left pointing backhand index tone 4", "shortname": ":point_left_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏾" }, "point_left_tone5": { "unicode": "1F448-1F3FF", "unicode_alternates": [ ], "name": "white left pointing backhand index tone 5", "shortname": ":point_left_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👈🏿" }, "point_right": { "unicode": "1F449", "unicode_alternates": [ ], "name": "white right pointing backhand index", "shortname": ":point_right:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "fingers", "hand", "body", "hands", "hi", "diversity" ], "moji": "👉" }, "point_right_tone1": { "unicode": "1F449-1F3FB", "unicode_alternates": [ ], "name": "white right pointing backhand index tone 1", "shortname": ":point_right_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏻" }, "point_right_tone2": { "unicode": "1F449-1F3FC", "unicode_alternates": [ ], "name": "white right pointing backhand index tone 2", "shortname": ":point_right_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏼" }, "point_right_tone3": { "unicode": "1F449-1F3FD", "unicode_alternates": [ ], "name": "white right pointing backhand index tone 3", "shortname": ":point_right_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏽" }, "point_right_tone4": { "unicode": "1F449-1F3FE", "unicode_alternates": [ ], "name": "white right pointing backhand index tone 4", "shortname": ":point_right_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏾" }, "point_right_tone5": { "unicode": "1F449-1F3FF", "unicode_alternates": [ ], "name": "white right pointing backhand index tone 5", "shortname": ":point_right_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand" ], "moji": "👉🏿" }, "point_up": { "unicode": "261D", "unicode_alternates": [ "261D-FE0F" ], "name": "white up pointing index", "shortname": ":point_up:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "fingers", "hand", "body", "hands", "emojione", "diversity" ], "moji": "☝" }, "point_up_2": { "unicode": "1F446", "unicode_alternates": [ ], "name": "white up pointing backhand index", "shortname": ":point_up_2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "fingers", "hand", "body", "hands", "diversity" ], "moji": "👆" }, "point_up_2_tone1": { "unicode": "1F446-1F3FB", "unicode_alternates": [ ], "name": "white up pointing backhand index tone 1", "shortname": ":point_up_2_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏻" }, "point_up_2_tone2": { "unicode": "1F446-1F3FC", "unicode_alternates": [ ], "name": "white up pointing backhand index tone 2", "shortname": ":point_up_2_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏼" }, "point_up_2_tone3": { "unicode": "1F446-1F3FD", "unicode_alternates": [ ], "name": "white up pointing backhand index tone 3", "shortname": ":point_up_2_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏽" }, "point_up_2_tone4": { "unicode": "1F446-1F3FE", "unicode_alternates": [ ], "name": "white up pointing backhand index tone 4", "shortname": ":point_up_2_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏾" }, "point_up_2_tone5": { "unicode": "1F446-1F3FF", "unicode_alternates": [ ], "name": "white up pointing backhand index tone 5", "shortname": ":point_up_2_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "👆🏿" }, "point_up_tone1": { "unicode": "261D-1F3FB", "unicode_alternates": [ ], "name": "white up pointing index tone 1", "shortname": ":point_up_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏻" }, "point_up_tone2": { "unicode": "261D-1F3FC", "unicode_alternates": [ ], "name": "white up pointing index tone 2", "shortname": ":point_up_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏼" }, "point_up_tone3": { "unicode": "261D-1F3FD", "unicode_alternates": [ ], "name": "white up pointing index tone 3", "shortname": ":point_up_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏽" }, "point_up_tone4": { "unicode": "261D-1F3FE", "unicode_alternates": [ ], "name": "white up pointing index tone 4", "shortname": ":point_up_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏾" }, "point_up_tone5": { "unicode": "261D-1F3FF", "unicode_alternates": [ ], "name": "white up pointing index tone 5", "shortname": ":point_up_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "direction", "finger", "hand", "one" ], "moji": "☝🏿" }, "police_car": { "unicode": "1F693", "unicode_alternates": [ ], "name": "police car", "shortname": ":police_car:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "enforcement", "law", "transportation", "vehicle", "police", "car", "emergency", "ticket", "citation", "crime", "help", "officer", "911" ], "moji": "🚓" }, "poodle": { "unicode": "1F429", "unicode_alternates": [ ], "name": "poodle", "shortname": ":poodle:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "101", "animal", "dog", "nature", "poodle", "clip", "showy", "sophisticated", "vain" ], "moji": "🐩" }, "poop": { "unicode": "1F4A9", "unicode_alternates": [ ], "name": "pile of poo", "shortname": ":poop:", "category": "people", "aliases": [ ":shit:", ":hankey:", ":poo:" ], "aliases_ascii": [ ], "keywords": [ "poop", "shit", "shitface", "turd", "poo", "bathroom", "sol", "diarrhea" ], "moji": "💩" }, "popcorn": { "unicode": "1F37F", "unicode_alternates": [ ], "name": "popcorn", "shortname": ":popcorn:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "parties" ], "moji": "🍿" }, "post_office": { "unicode": "1F3E3", "unicode_alternates": [ ], "name": "japanese post office", "shortname": ":post_office:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "communication", "email", "places", "post office" ], "moji": "🏣" }, "postal_horn": { "unicode": "1F4EF", "unicode_alternates": [ ], "name": "postal horn", "shortname": ":postal_horn:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "instrument", "music", "object" ], "moji": "📯" }, "postbox": { "unicode": "1F4EE", "unicode_alternates": [ ], "name": "postbox", "shortname": ":postbox:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "email", "envelope", "letter", "object" ], "moji": "📮" }, "potable_water": { "unicode": "1F6B0", "unicode_alternates": [ ], "name": "potable water symbol", "shortname": ":potable_water:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "cleaning", "faucet", "liquid", "restroom", "potable", "water", "drinkable", "pure", "clear", "clean", "aqua", "h20", "symbol" ], "moji": "🚰" }, "potato": { "unicode": "1F954", "unicode_alternates": [ ], "name": "potato", "shortname": ":potato:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥔" }, "pouch": { "unicode": "1F45D", "unicode_alternates": [ ], "name": "pouch", "shortname": ":pouch:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "bag", "pouch", "cosmetic", "packing", "grandma", "makeup", "women", "fashion" ], "moji": "👝" }, "poultry_leg": { "unicode": "1F357", "unicode_alternates": [ ], "name": "poultry leg", "shortname": ":poultry_leg:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "meat", "poultry", "leg", "chicken", "fried", "holidays" ], "moji": "🍗" }, "pound": { "unicode": "1F4B7", "unicode_alternates": [ ], "name": "banknote with pound sign", "shortname": ":pound:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bills", "british", "currency", "england", "money", "sterling", "uk", "pound", "britain", "banknote", "paper", "cash" ], "moji": "💷" }, "pouting_cat": { "unicode": "1F63E", "unicode_alternates": [ ], "name": "pouting cat face", "shortname": ":pouting_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "pout", "annoyed", "miffed", "glower", "frown", "cat" ], "moji": "😾" }, "pray": { "unicode": "1F64F", "unicode_alternates": [ ], "name": "person with folded hands", "shortname": ":pray:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "hands", "sorrow", "regret", "sorry", "body", "hi", "luck", "thank you", "diversity", "scientology" ], "moji": "🙏" }, "pray_tone1": { "unicode": "1F64F-1F3FB", "unicode_alternates": [ ], "name": "person with folded hands tone 1", "shortname": ":pray_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏻" }, "pray_tone2": { "unicode": "1F64F-1F3FC", "unicode_alternates": [ ], "name": "person with folded hands tone 2", "shortname": ":pray_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏼" }, "pray_tone3": { "unicode": "1F64F-1F3FD", "unicode_alternates": [ ], "name": "person with folded hands tone 3", "shortname": ":pray_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏽" }, "pray_tone4": { "unicode": "1F64F-1F3FE", "unicode_alternates": [ ], "name": "person with folded hands tone 4", "shortname": ":pray_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏾" }, "pray_tone5": { "unicode": "1F64F-1F3FF", "unicode_alternates": [ ], "name": "person with folded hands tone 5", "shortname": ":pray_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "highfive", "hope", "namaste", "please", "wish", "pray", "high five", "sorrow", "regret", "sorry" ], "moji": "🙏🏿" }, "prayer_beads": { "unicode": "1F4FF", "unicode_alternates": [ ], "name": "prayer beads", "shortname": ":prayer_beads:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "object", "rosary" ], "moji": "📿" }, "pregnant_woman": { "unicode": "1F930", "unicode_alternates": [ ], "name": "pregnant woman", "shortname": ":pregnant_woman:", "category": "people", "aliases": [ ":expecting_woman:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰" }, "pregnant_woman_tone1": { "unicode": "1F930-1F3FB", "unicode_alternates": [ ], "name": "pregnant woman tone 1", "shortname": ":pregnant_woman_tone1:", "category": "people", "aliases": [ ":expecting_woman_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰🏻" }, "pregnant_woman_tone2": { "unicode": "1F930-1F3FC", "unicode_alternates": [ ], "name": "pregnant woman tone 2", "shortname": ":pregnant_woman_tone2:", "category": "people", "aliases": [ ":expecting_woman_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰🏼" }, "pregnant_woman_tone3": { "unicode": "1F930-1F3FD", "unicode_alternates": [ ], "name": "pregnant woman tone 3", "shortname": ":pregnant_woman_tone3:", "category": "people", "aliases": [ ":expecting_woman_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰🏽" }, "pregnant_woman_tone4": { "unicode": "1F930-1F3FE", "unicode_alternates": [ ], "name": "pregnant woman tone 4", "shortname": ":pregnant_woman_tone4:", "category": "people", "aliases": [ ":expecting_woman_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰🏾" }, "pregnant_woman_tone5": { "unicode": "1F930-1F3FF", "unicode_alternates": [ ], "name": "pregnant woman tone 5", "shortname": ":pregnant_woman_tone5:", "category": "people", "aliases": [ ":expecting_woman_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤰🏿" }, "prince": { "unicode": "1F934", "unicode_alternates": [ ], "name": "prince", "shortname": ":prince:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴" }, "prince_tone1": { "unicode": "1F934-1F3FB", "unicode_alternates": [ ], "name": "prince tone 1", "shortname": ":prince_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴🏻" }, "prince_tone2": { "unicode": "1F934-1F3FC", "unicode_alternates": [ ], "name": "prince tone 2", "shortname": ":prince_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴🏼" }, "prince_tone3": { "unicode": "1F934-1F3FD", "unicode_alternates": [ ], "name": "prince tone 3", "shortname": ":prince_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴🏽" }, "prince_tone4": { "unicode": "1F934-1F3FE", "unicode_alternates": [ ], "name": "prince tone 4", "shortname": ":prince_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴🏾" }, "prince_tone5": { "unicode": "1F934-1F3FF", "unicode_alternates": [ ], "name": "prince tone 5", "shortname": ":prince_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤴🏿" }, "princess": { "unicode": "1F478", "unicode_alternates": [ ], "name": "princess", "shortname": ":princess:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "princess", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance", "people", "women", "diversity", "beautiful", "girls night" ], "moji": "👸" }, "princess_tone1": { "unicode": "1F478-1F3FB", "unicode_alternates": [ ], "name": "princess tone 1", "shortname": ":princess_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏻" }, "princess_tone2": { "unicode": "1F478-1F3FC", "unicode_alternates": [ ], "name": "princess tone 2", "shortname": ":princess_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏼" }, "princess_tone3": { "unicode": "1F478-1F3FD", "unicode_alternates": [ ], "name": "princess tone 3", "shortname": ":princess_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏽" }, "princess_tone4": { "unicode": "1F478-1F3FE", "unicode_alternates": [ ], "name": "princess tone 4", "shortname": ":princess_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏾" }, "princess_tone5": { "unicode": "1F478-1F3FF", "unicode_alternates": [ ], "name": "princess tone 5", "shortname": ":princess_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blond", "crown", "female", "girl", "woman", "royal", "royalty", "king", "queen", "daughter", "disney", "high-maintenance" ], "moji": "👸🏿" }, "printer": { "unicode": "1F5A8", "unicode_alternates": [ ], "name": "printer", "shortname": ":printer:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hardcopy", "paper", "inkjet", "laser", "electronics", "work", "office" ], "moji": "🖨" }, "projector": { "unicode": "1F4FD", "unicode_alternates": [ ], "name": "film projector", "shortname": ":projector:", "category": "objects", "aliases": [ ":film_projector:" ], "aliases_ascii": [ ], "keywords": [ "movie", "video", "motion", "picture", "8mm", "16mm", "object", "camera" ], "moji": "📽" }, "punch": { "unicode": "1F44A", "unicode_alternates": [ ], "name": "fisted hand sign", "shortname": ":punch:", "category": "people", "aliases": [ ":fist_oncoming:" ], "aliases_ascii": [ ], "keywords": [ "fist", "hand", "body", "hands", "hi", "fist bump", "diversity", "boys night" ], "moji": "👊" }, "punch_tone1": { "unicode": "1F44A-1F3FB", "unicode_alternates": [ ], "name": "fisted hand sign tone 1", "shortname": ":punch_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fist", "punch" ], "moji": "👊🏻" }, "punch_tone2": { "unicode": "1F44A-1F3FC", "unicode_alternates": [ ], "name": "fisted hand sign tone 2", "shortname": ":punch_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fist", "punch" ], "moji": "👊🏼" }, "punch_tone3": { "unicode": "1F44A-1F3FD", "unicode_alternates": [ ], "name": "fisted hand sign tone 3", "shortname": ":punch_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fist", "punch" ], "moji": "👊🏽" }, "punch_tone4": { "unicode": "1F44A-1F3FE", "unicode_alternates": [ ], "name": "fisted hand sign tone 4", "shortname": ":punch_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fist", "punch" ], "moji": "👊🏾" }, "punch_tone5": { "unicode": "1F44A-1F3FF", "unicode_alternates": [ ], "name": "fisted hand sign tone 5", "shortname": ":punch_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fist", "punch" ], "moji": "👊🏿" }, "purple_heart": { "unicode": "1F49C", "unicode_alternates": [ ], "name": "purple heart", "shortname": ":purple_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "purple", "violet", "heart", "sensitive", "understanding", "compassionate", "compassion", "duty", "honor", "royalty", "veteran", "sacrifice", "symbol" ], "moji": "💜" }, "purse": { "unicode": "1F45B", "unicode_alternates": [ ], "name": "purse", "shortname": ":purse:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "fashion", "money", "purse", "clutch", "bag", "handbag", "coin bag", "accessory", "ladies", "shopping", "women" ], "moji": "👛" }, "pushpin": { "unicode": "1F4CC", "unicode_alternates": [ ], "name": "pushpin", "shortname": ":pushpin:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "stationery", "object", "office" ], "moji": "📌" }, "put_litter_in_its_place": { "unicode": "1F6AE", "unicode_alternates": [ ], "name": "put litter in its place symbol", "shortname": ":put_litter_in_its_place:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "litter", "waste", "trash", "garbage", "receptacle", "can", "symbol" ], "moji": "🚮" }, "question": { "unicode": "2753", "unicode_alternates": [ ], "name": "black question mark ornament", "shortname": ":question:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "confused", "doubt", "symbol", "punctuation", "wth" ], "moji": "❓" }, "rabbit": { "unicode": "1F430", "unicode_alternates": [ ], "name": "rabbit face", "shortname": ":rabbit:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife" ], "moji": "🐰" }, "rabbit2": { "unicode": "1F407", "unicode_alternates": [ ], "name": "rabbit", "shortname": ":rabbit2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "rabbit", "bunny", "easter", "reproduction", "prolific", "wildlife" ], "moji": "🐇" }, "race_car": { "unicode": "1F3CE", "unicode_alternates": [ ], "name": "racing car", "shortname": ":race_car:", "category": "travel", "aliases": [ ":racing_car:" ], "aliases_ascii": [ ], "keywords": [ "formula 1", "race", "stock", "nascar", "speed", "drive", "transportation", "car" ], "moji": "🏎" }, "racehorse": { "unicode": "1F40E", "unicode_alternates": [ ], "name": "horse", "shortname": ":racehorse:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "gamble", "horse", "powerful", "draft", "calvary", "cowboy", "cowgirl", "mounted", "race", "ride", "gallop", "trot", "colt", "filly", "mare", "stallion", "gelding", "yearling", "thoroughbred", "pony", "wildlife" ], "moji": "🐎" }, "radio": { "unicode": "1F4FB", "unicode_alternates": [ ], "name": "radio", "shortname": ":radio:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "music", "podcast", "program", "electronics" ], "moji": "📻" }, "radio_button": { "unicode": "1F518", "unicode_alternates": [ ], "name": "radio button", "shortname": ":radio_button:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "input", "symbol", "circle" ], "moji": "🔘" }, "radioactive": { "unicode": "2622", "unicode_alternates": [ ], "name": "radioactive sign", "shortname": ":radioactive:", "category": "symbols", "aliases": [ ":radioactive_sign:" ], "aliases_ascii": [ ], "keywords": [ "symbol", "science" ], "moji": "☢" }, "rage": { "unicode": "1F621", "unicode_alternates": [ ], "name": "pouting face", "shortname": ":rage:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "angry", "despise", "hate", "mad", "pout", "anger", "rage", "irate", "smiley", "emotion" ], "moji": "😡" }, "railway_car": { "unicode": "1F683", "unicode_alternates": [ ], "name": "railway car", "shortname": ":railway_car:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "railway", "rail", "car", "coach", "train", "travel" ], "moji": "🚃" }, "railway_track": { "unicode": "1F6E4", "unicode_alternates": [ ], "name": "railway track", "shortname": ":railway_track:", "category": "travel", "aliases": [ ":railroad_track:" ], "aliases_ascii": [ ], "keywords": [ "train", "trolley", "subway", "locomotive", "transit", "travel", "vacation" ], "moji": "🛤" }, "rainbow": { "unicode": "1F308", "unicode_alternates": [ ], "name": "rainbow", "shortname": ":rainbow:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "happy", "nature", "photo", "sky", "unicorn", "rainbow", "color", "pride", "diversity", "spectrum", "refract", "leprechaun", "gold", "weather", "gay", "rain" ], "moji": "🌈" }, "raised_back_of_hand": { "unicode": "1F91A", "unicode_alternates": [ ], "name": "raised back of hand", "shortname": ":raised_back_of_hand:", "category": "people", "aliases": [ ":back_of_hand:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚" }, "raised_back_of_hand_tone1": { "unicode": "1F91A-1F3FB", "unicode_alternates": [ ], "name": "raised back of hand tone 1", "shortname": ":raised_back_of_hand_tone1:", "category": "people", "aliases": [ ":back_of_hand_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚🏻" }, "raised_back_of_hand_tone2": { "unicode": "1F91A-1F3FC", "unicode_alternates": [ ], "name": "raised back of hand tone 2", "shortname": ":raised_back_of_hand_tone2:", "category": "people", "aliases": [ ":back_of_hand_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚🏼" }, "raised_back_of_hand_tone3": { "unicode": "1F91A-1F3FD", "unicode_alternates": [ ], "name": "raised back of hand tone 3", "shortname": ":raised_back_of_hand_tone3:", "category": "people", "aliases": [ ":back_of_hand_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚🏽" }, "raised_back_of_hand_tone4": { "unicode": "1F91A-1F3FE", "unicode_alternates": [ ], "name": "raised back of hand tone 4", "shortname": ":raised_back_of_hand_tone4:", "category": "people", "aliases": [ ":back_of_hand_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚🏾" }, "raised_back_of_hand_tone5": { "unicode": "1F91A-1F3FF", "unicode_alternates": [ ], "name": "raised back of hand tone 5", "shortname": ":raised_back_of_hand_tone5:", "category": "people", "aliases": [ ":back_of_hand_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤚🏿" }, "raised_hand": { "unicode": "270B", "unicode_alternates": [ ], "name": "raised hand", "shortname": ":raised_hand:", "category": "people", "aliases": [ ":hand:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "body", "hands", "hi", "diversity", "girls night" ], "moji": "✋" }, "raised_hand_tone1": { "unicode": "270B-1F3FB", "unicode_alternates": [ ], "name": "raised hand tone 1", "shortname": ":raised_hand_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏻" }, "raised_hand_tone2": { "unicode": "270B-1F3FC", "unicode_alternates": [ ], "name": "raised hand tone 2", "shortname": ":raised_hand_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏼" }, "raised_hand_tone3": { "unicode": "270B-1F3FD", "unicode_alternates": [ ], "name": "raised hand tone 3", "shortname": ":raised_hand_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏽" }, "raised_hand_tone4": { "unicode": "270B-1F3FE", "unicode_alternates": [ ], "name": "raised hand tone 4", "shortname": ":raised_hand_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏾" }, "raised_hand_tone5": { "unicode": "270B-1F3FF", "unicode_alternates": [ ], "name": "raised hand tone 5", "shortname": ":raised_hand_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman" ], "moji": "✋🏿" }, "raised_hands": { "unicode": "1F64C", "unicode_alternates": [ ], "name": "person raising both hands in celebration", "shortname": ":raised_hands:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "body", "hands", "diversity", "perfect", "good", "parties" ], "moji": "🙌" }, "raised_hands_tone1": { "unicode": "1F64C-1F3FB", "unicode_alternates": [ ], "name": "person raising both hands in celebration tone 1", "shortname": ":raised_hands_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏻" }, "raised_hands_tone2": { "unicode": "1F64C-1F3FC", "unicode_alternates": [ ], "name": "person raising both hands in celebration tone 2", "shortname": ":raised_hands_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏼" }, "raised_hands_tone3": { "unicode": "1F64C-1F3FD", "unicode_alternates": [ ], "name": "person raising both hands in celebration tone 3", "shortname": ":raised_hands_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏽" }, "raised_hands_tone4": { "unicode": "1F64C-1F3FE", "unicode_alternates": [ ], "name": "person raising both hands in celebration tone 4", "shortname": ":raised_hands_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏾" }, "raised_hands_tone5": { "unicode": "1F64C-1F3FF", "unicode_alternates": [ ], "name": "person raising both hands in celebration tone 5", "shortname": ":raised_hands_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "gesture", "hooray", "winning", "woot", "yay", "banzai", "raised" ], "moji": "🙌🏿" }, "raising_hand": { "unicode": "1F64B", "unicode_alternates": [ ], "name": "happy person raising one hand", "shortname": ":raising_hand:", "category": "people", "aliases": [ ":raising_hand_woman:" ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "hand", "raise", "notice", "attention", "answer", "people", "women", "diversity" ], "moji": "🙋" }, "raising_hand_tone1": { "unicode": "1F64B-1F3FB", "unicode_alternates": [ ], "name": "happy person raising one hand tone1", "shortname": ":raising_hand_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏻" }, "raising_hand_tone2": { "unicode": "1F64B-1F3FC", "unicode_alternates": [ ], "name": "happy person raising one hand tone2", "shortname": ":raising_hand_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏼" }, "raising_hand_tone3": { "unicode": "1F64B-1F3FD", "unicode_alternates": [ ], "name": "happy person raising one hand tone3", "shortname": ":raising_hand_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏽" }, "raising_hand_tone4": { "unicode": "1F64B-1F3FE", "unicode_alternates": [ ], "name": "happy person raising one hand tone4", "shortname": ":raising_hand_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏾" }, "raising_hand_tone5": { "unicode": "1F64B-1F3FF", "unicode_alternates": [ ], "name": "happy person raising one hand tone5", "shortname": ":raising_hand_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "woman", "raise", "notice", "attention", "answer" ], "moji": "🙋🏿" }, "ram": { "unicode": "1F40F", "unicode_alternates": [ ], "name": "ram", "shortname": ":ram:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "sheep", "ram", "male", "horn", "horns", "wildlife" ], "moji": "🐏" }, "ramen": { "unicode": "1F35C", "unicode_alternates": [ ], "name": "steaming bowl", "shortname": ":ramen:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chipsticks", "food", "japanese", "noodle", "ramen", "noodles", "bowl", "steaming", "soup", "japan" ], "moji": "🍜" }, "rat": { "unicode": "1F400", "unicode_alternates": [ ], "name": "rat", "shortname": ":rat:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "mouse", "rat", "rodent", "crooked", "snitch" ], "moji": "🐀" }, "record_button": { "unicode": "23FA", "unicode_alternates": [ ], "name": "black circle for record", "shortname": ":record_button:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "symbol", "circle" ], "moji": "⏺" }, "recycle": { "unicode": "267B", "unicode_alternates": [ "267B-FE0F" ], "name": "black universal recycling symbol", "shortname": ":recycle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "environment", "garbage", "trash", "symbol" ], "moji": "♻" }, "red_car": { "unicode": "1F697", "unicode_alternates": [ ], "name": "automobile", "shortname": ":red_car:", "category": "travel", "aliases": [ ":car:" ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "car", "travel" ], "moji": "🚗" }, "red_circle": { "unicode": "1F534", "unicode_alternates": [ ], "name": "large red circle", "shortname": ":red_circle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "🔴" }, "registered": { "moji": "®️", "unicode": "00AE", "unicode_alternates": [ ], "name": "registered sign", "shortname": ":registered:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alphabet", "circle", "symbol" ] }, "relaxed": { "unicode": "263A", "unicode_alternates": [ "263A-FE0F" ], "name": "white smiling face", "shortname": ":relaxed:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blush", "face", "happiness", "massage", "smile", "happy", "smiley" ], "moji": "☺" }, "relieved": { "unicode": "1F60C", "unicode_alternates": [ ], "name": "relieved face", "shortname": ":relieved:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "happiness", "massage", "phew", "relaxed", "relieved", "satisfied", "relief", "smiley", "emotion" ], "moji": "😌" }, "reminder_ribbon": { "unicode": "1F397", "unicode_alternates": [ ], "name": "reminder ribbon", "shortname": ":reminder_ribbon:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "awareness", "award" ], "moji": "🎗" }, "repeat": { "unicode": "1F501", "unicode_alternates": [ ], "name": "clockwise rightwards and leftwards open circle arr", "shortname": ":repeat:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "loop", "record", "arrow", "symbol" ], "moji": "🔁" }, "repeat_one": { "unicode": "1F502", "unicode_alternates": [ ], "name": "clockwise rightwards and leftwards open circle arr", "shortname": ":repeat_one:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "loop", "arrow", "symbol" ], "moji": "🔂" }, "restroom": { "unicode": "1F6BB", "unicode_alternates": [ ], "name": "restroom", "shortname": ":restroom:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "woman", "man", "unisex", "bathroom", "restroom", "sign", "shared", "toilet", "symbol" ], "moji": "🚻" }, "revolving_hearts": { "unicode": "1F49E", "unicode_alternates": [ ], "name": "revolving hearts", "shortname": ":revolving_hearts:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "heart", "hearts", "revolving", "moving", "circle", "multiple", "lovers", "symbol" ], "moji": "💞" }, "rewind": { "unicode": "23EA", "unicode_alternates": [ ], "name": "black left-pointing double triangle", "shortname": ":rewind:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "play", "arrow", "symbol" ], "moji": "⏪" }, "rhino": { "unicode": "1F98F", "unicode_alternates": [ ], "name": "rhinoceros", "shortname": ":rhino:", "category": "nature", "aliases": [ ":rhinoceros:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦏" }, "ribbon": { "unicode": "1F380", "unicode_alternates": [ ], "name": "ribbon", "shortname": ":ribbon:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bowtie", "decoration", "girl", "pink", "ribbon", "lace", "wrap", "decorate", "object", "gift", "birthday" ], "moji": "🎀" }, "rice": { "unicode": "1F35A", "unicode_alternates": [ ], "name": "cooked rice", "shortname": ":rice:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "rice", "white", "grain", "bowl", "sushi", "japan" ], "moji": "🍚" }, "rice_ball": { "unicode": "1F359", "unicode_alternates": [ ], "name": "rice ball", "shortname": ":rice_ball:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "japanese", "rice", "ball", "white", "nori", "seaweed", "sushi", "japan" ], "moji": "🍙" }, "rice_cracker": { "unicode": "1F358", "unicode_alternates": [ ], "name": "rice cracker", "shortname": ":rice_cracker:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "japanese", "rice", "cracker", "seaweed", "sushi" ], "moji": "🍘" }, "rice_scene": { "unicode": "1F391", "unicode_alternates": [ ], "name": "moon viewing ceremony", "shortname": ":rice_scene:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "photo", "moon", "viewing", "observing", "otsukimi", "tsukimi", "rice", "scene", "festival", "autumn", "places", "space", "sky", "travel" ], "moji": "🎑" }, "right_facing_fist": { "unicode": "1F91C", "unicode_alternates": [ ], "name": "right-facing fist", "shortname": ":right_facing_fist:", "category": "people", "aliases": [ ":right_fist:", ":fist_right:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜" }, "right_facing_fist_tone1": { "unicode": "1F91C-1F3FB", "unicode_alternates": [ ], "name": "right facing fist tone 1", "shortname": ":right_facing_fist_tone1:", "category": "people", "aliases": [ ":right_fist_tone1:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜🏻" }, "right_facing_fist_tone2": { "unicode": "1F91C-1F3FC", "unicode_alternates": [ ], "name": "right facing fist tone 2", "shortname": ":right_facing_fist_tone2:", "category": "people", "aliases": [ ":right_fist_tone2:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜🏼" }, "right_facing_fist_tone3": { "unicode": "1F91C-1F3FD", "unicode_alternates": [ ], "name": "right facing fist tone 3", "shortname": ":right_facing_fist_tone3:", "category": "people", "aliases": [ ":right_fist_tone3:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜🏽" }, "right_facing_fist_tone4": { "unicode": "1F91C-1F3FE", "unicode_alternates": [ ], "name": "right facing fist tone 4", "shortname": ":right_facing_fist_tone4:", "category": "people", "aliases": [ ":right_fist_tone4:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜🏾" }, "right_facing_fist_tone5": { "unicode": "1F91C-1F3FF", "unicode_alternates": [ ], "name": "right facing fist tone 5", "shortname": ":right_facing_fist_tone5:", "category": "people", "aliases": [ ":right_fist_tone5:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤜🏿" }, "ring": { "unicode": "1F48D", "unicode_alternates": [ ], "name": "ring", "shortname": ":ring:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "marriage", "propose", "valentines", "wedding", "object", "fashion", "gem", "accessories" ], "moji": "💍" }, "robot": { "unicode": "1F916", "unicode_alternates": [ ], "name": "robot face", "shortname": ":robot:", "category": "people", "aliases": [ ":robot_face:" ], "aliases_ascii": [ ], "keywords": [ "monster", "robot" ], "moji": "🤖" }, "rocket": { "unicode": "1F680", "unicode_alternates": [ ], "name": "rocket", "shortname": ":rocket:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "launch", "ship", "staffmode", "rocket", "space", "spacecraft", "astronaut", "cosmonaut", "transportation", "object", "fly", "blast" ], "moji": "🚀" }, "rofl": { "unicode": "1F923", "unicode_alternates": [ ], "name": "rolling on the floor laughing", "shortname": ":rofl:", "category": "people", "aliases": [ ":rolling_on_the_floor_laughing:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤣" }, "roller_coaster": { "unicode": "1F3A2", "unicode_alternates": [ ], "name": "roller coaster", "shortname": ":roller_coaster:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "carnival", "fun", "photo", "play", "playground", "roller", "coaster", "amusement", "park", "fair", "ride", "entertainment", "places", "vacation", "roller coaster" ], "moji": "🎢" }, "rolling_eyes": { "unicode": "1F644", "unicode_alternates": [ ], "name": "face with rolling eyes", "shortname": ":rolling_eyes:", "category": "people", "aliases": [ ":face_with_rolling_eyes:", ":roll_eyes:" ], "aliases_ascii": [ ], "keywords": [ "mad", "smiley", "rolling eyes", "emotion", "sarcastic" ], "moji": "🙄" }, "rooster": { "unicode": "1F413", "unicode_alternates": [ ], "name": "rooster", "shortname": ":rooster:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "chicken", "nature", "rooster", "cockerel", "cock", "male", "cock-a-doodle-doo", "crowing" ], "moji": "🐓" }, "rose": { "unicode": "1F339", "unicode_alternates": [ ], "name": "rose", "shortname": ":rose:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flowers", "love", "valentines", "rose", "fragrant", "flower", "thorns", "petals", "romance", "nature", "plant", "rip", "condolence", "beautiful" ], "moji": "🌹" }, "rosette": { "unicode": "1F3F5", "unicode_alternates": [ ], "name": "rosette", "shortname": ":rosette:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flower", "tropical" ], "moji": "🏵" }, "rotating_light": { "unicode": "1F6A8", "unicode_alternates": [ ], "name": "police cars revolving light", "shortname": ":rotating_light:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "911", "ambulance", "emergency", "police", "light", "transportation", "object" ], "moji": "🚨" }, "round_pushpin": { "unicode": "1F4CD", "unicode_alternates": [ ], "name": "round pushpin", "shortname": ":round_pushpin:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "stationery", "object", "office" ], "moji": "📍" }, "rowboat": { "unicode": "1F6A3", "unicode_alternates": [ ], "name": "rowboat", "shortname": ":rowboat:", "category": "activity", "aliases": [ ":rowing_man:" ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "sports", "water", "boat", "row", "oar", "paddle", "men", "workout", "sport", "rowing", "diversity" ], "moji": "🚣" }, "rowboat_tone1": { "unicode": "1F6A3-1F3FB", "unicode_alternates": [ ], "name": "rowboat tone 1", "shortname": ":rowboat_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏻" }, "rowboat_tone2": { "unicode": "1F6A3-1F3FC", "unicode_alternates": [ ], "name": "rowboat tone 2", "shortname": ":rowboat_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏼" }, "rowboat_tone3": { "unicode": "1F6A3-1F3FD", "unicode_alternates": [ ], "name": "rowboat tone 3", "shortname": ":rowboat_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏽" }, "rowboat_tone4": { "unicode": "1F6A3-1F3FE", "unicode_alternates": [ ], "name": "rowboat tone 4", "shortname": ":rowboat_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏾" }, "rowboat_tone5": { "unicode": "1F6A3-1F3FF", "unicode_alternates": [ ], "name": "rowboat tone 5", "shortname": ":rowboat_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "hobby", "ship", "water", "boat", "row", "oar", "paddle" ], "moji": "🚣🏿" }, "rugby_football": { "unicode": "1F3C9", "unicode_alternates": [ ], "name": "rugby football", "shortname": ":rugby_football:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sports", "rugby", "football", "ball", "sport", "team", "england", "game" ], "moji": "🏉" }, "runner": { "unicode": "1F3C3", "unicode_alternates": [ ], "name": "runner", "shortname": ":runner:", "category": "people", "aliases": [ ":running_man:" ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "walking", "run", "runner", "jog", "sprint", "race", "dash", "people", "men", "diversity", "boys night" ], "moji": "🏃" }, "runner_tone1": { "unicode": "1F3C3-1F3FB", "unicode_alternates": [ ], "name": "runner tone 1", "shortname": ":runner_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏻" }, "runner_tone2": { "unicode": "1F3C3-1F3FC", "unicode_alternates": [ ], "name": "runner tone 2", "shortname": ":runner_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏼" }, "runner_tone3": { "unicode": "1F3C3-1F3FD", "unicode_alternates": [ ], "name": "runner tone 3", "shortname": ":runner_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏽" }, "runner_tone4": { "unicode": "1F3C3-1F3FE", "unicode_alternates": [ ], "name": "runner tone 4", "shortname": ":runner_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏾" }, "runner_tone5": { "unicode": "1F3C3-1F3FF", "unicode_alternates": [ ], "name": "runner tone 5", "shortname": ":runner_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exercise", "man", "run", "jog", "sprint", "race", "dash", "marathon" ], "moji": "🏃🏿" }, "running_shirt_with_sash": { "unicode": "1F3BD", "unicode_alternates": [ ], "name": "running shirt with sash", "shortname": ":running_shirt_with_sash:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "pageant", "play", "running", "run", "shirt", "cloths", "compete", "sports", "award" ], "moji": "🎽" }, "sa": { "unicode": "1F202", "unicode_alternates": [ ], "name": "squared katakana sa", "shortname": ":sa:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "japanese", "symbol", "word" ], "moji": "🈂" }, "sagittarius": { "unicode": "2650", "unicode_alternates": [ "2650-FE0F" ], "name": "sagittarius", "shortname": ":sagittarius:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sagittarius", "centaur", "archer", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♐" }, "sailboat": { "unicode": "26F5", "unicode_alternates": [ "26F5-FE0F" ], "name": "sailboat", "shortname": ":sailboat:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ship", "transportation", "travel", "boat", "vacation" ], "moji": "⛵" }, "sake": { "unicode": "1F376", "unicode_alternates": [ ], "name": "sake bottle and cup", "shortname": ":sake:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beverage", "drink", "drunk", "wine", "sake", "rice", "ferment", "alcohol", "japanese", "japan", "girls night" ], "moji": "🍶" }, "salad": { "unicode": "1F957", "unicode_alternates": [ ], "name": "green salad", "shortname": ":salad:", "category": "food", "aliases": [ ":green_salad:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥗" }, "sandal": { "unicode": "1F461", "unicode_alternates": [ ], "name": "womans sandal", "shortname": ":sandal:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "shoes", "shoe", "accessories" ], "moji": "👡" }, "santa": { "unicode": "1F385", "unicode_alternates": [ ], "name": "father christmas", "shortname": ":santa:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "christmas", "father christmas", "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "father", "holiday", "people", "hat", "winter", "holidays", "diversity" ], "moji": "🎅" }, "santa_tone1": { "unicode": "1F385-1F3FB", "unicode_alternates": [ ], "name": "father christmas tone 1", "shortname": ":santa_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏻" }, "santa_tone2": { "unicode": "1F385-1F3FC", "unicode_alternates": [ ], "name": "father christmas tone 2", "shortname": ":santa_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏼" }, "santa_tone3": { "unicode": "1F385-1F3FD", "unicode_alternates": [ ], "name": "father christmas tone 3", "shortname": ":santa_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏽" }, "santa_tone4": { "unicode": "1F385-1F3FE", "unicode_alternates": [ ], "name": "father christmas tone 4", "shortname": ":santa_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏾" }, "santa_tone5": { "unicode": "1F385-1F3FF", "unicode_alternates": [ ], "name": "father christmas tone 5", "shortname": ":santa_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "festival", "male", "man", "xmas", "santa", "saint nick", "jolly", "ho ho ho", "north pole", "presents", "gifts", "naughty", "nice", "sleigh", "holiday" ], "moji": "🎅🏿" }, "satellite": { "unicode": "1F4E1", "unicode_alternates": [ ], "name": "satellite antenna", "shortname": ":satellite:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "object" ], "moji": "📡" }, "satellite_orbital": { "unicode": "1F6F0", "unicode_alternates": [ ], "name": "satellite", "shortname": ":satellite_orbital:", "category": "travel", "aliases": [ ":artificial_satellite:" ], "aliases_ascii": [ ], "keywords": [ "communication", "orbital", "space", "object" ], "moji": "🛰" }, "saxophone": { "unicode": "1F3B7", "unicode_alternates": [ ], "name": "saxophone", "shortname": ":saxophone:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "instrument", "music", "saxophone", "sax", "woodwind", "instruments" ], "moji": "🎷" }, "scales": { "unicode": "2696", "unicode_alternates": [ ], "name": "scales", "shortname": ":scales:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "balance", "justice", "libra", "object", "tool", "weight", "zodiac" ], "moji": "⚖" }, "school": { "unicode": "1F3EB", "unicode_alternates": [ ], "name": "school", "shortname": ":school:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "building", "school", "university", "elementary", "middle", "high", "college", "teach", "education", "places" ], "moji": "🏫" }, "school_satchel": { "unicode": "1F392", "unicode_alternates": [ ], "name": "school satchel", "shortname": ":school_satchel:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bag", "education", "student", "school", "satchel", "backpack", "packing", "pack", "hike", "adventure", "travel", "sightsee", "fashion", "office", "vacation", "accessories" ], "moji": "🎒" }, "scissors": { "unicode": "2702", "unicode_alternates": [ "2702-FE0F" ], "name": "black scissors", "shortname": ":scissors:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cut", "stationery", "object", "tool", "weapon", "office" ], "moji": "✂" }, "scooter": { "unicode": "1F6F4", "unicode_alternates": [ ], "name": "scooter", "shortname": ":scooter:", "category": "travel", "aliases": [ ":kick_scooter:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🛴" }, "scorpion": { "unicode": "1F982", "unicode_alternates": [ ], "name": "scorpion", "shortname": ":scorpion:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "insects", "reptile", "animal" ], "moji": "🦂" }, "scorpius": { "unicode": "264F", "unicode_alternates": [ "264F-FE0F" ], "name": "scorpius", "shortname": ":scorpius:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "scorpius", "scorpion", "scorpio", "astrology", "greek", "constellation", "stars", "zodiac", "sign", "horoscope", "symbol" ], "moji": "♏" }, "scream": { "unicode": "1F631", "unicode_alternates": [ ], "name": "face screaming in fear", "shortname": ":scream:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "munch", "scream", "painting", "artist", "alien", "smiley", "surprised", "wow", "emotion", "omg" ], "moji": "😱" }, "scream_cat": { "unicode": "1F640", "unicode_alternates": [ ], "name": "weary cat face", "shortname": ":scream_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "munch", "weary", "sleepy", "tired", "tiredness", "study", "finals", "school", "exhausted", "scream", "painting", "artist", "cat" ], "moji": "🙀" }, "scroll": { "unicode": "1F4DC", "unicode_alternates": [ ], "name": "scroll", "shortname": ":scroll:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "documents", "object", "office" ], "moji": "📜" }, "seat": { "unicode": "1F4BA", "unicode_alternates": [ ], "name": "seat", "shortname": ":seat:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sit", "transportation", "object", "travel", "vacation" ], "moji": "💺" }, "second_place": { "unicode": "1F948", "unicode_alternates": [ ], "name": "second place medal", "shortname": ":second_place:", "category": "activity", "aliases": [ ":second_place_medal:", ":2nd_place_medal:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥈" }, "secret": { "unicode": "3299", "unicode_alternates": [ "3299-FE0F" ], "name": "circled ideograph secret", "shortname": ":secret:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "privacy", "japan", "symbol" ], "moji": "㊙" }, "see_no_evil": { "unicode": "1F648", "unicode_alternates": [ ], "name": "see-no-evil monkey", "shortname": ":see_no_evil:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "monkey", "nature", "see", "eyes", "vision", "sight", "mizaru" ], "moji": "🙈" }, "seedling": { "unicode": "1F331", "unicode_alternates": [ ], "name": "seedling", "shortname": ":seedling:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "grass", "lawn", "nature", "plant", "seedling", "new", "start", "grow", "leaf" ], "moji": "🌱" }, "selfie": { "unicode": "1F933", "unicode_alternates": [ ], "name": "selfie", "shortname": ":selfie:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳" }, "selfie_tone1": { "unicode": "1F933-1F3FB", "unicode_alternates": [ ], "name": "selfie tone 1", "shortname": ":selfie_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳🏻" }, "selfie_tone2": { "unicode": "1F933-1F3FC", "unicode_alternates": [ ], "name": "selfie tone 2", "shortname": ":selfie_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳🏼" }, "selfie_tone3": { "unicode": "1F933-1F3FD", "unicode_alternates": [ ], "name": "selfie tone 3", "shortname": ":selfie_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳🏽" }, "selfie_tone4": { "unicode": "1F933-1F3FE", "unicode_alternates": [ ], "name": "selfie tone 4", "shortname": ":selfie_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳🏾" }, "selfie_tone5": { "unicode": "1F933-1F3FF", "unicode_alternates": [ ], "name": "selfie tone 5", "shortname": ":selfie_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤳🏿" }, "seven": { "moji": "7️⃣", "unicode": "0037-20E3", "unicode_alternates": [ "0037-FE0F-20E3" ], "name": "keycap digit seven", "shortname": ":seven:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "7", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "shallow_pan_of_food": { "unicode": "1F958", "unicode_alternates": [ ], "name": "shallow pan of food", "shortname": ":shallow_pan_of_food:", "category": "food", "aliases": [ ":paella:" ], "aliases_ascii": [ ], "keywords": [ "pan of food" ], "moji": "🥘" }, "shamrock": { "unicode": "2618", "unicode_alternates": [ ], "name": "shamrock", "shortname": ":shamrock:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "luck", "leaf" ], "moji": "☘" }, "shark": { "unicode": "1F988", "unicode_alternates": [ ], "name": "shark", "shortname": ":shark:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦈" }, "shaved_ice": { "unicode": "1F367", "unicode_alternates": [ ], "name": "shaved ice", "shortname": ":shaved_ice:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "desert", "hot", "shaved", "ice", "dessert", "treat", "syrup", "flavoring", "food" ], "moji": "🍧" }, "sheep": { "unicode": "1F411", "unicode_alternates": [ ], "name": "sheep", "shortname": ":sheep:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "sheep", "wool", "flock", "follower", "ewe", "female", "lamb" ], "moji": "🐑" }, "shell": { "unicode": "1F41A", "unicode_alternates": [ ], "name": "spiral shell", "shortname": ":shell:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beach", "nature", "sea", "shell", "spiral", "sand", "crab", "nautilus" ], "moji": "🐚" }, "shield": { "unicode": "1F6E1", "unicode_alternates": [ ], "name": "shield", "shortname": ":shield:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "interstate", "route", "sign", "highway", "object" ], "moji": "🛡" }, "shinto_shrine": { "unicode": "26E9", "unicode_alternates": [ ], "name": "shinto shrine", "shortname": ":shinto_shrine:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "religion", "symbol", "places", "building", "travel", "vacation" ], "moji": "⛩" }, "ship": { "unicode": "1F6A2", "unicode_alternates": [ ], "name": "ship", "shortname": ":ship:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "titanic", "transportation", "ferry", "ship", "boat", "travel", "vacation" ], "moji": "🚢" }, "shirt": { "unicode": "1F455", "unicode_alternates": [ ], "name": "t-shirt", "shortname": ":shirt:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cloth", "fashion" ], "moji": "👕" }, "shopping_bags": { "unicode": "1F6CD", "unicode_alternates": [ ], "name": "shopping bags", "shortname": ":shopping_bags:", "category": "objects", "aliases": [ ":shopping:" ], "aliases_ascii": [ ], "keywords": [ "purchase", "mall", "buy", "store", "shop", "object", "birthday", "parties" ], "moji": "🛍" }, "shopping_cart": { "unicode": "1F6D2", "unicode_alternates": [ ], "name": "shopping trolley", "shortname": ":shopping_cart:", "category": "objects", "aliases": [ ":shopping_trolley:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🛒" }, "shower": { "unicode": "1F6BF", "unicode_alternates": [ ], "name": "shower", "shortname": ":shower:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bath", "clean", "wash", "bathroom", "shower", "soap", "water", "shampoo", "lather", "object" ], "moji": "🚿" }, "shrimp": { "unicode": "1F990", "unicode_alternates": [ ], "name": "shrimp", "shortname": ":shrimp:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦐" }, "shrug": { "unicode": "1F937", "unicode_alternates": [ ], "name": "shrug", "shortname": ":shrug:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷" }, "shrug_tone1": { "unicode": "1F937-1F3FB", "unicode_alternates": [ ], "name": "shrug tone 1", "shortname": ":shrug_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷🏻" }, "shrug_tone2": { "unicode": "1F937-1F3FC", "unicode_alternates": [ ], "name": "shrug tone 2", "shortname": ":shrug_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷🏼" }, "shrug_tone3": { "unicode": "1F937-1F3FD", "unicode_alternates": [ ], "name": "shrug tone 3", "shortname": ":shrug_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷🏽" }, "shrug_tone4": { "unicode": "1F937-1F3FE", "unicode_alternates": [ ], "name": "shrug tone 4", "shortname": ":shrug_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷🏾" }, "shrug_tone5": { "unicode": "1F937-1F3FF", "unicode_alternates": [ ], "name": "shrug tone 5", "shortname": ":shrug_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤷🏿" }, "signal_strength": { "unicode": "1F4F6", "unicode_alternates": [ ], "name": "antenna with bars", "shortname": ":signal_strength:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "symbol" ], "moji": "📶" }, "six": { "moji": "6️⃣", "unicode": "0036-20E3", "unicode_alternates": [ "0036-FE0F-20E3" ], "name": "keycap digit six", "shortname": ":six:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "6", "blue-square", "numbers", "number", "math", "symbol" ] }, "six_pointed_star": { "unicode": "1F52F", "unicode_alternates": [ ], "name": "six pointed star with middle dot", "shortname": ":six_pointed_star:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "purple-square", "religion", "jew", "star", "symbol" ], "moji": "🔯" }, "ski": { "unicode": "1F3BF", "unicode_alternates": [ ], "name": "ski and ski boot", "shortname": ":ski:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cold", "sports", "winter", "ski", "downhill", "cross-country", "poles", "snow", "mountain", "alpine", "powder", "slalom", "freestyle", "sport", "skiing" ], "moji": "🎿" }, "skier": { "unicode": "26F7", "unicode_alternates": [ ], "name": "skier", "shortname": ":skier:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "person", "ski", "snow", "sport", "travel", "hat", "vacation", "cold", "skiing" ], "moji": "⛷" }, "skull": { "unicode": "1F480", "unicode_alternates": [ ], "name": "skull", "shortname": ":skull:", "category": "people", "aliases": [ ":skeleton:" ], "aliases_ascii": [ ], "keywords": [ "dead", "skeleton", "dying", "halloween", "skull" ], "moji": "💀" }, "skull_crossbones": { "unicode": "2620", "unicode_alternates": [ ], "name": "skull and crossbones", "shortname": ":skull_crossbones:", "category": "objects", "aliases": [ ":skull_and_crossbones:" ], "aliases_ascii": [ ], "keywords": [ "body", "death", "face", "monster", "person", "symbol", "dead", "skull" ], "moji": "☠" }, "sleeping": { "unicode": "1F634", "unicode_alternates": [ ], "name": "sleeping face", "shortname": ":sleeping:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "sleepy", "tired", "sleep", "sleeping", "snore", "smiley", "emotion", "goodnight" ], "moji": "😴" }, "sleeping_accommodation": { "unicode": "1F6CC", "unicode_alternates": [ ], "name": "sleeping accommodation", "shortname": ":sleeping_accommodation:", "category": "objects", "aliases": [ ":sleeping_bed:" ], "aliases_ascii": [ ], "keywords": [ "hotel", "motel", "rest", "tired" ], "moji": "🛌" }, "sleepy": { "unicode": "1F62A", "unicode_alternates": [ ], "name": "sleepy face", "shortname": ":sleepy:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "rest", "tired", "sleepy", "exhausted", "smiley", "sick", "emotion" ], "moji": "😪" }, "slight_frown": { "unicode": "1F641", "unicode_alternates": [ ], "name": "slightly frowning face", "shortname": ":slight_frown:", "category": "people", "aliases": [ ":slightly_frowning_face:" ], "aliases_ascii": [ ], "keywords": [ "slight", "frown", "unhappy", "disappointed", "sad", "smiley", "emotion" ], "moji": "🙁" }, "slight_smile": { "unicode": "1F642", "unicode_alternates": [ ], "name": "slightly smiling face", "shortname": ":slight_smile:", "category": "people", "aliases": [ ":slightly_smiling_face:" ], "aliases_ascii": [ ], "keywords": [ "slight", "smile", "happy", "smiley" ], "moji": "🙂" }, "slot_machine": { "unicode": "1F3B0", "unicode_alternates": [ ], "name": "slot machine", "shortname": ":slot_machine:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bet", "gamble", "vegas", "slot", "machine", "one-armed bandit", "slots", "luck", "game", "boys night" ], "moji": "🎰" }, "small_blue_diamond": { "unicode": "1F539", "unicode_alternates": [ ], "name": "small blue diamond", "shortname": ":small_blue_diamond:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔹" }, "small_orange_diamond": { "unicode": "1F538", "unicode_alternates": [ ], "name": "small orange diamond", "shortname": ":small_orange_diamond:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol" ], "moji": "🔸" }, "small_red_triangle": { "unicode": "1F53A", "unicode_alternates": [ ], "name": "up-pointing red triangle", "shortname": ":small_red_triangle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "triangle" ], "moji": "🔺" }, "small_red_triangle_down": { "unicode": "1F53B", "unicode_alternates": [ ], "name": "down-pointing red triangle", "shortname": ":small_red_triangle_down:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "triangle" ], "moji": "🔻" }, "smile": { "unicode": "1F604", "unicode_alternates": [ ], "name": "smiling face with open mouth and smiling eyes", "shortname": ":smile:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":)", ":-)", "=]", "=)", ":]" ], "keywords": [ "face", "funny", "haha", "happy", "joy", "laugh", "smile", "smiley", "smiling", "emotion" ], "moji": "😄" }, "smile_cat": { "unicode": "1F638", "unicode_alternates": [ ], "name": "grinning cat face with smiling eyes", "shortname": ":smile_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "cat", "smile", "grin", "grinning", "happy" ], "moji": "😸" }, "smiley": { "unicode": "1F603", "unicode_alternates": [ ], "name": "smiling face with open mouth", "shortname": ":smiley:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":D", ":-D", "=D" ], "keywords": [ "face", "haha", "happy", "joy", "smiling", "smile", "smiley", "emotion", "good" ], "moji": "😃" }, "smiley_cat": { "unicode": "1F63A", "unicode_alternates": [ ], "name": "smiling cat face with open mouth", "shortname": ":smiley_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "happy", "smile", "smiley", "cat" ], "moji": "😺" }, "smiling_imp": { "unicode": "1F608", "unicode_alternates": [ ], "name": "smiling face with horns", "shortname": ":smiling_imp:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "devil", "horns", "impish", "trouble", "silly", "smiley", "angry", "monster", "boys night" ], "moji": "😈" }, "smirk": { "unicode": "1F60F", "unicode_alternates": [ ], "name": "smirking face", "shortname": ":smirk:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mean", "prank", "smile", "smug", "smirking", "smirk", "half-smile", "conceited", "silly", "smiley", "sexy", "sarcastic" ], "moji": "😏" }, "smirk_cat": { "unicode": "1F63C", "unicode_alternates": [ ], "name": "cat face with wry smile", "shortname": ":smirk_cat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cats", "smirk", "smirking", "wry", "confident", "confidence", "cat" ], "moji": "😼" }, "smoking": { "unicode": "1F6AC", "unicode_alternates": [ ], "name": "smoking symbol", "shortname": ":smoking:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cigarette", "kills", "tobacco", "smoking", "smoke", "cancer", "lungs", "inhale", "tar", "nicotine", "symbol", "drugs" ], "moji": "🚬" }, "snail": { "unicode": "1F40C", "unicode_alternates": [ ], "name": "snail", "shortname": ":snail:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "shell", "slow", "snail", "escargot", "french", "appetizer", "insects" ], "moji": "🐌" }, "snake": { "unicode": "1F40D", "unicode_alternates": [ ], "name": "snake", "shortname": ":snake:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "evil", "wildlife", "reptile", "creationism" ], "moji": "🐍" }, "sneezing_face": { "unicode": "1F927", "unicode_alternates": [ ], "name": "sneezing face", "shortname": ":sneezing_face:", "category": "people", "aliases": [ ":sneeze:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤧" }, "snowboarder": { "unicode": "1F3C2", "unicode_alternates": [ ], "name": "snowboarder", "shortname": ":snowboarder:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sports", "winter", "snow", "boarding", "freestyle", "halfpipe", "board", "mountain", "alpine", "hat", "vacation", "cold", "sport", "snowboarding" ], "moji": "🏂" }, "snowflake": { "unicode": "2744", "unicode_alternates": [ "2744-FE0F" ], "name": "snowflake", "shortname": ":snowflake:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "christmas", "cold", "season", "weather", "winter", "xmas", "snowflake", "snow", "frozen", "droplet", "ice", "crystal", "chilly", "unique", "special", "below zero", "elsa", "sky", "holidays" ], "moji": "❄" }, "snowman": { "unicode": "26C4", "unicode_alternates": [ "26C4-FE0F" ], "name": "snowman without snow", "shortname": ":snowman:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "christmas", "cold", "season", "weather", "winter", "xmas", "holidays", "snow" ], "moji": "⛄" }, "snowman2": { "unicode": "2603", "unicode_alternates": [ ], "name": "snowman", "shortname": ":snowman2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cold", "nature", "snow", "weather", "winter", "holidays", "christmas" ], "moji": "☃" }, "sob": { "unicode": "1F62D", "unicode_alternates": [ ], "name": "loudly crying face", "shortname": ":sob:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cry", "face", "sad", "tears", "upset", "sob", "melancholy", "morn", "somber", "hurt", "smiley", "emotion", "heartbreak" ], "moji": "😭" }, "soccer": { "unicode": "26BD", "unicode_alternates": [ "26BD-FE0F" ], "name": "soccer ball", "shortname": ":soccer:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "balls", "fifa", "football", "sports", "european", "game", "ball", "sport", "soccer" ], "moji": "⚽" }, "soon": { "unicode": "1F51C", "unicode_alternates": [ ], "name": "soon with rightwards arrow above", "shortname": ":soon:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arrow", "words", "symbol" ], "moji": "🔜" }, "sos": { "unicode": "1F198", "unicode_alternates": [ ], "name": "squared sos", "shortname": ":sos:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "emergency", "help", "red-square", "words", "symbol" ], "moji": "🆘" }, "sound": { "unicode": "1F509", "unicode_alternates": [ ], "name": "speaker with one sound wave", "shortname": ":sound:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "speaker", "volume", "alarm", "symbol" ], "moji": "🔉" }, "space_invader": { "unicode": "1F47E", "unicode_alternates": [ ], "name": "alien monster", "shortname": ":space_invader:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arcade", "game", "monster", "alien" ], "moji": "👾" }, "spades": { "unicode": "2660", "unicode_alternates": [ "2660-FE0F" ], "name": "black spade suit", "shortname": ":spades:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cards", "poker", "symbol", "game" ], "moji": "♠" }, "spaghetti": { "unicode": "1F35D", "unicode_alternates": [ ], "name": "spaghetti", "shortname": ":spaghetti:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "italian", "noodle", "spaghetti", "noodles", "tomato", "sauce", "pasta" ], "moji": "🍝" }, "sparkle": { "unicode": "2747", "unicode_alternates": [ "2747-FE0F" ], "name": "sparkle", "shortname": ":sparkle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "green-square", "stars", "symbol" ], "moji": "❇" }, "sparkler": { "unicode": "1F387", "unicode_alternates": [ ], "name": "firework sparkler", "shortname": ":sparkler:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "shine", "stars", "parties" ], "moji": "🎇" }, "sparkles": { "unicode": "2728", "unicode_alternates": [ ], "name": "sparkles", "shortname": ":sparkles:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cool", "shine", "shiny", "stars", "star", "girls night" ], "moji": "✨" }, "sparkling_heart": { "unicode": "1F496", "unicode_alternates": [ ], "name": "sparkling heart", "shortname": ":sparkling_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "symbol", "girls night" ], "moji": "💖" }, "speak_no_evil": { "unicode": "1F64A", "unicode_alternates": [ ], "name": "speak-no-evil monkey", "shortname": ":speak_no_evil:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "monkey", "mouth", "talk", "say", "words", "verbal", "verbalize", "oral", "iwazaru" ], "moji": "🙊" }, "speaker": { "unicode": "1F508", "unicode_alternates": [ ], "name": "speaker", "shortname": ":speaker:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "listen", "hear", "noise", "alarm", "symbol" ], "moji": "🔈" }, "speaking_head": { "unicode": "1F5E3", "unicode_alternates": [ ], "name": "speaking head in silhouette", "shortname": ":speaking_head:", "category": "people", "aliases": [ ":speaking_head_in_silhouette:" ], "aliases_ascii": [ ], "keywords": [ "talk", "people" ], "moji": "🗣" }, "speech_balloon": { "unicode": "1F4AC", "unicode_alternates": [ ], "name": "speech balloon", "shortname": ":speech_balloon:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bubble", "words", "speech", "balloon", "talk", "conversation", "communication", "comic", "dialogue", "symbol", "free speech" ], "moji": "💬" }, "speech_left": { "unicode": "1F5E8", "unicode_alternates": [ "1F5E8-FE0F" ], "name": "left speech bubble", "shortname": ":speech_left:", "category": "symbols", "aliases": [ ":left_speech_bubble:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🗨" }, "speedboat": { "unicode": "1F6A4", "unicode_alternates": [ ], "name": "speedboat", "shortname": ":speedboat:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ship", "transportation", "vehicle", "motor", "speed", "ski", "power", "boat", "travel", "vacation", "tropical" ], "moji": "🚤" }, "spider": { "unicode": "1F577", "unicode_alternates": [ ], "name": "spider", "shortname": ":spider:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "arachnid", "eight-legged", "insects", "halloween", "animal" ], "moji": "🕷" }, "spider_web": { "unicode": "1F578", "unicode_alternates": [ ], "name": "spider web", "shortname": ":spider_web:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cobweb", "halloween" ], "moji": "🕸" }, "spoon": { "unicode": "1F944", "unicode_alternates": [ ], "name": "spoon", "shortname": ":spoon:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥄" }, "spy": { "unicode": "1F575", "unicode_alternates": [ ], "name": "sleuth or spy", "shortname": ":spy:", "category": "people", "aliases": [ ":sleuth_or_spy:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "people", "hat", "men", "glasses", "diversity", "job" ], "moji": "🕵" }, "spy_tone1": { "unicode": "1F575-1F3FB", "unicode_alternates": [ ], "name": "sleuth or spy tone 1", "shortname": ":spy_tone1:", "category": "people", "aliases": [ ":sleuth_or_spy_tone1:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏻" }, "spy_tone2": { "unicode": "1F575-1F3FC", "unicode_alternates": [ ], "name": "sleuth or spy tone 2", "shortname": ":spy_tone2:", "category": "people", "aliases": [ ":sleuth_or_spy_tone2:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏼" }, "spy_tone3": { "unicode": "1F575-1F3FD", "unicode_alternates": [ ], "name": "sleuth or spy tone 3", "shortname": ":spy_tone3:", "category": "people", "aliases": [ ":sleuth_or_spy_tone3:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏽" }, "spy_tone4": { "unicode": "1F575-1F3FE", "unicode_alternates": [ ], "name": "sleuth or spy tone 4", "shortname": ":spy_tone4:", "category": "people", "aliases": [ ":sleuth_or_spy_tone4:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏾" }, "spy_tone5": { "unicode": "1F575-1F3FF", "unicode_alternates": [ ], "name": "sleuth or spy tone 5", "shortname": ":spy_tone5:", "category": "people", "aliases": [ ":sleuth_or_spy_tone5:" ], "aliases_ascii": [ ], "keywords": [ "pi", "undercover", "investigator", "person" ], "moji": "🕵🏿" }, "squid": { "unicode": "1F991", "unicode_alternates": [ ], "name": "squid", "shortname": ":squid:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🦑" }, "stadium": { "unicode": "1F3DF", "unicode_alternates": [ ], "name": "stadium", "shortname": ":stadium:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "event", "concert", "convention", "game", "places", "building", "travel", "vacation", "boys night" ], "moji": "🏟" }, "star": { "unicode": "2B50", "unicode_alternates": [ "2B50-FE0F" ], "name": "white medium star", "shortname": ":star:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "yellow", "space", "sky", "star" ], "moji": "⭐" }, "star2": { "unicode": "1F31F", "unicode_alternates": [ ], "name": "glowing star", "shortname": ":star2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "sparkle", "glow", "glowing", "star", "five", "points", "classic", "space", "sky" ], "moji": "🌟" }, "star_and_crescent": { "unicode": "262A", "unicode_alternates": [ ], "name": "star and crescent", "shortname": ":star_and_crescent:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "islam", "muslim", "religion", "symbol" ], "moji": "☪" }, "star_of_david": { "unicode": "2721", "unicode_alternates": [ ], "name": "star of david", "shortname": ":star_of_david:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "jew", "jewish", "religion", "symbol", "star" ], "moji": "✡" }, "stars": { "unicode": "1F320", "unicode_alternates": [ ], "name": "shooting star", "shortname": ":stars:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "night", "photo", "shooting", "shoot", "star", "sky", "comet", "meteoroid", "space" ], "moji": "🌠" }, "station": { "unicode": "1F689", "unicode_alternates": [ ], "name": "station", "shortname": ":station:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "public", "transportation", "vehicle", "station", "train", "subway", "travel" ], "moji": "🚉" }, "statue_of_liberty": { "unicode": "1F5FD", "unicode_alternates": [ ], "name": "statue of liberty", "shortname": ":statue_of_liberty:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "american", "newyork", "places", "america", "travel", "vacation", "statue of liberty", "free speech" ], "moji": "🗽" }, "steam_locomotive": { "unicode": "1F682", "unicode_alternates": [ ], "name": "steam locomotive", "shortname": ":steam_locomotive:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "train", "transportation", "vehicle", "locomotive", "steam", "engine", "travel" ], "moji": "🚂" }, "stew": { "unicode": "1F372", "unicode_alternates": [ ], "name": "pot of food", "shortname": ":stew:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "meat", "stew", "hearty", "soup", "thick", "hot", "pot", "steam" ], "moji": "🍲" }, "stop_button": { "unicode": "23F9", "unicode_alternates": [ ], "name": "black square for stop", "shortname": ":stop_button:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sound", "symbol", "square" ], "moji": "⏹" }, "stopwatch": { "unicode": "23F1", "unicode_alternates": [ ], "name": "stopwatch", "shortname": ":stopwatch:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clock", "object", "time", "electronics" ], "moji": "⏱" }, "straight_ruler": { "unicode": "1F4CF", "unicode_alternates": [ ], "name": "straight ruler", "shortname": ":straight_ruler:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "stationery", "object", "tool", "office" ], "moji": "📏" }, "strawberry": { "unicode": "1F353", "unicode_alternates": [ ], "name": "strawberry", "shortname": ":strawberry:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "strawberry", "short", "cake", "berry" ], "moji": "🍓" }, "stuck_out_tongue": { "unicode": "1F61B", "unicode_alternates": [ ], "name": "face with stuck-out tongue", "shortname": ":stuck_out_tongue:", "category": "people", "aliases": [ ], "aliases_ascii": [ ":P", ":-P", "=P", ":-p", ":p", "=p", ":-Þ", ":Þ", ":þ", ":-þ", ":-b", ":b", "d:" ], "keywords": [ "childish", "face", "mischievous", "playful", "prank", "tongue", "silly", "cheeky", "smiley", "sex", "emotion" ], "moji": "😛" }, "stuck_out_tongue_closed_eyes": { "unicode": "1F61D", "unicode_alternates": [ ], "name": "face with stuck-out tongue and tightly-closed eyes", "shortname": ":stuck_out_tongue_closed_eyes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "mischievous", "playful", "prank", "tongue", "kidding", "silly", "ecstatic", "happy", "smiley", "emotion" ], "moji": "😝" }, "stuck_out_tongue_winking_eye": { "unicode": "1F61C", "unicode_alternates": [ ], "name": "face with stuck-out tongue and winking eye", "shortname": ":stuck_out_tongue_winking_eye:", "category": "people", "aliases": [ ], "aliases_ascii": [ ">:P", "X-P", "x-p" ], "keywords": [ "childish", "face", "mischievous", "playful", "prank", "tongue", "wink", "winking", "kidding", "silly", "crazy", "happy", "smiley", "emotion", "parties" ], "moji": "😜" }, "stuffed_flatbread": { "unicode": "1F959", "unicode_alternates": [ ], "name": "stuffed flatbread", "shortname": ":stuffed_flatbread:", "category": "food", "aliases": [ ":stuffed_pita:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥙" }, "sun_with_face": { "unicode": "1F31E", "unicode_alternates": [ ], "name": "sun with face", "shortname": ":sun_with_face:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "morning", "sun", "anthropomorphic", "face", "sky", "day", "hump day" ], "moji": "🌞" }, "sunflower": { "unicode": "1F33B", "unicode_alternates": [ ], "name": "sunflower", "shortname": ":sunflower:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "sunflower", "sun", "flower", "seeds", "yellow" ], "moji": "🌻" }, "sunglasses": { "unicode": "1F60E", "unicode_alternates": [ ], "name": "smiling face with sunglasses", "shortname": ":sunglasses:", "category": "people", "aliases": [ ], "aliases_ascii": [ "B-)", "B)", "8)", "8-)", "B-D", "8-D" ], "keywords": [ "cool", "face", "smiling", "sunglasses", "sun", "glasses", "sunny", "smooth", "silly", "smiley", "emojione", "boys night" ], "moji": "😎" }, "sunny": { "unicode": "2600", "unicode_alternates": [ "2600-FE0F" ], "name": "black sun with rays", "shortname": ":sunny:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "brightness", "weather", "sky", "day", "sun", "hot", "morning" ], "moji": "☀" }, "sunrise": { "unicode": "1F305", "unicode_alternates": [ ], "name": "sunrise", "shortname": ":sunrise:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "morning", "photo", "vacation", "view", "sunrise", "sun", "color", "sky", "places", "travel", "tropical", "day", "hump day" ], "moji": "🌅" }, "sunrise_over_mountains": { "unicode": "1F304", "unicode_alternates": [ ], "name": "sunrise over mountains", "shortname": ":sunrise_over_mountains:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "photo", "vacation", "view", "sunrise", "sun", "morning", "mountain", "rural", "color", "sky", "places", "travel", "day", "camp" ], "moji": "🌄" }, "surfer": { "unicode": "1F3C4", "unicode_alternates": [ ], "name": "surfer", "shortname": ":surfer:", "category": "activity", "aliases": [ ":surfing_man:" ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sports", "surfer", "surf", "wave", "ride", "swell", "men", "vacation", "tropical", "sport", "diversity" ], "moji": "🏄" }, "surfer_tone1": { "unicode": "1F3C4-1F3FB", "unicode_alternates": [ ], "name": "surfer tone 1", "shortname": ":surfer_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏻" }, "surfer_tone2": { "unicode": "1F3C4-1F3FC", "unicode_alternates": [ ], "name": "surfer tone 2", "shortname": ":surfer_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏼" }, "surfer_tone3": { "unicode": "1F3C4-1F3FD", "unicode_alternates": [ ], "name": "surfer tone 3", "shortname": ":surfer_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏽" }, "surfer_tone4": { "unicode": "1F3C4-1F3FE", "unicode_alternates": [ ], "name": "surfer tone 4", "shortname": ":surfer_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏾" }, "surfer_tone5": { "unicode": "1F3C4-1F3FF", "unicode_alternates": [ ], "name": "surfer tone 5", "shortname": ":surfer_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ocean", "sea", "sport", "surf", "wave", "ride", "swell" ], "moji": "🏄🏿" }, "sushi": { "unicode": "1F363", "unicode_alternates": [ ], "name": "sushi", "shortname": ":sushi:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "japanese", "sushi", "fish", "raw", "nigiri", "japan" ], "moji": "🍣" }, "suspension_railway": { "unicode": "1F69F", "unicode_alternates": [ ], "name": "suspension railway", "shortname": ":suspension_railway:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "suspension", "railway", "rail", "train", "travel" ], "moji": "🚟" }, "sweat": { "unicode": "1F613", "unicode_alternates": [ ], "name": "face with cold sweat", "shortname": ":sweat:", "category": "people", "aliases": [ ], "aliases_ascii": [ "':(", "':-(", "'=(" ], "keywords": [ "cold", "sweat", "sick", "anxious", "worried", "clammy", "diaphoresis", "face", "hot", "sad", "smiley", "stressed", "emotion" ], "moji": "😓" }, "sweat_drops": { "unicode": "1F4A6", "unicode_alternates": [ ], "name": "splashing sweat symbol", "shortname": ":sweat_drops:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "water", "rain", "stressed", "sweat" ], "moji": "💦" }, "sweat_smile": { "unicode": "1F605", "unicode_alternates": [ ], "name": "smiling face with open mouth and cold sweat", "shortname": ":sweat_smile:", "category": "people", "aliases": [ ], "aliases_ascii": [ "':)", "':-)", "'=)", "':D", "':-D", "'=D" ], "keywords": [ "face", "happy", "hot", "smiling", "cold", "sweat", "perspiration", "smiley", "workout", "emotion" ], "moji": "😅" }, "sweet_potato": { "unicode": "1F360", "unicode_alternates": [ ], "name": "roasted sweet potato", "shortname": ":sweet_potato:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "nature", "sweet", "potato", "potassium", "roasted", "roast", "vegetables" ], "moji": "🍠" }, "swimmer": { "unicode": "1F3CA", "unicode_alternates": [ ], "name": "swimmer", "shortname": ":swimmer:", "category": "activity", "aliases": [ ":swimming_man:" ], "aliases_ascii": [ ], "keywords": [ "sports", "swimmer", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke", "workout", "sport", "diversity" ], "moji": "🏊" }, "swimmer_tone1": { "unicode": "1F3CA-1F3FB", "unicode_alternates": [ ], "name": "swimmer tone 1", "shortname": ":swimmer_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏻" }, "swimmer_tone2": { "unicode": "1F3CA-1F3FC", "unicode_alternates": [ ], "name": "swimmer tone 2", "shortname": ":swimmer_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏼" }, "swimmer_tone3": { "unicode": "1F3CA-1F3FD", "unicode_alternates": [ ], "name": "swimmer tone 3", "shortname": ":swimmer_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏽" }, "swimmer_tone4": { "unicode": "1F3CA-1F3FE", "unicode_alternates": [ ], "name": "swimmer tone 4", "shortname": ":swimmer_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏾" }, "swimmer_tone5": { "unicode": "1F3CA-1F3FF", "unicode_alternates": [ ], "name": "swimmer tone 5", "shortname": ":swimmer_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sport", "swim", "water", "pool", "laps", "freestyle", "butterfly", "breaststroke", "backstroke" ], "moji": "🏊🏿" }, "symbols": { "unicode": "1F523", "unicode_alternates": [ ], "name": "input symbol for symbols", "shortname": ":symbols:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "symbol" ], "moji": "🔣" }, "synagogue": { "unicode": "1F54D", "unicode_alternates": [ ], "name": "synagogue", "shortname": ":synagogue:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "places", "religion", "building", "travel", "vacation", "condolence" ], "moji": "🕍" }, "syringe": { "unicode": "1F489", "unicode_alternates": [ ], "name": "syringe", "shortname": ":syringe:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blood", "drugs", "health", "hospital", "medicine", "needle", "object", "weapon" ], "moji": "💉" }, "taco": { "unicode": "1F32E", "unicode_alternates": [ ], "name": "taco", "shortname": ":taco:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "mexican", "vagina" ], "moji": "🌮" }, "tada": { "unicode": "1F389", "unicode_alternates": [ ], "name": "party popper", "shortname": ":tada:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "contulations", "party", "popper", "tada", "celebration", "victory", "announcement", "climax", "congratulations", "object", "birthday", "holidays", "cheers", "good", "girls night", "boys night", "parties" ], "moji": "🎉" }, "tanabata_tree": { "unicode": "1F38B", "unicode_alternates": [ ], "name": "tanabata tree", "shortname": ":tanabata_tree:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "plant", "tanabata", "tree", "festival", "star", "wish", "holiday", "trees" ], "moji": "🎋" }, "tangerine": { "unicode": "1F34A", "unicode_alternates": [ ], "name": "tangerine", "shortname": ":tangerine:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "tangerine", "citrus", "orange" ], "moji": "🍊" }, "taurus": { "unicode": "2649", "unicode_alternates": [ "2649-FE0F" ], "name": "taurus", "shortname": ":taurus:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "purple-square", "sign", "taurus", "bull", "astrology", "greek", "constellation", "stars", "zodiac", "horoscope", "symbol" ], "moji": "♉" }, "taxi": { "unicode": "1F695", "unicode_alternates": [ ], "name": "taxi", "shortname": ":taxi:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "transportation", "uber", "vehicle", "taxi", "car", "automobile", "city", "transport", "service", "travel" ], "moji": "🚕" }, "tea": { "unicode": "1F375", "unicode_alternates": [ ], "name": "teacup without handle", "shortname": ":tea:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bowl", "breakfast", "british", "drink", "green", "tea", "leaf", "teacup", "hot", "beverage", "japan", "caffeine", "steam", "morning" ], "moji": "🍵" }, "telephone": { "unicode": "260E", "unicode_alternates": [ "260E-FE0F" ], "name": "black telephone", "shortname": ":telephone:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "dial", "technology", "electronics", "phone" ], "moji": "☎" }, "telephone_receiver": { "unicode": "1F4DE", "unicode_alternates": [ ], "name": "telephone receiver", "shortname": ":telephone_receiver:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "communication", "dial", "technology", "electronics", "phone" ], "moji": "📞" }, "telescope": { "unicode": "1F52D", "unicode_alternates": [ ], "name": "telescope", "shortname": ":telescope:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "space", "stars", "object", "science" ], "moji": "🔭" }, "ten": { "unicode": "1F51F", "unicode_alternates": [ ], "name": "keycap ten", "shortname": ":ten:", "category": "symbols", "aliases": [ ":keycap_ten:" ], "aliases_ascii": [ ], "keywords": [ "10", "blue-square", "numbers", "symbol", "word", "number", "math" ], "moji": "🔟" }, "tennis": { "unicode": "1F3BE", "unicode_alternates": [ ], "name": "tennis racquet and ball", "shortname": ":tennis:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "balls", "green", "sports", "tennis", "racket", "racquet", "ball", "game", "net", "court", "love", "sport" ], "moji": "🎾" }, "tent": { "unicode": "26FA", "unicode_alternates": [ "26FA-FE0F" ], "name": "tent", "shortname": ":tent:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "camp", "outdoors", "photo", "places", "travel", "vacation" ], "moji": "⛺" }, "thermometer": { "unicode": "1F321", "unicode_alternates": [ ], "name": "thermometer", "shortname": ":thermometer:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "temperature", "object", "science", "health", "hot" ], "moji": "🌡" }, "thermometer_face": { "unicode": "1F912", "unicode_alternates": [ ], "name": "face with thermometer", "shortname": ":thermometer_face:", "category": "people", "aliases": [ ":face_with_thermometer:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "health", "sick", "emotion" ], "moji": "🤒" }, "thinking": { "unicode": "1F914", "unicode_alternates": [ ], "name": "thinking face", "shortname": ":thinking:", "category": "people", "aliases": [ ":thinking_face:" ], "aliases_ascii": [ ], "keywords": [ "smiley", "thinking", "boys night" ], "moji": "🤔" }, "third_place": { "unicode": "1F949", "unicode_alternates": [ ], "name": "third place medal", "shortname": ":third_place:", "category": "activity", "aliases": [ ":third_place_medal:", ":3rd_place_medal:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥉" }, "thought_balloon": { "unicode": "1F4AD", "unicode_alternates": [ ], "name": "thought balloon", "shortname": ":thought_balloon:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bubble", "cloud", "speech", "thought", "balloon", "comic", "think", "day dream", "wonder", "symbol" ], "moji": "💭" }, "three": { "moji": "3️⃣", "unicode": "0033-20E3", "unicode_alternates": [ "0033-FE0F-20E3" ], "name": "keycap digit three", "shortname": ":three:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "3", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "thumbsdown": { "unicode": "1F44E", "unicode_alternates": [ ], "name": "thumbs down sign", "shortname": ":thumbsdown:", "category": "people", "aliases": [ ":-1:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "body", "hands", "diversity" ], "moji": "👎" }, "thumbsdown_tone1": { "unicode": "1F44E-1F3FB", "unicode_alternates": [ ], "name": "thumbs down sign tone 1", "shortname": ":thumbsdown_tone1:", "category": "people", "aliases": [ ":-1_tone1:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏻" }, "thumbsdown_tone2": { "unicode": "1F44E-1F3FC", "unicode_alternates": [ ], "name": "thumbs down sign tone 2", "shortname": ":thumbsdown_tone2:", "category": "people", "aliases": [ ":-1_tone2:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏼" }, "thumbsdown_tone3": { "unicode": "1F44E-1F3FD", "unicode_alternates": [ ], "name": "thumbs down sign tone 3", "shortname": ":thumbsdown_tone3:", "category": "people", "aliases": [ ":-1_tone3:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏽" }, "thumbsdown_tone4": { "unicode": "1F44E-1F3FE", "unicode_alternates": [ ], "name": "thumbs down sign tone 4", "shortname": ":thumbsdown_tone4:", "category": "people", "aliases": [ ":-1_tone4:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏾" }, "thumbsdown_tone5": { "unicode": "1F44E-1F3FF", "unicode_alternates": [ ], "name": "thumbs down sign tone 5", "shortname": ":thumbsdown_tone5:", "category": "people", "aliases": [ ":-1_tone5:" ], "aliases_ascii": [ ], "keywords": [ "hand", "no", "-1" ], "moji": "👎🏿" }, "thumbsup": { "unicode": "1F44D", "unicode_alternates": [ ], "name": "thumbs up sign", "shortname": ":thumbsup:", "category": "people", "aliases": [ ":+1:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "body", "hands", "hi", "luck", "thank you", "diversity", "perfect", "good", "beautiful" ], "moji": "👍" }, "thumbsup_tone1": { "unicode": "1F44D-1F3FB", "unicode_alternates": [ ], "name": "thumbs up sign tone 1", "shortname": ":thumbsup_tone1:", "category": "people", "aliases": [ ":+1_tone1:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏻" }, "thumbsup_tone2": { "unicode": "1F44D-1F3FC", "unicode_alternates": [ ], "name": "thumbs up sign tone 2", "shortname": ":thumbsup_tone2:", "category": "people", "aliases": [ ":+1_tone2:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏼" }, "thumbsup_tone3": { "unicode": "1F44D-1F3FD", "unicode_alternates": [ ], "name": "thumbs up sign tone 3", "shortname": ":thumbsup_tone3:", "category": "people", "aliases": [ ":+1_tone3:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏽" }, "thumbsup_tone4": { "unicode": "1F44D-1F3FE", "unicode_alternates": [ ], "name": "thumbs up sign tone 4", "shortname": ":thumbsup_tone4:", "category": "people", "aliases": [ ":+1_tone4:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏾" }, "thumbsup_tone5": { "unicode": "1F44D-1F3FF", "unicode_alternates": [ ], "name": "thumbs up sign tone 5", "shortname": ":thumbsup_tone5:", "category": "people", "aliases": [ ":+1_tone5:" ], "aliases_ascii": [ ], "keywords": [ "cool", "hand", "like", "yes", "+1" ], "moji": "👍🏿" }, "thunder_cloud_rain": { "unicode": "26C8", "unicode_alternates": [ ], "name": "thunder cloud and rain", "shortname": ":thunder_cloud_rain:", "category": "nature", "aliases": [ ":thunder_cloud_and_rain:", ":cloud_with_lightning_and_rain:" ], "aliases_ascii": [ ], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "rain" ], "moji": "⛈" }, "ticket": { "unicode": "1F3AB", "unicode_alternates": [ ], "name": "ticket", "shortname": ":ticket:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "concert", "event", "pass", "ticket", "show", "entertainment", "stub", "admission", "proof", "purchase", "theatre", "movie", "parties" ], "moji": "🎫" }, "tickets": { "unicode": "1F39F", "unicode_alternates": [ ], "name": "admission tickets", "shortname": ":tickets:", "category": "activity", "aliases": [ ":admission_tickets:" ], "aliases_ascii": [ ], "keywords": [ "concert", "event", "pass", "show", "entertainment", "stub", "proof", "purchase", "theatre", "movie", "parties" ], "moji": "🎟" }, "tiger": { "unicode": "1F42F", "unicode_alternates": [ ], "name": "tiger face", "shortname": ":tiger:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "wildlife", "roar", "cat" ], "moji": "🐯" }, "tiger2": { "unicode": "1F405", "unicode_alternates": [ ], "name": "tiger", "shortname": ":tiger2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "tiger", "cat", "striped", "tony", "tigger", "hobs", "wildlife", "roar" ], "moji": "🐅" }, "timer": { "unicode": "23F2", "unicode_alternates": [ ], "name": "timer clock", "shortname": ":timer:", "category": "objects", "aliases": [ ":timer_clock:" ], "aliases_ascii": [ ], "keywords": [ "object", "time" ], "moji": "⏲" }, "tired_face": { "unicode": "1F62B", "unicode_alternates": [ ], "name": "tired face", "shortname": ":tired_face:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "frustrated", "sick", "upset", "whine", "exhausted", "sleepy", "tired", "sad", "smiley", "emotion" ], "moji": "😫" }, "tm": { "unicode": "2122", "unicode_alternates": [ "2122-FE0F" ], "name": "trade mark sign", "shortname": ":tm:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "brand", "trademark", "symbol", "tm", "word" ], "moji": "™️" }, "toilet": { "unicode": "1F6BD", "unicode_alternates": [ ], "name": "toilet", "shortname": ":toilet:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "restroom", "wc", "toilet", "bathroom", "throne", "porcelain", "waste", "flush", "plumbing", "object" ], "moji": "🚽" }, "tokyo_tower": { "unicode": "1F5FC", "unicode_alternates": [ ], "name": "tokyo tower", "shortname": ":tokyo_tower:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japan", "photo", "places", "travel", "vacation", "eiffel tower" ], "moji": "🗼" }, "tomato": { "unicode": "1F345", "unicode_alternates": [ ], "name": "tomato", "shortname": ":tomato:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "nature", "vegetable", "tomato", "sauce", "italian", "vegetables" ], "moji": "🍅" }, "tone1": { "unicode": "1F3FB", "unicode_alternates": [ ], "name": "emoji modifier Fitzpatrick type-1-2", "shortname": ":tone1:", "category": "modifier", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏻" }, "tone2": { "unicode": "1F3FC", "unicode_alternates": [ ], "name": "emoji modifier Fitzpatrick type-3", "shortname": ":tone2:", "category": "modifier", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏼" }, "tone3": { "unicode": "1F3FD", "unicode_alternates": [ ], "name": "emoji modifier Fitzpatrick type-4", "shortname": ":tone3:", "category": "modifier", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏽" }, "tone4": { "unicode": "1F3FE", "unicode_alternates": [ ], "name": "emoji modifier Fitzpatrick type-5", "shortname": ":tone4:", "category": "modifier", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏾" }, "tone5": { "unicode": "1F3FF", "unicode_alternates": [ ], "name": "emoji modifier Fitzpatrick type-6", "shortname": ":tone5:", "category": "modifier", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🏿" }, "tongue": { "unicode": "1F445", "unicode_alternates": [ ], "name": "tongue", "shortname": ":tongue:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "mouth", "playful", "tongue", "taste", "buds", "food", "silly", "tease", "kiss", "french kiss", "lick", "tasty", "playfulness", "silliness", "intimacy", "body", "sexy", "lip" ], "moji": "👅" }, "tools": { "unicode": "1F6E0", "unicode_alternates": [ ], "name": "hammer and wrench", "shortname": ":tools:", "category": "objects", "aliases": [ ":hammer_and_wrench:" ], "aliases_ascii": [ ], "keywords": [ "tools", "object", "tool" ], "moji": "🛠" }, "top": { "unicode": "1F51D", "unicode_alternates": [ ], "name": "top with upwards arrow above", "shortname": ":top:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "words", "arrow", "symbol" ], "moji": "🔝" }, "tophat": { "unicode": "1F3A9", "unicode_alternates": [ ], "name": "top hat", "shortname": ":tophat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "classy", "gentleman", "magic", "top", "hat", "cap", "beaver", "high", "tall", "stove", "pipe", "chimney", "topper", "london", "period piece", "magician", "fashion", "accessories" ], "moji": "🎩" }, "track_next": { "unicode": "23ED", "unicode_alternates": [ ], "name": "black right-pointing double triangle with vertical bar", "shortname": ":track_next:", "category": "symbols", "aliases": [ ":next_track:", ":next_track_button:" ], "aliases_ascii": [ ], "keywords": [ "arrow", "next scene", "next track", "sound", "symbol" ], "moji": "⏭" }, "track_previous": { "unicode": "23EE", "unicode_alternates": [ ], "name": "black left-pointing double triangle with vertical bar", "shortname": ":track_previous:", "category": "symbols", "aliases": [ ":previous_track:", ":previous_track_button:" ], "aliases_ascii": [ ], "keywords": [ "arrow", "previous scene", "previous track", "sound", "symbol" ], "moji": "⏮" }, "trackball": { "unicode": "1F5B2", "unicode_alternates": [ ], "name": "trackball", "shortname": ":trackball:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "input", "device", "gadget", "electronics", "work", "game", "office" ], "moji": "🖲" }, "tractor": { "unicode": "1F69C", "unicode_alternates": [ ], "name": "tractor", "shortname": ":tractor:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "agriculture", "car", "farming", "vehicle", "tractor", "farm", "construction", "machine", "digger", "transportation" ], "moji": "🚜" }, "traffic_light": { "unicode": "1F6A5", "unicode_alternates": [ ], "name": "horizontal traffic light", "shortname": ":traffic_light:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "traffic", "transportation", "light", "stop", "go", "yield", "horizontal", "object", "stop light" ], "moji": "🚥" }, "train": { "unicode": "1F68B", "unicode_alternates": [ ], "name": "Tram Car", "shortname": ":train:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "tram", "rail", "transportation", "travel", "train" ], "moji": "🚋" }, "train2": { "unicode": "1F686", "unicode_alternates": [ ], "name": "train", "shortname": ":train2:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "train", "locomotive", "rail", "travel" ], "moji": "🚆" }, "tram": { "unicode": "1F68A", "unicode_alternates": [ ], "name": "tram", "shortname": ":tram:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "vehicle", "tram", "transport", "travel", "train" ], "moji": "🚊" }, "triangular_flag_on_post": { "unicode": "1F6A9", "unicode_alternates": [ ], "name": "triangular flag on post", "shortname": ":triangular_flag_on_post:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "triangle", "triangular", "flag", "golf", "post", "flagpole", "object" ], "moji": "🚩" }, "triangular_ruler": { "unicode": "1F4D0", "unicode_alternates": [ ], "name": "triangular ruler", "shortname": ":triangular_ruler:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "architect", "math", "sketch", "stationery", "object", "tool", "office" ], "moji": "📐" }, "trident": { "unicode": "1F531", "unicode_alternates": [ ], "name": "trident emblem", "shortname": ":trident:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "spear", "weapon", "object", "symbol" ], "moji": "🔱" }, "triumph": { "unicode": "1F624", "unicode_alternates": [ ], "name": "face with look of triumph", "shortname": ":triumph:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "gas", "phew", "triumph", "steam", "breath", "mad", "smiley", "angry", "emotion" ], "moji": "😤" }, "trolleybus": { "unicode": "1F68E", "unicode_alternates": [ ], "name": "trolleybus", "shortname": ":trolleybus:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bart", "transportation", "vehicle", "trolley", "bus", "city", "transport", "travel" ], "moji": "🚎" }, "trophy": { "unicode": "1F3C6", "unicode_alternates": [ ], "name": "trophy", "shortname": ":trophy:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "award", "ceremony", "contest", "ftw", "place", "win", "trophy", "first", "show", "reward", "achievement", "medal", "object", "game", "perfect", "parties" ], "moji": "🏆" }, "tropical_drink": { "unicode": "1F379", "unicode_alternates": [ ], "name": "tropical drink", "shortname": ":tropical_drink:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "beverage", "tropical", "drink", "mixed", "pineapple", "coconut", "pina", "fruit", "umbrella", "cocktail", "alcohol" ], "moji": "🍹" }, "tropical_fish": { "unicode": "1F420", "unicode_alternates": [ ], "name": "tropical fish", "shortname": ":tropical_fish:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "swim", "wildlife" ], "moji": "🐠" }, "truck": { "unicode": "1F69A", "unicode_alternates": [ ], "name": "delivery truck", "shortname": ":truck:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "cars", "transportation", "truck", "delivery", "package" ], "moji": "🚚" }, "trumpet": { "unicode": "1F3BA", "unicode_alternates": [ ], "name": "trumpet", "shortname": ":trumpet:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "brass", "music", "trumpet", "instrument", "instruments" ], "moji": "🎺" }, "tulip": { "unicode": "1F337", "unicode_alternates": [ ], "name": "tulip", "shortname": ":tulip:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "flowers", "nature", "plant", "tulip", "flower", "bulb", "spring", "easter", "vagina", "girls night" ], "moji": "🌷" }, "tumbler_glass": { "unicode": "1F943", "unicode_alternates": [ ], "name": "tumbler glass", "shortname": ":tumbler_glass:", "category": "food", "aliases": [ ":whisky:" ], "aliases_ascii": [ ], "keywords": [ "booze" ], "moji": "🥃" }, "turkey": { "unicode": "1F983", "unicode_alternates": [ ], "name": "turkey", "shortname": ":turkey:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "wildlife", "animal" ], "moji": "🦃" }, "turtle": { "unicode": "1F422", "unicode_alternates": [ ], "name": "turtle", "shortname": ":turtle:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "slow", "turtle", "shell", "tortoise", "chelonian", "reptile", "snap", "steady", "wildlife" ], "moji": "🐢" }, "tv": { "unicode": "1F4FA", "unicode_alternates": [ ], "name": "television", "shortname": ":tv:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "oldschool", "program", "show", "technology", "tv", "entertainment", "object", "video", "electronics" ], "moji": "📺" }, "twisted_rightwards_arrows": { "unicode": "1F500", "unicode_alternates": [ ], "name": "twisted rightwards arrows", "shortname": ":twisted_rightwards_arrows:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "arrow", "symbol" ], "moji": "🔀" }, "two": { "moji": "2️⃣", "unicode": "0032-20E3", "unicode_alternates": [ "0032-FE0F-20E3" ], "name": "keycap digit two", "shortname": ":two:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "2", "blue-square", "numbers", "prime", "number", "math", "symbol" ] }, "two_hearts": { "unicode": "1F495", "unicode_alternates": [ ], "name": "two hearts", "shortname": ":two_hearts:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "heart", "hearts", "two", "emotion", "symbol" ], "moji": "💕" }, "two_men_holding_hands": { "unicode": "1F46C", "unicode_alternates": [ ], "name": "two men holding hands", "shortname": ":two_men_holding_hands:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bromance", "couple", "friends", "like", "love", "men", "gay", "homosexual", "hands", "holding", "team", "unity", "people", "sex", "lgbt" ], "moji": "👬" }, "two_women_holding_hands": { "unicode": "1F46D", "unicode_alternates": [ ], "name": "two women holding hands", "shortname": ":two_women_holding_hands:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "couple", "female", "friends", "like", "love", "women", "hands", "girlfriends", "sisters", "mother", "daughter", "gay", "homosexual", "unity", "people", "sex", "lgbt", "lesbian", "girls night" ], "moji": "👭" }, "u5272": { "unicode": "1F239", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-5272", "shortname": ":u5272:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "cut", "divide", "kanji", "pink", "symbol" ], "moji": "🈹" }, "u5408": { "unicode": "1F234", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-5408", "shortname": ":u5408:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "japanese", "join", "kanji", "japan", "symbol" ], "moji": "🈴" }, "u55b6": { "unicode": "1F23A", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-55b6", "shortname": ":u55b6:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japanese", "opening hours", "symbol" ], "moji": "🈺" }, "u6307": { "unicode": "1F22F", "unicode_alternates": [ "1F22F-FE0F" ], "name": "squared cjk unified ideograph-6307", "shortname": ":u6307:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "green-square", "kanji", "point", "symbol" ], "moji": "🈯" }, "u6708": { "unicode": "1F237", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-6708", "shortname": ":u6708:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "japanese", "kanji", "moon", "orange-square", "symbol" ], "moji": "🈷" }, "u6709": { "unicode": "1F236", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-6709", "shortname": ":u6709:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "have", "kanji", "orange-square", "symbol" ], "moji": "🈶" }, "u6e80": { "unicode": "1F235", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-6e80", "shortname": ":u6e80:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "full", "japanese", "kanji", "red-square", "japan", "symbol" ], "moji": "🈵" }, "u7121": { "unicode": "1F21A", "unicode_alternates": [ "1F21A-FE0F" ], "name": "squared cjk unified ideograph-7121", "shortname": ":u7121:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "japanese", "kanji", "no", "nothing", "orange-square", "symbol" ], "moji": "🈚" }, "u7533": { "unicode": "1F238", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-7533", "shortname": ":u7533:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "japanese", "kanji", "symbol" ], "moji": "🈸" }, "u7981": { "unicode": "1F232", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-7981", "shortname": ":u7981:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "forbidden", "japanese", "kanji", "limit", "restricted", "japan", "symbol" ], "moji": "🈲" }, "u7a7a": { "unicode": "1F233", "unicode_alternates": [ ], "name": "squared cjk unified ideograph-7a7a", "shortname": ":u7a7a:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "chinese", "empty", "japanese", "kanji", "symbol" ], "moji": "🈳" }, "umbrella": { "unicode": "2614", "unicode_alternates": [ "2614-FE0F" ], "name": "umbrella with rain drops", "shortname": ":umbrella:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "rain", "weather", "sky", "cold" ], "moji": "☔" }, "umbrella2": { "unicode": "2602", "unicode_alternates": [ ], "name": "umbrella", "shortname": ":umbrella2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "clothing", "nature", "rain", "weather", "object", "sky", "cold" ], "moji": "☂" }, "unamused": { "unicode": "1F612", "unicode_alternates": [ ], "name": "unamused face", "shortname": ":unamused:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "bored", "face", "indifference", "serious", "straight face", "unamused", "not amused", "depressed", "unhappy", "disapprove", "lame", "sad", "mad", "smiley", "tired", "emotion" ], "moji": "😒" }, "underage": { "unicode": "1F51E", "unicode_alternates": [ ], "name": "no one under eighteen symbol", "shortname": ":underage:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "18", "drink", "night", "pub", "symbol" ], "moji": "🔞" }, "unicorn": { "unicode": "1F984", "unicode_alternates": [ ], "name": "unicorn face", "shortname": ":unicorn:", "category": "nature", "aliases": [ ":unicorn_face:" ], "aliases_ascii": [ ], "keywords": [ "animal" ], "moji": "🦄" }, "unlock": { "unicode": "1F513", "unicode_alternates": [ ], "name": "open lock", "shortname": ":unlock:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "privacy", "security", "object", "lock" ], "moji": "🔓" }, "up": { "unicode": "1F199", "unicode_alternates": [ ], "name": "squared up with exclamation mark", "shortname": ":up:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "symbol" ], "moji": "🆙" }, "upside_down": { "unicode": "1F643", "unicode_alternates": [ ], "name": "upside-down face", "shortname": ":upside_down:", "category": "people", "aliases": [ ":upside_down_face:" ], "aliases_ascii": [ ], "keywords": [ "silly", "smiley", "sarcastic" ], "moji": "🙃" }, "urn": { "unicode": "26B1", "unicode_alternates": [ ], "name": "funeral urn", "shortname": ":urn:", "category": "objects", "aliases": [ ":funeral_urn:" ], "aliases_ascii": [ ], "keywords": [ "death", "object", "dead", "rip" ], "moji": "⚱" }, "v": { "unicode": "270C", "unicode_alternates": [ "270C-FE0F" ], "name": "victory hand", "shortname": ":v:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "hand", "ohyeah", "peace", "two", "victory", "body", "hands", "hi", "thank you", "diversity", "girls night" ], "moji": "✌" }, "v_tone1": { "unicode": "270C-1F3FB", "unicode_alternates": [ ], "name": "victory hand tone 1", "shortname": ":v_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏻" }, "v_tone2": { "unicode": "270C-1F3FC", "unicode_alternates": [ ], "name": "victory hand tone 2", "shortname": ":v_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏼" }, "v_tone3": { "unicode": "270C-1F3FD", "unicode_alternates": [ ], "name": "victory hand tone 3", "shortname": ":v_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏽" }, "v_tone4": { "unicode": "270C-1F3FE", "unicode_alternates": [ ], "name": "victory hand tone 4", "shortname": ":v_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏾" }, "v_tone5": { "unicode": "270C-1F3FF", "unicode_alternates": [ ], "name": "victory hand tone 5", "shortname": ":v_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fingers", "ohyeah", "peace", "two", "v" ], "moji": "✌🏿" }, "vertical_traffic_light": { "unicode": "1F6A6", "unicode_alternates": [ ], "name": "vertical traffic light", "shortname": ":vertical_traffic_light:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "transportation", "traffic", "light", "stop", "go", "yield", "vertical", "object", "stop light" ], "moji": "🚦" }, "vhs": { "unicode": "1F4FC", "unicode_alternates": [ ], "name": "videocassette", "shortname": ":vhs:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "oldschool", "record", "video", "electronics" ], "moji": "📼" }, "vibration_mode": { "unicode": "1F4F3", "unicode_alternates": [ ], "name": "vibration mode", "shortname": ":vibration_mode:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "orange-square", "phone", "symbol" ], "moji": "📳" }, "video_camera": { "unicode": "1F4F9", "unicode_alternates": [ ], "name": "video camera", "shortname": ":video_camera:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "film", "record", "electronics", "camera", "movie" ], "moji": "📹" }, "video_game": { "unicode": "1F3AE", "unicode_alternates": [ ], "name": "video game", "shortname": ":video_game:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "PS4", "console", "controller", "play", "video", "game", "nintendo", "xbox", "playstation", "electronics", "boys night" ], "moji": "🎮" }, "violin": { "unicode": "1F3BB", "unicode_alternates": [ ], "name": "violin", "shortname": ":violin:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "instrument", "music", "violin", "fiddle", "instruments", "sarcastic" ], "moji": "🎻" }, "virgo": { "unicode": "264D", "unicode_alternates": [ "264D-FE0F" ], "name": "virgo", "shortname": ":virgo:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sign", "virgo", "maiden", "astrology", "greek", "constellation", "stars", "zodiac", "horoscope", "symbol" ], "moji": "♍" }, "volcano": { "unicode": "1F30B", "unicode_alternates": [ ], "name": "volcano", "shortname": ":volcano:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "photo", "volcano", "lava", "magma", "hot", "explode", "places", "tropical" ], "moji": "🌋" }, "volleyball": { "unicode": "1F3D0", "unicode_alternates": [ ], "name": "volleyball", "shortname": ":volleyball:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "game", "ball", "sport", "volleyball" ], "moji": "🏐" }, "vs": { "unicode": "1F19A", "unicode_alternates": [ ], "name": "squared vs", "shortname": ":vs:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "orange-square", "words", "symbol" ], "moji": "🆚" }, "vulcan": { "unicode": "1F596", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers", "shortname": ":vulcan:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers:", ":vulcan_salute:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long", "body", "hands", "hi", "diversity" ], "moji": "🖖" }, "vulcan_tone1": { "unicode": "1F596-1F3FB", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers tone 1", "shortname": ":vulcan_tone1:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone1:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏻" }, "vulcan_tone2": { "unicode": "1F596-1F3FC", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers tone 2", "shortname": ":vulcan_tone2:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone2:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏼" }, "vulcan_tone3": { "unicode": "1F596-1F3FD", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers tone 3", "shortname": ":vulcan_tone3:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone3:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏽" }, "vulcan_tone4": { "unicode": "1F596-1F3FE", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers tone 4", "shortname": ":vulcan_tone4:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone4:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏾" }, "vulcan_tone5": { "unicode": "1F596-1F3FF", "unicode_alternates": [ ], "name": "raised hand with part between middle and ring fingers tone 5", "shortname": ":vulcan_tone5:", "category": "people", "aliases": [ ":raised_hand_with_part_between_middle_and_ring_fingers_tone5:" ], "aliases_ascii": [ ], "keywords": [ "vulcan", "spock", "leonard", "nimoy", "star trek", "live long" ], "moji": "🖖🏿" }, "walking": { "unicode": "1F6B6", "unicode_alternates": [ ], "name": "pedestrian", "shortname": ":walking:", "category": "people", "aliases": [ ":walking_man:" ], "aliases_ascii": [ ], "keywords": [ "human", "man", "walk", "pedestrian", "stroll", "stride", "foot", "feet", "people", "men", "diversity" ], "moji": "🚶" }, "walking_tone1": { "unicode": "1F6B6-1F3FB", "unicode_alternates": [ ], "name": "pedestrian tone 1", "shortname": ":walking_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏻" }, "walking_tone2": { "unicode": "1F6B6-1F3FC", "unicode_alternates": [ ], "name": "pedestrian tone 2", "shortname": ":walking_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏼" }, "walking_tone3": { "unicode": "1F6B6-1F3FD", "unicode_alternates": [ ], "name": "pedestrian tone 3", "shortname": ":walking_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏽" }, "walking_tone4": { "unicode": "1F6B6-1F3FE", "unicode_alternates": [ ], "name": "pedestrian tone 4", "shortname": ":walking_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏾" }, "walking_tone5": { "unicode": "1F6B6-1F3FF", "unicode_alternates": [ ], "name": "pedestrian tone 5", "shortname": ":walking_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "man", "walk", "stroll", "stride", "hiking", "hike" ], "moji": "🚶🏿" }, "waning_crescent_moon": { "unicode": "1F318", "unicode_alternates": [ ], "name": "waning crescent moon symbol", "shortname": ":waning_crescent_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "crescent", "waning", "sky", "night", "cheese", "phase", "space" ], "moji": "🌘" }, "waning_gibbous_moon": { "unicode": "1F316", "unicode_alternates": [ ], "name": "waning gibbous moon symbol", "shortname": ":waning_gibbous_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "waning", "gibbous", "sky", "night", "cheese", "phase", "space" ], "moji": "🌖" }, "warning": { "unicode": "26A0", "unicode_alternates": [ "26A0-FE0F" ], "name": "warning sign", "shortname": ":warning:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "exclamation", "wip", "symbol", "punctuation" ], "moji": "⚠" }, "wastebasket": { "unicode": "1F5D1", "unicode_alternates": [ ], "name": "wastebasket", "shortname": ":wastebasket:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "trash", "garbage", "dispose", "object", "work" ], "moji": "🗑" }, "watch": { "unicode": "231A", "unicode_alternates": [ "231A-FE0F" ], "name": "watch", "shortname": ":watch:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "time", "electronics" ], "moji": "⌚" }, "water_buffalo": { "unicode": "1F403", "unicode_alternates": [ ], "name": "water buffalo", "shortname": ":water_buffalo:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "cow", "nature", "ox", "water", "buffalo", "asia", "bovine", "milk", "dairy", "wildlife" ], "moji": "🐃" }, "water_polo": { "unicode": "1F93D", "unicode_alternates": [ ], "name": "water polo", "shortname": ":water_polo:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽" }, "water_polo_tone1": { "unicode": "1F93D-1F3FB", "unicode_alternates": [ ], "name": "water polo tone 1", "shortname": ":water_polo_tone1:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽🏻" }, "water_polo_tone2": { "unicode": "1F93D-1F3FC", "unicode_alternates": [ ], "name": "water polo tone 2", "shortname": ":water_polo_tone2:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽🏼" }, "water_polo_tone3": { "unicode": "1F93D-1F3FD", "unicode_alternates": [ ], "name": "water polo tone 3", "shortname": ":water_polo_tone3:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽🏽" }, "water_polo_tone4": { "unicode": "1F93D-1F3FE", "unicode_alternates": [ ], "name": "water polo tone 4", "shortname": ":water_polo_tone4:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽🏾" }, "water_polo_tone5": { "unicode": "1F93D-1F3FF", "unicode_alternates": [ ], "name": "water polo tone 5", "shortname": ":water_polo_tone5:", "category": "activity", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤽🏿" }, "watermelon": { "unicode": "1F349", "unicode_alternates": [ ], "name": "watermelon", "shortname": ":watermelon:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "food", "fruit", "melon", "watermelon", "summer", "large" ], "moji": "🍉" }, "wave": { "unicode": "1F44B", "unicode_alternates": [ ], "name": "waving hand sign", "shortname": ":wave:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "hands", "solong", "body", "hi", "diversity" ], "moji": "👋" }, "wave_tone1": { "unicode": "1F44B-1F3FB", "unicode_alternates": [ ], "name": "waving hand sign tone 1", "shortname": ":wave_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏻" }, "wave_tone2": { "unicode": "1F44B-1F3FC", "unicode_alternates": [ ], "name": "waving hand sign tone 2", "shortname": ":wave_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏼" }, "wave_tone3": { "unicode": "1F44B-1F3FD", "unicode_alternates": [ ], "name": "waving hand sign tone 3", "shortname": ":wave_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏽" }, "wave_tone4": { "unicode": "1F44B-1F3FE", "unicode_alternates": [ ], "name": "waving hand sign tone 4", "shortname": ":wave_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏾" }, "wave_tone5": { "unicode": "1F44B-1F3FF", "unicode_alternates": [ ], "name": "waving hand sign tone 5", "shortname": ":wave_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "farewell", "gesture", "goodbye", "solong", "hi", "wave" ], "moji": "👋🏿" }, "wavy_dash": { "unicode": "3030", "unicode_alternates": [ ], "name": "wavy dash", "shortname": ":wavy_dash:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "draw", "line", "symbol" ], "moji": "〰" }, "waxing_crescent_moon": { "unicode": "1F312", "unicode_alternates": [ ], "name": "waxing crescent moon symbol", "shortname": ":waxing_crescent_moon:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "nature", "moon", "waxing", "sky", "night", "cheese", "phase", "space" ], "moji": "🌒" }, "waxing_gibbous_moon": { "unicode": "1F314", "unicode_alternates": [ ], "name": "waxing gibbous moon symbol", "shortname": ":waxing_gibbous_moon:", "category": "nature", "aliases": [ ":moon:" ], "aliases_ascii": [ ], "keywords": [ "nature", "space", "sky", "moon" ], "moji": "🌔" }, "wc": { "unicode": "1F6BE", "unicode_alternates": [ ], "name": "water closet", "shortname": ":wc:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "restroom", "toilet", "water", "closet", "bathroom", "throne", "porcelain", "waste", "flush", "plumbing", "symbol" ], "moji": "🚾" }, "weary": { "unicode": "1F629", "unicode_alternates": [ ], "name": "weary face", "shortname": ":weary:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "frustrated", "sad", "sleepy", "tired", "weary", "tiredness", "study", "finals", "school", "exhausted", "smiley", "stressed", "emotion" ], "moji": "😩" }, "wedding": { "unicode": "1F492", "unicode_alternates": [ ], "name": "wedding", "shortname": ":wedding:", "category": "travel", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "bride", "couple", "groom", "like", "love", "marriage", "places", "wedding", "building", "parties" ], "moji": "💒" }, "whale": { "unicode": "1F433", "unicode_alternates": [ ], "name": "spouting whale", "shortname": ":whale:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "ocean", "sea", "wildlife", "tropical", "whales" ], "moji": "🐳" }, "whale2": { "unicode": "1F40B", "unicode_alternates": [ ], "name": "whale", "shortname": ":whale2:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "ocean", "sea", "whale", "blubber", "bloated", "fat", "large", "massive", "wildlife", "tropical", "whales" ], "moji": "🐋" }, "wheel_of_dharma": { "unicode": "2638", "unicode_alternates": [ ], "name": "wheel of dharma", "shortname": ":wheel_of_dharma:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "buddhist", "religion", "symbol" ], "moji": "☸" }, "wheelchair": { "unicode": "267F", "unicode_alternates": [ "267F-FE0F" ], "name": "wheelchair symbol", "shortname": ":wheelchair:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "disabled", "symbol" ], "moji": "♿" }, "white_check_mark": { "unicode": "2705", "unicode_alternates": [ ], "name": "white heavy check mark", "shortname": ":white_check_mark:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "agree", "green-square", "ok", "symbol" ], "moji": "✅" }, "white_circle": { "unicode": "26AA", "unicode_alternates": [ "26AA-FE0F" ], "name": "medium white circle", "shortname": ":white_circle:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "circle" ], "moji": "⚪" }, "white_flower": { "unicode": "1F4AE", "unicode_alternates": [ ], "name": "white flower", "shortname": ":white_flower:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "japanese", "white", "flower", "teacher", "school", "grade", "score", "brilliance", "intelligence", "homework", "student", "assignment", "praise", "symbol" ], "moji": "💮" }, "white_large_square": { "unicode": "2B1C", "unicode_alternates": [ "2B1C-FE0F" ], "name": "white large square", "shortname": ":white_large_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "⬜" }, "white_medium_small_square": { "unicode": "25FD", "unicode_alternates": [ "25FD-FE0F" ], "name": "white medium small square", "shortname": ":white_medium_small_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◽" }, "white_medium_square": { "unicode": "25FB", "unicode_alternates": [ "25FB-FE0F" ], "name": "white medium square", "shortname": ":white_medium_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "◻" }, "white_small_square": { "unicode": "25AB", "unicode_alternates": [ "25AB-FE0F" ], "name": "white small square", "shortname": ":white_small_square:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "▫" }, "white_square_button": { "unicode": "1F533", "unicode_alternates": [ ], "name": "white square button", "shortname": ":white_square_button:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "shape", "shapes", "symbol", "square" ], "moji": "🔳" }, "white_sun_cloud": { "unicode": "1F325", "unicode_alternates": [ ], "name": "white sun behind cloud", "shortname": ":white_sun_cloud:", "category": "nature", "aliases": [ ":white_sun_behind_cloud:", ":sun_behind_large_cloud:" ], "aliases_ascii": [ ], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "sun" ], "moji": "🌥" }, "white_sun_rain_cloud": { "unicode": "1F326", "unicode_alternates": [ ], "name": "white sun behind cloud with rain", "shortname": ":white_sun_rain_cloud:", "category": "nature", "aliases": [ ":white_sun_behind_cloud_with_rain:", ":sun_behind_rain_cloud:" ], "aliases_ascii": [ ], "keywords": [ "nature", "weather", "sky", "cloud", "cold", "rain", "sun" ], "moji": "🌦" }, "white_sun_small_cloud": { "unicode": "1F324", "unicode_alternates": [ ], "name": "white sun with small cloud", "shortname": ":white_sun_small_cloud:", "category": "nature", "aliases": [ ":white_sun_with_small_cloud:", ":sun_behind_small_cloud:" ], "aliases_ascii": [ ], "keywords": [ "nature", "weather", "sky", "cloud", "sun" ], "moji": "🌤" }, "wilted_rose": { "unicode": "1F940", "unicode_alternates": [ ], "name": "wilted flower", "shortname": ":wilted_rose:", "category": "nature", "aliases": [ ":wilted_flower:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🥀" }, "wind_blowing_face": { "unicode": "1F32C", "unicode_alternates": [ ], "name": "wind blowing face", "shortname": ":wind_blowing_face:", "category": "nature", "aliases": [ ":wind_face:" ], "aliases_ascii": [ ], "keywords": [ "mother", "nature", "weather", "cold" ], "moji": "🌬" }, "wind_chime": { "unicode": "1F390", "unicode_alternates": [ ], "name": "wind chime", "shortname": ":wind_chime:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "ding", "nature", "wind", "chime", "bell", "fūrin", "instrument", "music", "spirits", "soothing", "protective", "spiritual", "sound", "object", "japan" ], "moji": "🎐" }, "wine_glass": { "unicode": "1F377", "unicode_alternates": [ ], "name": "wine glass", "shortname": ":wine_glass:", "category": "food", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "alcohol", "beverage", "booze", "bottle", "drink", "drunk", "fermented", "glass", "grapes", "tasting", "wine", "winery", "italian", "girls night", "parties" ], "moji": "🍷" }, "wink": { "unicode": "1F609", "unicode_alternates": [ ], "name": "winking face", "shortname": ":wink:", "category": "people", "aliases": [ ], "aliases_ascii": [ ";)", ";-)", "*-)", "*)", ";-]", ";]", ";D", ";^)" ], "keywords": [ "face", "happy", "mischievous", "secret", "wink", "winking", "friendly", "joke", "silly", "smiley", "emotion" ], "moji": "😉" }, "wolf": { "unicode": "1F43A", "unicode_alternates": [ ], "name": "wolf face", "shortname": ":wolf:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "animal", "nature", "wildlife", "roar" ], "moji": "🐺" }, "woman": { "unicode": "1F469", "unicode_alternates": [ ], "name": "woman", "shortname": ":woman:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girls", "people", "women", "sex", "diversity", "feminist", "selfie", "girls night" ], "moji": "👩" }, "woman_tone1": { "unicode": "1F469-1F3FB", "unicode_alternates": [ ], "name": "woman tone 1", "shortname": ":woman_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏻" }, "woman_tone2": { "unicode": "1F469-1F3FC", "unicode_alternates": [ ], "name": "woman tone 2", "shortname": ":woman_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏼" }, "woman_tone3": { "unicode": "1F469-1F3FD", "unicode_alternates": [ ], "name": "woman tone 3", "shortname": ":woman_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏽" }, "woman_tone4": { "unicode": "1F469-1F3FE", "unicode_alternates": [ ], "name": "woman tone 4", "shortname": ":woman_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏾" }, "woman_tone5": { "unicode": "1F469-1F3FF", "unicode_alternates": [ ], "name": "woman tone 5", "shortname": ":woman_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "female", "girl", "lady" ], "moji": "👩🏿" }, "womans_clothes": { "unicode": "1F45A", "unicode_alternates": [ ], "name": "womans clothes", "shortname": ":womans_clothes:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "fashion", "woman", "clothing", "clothes", "blouse", "shirt", "wardrobe", "breasts", "cleavage", "shopping", "shop", "dressing", "dressed", "women" ], "moji": "👚" }, "womans_hat": { "unicode": "1F452", "unicode_alternates": [ ], "name": "womans hat", "shortname": ":womans_hat:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "accessories", "fashion", "female", "women" ], "moji": "👒" }, "womens": { "unicode": "1F6BA", "unicode_alternates": [ ], "name": "womens symbol", "shortname": ":womens:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "purple-square", "woman", "bathroom", "restroom", "sign", "girl", "female", "avatar", "symbol" ], "moji": "🚺" }, "worried": { "unicode": "1F61F", "unicode_alternates": [ ], "name": "worried face", "shortname": ":worried:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "concern", "face", "nervous", "worried", "anxious", "distressed", "tense", "sad", "smiley", "emotion" ], "moji": "😟" }, "wrench": { "unicode": "1F527", "unicode_alternates": [ ], "name": "wrench", "shortname": ":wrench:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "diy", "ikea", "tools", "object", "tool" ], "moji": "🔧" }, "wrestlers": { "unicode": "1F93C", "unicode_alternates": [ ], "name": "wrestlers", "shortname": ":wrestlers:", "category": "activity", "aliases": [ ":wrestling:" ], "aliases_ascii": [ ], "keywords": [ ], "moji": "🤼" }, "writing_hand": { "unicode": "270D", "unicode_alternates": [ "270D-FE0F" ], "name": "writing hand", "shortname": ":writing_hand:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "body", "hands", "write", "diversity" ], "moji": "✍" }, "writing_hand_tone1": { "unicode": "270D-1F3FB", "unicode_alternates": [ ], "name": "writing hand tone 1", "shortname": ":writing_hand_tone1:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏻" }, "writing_hand_tone2": { "unicode": "270D-1F3FC", "unicode_alternates": [ ], "name": "writing hand tone 2", "shortname": ":writing_hand_tone2:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏼" }, "writing_hand_tone3": { "unicode": "270D-1F3FD", "unicode_alternates": [ ], "name": "writing hand tone 3", "shortname": ":writing_hand_tone3:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏽" }, "writing_hand_tone4": { "unicode": "270D-1F3FE", "unicode_alternates": [ ], "name": "writing hand tone 4", "shortname": ":writing_hand_tone4:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏾" }, "writing_hand_tone5": { "unicode": "270D-1F3FF", "unicode_alternates": [ ], "name": "writing hand tone 5", "shortname": ":writing_hand_tone5:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "write", "sign", "signature", "draw" ], "moji": "✍🏿" }, "x": { "unicode": "274C", "unicode_alternates": [ ], "name": "cross mark", "shortname": ":x:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "delete", "no", "remove", "symbol", "sol" ], "moji": "❌" }, "yellow_heart": { "unicode": "1F49B", "unicode_alternates": [ ], "name": "yellow heart", "shortname": ":yellow_heart:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "affection", "like", "love", "valentines", "yellow", "gold", "heart", "friendship", "happy", "happiness", "trust", "compassionate", "respectful", "honest", "caring", "selfless", "symbol" ], "moji": "💛" }, "yen": { "unicode": "1F4B4", "unicode_alternates": [ ], "name": "banknote with yen sign", "shortname": ":yen:", "category": "objects", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "currency", "dollar", "japanese", "money", "yen", "japan", "banknote", "paper", "cash", "bill" ], "moji": "💴" }, "yin_yang": { "unicode": "262F", "unicode_alternates": [ ], "name": "yin yang", "shortname": ":yin_yang:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "religion", "sign", "symbol", "tao", "taoist" ], "moji": "☯" }, "yum": { "unicode": "1F60B", "unicode_alternates": [ ], "name": "face savouring delicious food", "shortname": ":yum:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "face", "happy", "joy", "smile", "tongue", "delicious", "savoring", "food", "eat", "yummy", "yum", "tasty", "savory", "silly", "smiley", "emotion", "sarcastic", "good" ], "moji": "😋" }, "zap": { "unicode": "26A1", "unicode_alternates": [ "26A1-FE0F" ], "name": "high voltage sign", "shortname": ":zap:", "category": "nature", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "lightning bolt", "thunder", "weather", "sky", "diarrhea" ], "moji": "⚡" }, "zero": { "moji": "0️⃣", "unicode": "0030-20E3", "unicode_alternates": [ "0030-FE0F-20E3" ], "name": "keycap digit zero", "shortname": ":zero:", "category": "symbols", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "blue-square", "null", "numbers", "number", "math", "symbol" ] }, "zipper_mouth": { "unicode": "1F910", "unicode_alternates": [ ], "name": "zipper-mouth face", "shortname": ":zipper_mouth:", "category": "people", "aliases": [ ":zipper_mouth_face:" ], "aliases_ascii": [ ], "keywords": [ "mad", "smiley" ], "moji": "🤐" }, "zzz": { "unicode": "1F4A4", "unicode_alternates": [ ], "name": "sleeping symbol", "shortname": ":zzz:", "category": "people", "aliases": [ ], "aliases_ascii": [ ], "keywords": [ "sleepy", "tired", "goodnight" ], "moji": "💤" }, "frowning_face": { "unicode": "2639", "name": "frowning face", "shortname": ":frowning_face:", "category": "people", "moji": "☹️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "blonde_woman": { "unicode": "1f471-2640", "name": "blond-haired woman", "shortname": ":blonde_woman:", "category": "people", "moji": "👱‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_with_turban": { "unicode": "1f473-2640", "name": "woman wearing turban", "shortname": ":woman_with_turban:", "category": "people", "moji": "👳‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "policewoman": { "unicode": "1f46e-2640", "name": "woman police officer", "shortname": ":policewoman:", "category": "people", "moji": "👮‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "construction_worker_woman": { "unicode": "1f477-2640", "name": "woman construction worker", "shortname": ":construction_worker_woman:", "category": "people", "moji": "👷‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "guardswoman": { "unicode": "1f482-2640", "name": "woman guard", "shortname": ":guardswoman:", "category": "people", "moji": "💂‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "female_detective": { "unicode": "1f575-2640", "name": "woman detective", "shortname": ":female_detective:", "category": "people", "moji": "🕵️‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "male_detective": { "unicode": "1f575", "name": "detective", "shortname": ":male_detective:", "category": "people", "moji": "🕵️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_health_worker": { "unicode": "1f469-2695", "name": "woman health worker", "shortname": ":woman_health_worker:", "category": "people", "moji": "👩‍⚕️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_health_worker": { "unicode": "1f468-2695", "name": "man health worker", "shortname": ":man_health_worker:", "category": "people", "moji": "👨‍⚕️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_farmer": { "unicode": "1f469-1f33e", "name": "woman farmer", "shortname": ":woman_farmer:", "category": "people", "moji": "👩‍🌾", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_farmer": { "unicode": "1f468-1f33e", "name": "man farmer", "shortname": ":man_farmer:", "category": "people", "moji": "👨‍🌾", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_cook": { "unicode": "1f469-1f373", "name": "woman cook", "shortname": ":woman_cook:", "category": "people", "moji": "👩‍🍳", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_cook": { "unicode": "1f468-1f373", "name": "man cook", "shortname": ":man_cook:", "category": "people", "moji": "👨‍🍳", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_student": { "unicode": "1f469-1f393", "name": "woman student", "shortname": ":woman_student:", "category": "people", "moji": "👩‍🎓", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_student": { "unicode": "1f468-1f393", "name": "man student", "shortname": ":man_student:", "category": "people", "moji": "👨‍🎓", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_singer": { "unicode": "1f469-1f3a4", "name": "woman singer", "shortname": ":woman_singer:", "category": "people", "moji": "👩‍🎤", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_singer": { "unicode": "1f468-1f3a4", "name": "man singer", "shortname": ":man_singer:", "category": "people", "moji": "👨‍🎤", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_teacher": { "unicode": "1f469-1f3eb", "name": "woman teacher", "shortname": ":woman_teacher:", "category": "people", "moji": "👩‍🏫", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_teacher": { "unicode": "1f468-1f3eb", "name": "man teacher", "shortname": ":man_teacher:", "category": "people", "moji": "👨‍🏫", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_factory_worker": { "unicode": "1f469-1f3ed", "name": "woman factory worker", "shortname": ":woman_factory_worker:", "category": "people", "moji": "👩‍🏭", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_factory_worker": { "unicode": "1f468-1f3ed", "name": "man factory worker", "shortname": ":man_factory_worker:", "category": "people", "moji": "👨‍🏭", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_technologist": { "unicode": "1f469-1f4bb", "name": "woman technologist", "shortname": ":woman_technologist:", "category": "people", "moji": "👩‍💻", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_technologist": { "unicode": "1f468-1f4bb", "name": "man technologist", "shortname": ":man_technologist:", "category": "people", "moji": "👨‍💻", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_office_worker": { "unicode": "1f469-1f4bc", "name": "woman office worker", "shortname": ":woman_office_worker:", "category": "people", "moji": "👩‍💼", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_office_worker": { "unicode": "1f468-1f4bc", "name": "man office worker", "shortname": ":man_office_worker:", "category": "people", "moji": "👨‍💼", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_mechanic": { "unicode": "1f469-1f527", "name": "woman mechanic", "shortname": ":woman_mechanic:", "category": "people", "moji": "👩‍🔧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_mechanic": { "unicode": "1f468-1f527", "name": "man mechanic", "shortname": ":man_mechanic:", "category": "people", "moji": "👨‍🔧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_scientist": { "unicode": "1f469-1f52c", "name": "woman scientist", "shortname": ":woman_scientist:", "category": "people", "moji": "👩‍🔬", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_scientist": { "unicode": "1f468-1f52c", "name": "man scientist", "shortname": ":man_scientist:", "category": "people", "moji": "👨‍🔬", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_artist": { "unicode": "1f469-1f3a8", "name": "woman artist", "shortname": ":woman_artist:", "category": "people", "moji": "👩‍🎨", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_artist": { "unicode": "1f468-1f3a8", "name": "man artist", "shortname": ":man_artist:", "category": "people", "moji": "👨‍🎨", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_firefighter": { "unicode": "1f469-1f692", "name": "woman firefighter", "shortname": ":woman_firefighter:", "category": "people", "moji": "👩‍🚒", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_firefighter": { "unicode": "1f468-1f692", "name": "man firefighter", "shortname": ":man_firefighter:", "category": "people", "moji": "👨‍🚒", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_pilot": { "unicode": "1f469-2708", "name": "woman pilot", "shortname": ":woman_pilot:", "category": "people", "moji": "👩‍✈️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_pilot": { "unicode": "1f468-2708", "name": "man pilot", "shortname": ":man_pilot:", "category": "people", "moji": "👨‍✈️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_astronaut": { "unicode": "1f469-1f680", "name": "woman astronaut", "shortname": ":woman_astronaut:", "category": "people", "moji": "👩‍🚀", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_astronaut": { "unicode": "1f468-1f680", "name": "man astronaut", "shortname": ":man_astronaut:", "category": "people", "moji": "👨‍🚀", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_judge": { "unicode": "1f469-2696", "name": "woman judge", "shortname": ":woman_judge:", "category": "people", "moji": "👩‍⚖️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_judge": { "unicode": "1f468-2696", "name": "man judge", "shortname": ":man_judge:", "category": "people", "moji": "👨‍⚖️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "bowing_woman": { "unicode": "1f647-2640", "name": "woman bowing", "shortname": ":bowing_woman:", "category": "people", "moji": "🙇‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "tipping_hand_man": { "unicode": "1f481-2642", "name": "man tipping hand", "shortname": ":tipping_hand_man:", "category": "people", "moji": "💁‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "no_good_man": { "unicode": "1f645-2642", "name": "man gesturing NO", "shortname": ":no_good_man:", "category": "people", "moji": "🙅‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "ok_man": { "unicode": "1f646-2642", "name": "man gesturing OK", "shortname": ":ok_man:", "category": "people", "moji": "🙆‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "raising_hand_man": { "unicode": "1f64b-2642", "name": "man raising hand", "shortname": ":raising_hand_man:", "category": "people", "moji": "🙋‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_facepalming": { "unicode": "1f926-2640", "name": "woman facepalming", "shortname": ":woman_facepalming:", "category": "people", "moji": "🤦‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_facepalming": { "unicode": "1f926-2642", "name": "man facepalming", "shortname": ":man_facepalming:", "category": "people", "moji": "🤦‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_shrugging": { "unicode": "1f937-2640", "name": "woman shrugging", "shortname": ":woman_shrugging:", "category": "people", "moji": "🤷‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_shrugging": { "unicode": "1f937-2642", "name": "man shrugging", "shortname": ":man_shrugging:", "category": "people", "moji": "🤷‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "pouting_man": { "unicode": "1f64e-2642", "name": "man pouting", "shortname": ":pouting_man:", "category": "people", "moji": "🙎‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "frowning_man": { "unicode": "1f64d-2642", "name": "man frowning", "shortname": ":frowning_man:", "category": "people", "moji": "🙍‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "haircut_man": { "unicode": "1f487-2642", "name": "man getting haircut", "shortname": ":haircut_man:", "category": "people", "moji": "💇‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "massage_man": { "unicode": "1f486-2642", "name": "man getting massage", "shortname": ":massage_man:", "category": "people", "moji": "💆‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "dancing_men": { "unicode": "1f46f-2642", "name": "men with bunny ears partying", "shortname": ":dancing_men:", "category": "people", "moji": "👯‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "walking_woman": { "unicode": "1f6b6-2640", "name": "woman walking", "shortname": ":walking_woman:", "category": "people", "moji": "🚶‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "running_woman": { "unicode": "1f3c3-2640", "name": "woman running", "shortname": ":running_woman:", "category": "people", "moji": "🏃‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_woman_boy": { "unicode": "1f469-1f466", "name": "family: woman, boy", "shortname": ":family_woman_boy:", "category": "people", "moji": "👩‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_woman_girl": { "unicode": "1f469-1f467", "name": "family: woman, girl", "shortname": ":family_woman_girl:", "category": "people", "moji": "👩‍👧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_woman_girl_boy": { "unicode": "1f469-1f467-1f466", "name": "family: woman, girl, boy", "shortname": ":family_woman_girl_boy:", "category": "people", "moji": "👩‍👧‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_woman_boy_boy": { "unicode": "1f469-1f466-1f466", "name": "family: woman, boy, boy", "shortname": ":family_woman_boy_boy:", "category": "people", "moji": "👩‍👦‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_woman_girl_girl": { "unicode": "1f469-1f467-1f467", "name": "family: woman, girl, girl", "shortname": ":family_woman_girl_girl:", "category": "people", "moji": "👩‍👧‍👧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_man_boy": { "unicode": "1f468-1f466", "name": "family: man, boy", "shortname": ":family_man_boy:", "category": "people", "moji": "👨‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_man_girl": { "unicode": "1f468-1f467", "name": "family: man, girl", "shortname": ":family_man_girl:", "category": "people", "moji": "👨‍👧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_man_girl_boy": { "unicode": "1f468-1f467-1f466", "name": "family: man, girl, boy", "shortname": ":family_man_girl_boy:", "category": "people", "moji": "👨‍👧‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_man_boy_boy": { "unicode": "1f468-1f466-1f466", "name": "family: man, boy, boy", "shortname": ":family_man_boy_boy:", "category": "people", "moji": "👨‍👦‍👦", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "family_man_girl_girl": { "unicode": "1f468-1f467-1f467", "name": "family: man, girl, girl", "shortname": ":family_man_girl_girl:", "category": "people", "moji": "👨‍👧‍👧", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "open_umbrella": { "unicode": "2602", "name": "umbrella", "shortname": ":open_umbrella:", "category": "people", "moji": "☂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "snowman_with_snow": { "unicode": "2603", "name": "snowman", "shortname": ":snowman_with_snow:", "category": "nature", "moji": "☃️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "weight_lifting_woman": { "unicode": "1f3cb-2640", "name": "woman lifting weights", "shortname": ":weight_lifting_woman:", "category": "activity", "moji": "🏋️‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "weight_lifting_man": { "unicode": "1f3cb", "name": "person lifting weights", "shortname": ":weight_lifting_man:", "category": "activity", "moji": "🏋️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "women_wrestling": { "unicode": "1f93c-2640", "name": "women wrestling", "shortname": ":women_wrestling:", "category": "activity", "moji": "🤼‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "men_wrestling": { "unicode": "1f93c-2642", "name": "men wrestling", "shortname": ":men_wrestling:", "category": "activity", "moji": "🤼‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_cartwheeling": { "unicode": "1f938-2640", "name": "woman cartwheeling", "shortname": ":woman_cartwheeling:", "category": "activity", "moji": "🤸‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_cartwheeling": { "unicode": "1f938-2642", "name": "man cartwheeling", "shortname": ":man_cartwheeling:", "category": "activity", "moji": "🤸‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "basketball_woman": { "unicode": "26f9-2640", "name": "woman bouncing ball", "shortname": ":basketball_woman:", "category": "activity", "moji": "⛹️‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "basketball_man": { "unicode": "26f9", "name": "person bouncing ball", "shortname": ":basketball_man:", "category": "activity", "moji": "⛹️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_playing_handball": { "unicode": "1f93e-2640", "name": "woman playing handball", "shortname": ":woman_playing_handball:", "category": "activity", "moji": "🤾‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_playing_handball": { "unicode": "1f93e-2642", "name": "man playing handball", "shortname": ":man_playing_handball:", "category": "activity", "moji": "🤾‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "golfing_woman": { "unicode": "1f3cc-2640", "name": "woman golfing", "shortname": ":golfing_woman:", "category": "activity", "moji": "🏌️‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "golfing_man": { "unicode": "1f3cc", "name": "person golfing", "shortname": ":golfing_man:", "category": "activity", "moji": "🏌️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "surfing_woman": { "unicode": "1f3c4-2640", "name": "woman surfing", "shortname": ":surfing_woman:", "category": "activity", "moji": "🏄‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "swimming_woman": { "unicode": "1f3ca-2640", "name": "woman swimming", "shortname": ":swimming_woman:", "category": "activity", "moji": "🏊‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_playing_water_polo": { "unicode": "1f93d-2640", "name": "woman playing water polo", "shortname": ":woman_playing_water_polo:", "category": "activity", "moji": "🤽‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_playing_water_polo": { "unicode": "1f93d-2642", "name": "man playing water polo", "shortname": ":man_playing_water_polo:", "category": "activity", "moji": "🤽‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "rowing_woman": { "unicode": "1f6a3-2640", "name": "woman rowing boat", "shortname": ":rowing_woman:", "category": "activity", "moji": "🚣‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "biking_woman": { "unicode": "1f6b4-2640", "name": "woman biking", "shortname": ":biking_woman:", "category": "activity", "moji": "🚴‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "mountain_biking_woman": { "unicode": "1f6b5-2640", "name": "woman mountain biking", "shortname": ":mountain_biking_woman:", "category": "activity", "moji": "🚵‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "woman_juggling": { "unicode": "1f939-2640", "name": "woman juggling", "shortname": ":woman_juggling:", "category": "activity", "moji": "🤹‍♀️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "man_juggling": { "unicode": "1f939-2642", "name": "man juggling", "shortname": ":man_juggling:", "category": "activity", "moji": "🤹‍♂️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "boat": { "unicode": "26f5", "name": "sailboat", "shortname": ":boat:", "category": "places", "moji": "⛵️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "phone": { "unicode": "260e", "name": "telephone", "shortname": ":phone:", "category": "objects", "moji": "☎️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "balance_scale": { "unicode": "2696", "name": "balance scale", "shortname": ":balance_scale:", "category": "objects", "moji": "⚖️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "heavy_heart_exclamation": { "unicode": "2763", "name": "heavy heart exclamation", "shortname": ":heavy_heart_exclamation:", "category": "symbols", "moji": "❣️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "fleur_de_lis": { "unicode": "269c", "name": "fleur-de-lis", "shortname": ":fleur_de_lis:", "category": "symbols", "moji": "⚜️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] }, "white_flag": { "unicode": "1f3f3", "name": "white flag", "shortname": ":white_flag:", "category": "flags", "moji": "🏳️", "unicode_alternates": [ ], "aliases": [ ], "aliases_ascii": [ ], "keywords": [ ] } } tanuki_emoji-0.9.0/vendor/emojione-alpha-codes/0000755000004100000410000000000014545323276021521 5ustar www-datawww-datatanuki_emoji-0.9.0/vendor/emojione-alpha-codes/eac.json0000644000004100000410000210222614545323276023151 0ustar www-datawww-data{ "0023-20e3": { "output": "0023-fe0f-20e3", "name": "keycap: #", "alpha_code": ":hash:", "aliases": "" }, "0030-20e3": { "output": "0030-fe0f-20e3", "name": "keycap: 0", "alpha_code": ":zero:", "aliases": "" }, "0031-20e3": { "output": "0031-fe0f-20e3", "name": "keycap: 1", "alpha_code": ":one:", "aliases": "" }, "0032-20e3": { "output": "0032-fe0f-20e3", "name": "keycap: 2", "alpha_code": ":two:", "aliases": "" }, "0033-20e3": { "output": "0033-fe0f-20e3", "name": "keycap: 3", "alpha_code": ":three:", "aliases": "" }, "0034-20e3": { "output": "0034-fe0f-20e3", "name": "keycap: 4", "alpha_code": ":four:", "aliases": "" }, "0035-20e3": { "output": "0035-fe0f-20e3", "name": "keycap: 5", "alpha_code": ":five:", "aliases": "" }, "0036-20e3": { "output": "0036-fe0f-20e3", "name": "keycap: 6", "alpha_code": ":six:", "aliases": "" }, "0037-20e3": { "output": "0037-fe0f-20e3", "name": "keycap: 7", "alpha_code": ":seven:", "aliases": "" }, "0038-20e3": { "output": "0038-fe0f-20e3", "name": "keycap: 8", "alpha_code": ":eight:", "aliases": "" }, "0039-20e3": { "output": "0039-fe0f-20e3", "name": "keycap: 9", "alpha_code": ":nine:", "aliases": "" }, "00a9": { "output": "00a9-fe0f", "name": "copyright", "alpha_code": ":copyright:", "aliases": "" }, "00ae": { "output": "00ae-fe0f", "name": "registered", "alpha_code": ":registered:", "aliases": "" }, "203c": { "output": "203c-fe0f", "name": "double exclamation mark", "alpha_code": ":bangbang:", "aliases": "" }, "2049": { "output": "2049-fe0f", "name": "exclamation question mark", "alpha_code": ":interrobang:", "aliases": "" }, "2122": { "output": "2122-fe0f", "name": "trade mark", "alpha_code": ":tm:", "aliases": "" }, "2139": { "output": "2139-fe0f", "name": "information", "alpha_code": ":information_source:", "aliases": "" }, "2194": { "output": "2194-fe0f", "name": "left-right arrow", "alpha_code": ":left_right_arrow:", "aliases": "" }, "2195": { "output": "2195-fe0f", "name": "up-down arrow", "alpha_code": ":arrow_up_down:", "aliases": "" }, "2196": { "output": "2196-fe0f", "name": "up-left arrow", "alpha_code": ":arrow_upper_left:", "aliases": "" }, "1f949": { "output": "1f949", "name": "3rd place medal", "alpha_code": ":third_place:", "aliases": ":third_place_medal:" }, "2197": { "output": "2197-fe0f", "name": "up-right arrow", "alpha_code": ":arrow_upper_right:", "aliases": "" }, "2198": { "output": "2198-fe0f", "name": "down-right arrow", "alpha_code": ":arrow_lower_right:", "aliases": "" }, "2199": { "output": "2199-fe0f", "name": "down-left arrow", "alpha_code": ":arrow_lower_left:", "aliases": "" }, "1f948": { "output": "1f948", "name": "2nd place medal", "alpha_code": ":second_place:", "aliases": ":second_place_medal:" }, "21a9": { "output": "21a9-fe0f", "name": "right arrow curving left", "alpha_code": ":leftwards_arrow_with_hook:", "aliases": "" }, "21aa": { "output": "21aa-fe0f", "name": "left arrow curving right", "alpha_code": ":arrow_right_hook:", "aliases": "" }, "231a": { "output": "231a", "name": "watch", "alpha_code": ":watch:", "aliases": "" }, "231b": { "output": "231b", "name": "hourglass done", "alpha_code": ":hourglass:", "aliases": "" }, "23e9": { "output": "23e9", "name": "fast-forward button", "alpha_code": ":fast_forward:", "aliases": "" }, "23ea": { "output": "23ea", "name": "fast reverse button", "alpha_code": ":rewind:", "aliases": "" }, "23eb": { "output": "23eb", "name": "fast up button", "alpha_code": ":arrow_double_up:", "aliases": "" }, "23ec": { "output": "23ec", "name": "fast down button", "alpha_code": ":arrow_double_down:", "aliases": "" }, "23f0": { "output": "23f0", "name": "alarm clock", "alpha_code": ":alarm_clock:", "aliases": "" }, "23f3": { "output": "23f3", "name": "hourglass not done", "alpha_code": ":hourglass_flowing_sand:", "aliases": "" }, "24c2": { "output": "24c2-fe0f", "name": "circled M", "alpha_code": ":m:", "aliases": "" }, "25aa": { "output": "25aa-fe0f", "name": "black small square", "alpha_code": ":black_small_square:", "aliases": "" }, "25ab": { "output": "25ab-fe0f", "name": "white small square", "alpha_code": ":white_small_square:", "aliases": "" }, "25b6": { "output": "25b6-fe0f", "name": "play button", "alpha_code": ":arrow_forward:", "aliases": "" }, "25c0": { "output": "25c0-fe0f", "name": "reverse button", "alpha_code": ":arrow_backward:", "aliases": "" }, "25fb": { "output": "25fb-fe0f", "name": "white medium square", "alpha_code": ":white_medium_square:", "aliases": "" }, "25fc": { "output": "25fc-fe0f", "name": "black medium square", "alpha_code": ":black_medium_square:", "aliases": "" }, "25fd": { "output": "25fd", "name": "white medium-small square", "alpha_code": ":white_medium_small_square:", "aliases": "" }, "25fe": { "output": "25fe", "name": "black medium-small square", "alpha_code": ":black_medium_small_square:", "aliases": "" }, "2600": { "output": "2600-fe0f", "name": "sun", "alpha_code": ":sunny:", "aliases": "" }, "2601": { "output": "2601-fe0f", "name": "cloud", "alpha_code": ":cloud:", "aliases": "" }, "260e": { "output": "260e-fe0f", "name": "telephone", "alpha_code": ":telephone:", "aliases": "" }, "2611": { "output": "2611-fe0f", "name": "check box with check", "alpha_code": ":ballot_box_with_check:", "aliases": "" }, "2614": { "output": "2614", "name": "umbrella with rain drops", "alpha_code": ":umbrella:", "aliases": "" }, "2615": { "output": "2615", "name": "hot beverage", "alpha_code": ":coffee:", "aliases": "" }, "261d": { "output": "261d-fe0f", "name": "index pointing up", "alpha_code": ":point_up:", "aliases": "" }, "263a": { "output": "263a-fe0f", "name": "smiling face", "alpha_code": ":relaxed:", "aliases": "" }, "2648": { "output": "2648", "name": "Aries", "alpha_code": ":aries:", "aliases": "" }, "1f947": { "output": "1f947", "name": "1st place medal", "alpha_code": ":first_place:", "aliases": ":first_place_medal:" }, "2649": { "output": "2649", "name": "Taurus", "alpha_code": ":taurus:", "aliases": "" }, "1f93a": { "output": "1f93a", "name": "person fencing", "alpha_code": ":person_fencing:", "aliases": ":fencer:|:fencing:" }, "264a": { "output": "264a", "name": "Gemini", "alpha_code": ":gemini:", "aliases": "" }, "264b": { "output": "264b", "name": "Cancer", "alpha_code": ":cancer:", "aliases": "" }, "1f945": { "output": "1f945", "name": "goal net", "alpha_code": ":goal:", "aliases": ":goal_net:" }, "264c": { "output": "264c", "name": "Leo", "alpha_code": ":leo:", "aliases": "" }, "002a": { "output": "002a-fe0f", "name": "asterisk", "alpha_code": ":asterisk_symbol:", "aliases": "" }, "264d": { "output": "264d", "name": "Virgo", "alpha_code": ":virgo:", "aliases": "" }, "1f93e": { "output": "1f93e", "name": "person playing handball", "alpha_code": ":person_playing_handball:", "aliases": ":handball:" }, "264e": { "output": "264e", "name": "Libra", "alpha_code": ":libra:", "aliases": "" }, "1f1ff": { "output": "1f1ff", "name": "regional indicator symbol letter z", "alpha_code": ":regional_indicator_z:", "aliases": "" }, "1f93d": { "output": "1f93d", "name": "person playing water polo", "alpha_code": ":person_playing_water_polo:", "aliases": ":water_polo:" }, "264f": { "output": "264f", "name": "Scorpio", "alpha_code": ":scorpius:", "aliases": "" }, "2650": { "output": "2650", "name": "Sagittarius", "alpha_code": ":sagittarius:", "aliases": "" }, "1f94b": { "output": "1f94b", "name": "martial arts uniform", "alpha_code": ":martial_arts_uniform:", "aliases": ":karate_uniform:" }, "2651": { "output": "2651", "name": "Capricorn", "alpha_code": ":capricorn:", "aliases": "" }, "1f94a": { "output": "1f94a", "name": "boxing glove", "alpha_code": ":boxing_glove:", "aliases": ":boxing_gloves:" }, "2652": { "output": "2652", "name": "Aquarius", "alpha_code": ":aquarius:", "aliases": "" }, "1f93c": { "output": "1f93c", "name": "people wrestling", "alpha_code": ":people_wrestling:", "aliases": ":wrestlers:|:wrestling:" }, "2653": { "output": "2653", "name": "Pisces", "alpha_code": ":pisces:", "aliases": "" }, "2660": { "output": "2660-fe0f", "name": "spade suit", "alpha_code": ":spades:", "aliases": "" }, "2663": { "output": "2663-fe0f", "name": "club suit", "alpha_code": ":clubs:", "aliases": "" }, "2665": { "output": "2665-fe0f", "name": "heart suit", "alpha_code": ":hearts:", "aliases": "" }, "2666": { "output": "2666-fe0f", "name": "diamond suit", "alpha_code": ":diamonds:", "aliases": "" }, "2668": { "output": "2668-fe0f", "name": "hot springs", "alpha_code": ":hotsprings:", "aliases": "" }, "267b": { "output": "267b-fe0f", "name": "recycling symbol", "alpha_code": ":recycle:", "aliases": "" }, "1f939": { "output": "1f939", "name": "person juggling", "alpha_code": ":person_juggling:", "aliases": ":juggling:|:juggler:" }, "267f": { "output": "267f", "name": "wheelchair symbol", "alpha_code": ":wheelchair:", "aliases": "" }, "2693": { "output": "2693", "name": "anchor", "alpha_code": ":anchor:", "aliases": "" }, "26a0": { "output": "26a0-fe0f", "name": "warning", "alpha_code": ":warning:", "aliases": "" }, "26a1": { "output": "26a1", "name": "high voltage", "alpha_code": ":zap:", "aliases": "" }, "26aa": { "output": "26aa", "name": "white circle", "alpha_code": ":white_circle:", "aliases": "" }, "26ab": { "output": "26ab", "name": "black circle", "alpha_code": ":black_circle:", "aliases": "" }, "26bd": { "output": "26bd", "name": "soccer ball", "alpha_code": ":soccer:", "aliases": "" }, "26be": { "output": "26be", "name": "baseball", "alpha_code": ":baseball:", "aliases": "" }, "26c4": { "output": "26c4", "name": "snowman without snow", "alpha_code": ":snowman:", "aliases": "" }, "26c5": { "output": "26c5", "name": "sun behind cloud", "alpha_code": ":partly_sunny:", "aliases": "" }, "26ce": { "output": "26ce", "name": "Ophiuchus", "alpha_code": ":ophiuchus:", "aliases": "" }, "1f938": { "output": "1f938", "name": "person cartwheeling", "alpha_code": ":person_doing_cartwheel:", "aliases": ":cartwheel:" }, "26d4": { "output": "26d4", "name": "no entry", "alpha_code": ":no_entry:", "aliases": "" }, "26ea": { "output": "26ea", "name": "church", "alpha_code": ":church:", "aliases": "" }, "26f2": { "output": "26f2", "name": "fountain", "alpha_code": ":fountain:", "aliases": "" }, "1f6f6": { "output": "1f6f6", "name": "canoe", "alpha_code": ":canoe:", "aliases": ":kayak:" }, "26f3": { "output": "26f3", "name": "flag in hole", "alpha_code": ":golf:", "aliases": "" }, "26f5": { "output": "26f5", "name": "sailboat", "alpha_code": ":sailboat:", "aliases": "" }, "26fa": { "output": "26fa", "name": "tent", "alpha_code": ":tent:", "aliases": "" }, "26fd": { "output": "26fd", "name": "fuel pump", "alpha_code": ":fuelpump:", "aliases": "" }, "2702": { "output": "2702-fe0f", "name": "scissors", "alpha_code": ":scissors:", "aliases": "" }, "2705": { "output": "2705", "name": "check mark button", "alpha_code": ":white_check_mark:", "aliases": "" }, "2708": { "output": "2708-fe0f", "name": "airplane", "alpha_code": ":airplane:", "aliases": "" }, "2709": { "output": "2709-fe0f", "name": "envelope", "alpha_code": ":envelope:", "aliases": "" }, "270a": { "output": "270a", "name": "raised fist", "alpha_code": ":fist:", "aliases": "" }, "270b": { "output": "270b", "name": "raised hand", "alpha_code": ":raised_hand:", "aliases": "" }, "270c": { "output": "270c-fe0f", "name": "victory hand", "alpha_code": ":v:", "aliases": "" }, "270f": { "output": "270f-fe0f", "name": "pencil", "alpha_code": ":pencil2:", "aliases": "" }, "2712": { "output": "2712-fe0f", "name": "black nib", "alpha_code": ":black_nib:", "aliases": "" }, "2714": { "output": "2714-fe0f", "name": "check mark", "alpha_code": ":heavy_check_mark:", "aliases": "" }, "2716": { "output": "2716-fe0f", "name": "multiplication sign", "alpha_code": ":heavy_multiplication_x:", "aliases": "" }, "2728": { "output": "2728", "name": "sparkles", "alpha_code": ":sparkles:", "aliases": "" }, "2733": { "output": "2733-fe0f", "name": "eight-spoked asterisk", "alpha_code": ":eight_spoked_asterisk:", "aliases": "" }, "2734": { "output": "2734-fe0f", "name": "eight-pointed star", "alpha_code": ":eight_pointed_black_star:", "aliases": "" }, "2744": { "output": "2744-fe0f", "name": "snowflake", "alpha_code": ":snowflake:", "aliases": "" }, "2747": { "output": "2747-fe0f", "name": "sparkle", "alpha_code": ":sparkle:", "aliases": "" }, "274c": { "output": "274c", "name": "cross mark", "alpha_code": ":x:", "aliases": "" }, "274e": { "output": "274e", "name": "cross mark button", "alpha_code": ":negative_squared_cross_mark:", "aliases": "" }, "2753": { "output": "2753", "name": "question mark", "alpha_code": ":question:", "aliases": "" }, "2754": { "output": "2754", "name": "white question mark", "alpha_code": ":grey_question:", "aliases": "" }, "1f6f5": { "output": "1f6f5", "name": "motor scooter", "alpha_code": ":motor_scooter:", "aliases": ":motorbike:" }, "2755": { "output": "2755", "name": "white exclamation mark", "alpha_code": ":grey_exclamation:", "aliases": "" }, "2757": { "output": "2757", "name": "exclamation mark", "alpha_code": ":exclamation:", "aliases": "" }, "2764": { "output": "2764-fe0f", "name": "red heart", "alpha_code": ":heart:", "aliases": "" }, "2795": { "output": "2795", "name": "plus sign", "alpha_code": ":heavy_plus_sign:", "aliases": "" }, "2796": { "output": "2796", "name": "minus sign", "alpha_code": ":heavy_minus_sign:", "aliases": "" }, "2797": { "output": "2797", "name": "division sign", "alpha_code": ":heavy_division_sign:", "aliases": "" }, "27a1": { "output": "27a1-fe0f", "name": "right arrow", "alpha_code": ":arrow_right:", "aliases": "" }, "27b0": { "output": "27b0", "name": "curly loop", "alpha_code": ":curly_loop:", "aliases": "" }, "2934": { "output": "2934-fe0f", "name": "right arrow curving up", "alpha_code": ":arrow_heading_up:", "aliases": "" }, "2935": { "output": "2935-fe0f", "name": "right arrow curving down", "alpha_code": ":arrow_heading_down:", "aliases": "" }, "2b05": { "output": "2b05-fe0f", "name": "left arrow", "alpha_code": ":arrow_left:", "aliases": "" }, "2b06": { "output": "2b06-fe0f", "name": "up arrow", "alpha_code": ":arrow_up:", "aliases": "" }, "1f6f4": { "output": "1f6f4", "name": "kick scooter", "alpha_code": ":scooter:", "aliases": "" }, "2b07": { "output": "2b07-fe0f", "name": "down arrow", "alpha_code": ":arrow_down:", "aliases": "" }, "2b1b": { "output": "2b1b", "name": "black large square", "alpha_code": ":black_large_square:", "aliases": "" }, "2b1c": { "output": "2b1c", "name": "white large square", "alpha_code": ":white_large_square:", "aliases": "" }, "2b50": { "output": "2b50", "name": "star", "alpha_code": ":star:", "aliases": "" }, "2b55": { "output": "2b55", "name": "hollow red circle", "alpha_code": ":o:", "aliases": "" }, "3030": { "output": "3030-fe0f", "name": "wavy dash", "alpha_code": ":wavy_dash:", "aliases": "" }, "303d": { "output": "303d-fe0f", "name": "part alternation mark", "alpha_code": ":part_alternation_mark:", "aliases": "" }, "3297": { "output": "3297-fe0f", "name": "Japanese \u201ccongratulations\u201d button", "alpha_code": ":congratulations:", "aliases": "" }, "1f6d2": { "output": "1f6d2", "name": "shopping cart", "alpha_code": ":shopping_cart:", "aliases": ":shopping_trolley:" }, "3299": { "output": "3299-fe0f", "name": "Japanese \u201csecret\u201d button", "alpha_code": ":secret:", "aliases": "" }, "1f004": { "output": "1f004", "name": "mahjong red dragon", "alpha_code": ":mahjong:", "aliases": "" }, "1f0cf": { "output": "1f0cf", "name": "joker", "alpha_code": ":black_joker:", "aliases": "" }, "1f170": { "output": "1f170-fe0f", "name": "A button (blood type)", "alpha_code": ":a:", "aliases": "" }, "1f171": { "output": "1f171-fe0f", "name": "B button (blood type)", "alpha_code": ":b:", "aliases": "" }, "1f17e": { "output": "1f17e-fe0f", "name": "O button (blood type)", "alpha_code": ":o2:", "aliases": "" }, "1f17f": { "output": "1f17f-fe0f", "name": "P button", "alpha_code": ":parking:", "aliases": "" }, "1f6d1": { "output": "1f6d1", "name": "stop sign", "alpha_code": ":octagonal_sign:", "aliases": ":stop_sign:" }, "1f18e": { "output": "1f18e", "name": "AB button (blood type)", "alpha_code": ":ab:", "aliases": "" }, "1f191": { "output": "1f191", "name": "CL button", "alpha_code": ":cl:", "aliases": "" }, "1f1fe": { "output": "1f1fe", "name": "regional indicator symbol letter y", "alpha_code": ":regional_indicator_y:", "aliases": "" }, "1f192": { "output": "1f192", "name": "COOL button", "alpha_code": ":cool:", "aliases": "" }, "1f193": { "output": "1f193", "name": "FREE button", "alpha_code": ":free:", "aliases": "" }, "1f194": { "output": "1f194", "name": "ID button", "alpha_code": ":id:", "aliases": "" }, "1f195": { "output": "1f195", "name": "NEW button", "alpha_code": ":new:", "aliases": "" }, "1f196": { "output": "1f196", "name": "NG button", "alpha_code": ":ng:", "aliases": "" }, "1f197": { "output": "1f197", "name": "OK button", "alpha_code": ":ok:", "aliases": "" }, "1f198": { "output": "1f198", "name": "SOS button", "alpha_code": ":sos:", "aliases": "" }, "1f944": { "output": "1f944", "name": "spoon", "alpha_code": ":spoon:", "aliases": "" }, "1f199": { "output": "1f199", "name": "UP! button", "alpha_code": ":up:", "aliases": "" }, "1f19a": { "output": "1f19a", "name": "VS button", "alpha_code": ":vs:", "aliases": "" }, "1f1e8-1f1f3": { "output": "1f1e8-1f1f3", "name": "flag: China", "alpha_code": ":flag_cn:", "aliases": ":cn:" }, "1f1e9-1f1ea": { "output": "1f1e9-1f1ea", "name": "flag: Germany", "alpha_code": ":flag_de:", "aliases": ":de:" }, "1f1ea-1f1f8": { "output": "1f1ea-1f1f8", "name": "flag: Spain", "alpha_code": ":flag_es:", "aliases": ":es:" }, "1f1eb-1f1f7": { "output": "1f1eb-1f1f7", "name": "flag: France", "alpha_code": ":flag_fr:", "aliases": ":fr:" }, "1f1ec-1f1e7": { "output": "1f1ec-1f1e7", "name": "flag: United Kingdom", "alpha_code": ":flag_gb:", "aliases": ":gb:" }, "1f942": { "output": "1f942", "name": "clinking glasses", "alpha_code": ":champagne_glass:", "aliases": ":clinking_glass:" }, "1f943": { "output": "1f943", "name": "tumbler glass", "alpha_code": ":tumbler_glass:", "aliases": ":whisky:" }, "1f1ee-1f1f9": { "output": "1f1ee-1f1f9", "name": "flag: Italy", "alpha_code": ":flag_it:", "aliases": ":it:" }, "1f1ef-1f1f5": { "output": "1f1ef-1f1f5", "name": "flag: Japan", "alpha_code": ":flag_jp:", "aliases": ":jp:" }, "1f1f0-1f1f7": { "output": "1f1f0-1f1f7", "name": "flag: South Korea", "alpha_code": ":flag_kr:", "aliases": ":kr:" }, "1f1fa-1f1f8": { "output": "1f1fa-1f1f8", "name": "flag: United States", "alpha_code": ":flag_us:", "aliases": ":us:" }, "1f1f7-1f1fa": { "output": "1f1f7-1f1fa", "name": "flag: Russia", "alpha_code": ":flag_ru:", "aliases": ":ru:" }, "1f201": { "output": "1f201", "name": "Japanese \u201chere\u201d button", "alpha_code": ":koko:", "aliases": "" }, "1f202": { "output": "1f202-fe0f", "name": "Japanese \u201cservice charge\u201d button", "alpha_code": ":sa:", "aliases": "" }, "1f21a": { "output": "1f21a", "name": "Japanese \u201cfree of charge\u201d button", "alpha_code": ":u7121:", "aliases": "" }, "1f22f": { "output": "1f22f", "name": "Japanese \u201creserved\u201d button", "alpha_code": ":u6307:", "aliases": "" }, "1f959": { "output": "1f959", "name": "stuffed flatbread", "alpha_code": ":stuffed_flatbread:", "aliases": ":stuffed_pita:" }, "1f232": { "output": "1f232", "name": "Japanese \u201cprohibited\u201d button", "alpha_code": ":u7981:", "aliases": "" }, "1f233": { "output": "1f233", "name": "Japanese \u201cvacancy\u201d button", "alpha_code": ":u7a7a:", "aliases": "" }, "1f234": { "output": "1f234", "name": "Japanese \u201cpassing grade\u201d button", "alpha_code": ":u5408:", "aliases": "" }, "1f235": { "output": "1f235", "name": "Japanese \u201cno vacancy\u201d button", "alpha_code": ":u6e80:", "aliases": "" }, "1f236": { "output": "1f236", "name": "Japanese \u201cnot free of charge\u201d button", "alpha_code": ":u6709:", "aliases": "" }, "1f958": { "output": "1f958", "name": "shallow pan of food", "alpha_code": ":shallow_pan_of_food:", "aliases": ":paella:" }, "1f237": { "output": "1f237-fe0f", "name": "Japanese \u201cmonthly amount\u201d button", "alpha_code": ":u6708:", "aliases": "" }, "1f238": { "output": "1f238", "name": "Japanese \u201capplication\u201d button", "alpha_code": ":u7533:", "aliases": "" }, "1f239": { "output": "1f239", "name": "Japanese \u201cdiscount\u201d button", "alpha_code": ":u5272:", "aliases": "" }, "1f957": { "output": "1f957", "name": "green salad", "alpha_code": ":salad:", "aliases": ":green_salad:" }, "1f23a": { "output": "1f23a", "name": "Japanese \u201copen for business\u201d button", "alpha_code": ":u55b6:", "aliases": "" }, "1f250": { "output": "1f250", "name": "Japanese \u201cbargain\u201d button", "alpha_code": ":ideograph_advantage:", "aliases": "" }, "1f251": { "output": "1f251", "name": "Japanese \u201cacceptable\u201d button", "alpha_code": ":accept:", "aliases": "" }, "1f300": { "output": "1f300", "name": "cyclone", "alpha_code": ":cyclone:", "aliases": "" }, "1f956": { "output": "1f956", "name": "baguette bread", "alpha_code": ":french_bread:", "aliases": ":baguette_bread:" }, "1f301": { "output": "1f301", "name": "foggy", "alpha_code": ":foggy:", "aliases": "" }, "1f302": { "output": "1f302", "name": "closed umbrella", "alpha_code": ":closed_umbrella:", "aliases": "" }, "1f303": { "output": "1f303", "name": "night with stars", "alpha_code": ":night_with_stars:", "aliases": "" }, "1f304": { "output": "1f304", "name": "sunrise over mountains", "alpha_code": ":sunrise_over_mountains:", "aliases": "" }, "1f305": { "output": "1f305", "name": "sunrise", "alpha_code": ":sunrise:", "aliases": "" }, "1f306": { "output": "1f306", "name": "cityscape at dusk", "alpha_code": ":city_dusk:", "aliases": "" }, "1f955": { "output": "1f955", "name": "carrot", "alpha_code": ":carrot:", "aliases": "" }, "1f307": { "output": "1f307", "name": "sunset", "alpha_code": ":city_sunset:", "aliases": ":city_sunrise:" }, "1f308": { "output": "1f308", "name": "rainbow", "alpha_code": ":rainbow:", "aliases": "" }, "1f954": { "output": "1f954", "name": "potato", "alpha_code": ":potato:", "aliases": "" }, "1f309": { "output": "1f309", "name": "bridge at night", "alpha_code": ":bridge_at_night:", "aliases": "" }, "1f30a": { "output": "1f30a", "name": "water wave", "alpha_code": ":ocean:", "aliases": "" }, "1f30b": { "output": "1f30b", "name": "volcano", "alpha_code": ":volcano:", "aliases": "" }, "1f30c": { "output": "1f30c", "name": "milky way", "alpha_code": ":milky_way:", "aliases": "" }, "1f30f": { "output": "1f30f", "name": "globe showing Asia-Australia", "alpha_code": ":earth_asia:", "aliases": "" }, "1f311": { "output": "1f311", "name": "new moon", "alpha_code": ":new_moon:", "aliases": "" }, "1f953": { "output": "1f953", "name": "bacon", "alpha_code": ":bacon:", "aliases": "" }, "1f313": { "output": "1f313", "name": "first quarter moon", "alpha_code": ":first_quarter_moon:", "aliases": "" }, "1f314": { "output": "1f314", "name": "waxing gibbous moon", "alpha_code": ":waxing_gibbous_moon:", "aliases": "" }, "1f315": { "output": "1f315", "name": "full moon", "alpha_code": ":full_moon:", "aliases": "" }, "1f319": { "output": "1f319", "name": "crescent moon", "alpha_code": ":crescent_moon:", "aliases": "" }, "1f31b": { "output": "1f31b", "name": "first quarter moon face", "alpha_code": ":first_quarter_moon_with_face:", "aliases": "" }, "1f31f": { "output": "1f31f", "name": "glowing star", "alpha_code": ":star2:", "aliases": "" }, "1f952": { "output": "1f952", "name": "cucumber", "alpha_code": ":cucumber:", "aliases": "" }, "1f320": { "output": "1f320", "name": "shooting star", "alpha_code": ":stars:", "aliases": "" }, "1f330": { "output": "1f330", "name": "chestnut", "alpha_code": ":chestnut:", "aliases": "" }, "1f951": { "output": "1f951", "name": "avocado", "alpha_code": ":avocado:", "aliases": "" }, "1f331": { "output": "1f331", "name": "seedling", "alpha_code": ":seedling:", "aliases": "" }, "1f334": { "output": "1f334", "name": "palm tree", "alpha_code": ":palm_tree:", "aliases": "" }, "1f335": { "output": "1f335", "name": "cactus", "alpha_code": ":cactus:", "aliases": "" }, "1f337": { "output": "1f337", "name": "tulip", "alpha_code": ":tulip:", "aliases": "" }, "1f338": { "output": "1f338", "name": "cherry blossom", "alpha_code": ":cherry_blossom:", "aliases": "" }, "1f339": { "output": "1f339", "name": "rose", "alpha_code": ":rose:", "aliases": "" }, "1f33a": { "output": "1f33a", "name": "hibiscus", "alpha_code": ":hibiscus:", "aliases": "" }, "1f33b": { "output": "1f33b", "name": "sunflower", "alpha_code": ":sunflower:", "aliases": "" }, "1f33c": { "output": "1f33c", "name": "blossom", "alpha_code": ":blossom:", "aliases": "" }, "1f33d": { "output": "1f33d", "name": "ear of corn", "alpha_code": ":corn:", "aliases": "" }, "1f950": { "output": "1f950", "name": "croissant", "alpha_code": ":croissant:", "aliases": "" }, "1f33e": { "output": "1f33e", "name": "sheaf of rice", "alpha_code": ":ear_of_rice:", "aliases": "" }, "1f33f": { "output": "1f33f", "name": "herb", "alpha_code": ":herb:", "aliases": "" }, "1f340": { "output": "1f340", "name": "four leaf clover", "alpha_code": ":four_leaf_clover:", "aliases": "" }, "1f341": { "output": "1f341", "name": "maple leaf", "alpha_code": ":maple_leaf:", "aliases": "" }, "1f342": { "output": "1f342", "name": "fallen leaf", "alpha_code": ":fallen_leaf:", "aliases": "" }, "1f343": { "output": "1f343", "name": "leaf fluttering in wind", "alpha_code": ":leaves:", "aliases": "" }, "1f344": { "output": "1f344", "name": "mushroom", "alpha_code": ":mushroom:", "aliases": "" }, "1f345": { "output": "1f345", "name": "tomato", "alpha_code": ":tomato:", "aliases": "" }, "1f346": { "output": "1f346", "name": "eggplant", "alpha_code": ":eggplant:", "aliases": "" }, "1f347": { "output": "1f347", "name": "grapes", "alpha_code": ":grapes:", "aliases": "" }, "1f348": { "output": "1f348", "name": "melon", "alpha_code": ":melon:", "aliases": "" }, "1f349": { "output": "1f349", "name": "watermelon", "alpha_code": ":watermelon:", "aliases": "" }, "1f34a": { "output": "1f34a", "name": "tangerine", "alpha_code": ":tangerine:", "aliases": "" }, "1f940": { "output": "1f940", "name": "wilted flower", "alpha_code": ":wilted_rose:", "aliases": ":wilted_flower:" }, "1f34c": { "output": "1f34c", "name": "banana", "alpha_code": ":banana:", "aliases": "" }, "1f34d": { "output": "1f34d", "name": "pineapple", "alpha_code": ":pineapple:", "aliases": "" }, "1f34e": { "output": "1f34e", "name": "red apple", "alpha_code": ":apple:", "aliases": "" }, "1f34f": { "output": "1f34f", "name": "green apple", "alpha_code": ":green_apple:", "aliases": "" }, "1f351": { "output": "1f351", "name": "peach", "alpha_code": ":peach:", "aliases": "" }, "1f352": { "output": "1f352", "name": "cherries", "alpha_code": ":cherries:", "aliases": "" }, "1f353": { "output": "1f353", "name": "strawberry", "alpha_code": ":strawberry:", "aliases": "" }, "1f98f": { "output": "1f98f", "name": "rhinoceros", "alpha_code": ":rhino:", "aliases": ":rhinoceros:" }, "1f354": { "output": "1f354", "name": "hamburger", "alpha_code": ":hamburger:", "aliases": "" }, "1f355": { "output": "1f355", "name": "pizza", "alpha_code": ":pizza:", "aliases": "" }, "1f356": { "output": "1f356", "name": "meat on bone", "alpha_code": ":meat_on_bone:", "aliases": "" }, "1f98e": { "output": "1f98e", "name": "lizard", "alpha_code": ":lizard:", "aliases": "" }, "1f357": { "output": "1f357", "name": "poultry leg", "alpha_code": ":poultry_leg:", "aliases": "" }, "1f358": { "output": "1f358", "name": "rice cracker", "alpha_code": ":rice_cracker:", "aliases": "" }, "1f359": { "output": "1f359", "name": "rice ball", "alpha_code": ":rice_ball:", "aliases": "" }, "1f98d": { "output": "1f98d", "name": "gorilla", "alpha_code": ":gorilla:", "aliases": "" }, "1f35a": { "output": "1f35a", "name": "cooked rice", "alpha_code": ":rice:", "aliases": "" }, "1f35b": { "output": "1f35b", "name": "curry rice", "alpha_code": ":curry:", "aliases": "" }, "1f98c": { "output": "1f98c", "name": "deer", "alpha_code": ":deer:", "aliases": "" }, "1f35c": { "output": "1f35c", "name": "steaming bowl", "alpha_code": ":ramen:", "aliases": "" }, "1f35d": { "output": "1f35d", "name": "spaghetti", "alpha_code": ":spaghetti:", "aliases": "" }, "1f35e": { "output": "1f35e", "name": "bread", "alpha_code": ":bread:", "aliases": "" }, "1f35f": { "output": "1f35f", "name": "french fries", "alpha_code": ":fries:", "aliases": "" }, "1f98b": { "output": "1f98b", "name": "butterfly", "alpha_code": ":butterfly:", "aliases": "" }, "1f360": { "output": "1f360", "name": "roasted sweet potato", "alpha_code": ":sweet_potato:", "aliases": "" }, "1f361": { "output": "1f361", "name": "dango", "alpha_code": ":dango:", "aliases": "" }, "1f98a": { "output": "1f98a", "name": "fox", "alpha_code": ":fox:", "aliases": ":fox_face:" }, "1f362": { "output": "1f362", "name": "oden", "alpha_code": ":oden:", "aliases": "" }, "1f363": { "output": "1f363", "name": "sushi", "alpha_code": ":sushi:", "aliases": "" }, "1f989": { "output": "1f989", "name": "owl", "alpha_code": ":owl:", "aliases": "" }, "1f364": { "output": "1f364", "name": "fried shrimp", "alpha_code": ":fried_shrimp:", "aliases": "" }, "1f365": { "output": "1f365", "name": "fish cake with swirl", "alpha_code": ":fish_cake:", "aliases": "" }, "1f988": { "output": "1f988", "name": "shark", "alpha_code": ":shark:", "aliases": "" }, "1f366": { "output": "1f366", "name": "soft ice cream", "alpha_code": ":icecream:", "aliases": "" }, "1f987": { "output": "1f987", "name": "bat", "alpha_code": ":bat:", "aliases": "" }, "1f367": { "output": "1f367", "name": "shaved ice", "alpha_code": ":shaved_ice:", "aliases": "" }, "1f1fd": { "output": "1f1fd", "name": "regional indicator symbol letter x", "alpha_code": ":regional_indicator_x:", "aliases": "" }, "1f368": { "output": "1f368", "name": "ice cream", "alpha_code": ":ice_cream:", "aliases": "" }, "1f986": { "output": "1f986", "name": "duck", "alpha_code": ":duck:", "aliases": "" }, "1f369": { "output": "1f369", "name": "doughnut", "alpha_code": ":doughnut:", "aliases": "" }, "1f985": { "output": "1f985", "name": "eagle", "alpha_code": ":eagle:", "aliases": "" }, "1f36a": { "output": "1f36a", "name": "cookie", "alpha_code": ":cookie:", "aliases": "" }, "1f5a4": { "output": "1f5a4", "name": "black heart", "alpha_code": ":black_heart:", "aliases": "" }, "1f36b": { "output": "1f36b", "name": "chocolate bar", "alpha_code": ":chocolate_bar:", "aliases": "" }, "1f36c": { "output": "1f36c", "name": "candy", "alpha_code": ":candy:", "aliases": "" }, "1f36d": { "output": "1f36d", "name": "lollipop", "alpha_code": ":lollipop:", "aliases": "" }, "1f36e": { "output": "1f36e", "name": "custard", "alpha_code": ":custard:", "aliases": ":pudding:|:flan:" }, "1f36f": { "output": "1f36f", "name": "honey pot", "alpha_code": ":honey_pot:", "aliases": "" }, "1f91e": { "output": "1f91e", "name": "crossed fingers", "alpha_code": ":fingers_crossed:", "aliases": ":hand_with_index_and_middle_finger_crossed:" }, "1f370": { "output": "1f370", "name": "shortcake", "alpha_code": ":cake:", "aliases": "" }, "1f371": { "output": "1f371", "name": "bento box", "alpha_code": ":bento:", "aliases": "" }, "1f372": { "output": "1f372", "name": "pot of food", "alpha_code": ":stew:", "aliases": "" }, "1f91d": { "output": "1f91d", "name": "handshake", "alpha_code": ":handshake:", "aliases": ":shaking_hands:" }, "1f373": { "output": "1f373", "name": "cooking", "alpha_code": ":cooking:", "aliases": "" }, "1f374": { "output": "1f374", "name": "fork and knife", "alpha_code": ":fork_and_knife:", "aliases": "" }, "1f375": { "output": "1f375", "name": "teacup without handle", "alpha_code": ":tea:", "aliases": "" }, "1f376": { "output": "1f376", "name": "sake", "alpha_code": ":sake:", "aliases": "" }, "1f377": { "output": "1f377", "name": "wine glass", "alpha_code": ":wine_glass:", "aliases": "" }, "1f378": { "output": "1f378", "name": "cocktail glass", "alpha_code": ":cocktail:", "aliases": "" }, "1f379": { "output": "1f379", "name": "tropical drink", "alpha_code": ":tropical_drink:", "aliases": "" }, "1f37a": { "output": "1f37a", "name": "beer mug", "alpha_code": ":beer:", "aliases": "" }, "1f37b": { "output": "1f37b", "name": "clinking beer mugs", "alpha_code": ":beers:", "aliases": "" }, "1f380": { "output": "1f380", "name": "ribbon", "alpha_code": ":ribbon:", "aliases": "" }, "1f381": { "output": "1f381", "name": "wrapped gift", "alpha_code": ":gift:", "aliases": "" }, "1f382": { "output": "1f382", "name": "birthday cake", "alpha_code": ":birthday:", "aliases": "" }, "1f383": { "output": "1f383", "name": "jack-o-lantern", "alpha_code": ":jack_o_lantern:", "aliases": "" }, "1f91b": { "output": "1f91b", "name": "left-facing fist", "alpha_code": ":left_facing_fist:", "aliases": ":left_fist:" }, "1f91c": { "output": "1f91c", "name": "right-facing fist", "alpha_code": ":right_facing_fist:", "aliases": ":right_fist:" }, "1f384": { "output": "1f384", "name": "Christmas tree", "alpha_code": ":christmas_tree:", "aliases": "" }, "1f385": { "output": "1f385", "name": "Santa Claus", "alpha_code": ":santa:", "aliases": "" }, "1f386": { "output": "1f386", "name": "fireworks", "alpha_code": ":fireworks:", "aliases": "" }, "1f91a": { "output": "1f91a", "name": "raised back of hand", "alpha_code": ":raised_back_of_hand:", "aliases": ":back_of_hand:" }, "1f387": { "output": "1f387", "name": "sparkler", "alpha_code": ":sparkler:", "aliases": "" }, "1f388": { "output": "1f388", "name": "balloon", "alpha_code": ":balloon:", "aliases": "" }, "1f389": { "output": "1f389", "name": "party popper", "alpha_code": ":tada:", "aliases": "" }, "1f38a": { "output": "1f38a", "name": "confetti ball", "alpha_code": ":confetti_ball:", "aliases": "" }, "1f38b": { "output": "1f38b", "name": "tanabata tree", "alpha_code": ":tanabata_tree:", "aliases": "" }, "1f38c": { "output": "1f38c", "name": "crossed flags", "alpha_code": ":crossed_flags:", "aliases": "" }, "1f919": { "output": "1f919", "name": "call me hand", "alpha_code": ":call_me:", "aliases": ":call_me_hand:" }, "1f38d": { "output": "1f38d", "name": "pine decoration", "alpha_code": ":bamboo:", "aliases": "" }, "1f57a": { "output": "1f57a", "name": "man dancing", "alpha_code": ":man_dancing:", "aliases": ":male_dancer:" }, "1f38e": { "output": "1f38e", "name": "Japanese dolls", "alpha_code": ":dolls:", "aliases": "" }, "1f933": { "output": "1f933", "name": "selfie", "alpha_code": ":selfie:", "aliases": "" }, "1f38f": { "output": "1f38f", "name": "carp streamer", "alpha_code": ":flags:", "aliases": "" }, "1f930": { "output": "1f930", "name": "pregnant woman", "alpha_code": ":pregnant_woman:", "aliases": ":expecting_woman:" }, "1f390": { "output": "1f390", "name": "wind chime", "alpha_code": ":wind_chime:", "aliases": "" }, "1f926": { "output": "1f926", "name": "person facepalming", "alpha_code": ":person_facepalming:", "aliases": ":face_palm:|:facepalm:" }, "1f937": { "output": "1f937", "name": "person shrugging", "alpha_code": ":person_shrugging:", "aliases": ":shrug:" }, "1f391": { "output": "1f391", "name": "moon viewing ceremony", "alpha_code": ":rice_scene:", "aliases": "" }, "1f392": { "output": "1f392", "name": "backpack", "alpha_code": ":school_satchel:", "aliases": "" }, "1f393": { "output": "1f393", "name": "graduation cap", "alpha_code": ":mortar_board:", "aliases": "" }, "1f3a0": { "output": "1f3a0", "name": "carousel horse", "alpha_code": ":carousel_horse:", "aliases": "" }, "1f3a1": { "output": "1f3a1", "name": "ferris wheel", "alpha_code": ":ferris_wheel:", "aliases": "" }, "1f3a2": { "output": "1f3a2", "name": "roller coaster", "alpha_code": ":roller_coaster:", "aliases": "" }, "1f3a3": { "output": "1f3a3", "name": "fishing pole", "alpha_code": ":fishing_pole_and_fish:", "aliases": "" }, "1f3a4": { "output": "1f3a4", "name": "microphone", "alpha_code": ":microphone:", "aliases": "" }, "0023": { "output": "0023-fe0f", "name": "pound symbol", "alpha_code": ":pound_symbol:", "aliases": "" }, "1f3a5": { "output": "1f3a5", "name": "movie camera", "alpha_code": ":movie_camera:", "aliases": "" }, "1f3a6": { "output": "1f3a6", "name": "cinema", "alpha_code": ":cinema:", "aliases": "" }, "1f3a7": { "output": "1f3a7", "name": "headphone", "alpha_code": ":headphones:", "aliases": "" }, "1f936": { "output": "1f936", "name": "Mrs. Claus", "alpha_code": ":mrs_claus:", "aliases": ":mother_christmas:" }, "1f3a8": { "output": "1f3a8", "name": "artist palette", "alpha_code": ":art:", "aliases": "" }, "1f935": { "output": "1f935", "name": "man in tuxedo", "alpha_code": ":man_in_tuxedo:", "aliases": "" }, "1f3a9": { "output": "1f3a9", "name": "top hat", "alpha_code": ":tophat:", "aliases": "" }, "1f3aa": { "output": "1f3aa", "name": "circus tent", "alpha_code": ":circus_tent:", "aliases": "" }, "1f934": { "output": "1f934", "name": "prince", "alpha_code": ":prince:", "aliases": "" }, "1f3ab": { "output": "1f3ab", "name": "ticket", "alpha_code": ":ticket:", "aliases": "" }, "1f3ac": { "output": "1f3ac", "name": "clapper board", "alpha_code": ":clapper:", "aliases": "" }, "1f3ad": { "output": "1f3ad", "name": "performing arts", "alpha_code": ":performing_arts:", "aliases": "" }, "1f927": { "output": "1f927", "name": "sneezing face", "alpha_code": ":sneezing_face:", "aliases": ":sneeze:" }, "1f3ae": { "output": "1f3ae", "name": "video game", "alpha_code": ":video_game:", "aliases": "" }, "1f3af": { "output": "1f3af", "name": "direct hit", "alpha_code": ":dart:", "aliases": "" }, "1f3b0": { "output": "1f3b0", "name": "slot machine", "alpha_code": ":slot_machine:", "aliases": "" }, "1f3b1": { "output": "1f3b1", "name": "pool 8 ball", "alpha_code": ":8ball:", "aliases": "" }, "1f3b2": { "output": "1f3b2", "name": "game die", "alpha_code": ":game_die:", "aliases": "" }, "1f3b3": { "output": "1f3b3", "name": "bowling", "alpha_code": ":bowling:", "aliases": "" }, "1f3b4": { "output": "1f3b4", "name": "flower playing cards", "alpha_code": ":flower_playing_cards:", "aliases": "" }, "1f925": { "output": "1f925", "name": "lying face", "alpha_code": ":lying_face:", "aliases": ":liar:" }, "1f3b5": { "output": "1f3b5", "name": "musical note", "alpha_code": ":musical_note:", "aliases": "" }, "1f3b6": { "output": "1f3b6", "name": "musical notes", "alpha_code": ":notes:", "aliases": "" }, "1f3b7": { "output": "1f3b7", "name": "saxophone", "alpha_code": ":saxophone:", "aliases": "" }, "1f924": { "output": "1f924", "name": "drooling face", "alpha_code": ":drooling_face:", "aliases": ":drool:" }, "1f3b8": { "output": "1f3b8", "name": "guitar", "alpha_code": ":guitar:", "aliases": "" }, "1f3b9": { "output": "1f3b9", "name": "musical keyboard", "alpha_code": ":musical_keyboard:", "aliases": "" }, "1f3ba": { "output": "1f3ba", "name": "trumpet", "alpha_code": ":trumpet:", "aliases": "" }, "1f923": { "output": "1f923", "name": "rolling on the floor laughing", "alpha_code": ":rofl:", "aliases": ":rolling_on_the_floor_laughing:" }, "1f3bb": { "output": "1f3bb", "name": "violin", "alpha_code": ":violin:", "aliases": "" }, "1f3bc": { "output": "1f3bc", "name": "musical score", "alpha_code": ":musical_score:", "aliases": "" }, "1f3bd": { "output": "1f3bd", "name": "running shirt", "alpha_code": ":running_shirt_with_sash:", "aliases": "" }, "1f922": { "output": "1f922", "name": "nauseated face", "alpha_code": ":nauseated_face:", "aliases": ":sick:" }, "1f3be": { "output": "1f3be", "name": "tennis", "alpha_code": ":tennis:", "aliases": "" }, "1f3bf": { "output": "1f3bf", "name": "skis", "alpha_code": ":ski:", "aliases": "" }, "1f3c0": { "output": "1f3c0", "name": "basketball", "alpha_code": ":basketball:", "aliases": "" }, "1f3c1": { "output": "1f3c1", "name": "chequered flag", "alpha_code": ":checkered_flag:", "aliases": "" }, "1f921": { "output": "1f921", "name": "clown face", "alpha_code": ":clown:", "aliases": ":clown_face:" }, "1f3c2": { "output": "1f3c2", "name": "snowboarder", "alpha_code": ":snowboarder:", "aliases": "" }, "1f3c3": { "output": "1f3c3", "name": "person running", "alpha_code": ":person_running:", "aliases": ":runner:" }, "1f3c4": { "output": "1f3c4", "name": "person surfing", "alpha_code": ":person_surfing:", "aliases": ":surfer:" }, "1f3c6": { "output": "1f3c6", "name": "trophy", "alpha_code": ":trophy:", "aliases": "" }, "1f3c8": { "output": "1f3c8", "name": "american football", "alpha_code": ":football:", "aliases": "" }, "1f3ca": { "output": "1f3ca", "name": "person swimming", "alpha_code": ":person_swimming:", "aliases": ":swimmer:" }, "1f3e0": { "output": "1f3e0", "name": "house", "alpha_code": ":house:", "aliases": "" }, "1f3e1": { "output": "1f3e1", "name": "house with garden", "alpha_code": ":house_with_garden:", "aliases": "" }, "1f3e2": { "output": "1f3e2", "name": "office building", "alpha_code": ":office:", "aliases": "" }, "1f3e3": { "output": "1f3e3", "name": "Japanese post office", "alpha_code": ":post_office:", "aliases": "" }, "1f3e5": { "output": "1f3e5", "name": "hospital", "alpha_code": ":hospital:", "aliases": "" }, "1f3e6": { "output": "1f3e6", "name": "bank", "alpha_code": ":bank:", "aliases": "" }, "1f3e7": { "output": "1f3e7", "name": "ATM sign", "alpha_code": ":atm:", "aliases": "" }, "1f3e8": { "output": "1f3e8", "name": "hotel", "alpha_code": ":hotel:", "aliases": "" }, "1f3e9": { "output": "1f3e9", "name": "love hotel", "alpha_code": ":love_hotel:", "aliases": "" }, "1f3ea": { "output": "1f3ea", "name": "convenience store", "alpha_code": ":convenience_store:", "aliases": "" }, "1f3eb": { "output": "1f3eb", "name": "school", "alpha_code": ":school:", "aliases": "" }, "1f3ec": { "output": "1f3ec", "name": "department store", "alpha_code": ":department_store:", "aliases": "" }, "1f920": { "output": "1f920", "name": "cowboy hat face", "alpha_code": ":cowboy:", "aliases": ":face_with_cowboy_hat:" }, "1f3ed": { "output": "1f3ed", "name": "factory", "alpha_code": ":factory:", "aliases": "" }, "1f3ee": { "output": "1f3ee", "name": "red paper lantern", "alpha_code": ":izakaya_lantern:", "aliases": "" }, "1f3ef": { "output": "1f3ef", "name": "Japanese castle", "alpha_code": ":japanese_castle:", "aliases": "" }, "1f3f0": { "output": "1f3f0", "name": "castle", "alpha_code": ":european_castle:", "aliases": "" }, "1f40c": { "output": "1f40c", "name": "snail", "alpha_code": ":snail:", "aliases": "" }, "1f40d": { "output": "1f40d", "name": "snake", "alpha_code": ":snake:", "aliases": "" }, "1f40e": { "output": "1f40e", "name": "horse", "alpha_code": ":racehorse:", "aliases": "" }, "1f411": { "output": "1f411", "name": "ewe", "alpha_code": ":sheep:", "aliases": "" }, "1f412": { "output": "1f412", "name": "monkey", "alpha_code": ":monkey:", "aliases": "" }, "1f414": { "output": "1f414", "name": "chicken", "alpha_code": ":chicken:", "aliases": "" }, "1f417": { "output": "1f417", "name": "boar", "alpha_code": ":boar:", "aliases": "" }, "1f418": { "output": "1f418", "name": "elephant", "alpha_code": ":elephant:", "aliases": "" }, "1f419": { "output": "1f419", "name": "octopus", "alpha_code": ":octopus:", "aliases": "" }, "1f41a": { "output": "1f41a", "name": "spiral shell", "alpha_code": ":shell:", "aliases": "" }, "1f934-1f3fb": { "output": "1f934-1f3fb", "name": "prince: light skin tone", "alpha_code": ":prince_tone1:", "aliases": "" }, "1f41b": { "output": "1f41b", "name": "bug", "alpha_code": ":bug:", "aliases": "" }, "1f41c": { "output": "1f41c", "name": "ant", "alpha_code": ":ant:", "aliases": "" }, "1f41d": { "output": "1f41d", "name": "honeybee", "alpha_code": ":bee:", "aliases": "" }, "1f41e": { "output": "1f41e", "name": "lady beetle", "alpha_code": ":beetle:", "aliases": "" }, "1f41f": { "output": "1f41f", "name": "fish", "alpha_code": ":fish:", "aliases": "" }, "1f420": { "output": "1f420", "name": "tropical fish", "alpha_code": ":tropical_fish:", "aliases": "" }, "1f421": { "output": "1f421", "name": "blowfish", "alpha_code": ":blowfish:", "aliases": "" }, "1f422": { "output": "1f422", "name": "turtle", "alpha_code": ":turtle:", "aliases": "" }, "1f423": { "output": "1f423", "name": "hatching chick", "alpha_code": ":hatching_chick:", "aliases": "" }, "1f424": { "output": "1f424", "name": "baby chick", "alpha_code": ":baby_chick:", "aliases": "" }, "1f425": { "output": "1f425", "name": "front-facing baby chick", "alpha_code": ":hatched_chick:", "aliases": "" }, "1f426": { "output": "1f426", "name": "bird", "alpha_code": ":bird:", "aliases": "" }, "1f427": { "output": "1f427", "name": "penguin", "alpha_code": ":penguin:", "aliases": "" }, "1f428": { "output": "1f428", "name": "koala", "alpha_code": ":koala:", "aliases": "" }, "1f429": { "output": "1f429", "name": "poodle", "alpha_code": ":poodle:", "aliases": "" }, "1f42b": { "output": "1f42b", "name": "two-hump camel", "alpha_code": ":camel:", "aliases": "" }, "1f42c": { "output": "1f42c", "name": "dolphin", "alpha_code": ":dolphin:", "aliases": "" }, "1f42d": { "output": "1f42d", "name": "mouse face", "alpha_code": ":mouse:", "aliases": "" }, "1f42e": { "output": "1f42e", "name": "cow face", "alpha_code": ":cow:", "aliases": "" }, "1f42f": { "output": "1f42f", "name": "tiger face", "alpha_code": ":tiger:", "aliases": "" }, "1f430": { "output": "1f430", "name": "rabbit face", "alpha_code": ":rabbit:", "aliases": "" }, "1f431": { "output": "1f431", "name": "cat face", "alpha_code": ":cat:", "aliases": "" }, "1f432": { "output": "1f432", "name": "dragon face", "alpha_code": ":dragon_face:", "aliases": "" }, "1f433": { "output": "1f433", "name": "spouting whale", "alpha_code": ":whale:", "aliases": "" }, "1f434": { "output": "1f434", "name": "horse face", "alpha_code": ":horse:", "aliases": "" }, "1f435": { "output": "1f435", "name": "monkey face", "alpha_code": ":monkey_face:", "aliases": "" }, "1f436": { "output": "1f436", "name": "dog face", "alpha_code": ":dog:", "aliases": "" }, "1f437": { "output": "1f437", "name": "pig face", "alpha_code": ":pig:", "aliases": "" }, "1f438": { "output": "1f438", "name": "frog", "alpha_code": ":frog:", "aliases": "" }, "1f439": { "output": "1f439", "name": "hamster", "alpha_code": ":hamster:", "aliases": "" }, "1f43a": { "output": "1f43a", "name": "wolf", "alpha_code": ":wolf:", "aliases": "" }, "1f43b": { "output": "1f43b", "name": "bear", "alpha_code": ":bear:", "aliases": "" }, "1f43c": { "output": "1f43c", "name": "panda", "alpha_code": ":panda_face:", "aliases": "" }, "1f43d": { "output": "1f43d", "name": "pig nose", "alpha_code": ":pig_nose:", "aliases": "" }, "1f43e": { "output": "1f43e", "name": "paw prints", "alpha_code": ":feet:", "aliases": ":paw_prints:" }, "1f934-1f3fc": { "output": "1f934-1f3fc", "name": "prince: medium-light skin tone", "alpha_code": ":prince_tone2:", "aliases": "" }, "1f440": { "output": "1f440", "name": "eyes", "alpha_code": ":eyes:", "aliases": "" }, "1f442": { "output": "1f442", "name": "ear", "alpha_code": ":ear:", "aliases": "" }, "1f443": { "output": "1f443", "name": "nose", "alpha_code": ":nose:", "aliases": "" }, "1f444": { "output": "1f444", "name": "mouth", "alpha_code": ":lips:", "aliases": "" }, "1f445": { "output": "1f445", "name": "tongue", "alpha_code": ":tongue:", "aliases": "" }, "1f934-1f3fd": { "output": "1f934-1f3fd", "name": "prince: medium skin tone", "alpha_code": ":prince_tone3:", "aliases": "" }, "1f446": { "output": "1f446", "name": "backhand index pointing up", "alpha_code": ":point_up_2:", "aliases": "" }, "1f447": { "output": "1f447", "name": "backhand index pointing down", "alpha_code": ":point_down:", "aliases": "" }, "1f448": { "output": "1f448", "name": "backhand index pointing left", "alpha_code": ":point_left:", "aliases": "" }, "1f449": { "output": "1f449", "name": "backhand index pointing right", "alpha_code": ":point_right:", "aliases": "" }, "1f44a": { "output": "1f44a", "name": "oncoming fist", "alpha_code": ":punch:", "aliases": "" }, "1f44b": { "output": "1f44b", "name": "waving hand", "alpha_code": ":wave:", "aliases": "" }, "1f44c": { "output": "1f44c", "name": "OK hand", "alpha_code": ":ok_hand:", "aliases": "" }, "1f44d": { "output": "1f44d", "name": "thumbs up", "alpha_code": ":thumbsup:", "aliases": ":+1:|:thumbup:" }, "1f44e": { "output": "1f44e", "name": "thumbs down", "alpha_code": ":thumbsdown:", "aliases": ":-1:|:thumbdown:" }, "1f44f": { "output": "1f44f", "name": "clapping hands", "alpha_code": ":clap:", "aliases": "" }, "1f450": { "output": "1f450", "name": "open hands", "alpha_code": ":open_hands:", "aliases": "" }, "1f451": { "output": "1f451", "name": "crown", "alpha_code": ":crown:", "aliases": "" }, "1f452": { "output": "1f452", "name": "woman\u2019s hat", "alpha_code": ":womans_hat:", "aliases": "" }, "1f453": { "output": "1f453", "name": "glasses", "alpha_code": ":eyeglasses:", "aliases": "" }, "1f454": { "output": "1f454", "name": "necktie", "alpha_code": ":necktie:", "aliases": "" }, "1f455": { "output": "1f455", "name": "t-shirt", "alpha_code": ":shirt:", "aliases": "" }, "1f934-1f3fe": { "output": "1f934-1f3fe", "name": "prince: medium-dark skin tone", "alpha_code": ":prince_tone4:", "aliases": "" }, "1f456": { "output": "1f456", "name": "jeans", "alpha_code": ":jeans:", "aliases": "" }, "1f457": { "output": "1f457", "name": "dress", "alpha_code": ":dress:", "aliases": "" }, "1f458": { "output": "1f458", "name": "kimono", "alpha_code": ":kimono:", "aliases": "" }, "1f934-1f3ff": { "output": "1f934-1f3ff", "name": "prince: dark skin tone", "alpha_code": ":prince_tone5:", "aliases": "" }, "1f459": { "output": "1f459", "name": "bikini", "alpha_code": ":bikini:", "aliases": "" }, "1f45a": { "output": "1f45a", "name": "woman\u2019s clothes", "alpha_code": ":womans_clothes:", "aliases": "" }, "1f45b": { "output": "1f45b", "name": "purse", "alpha_code": ":purse:", "aliases": "" }, "1f45c": { "output": "1f45c", "name": "handbag", "alpha_code": ":handbag:", "aliases": "" }, "1f45d": { "output": "1f45d", "name": "clutch bag", "alpha_code": ":pouch:", "aliases": "" }, "1f45e": { "output": "1f45e", "name": "man\u2019s shoe", "alpha_code": ":mans_shoe:", "aliases": "" }, "1f45f": { "output": "1f45f", "name": "running shoe", "alpha_code": ":athletic_shoe:", "aliases": "" }, "1f460": { "output": "1f460", "name": "high-heeled shoe", "alpha_code": ":high_heel:", "aliases": "" }, "1f461": { "output": "1f461", "name": "woman\u2019s sandal", "alpha_code": ":sandal:", "aliases": "" }, "1f462": { "output": "1f462", "name": "woman\u2019s boot", "alpha_code": ":boot:", "aliases": "" }, "1f463": { "output": "1f463", "name": "footprints", "alpha_code": ":footprints:", "aliases": "" }, "1f464": { "output": "1f464", "name": "bust in silhouette", "alpha_code": ":bust_in_silhouette:", "aliases": "" }, "1f936-1f3fb": { "output": "1f936-1f3fb", "name": "Mrs. Claus: light skin tone", "alpha_code": ":mrs_claus_tone1:", "aliases": ":mother_christmas_tone1:" }, "1f466": { "output": "1f466", "name": "boy", "alpha_code": ":boy:", "aliases": "" }, "1f467": { "output": "1f467", "name": "girl", "alpha_code": ":girl:", "aliases": "" }, "1f468": { "output": "1f468", "name": "man", "alpha_code": ":man:", "aliases": "" }, "1f469": { "output": "1f469", "name": "woman", "alpha_code": ":woman:", "aliases": "" }, "1f46a": { "output": "1f46a", "name": "family", "alpha_code": ":family:", "aliases": "" }, "1f46b": { "output": "1f46b", "name": "woman and man holding hands", "alpha_code": ":couple:", "aliases": "" }, "1f46e": { "output": "1f46e", "name": "police officer", "alpha_code": ":police_officer:", "aliases": ":cop:" }, "1f46f": { "output": "1f46f", "name": "people with bunny ears", "alpha_code": ":people_with_bunny_ears_partying:", "aliases": ":dancers:" }, "1f470": { "output": "1f470", "name": "bride with veil", "alpha_code": ":bride_with_veil:", "aliases": "" }, "1f471": { "output": "1f471", "name": "person: blond hair", "alpha_code": ":blond_haired_person:", "aliases": ":person_with_blond_hair:" }, "1f472": { "output": "1f472", "name": "man with Chinese cap", "alpha_code": ":man_with_chinese_cap:", "aliases": ":man_with_gua_pi_mao:" }, "1f473": { "output": "1f473", "name": "person wearing turban", "alpha_code": ":person_wearing_turban:", "aliases": ":man_with_turban:" }, "1f474": { "output": "1f474", "name": "old man", "alpha_code": ":older_man:", "aliases": "" }, "1f475": { "output": "1f475", "name": "old woman", "alpha_code": ":older_woman:", "aliases": ":grandma:" }, "1f476": { "output": "1f476", "name": "baby", "alpha_code": ":baby:", "aliases": "" }, "1f477": { "output": "1f477", "name": "construction worker", "alpha_code": ":construction_worker:", "aliases": "" }, "1f478": { "output": "1f478", "name": "princess", "alpha_code": ":princess:", "aliases": "" }, "1f479": { "output": "1f479", "name": "ogre", "alpha_code": ":japanese_ogre:", "aliases": "" }, "1f936-1f3fc": { "output": "1f936-1f3fc", "name": "Mrs. Claus: medium-light skin tone", "alpha_code": ":mrs_claus_tone2:", "aliases": ":mother_christmas_tone2:" }, "1f47a": { "output": "1f47a", "name": "goblin", "alpha_code": ":japanese_goblin:", "aliases": "" }, "1f47b": { "output": "1f47b", "name": "ghost", "alpha_code": ":ghost:", "aliases": "" }, "1f47c": { "output": "1f47c", "name": "baby angel", "alpha_code": ":angel:", "aliases": "" }, "1f47d": { "output": "1f47d", "name": "alien", "alpha_code": ":alien:", "aliases": "" }, "1f47e": { "output": "1f47e", "name": "alien monster", "alpha_code": ":space_invader:", "aliases": "" }, "1f936-1f3fd": { "output": "1f936-1f3fd", "name": "Mrs. Claus: medium skin tone", "alpha_code": ":mrs_claus_tone3:", "aliases": ":mother_christmas_tone3:" }, "1f47f": { "output": "1f47f", "name": "angry face with horns", "alpha_code": ":imp:", "aliases": "" }, "1f480": { "output": "1f480", "name": "skull", "alpha_code": ":skull:", "aliases": ":skeleton:" }, "1f4c7": { "output": "1f4c7", "name": "card index", "alpha_code": ":card_index:", "aliases": "" }, "1f481": { "output": "1f481", "name": "person tipping hand", "alpha_code": ":person_tipping_hand:", "aliases": ":information_desk_person:" }, "1f482": { "output": "1f482", "name": "guard", "alpha_code": ":guard:", "aliases": ":guardsman:" }, "1f483": { "output": "1f483", "name": "woman dancing", "alpha_code": ":dancer:", "aliases": "" }, "1f484": { "output": "1f484", "name": "lipstick", "alpha_code": ":lipstick:", "aliases": "" }, "1f485": { "output": "1f485", "name": "nail polish", "alpha_code": ":nail_care:", "aliases": "" }, "1f4d2": { "output": "1f4d2", "name": "ledger", "alpha_code": ":ledger:", "aliases": "" }, "1f486": { "output": "1f486", "name": "person getting massage", "alpha_code": ":person_getting_massage:", "aliases": ":massage:" }, "1f4d3": { "output": "1f4d3", "name": "notebook", "alpha_code": ":notebook:", "aliases": "" }, "1f487": { "output": "1f487", "name": "person getting haircut", "alpha_code": ":person_getting_haircut:", "aliases": ":haircut:" }, "1f4d4": { "output": "1f4d4", "name": "notebook with decorative cover", "alpha_code": ":notebook_with_decorative_cover:", "aliases": "" }, "1f488": { "output": "1f488", "name": "barber pole", "alpha_code": ":barber:", "aliases": "" }, "1f4d5": { "output": "1f4d5", "name": "closed book", "alpha_code": ":closed_book:", "aliases": "" }, "1f489": { "output": "1f489", "name": "syringe", "alpha_code": ":syringe:", "aliases": "" }, "1f4d6": { "output": "1f4d6", "name": "open book", "alpha_code": ":book:", "aliases": "" }, "1f48a": { "output": "1f48a", "name": "pill", "alpha_code": ":pill:", "aliases": "" }, "1f4d7": { "output": "1f4d7", "name": "green book", "alpha_code": ":green_book:", "aliases": "" }, "1f48b": { "output": "1f48b", "name": "kiss mark", "alpha_code": ":kiss:", "aliases": "" }, "1f4d8": { "output": "1f4d8", "name": "blue book", "alpha_code": ":blue_book:", "aliases": "" }, "1f48c": { "output": "1f48c", "name": "love letter", "alpha_code": ":love_letter:", "aliases": "" }, "1f4d9": { "output": "1f4d9", "name": "orange book", "alpha_code": ":orange_book:", "aliases": "" }, "1f48d": { "output": "1f48d", "name": "ring", "alpha_code": ":ring:", "aliases": "" }, "1f4da": { "output": "1f4da", "name": "books", "alpha_code": ":books:", "aliases": "" }, "1f48e": { "output": "1f48e", "name": "gem stone", "alpha_code": ":gem:", "aliases": "" }, "1f936-1f3fe": { "output": "1f936-1f3fe", "name": "Mrs. Claus: medium-dark skin tone", "alpha_code": ":mrs_claus_tone4:", "aliases": ":mother_christmas_tone4:" }, "1f4db": { "output": "1f4db", "name": "name badge", "alpha_code": ":name_badge:", "aliases": "" }, "1f48f": { "output": "1f48f", "name": "kiss", "alpha_code": ":couplekiss:", "aliases": "" }, "1f4dc": { "output": "1f4dc", "name": "scroll", "alpha_code": ":scroll:", "aliases": "" }, "1f490": { "output": "1f490", "name": "bouquet", "alpha_code": ":bouquet:", "aliases": "" }, "1f4dd": { "output": "1f4dd", "name": "memo", "alpha_code": ":pencil:", "aliases": ":memo:" }, "1f936-1f3ff": { "output": "1f936-1f3ff", "name": "Mrs. Claus: dark skin tone", "alpha_code": ":mrs_claus_tone5:", "aliases": ":mother_christmas_tone5:" }, "1f491": { "output": "1f491", "name": "couple with heart", "alpha_code": ":couple_with_heart:", "aliases": "" }, "1f4de": { "output": "1f4de", "name": "telephone receiver", "alpha_code": ":telephone_receiver:", "aliases": "" }, "1f492": { "output": "1f492", "name": "wedding", "alpha_code": ":wedding:", "aliases": "" }, "1f4df": { "output": "1f4df", "name": "pager", "alpha_code": ":pager:", "aliases": "" }, "1f4e0": { "output": "1f4e0", "name": "fax machine", "alpha_code": ":fax:", "aliases": "" }, "1f493": { "output": "1f493", "name": "beating heart", "alpha_code": ":heartbeat:", "aliases": "" }, "1f4e1": { "output": "1f4e1", "name": "satellite antenna", "alpha_code": ":satellite:", "aliases": "" }, "1f4e2": { "output": "1f4e2", "name": "loudspeaker", "alpha_code": ":loudspeaker:", "aliases": "" }, "1f935-1f3fb": { "output": "1f935-1f3fb", "name": "man in tuxedo: light skin tone", "alpha_code": ":man_in_tuxedo_tone1:", "aliases": ":tuxedo_tone1:" }, "1f494": { "output": "1f494", "name": "broken heart", "alpha_code": ":broken_heart:", "aliases": "" }, "1f4e3": { "output": "1f4e3", "name": "megaphone", "alpha_code": ":mega:", "aliases": "" }, "1f4e4": { "output": "1f4e4", "name": "outbox tray", "alpha_code": ":outbox_tray:", "aliases": "" }, "1f495": { "output": "1f495", "name": "two hearts", "alpha_code": ":two_hearts:", "aliases": "" }, "1f4e5": { "output": "1f4e5", "name": "inbox tray", "alpha_code": ":inbox_tray:", "aliases": "" }, "1f4e6": { "output": "1f4e6", "name": "package", "alpha_code": ":package:", "aliases": "" }, "1f935-1f3fc": { "output": "1f935-1f3fc", "name": "man in tuxedo: medium-light skin tone", "alpha_code": ":man_in_tuxedo_tone2:", "aliases": ":tuxedo_tone2:" }, "1f496": { "output": "1f496", "name": "sparkling heart", "alpha_code": ":sparkling_heart:", "aliases": "" }, "1f4e7": { "output": "1f4e7", "name": "e-mail", "alpha_code": ":e-mail:", "aliases": ":email:" }, "1f4e8": { "output": "1f4e8", "name": "incoming envelope", "alpha_code": ":incoming_envelope:", "aliases": "" }, "1f497": { "output": "1f497", "name": "growing heart", "alpha_code": ":heartpulse:", "aliases": "" }, "1f935-1f3fd": { "output": "1f935-1f3fd", "name": "man in tuxedo: medium skin tone", "alpha_code": ":man_in_tuxedo_tone3:", "aliases": ":tuxedo_tone3:" }, "1f4e9": { "output": "1f4e9", "name": "envelope with arrow", "alpha_code": ":envelope_with_arrow:", "aliases": "" }, "1f4ea": { "output": "1f4ea", "name": "closed mailbox with lowered flag", "alpha_code": ":mailbox_closed:", "aliases": "" }, "1f498": { "output": "1f498", "name": "heart with arrow", "alpha_code": ":cupid:", "aliases": "" }, "1f4eb": { "output": "1f4eb", "name": "closed mailbox with raised flag", "alpha_code": ":mailbox:", "aliases": "" }, "1f935-1f3fe": { "output": "1f935-1f3fe", "name": "man in tuxedo: medium-dark skin tone", "alpha_code": ":man_in_tuxedo_tone4:", "aliases": ":tuxedo_tone4:" }, "1f4ee": { "output": "1f4ee", "name": "postbox", "alpha_code": ":postbox:", "aliases": "" }, "1f499": { "output": "1f499", "name": "blue heart", "alpha_code": ":blue_heart:", "aliases": "" }, "1f4f0": { "output": "1f4f0", "name": "newspaper", "alpha_code": ":newspaper:", "aliases": "" }, "1f935-1f3ff": { "output": "1f935-1f3ff", "name": "man in tuxedo: dark skin tone", "alpha_code": ":man_in_tuxedo_tone5:", "aliases": ":tuxedo_tone5:" }, "1f4f1": { "output": "1f4f1", "name": "mobile phone", "alpha_code": ":iphone:", "aliases": "" }, "1f49a": { "output": "1f49a", "name": "green heart", "alpha_code": ":green_heart:", "aliases": "" }, "1f937-1f3fb": { "output": "1f937-1f3fb", "name": "person shrugging: light skin tone", "alpha_code": ":person_shrugging_tone1:", "aliases": ":shrug_tone1:" }, "1f4f2": { "output": "1f4f2", "name": "mobile phone with arrow", "alpha_code": ":calling:", "aliases": "" }, "1f4f3": { "output": "1f4f3", "name": "vibration mode", "alpha_code": ":vibration_mode:", "aliases": "" }, "1f49b": { "output": "1f49b", "name": "yellow heart", "alpha_code": ":yellow_heart:", "aliases": "" }, "1f937-1f3fc": { "output": "1f937-1f3fc", "name": "person shrugging: medium-light skin tone", "alpha_code": ":person_shrugging_tone2:", "aliases": ":shrug_tone2:" }, "1f4f4": { "output": "1f4f4", "name": "mobile phone off", "alpha_code": ":mobile_phone_off:", "aliases": "" }, "1f4f6": { "output": "1f4f6", "name": "antenna bars", "alpha_code": ":signal_strength:", "aliases": "" }, "1f937-1f3fd": { "output": "1f937-1f3fd", "name": "person shrugging: medium skin tone", "alpha_code": ":person_shrugging_tone3:", "aliases": ":shrug_tone3:" }, "1f49c": { "output": "1f49c", "name": "purple heart", "alpha_code": ":purple_heart:", "aliases": "" }, "1f937-1f3fe": { "output": "1f937-1f3fe", "name": "person shrugging: medium-dark skin tone", "alpha_code": ":person_shrugging_tone4:", "aliases": ":shrug_tone4:" }, "1f4f7": { "output": "1f4f7", "name": "camera", "alpha_code": ":camera:", "aliases": "" }, "1f4f9": { "output": "1f4f9", "name": "video camera", "alpha_code": ":video_camera:", "aliases": "" }, "1f49d": { "output": "1f49d", "name": "heart with ribbon", "alpha_code": ":gift_heart:", "aliases": "" }, "1f4fa": { "output": "1f4fa", "name": "television", "alpha_code": ":tv:", "aliases": "" }, "1f937-1f3ff": { "output": "1f937-1f3ff", "name": "person shrugging: dark skin tone", "alpha_code": ":person_shrugging_tone5:", "aliases": ":shrug_tone5:" }, "1f4fb": { "output": "1f4fb", "name": "radio", "alpha_code": ":radio:", "aliases": "" }, "1f49e": { "output": "1f49e", "name": "revolving hearts", "alpha_code": ":revolving_hearts:", "aliases": "" }, "1f4fc": { "output": "1f4fc", "name": "videocassette", "alpha_code": ":vhs:", "aliases": "" }, "1f926-1f3fb": { "output": "1f926-1f3fb", "name": "person facepalming: light skin tone", "alpha_code": ":person_facepalming_tone1:", "aliases": ":face_palm_tone1:|:facepalm_tone1:" }, "1f503": { "output": "1f503", "name": "clockwise vertical arrows", "alpha_code": ":arrows_clockwise:", "aliases": "" }, "1f49f": { "output": "1f49f", "name": "heart decoration", "alpha_code": ":heart_decoration:", "aliases": "" }, "1f50a": { "output": "1f50a", "name": "speaker high volume", "alpha_code": ":loud_sound:", "aliases": "" }, "1f50b": { "output": "1f50b", "name": "battery", "alpha_code": ":battery:", "aliases": "" }, "1f4a0": { "output": "1f4a0", "name": "diamond with a dot", "alpha_code": ":diamond_shape_with_a_dot_inside:", "aliases": "" }, "1f50c": { "output": "1f50c", "name": "electric plug", "alpha_code": ":electric_plug:", "aliases": "" }, "1f50d": { "output": "1f50d", "name": "magnifying glass tilted left", "alpha_code": ":mag:", "aliases": "" }, "1f926-1f3fc": { "output": "1f926-1f3fc", "name": "person facepalming: medium-light skin tone", "alpha_code": ":person_facepalming_tone2:", "aliases": ":face_palm_tone2:|:facepalm_tone2:" }, "1f4a1": { "output": "1f4a1", "name": "light bulb", "alpha_code": ":bulb:", "aliases": "" }, "1f50e": { "output": "1f50e", "name": "magnifying glass tilted right", "alpha_code": ":mag_right:", "aliases": "" }, "1f50f": { "output": "1f50f", "name": "locked with pen", "alpha_code": ":lock_with_ink_pen:", "aliases": "" }, "1f4a2": { "output": "1f4a2", "name": "anger symbol", "alpha_code": ":anger:", "aliases": "" }, "1f510": { "output": "1f510", "name": "locked with key", "alpha_code": ":closed_lock_with_key:", "aliases": "" }, "1f511": { "output": "1f511", "name": "key", "alpha_code": ":key:", "aliases": "" }, "1f4a3": { "output": "1f4a3", "name": "bomb", "alpha_code": ":bomb:", "aliases": "" }, "1f512": { "output": "1f512", "name": "locked", "alpha_code": ":lock:", "aliases": "" }, "1f513": { "output": "1f513", "name": "unlocked", "alpha_code": ":unlock:", "aliases": "" }, "1f4a4": { "output": "1f4a4", "name": "zzz", "alpha_code": ":zzz:", "aliases": "" }, "1f514": { "output": "1f514", "name": "bell", "alpha_code": ":bell:", "aliases": "" }, "1f516": { "output": "1f516", "name": "bookmark", "alpha_code": ":bookmark:", "aliases": "" }, "1f4a5": { "output": "1f4a5", "name": "collision", "alpha_code": ":boom:", "aliases": "" }, "1f926-1f3fd": { "output": "1f926-1f3fd", "name": "person facepalming: medium skin tone", "alpha_code": ":person_facepalming_tone3:", "aliases": ":face_palm_tone3:|:facepalm_tone3:" }, "1f517": { "output": "1f517", "name": "link", "alpha_code": ":link:", "aliases": "" }, "1f518": { "output": "1f518", "name": "radio button", "alpha_code": ":radio_button:", "aliases": "" }, "1f4a6": { "output": "1f4a6", "name": "sweat droplets", "alpha_code": ":sweat_drops:", "aliases": "" }, "1f519": { "output": "1f519", "name": "BACK arrow", "alpha_code": ":back:", "aliases": "" }, "1f51a": { "output": "1f51a", "name": "END arrow", "alpha_code": ":end:", "aliases": "" }, "1f4a7": { "output": "1f4a7", "name": "droplet", "alpha_code": ":droplet:", "aliases": "" }, "1f926-1f3fe": { "output": "1f926-1f3fe", "name": "person facepalming: medium-dark skin tone", "alpha_code": ":person_facepalming_tone4:", "aliases": ":face_palm_tone4:|:facepalm_tone4:" }, "1f51b": { "output": "1f51b", "name": "ON! arrow", "alpha_code": ":on:", "aliases": "" }, "1f51c": { "output": "1f51c", "name": "SOON arrow", "alpha_code": ":soon:", "aliases": "" }, "1f4a8": { "output": "1f4a8", "name": "dashing away", "alpha_code": ":dash:", "aliases": "" }, "1f51d": { "output": "1f51d", "name": "TOP arrow", "alpha_code": ":top:", "aliases": "" }, "1f51e": { "output": "1f51e", "name": "no one under eighteen", "alpha_code": ":underage:", "aliases": "" }, "1f4a9": { "output": "1f4a9", "name": "pile of poo", "alpha_code": ":poop:", "aliases": ":shit:|:hankey:|:poo:" }, "1f51f": { "output": "1f51f", "name": "keycap: 10", "alpha_code": ":keycap_ten:", "aliases": "" }, "1f4aa": { "output": "1f4aa", "name": "flexed biceps", "alpha_code": ":muscle:", "aliases": "" }, "1f520": { "output": "1f520", "name": "input latin uppercase", "alpha_code": ":capital_abcd:", "aliases": "" }, "1f521": { "output": "1f521", "name": "input latin lowercase", "alpha_code": ":abcd:", "aliases": "" }, "1f4ab": { "output": "1f4ab", "name": "dizzy", "alpha_code": ":dizzy:", "aliases": "" }, "1f926-1f3ff": { "output": "1f926-1f3ff", "name": "person facepalming: dark skin tone", "alpha_code": ":person_facepalming_tone5:", "aliases": ":face_palm_tone5:|:facepalm_tone5:" }, "1f522": { "output": "1f522", "name": "input numbers", "alpha_code": ":1234:", "aliases": "" }, "1f523": { "output": "1f523", "name": "input symbols", "alpha_code": ":symbols:", "aliases": "" }, "1f4ac": { "output": "1f4ac", "name": "speech balloon", "alpha_code": ":speech_balloon:", "aliases": "" }, "1f524": { "output": "1f524", "name": "input latin letters", "alpha_code": ":abc:", "aliases": "" }, "1f525": { "output": "1f525", "name": "fire", "alpha_code": ":fire:", "aliases": ":flame:" }, "1f4ae": { "output": "1f4ae", "name": "white flower", "alpha_code": ":white_flower:", "aliases": "" }, "1f526": { "output": "1f526", "name": "flashlight", "alpha_code": ":flashlight:", "aliases": "" }, "1f527": { "output": "1f527", "name": "wrench", "alpha_code": ":wrench:", "aliases": "" }, "1f4af": { "output": "1f4af", "name": "hundred points", "alpha_code": ":100:", "aliases": "" }, "1f528": { "output": "1f528", "name": "hammer", "alpha_code": ":hammer:", "aliases": "" }, "1f529": { "output": "1f529", "name": "nut and bolt", "alpha_code": ":nut_and_bolt:", "aliases": "" }, "1f4b0": { "output": "1f4b0", "name": "money bag", "alpha_code": ":moneybag:", "aliases": "" }, "1f52a": { "output": "1f52a", "name": "kitchen knife", "alpha_code": ":knife:", "aliases": "" }, "1f52b": { "output": "1f52b", "name": "pistol", "alpha_code": ":gun:", "aliases": "" }, "1f4b1": { "output": "1f4b1", "name": "currency exchange", "alpha_code": ":currency_exchange:", "aliases": "" }, "1f930-1f3fb": { "output": "1f930-1f3fb", "name": "pregnant woman: light skin tone", "alpha_code": ":pregnant_woman_tone1:", "aliases": ":expecting_woman_tone1:" }, "1f52e": { "output": "1f52e", "name": "crystal ball", "alpha_code": ":crystal_ball:", "aliases": "" }, "1f4b2": { "output": "1f4b2", "name": "heavy dollar sign", "alpha_code": ":heavy_dollar_sign:", "aliases": "" }, "1f52f": { "output": "1f52f", "name": "dotted six-pointed star", "alpha_code": ":six_pointed_star:", "aliases": "" }, "1f4b3": { "output": "1f4b3", "name": "credit card", "alpha_code": ":credit_card:", "aliases": "" }, "1f530": { "output": "1f530", "name": "Japanese symbol for beginner", "alpha_code": ":beginner:", "aliases": "" }, "1f531": { "output": "1f531", "name": "trident emblem", "alpha_code": ":trident:", "aliases": "" }, "1f4b4": { "output": "1f4b4", "name": "yen banknote", "alpha_code": ":yen:", "aliases": "" }, "1f930-1f3fc": { "output": "1f930-1f3fc", "name": "pregnant woman: medium-light skin tone", "alpha_code": ":pregnant_woman_tone2:", "aliases": ":expecting_woman_tone2:" }, "1f532": { "output": "1f532", "name": "black square button", "alpha_code": ":black_square_button:", "aliases": "" }, "1f533": { "output": "1f533", "name": "white square button", "alpha_code": ":white_square_button:", "aliases": "" }, "1f4b5": { "output": "1f4b5", "name": "dollar banknote", "alpha_code": ":dollar:", "aliases": "" }, "1f534": { "output": "1f534", "name": "red circle", "alpha_code": ":red_circle:", "aliases": "" }, "1f535": { "output": "1f535", "name": "blue circle", "alpha_code": ":blue_circle:", "aliases": "" }, "1f4b8": { "output": "1f4b8", "name": "money with wings", "alpha_code": ":money_with_wings:", "aliases": "" }, "1f536": { "output": "1f536", "name": "large orange diamond", "alpha_code": ":large_orange_diamond:", "aliases": "" }, "1f537": { "output": "1f537", "name": "large blue diamond", "alpha_code": ":large_blue_diamond:", "aliases": "" }, "1f4b9": { "output": "1f4b9", "name": "chart increasing with yen", "alpha_code": ":chart:", "aliases": "" }, "1f930-1f3fd": { "output": "1f930-1f3fd", "name": "pregnant woman: medium skin tone", "alpha_code": ":pregnant_woman_tone3:", "aliases": ":expecting_woman_tone3:" }, "1f538": { "output": "1f538", "name": "small orange diamond", "alpha_code": ":small_orange_diamond:", "aliases": "" }, "1f539": { "output": "1f539", "name": "small blue diamond", "alpha_code": ":small_blue_diamond:", "aliases": "" }, "1f4ba": { "output": "1f4ba", "name": "seat", "alpha_code": ":seat:", "aliases": "" }, "1f53a": { "output": "1f53a", "name": "red triangle pointed up", "alpha_code": ":small_red_triangle:", "aliases": "" }, "1f53b": { "output": "1f53b", "name": "red triangle pointed down", "alpha_code": ":small_red_triangle_down:", "aliases": "" }, "1f4bb": { "output": "1f4bb", "name": "laptop computer", "alpha_code": ":computer:", "aliases": "" }, "1f53c": { "output": "1f53c", "name": "upwards button", "alpha_code": ":arrow_up_small:", "aliases": "" }, "1f4bc": { "output": "1f4bc", "name": "briefcase", "alpha_code": ":briefcase:", "aliases": "" }, "1f53d": { "output": "1f53d", "name": "downwards button", "alpha_code": ":arrow_down_small:", "aliases": "" }, "1f550": { "output": "1f550", "name": "one o\u2019clock", "alpha_code": ":clock1:", "aliases": "" }, "1f4bd": { "output": "1f4bd", "name": "computer disk", "alpha_code": ":minidisc:", "aliases": "" }, "1f551": { "output": "1f551", "name": "two o\u2019clock", "alpha_code": ":clock2:", "aliases": "" }, "1f4be": { "output": "1f4be", "name": "floppy disk", "alpha_code": ":floppy_disk:", "aliases": "" }, "1f930-1f3fe": { "output": "1f930-1f3fe", "name": "pregnant woman: medium-dark skin tone", "alpha_code": ":pregnant_woman_tone4:", "aliases": ":expecting_woman_tone4:" }, "1f552": { "output": "1f552", "name": "three o\u2019clock", "alpha_code": ":clock3:", "aliases": "" }, "1f4bf": { "output": "1f4bf", "name": "optical disk", "alpha_code": ":cd:", "aliases": "" }, "1f553": { "output": "1f553", "name": "four o\u2019clock", "alpha_code": ":clock4:", "aliases": "" }, "1f4c0": { "output": "1f4c0", "name": "dvd", "alpha_code": ":dvd:", "aliases": "" }, "1f554": { "output": "1f554", "name": "five o\u2019clock", "alpha_code": ":clock5:", "aliases": "" }, "1f555": { "output": "1f555", "name": "six o\u2019clock", "alpha_code": ":clock6:", "aliases": "" }, "1f4c1": { "output": "1f4c1", "name": "file folder", "alpha_code": ":file_folder:", "aliases": "" }, "1f556": { "output": "1f556", "name": "seven o\u2019clock", "alpha_code": ":clock7:", "aliases": "" }, "1f557": { "output": "1f557", "name": "eight o\u2019clock", "alpha_code": ":clock8:", "aliases": "" }, "1f4c2": { "output": "1f4c2", "name": "open file folder", "alpha_code": ":open_file_folder:", "aliases": "" }, "1f558": { "output": "1f558", "name": "nine o\u2019clock", "alpha_code": ":clock9:", "aliases": "" }, "1f559": { "output": "1f559", "name": "ten o\u2019clock", "alpha_code": ":clock10:", "aliases": "" }, "1f4c3": { "output": "1f4c3", "name": "page with curl", "alpha_code": ":page_with_curl:", "aliases": "" }, "1f55a": { "output": "1f55a", "name": "eleven o\u2019clock", "alpha_code": ":clock11:", "aliases": "" }, "1f55b": { "output": "1f55b", "name": "twelve o\u2019clock", "alpha_code": ":clock12:", "aliases": "" }, "1f4c4": { "output": "1f4c4", "name": "page facing up", "alpha_code": ":page_facing_up:", "aliases": "" }, "1f5fb": { "output": "1f5fb", "name": "mount fuji", "alpha_code": ":mount_fuji:", "aliases": "" }, "1f5fc": { "output": "1f5fc", "name": "Tokyo tower", "alpha_code": ":tokyo_tower:", "aliases": "" }, "1f4c5": { "output": "1f4c5", "name": "calendar", "alpha_code": ":date:", "aliases": "" }, "1f5fd": { "output": "1f5fd", "name": "Statue of Liberty", "alpha_code": ":statue_of_liberty:", "aliases": "" }, "1f5fe": { "output": "1f5fe", "name": "map of Japan", "alpha_code": ":japan:", "aliases": "" }, "1f4c6": { "output": "1f4c6", "name": "tear-off calendar", "alpha_code": ":calendar:", "aliases": "" }, "1f5ff": { "output": "1f5ff", "name": "moai", "alpha_code": ":moyai:", "aliases": "" }, "1f601": { "output": "1f601", "name": "beaming face with smiling eyes", "alpha_code": ":grin:", "aliases": "" }, "1f602": { "output": "1f602", "name": "face with tears of joy", "alpha_code": ":joy:", "aliases": "" }, "1f603": { "output": "1f603", "name": "grinning face with big eyes", "alpha_code": ":smiley:", "aliases": "" }, "1f4c8": { "output": "1f4c8", "name": "chart increasing", "alpha_code": ":chart_with_upwards_trend:", "aliases": "" }, "1f604": { "output": "1f604", "name": "grinning face with smiling eyes", "alpha_code": ":smile:", "aliases": "" }, "1f605": { "output": "1f605", "name": "grinning face with sweat", "alpha_code": ":sweat_smile:", "aliases": "" }, "1f4c9": { "output": "1f4c9", "name": "chart decreasing", "alpha_code": ":chart_with_downwards_trend:", "aliases": "" }, "1f606": { "output": "1f606", "name": "grinning squinting face", "alpha_code": ":laughing:", "aliases": ":satisfied:" }, "1f609": { "output": "1f609", "name": "winking face", "alpha_code": ":wink:", "aliases": "" }, "1f4ca": { "output": "1f4ca", "name": "bar chart", "alpha_code": ":bar_chart:", "aliases": "" }, "1f60a": { "output": "1f60a", "name": "smiling face with smiling eyes", "alpha_code": ":blush:", "aliases": "" }, "1f60b": { "output": "1f60b", "name": "face savoring food", "alpha_code": ":yum:", "aliases": "" }, "1f4cb": { "output": "1f4cb", "name": "clipboard", "alpha_code": ":clipboard:", "aliases": "" }, "1f60c": { "output": "1f60c", "name": "relieved face", "alpha_code": ":relieved:", "aliases": "" }, "1f60d": { "output": "1f60d", "name": "smiling face with heart-eyes", "alpha_code": ":heart_eyes:", "aliases": "" }, "1f4cc": { "output": "1f4cc", "name": "pushpin", "alpha_code": ":pushpin:", "aliases": "" }, "1f60f": { "output": "1f60f", "name": "smirking face", "alpha_code": ":smirk:", "aliases": "" }, "1f612": { "output": "1f612", "name": "unamused face", "alpha_code": ":unamused:", "aliases": "" }, "1f4cd": { "output": "1f4cd", "name": "round pushpin", "alpha_code": ":round_pushpin:", "aliases": "" }, "1f613": { "output": "1f613", "name": "downcast face with sweat", "alpha_code": ":sweat:", "aliases": "" }, "1f614": { "output": "1f614", "name": "pensive face", "alpha_code": ":pensive:", "aliases": "" }, "1f4ce": { "output": "1f4ce", "name": "paperclip", "alpha_code": ":paperclip:", "aliases": "" }, "1f616": { "output": "1f616", "name": "confounded face", "alpha_code": ":confounded:", "aliases": "" }, "1f618": { "output": "1f618", "name": "face blowing a kiss", "alpha_code": ":kissing_heart:", "aliases": "" }, "1f930-1f3ff": { "output": "1f930-1f3ff", "name": "pregnant woman: dark skin tone", "alpha_code": ":pregnant_woman_tone5:", "aliases": ":expecting_woman_tone5:" }, "1f4cf": { "output": "1f4cf", "name": "straight ruler", "alpha_code": ":straight_ruler:", "aliases": "" }, "1f61a": { "output": "1f61a", "name": "kissing face with closed eyes", "alpha_code": ":kissing_closed_eyes:", "aliases": "" }, "1f61c": { "output": "1f61c", "name": "winking face with tongue", "alpha_code": ":stuck_out_tongue_winking_eye:", "aliases": "" }, "1f4d0": { "output": "1f4d0", "name": "triangular ruler", "alpha_code": ":triangular_ruler:", "aliases": "" }, "1f61d": { "output": "1f61d", "name": "squinting face with tongue", "alpha_code": ":stuck_out_tongue_closed_eyes:", "aliases": "" }, "1f61e": { "output": "1f61e", "name": "disappointed face", "alpha_code": ":disappointed:", "aliases": "" }, "1f4d1": { "output": "1f4d1", "name": "bookmark tabs", "alpha_code": ":bookmark_tabs:", "aliases": "" }, "1f620": { "output": "1f620", "name": "angry face", "alpha_code": ":angry:", "aliases": "" }, "1f621": { "output": "1f621", "name": "pouting face", "alpha_code": ":rage:", "aliases": "" }, "1f622": { "output": "1f622", "name": "crying face", "alpha_code": ":cry:", "aliases": "" }, "1f623": { "output": "1f623", "name": "persevering face", "alpha_code": ":persevere:", "aliases": "" }, "1f624": { "output": "1f624", "name": "face with steam from nose", "alpha_code": ":triumph:", "aliases": "" }, "1f625": { "output": "1f625", "name": "sad but relieved face", "alpha_code": ":disappointed_relieved:", "aliases": "" }, "1f628": { "output": "1f628", "name": "fearful face", "alpha_code": ":fearful:", "aliases": "" }, "1f629": { "output": "1f629", "name": "weary face", "alpha_code": ":weary:", "aliases": "" }, "1f62a": { "output": "1f62a", "name": "sleepy face", "alpha_code": ":sleepy:", "aliases": "" }, "1f62b": { "output": "1f62b", "name": "tired face", "alpha_code": ":tired_face:", "aliases": "" }, "1f62d": { "output": "1f62d", "name": "loudly crying face", "alpha_code": ":sob:", "aliases": "" }, "1f630": { "output": "1f630", "name": "anxious face with sweat", "alpha_code": ":cold_sweat:", "aliases": "" }, "1f631": { "output": "1f631", "name": "face screaming in fear", "alpha_code": ":scream:", "aliases": "" }, "1f632": { "output": "1f632", "name": "astonished face", "alpha_code": ":astonished:", "aliases": "" }, "1f633": { "output": "1f633", "name": "flushed face", "alpha_code": ":flushed:", "aliases": "" }, "1f635": { "output": "1f635", "name": "dizzy face", "alpha_code": ":dizzy_face:", "aliases": "" }, "1f637": { "output": "1f637", "name": "face with medical mask", "alpha_code": ":mask:", "aliases": "" }, "1f638": { "output": "1f638", "name": "grinning cat with smiling eyes", "alpha_code": ":smile_cat:", "aliases": "" }, "1f639": { "output": "1f639", "name": "cat with tears of joy", "alpha_code": ":joy_cat:", "aliases": "" }, "1f63a": { "output": "1f63a", "name": "grinning cat", "alpha_code": ":smiley_cat:", "aliases": "" }, "1f63b": { "output": "1f63b", "name": "smiling cat with heart-eyes", "alpha_code": ":heart_eyes_cat:", "aliases": "" }, "1f63c": { "output": "1f63c", "name": "cat with wry smile", "alpha_code": ":smirk_cat:", "aliases": "" }, "1f63d": { "output": "1f63d", "name": "kissing cat", "alpha_code": ":kissing_cat:", "aliases": "" }, "1f63e": { "output": "1f63e", "name": "pouting cat", "alpha_code": ":pouting_cat:", "aliases": "" }, "1f63f": { "output": "1f63f", "name": "crying cat", "alpha_code": ":crying_cat_face:", "aliases": "" }, "1f640": { "output": "1f640", "name": "weary cat", "alpha_code": ":scream_cat:", "aliases": "" }, "1f645": { "output": "1f645", "name": "person gesturing NO", "alpha_code": ":person_gesturing_no:", "aliases": ":no_good:" }, "1f646": { "output": "1f646", "name": "person gesturing OK", "alpha_code": ":person_gesturing_ok:", "aliases": ":ok_woman:" }, "1f647": { "output": "1f647", "name": "person bowing", "alpha_code": ":person_bowing:", "aliases": ":bow:" }, "1f648": { "output": "1f648", "name": "see-no-evil monkey", "alpha_code": ":see_no_evil:", "aliases": "" }, "1f57a-1f3fb": { "output": "1f57a-1f3fb", "name": "man dancing: light skin tone", "alpha_code": ":man_dancing_tone1:", "aliases": ":male_dancer_tone1:" }, "1f649": { "output": "1f649", "name": "hear-no-evil monkey", "alpha_code": ":hear_no_evil:", "aliases": "" }, "1f64a": { "output": "1f64a", "name": "speak-no-evil monkey", "alpha_code": ":speak_no_evil:", "aliases": "" }, "1f57a-1f3fc": { "output": "1f57a-1f3fc", "name": "man dancing: medium-light skin tone", "alpha_code": ":man_dancing_tone2:", "aliases": ":male_dancer_tone2:" }, "1f64b": { "output": "1f64b", "name": "person raising hand", "alpha_code": ":person_raising_hand:", "aliases": ":raising_hand:" }, "1f64c": { "output": "1f64c", "name": "raising hands", "alpha_code": ":raised_hands:", "aliases": "" }, "1f64d": { "output": "1f64d", "name": "person frowning", "alpha_code": ":person_frowning:", "aliases": "" }, "1f64e": { "output": "1f64e", "name": "person pouting", "alpha_code": ":person_pouting:", "aliases": ":person_with_pouting_face:" }, "1f64f": { "output": "1f64f", "name": "folded hands", "alpha_code": ":pray:", "aliases": "" }, "1f680": { "output": "1f680", "name": "rocket", "alpha_code": ":rocket:", "aliases": "" }, "1f683": { "output": "1f683", "name": "railway car", "alpha_code": ":railway_car:", "aliases": "" }, "1f684": { "output": "1f684", "name": "high-speed train", "alpha_code": ":bullettrain_side:", "aliases": "" }, "1f685": { "output": "1f685", "name": "bullet train", "alpha_code": ":bullettrain_front:", "aliases": "" }, "1f687": { "output": "1f687", "name": "metro", "alpha_code": ":metro:", "aliases": "" }, "1f689": { "output": "1f689", "name": "station", "alpha_code": ":station:", "aliases": "" }, "1f68c": { "output": "1f68c", "name": "bus", "alpha_code": ":bus:", "aliases": "" }, "1f68f": { "output": "1f68f", "name": "bus stop", "alpha_code": ":busstop:", "aliases": "" }, "1f691": { "output": "1f691", "name": "ambulance", "alpha_code": ":ambulance:", "aliases": "" }, "1f692": { "output": "1f692", "name": "fire engine", "alpha_code": ":fire_engine:", "aliases": "" }, "1f693": { "output": "1f693", "name": "police car", "alpha_code": ":police_car:", "aliases": "" }, "1f695": { "output": "1f695", "name": "taxi", "alpha_code": ":taxi:", "aliases": "" }, "1f697": { "output": "1f697", "name": "automobile", "alpha_code": ":red_car:", "aliases": "" }, "1f699": { "output": "1f699", "name": "sport utility vehicle", "alpha_code": ":blue_car:", "aliases": "" }, "1f69a": { "output": "1f69a", "name": "delivery truck", "alpha_code": ":truck:", "aliases": "" }, "1f6a2": { "output": "1f6a2", "name": "ship", "alpha_code": ":ship:", "aliases": "" }, "1f6a4": { "output": "1f6a4", "name": "speedboat", "alpha_code": ":speedboat:", "aliases": "" }, "1f6a5": { "output": "1f6a5", "name": "horizontal traffic light", "alpha_code": ":traffic_light:", "aliases": "" }, "1f6a7": { "output": "1f6a7", "name": "construction", "alpha_code": ":construction:", "aliases": "" }, "1f6a8": { "output": "1f6a8", "name": "police car light", "alpha_code": ":rotating_light:", "aliases": "" }, "1f6a9": { "output": "1f6a9", "name": "triangular flag", "alpha_code": ":triangular_flag_on_post:", "aliases": "" }, "1f6aa": { "output": "1f6aa", "name": "door", "alpha_code": ":door:", "aliases": "" }, "1f57a-1f3fd": { "output": "1f57a-1f3fd", "name": "man dancing: medium skin tone", "alpha_code": ":man_dancing_tone3:", "aliases": ":male_dancer_tone3:" }, "1f6ab": { "output": "1f6ab", "name": "prohibited", "alpha_code": ":no_entry_sign:", "aliases": "" }, "1f6ac": { "output": "1f6ac", "name": "cigarette", "alpha_code": ":smoking:", "aliases": "" }, "1f6ad": { "output": "1f6ad", "name": "no smoking", "alpha_code": ":no_smoking:", "aliases": "" }, "1f6b2": { "output": "1f6b2", "name": "bicycle", "alpha_code": ":bike:", "aliases": "" }, "1f6b6": { "output": "1f6b6", "name": "person walking", "alpha_code": ":person_walking:", "aliases": ":walking:" }, "1f6b9": { "output": "1f6b9", "name": "men\u2019s room", "alpha_code": ":mens:", "aliases": "" }, "1f6ba": { "output": "1f6ba", "name": "women\u2019s room", "alpha_code": ":womens:", "aliases": "" }, "1f57a-1f3fe": { "output": "1f57a-1f3fe", "name": "man dancing: medium-dark skin tone", "alpha_code": ":man_dancing_tone4:", "aliases": ":male_dancer_tone4:" }, "1f6bb": { "output": "1f6bb", "name": "restroom", "alpha_code": ":restroom:", "aliases": "" }, "1f6bc": { "output": "1f6bc", "name": "baby symbol", "alpha_code": ":baby_symbol:", "aliases": "" }, "1f57a-1f3ff": { "output": "1f57a-1f3ff", "name": "man dancing: dark skin tone", "alpha_code": ":man_dancing_tone5:", "aliases": ":male_dancer_tone5:" }, "1f6bd": { "output": "1f6bd", "name": "toilet", "alpha_code": ":toilet:", "aliases": "" }, "1f6be": { "output": "1f6be", "name": "water closet", "alpha_code": ":wc:", "aliases": "" }, "1f933-1f3fb": { "output": "1f933-1f3fb", "name": "selfie: light skin tone", "alpha_code": ":selfie_tone1:", "aliases": "" }, "1f6c0": { "output": "1f6c0", "name": "person taking bath", "alpha_code": ":bath:", "aliases": "" }, "1f918": { "output": "1f918", "name": "sign of the horns", "alpha_code": ":metal:", "aliases": ":sign_of_the_horns:" }, "1f600": { "output": "1f600", "name": "grinning face", "alpha_code": ":grinning:", "aliases": "" }, "1f607": { "output": "1f607", "name": "smiling face with halo", "alpha_code": ":innocent:", "aliases": "" }, "1f608": { "output": "1f608", "name": "smiling face with horns", "alpha_code": ":smiling_imp:", "aliases": "" }, "1f60e": { "output": "1f60e", "name": "smiling face with sunglasses", "alpha_code": ":sunglasses:", "aliases": "" }, "1f610": { "output": "1f610", "name": "neutral face", "alpha_code": ":neutral_face:", "aliases": "" }, "1f611": { "output": "1f611", "name": "expressionless face", "alpha_code": ":expressionless:", "aliases": "" }, "1f615": { "output": "1f615", "name": "confused face", "alpha_code": ":confused:", "aliases": "" }, "1f617": { "output": "1f617", "name": "kissing face", "alpha_code": ":kissing:", "aliases": "" }, "1f933-1f3fc": { "output": "1f933-1f3fc", "name": "selfie: medium-light skin tone", "alpha_code": ":selfie_tone2:", "aliases": "" }, "1f619": { "output": "1f619", "name": "kissing face with smiling eyes", "alpha_code": ":kissing_smiling_eyes:", "aliases": "" }, "1f61b": { "output": "1f61b", "name": "face with tongue", "alpha_code": ":stuck_out_tongue:", "aliases": "" }, "1f61f": { "output": "1f61f", "name": "worried face", "alpha_code": ":worried:", "aliases": "" }, "1f626": { "output": "1f626", "name": "frowning face with open mouth", "alpha_code": ":frowning:", "aliases": "" }, "1f627": { "output": "1f627", "name": "anguished face", "alpha_code": ":anguished:", "aliases": "" }, "1f62c": { "output": "1f62c", "name": "grimacing face", "alpha_code": ":grimacing:", "aliases": "" }, "1f62e": { "output": "1f62e", "name": "face with open mouth", "alpha_code": ":open_mouth:", "aliases": "" }, "1f62f": { "output": "1f62f", "name": "hushed face", "alpha_code": ":hushed:", "aliases": "" }, "1f634": { "output": "1f634", "name": "sleeping face", "alpha_code": ":sleeping:", "aliases": "" }, "1f636": { "output": "1f636", "name": "face without mouth", "alpha_code": ":no_mouth:", "aliases": "" }, "1f681": { "output": "1f681", "name": "helicopter", "alpha_code": ":helicopter:", "aliases": "" }, "1f682": { "output": "1f682", "name": "locomotive", "alpha_code": ":steam_locomotive:", "aliases": "" }, "1f686": { "output": "1f686", "name": "train", "alpha_code": ":train2:", "aliases": "" }, "1f688": { "output": "1f688", "name": "light rail", "alpha_code": ":light_rail:", "aliases": "" }, "1f68a": { "output": "1f68a", "name": "tram", "alpha_code": ":tram:", "aliases": "" }, "1f68d": { "output": "1f68d", "name": "oncoming bus", "alpha_code": ":oncoming_bus:", "aliases": "" }, "1f68e": { "output": "1f68e", "name": "trolleybus", "alpha_code": ":trolleybus:", "aliases": "" }, "1f690": { "output": "1f690", "name": "minibus", "alpha_code": ":minibus:", "aliases": "" }, "1f694": { "output": "1f694", "name": "oncoming police car", "alpha_code": ":oncoming_police_car:", "aliases": "" }, "1f696": { "output": "1f696", "name": "oncoming taxi", "alpha_code": ":oncoming_taxi:", "aliases": "" }, "1f698": { "output": "1f698", "name": "oncoming automobile", "alpha_code": ":oncoming_automobile:", "aliases": "" }, "1f69b": { "output": "1f69b", "name": "articulated lorry", "alpha_code": ":articulated_lorry:", "aliases": "" }, "1f933-1f3fd": { "output": "1f933-1f3fd", "name": "selfie: medium skin tone", "alpha_code": ":selfie_tone3:", "aliases": "" }, "1f69c": { "output": "1f69c", "name": "tractor", "alpha_code": ":tractor:", "aliases": "" }, "1f69d": { "output": "1f69d", "name": "monorail", "alpha_code": ":monorail:", "aliases": "" }, "1f69e": { "output": "1f69e", "name": "mountain railway", "alpha_code": ":mountain_railway:", "aliases": "" }, "1f69f": { "output": "1f69f", "name": "suspension railway", "alpha_code": ":suspension_railway:", "aliases": "" }, "1f6a0": { "output": "1f6a0", "name": "mountain cableway", "alpha_code": ":mountain_cableway:", "aliases": "" }, "1f6a1": { "output": "1f6a1", "name": "aerial tramway", "alpha_code": ":aerial_tramway:", "aliases": "" }, "1f6a3": { "output": "1f6a3", "name": "person rowing boat", "alpha_code": ":person_rowing_boat:", "aliases": ":rowboat:" }, "1f6a6": { "output": "1f6a6", "name": "vertical traffic light", "alpha_code": ":vertical_traffic_light:", "aliases": "" }, "1f933-1f3fe": { "output": "1f933-1f3fe", "name": "selfie: medium-dark skin tone", "alpha_code": ":selfie_tone4:", "aliases": "" }, "1f6ae": { "output": "1f6ae", "name": "litter in bin sign", "alpha_code": ":put_litter_in_its_place:", "aliases": "" }, "1f6af": { "output": "1f6af", "name": "no littering", "alpha_code": ":do_not_litter:", "aliases": "" }, "1f933-1f3ff": { "output": "1f933-1f3ff", "name": "selfie: dark skin tone", "alpha_code": ":selfie_tone5:", "aliases": "" }, "1f6b0": { "output": "1f6b0", "name": "potable water", "alpha_code": ":potable_water:", "aliases": "" }, "1f6b1": { "output": "1f6b1", "name": "non-potable water", "alpha_code": ":non-potable_water:", "aliases": "" }, "1f6b3": { "output": "1f6b3", "name": "no bicycles", "alpha_code": ":no_bicycles:", "aliases": "" }, "1f91e-1f3fb": { "output": "1f91e-1f3fb", "name": "crossed fingers: light skin tone", "alpha_code": ":fingers_crossed_tone1:", "aliases": ":hand_with_index_and_middle_fingers_crossed_tone1:" }, "1f6b4": { "output": "1f6b4", "name": "person biking", "alpha_code": ":person_biking:", "aliases": ":bicyclist:" }, "1f6b5": { "output": "1f6b5", "name": "person mountain biking", "alpha_code": ":person_mountain_biking:", "aliases": ":mountain_bicyclist:" }, "1f6b7": { "output": "1f6b7", "name": "no pedestrians", "alpha_code": ":no_pedestrians:", "aliases": "" }, "1f6b8": { "output": "1f6b8", "name": "children crossing", "alpha_code": ":children_crossing:", "aliases": "" }, "1f6bf": { "output": "1f6bf", "name": "shower", "alpha_code": ":shower:", "aliases": "" }, "1f6c1": { "output": "1f6c1", "name": "bathtub", "alpha_code": ":bathtub:", "aliases": "" }, "1f6c2": { "output": "1f6c2", "name": "passport control", "alpha_code": ":passport_control:", "aliases": "" }, "1f91e-1f3fc": { "output": "1f91e-1f3fc", "name": "crossed fingers: medium-light skin tone", "alpha_code": ":fingers_crossed_tone2:", "aliases": ":hand_with_index_and_middle_fingers_crossed_tone2:" }, "1f6c3": { "output": "1f6c3", "name": "customs", "alpha_code": ":customs:", "aliases": "" }, "1f6c4": { "output": "1f6c4", "name": "baggage claim", "alpha_code": ":baggage_claim:", "aliases": "" }, "1f91e-1f3fd": { "output": "1f91e-1f3fd", "name": "crossed fingers: medium skin tone", "alpha_code": ":fingers_crossed_tone3:", "aliases": ":hand_with_index_and_middle_fingers_crossed_tone3:" }, "1f6c5": { "output": "1f6c5", "name": "left luggage", "alpha_code": ":left_luggage:", "aliases": "" }, "1f30d": { "output": "1f30d", "name": "globe showing Europe-Africa", "alpha_code": ":earth_africa:", "aliases": "" }, "1f30e": { "output": "1f30e", "name": "globe showing Americas", "alpha_code": ":earth_americas:", "aliases": "" }, "1f310": { "output": "1f310", "name": "globe with meridians", "alpha_code": ":globe_with_meridians:", "aliases": "" }, "1f312": { "output": "1f312", "name": "waxing crescent moon", "alpha_code": ":waxing_crescent_moon:", "aliases": "" }, "1f316": { "output": "1f316", "name": "waning gibbous moon", "alpha_code": ":waning_gibbous_moon:", "aliases": "" }, "1f317": { "output": "1f317", "name": "last quarter moon", "alpha_code": ":last_quarter_moon:", "aliases": "" }, "1f318": { "output": "1f318", "name": "waning crescent moon", "alpha_code": ":waning_crescent_moon:", "aliases": "" }, "1f31a": { "output": "1f31a", "name": "new moon face", "alpha_code": ":new_moon_with_face:", "aliases": "" }, "1f31c": { "output": "1f31c", "name": "last quarter moon face", "alpha_code": ":last_quarter_moon_with_face:", "aliases": "" }, "1f31d": { "output": "1f31d", "name": "full moon face", "alpha_code": ":full_moon_with_face:", "aliases": "" }, "1f31e": { "output": "1f31e", "name": "sun with face", "alpha_code": ":sun_with_face:", "aliases": "" }, "1f332": { "output": "1f332", "name": "evergreen tree", "alpha_code": ":evergreen_tree:", "aliases": "" }, "1f333": { "output": "1f333", "name": "deciduous tree", "alpha_code": ":deciduous_tree:", "aliases": "" }, "1f34b": { "output": "1f34b", "name": "lemon", "alpha_code": ":lemon:", "aliases": "" }, "1f91e-1f3fe": { "output": "1f91e-1f3fe", "name": "crossed fingers: medium-dark skin tone", "alpha_code": ":fingers_crossed_tone4:", "aliases": ":hand_with_index_and_middle_fingers_crossed_tone4:" }, "1f350": { "output": "1f350", "name": "pear", "alpha_code": ":pear:", "aliases": "" }, "1f37c": { "output": "1f37c", "name": "baby bottle", "alpha_code": ":baby_bottle:", "aliases": "" }, "1f3c7": { "output": "1f3c7", "name": "horse racing", "alpha_code": ":horse_racing:", "aliases": "" }, "1f3c9": { "output": "1f3c9", "name": "rugby football", "alpha_code": ":rugby_football:", "aliases": "" }, "1f3e4": { "output": "1f3e4", "name": "post office", "alpha_code": ":european_post_office:", "aliases": "" }, "1f400": { "output": "1f400", "name": "rat", "alpha_code": ":rat:", "aliases": "" }, "1f401": { "output": "1f401", "name": "mouse", "alpha_code": ":mouse2:", "aliases": "" }, "1f402": { "output": "1f402", "name": "ox", "alpha_code": ":ox:", "aliases": "" }, "1f403": { "output": "1f403", "name": "water buffalo", "alpha_code": ":water_buffalo:", "aliases": "" }, "1f404": { "output": "1f404", "name": "cow", "alpha_code": ":cow2:", "aliases": "" }, "1f405": { "output": "1f405", "name": "tiger", "alpha_code": ":tiger2:", "aliases": "" }, "1f406": { "output": "1f406", "name": "leopard", "alpha_code": ":leopard:", "aliases": "" }, "1f407": { "output": "1f407", "name": "rabbit", "alpha_code": ":rabbit2:", "aliases": "" }, "1f408": { "output": "1f408", "name": "cat", "alpha_code": ":cat2:", "aliases": "" }, "1f409": { "output": "1f409", "name": "dragon", "alpha_code": ":dragon:", "aliases": "" }, "1f40a": { "output": "1f40a", "name": "crocodile", "alpha_code": ":crocodile:", "aliases": "" }, "1f40b": { "output": "1f40b", "name": "whale", "alpha_code": ":whale2:", "aliases": "" }, "1f40f": { "output": "1f40f", "name": "ram", "alpha_code": ":ram:", "aliases": "" }, "1f410": { "output": "1f410", "name": "goat", "alpha_code": ":goat:", "aliases": "" }, "1f413": { "output": "1f413", "name": "rooster", "alpha_code": ":rooster:", "aliases": "" }, "1f415": { "output": "1f415", "name": "dog", "alpha_code": ":dog2:", "aliases": "" }, "1f416": { "output": "1f416", "name": "pig", "alpha_code": ":pig2:", "aliases": "" }, "1f91e-1f3ff": { "output": "1f91e-1f3ff", "name": "crossed fingers: dark skin tone", "alpha_code": ":fingers_crossed_tone5:", "aliases": ":hand_with_index_and_middle_fingers_crossed_tone5:" }, "1f42a": { "output": "1f42a", "name": "camel", "alpha_code": ":dromedary_camel:", "aliases": "" }, "1f465": { "output": "1f465", "name": "busts in silhouette", "alpha_code": ":busts_in_silhouette:", "aliases": "" }, "1f46c": { "output": "1f46c", "name": "men holding hands", "alpha_code": ":two_men_holding_hands:", "aliases": "" }, "1f46d": { "output": "1f46d", "name": "women holding hands", "alpha_code": ":two_women_holding_hands:", "aliases": "" }, "1f4ad": { "output": "1f4ad", "name": "thought balloon", "alpha_code": ":thought_balloon:", "aliases": "" }, "1f4b6": { "output": "1f4b6", "name": "euro banknote", "alpha_code": ":euro:", "aliases": "" }, "1f919-1f3fb": { "output": "1f919-1f3fb", "name": "call me hand: light skin tone", "alpha_code": ":call_me_tone1:", "aliases": ":call_me_hand_tone1:" }, "1f4b7": { "output": "1f4b7", "name": "pound banknote", "alpha_code": ":pound:", "aliases": "" }, "1f4ec": { "output": "1f4ec", "name": "open mailbox with raised flag", "alpha_code": ":mailbox_with_mail:", "aliases": "" }, "1f4ed": { "output": "1f4ed", "name": "open mailbox with lowered flag", "alpha_code": ":mailbox_with_no_mail:", "aliases": "" }, "1f919-1f3fc": { "output": "1f919-1f3fc", "name": "call me hand: medium-light skin tone", "alpha_code": ":call_me_tone2:", "aliases": ":call_me_hand_tone2:" }, "1f4ef": { "output": "1f4ef", "name": "postal horn", "alpha_code": ":postal_horn:", "aliases": "" }, "1f4f5": { "output": "1f4f5", "name": "no mobile phones", "alpha_code": ":no_mobile_phones:", "aliases": "" }, "1f500": { "output": "1f500", "name": "shuffle tracks button", "alpha_code": ":twisted_rightwards_arrows:", "aliases": "" }, "1f501": { "output": "1f501", "name": "repeat button", "alpha_code": ":repeat:", "aliases": "" }, "1f502": { "output": "1f502", "name": "repeat single button", "alpha_code": ":repeat_one:", "aliases": "" }, "1f504": { "output": "1f504", "name": "counterclockwise arrows button", "alpha_code": ":arrows_counterclockwise:", "aliases": "" }, "1f919-1f3fd": { "output": "1f919-1f3fd", "name": "call me hand: medium skin tone", "alpha_code": ":call_me_tone3:", "aliases": ":call_me_hand_tone3:" }, "1f505": { "output": "1f505", "name": "dim button", "alpha_code": ":low_brightness:", "aliases": "" }, "1f506": { "output": "1f506", "name": "bright button", "alpha_code": ":high_brightness:", "aliases": "" }, "1f507": { "output": "1f507", "name": "muted speaker", "alpha_code": ":mute:", "aliases": "" }, "1f509": { "output": "1f509", "name": "speaker medium volume", "alpha_code": ":sound:", "aliases": "" }, "1f515": { "output": "1f515", "name": "bell with slash", "alpha_code": ":no_bell:", "aliases": "" }, "1f52c": { "output": "1f52c", "name": "microscope", "alpha_code": ":microscope:", "aliases": "" }, "1f52d": { "output": "1f52d", "name": "telescope", "alpha_code": ":telescope:", "aliases": "" }, "1f55c": { "output": "1f55c", "name": "one-thirty", "alpha_code": ":clock130:", "aliases": "" }, "1f55d": { "output": "1f55d", "name": "two-thirty", "alpha_code": ":clock230:", "aliases": "" }, "1f55e": { "output": "1f55e", "name": "three-thirty", "alpha_code": ":clock330:", "aliases": "" }, "1f55f": { "output": "1f55f", "name": "four-thirty", "alpha_code": ":clock430:", "aliases": "" }, "1f560": { "output": "1f560", "name": "five-thirty", "alpha_code": ":clock530:", "aliases": "" }, "1f561": { "output": "1f561", "name": "six-thirty", "alpha_code": ":clock630:", "aliases": "" }, "1f562": { "output": "1f562", "name": "seven-thirty", "alpha_code": ":clock730:", "aliases": "" }, "1f563": { "output": "1f563", "name": "eight-thirty", "alpha_code": ":clock830:", "aliases": "" }, "1f564": { "output": "1f564", "name": "nine-thirty", "alpha_code": ":clock930:", "aliases": "" }, "1f565": { "output": "1f565", "name": "ten-thirty", "alpha_code": ":clock1030:", "aliases": "" }, "1f566": { "output": "1f566", "name": "eleven-thirty", "alpha_code": ":clock1130:", "aliases": "" }, "1f567": { "output": "1f567", "name": "twelve-thirty", "alpha_code": ":clock1230:", "aliases": "" }, "1f508": { "output": "1f508", "name": "speaker low volume", "alpha_code": ":speaker:", "aliases": "" }, "1f68b": { "output": "1f68b", "name": "tram car", "alpha_code": ":train:", "aliases": "" }, "27bf": { "output": "27bf", "name": "double curly loop", "alpha_code": ":loop:", "aliases": "" }, "1f1e6-1f1eb": { "output": "1f1e6-1f1eb", "name": "flag: Afghanistan", "alpha_code": ":flag_af:", "aliases": ":af:" }, "1f1e6-1f1f1": { "output": "1f1e6-1f1f1", "name": "flag: Albania", "alpha_code": ":flag_al:", "aliases": ":al:" }, "1f1e9-1f1ff": { "output": "1f1e9-1f1ff", "name": "flag: Algeria", "alpha_code": ":flag_dz:", "aliases": ":dz:" }, "1f1e6-1f1e9": { "output": "1f1e6-1f1e9", "name": "flag: Andorra", "alpha_code": ":flag_ad:", "aliases": ":ad:" }, "1f1e6-1f1f4": { "output": "1f1e6-1f1f4", "name": "flag: Angola", "alpha_code": ":flag_ao:", "aliases": ":ao:" }, "1f1e6-1f1ec": { "output": "1f1e6-1f1ec", "name": "flag: Antigua & Barbuda", "alpha_code": ":flag_ag:", "aliases": ":ag:" }, "1f1e6-1f1f7": { "output": "1f1e6-1f1f7", "name": "flag: Argentina", "alpha_code": ":flag_ar:", "aliases": ":ar:" }, "1f1e6-1f1f2": { "output": "1f1e6-1f1f2", "name": "flag: Armenia", "alpha_code": ":flag_am:", "aliases": ":am:" }, "1f1e6-1f1fa": { "output": "1f1e6-1f1fa", "name": "flag: Australia", "alpha_code": ":flag_au:", "aliases": ":au:" }, "1f1e6-1f1f9": { "output": "1f1e6-1f1f9", "name": "flag: Austria", "alpha_code": ":flag_at:", "aliases": ":at:" }, "1f1e6-1f1ff": { "output": "1f1e6-1f1ff", "name": "flag: Azerbaijan", "alpha_code": ":flag_az:", "aliases": ":az:" }, "1f1e7-1f1f8": { "output": "1f1e7-1f1f8", "name": "flag: Bahamas", "alpha_code": ":flag_bs:", "aliases": ":bs:" }, "1f1e7-1f1ed": { "output": "1f1e7-1f1ed", "name": "flag: Bahrain", "alpha_code": ":flag_bh:", "aliases": ":bh:" }, "1f1e7-1f1e9": { "output": "1f1e7-1f1e9", "name": "flag: Bangladesh", "alpha_code": ":flag_bd:", "aliases": ":bd:" }, "1f1e7-1f1e7": { "output": "1f1e7-1f1e7", "name": "flag: Barbados", "alpha_code": ":flag_bb:", "aliases": ":bb:" }, "1f1e7-1f1fe": { "output": "1f1e7-1f1fe", "name": "flag: Belarus", "alpha_code": ":flag_by:", "aliases": ":by:" }, "1f1e7-1f1ea": { "output": "1f1e7-1f1ea", "name": "flag: Belgium", "alpha_code": ":flag_be:", "aliases": ":be:" }, "1f1e7-1f1ff": { "output": "1f1e7-1f1ff", "name": "flag: Belize", "alpha_code": ":flag_bz:", "aliases": ":bz:" }, "1f1e7-1f1ef": { "output": "1f1e7-1f1ef", "name": "flag: Benin", "alpha_code": ":flag_bj:", "aliases": ":bj:" }, "1f1e7-1f1f9": { "output": "1f1e7-1f1f9", "name": "flag: Bhutan", "alpha_code": ":flag_bt:", "aliases": ":bt:" }, "1f1e7-1f1f4": { "output": "1f1e7-1f1f4", "name": "flag: Bolivia", "alpha_code": ":flag_bo:", "aliases": ":bo:" }, "1f1e7-1f1e6": { "output": "1f1e7-1f1e6", "name": "flag: Bosnia & Herzegovina", "alpha_code": ":flag_ba:", "aliases": ":ba:" }, "1f1e7-1f1fc": { "output": "1f1e7-1f1fc", "name": "flag: Botswana", "alpha_code": ":flag_bw:", "aliases": ":bw:" }, "1f1e7-1f1f7": { "output": "1f1e7-1f1f7", "name": "flag: Brazil", "alpha_code": ":flag_br:", "aliases": ":br:" }, "1f1e7-1f1f3": { "output": "1f1e7-1f1f3", "name": "flag: Brunei", "alpha_code": ":flag_bn:", "aliases": ":bn:" }, "1f1e7-1f1ec": { "output": "1f1e7-1f1ec", "name": "flag: Bulgaria", "alpha_code": ":flag_bg:", "aliases": ":bg:" }, "1f1e7-1f1eb": { "output": "1f1e7-1f1eb", "name": "flag: Burkina Faso", "alpha_code": ":flag_bf:", "aliases": ":bf:" }, "1f1e7-1f1ee": { "output": "1f1e7-1f1ee", "name": "flag: Burundi", "alpha_code": ":flag_bi:", "aliases": ":bi:" }, "1f1f0-1f1ed": { "output": "1f1f0-1f1ed", "name": "flag: Cambodia", "alpha_code": ":flag_kh:", "aliases": ":kh:" }, "1f1e8-1f1f2": { "output": "1f1e8-1f1f2", "name": "flag: Cameroon", "alpha_code": ":flag_cm:", "aliases": ":cm:" }, "1f1e8-1f1e6": { "output": "1f1e8-1f1e6", "name": "flag: Canada", "alpha_code": ":flag_ca:", "aliases": ":ca:" }, "1f1e8-1f1fb": { "output": "1f1e8-1f1fb", "name": "flag: Cape Verde", "alpha_code": ":flag_cv:", "aliases": ":cv:" }, "1f919-1f3fe": { "output": "1f919-1f3fe", "name": "call me hand: medium-dark skin tone", "alpha_code": ":call_me_tone4:", "aliases": ":call_me_hand_tone4:" }, "1f1e8-1f1eb": { "output": "1f1e8-1f1eb", "name": "flag: Central African Republic", "alpha_code": ":flag_cf:", "aliases": ":cf:" }, "1f1f9-1f1e9": { "output": "1f1f9-1f1e9", "name": "flag: Chad", "alpha_code": ":flag_td:", "aliases": ":td:" }, "1f1e8-1f1f1": { "output": "1f1e8-1f1f1", "name": "flag: Chile", "alpha_code": ":flag_cl:", "aliases": ":chile:" }, "1f1e8-1f1f4": { "output": "1f1e8-1f1f4", "name": "flag: Colombia", "alpha_code": ":flag_co:", "aliases": ":co:" }, "1f1f0-1f1f2": { "output": "1f1f0-1f1f2", "name": "flag: Comoros", "alpha_code": ":flag_km:", "aliases": ":km:" }, "1f1e8-1f1f7": { "output": "1f1e8-1f1f7", "name": "flag: Costa Rica", "alpha_code": ":flag_cr:", "aliases": ":cr:" }, "1f1e8-1f1ee": { "output": "1f1e8-1f1ee", "name": "flag: C\u00f4te d\u2019Ivoire", "alpha_code": ":flag_ci:", "aliases": ":ci:" }, "1f1ed-1f1f7": { "output": "1f1ed-1f1f7", "name": "flag: Croatia", "alpha_code": ":flag_hr:", "aliases": ":hr:" }, "1f1e8-1f1fa": { "output": "1f1e8-1f1fa", "name": "flag: Cuba", "alpha_code": ":flag_cu:", "aliases": ":cu:" }, "1f1e8-1f1fe": { "output": "1f1e8-1f1fe", "name": "flag: Cyprus", "alpha_code": ":flag_cy:", "aliases": ":cy:" }, "1f1e8-1f1ff": { "output": "1f1e8-1f1ff", "name": "flag: Czechia", "alpha_code": ":flag_cz:", "aliases": ":cz:" }, "1f919-1f3ff": { "output": "1f919-1f3ff", "name": "call me hand: dark skin tone", "alpha_code": ":call_me_tone5:", "aliases": ":call_me_hand_tone5:" }, "1f1e8-1f1e9": { "output": "1f1e8-1f1e9", "name": "flag: Congo - Kinshasa", "alpha_code": ":flag_cd:", "aliases": ":congo:" }, "1f91b-1f3fb": { "output": "1f91b-1f3fb", "name": "left-facing fist: light skin tone", "alpha_code": ":left_facing_fist_tone1:", "aliases": ":left_fist_tone1:" }, "1f1e9-1f1f0": { "output": "1f1e9-1f1f0", "name": "flag: Denmark", "alpha_code": ":flag_dk:", "aliases": ":dk:" }, "1f1e9-1f1ef": { "output": "1f1e9-1f1ef", "name": "flag: Djibouti", "alpha_code": ":flag_dj:", "aliases": ":dj:" }, "1f1e9-1f1f2": { "output": "1f1e9-1f1f2", "name": "flag: Dominica", "alpha_code": ":flag_dm:", "aliases": ":dm:" }, "1f1e9-1f1f4": { "output": "1f1e9-1f1f4", "name": "flag: Dominican Republic", "alpha_code": ":flag_do:", "aliases": ":do:" }, "1f1f9-1f1f1": { "output": "1f1f9-1f1f1", "name": "flag: Timor-Leste", "alpha_code": ":flag_tl:", "aliases": ":tl:" }, "1f1ea-1f1e8": { "output": "1f1ea-1f1e8", "name": "flag: Ecuador", "alpha_code": ":flag_ec:", "aliases": ":ec:" }, "1f1ea-1f1ec": { "output": "1f1ea-1f1ec", "name": "flag: Egypt", "alpha_code": ":flag_eg:", "aliases": ":eg:" }, "1f1f8-1f1fb": { "output": "1f1f8-1f1fb", "name": "flag: El Salvador", "alpha_code": ":flag_sv:", "aliases": ":sv:" }, "1f1ec-1f1f6": { "output": "1f1ec-1f1f6", "name": "flag: Equatorial Guinea", "alpha_code": ":flag_gq:", "aliases": ":gq:" }, "1f1ea-1f1f7": { "output": "1f1ea-1f1f7", "name": "flag: Eritrea", "alpha_code": ":flag_er:", "aliases": ":er:" }, "1f1ea-1f1ea": { "output": "1f1ea-1f1ea", "name": "flag: Estonia", "alpha_code": ":flag_ee:", "aliases": ":ee:" }, "1f1ea-1f1f9": { "output": "1f1ea-1f1f9", "name": "flag: Ethiopia", "alpha_code": ":flag_et:", "aliases": ":et:" }, "1f91b-1f3fc": { "output": "1f91b-1f3fc", "name": "left-facing fist: medium-light skin tone", "alpha_code": ":left_facing_fist_tone2:", "aliases": ":left_fist_tone2:" }, "1f1eb-1f1ef": { "output": "1f1eb-1f1ef", "name": "flag: Fiji", "alpha_code": ":flag_fj:", "aliases": ":fj:" }, "1f1eb-1f1ee": { "output": "1f1eb-1f1ee", "name": "flag: Finland", "alpha_code": ":flag_fi:", "aliases": ":fi:" }, "1f1ec-1f1e6": { "output": "1f1ec-1f1e6", "name": "flag: Gabon", "alpha_code": ":flag_ga:", "aliases": ":ga:" }, "1f1ec-1f1f2": { "output": "1f1ec-1f1f2", "name": "flag: Gambia", "alpha_code": ":flag_gm:", "aliases": ":gm:" }, "1f1ec-1f1ea": { "output": "1f1ec-1f1ea", "name": "flag: Georgia", "alpha_code": ":flag_ge:", "aliases": ":ge:" }, "1f1ec-1f1ed": { "output": "1f1ec-1f1ed", "name": "flag: Ghana", "alpha_code": ":flag_gh:", "aliases": ":gh:" }, "1f1ec-1f1f7": { "output": "1f1ec-1f1f7", "name": "flag: Greece", "alpha_code": ":flag_gr:", "aliases": ":gr:" }, "1f1ec-1f1e9": { "output": "1f1ec-1f1e9", "name": "flag: Grenada", "alpha_code": ":flag_gd:", "aliases": ":gd:" }, "1f1ec-1f1f9": { "output": "1f1ec-1f1f9", "name": "flag: Guatemala", "alpha_code": ":flag_gt:", "aliases": ":gt:" }, "1f1ec-1f1f3": { "output": "1f1ec-1f1f3", "name": "flag: Guinea", "alpha_code": ":flag_gn:", "aliases": ":gn:" }, "1f1ec-1f1fc": { "output": "1f1ec-1f1fc", "name": "flag: Guinea-Bissau", "alpha_code": ":flag_gw:", "aliases": ":gw:" }, "1f1ec-1f1fe": { "output": "1f1ec-1f1fe", "name": "flag: Guyana", "alpha_code": ":flag_gy:", "aliases": ":gy:" }, "1f1ed-1f1f9": { "output": "1f1ed-1f1f9", "name": "flag: Haiti", "alpha_code": ":flag_ht:", "aliases": ":ht:" }, "1f1ed-1f1f3": { "output": "1f1ed-1f1f3", "name": "flag: Honduras", "alpha_code": ":flag_hn:", "aliases": ":hn:" }, "1f1ed-1f1fa": { "output": "1f1ed-1f1fa", "name": "flag: Hungary", "alpha_code": ":flag_hu:", "aliases": ":hu:" }, "1f1ee-1f1f8": { "output": "1f1ee-1f1f8", "name": "flag: Iceland", "alpha_code": ":flag_is:", "aliases": ":is:" }, "1f1ee-1f1f3": { "output": "1f1ee-1f1f3", "name": "flag: India", "alpha_code": ":flag_in:", "aliases": ":in:" }, "1f1ee-1f1e9": { "output": "1f1ee-1f1e9", "name": "flag: Indonesia", "alpha_code": ":flag_id:", "aliases": ":indonesia:" }, "1f1ee-1f1f7": { "output": "1f1ee-1f1f7", "name": "flag: Iran", "alpha_code": ":flag_ir:", "aliases": ":ir:" }, "1f1ee-1f1f6": { "output": "1f1ee-1f1f6", "name": "flag: Iraq", "alpha_code": ":flag_iq:", "aliases": ":iq:" }, "1f1ee-1f1ea": { "output": "1f1ee-1f1ea", "name": "flag: Ireland", "alpha_code": ":flag_ie:", "aliases": ":ie:" }, "1f1ee-1f1f1": { "output": "1f1ee-1f1f1", "name": "flag: Israel", "alpha_code": ":flag_il:", "aliases": ":il:" }, "1f1ef-1f1f2": { "output": "1f1ef-1f1f2", "name": "flag: Jamaica", "alpha_code": ":flag_jm:", "aliases": ":jm:" }, "1f1ef-1f1f4": { "output": "1f1ef-1f1f4", "name": "flag: Jordan", "alpha_code": ":flag_jo:", "aliases": ":jo:" }, "1f1f0-1f1ff": { "output": "1f1f0-1f1ff", "name": "flag: Kazakhstan", "alpha_code": ":flag_kz:", "aliases": ":kz:" }, "1f1f0-1f1ea": { "output": "1f1f0-1f1ea", "name": "flag: Kenya", "alpha_code": ":flag_ke:", "aliases": ":ke:" }, "1f1f0-1f1ee": { "output": "1f1f0-1f1ee", "name": "flag: Kiribati", "alpha_code": ":flag_ki:", "aliases": ":ki:" }, "1f1fd-1f1f0": { "output": "1f1fd-1f1f0", "name": "flag: Kosovo", "alpha_code": ":flag_xk:", "aliases": ":xk:" }, "1f1f0-1f1fc": { "output": "1f1f0-1f1fc", "name": "flag: Kuwait", "alpha_code": ":flag_kw:", "aliases": ":kw:" }, "1f1f0-1f1ec": { "output": "1f1f0-1f1ec", "name": "flag: Kyrgyzstan", "alpha_code": ":flag_kg:", "aliases": ":kg:" }, "1f91b-1f3fd": { "output": "1f91b-1f3fd", "name": "left-facing fist: medium skin tone", "alpha_code": ":left_facing_fist_tone3:", "aliases": ":left_fist_tone3:" }, "1f1f1-1f1e6": { "output": "1f1f1-1f1e6", "name": "flag: Laos", "alpha_code": ":flag_la:", "aliases": ":la:" }, "1f1f1-1f1fb": { "output": "1f1f1-1f1fb", "name": "flag: Latvia", "alpha_code": ":flag_lv:", "aliases": ":lv:" }, "1f1f1-1f1e7": { "output": "1f1f1-1f1e7", "name": "flag: Lebanon", "alpha_code": ":flag_lb:", "aliases": ":lb:" }, "1f1f1-1f1f8": { "output": "1f1f1-1f1f8", "name": "flag: Lesotho", "alpha_code": ":flag_ls:", "aliases": ":ls:" }, "1f1f1-1f1f7": { "output": "1f1f1-1f1f7", "name": "flag: Liberia", "alpha_code": ":flag_lr:", "aliases": ":lr:" }, "1f1f1-1f1fe": { "output": "1f1f1-1f1fe", "name": "flag: Libya", "alpha_code": ":flag_ly:", "aliases": ":ly:" }, "1f1f1-1f1ee": { "output": "1f1f1-1f1ee", "name": "flag: Liechtenstein", "alpha_code": ":flag_li:", "aliases": ":li:" }, "1f1f1-1f1f9": { "output": "1f1f1-1f1f9", "name": "flag: Lithuania", "alpha_code": ":flag_lt:", "aliases": ":lt:" }, "1f1f1-1f1fa": { "output": "1f1f1-1f1fa", "name": "flag: Luxembourg", "alpha_code": ":flag_lu:", "aliases": ":lu:" }, "1f1f2-1f1f0": { "output": "1f1f2-1f1f0", "name": "flag: Macedonia", "alpha_code": ":flag_mk:", "aliases": ":mk:" }, "1f1f2-1f1ec": { "output": "1f1f2-1f1ec", "name": "flag: Madagascar", "alpha_code": ":flag_mg:", "aliases": ":mg:" }, "1f1f2-1f1fc": { "output": "1f1f2-1f1fc", "name": "flag: Malawi", "alpha_code": ":flag_mw:", "aliases": ":mw:" }, "1f1f2-1f1fe": { "output": "1f1f2-1f1fe", "name": "flag: Malaysia", "alpha_code": ":flag_my:", "aliases": ":my:" }, "1f1f2-1f1fb": { "output": "1f1f2-1f1fb", "name": "flag: Maldives", "alpha_code": ":flag_mv:", "aliases": ":mv:" }, "1f1f2-1f1f1": { "output": "1f1f2-1f1f1", "name": "flag: Mali", "alpha_code": ":flag_ml:", "aliases": ":ml:" }, "1f1f2-1f1f9": { "output": "1f1f2-1f1f9", "name": "flag: Malta", "alpha_code": ":flag_mt:", "aliases": ":mt:" }, "1f1f2-1f1ed": { "output": "1f1f2-1f1ed", "name": "flag: Marshall Islands", "alpha_code": ":flag_mh:", "aliases": ":mh:" }, "1f1f2-1f1f7": { "output": "1f1f2-1f1f7", "name": "flag: Mauritania", "alpha_code": ":flag_mr:", "aliases": ":mr:" }, "1f1f2-1f1fa": { "output": "1f1f2-1f1fa", "name": "flag: Mauritius", "alpha_code": ":flag_mu:", "aliases": ":mu:" }, "1f1f2-1f1fd": { "output": "1f1f2-1f1fd", "name": "flag: Mexico", "alpha_code": ":flag_mx:", "aliases": ":mx:" }, "1f1eb-1f1f2": { "output": "1f1eb-1f1f2", "name": "flag: Micronesia", "alpha_code": ":flag_fm:", "aliases": ":fm:" }, "1f1f2-1f1e9": { "output": "1f1f2-1f1e9", "name": "flag: Moldova", "alpha_code": ":flag_md:", "aliases": ":md:" }, "1f1f2-1f1e8": { "output": "1f1f2-1f1e8", "name": "flag: Monaco", "alpha_code": ":flag_mc:", "aliases": ":mc:" }, "1f1f2-1f1f3": { "output": "1f1f2-1f1f3", "name": "flag: Mongolia", "alpha_code": ":flag_mn:", "aliases": ":mn:" }, "1f1f2-1f1ea": { "output": "1f1f2-1f1ea", "name": "flag: Montenegro", "alpha_code": ":flag_me:", "aliases": ":me:" }, "1f1f2-1f1e6": { "output": "1f1f2-1f1e6", "name": "flag: Morocco", "alpha_code": ":flag_ma:", "aliases": ":ma:" }, "1f1f2-1f1ff": { "output": "1f1f2-1f1ff", "name": "flag: Mozambique", "alpha_code": ":flag_mz:", "aliases": ":mz:" }, "1f1f2-1f1f2": { "output": "1f1f2-1f1f2", "name": "flag: Myanmar (Burma)", "alpha_code": ":flag_mm:", "aliases": ":mm:" }, "1f1f3-1f1e6": { "output": "1f1f3-1f1e6", "name": "flag: Namibia", "alpha_code": ":flag_na:", "aliases": ":na:" }, "1f1f3-1f1f7": { "output": "1f1f3-1f1f7", "name": "flag: Nauru", "alpha_code": ":flag_nr:", "aliases": ":nr:" }, "1f1f3-1f1f5": { "output": "1f1f3-1f1f5", "name": "flag: Nepal", "alpha_code": ":flag_np:", "aliases": ":np:" }, "1f1f3-1f1f1": { "output": "1f1f3-1f1f1", "name": "flag: Netherlands", "alpha_code": ":flag_nl:", "aliases": ":nl:" }, "1f1f3-1f1ff": { "output": "1f1f3-1f1ff", "name": "flag: New Zealand", "alpha_code": ":flag_nz:", "aliases": ":nz:" }, "1f1f3-1f1ee": { "output": "1f1f3-1f1ee", "name": "flag: Nicaragua", "alpha_code": ":flag_ni:", "aliases": ":ni:" }, "1f1f3-1f1ea": { "output": "1f1f3-1f1ea", "name": "flag: Niger", "alpha_code": ":flag_ne:", "aliases": ":ne:" }, "1f1f3-1f1ec": { "output": "1f1f3-1f1ec", "name": "flag: Nigeria", "alpha_code": ":flag_ng:", "aliases": ":nigeria:" }, "1f1f0-1f1f5": { "output": "1f1f0-1f1f5", "name": "flag: North Korea", "alpha_code": ":flag_kp:", "aliases": ":kp:" }, "1f1f3-1f1f4": { "output": "1f1f3-1f1f4", "name": "flag: Norway", "alpha_code": ":flag_no:", "aliases": ":no:" }, "1f1f4-1f1f2": { "output": "1f1f4-1f1f2", "name": "flag: Oman", "alpha_code": ":flag_om:", "aliases": ":om:" }, "1f1f5-1f1f0": { "output": "1f1f5-1f1f0", "name": "flag: Pakistan", "alpha_code": ":flag_pk:", "aliases": ":pk:" }, "1f1f5-1f1fc": { "output": "1f1f5-1f1fc", "name": "flag: Palau", "alpha_code": ":flag_pw:", "aliases": ":pw:" }, "1f1f5-1f1e6": { "output": "1f1f5-1f1e6", "name": "flag: Panama", "alpha_code": ":flag_pa:", "aliases": ":pa:" }, "1f1f5-1f1ec": { "output": "1f1f5-1f1ec", "name": "flag: Papua New Guinea", "alpha_code": ":flag_pg:", "aliases": ":pg:" }, "1f91b-1f3fe": { "output": "1f91b-1f3fe", "name": "left-facing fist: medium-dark skin tone", "alpha_code": ":left_facing_fist_tone4:", "aliases": ":left_fist_tone4:" }, "1f1f5-1f1fe": { "output": "1f1f5-1f1fe", "name": "flag: Paraguay", "alpha_code": ":flag_py:", "aliases": ":py:" }, "1f1f5-1f1ea": { "output": "1f1f5-1f1ea", "name": "flag: Peru", "alpha_code": ":flag_pe:", "aliases": ":pe:" }, "1f1f5-1f1ed": { "output": "1f1f5-1f1ed", "name": "flag: Philippines", "alpha_code": ":flag_ph:", "aliases": ":ph:" }, "1f1f5-1f1f1": { "output": "1f1f5-1f1f1", "name": "flag: Poland", "alpha_code": ":flag_pl:", "aliases": ":pl:" }, "1f1f5-1f1f9": { "output": "1f1f5-1f1f9", "name": "flag: Portugal", "alpha_code": ":flag_pt:", "aliases": ":pt:" }, "1f1f6-1f1e6": { "output": "1f1f6-1f1e6", "name": "flag: Qatar", "alpha_code": ":flag_qa:", "aliases": ":qa:" }, "1f1f9-1f1fc": { "output": "1f1f9-1f1fc", "name": "flag: Taiwan", "alpha_code": ":flag_tw:", "aliases": ":tw:" }, "1f1e8-1f1ec": { "output": "1f1e8-1f1ec", "name": "flag: Congo - Brazzaville", "alpha_code": ":flag_cg:", "aliases": ":cg:" }, "1f1f7-1f1f4": { "output": "1f1f7-1f1f4", "name": "flag: Romania", "alpha_code": ":flag_ro:", "aliases": ":ro:" }, "1f1f7-1f1fc": { "output": "1f1f7-1f1fc", "name": "flag: Rwanda", "alpha_code": ":flag_rw:", "aliases": ":rw:" }, "1f1f0-1f1f3": { "output": "1f1f0-1f1f3", "name": "flag: St. Kitts & Nevis", "alpha_code": ":flag_kn:", "aliases": ":kn:" }, "1f1f1-1f1e8": { "output": "1f1f1-1f1e8", "name": "flag: St. Lucia", "alpha_code": ":flag_lc:", "aliases": ":lc:" }, "1f1fb-1f1e8": { "output": "1f1fb-1f1e8", "name": "flag: St. Vincent & Grenadines", "alpha_code": ":flag_vc:", "aliases": ":vc:" }, "1f1fc-1f1f8": { "output": "1f1fc-1f1f8", "name": "flag: Samoa", "alpha_code": ":flag_ws:", "aliases": ":ws:" }, "1f1f8-1f1f2": { "output": "1f1f8-1f1f2", "name": "flag: San Marino", "alpha_code": ":flag_sm:", "aliases": ":sm:" }, "1f1f8-1f1f9": { "output": "1f1f8-1f1f9", "name": "flag: S\u00e3o Tom\u00e9 & Pr\u00edncipe", "alpha_code": ":flag_st:", "aliases": ":st:" }, "1f1f8-1f1e6": { "output": "1f1f8-1f1e6", "name": "flag: Saudi Arabia", "alpha_code": ":flag_sa:", "aliases": ":saudiarabia:|:saudi:" }, "1f91b-1f3ff": { "output": "1f91b-1f3ff", "name": "left-facing fist: dark skin tone", "alpha_code": ":left_facing_fist_tone5:", "aliases": ":left_fist_tone5:" }, "1f1f8-1f1f3": { "output": "1f1f8-1f1f3", "name": "flag: Senegal", "alpha_code": ":flag_sn:", "aliases": ":sn:" }, "1f1f7-1f1f8": { "output": "1f1f7-1f1f8", "name": "flag: Serbia", "alpha_code": ":flag_rs:", "aliases": ":rs:" }, "1f1f8-1f1e8": { "output": "1f1f8-1f1e8", "name": "flag: Seychelles", "alpha_code": ":flag_sc:", "aliases": ":sc:" }, "1f1f8-1f1f1": { "output": "1f1f8-1f1f1", "name": "flag: Sierra Leone", "alpha_code": ":flag_sl:", "aliases": ":sl:" }, "1f1f8-1f1ec": { "output": "1f1f8-1f1ec", "name": "flag: Singapore", "alpha_code": ":flag_sg:", "aliases": ":sg:" }, "1f1f8-1f1f0": { "output": "1f1f8-1f1f0", "name": "flag: Slovakia", "alpha_code": ":flag_sk:", "aliases": ":sk:" }, "1f1f8-1f1ee": { "output": "1f1f8-1f1ee", "name": "flag: Slovenia", "alpha_code": ":flag_si:", "aliases": ":si:" }, "1f1f8-1f1e7": { "output": "1f1f8-1f1e7", "name": "flag: Solomon Islands", "alpha_code": ":flag_sb:", "aliases": ":sb:" }, "1f1f8-1f1f4": { "output": "1f1f8-1f1f4", "name": "flag: Somalia", "alpha_code": ":flag_so:", "aliases": ":so:" }, "1f1ff-1f1e6": { "output": "1f1ff-1f1e6", "name": "flag: South Africa", "alpha_code": ":flag_za:", "aliases": ":za:" }, "1f1f1-1f1f0": { "output": "1f1f1-1f1f0", "name": "flag: Sri Lanka", "alpha_code": ":flag_lk:", "aliases": ":lk:" }, "1f1f8-1f1e9": { "output": "1f1f8-1f1e9", "name": "flag: Sudan", "alpha_code": ":flag_sd:", "aliases": ":sd:" }, "1f1f8-1f1f7": { "output": "1f1f8-1f1f7", "name": "flag: Suriname", "alpha_code": ":flag_sr:", "aliases": ":sr:" }, "1f1f8-1f1ff": { "output": "1f1f8-1f1ff", "name": "flag: Eswatini", "alpha_code": ":flag_sz:", "aliases": ":sz:" }, "1f1f8-1f1ea": { "output": "1f1f8-1f1ea", "name": "flag: Sweden", "alpha_code": ":flag_se:", "aliases": ":se:" }, "1f1e8-1f1ed": { "output": "1f1e8-1f1ed", "name": "flag: Switzerland", "alpha_code": ":flag_ch:", "aliases": ":ch:" }, "1f1f8-1f1fe": { "output": "1f1f8-1f1fe", "name": "flag: Syria", "alpha_code": ":flag_sy:", "aliases": ":sy:" }, "1f1f9-1f1ef": { "output": "1f1f9-1f1ef", "name": "flag: Tajikistan", "alpha_code": ":flag_tj:", "aliases": ":tj:" }, "1f1f9-1f1ff": { "output": "1f1f9-1f1ff", "name": "flag: Tanzania", "alpha_code": ":flag_tz:", "aliases": ":tz:" }, "1f1f9-1f1ed": { "output": "1f1f9-1f1ed", "name": "flag: Thailand", "alpha_code": ":flag_th:", "aliases": ":th:" }, "1f1f9-1f1ec": { "output": "1f1f9-1f1ec", "name": "flag: Togo", "alpha_code": ":flag_tg:", "aliases": ":tg:" }, "1f1f9-1f1f4": { "output": "1f1f9-1f1f4", "name": "flag: Tonga", "alpha_code": ":flag_to:", "aliases": ":to:" }, "1f1f9-1f1f9": { "output": "1f1f9-1f1f9", "name": "flag: Trinidad & Tobago", "alpha_code": ":flag_tt:", "aliases": ":tt:" }, "1f1f9-1f1f3": { "output": "1f1f9-1f1f3", "name": "flag: Tunisia", "alpha_code": ":flag_tn:", "aliases": ":tn:" }, "1f1f9-1f1f7": { "output": "1f1f9-1f1f7", "name": "flag: Turkey", "alpha_code": ":flag_tr:", "aliases": ":tr:" }, "1f1f9-1f1f2": { "output": "1f1f9-1f1f2", "name": "flag: Turkmenistan", "alpha_code": ":flag_tm:", "aliases": ":turkmenistan:" }, "1f1f9-1f1fb": { "output": "1f1f9-1f1fb", "name": "flag: Tuvalu", "alpha_code": ":flag_tv:", "aliases": ":tuvalu:" }, "1f1fa-1f1ec": { "output": "1f1fa-1f1ec", "name": "flag: Uganda", "alpha_code": ":flag_ug:", "aliases": ":ug:" }, "1f1fa-1f1e6": { "output": "1f1fa-1f1e6", "name": "flag: Ukraine", "alpha_code": ":flag_ua:", "aliases": ":ua:" }, "1f1e6-1f1ea": { "output": "1f1e6-1f1ea", "name": "flag: United Arab Emirates", "alpha_code": ":flag_ae:", "aliases": ":ae:" }, "1f1fa-1f1fe": { "output": "1f1fa-1f1fe", "name": "flag: Uruguay", "alpha_code": ":flag_uy:", "aliases": ":uy:" }, "1f1fa-1f1ff": { "output": "1f1fa-1f1ff", "name": "flag: Uzbekistan", "alpha_code": ":flag_uz:", "aliases": ":uz:" }, "1f1fb-1f1fa": { "output": "1f1fb-1f1fa", "name": "flag: Vanuatu", "alpha_code": ":flag_vu:", "aliases": ":vu:" }, "1f1fb-1f1e6": { "output": "1f1fb-1f1e6", "name": "flag: Vatican City", "alpha_code": ":flag_va:", "aliases": ":va:" }, "1f1fb-1f1ea": { "output": "1f1fb-1f1ea", "name": "flag: Venezuela", "alpha_code": ":flag_ve:", "aliases": ":ve:" }, "1f1fb-1f1f3": { "output": "1f1fb-1f1f3", "name": "flag: Vietnam", "alpha_code": ":flag_vn:", "aliases": ":vn:" }, "1f1ea-1f1ed": { "output": "1f1ea-1f1ed", "name": "flag: Western Sahara", "alpha_code": ":flag_eh:", "aliases": ":eh:" }, "1f91c-1f3fb": { "output": "1f91c-1f3fb", "name": "right-facing fist: light skin tone", "alpha_code": ":right_facing_fist_tone1:", "aliases": ":right_fist_tone1:" }, "1f1fe-1f1ea": { "output": "1f1fe-1f1ea", "name": "flag: Yemen", "alpha_code": ":flag_ye:", "aliases": ":ye:" }, "1f1ff-1f1f2": { "output": "1f1ff-1f1f2", "name": "flag: Zambia", "alpha_code": ":flag_zm:", "aliases": ":zm:" }, "1f1ff-1f1fc": { "output": "1f1ff-1f1fc", "name": "flag: Zimbabwe", "alpha_code": ":flag_zw:", "aliases": ":zw:" }, "1f1f5-1f1f7": { "output": "1f1f5-1f1f7", "name": "flag: Puerto Rico", "alpha_code": ":flag_pr:", "aliases": ":pr:" }, "1f1f0-1f1fe": { "output": "1f1f0-1f1fe", "name": "flag: Cayman Islands", "alpha_code": ":flag_ky:", "aliases": ":ky:" }, "1f1e7-1f1f2": { "output": "1f1e7-1f1f2", "name": "flag: Bermuda", "alpha_code": ":flag_bm:", "aliases": ":bm:" }, "1f1f5-1f1eb": { "output": "1f1f5-1f1eb", "name": "flag: French Polynesia", "alpha_code": ":flag_pf:", "aliases": ":pf:" }, "1f1f5-1f1f8": { "output": "1f1f5-1f1f8", "name": "flag: Palestinian Territories", "alpha_code": ":flag_ps:", "aliases": ":ps:" }, "1f1f3-1f1e8": { "output": "1f1f3-1f1e8", "name": "flag: New Caledonia", "alpha_code": ":flag_nc:", "aliases": ":nc:" }, "1f91c-1f3fc": { "output": "1f91c-1f3fc", "name": "right-facing fist: medium-light skin tone", "alpha_code": ":right_facing_fist_tone2:", "aliases": ":right_fist_tone2:" }, "1f1f8-1f1ed": { "output": "1f1f8-1f1ed", "name": "flag: St. Helena", "alpha_code": ":flag_sh:", "aliases": ":sh:" }, "1f1e6-1f1fc": { "output": "1f1e6-1f1fc", "name": "flag: Aruba", "alpha_code": ":flag_aw:", "aliases": ":aw:" }, "1f1fb-1f1ee": { "output": "1f1fb-1f1ee", "name": "flag: U.S. Virgin Islands", "alpha_code": ":flag_vi:", "aliases": ":vi:" }, "1f1ed-1f1f0": { "output": "1f1ed-1f1f0", "name": "flag: Hong Kong SAR China", "alpha_code": ":flag_hk:", "aliases": ":hk:" }, "1f1e6-1f1e8": { "output": "1f1e6-1f1e8", "name": "flag: Ascension Island", "alpha_code": ":flag_ac:", "aliases": ":ac:" }, "1f1f2-1f1f8": { "output": "1f1f2-1f1f8", "name": "flag: Montserrat", "alpha_code": ":flag_ms:", "aliases": ":ms:" }, "1f1ec-1f1fa": { "output": "1f1ec-1f1fa", "name": "flag: Guam", "alpha_code": ":flag_gu:", "aliases": ":gu:" }, "1f1ec-1f1f1": { "output": "1f1ec-1f1f1", "name": "flag: Greenland", "alpha_code": ":flag_gl:", "aliases": ":gl:" }, "1f1f3-1f1fa": { "output": "1f1f3-1f1fa", "name": "flag: Niue", "alpha_code": ":flag_nu:", "aliases": ":nu:" }, "1f1fc-1f1eb": { "output": "1f1fc-1f1eb", "name": "flag: Wallis & Futuna", "alpha_code": ":flag_wf:", "aliases": ":wf:" }, "1f1f2-1f1f4": { "output": "1f1f2-1f1f4", "name": "flag: Macao SAR China", "alpha_code": ":flag_mo:", "aliases": ":mo:" }, "1f91c-1f3fd": { "output": "1f91c-1f3fd", "name": "right-facing fist: medium skin tone", "alpha_code": ":right_facing_fist_tone3:", "aliases": ":right_fist_tone3:" }, "1f1eb-1f1f4": { "output": "1f1eb-1f1f4", "name": "flag: Faroe Islands", "alpha_code": ":flag_fo:", "aliases": ":fo:" }, "1f1eb-1f1f0": { "output": "1f1eb-1f1f0", "name": "flag: Falkland Islands", "alpha_code": ":flag_fk:", "aliases": ":fk:" }, "1f1ef-1f1ea": { "output": "1f1ef-1f1ea", "name": "flag: Jersey", "alpha_code": ":flag_je:", "aliases": ":je:" }, "1f1e6-1f1ee": { "output": "1f1e6-1f1ee", "name": "flag: Anguilla", "alpha_code": ":flag_ai:", "aliases": ":ai:" }, "1f1ec-1f1ee": { "output": "1f1ec-1f1ee", "name": "flag: Gibraltar", "alpha_code": ":flag_gi:", "aliases": ":gi:" }, "1f39e": { "output": "1f39e-fe0f", "name": "film frames", "alpha_code": ":film_frames:", "aliases": "" }, "1f39f": { "output": "1f39f-fe0f", "name": "admission tickets", "alpha_code": ":tickets:", "aliases": ":admission_tickets:" }, "1f3c5": { "output": "1f3c5", "name": "sports medal", "alpha_code": ":medal:", "aliases": ":sports_medal:" }, "1f3cb": { "output": "1f3cb-fe0f", "name": "person lifting weights", "alpha_code": ":person_lifting_weights:", "aliases": ":lifter:|:weight_lifter:" }, "1f3cc": { "output": "1f3cc-fe0f", "name": "person golfing", "alpha_code": ":person_golfing:", "aliases": ":golfer:" }, "1f3cd": { "output": "1f3cd-fe0f", "name": "motorcycle", "alpha_code": ":motorcycle:", "aliases": ":racing_motorcycle:" }, "1f3ce": { "output": "1f3ce-fe0f", "name": "racing car", "alpha_code": ":race_car:", "aliases": ":racing_car:" }, "1f396": { "output": "1f396-fe0f", "name": "military medal", "alpha_code": ":military_medal:", "aliases": "" }, "1f397": { "output": "1f397-fe0f", "name": "reminder ribbon", "alpha_code": ":reminder_ribbon:", "aliases": "" }, "1f336": { "output": "1f336-fe0f", "name": "hot pepper", "alpha_code": ":hot_pepper:", "aliases": "" }, "1f91c-1f3fe": { "output": "1f91c-1f3fe", "name": "right-facing fist: medium-dark skin tone", "alpha_code": ":right_facing_fist_tone4:", "aliases": ":right_fist_tone4:" }, "1f327": { "output": "1f327-fe0f", "name": "cloud with rain", "alpha_code": ":cloud_rain:", "aliases": ":cloud_with_rain:" }, "1f328": { "output": "1f328-fe0f", "name": "cloud with snow", "alpha_code": ":cloud_snow:", "aliases": ":cloud_with_snow:" }, "1f329": { "output": "1f329-fe0f", "name": "cloud with lightning", "alpha_code": ":cloud_lightning:", "aliases": ":cloud_with_lightning:" }, "1f32a": { "output": "1f32a-fe0f", "name": "tornado", "alpha_code": ":cloud_tornado:", "aliases": ":cloud_with_tornado:" }, "1f32b": { "output": "1f32b-fe0f", "name": "fog", "alpha_code": ":fog:", "aliases": "" }, "1f32c": { "output": "1f32c-fe0f", "name": "wind face", "alpha_code": ":wind_blowing_face:", "aliases": "" }, "1f43f": { "output": "1f43f-fe0f", "name": "chipmunk", "alpha_code": ":chipmunk:", "aliases": "" }, "1f577": { "output": "1f577-fe0f", "name": "spider", "alpha_code": ":spider:", "aliases": "" }, "1f578": { "output": "1f578-fe0f", "name": "spider web", "alpha_code": ":spider_web:", "aliases": "" }, "1f321": { "output": "1f321-fe0f", "name": "thermometer", "alpha_code": ":thermometer:", "aliases": "" }, "1f399": { "output": "1f399-fe0f", "name": "studio microphone", "alpha_code": ":microphone2:", "aliases": ":studio_microphone:" }, "1f39a": { "output": "1f39a-fe0f", "name": "level slider", "alpha_code": ":level_slider:", "aliases": "" }, "1f39b": { "output": "1f39b-fe0f", "name": "control knobs", "alpha_code": ":control_knobs:", "aliases": "" }, "1f3f3": { "output": "1f3f3-fe0f", "name": "white flag", "alpha_code": ":flag_white:", "aliases": ":waving_white_flag:" }, "1f3f4": { "output": "1f3f4", "name": "black flag", "alpha_code": ":flag_black:", "aliases": ":waving_black_flag:" }, "1f3f5": { "output": "1f3f5-fe0f", "name": "rosette", "alpha_code": ":rosette:", "aliases": "" }, "1f3f7": { "output": "1f3f7-fe0f", "name": "label", "alpha_code": ":label:", "aliases": "" }, "1f4f8": { "output": "1f4f8", "name": "camera with flash", "alpha_code": ":camera_with_flash:", "aliases": "" }, "1f4fd": { "output": "1f4fd-fe0f", "name": "film projector", "alpha_code": ":projector:", "aliases": ":film_projector:" }, "271d": { "output": "271d-fe0f", "name": "latin cross", "alpha_code": ":cross:", "aliases": ":latin_cross:" }, "1f549": { "output": "1f549-fe0f", "name": "om", "alpha_code": ":om_symbol:", "aliases": "" }, "1f54a": { "output": "1f54a-fe0f", "name": "dove", "alpha_code": ":dove:", "aliases": ":dove_of_peace:" }, "1f56f": { "output": "1f56f-fe0f", "name": "candle", "alpha_code": ":candle:", "aliases": "" }, "1f570": { "output": "1f570-fe0f", "name": "mantelpiece clock", "alpha_code": ":clock:", "aliases": ":mantlepiece_clock:" }, "1f573": { "output": "1f573-fe0f", "name": "hole", "alpha_code": ":hole:", "aliases": "" }, "1f576": { "output": "1f576-fe0f", "name": "sunglasses", "alpha_code": ":dark_sunglasses:", "aliases": "" }, "1f579": { "output": "1f579-fe0f", "name": "joystick", "alpha_code": ":joystick:", "aliases": "" }, "1f587": { "output": "1f587-fe0f", "name": "linked paperclips", "alpha_code": ":paperclips:", "aliases": ":linked_paperclips:" }, "1f58a": { "output": "1f58a-fe0f", "name": "pen", "alpha_code": ":pen_ballpoint:", "aliases": ":lower_left_ballpoint_pen:" }, "1f58b": { "output": "1f58b-fe0f", "name": "fountain pen", "alpha_code": ":pen_fountain:", "aliases": ":lower_left_fountain_pen:" }, "1f58c": { "output": "1f58c-fe0f", "name": "paintbrush", "alpha_code": ":paintbrush:", "aliases": ":lower_left_paintbrush:" }, "1f58d": { "output": "1f58d-fe0f", "name": "crayon", "alpha_code": ":crayon:", "aliases": ":lower_left_crayon:" }, "1f5a5": { "output": "1f5a5-fe0f", "name": "desktop computer", "alpha_code": ":desktop:", "aliases": ":desktop_computer:" }, "1f5a8": { "output": "1f5a8-fe0f", "name": "printer", "alpha_code": ":printer:", "aliases": "" }, "1f91c-1f3ff": { "output": "1f91c-1f3ff", "name": "right-facing fist: dark skin tone", "alpha_code": ":right_facing_fist_tone5:", "aliases": ":right_fist_tone5:" }, "2328": { "output": "2328-fe0f", "name": "keyboard", "alpha_code": ":keyboard:", "aliases": "" }, "1f5b2": { "output": "1f5b2-fe0f", "name": "trackball", "alpha_code": ":trackball:", "aliases": "" }, "1f91a-1f3fb": { "output": "1f91a-1f3fb", "name": "raised back of hand: light skin tone", "alpha_code": ":raised_back_of_hand_tone1:", "aliases": ":back_of_hand_tone1:" }, "1f5bc": { "output": "1f5bc-fe0f", "name": "framed picture", "alpha_code": ":frame_photo:", "aliases": ":frame_with_picture:" }, "1f5c2": { "output": "1f5c2-fe0f", "name": "card index dividers", "alpha_code": ":dividers:", "aliases": ":card_index_dividers:" }, "1f5c3": { "output": "1f5c3-fe0f", "name": "card file box", "alpha_code": ":card_box:", "aliases": ":card_file_box:" }, "1f5c4": { "output": "1f5c4-fe0f", "name": "file cabinet", "alpha_code": ":file_cabinet:", "aliases": "" }, "1f5d1": { "output": "1f5d1-fe0f", "name": "wastebasket", "alpha_code": ":wastebasket:", "aliases": "" }, "1f5d2": { "output": "1f5d2-fe0f", "name": "spiral notepad", "alpha_code": ":notepad_spiral:", "aliases": ":spiral_note_pad:" }, "1f5d3": { "output": "1f5d3-fe0f", "name": "spiral calendar", "alpha_code": ":calendar_spiral:", "aliases": ":spiral_calendar_pad:" }, "1f5dc": { "output": "1f5dc-fe0f", "name": "clamp", "alpha_code": ":compression:", "aliases": "" }, "1f5dd": { "output": "1f5dd-fe0f", "name": "old key", "alpha_code": ":key2:", "aliases": ":old_key:" }, "1f5de": { "output": "1f5de-fe0f", "name": "rolled-up newspaper", "alpha_code": ":newspaper2:", "aliases": ":rolled_up_newspaper:" }, "1f5e1": { "output": "1f5e1-fe0f", "name": "dagger", "alpha_code": ":dagger:", "aliases": ":dagger_knife:" }, "1f5e3": { "output": "1f5e3-fe0f", "name": "speaking head", "alpha_code": ":speaking_head:", "aliases": ":speaking_head_in_silhouette:" }, "1f5e8": { "output": "1f5e8-fe0f", "name": "left speech bubble", "alpha_code": ":speech_left:", "aliases": ":left_speech_bubble:" }, "1f91a-1f3fc": { "output": "1f91a-1f3fc", "name": "raised back of hand: medium-light skin tone", "alpha_code": ":raised_back_of_hand_tone2:", "aliases": ":back_of_hand_tone2:" }, "1f5ef": { "output": "1f5ef-fe0f", "name": "right anger bubble", "alpha_code": ":anger_right:", "aliases": ":right_anger_bubble:" }, "1f91a-1f3fd": { "output": "1f91a-1f3fd", "name": "raised back of hand: medium skin tone", "alpha_code": ":raised_back_of_hand_tone3:", "aliases": ":back_of_hand_tone3:" }, "1f5f3": { "output": "1f5f3-fe0f", "name": "ballot box with ballot", "alpha_code": ":ballot_box:", "aliases": ":ballot_box_with_ballot:" }, "1f5fa": { "output": "1f5fa-fe0f", "name": "world map", "alpha_code": ":map:", "aliases": ":world_map:" }, "1f6cc": { "output": "1f6cc", "name": "person in bed", "alpha_code": ":sleeping_accommodation:", "aliases": "" }, "1f6e0": { "output": "1f6e0-fe0f", "name": "hammer and wrench", "alpha_code": ":tools:", "aliases": ":hammer_and_wrench:" }, "1f6e1": { "output": "1f6e1-fe0f", "name": "shield", "alpha_code": ":shield:", "aliases": "" }, "1f6e2": { "output": "1f6e2-fe0f", "name": "oil drum", "alpha_code": ":oil:", "aliases": ":oil_drum:" }, "1f6f0": { "output": "1f6f0-fe0f", "name": "satellite", "alpha_code": ":satellite_orbital:", "aliases": "" }, "1f37d": { "output": "1f37d-fe0f", "name": "fork and knife with plate", "alpha_code": ":fork_knife_plate:", "aliases": ":fork_and_knife_with_plate:" }, "1f441": { "output": "1f441-fe0f", "name": "eye", "alpha_code": ":eye:", "aliases": "" }, "1f574": { "output": "1f574-fe0f", "name": "man in suit levitating", "alpha_code": ":levitate:", "aliases": ":man_in_business_suit_levitating:" }, "1f575": { "output": "1f575-fe0f", "name": "detective", "alpha_code": ":detective:", "aliases": ":spy:|:sleuth_or_spy:" }, "270d": { "output": "270d-fe0f", "name": "writing hand", "alpha_code": ":writing_hand:", "aliases": "" }, "1f590": { "output": "1f590-fe0f", "name": "hand with fingers splayed", "alpha_code": ":hand_splayed:", "aliases": ":raised_hand_with_fingers_splayed:" }, "1f595": { "output": "1f595", "name": "middle finger", "alpha_code": ":middle_finger:", "aliases": ":reversed_hand_with_middle_finger_extended:" }, "1f596": { "output": "1f596", "name": "vulcan salute", "alpha_code": ":vulcan:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers:" }, "1f641": { "output": "1f641", "name": "slightly frowning face", "alpha_code": ":slight_frown:", "aliases": ":slightly_frowning_face:" }, "1f642": { "output": "1f642", "name": "slightly smiling face", "alpha_code": ":slight_smile:", "aliases": ":slightly_smiling_face:" }, "1f3d4": { "output": "1f3d4-fe0f", "name": "snow-capped mountain", "alpha_code": ":mountain_snow:", "aliases": ":snow_capped_mountain:" }, "1f3d5": { "output": "1f3d5-fe0f", "name": "camping", "alpha_code": ":camping:", "aliases": "" }, "1f3d6": { "output": "1f3d6-fe0f", "name": "beach with umbrella", "alpha_code": ":beach:", "aliases": ":beach_with_umbrella:" }, "1f3d7": { "output": "1f3d7-fe0f", "name": "building construction", "alpha_code": ":construction_site:", "aliases": ":building_construction:" }, "1f3d8": { "output": "1f3d8-fe0f", "name": "houses", "alpha_code": ":homes:", "aliases": ":house_buildings:" }, "1f3d9": { "output": "1f3d9-fe0f", "name": "cityscape", "alpha_code": ":cityscape:", "aliases": "" }, "1f3da": { "output": "1f3da-fe0f", "name": "derelict house", "alpha_code": ":house_abandoned:", "aliases": ":derelict_house_building:" }, "1f3db": { "output": "1f3db-fe0f", "name": "classical building", "alpha_code": ":classical_building:", "aliases": "" }, "1f3dc": { "output": "1f3dc-fe0f", "name": "desert", "alpha_code": ":desert:", "aliases": "" }, "1f3dd": { "output": "1f3dd-fe0f", "name": "desert island", "alpha_code": ":island:", "aliases": ":desert_island:" }, "1f3de": { "output": "1f3de-fe0f", "name": "national park", "alpha_code": ":park:", "aliases": ":national_park:" }, "1f3df": { "output": "1f3df-fe0f", "name": "stadium", "alpha_code": ":stadium:", "aliases": "" }, "1f6cb": { "output": "1f6cb-fe0f", "name": "couch and lamp", "alpha_code": ":couch:", "aliases": ":couch_and_lamp:" }, "1f91a-1f3fe": { "output": "1f91a-1f3fe", "name": "raised back of hand: medium-dark skin tone", "alpha_code": ":raised_back_of_hand_tone4:", "aliases": ":back_of_hand_tone4:" }, "1f6cd": { "output": "1f6cd-fe0f", "name": "shopping bags", "alpha_code": ":shopping_bags:", "aliases": "" }, "1f6ce": { "output": "1f6ce-fe0f", "name": "bellhop bell", "alpha_code": ":bellhop:", "aliases": ":bellhop_bell:" }, "1f6cf": { "output": "1f6cf-fe0f", "name": "bed", "alpha_code": ":bed:", "aliases": "" }, "1f6e3": { "output": "1f6e3-fe0f", "name": "motorway", "alpha_code": ":motorway:", "aliases": "" }, "1f6e4": { "output": "1f6e4-fe0f", "name": "railway track", "alpha_code": ":railway_track:", "aliases": ":railroad_track:" }, "1f6e5": { "output": "1f6e5-fe0f", "name": "motor boat", "alpha_code": ":motorboat:", "aliases": "" }, "1f6e9": { "output": "1f6e9-fe0f", "name": "small airplane", "alpha_code": ":airplane_small:", "aliases": ":small_airplane:" }, "1f6eb": { "output": "1f6eb", "name": "airplane departure", "alpha_code": ":airplane_departure:", "aliases": "" }, "1f6ec": { "output": "1f6ec", "name": "airplane arrival", "alpha_code": ":airplane_arriving:", "aliases": "" }, "1f6f3": { "output": "1f6f3-fe0f", "name": "passenger ship", "alpha_code": ":cruise_ship:", "aliases": ":passenger_ship:" }, "1f476-1f3fb": { "output": "1f476-1f3fb", "name": "baby: light skin tone", "alpha_code": ":baby_tone1:", "aliases": "" }, "1f476-1f3fc": { "output": "1f476-1f3fc", "name": "baby: medium-light skin tone", "alpha_code": ":baby_tone2:", "aliases": "" }, "1f476-1f3fd": { "output": "1f476-1f3fd", "name": "baby: medium skin tone", "alpha_code": ":baby_tone3:", "aliases": "" }, "1f476-1f3fe": { "output": "1f476-1f3fe", "name": "baby: medium-dark skin tone", "alpha_code": ":baby_tone4:", "aliases": "" }, "1f476-1f3ff": { "output": "1f476-1f3ff", "name": "baby: dark skin tone", "alpha_code": ":baby_tone5:", "aliases": "" }, "1f466-1f3fb": { "output": "1f466-1f3fb", "name": "boy: light skin tone", "alpha_code": ":boy_tone1:", "aliases": "" }, "1f466-1f3fc": { "output": "1f466-1f3fc", "name": "boy: medium-light skin tone", "alpha_code": ":boy_tone2:", "aliases": "" }, "1f466-1f3fd": { "output": "1f466-1f3fd", "name": "boy: medium skin tone", "alpha_code": ":boy_tone3:", "aliases": "" }, "1f466-1f3fe": { "output": "1f466-1f3fe", "name": "boy: medium-dark skin tone", "alpha_code": ":boy_tone4:", "aliases": "" }, "1f466-1f3ff": { "output": "1f466-1f3ff", "name": "boy: dark skin tone", "alpha_code": ":boy_tone5:", "aliases": "" }, "1f467-1f3fb": { "output": "1f467-1f3fb", "name": "girl: light skin tone", "alpha_code": ":girl_tone1:", "aliases": "" }, "1f467-1f3fc": { "output": "1f467-1f3fc", "name": "girl: medium-light skin tone", "alpha_code": ":girl_tone2:", "aliases": "" }, "1f467-1f3fd": { "output": "1f467-1f3fd", "name": "girl: medium skin tone", "alpha_code": ":girl_tone3:", "aliases": "" }, "1f467-1f3fe": { "output": "1f467-1f3fe", "name": "girl: medium-dark skin tone", "alpha_code": ":girl_tone4:", "aliases": "" }, "1f467-1f3ff": { "output": "1f467-1f3ff", "name": "girl: dark skin tone", "alpha_code": ":girl_tone5:", "aliases": "" }, "1f468-1f3fb": { "output": "1f468-1f3fb", "name": "man: light skin tone", "alpha_code": ":man_tone1:", "aliases": "" }, "1f468-1f3fc": { "output": "1f468-1f3fc", "name": "man: medium-light skin tone", "alpha_code": ":man_tone2:", "aliases": "" }, "1f468-1f3fd": { "output": "1f468-1f3fd", "name": "man: medium skin tone", "alpha_code": ":man_tone3:", "aliases": "" }, "1f468-1f3fe": { "output": "1f468-1f3fe", "name": "man: medium-dark skin tone", "alpha_code": ":man_tone4:", "aliases": "" }, "1f468-1f3ff": { "output": "1f468-1f3ff", "name": "man: dark skin tone", "alpha_code": ":man_tone5:", "aliases": "" }, "1f469-1f3fb": { "output": "1f469-1f3fb", "name": "woman: light skin tone", "alpha_code": ":woman_tone1:", "aliases": "" }, "1f469-1f3fc": { "output": "1f469-1f3fc", "name": "woman: medium-light skin tone", "alpha_code": ":woman_tone2:", "aliases": "" }, "1f469-1f3fd": { "output": "1f469-1f3fd", "name": "woman: medium skin tone", "alpha_code": ":woman_tone3:", "aliases": "" }, "1f469-1f3fe": { "output": "1f469-1f3fe", "name": "woman: medium-dark skin tone", "alpha_code": ":woman_tone4:", "aliases": "" }, "1f469-1f3ff": { "output": "1f469-1f3ff", "name": "woman: dark skin tone", "alpha_code": ":woman_tone5:", "aliases": "" }, "1f470-1f3fb": { "output": "1f470-1f3fb", "name": "bride with veil: light skin tone", "alpha_code": ":bride_with_veil_tone1:", "aliases": "" }, "1f470-1f3fc": { "output": "1f470-1f3fc", "name": "bride with veil: medium-light skin tone", "alpha_code": ":bride_with_veil_tone2:", "aliases": "" }, "1f91a-1f3ff": { "output": "1f91a-1f3ff", "name": "raised back of hand: dark skin tone", "alpha_code": ":raised_back_of_hand_tone5:", "aliases": ":back_of_hand_tone5:" }, "1f470-1f3fd": { "output": "1f470-1f3fd", "name": "bride with veil: medium skin tone", "alpha_code": ":bride_with_veil_tone3:", "aliases": "" }, "1f470-1f3fe": { "output": "1f470-1f3fe", "name": "bride with veil: medium-dark skin tone", "alpha_code": ":bride_with_veil_tone4:", "aliases": "" }, "1f470-1f3ff": { "output": "1f470-1f3ff", "name": "bride with veil: dark skin tone", "alpha_code": ":bride_with_veil_tone5:", "aliases": "" }, "1f471-1f3fb": { "output": "1f471-1f3fb", "name": "blond-haired person: light skin tone", "alpha_code": ":blond_haired_person_tone1:", "aliases": ":person_with_blond_hair_tone1:" }, "1f471-1f3fc": { "output": "1f471-1f3fc", "name": "blond-haired person: medium-light skin tone", "alpha_code": ":blond_haired_person_tone2:", "aliases": ":person_with_blond_hair_tone2:" }, "1f471-1f3fd": { "output": "1f471-1f3fd", "name": "blond-haired person: medium skin tone", "alpha_code": ":blond_haired_person_tone3:", "aliases": ":person_with_blond_hair_tone3:" }, "1f471-1f3fe": { "output": "1f471-1f3fe", "name": "blond-haired person: medium-dark skin tone", "alpha_code": ":blond_haired_person_tone4:", "aliases": ":person_with_blond_hair_tone4:" }, "1f471-1f3ff": { "output": "1f471-1f3ff", "name": "blond-haired person: dark skin tone", "alpha_code": ":blond_haired_person_tone5:", "aliases": ":person_with_blond_hair_tone5:" }, "1f472-1f3fb": { "output": "1f472-1f3fb", "name": "man with Chinese cap: light skin tone", "alpha_code": ":man_with_chinese_cap_tone1:", "aliases": ":man_with_gua_pi_mao_tone1:" }, "1f472-1f3fc": { "output": "1f472-1f3fc", "name": "man with Chinese cap: medium-light skin tone", "alpha_code": ":man_with_chinese_cap_tone2:", "aliases": ":man_with_gua_pi_mao_tone2:" }, "1f472-1f3fd": { "output": "1f472-1f3fd", "name": "man with Chinese cap: medium skin tone", "alpha_code": ":man_with_chinese_cap_tone3:", "aliases": ":man_with_gua_pi_mao_tone3:" }, "1f472-1f3fe": { "output": "1f472-1f3fe", "name": "man with Chinese cap: medium-dark skin tone", "alpha_code": ":man_with_chinese_cap_tone4:", "aliases": ":man_with_gua_pi_mao_tone4:" }, "1f472-1f3ff": { "output": "1f472-1f3ff", "name": "man with Chinese cap: dark skin tone", "alpha_code": ":man_with_chinese_cap_tone5:", "aliases": ":man_with_gua_pi_mao_tone5:" }, "1f473-1f3fb": { "output": "1f473-1f3fb", "name": "person wearing turban: light skin tone", "alpha_code": ":person_wearing_turban_tone1:", "aliases": ":man_with_turban_tone1:" }, "1f473-1f3fc": { "output": "1f473-1f3fc", "name": "person wearing turban: medium-light skin tone", "alpha_code": ":person_wearing_turban_tone2:", "aliases": ":man_with_turban_tone2:" }, "1f473-1f3fd": { "output": "1f473-1f3fd", "name": "person wearing turban: medium skin tone", "alpha_code": ":person_wearing_turban_tone3:", "aliases": ":man_with_turban_tone3:" }, "1f473-1f3fe": { "output": "1f473-1f3fe", "name": "person wearing turban: medium-dark skin tone", "alpha_code": ":person_wearing_turban_tone4:", "aliases": ":man_with_turban_tone4:" }, "1f473-1f3ff": { "output": "1f473-1f3ff", "name": "person wearing turban: dark skin tone", "alpha_code": ":person_wearing_turban_tone5:", "aliases": ":man_with_turban_tone5:" }, "1f474-1f3fb": { "output": "1f474-1f3fb", "name": "old man: light skin tone", "alpha_code": ":older_man_tone1:", "aliases": "" }, "1f474-1f3fc": { "output": "1f474-1f3fc", "name": "old man: medium-light skin tone", "alpha_code": ":older_man_tone2:", "aliases": "" }, "1f474-1f3fd": { "output": "1f474-1f3fd", "name": "old man: medium skin tone", "alpha_code": ":older_man_tone3:", "aliases": "" }, "1f474-1f3fe": { "output": "1f474-1f3fe", "name": "old man: medium-dark skin tone", "alpha_code": ":older_man_tone4:", "aliases": "" }, "1f474-1f3ff": { "output": "1f474-1f3ff", "name": "old man: dark skin tone", "alpha_code": ":older_man_tone5:", "aliases": "" }, "1f475-1f3fb": { "output": "1f475-1f3fb", "name": "old woman: light skin tone", "alpha_code": ":older_woman_tone1:", "aliases": ":grandma_tone1:" }, "1f475-1f3fc": { "output": "1f475-1f3fc", "name": "old woman: medium-light skin tone", "alpha_code": ":older_woman_tone2:", "aliases": ":grandma_tone2:" }, "1f475-1f3fd": { "output": "1f475-1f3fd", "name": "old woman: medium skin tone", "alpha_code": ":older_woman_tone3:", "aliases": ":grandma_tone3:" }, "1f475-1f3fe": { "output": "1f475-1f3fe", "name": "old woman: medium-dark skin tone", "alpha_code": ":older_woman_tone4:", "aliases": ":grandma_tone4:" }, "1f475-1f3ff": { "output": "1f475-1f3ff", "name": "old woman: dark skin tone", "alpha_code": ":older_woman_tone5:", "aliases": ":grandma_tone5:" }, "1f46e-1f3fb": { "output": "1f46e-1f3fb", "name": "police officer: light skin tone", "alpha_code": ":police_officer_tone1:", "aliases": ":cop_tone1:" }, "1f46e-1f3fc": { "output": "1f46e-1f3fc", "name": "police officer: medium-light skin tone", "alpha_code": ":police_officer_tone2:", "aliases": ":cop_tone2:" }, "1f46e-1f3fd": { "output": "1f46e-1f3fd", "name": "police officer: medium skin tone", "alpha_code": ":police_officer_tone3:", "aliases": ":cop_tone3:" }, "1f46e-1f3fe": { "output": "1f46e-1f3fe", "name": "police officer: medium-dark skin tone", "alpha_code": ":police_officer_tone4:", "aliases": ":cop_tone4:" }, "1f46e-1f3ff": { "output": "1f46e-1f3ff", "name": "police officer: dark skin tone", "alpha_code": ":police_officer_tone5:", "aliases": ":cop_tone5:" }, "1f477-1f3fb": { "output": "1f477-1f3fb", "name": "construction worker: light skin tone", "alpha_code": ":construction_worker_tone1:", "aliases": "" }, "1f477-1f3fc": { "output": "1f477-1f3fc", "name": "construction worker: medium-light skin tone", "alpha_code": ":construction_worker_tone2:", "aliases": "" }, "1f477-1f3fd": { "output": "1f477-1f3fd", "name": "construction worker: medium skin tone", "alpha_code": ":construction_worker_tone3:", "aliases": "" }, "1f477-1f3fe": { "output": "1f477-1f3fe", "name": "construction worker: medium-dark skin tone", "alpha_code": ":construction_worker_tone4:", "aliases": "" }, "1f477-1f3ff": { "output": "1f477-1f3ff", "name": "construction worker: dark skin tone", "alpha_code": ":construction_worker_tone5:", "aliases": "" }, "1f478-1f3fb": { "output": "1f478-1f3fb", "name": "princess: light skin tone", "alpha_code": ":princess_tone1:", "aliases": "" }, "1f478-1f3fc": { "output": "1f478-1f3fc", "name": "princess: medium-light skin tone", "alpha_code": ":princess_tone2:", "aliases": "" }, "1f478-1f3fd": { "output": "1f478-1f3fd", "name": "princess: medium skin tone", "alpha_code": ":princess_tone3:", "aliases": "" }, "1f478-1f3fe": { "output": "1f478-1f3fe", "name": "princess: medium-dark skin tone", "alpha_code": ":princess_tone4:", "aliases": "" }, "1f938-1f3fb": { "output": "1f938-1f3fb", "name": "person cartwheeling: light skin tone", "alpha_code": ":person_doing_cartwheel_tone1:", "aliases": ":cartwheel_tone1:" }, "1f478-1f3ff": { "output": "1f478-1f3ff", "name": "princess: dark skin tone", "alpha_code": ":princess_tone5:", "aliases": "" }, "1f482-1f3fb": { "output": "1f482-1f3fb", "name": "guard: light skin tone", "alpha_code": ":guard_tone1:", "aliases": ":guardsman_tone1:" }, "1f482-1f3fc": { "output": "1f482-1f3fc", "name": "guard: medium-light skin tone", "alpha_code": ":guard_tone2:", "aliases": ":guardsman_tone2:" }, "1f938-1f3fc": { "output": "1f938-1f3fc", "name": "person cartwheeling: medium-light skin tone", "alpha_code": ":person_doing_cartwheel_tone2:", "aliases": ":cartwheel_tone2:" }, "1f482-1f3fd": { "output": "1f482-1f3fd", "name": "guard: medium skin tone", "alpha_code": ":guard_tone3:", "aliases": ":guardsman_tone3:" }, "1f482-1f3fe": { "output": "1f482-1f3fe", "name": "guard: medium-dark skin tone", "alpha_code": ":guard_tone4:", "aliases": ":guardsman_tone4:" }, "1f482-1f3ff": { "output": "1f482-1f3ff", "name": "guard: dark skin tone", "alpha_code": ":guard_tone5:", "aliases": ":guardsman_tone5:" }, "1f938-1f3fd": { "output": "1f938-1f3fd", "name": "person cartwheeling: medium skin tone", "alpha_code": ":person_doing_cartwheel_tone3:", "aliases": ":cartwheel_tone3:" }, "1f47c-1f3fb": { "output": "1f47c-1f3fb", "name": "baby angel: light skin tone", "alpha_code": ":angel_tone1:", "aliases": "" }, "1f47c-1f3fc": { "output": "1f47c-1f3fc", "name": "baby angel: medium-light skin tone", "alpha_code": ":angel_tone2:", "aliases": "" }, "1f47c-1f3fd": { "output": "1f47c-1f3fd", "name": "baby angel: medium skin tone", "alpha_code": ":angel_tone3:", "aliases": "" }, "1f47c-1f3fe": { "output": "1f47c-1f3fe", "name": "baby angel: medium-dark skin tone", "alpha_code": ":angel_tone4:", "aliases": "" }, "1f47c-1f3ff": { "output": "1f47c-1f3ff", "name": "baby angel: dark skin tone", "alpha_code": ":angel_tone5:", "aliases": "" }, "1f647-1f3fb": { "output": "1f647-1f3fb", "name": "person bowing: light skin tone", "alpha_code": ":person_bowing_tone1:", "aliases": ":bow_tone1:" }, "1f647-1f3fc": { "output": "1f647-1f3fc", "name": "person bowing: medium-light skin tone", "alpha_code": ":person_bowing_tone2:", "aliases": ":bow_tone2:" }, "1f647-1f3fd": { "output": "1f647-1f3fd", "name": "person bowing: medium skin tone", "alpha_code": ":person_bowing_tone3:", "aliases": ":bow_tone3:" }, "1f647-1f3fe": { "output": "1f647-1f3fe", "name": "person bowing: medium-dark skin tone", "alpha_code": ":person_bowing_tone4:", "aliases": ":bow_tone4:" }, "1f647-1f3ff": { "output": "1f647-1f3ff", "name": "person bowing: dark skin tone", "alpha_code": ":person_bowing_tone5:", "aliases": ":bow_tone5:" }, "1f481-1f3fb": { "output": "1f481-1f3fb", "name": "person tipping hand: light skin tone", "alpha_code": ":person_tipping_hand_tone1:", "aliases": ":information_desk_person_tone1:" }, "1f481-1f3fc": { "output": "1f481-1f3fc", "name": "person tipping hand: medium-light skin tone", "alpha_code": ":person_tipping_hand_tone2:", "aliases": ":information_desk_person_tone2:" }, "1f481-1f3fd": { "output": "1f481-1f3fd", "name": "person tipping hand: medium skin tone", "alpha_code": ":person_tipping_hand_tone3:", "aliases": ":information_desk_person_tone3:" }, "1f938-1f3fe": { "output": "1f938-1f3fe", "name": "person cartwheeling: medium-dark skin tone", "alpha_code": ":person_doing_cartwheel_tone4:", "aliases": ":cartwheel_tone4:" }, "1f481-1f3fe": { "output": "1f481-1f3fe", "name": "person tipping hand: medium-dark skin tone", "alpha_code": ":person_tipping_hand_tone4:", "aliases": ":information_desk_person_tone4:" }, "1f481-1f3ff": { "output": "1f481-1f3ff", "name": "person tipping hand: dark skin tone", "alpha_code": ":person_tipping_hand_tone5:", "aliases": ":information_desk_person_tone5:" }, "1f645-1f3fb": { "output": "1f645-1f3fb", "name": "person gesturing NO: light skin tone", "alpha_code": ":person_gesturing_no_tone1:", "aliases": ":no_good_tone1:" }, "1f938-1f3ff": { "output": "1f938-1f3ff", "name": "person cartwheeling: dark skin tone", "alpha_code": ":person_doing_cartwheel_tone5:", "aliases": ":cartwheel_tone5:" }, "1f645-1f3fc": { "output": "1f645-1f3fc", "name": "person gesturing NO: medium-light skin tone", "alpha_code": ":person_gesturing_no_tone2:", "aliases": ":no_good_tone2:" }, "1f645-1f3fd": { "output": "1f645-1f3fd", "name": "person gesturing NO: medium skin tone", "alpha_code": ":person_gesturing_no_tone3:", "aliases": ":no_good_tone3:" }, "1f645-1f3fe": { "output": "1f645-1f3fe", "name": "person gesturing NO: medium-dark skin tone", "alpha_code": ":person_gesturing_no_tone4:", "aliases": ":no_good_tone4:" }, "1f645-1f3ff": { "output": "1f645-1f3ff", "name": "person gesturing NO: dark skin tone", "alpha_code": ":person_gesturing_no_tone5:", "aliases": ":no_good_tone5:" }, "1f646-1f3fb": { "output": "1f646-1f3fb", "name": "person gesturing OK: light skin tone", "alpha_code": ":person_gesturing_ok_tone1:", "aliases": ":ok_woman_tone1:" }, "1f646-1f3fc": { "output": "1f646-1f3fc", "name": "person gesturing OK: medium-light skin tone", "alpha_code": ":person_gesturing_ok_tone2:", "aliases": ":ok_woman_tone2:" }, "1f646-1f3fd": { "output": "1f646-1f3fd", "name": "person gesturing OK: medium skin tone", "alpha_code": ":person_gesturing_ok_tone3:", "aliases": ":ok_woman_tone3:" }, "1f646-1f3fe": { "output": "1f646-1f3fe", "name": "person gesturing OK: medium-dark skin tone", "alpha_code": ":person_gesturing_ok_tone4:", "aliases": ":ok_woman_tone4:" }, "1f646-1f3ff": { "output": "1f646-1f3ff", "name": "person gesturing OK: dark skin tone", "alpha_code": ":person_gesturing_ok_tone5:", "aliases": ":ok_woman_tone5:" }, "1f64b-1f3fb": { "output": "1f64b-1f3fb", "name": "person raising hand: light skin tone", "alpha_code": ":person_raising_hand_tone1:", "aliases": ":raising_hand_tone1:" }, "1f64b-1f3fc": { "output": "1f64b-1f3fc", "name": "person raising hand: medium-light skin tone", "alpha_code": ":person_raising_hand_tone2:", "aliases": ":raising_hand_tone2:" }, "1f64b-1f3fd": { "output": "1f64b-1f3fd", "name": "person raising hand: medium skin tone", "alpha_code": ":person_raising_hand_tone3:", "aliases": ":raising_hand_tone3:" }, "1f64b-1f3fe": { "output": "1f64b-1f3fe", "name": "person raising hand: medium-dark skin tone", "alpha_code": ":person_raising_hand_tone4:", "aliases": ":raising_hand_tone4:" }, "1f64b-1f3ff": { "output": "1f64b-1f3ff", "name": "person raising hand: dark skin tone", "alpha_code": ":person_raising_hand_tone5:", "aliases": ":raising_hand_tone5:" }, "1f64e-1f3fb": { "output": "1f64e-1f3fb", "name": "person pouting: light skin tone", "alpha_code": ":person_pouting_tone1:", "aliases": ":person_with_pouting_face_tone1:" }, "1f64e-1f3fc": { "output": "1f64e-1f3fc", "name": "person pouting: medium-light skin tone", "alpha_code": ":person_pouting_tone2:", "aliases": ":person_with_pouting_face_tone2:" }, "1f64e-1f3fd": { "output": "1f64e-1f3fd", "name": "person pouting: medium skin tone", "alpha_code": ":person_pouting_tone3:", "aliases": ":person_with_pouting_face_tone3:" }, "1f64e-1f3fe": { "output": "1f64e-1f3fe", "name": "person pouting: medium-dark skin tone", "alpha_code": ":person_pouting_tone4:", "aliases": ":person_with_pouting_face_tone4:" }, "1f64e-1f3ff": { "output": "1f64e-1f3ff", "name": "person pouting: dark skin tone", "alpha_code": ":person_pouting_tone5:", "aliases": ":person_with_pouting_face_tone5:" }, "1f64d-1f3fb": { "output": "1f64d-1f3fb", "name": "person frowning: light skin tone", "alpha_code": ":person_frowning_tone1:", "aliases": "" }, "1f64d-1f3fc": { "output": "1f64d-1f3fc", "name": "person frowning: medium-light skin tone", "alpha_code": ":person_frowning_tone2:", "aliases": "" }, "1f64d-1f3fd": { "output": "1f64d-1f3fd", "name": "person frowning: medium skin tone", "alpha_code": ":person_frowning_tone3:", "aliases": "" }, "1f64d-1f3fe": { "output": "1f64d-1f3fe", "name": "person frowning: medium-dark skin tone", "alpha_code": ":person_frowning_tone4:", "aliases": "" }, "1f64d-1f3ff": { "output": "1f64d-1f3ff", "name": "person frowning: dark skin tone", "alpha_code": ":person_frowning_tone5:", "aliases": "" }, "1f486-1f3fb": { "output": "1f486-1f3fb", "name": "person getting massage: light skin tone", "alpha_code": ":person_getting_massage_tone1:", "aliases": ":massage_tone1:" }, "1f486-1f3fc": { "output": "1f486-1f3fc", "name": "person getting massage: medium-light skin tone", "alpha_code": ":person_getting_massage_tone2:", "aliases": ":massage_tone2:" }, "1f486-1f3fd": { "output": "1f486-1f3fd", "name": "person getting massage: medium skin tone", "alpha_code": ":person_getting_massage_tone3:", "aliases": ":massage_tone3:" }, "1f486-1f3fe": { "output": "1f486-1f3fe", "name": "person getting massage: medium-dark skin tone", "alpha_code": ":person_getting_massage_tone4:", "aliases": ":massage_tone4:" }, "1f486-1f3ff": { "output": "1f486-1f3ff", "name": "person getting massage: dark skin tone", "alpha_code": ":person_getting_massage_tone5:", "aliases": ":massage_tone5:" }, "1f487-1f3fb": { "output": "1f487-1f3fb", "name": "person getting haircut: light skin tone", "alpha_code": ":person_getting_haircut_tone1:", "aliases": ":haircut_tone1:" }, "1f487-1f3fc": { "output": "1f487-1f3fc", "name": "person getting haircut: medium-light skin tone", "alpha_code": ":person_getting_haircut_tone2:", "aliases": ":haircut_tone2:" }, "1f487-1f3fd": { "output": "1f487-1f3fd", "name": "person getting haircut: medium skin tone", "alpha_code": ":person_getting_haircut_tone3:", "aliases": ":haircut_tone3:" }, "1f487-1f3fe": { "output": "1f487-1f3fe", "name": "person getting haircut: medium-dark skin tone", "alpha_code": ":person_getting_haircut_tone4:", "aliases": ":haircut_tone4:" }, "1f487-1f3ff": { "output": "1f487-1f3ff", "name": "person getting haircut: dark skin tone", "alpha_code": ":person_getting_haircut_tone5:", "aliases": ":haircut_tone5:" }, "1f64c-1f3fb": { "output": "1f64c-1f3fb", "name": "raising hands: light skin tone", "alpha_code": ":raised_hands_tone1:", "aliases": "" }, "1f64c-1f3fc": { "output": "1f64c-1f3fc", "name": "raising hands: medium-light skin tone", "alpha_code": ":raised_hands_tone2:", "aliases": "" }, "1f64c-1f3fd": { "output": "1f64c-1f3fd", "name": "raising hands: medium skin tone", "alpha_code": ":raised_hands_tone3:", "aliases": "" }, "1f64c-1f3fe": { "output": "1f64c-1f3fe", "name": "raising hands: medium-dark skin tone", "alpha_code": ":raised_hands_tone4:", "aliases": "" }, "1f64c-1f3ff": { "output": "1f64c-1f3ff", "name": "raising hands: dark skin tone", "alpha_code": ":raised_hands_tone5:", "aliases": "" }, "1f44f-1f3fb": { "output": "1f44f-1f3fb", "name": "clapping hands: light skin tone", "alpha_code": ":clap_tone1:", "aliases": "" }, "1f44f-1f3fc": { "output": "1f44f-1f3fc", "name": "clapping hands: medium-light skin tone", "alpha_code": ":clap_tone2:", "aliases": "" }, "1f44f-1f3fd": { "output": "1f44f-1f3fd", "name": "clapping hands: medium skin tone", "alpha_code": ":clap_tone3:", "aliases": "" }, "1f93d-1f3fb": { "output": "1f93d-1f3fb", "name": "person playing water polo: light skin tone", "alpha_code": ":person_playing_water_polo_tone1:", "aliases": ":water_polo_tone1:" }, "1f44f-1f3fe": { "output": "1f44f-1f3fe", "name": "clapping hands: medium-dark skin tone", "alpha_code": ":clap_tone4:", "aliases": "" }, "1f44f-1f3ff": { "output": "1f44f-1f3ff", "name": "clapping hands: dark skin tone", "alpha_code": ":clap_tone5:", "aliases": "" }, "1f93d-1f3fc": { "output": "1f93d-1f3fc", "name": "person playing water polo: medium-light skin tone", "alpha_code": ":person_playing_water_polo_tone2:", "aliases": ":water_polo_tone2:" }, "1f442-1f3fb": { "output": "1f442-1f3fb", "name": "ear: light skin tone", "alpha_code": ":ear_tone1:", "aliases": "" }, "1f442-1f3fc": { "output": "1f442-1f3fc", "name": "ear: medium-light skin tone", "alpha_code": ":ear_tone2:", "aliases": "" }, "1f442-1f3fd": { "output": "1f442-1f3fd", "name": "ear: medium skin tone", "alpha_code": ":ear_tone3:", "aliases": "" }, "1f442-1f3fe": { "output": "1f442-1f3fe", "name": "ear: medium-dark skin tone", "alpha_code": ":ear_tone4:", "aliases": "" }, "1f442-1f3ff": { "output": "1f442-1f3ff", "name": "ear: dark skin tone", "alpha_code": ":ear_tone5:", "aliases": "" }, "1f443-1f3fb": { "output": "1f443-1f3fb", "name": "nose: light skin tone", "alpha_code": ":nose_tone1:", "aliases": "" }, "1f443-1f3fc": { "output": "1f443-1f3fc", "name": "nose: medium-light skin tone", "alpha_code": ":nose_tone2:", "aliases": "" }, "1f443-1f3fd": { "output": "1f443-1f3fd", "name": "nose: medium skin tone", "alpha_code": ":nose_tone3:", "aliases": "" }, "1f443-1f3fe": { "output": "1f443-1f3fe", "name": "nose: medium-dark skin tone", "alpha_code": ":nose_tone4:", "aliases": "" }, "1f443-1f3ff": { "output": "1f443-1f3ff", "name": "nose: dark skin tone", "alpha_code": ":nose_tone5:", "aliases": "" }, "1f485-1f3fb": { "output": "1f485-1f3fb", "name": "nail polish: light skin tone", "alpha_code": ":nail_care_tone1:", "aliases": "" }, "1f485-1f3fc": { "output": "1f485-1f3fc", "name": "nail polish: medium-light skin tone", "alpha_code": ":nail_care_tone2:", "aliases": "" }, "1f485-1f3fd": { "output": "1f485-1f3fd", "name": "nail polish: medium skin tone", "alpha_code": ":nail_care_tone3:", "aliases": "" }, "1f485-1f3fe": { "output": "1f485-1f3fe", "name": "nail polish: medium-dark skin tone", "alpha_code": ":nail_care_tone4:", "aliases": "" }, "1f485-1f3ff": { "output": "1f485-1f3ff", "name": "nail polish: dark skin tone", "alpha_code": ":nail_care_tone5:", "aliases": "" }, "1f44b-1f3fb": { "output": "1f44b-1f3fb", "name": "waving hand: light skin tone", "alpha_code": ":wave_tone1:", "aliases": "" }, "1f44b-1f3fc": { "output": "1f44b-1f3fc", "name": "waving hand: medium-light skin tone", "alpha_code": ":wave_tone2:", "aliases": "" }, "1f44b-1f3fd": { "output": "1f44b-1f3fd", "name": "waving hand: medium skin tone", "alpha_code": ":wave_tone3:", "aliases": "" }, "1f44b-1f3fe": { "output": "1f44b-1f3fe", "name": "waving hand: medium-dark skin tone", "alpha_code": ":wave_tone4:", "aliases": "" }, "1f44b-1f3ff": { "output": "1f44b-1f3ff", "name": "waving hand: dark skin tone", "alpha_code": ":wave_tone5:", "aliases": "" }, "1f44d-1f3fb": { "output": "1f44d-1f3fb", "name": "thumbs up: light skin tone", "alpha_code": ":thumbsup_tone1:", "aliases": ":+1_tone1:|:thumbup_tone1:" }, "1f44d-1f3fc": { "output": "1f44d-1f3fc", "name": "thumbs up: medium-light skin tone", "alpha_code": ":thumbsup_tone2:", "aliases": ":+1_tone2:|:thumbup_tone2:" }, "1f44d-1f3fd": { "output": "1f44d-1f3fd", "name": "thumbs up: medium skin tone", "alpha_code": ":thumbsup_tone3:", "aliases": ":+1_tone3:|:thumbup_tone3:" }, "1f44d-1f3fe": { "output": "1f44d-1f3fe", "name": "thumbs up: medium-dark skin tone", "alpha_code": ":thumbsup_tone4:", "aliases": ":+1_tone4:|:thumbup_tone4:" }, "1f44d-1f3ff": { "output": "1f44d-1f3ff", "name": "thumbs up: dark skin tone", "alpha_code": ":thumbsup_tone5:", "aliases": ":+1_tone5:|:thumbup_tone5:" }, "1f44e-1f3fb": { "output": "1f44e-1f3fb", "name": "thumbs down: light skin tone", "alpha_code": ":thumbsdown_tone1:", "aliases": ":-1_tone1:|:thumbdown_tone1:" }, "1f44e-1f3fc": { "output": "1f44e-1f3fc", "name": "thumbs down: medium-light skin tone", "alpha_code": ":thumbsdown_tone2:", "aliases": ":-1_tone2:|:thumbdown_tone2:" }, "1f44e-1f3fd": { "output": "1f44e-1f3fd", "name": "thumbs down: medium skin tone", "alpha_code": ":thumbsdown_tone3:", "aliases": ":-1_tone3:|:thumbdown_tone3:" }, "1f44e-1f3fe": { "output": "1f44e-1f3fe", "name": "thumbs down: medium-dark skin tone", "alpha_code": ":thumbsdown_tone4:", "aliases": ":-1_tone4:|:thumbdown_tone4:" }, "1f44e-1f3ff": { "output": "1f44e-1f3ff", "name": "thumbs down: dark skin tone", "alpha_code": ":thumbsdown_tone5:", "aliases": ":-1_tone5:|:thumbdown_tone5:" }, "261d-1f3fb": { "output": "261d-1f3fb", "name": "index pointing up: light skin tone", "alpha_code": ":point_up_tone1:", "aliases": "" }, "261d-1f3fc": { "output": "261d-1f3fc", "name": "index pointing up: medium-light skin tone", "alpha_code": ":point_up_tone2:", "aliases": "" }, "261d-1f3fd": { "output": "261d-1f3fd", "name": "index pointing up: medium skin tone", "alpha_code": ":point_up_tone3:", "aliases": "" }, "261d-1f3fe": { "output": "261d-1f3fe", "name": "index pointing up: medium-dark skin tone", "alpha_code": ":point_up_tone4:", "aliases": "" }, "261d-1f3ff": { "output": "261d-1f3ff", "name": "index pointing up: dark skin tone", "alpha_code": ":point_up_tone5:", "aliases": "" }, "1f446-1f3fb": { "output": "1f446-1f3fb", "name": "backhand index pointing up: light skin tone", "alpha_code": ":point_up_2_tone1:", "aliases": "" }, "1f446-1f3fc": { "output": "1f446-1f3fc", "name": "backhand index pointing up: medium-light skin tone", "alpha_code": ":point_up_2_tone2:", "aliases": "" }, "1f446-1f3fd": { "output": "1f446-1f3fd", "name": "backhand index pointing up: medium skin tone", "alpha_code": ":point_up_2_tone3:", "aliases": "" }, "1f446-1f3fe": { "output": "1f446-1f3fe", "name": "backhand index pointing up: medium-dark skin tone", "alpha_code": ":point_up_2_tone4:", "aliases": "" }, "1f446-1f3ff": { "output": "1f446-1f3ff", "name": "backhand index pointing up: dark skin tone", "alpha_code": ":point_up_2_tone5:", "aliases": "" }, "1f447-1f3fb": { "output": "1f447-1f3fb", "name": "backhand index pointing down: light skin tone", "alpha_code": ":point_down_tone1:", "aliases": "" }, "1f447-1f3fc": { "output": "1f447-1f3fc", "name": "backhand index pointing down: medium-light skin tone", "alpha_code": ":point_down_tone2:", "aliases": "" }, "1f447-1f3fd": { "output": "1f447-1f3fd", "name": "backhand index pointing down: medium skin tone", "alpha_code": ":point_down_tone3:", "aliases": "" }, "1f447-1f3fe": { "output": "1f447-1f3fe", "name": "backhand index pointing down: medium-dark skin tone", "alpha_code": ":point_down_tone4:", "aliases": "" }, "1f447-1f3ff": { "output": "1f447-1f3ff", "name": "backhand index pointing down: dark skin tone", "alpha_code": ":point_down_tone5:", "aliases": "" }, "1f448-1f3fb": { "output": "1f448-1f3fb", "name": "backhand index pointing left: light skin tone", "alpha_code": ":point_left_tone1:", "aliases": "" }, "1f448-1f3fc": { "output": "1f448-1f3fc", "name": "backhand index pointing left: medium-light skin tone", "alpha_code": ":point_left_tone2:", "aliases": "" }, "1f448-1f3fd": { "output": "1f448-1f3fd", "name": "backhand index pointing left: medium skin tone", "alpha_code": ":point_left_tone3:", "aliases": "" }, "1f448-1f3fe": { "output": "1f448-1f3fe", "name": "backhand index pointing left: medium-dark skin tone", "alpha_code": ":point_left_tone4:", "aliases": "" }, "1f448-1f3ff": { "output": "1f448-1f3ff", "name": "backhand index pointing left: dark skin tone", "alpha_code": ":point_left_tone5:", "aliases": "" }, "1f449-1f3fb": { "output": "1f449-1f3fb", "name": "backhand index pointing right: light skin tone", "alpha_code": ":point_right_tone1:", "aliases": "" }, "1f449-1f3fc": { "output": "1f449-1f3fc", "name": "backhand index pointing right: medium-light skin tone", "alpha_code": ":point_right_tone2:", "aliases": "" }, "1f449-1f3fd": { "output": "1f449-1f3fd", "name": "backhand index pointing right: medium skin tone", "alpha_code": ":point_right_tone3:", "aliases": "" }, "1f449-1f3fe": { "output": "1f449-1f3fe", "name": "backhand index pointing right: medium-dark skin tone", "alpha_code": ":point_right_tone4:", "aliases": "" }, "1f449-1f3ff": { "output": "1f449-1f3ff", "name": "backhand index pointing right: dark skin tone", "alpha_code": ":point_right_tone5:", "aliases": "" }, "1f44c-1f3fb": { "output": "1f44c-1f3fb", "name": "OK hand: light skin tone", "alpha_code": ":ok_hand_tone1:", "aliases": "" }, "1f44c-1f3fc": { "output": "1f44c-1f3fc", "name": "OK hand: medium-light skin tone", "alpha_code": ":ok_hand_tone2:", "aliases": "" }, "1f93d-1f3fd": { "output": "1f93d-1f3fd", "name": "person playing water polo: medium skin tone", "alpha_code": ":person_playing_water_polo_tone3:", "aliases": ":water_polo_tone3:" }, "1f44c-1f3fd": { "output": "1f44c-1f3fd", "name": "OK hand: medium skin tone", "alpha_code": ":ok_hand_tone3:", "aliases": "" }, "1f44c-1f3fe": { "output": "1f44c-1f3fe", "name": "OK hand: medium-dark skin tone", "alpha_code": ":ok_hand_tone4:", "aliases": "" }, "1f93d-1f3fe": { "output": "1f93d-1f3fe", "name": "person playing water polo: medium-dark skin tone", "alpha_code": ":person_playing_water_polo_tone4:", "aliases": ":water_polo_tone4:" }, "1f44c-1f3ff": { "output": "1f44c-1f3ff", "name": "OK hand: dark skin tone", "alpha_code": ":ok_hand_tone5:", "aliases": "" }, "270c-1f3fb": { "output": "270c-1f3fb", "name": "victory hand: light skin tone", "alpha_code": ":v_tone1:", "aliases": "" }, "270c-1f3fc": { "output": "270c-1f3fc", "name": "victory hand: medium-light skin tone", "alpha_code": ":v_tone2:", "aliases": "" }, "270c-1f3fd": { "output": "270c-1f3fd", "name": "victory hand: medium skin tone", "alpha_code": ":v_tone3:", "aliases": "" }, "270c-1f3fe": { "output": "270c-1f3fe", "name": "victory hand: medium-dark skin tone", "alpha_code": ":v_tone4:", "aliases": "" }, "270c-1f3ff": { "output": "270c-1f3ff", "name": "victory hand: dark skin tone", "alpha_code": ":v_tone5:", "aliases": "" }, "1f44a-1f3fb": { "output": "1f44a-1f3fb", "name": "oncoming fist: light skin tone", "alpha_code": ":punch_tone1:", "aliases": "" }, "1f44a-1f3fc": { "output": "1f44a-1f3fc", "name": "oncoming fist: medium-light skin tone", "alpha_code": ":punch_tone2:", "aliases": "" }, "1f44a-1f3fd": { "output": "1f44a-1f3fd", "name": "oncoming fist: medium skin tone", "alpha_code": ":punch_tone3:", "aliases": "" }, "1f44a-1f3fe": { "output": "1f44a-1f3fe", "name": "oncoming fist: medium-dark skin tone", "alpha_code": ":punch_tone4:", "aliases": "" }, "1f44a-1f3ff": { "output": "1f44a-1f3ff", "name": "oncoming fist: dark skin tone", "alpha_code": ":punch_tone5:", "aliases": "" }, "270a-1f3fb": { "output": "270a-1f3fb", "name": "raised fist: light skin tone", "alpha_code": ":fist_tone1:", "aliases": "" }, "270a-1f3fc": { "output": "270a-1f3fc", "name": "raised fist: medium-light skin tone", "alpha_code": ":fist_tone2:", "aliases": "" }, "270a-1f3fd": { "output": "270a-1f3fd", "name": "raised fist: medium skin tone", "alpha_code": ":fist_tone3:", "aliases": "" }, "270a-1f3fe": { "output": "270a-1f3fe", "name": "raised fist: medium-dark skin tone", "alpha_code": ":fist_tone4:", "aliases": "" }, "270a-1f3ff": { "output": "270a-1f3ff", "name": "raised fist: dark skin tone", "alpha_code": ":fist_tone5:", "aliases": "" }, "270b-1f3fb": { "output": "270b-1f3fb", "name": "raised hand: light skin tone", "alpha_code": ":raised_hand_tone1:", "aliases": "" }, "270b-1f3fc": { "output": "270b-1f3fc", "name": "raised hand: medium-light skin tone", "alpha_code": ":raised_hand_tone2:", "aliases": "" }, "270b-1f3fd": { "output": "270b-1f3fd", "name": "raised hand: medium skin tone", "alpha_code": ":raised_hand_tone3:", "aliases": "" }, "270b-1f3fe": { "output": "270b-1f3fe", "name": "raised hand: medium-dark skin tone", "alpha_code": ":raised_hand_tone4:", "aliases": "" }, "270b-1f3ff": { "output": "270b-1f3ff", "name": "raised hand: dark skin tone", "alpha_code": ":raised_hand_tone5:", "aliases": "" }, "1f4aa-1f3fb": { "output": "1f4aa-1f3fb", "name": "flexed biceps: light skin tone", "alpha_code": ":muscle_tone1:", "aliases": "" }, "1f4aa-1f3fc": { "output": "1f4aa-1f3fc", "name": "flexed biceps: medium-light skin tone", "alpha_code": ":muscle_tone2:", "aliases": "" }, "1f4aa-1f3fd": { "output": "1f4aa-1f3fd", "name": "flexed biceps: medium skin tone", "alpha_code": ":muscle_tone3:", "aliases": "" }, "1f4aa-1f3fe": { "output": "1f4aa-1f3fe", "name": "flexed biceps: medium-dark skin tone", "alpha_code": ":muscle_tone4:", "aliases": "" }, "1f4aa-1f3ff": { "output": "1f4aa-1f3ff", "name": "flexed biceps: dark skin tone", "alpha_code": ":muscle_tone5:", "aliases": "" }, "1f450-1f3fb": { "output": "1f450-1f3fb", "name": "open hands: light skin tone", "alpha_code": ":open_hands_tone1:", "aliases": "" }, "1f450-1f3fc": { "output": "1f450-1f3fc", "name": "open hands: medium-light skin tone", "alpha_code": ":open_hands_tone2:", "aliases": "" }, "1f450-1f3fd": { "output": "1f450-1f3fd", "name": "open hands: medium skin tone", "alpha_code": ":open_hands_tone3:", "aliases": "" }, "1f450-1f3fe": { "output": "1f450-1f3fe", "name": "open hands: medium-dark skin tone", "alpha_code": ":open_hands_tone4:", "aliases": "" }, "1f450-1f3ff": { "output": "1f450-1f3ff", "name": "open hands: dark skin tone", "alpha_code": ":open_hands_tone5:", "aliases": "" }, "1f64f-1f3fb": { "output": "1f64f-1f3fb", "name": "folded hands: light skin tone", "alpha_code": ":pray_tone1:", "aliases": "" }, "1f93d-1f3ff": { "output": "1f93d-1f3ff", "name": "person playing water polo: dark skin tone", "alpha_code": ":person_playing_water_polo_tone5:", "aliases": ":water_polo_tone5:" }, "1f64f-1f3fc": { "output": "1f64f-1f3fc", "name": "folded hands: medium-light skin tone", "alpha_code": ":pray_tone2:", "aliases": "" }, "1f64f-1f3fd": { "output": "1f64f-1f3fd", "name": "folded hands: medium skin tone", "alpha_code": ":pray_tone3:", "aliases": "" }, "1f93e-1f3fb": { "output": "1f93e-1f3fb", "name": "person playing handball: light skin tone", "alpha_code": ":person_playing_handball_tone1:", "aliases": ":handball_tone1:" }, "1f64f-1f3fe": { "output": "1f64f-1f3fe", "name": "folded hands: medium-dark skin tone", "alpha_code": ":pray_tone4:", "aliases": "" }, "1f64f-1f3ff": { "output": "1f64f-1f3ff", "name": "folded hands: dark skin tone", "alpha_code": ":pray_tone5:", "aliases": "" }, "1f93e-1f3fc": { "output": "1f93e-1f3fc", "name": "person playing handball: medium-light skin tone", "alpha_code": ":person_playing_handball_tone2:", "aliases": ":handball_tone2:" }, "1f3c3-1f3fb": { "output": "1f3c3-1f3fb", "name": "person running: light skin tone", "alpha_code": ":person_running_tone1:", "aliases": ":runner_tone1:" }, "1f3c3-1f3fc": { "output": "1f3c3-1f3fc", "name": "person running: medium-light skin tone", "alpha_code": ":person_running_tone2:", "aliases": ":runner_tone2:" }, "1f3c3-1f3fd": { "output": "1f3c3-1f3fd", "name": "person running: medium skin tone", "alpha_code": ":person_running_tone3:", "aliases": ":runner_tone3:" }, "1f3c3-1f3fe": { "output": "1f3c3-1f3fe", "name": "person running: medium-dark skin tone", "alpha_code": ":person_running_tone4:", "aliases": ":runner_tone4:" }, "1f93e-1f3fd": { "output": "1f93e-1f3fd", "name": "person playing handball: medium skin tone", "alpha_code": ":person_playing_handball_tone3:", "aliases": ":handball_tone3:" }, "1f3c3-1f3ff": { "output": "1f3c3-1f3ff", "name": "person running: dark skin tone", "alpha_code": ":person_running_tone5:", "aliases": ":runner_tone5:" }, "1f6b6-1f3fb": { "output": "1f6b6-1f3fb", "name": "person walking: light skin tone", "alpha_code": ":person_walking_tone1:", "aliases": ":walking_tone1:" }, "1f6b6-1f3fc": { "output": "1f6b6-1f3fc", "name": "person walking: medium-light skin tone", "alpha_code": ":person_walking_tone2:", "aliases": ":walking_tone2:" }, "1f6b6-1f3fd": { "output": "1f6b6-1f3fd", "name": "person walking: medium skin tone", "alpha_code": ":person_walking_tone3:", "aliases": ":walking_tone3:" }, "1f6b6-1f3fe": { "output": "1f6b6-1f3fe", "name": "person walking: medium-dark skin tone", "alpha_code": ":person_walking_tone4:", "aliases": ":walking_tone4:" }, "1f6b6-1f3ff": { "output": "1f6b6-1f3ff", "name": "person walking: dark skin tone", "alpha_code": ":person_walking_tone5:", "aliases": ":walking_tone5:" }, "1f483-1f3fb": { "output": "1f483-1f3fb", "name": "woman dancing: light skin tone", "alpha_code": ":dancer_tone1:", "aliases": "" }, "1f93e-1f3fe": { "output": "1f93e-1f3fe", "name": "person playing handball: medium-dark skin tone", "alpha_code": ":person_playing_handball_tone4:", "aliases": ":handball_tone4:" }, "1f483-1f3fc": { "output": "1f483-1f3fc", "name": "woman dancing: medium-light skin tone", "alpha_code": ":dancer_tone2:", "aliases": "" }, "1f483-1f3fd": { "output": "1f483-1f3fd", "name": "woman dancing: medium skin tone", "alpha_code": ":dancer_tone3:", "aliases": "" }, "1f93e-1f3ff": { "output": "1f93e-1f3ff", "name": "person playing handball: dark skin tone", "alpha_code": ":person_playing_handball_tone5:", "aliases": ":handball_tone5:" }, "1f483-1f3fe": { "output": "1f483-1f3fe", "name": "woman dancing: medium-dark skin tone", "alpha_code": ":dancer_tone4:", "aliases": "" }, "1f483-1f3ff": { "output": "1f483-1f3ff", "name": "woman dancing: dark skin tone", "alpha_code": ":dancer_tone5:", "aliases": "" }, "1f939-1f3fb": { "output": "1f939-1f3fb", "name": "person juggling: light skin tone", "alpha_code": ":person_juggling_tone1:", "aliases": ":juggling_tone1:|:juggler_tone1:" }, "1f6a3-1f3fb": { "output": "1f6a3-1f3fb", "name": "person rowing boat: light skin tone", "alpha_code": ":person_rowing_boat_tone1:", "aliases": ":rowboat_tone1:" }, "1f6a3-1f3fc": { "output": "1f6a3-1f3fc", "name": "person rowing boat: medium-light skin tone", "alpha_code": ":person_rowing_boat_tone2:", "aliases": ":rowboat_tone2:" }, "1f6a3-1f3fd": { "output": "1f6a3-1f3fd", "name": "person rowing boat: medium skin tone", "alpha_code": ":person_rowing_boat_tone3:", "aliases": ":rowboat_tone3:" }, "1f6a3-1f3fe": { "output": "1f6a3-1f3fe", "name": "person rowing boat: medium-dark skin tone", "alpha_code": ":person_rowing_boat_tone4:", "aliases": ":rowboat_tone4:" }, "1f6a3-1f3ff": { "output": "1f6a3-1f3ff", "name": "person rowing boat: dark skin tone", "alpha_code": ":person_rowing_boat_tone5:", "aliases": ":rowboat_tone5:" }, "1f3ca-1f3fb": { "output": "1f3ca-1f3fb", "name": "person swimming: light skin tone", "alpha_code": ":person_swimming_tone1:", "aliases": ":swimmer_tone1:" }, "1f3ca-1f3fc": { "output": "1f3ca-1f3fc", "name": "person swimming: medium-light skin tone", "alpha_code": ":person_swimming_tone2:", "aliases": ":swimmer_tone2:" }, "1f939-1f3fc": { "output": "1f939-1f3fc", "name": "person juggling: medium-light skin tone", "alpha_code": ":person_juggling_tone2:", "aliases": ":juggling_tone2:|:juggler_tone2:" }, "1f3ca-1f3fd": { "output": "1f3ca-1f3fd", "name": "person swimming: medium skin tone", "alpha_code": ":person_swimming_tone3:", "aliases": ":swimmer_tone3:" }, "1f3ca-1f3fe": { "output": "1f3ca-1f3fe", "name": "person swimming: medium-dark skin tone", "alpha_code": ":person_swimming_tone4:", "aliases": ":swimmer_tone4:" }, "1f3ca-1f3ff": { "output": "1f3ca-1f3ff", "name": "person swimming: dark skin tone", "alpha_code": ":person_swimming_tone5:", "aliases": ":swimmer_tone5:" }, "1f939-1f3fd": { "output": "1f939-1f3fd", "name": "person juggling: medium skin tone", "alpha_code": ":person_juggling_tone3:", "aliases": ":juggling_tone3:|:juggler_tone3:" }, "1f3c4-1f3fb": { "output": "1f3c4-1f3fb", "name": "person surfing: light skin tone", "alpha_code": ":person_surfing_tone1:", "aliases": ":surfer_tone1:" }, "1f3c4-1f3fc": { "output": "1f3c4-1f3fc", "name": "person surfing: medium-light skin tone", "alpha_code": ":person_surfing_tone2:", "aliases": ":surfer_tone2:" }, "1f3c4-1f3fd": { "output": "1f3c4-1f3fd", "name": "person surfing: medium skin tone", "alpha_code": ":person_surfing_tone3:", "aliases": ":surfer_tone3:" }, "1f3c4-1f3fe": { "output": "1f3c4-1f3fe", "name": "person surfing: medium-dark skin tone", "alpha_code": ":person_surfing_tone4:", "aliases": ":surfer_tone4:" }, "1f3c4-1f3ff": { "output": "1f3c4-1f3ff", "name": "person surfing: dark skin tone", "alpha_code": ":person_surfing_tone5:", "aliases": ":surfer_tone5:" }, "1f6c0-1f3fb": { "output": "1f6c0-1f3fb", "name": "person taking bath: light skin tone", "alpha_code": ":bath_tone1:", "aliases": "" }, "1f6c0-1f3fc": { "output": "1f6c0-1f3fc", "name": "person taking bath: medium-light skin tone", "alpha_code": ":bath_tone2:", "aliases": "" }, "1f939-1f3fe": { "output": "1f939-1f3fe", "name": "person juggling: medium-dark skin tone", "alpha_code": ":person_juggling_tone4:", "aliases": ":juggling_tone4:|:juggler_tone4:" }, "1f6c0-1f3fd": { "output": "1f6c0-1f3fd", "name": "person taking bath: medium skin tone", "alpha_code": ":bath_tone3:", "aliases": "" }, "1f6c0-1f3fe": { "output": "1f6c0-1f3fe", "name": "person taking bath: medium-dark skin tone", "alpha_code": ":bath_tone4:", "aliases": "" }, "1f6c0-1f3ff": { "output": "1f6c0-1f3ff", "name": "person taking bath: dark skin tone", "alpha_code": ":bath_tone5:", "aliases": "" }, "1f939-1f3ff": { "output": "1f939-1f3ff", "name": "person juggling: dark skin tone", "alpha_code": ":person_juggling_tone5:", "aliases": ":juggling_tone5:|:juggler_tone5:" }, "1f6b4-1f3fb": { "output": "1f6b4-1f3fb", "name": "person biking: light skin tone", "alpha_code": ":person_biking_tone1:", "aliases": ":bicyclist_tone1:" }, "1f6b4-1f3fc": { "output": "1f6b4-1f3fc", "name": "person biking: medium-light skin tone", "alpha_code": ":person_biking_tone2:", "aliases": ":bicyclist_tone2:" }, "1f6b4-1f3fd": { "output": "1f6b4-1f3fd", "name": "person biking: medium skin tone", "alpha_code": ":person_biking_tone3:", "aliases": ":bicyclist_tone3:" }, "1f3f3-1f308": { "output": "1f3f3-fe0f-200d-1f308", "name": "rainbow flag", "alpha_code": ":rainbow_flag:", "aliases": ":gay_pride_flag:" }, "1f6b4-1f3fe": { "output": "1f6b4-1f3fe", "name": "person biking: medium-dark skin tone", "alpha_code": ":person_biking_tone4:", "aliases": ":bicyclist_tone4:" }, "1f6b4-1f3ff": { "output": "1f6b4-1f3ff", "name": "person biking: dark skin tone", "alpha_code": ":person_biking_tone5:", "aliases": ":bicyclist_tone5:" }, "1f6b5-1f3fb": { "output": "1f6b5-1f3fb", "name": "person mountain biking: light skin tone", "alpha_code": ":person_mountain_biking_tone1:", "aliases": ":mountain_bicyclist_tone1:" }, "1f6b5-1f3fc": { "output": "1f6b5-1f3fc", "name": "person mountain biking: medium-light skin tone", "alpha_code": ":person_mountain_biking_tone2:", "aliases": ":mountain_bicyclist_tone2:" }, "1f6b5-1f3fd": { "output": "1f6b5-1f3fd", "name": "person mountain biking: medium skin tone", "alpha_code": ":person_mountain_biking_tone3:", "aliases": ":mountain_bicyclist_tone3:" }, "1f6b5-1f3fe": { "output": "1f6b5-1f3fe", "name": "person mountain biking: medium-dark skin tone", "alpha_code": ":person_mountain_biking_tone4:", "aliases": ":mountain_bicyclist_tone4:" }, "1f6b5-1f3ff": { "output": "1f6b5-1f3ff", "name": "person mountain biking: dark skin tone", "alpha_code": ":person_mountain_biking_tone5:", "aliases": ":mountain_bicyclist_tone5:" }, "1f3c7-1f3fb": { "output": "1f3c7-1f3fb", "name": "horse racing: light skin tone", "alpha_code": ":horse_racing_tone1:", "aliases": "" }, "1f3c7-1f3fc": { "output": "1f3c7-1f3fc", "name": "horse racing: medium-light skin tone", "alpha_code": ":horse_racing_tone2:", "aliases": "" }, "1f3c7-1f3fd": { "output": "1f3c7-1f3fd", "name": "horse racing: medium skin tone", "alpha_code": ":horse_racing_tone3:", "aliases": "" }, "1f3c7-1f3fe": { "output": "1f3c7-1f3fe", "name": "horse racing: medium-dark skin tone", "alpha_code": ":horse_racing_tone4:", "aliases": "" }, "1f3c7-1f3ff": { "output": "1f3c7-1f3ff", "name": "horse racing: dark skin tone", "alpha_code": ":horse_racing_tone5:", "aliases": "" }, "270d-1f3fb": { "output": "270d-1f3fb", "name": "writing hand: light skin tone", "alpha_code": ":writing_hand_tone1:", "aliases": "" }, "270d-1f3fc": { "output": "270d-1f3fc", "name": "writing hand: medium-light skin tone", "alpha_code": ":writing_hand_tone2:", "aliases": "" }, "270d-1f3fd": { "output": "270d-1f3fd", "name": "writing hand: medium skin tone", "alpha_code": ":writing_hand_tone3:", "aliases": "" }, "270d-1f3fe": { "output": "270d-1f3fe", "name": "writing hand: medium-dark skin tone", "alpha_code": ":writing_hand_tone4:", "aliases": "" }, "270d-1f3ff": { "output": "270d-1f3ff", "name": "writing hand: dark skin tone", "alpha_code": ":writing_hand_tone5:", "aliases": "" }, "1f590-1f3fb": { "output": "1f590-1f3fb", "name": "hand with fingers splayed: light skin tone", "alpha_code": ":hand_splayed_tone1:", "aliases": ":raised_hand_with_fingers_splayed_tone1:" }, "1f590-1f3fc": { "output": "1f590-1f3fc", "name": "hand with fingers splayed: medium-light skin tone", "alpha_code": ":hand_splayed_tone2:", "aliases": ":raised_hand_with_fingers_splayed_tone2:" }, "1f590-1f3fd": { "output": "1f590-1f3fd", "name": "hand with fingers splayed: medium skin tone", "alpha_code": ":hand_splayed_tone3:", "aliases": ":raised_hand_with_fingers_splayed_tone3:" }, "1f590-1f3fe": { "output": "1f590-1f3fe", "name": "hand with fingers splayed: medium-dark skin tone", "alpha_code": ":hand_splayed_tone4:", "aliases": ":raised_hand_with_fingers_splayed_tone4:" }, "1f590-1f3ff": { "output": "1f590-1f3ff", "name": "hand with fingers splayed: dark skin tone", "alpha_code": ":hand_splayed_tone5:", "aliases": ":raised_hand_with_fingers_splayed_tone5:" }, "1f595-1f3fb": { "output": "1f595-1f3fb", "name": "middle finger: light skin tone", "alpha_code": ":middle_finger_tone1:", "aliases": ":reversed_hand_with_middle_finger_extended_tone1:" }, "1f595-1f3fc": { "output": "1f595-1f3fc", "name": "middle finger: medium-light skin tone", "alpha_code": ":middle_finger_tone2:", "aliases": ":reversed_hand_with_middle_finger_extended_tone2:" }, "1f595-1f3fd": { "output": "1f595-1f3fd", "name": "middle finger: medium skin tone", "alpha_code": ":middle_finger_tone3:", "aliases": ":reversed_hand_with_middle_finger_extended_tone3:" }, "1f595-1f3fe": { "output": "1f595-1f3fe", "name": "middle finger: medium-dark skin tone", "alpha_code": ":middle_finger_tone4:", "aliases": ":reversed_hand_with_middle_finger_extended_tone4:" }, "1f595-1f3ff": { "output": "1f595-1f3ff", "name": "middle finger: dark skin tone", "alpha_code": ":middle_finger_tone5:", "aliases": ":reversed_hand_with_middle_finger_extended_tone5:" }, "1f596-1f3fb": { "output": "1f596-1f3fb", "name": "vulcan salute: light skin tone", "alpha_code": ":vulcan_tone1:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers_tone1:" }, "1f596-1f3fc": { "output": "1f596-1f3fc", "name": "vulcan salute: medium-light skin tone", "alpha_code": ":vulcan_tone2:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers_tone2:" }, "1f596-1f3fd": { "output": "1f596-1f3fd", "name": "vulcan salute: medium skin tone", "alpha_code": ":vulcan_tone3:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers_tone3:" }, "1f596-1f3fe": { "output": "1f596-1f3fe", "name": "vulcan salute: medium-dark skin tone", "alpha_code": ":vulcan_tone4:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers_tone4:" }, "1f596-1f3ff": { "output": "1f596-1f3ff", "name": "vulcan salute: dark skin tone", "alpha_code": ":vulcan_tone5:", "aliases": ":raised_hand_with_part_between_middle_and_ring_fingers_tone5:" }, "1f468-1f468-1f466": { "output": "1f468-200d-1f468-200d-1f466", "name": "family: man, man, boy", "alpha_code": ":family_mmb:", "aliases": "" }, "1f468-1f468-1f466-1f466": { "output": "1f468-200d-1f468-200d-1f466-200d-1f466", "name": "family: man, man, boy, boy", "alpha_code": ":family_mmbb:", "aliases": "" }, "1f468-1f468-1f467": { "output": "1f468-200d-1f468-200d-1f467", "name": "family: man, man, girl", "alpha_code": ":family_mmg:", "aliases": "" }, "1f468-1f468-1f467-1f466": { "output": "1f468-200d-1f468-200d-1f467-200d-1f466", "name": "family: man, man, girl, boy", "alpha_code": ":family_mmgb:", "aliases": "" }, "1f468-1f468-1f467-1f467": { "output": "1f468-200d-1f468-200d-1f467-200d-1f467", "name": "family: man, man, girl, girl", "alpha_code": ":family_mmgg:", "aliases": "" }, "1f468-1f469-1f466-1f466": { "output": "1f468-200d-1f469-200d-1f466-200d-1f466", "name": "family: man, woman, boy, boy", "alpha_code": ":family_mwbb:", "aliases": "" }, "1f468-1f469-1f467": { "output": "1f468-200d-1f469-200d-1f467", "name": "family: man, woman, girl", "alpha_code": ":family_mwg:", "aliases": "" }, "1f468-1f469-1f467-1f466": { "output": "1f468-200d-1f469-200d-1f467-200d-1f466", "name": "family: man, woman, girl, boy", "alpha_code": ":family_mwgb:", "aliases": "" }, "1f468-1f469-1f467-1f467": { "output": "1f468-200d-1f469-200d-1f467-200d-1f467", "name": "family: man, woman, girl, girl", "alpha_code": ":family_mwgg:", "aliases": "" }, "1f469-1f469-1f466": { "output": "1f469-200d-1f469-200d-1f466", "name": "family: woman, woman, boy", "alpha_code": ":family_wwb:", "aliases": "" }, "1f469-1f469-1f466-1f466": { "output": "1f469-200d-1f469-200d-1f466-200d-1f466", "name": "family: woman, woman, boy, boy", "alpha_code": ":family_wwbb:", "aliases": "" }, "1f469-1f469-1f467": { "output": "1f469-200d-1f469-200d-1f467", "name": "family: woman, woman, girl", "alpha_code": ":family_wwg:", "aliases": "" }, "1f469-1f469-1f467-1f466": { "output": "1f469-200d-1f469-200d-1f467-200d-1f466", "name": "family: woman, woman, girl, boy", "alpha_code": ":family_wwgb:", "aliases": "" }, "1f469-1f469-1f467-1f467": { "output": "1f469-200d-1f469-200d-1f467-200d-1f467", "name": "family: woman, woman, girl, girl", "alpha_code": ":family_wwgg:", "aliases": "" }, "1f469-2764-1f469": { "output": "1f469-200d-2764-fe0f-200d-1f469", "name": "couple with heart: woman, woman", "alpha_code": ":couple_ww:", "aliases": ":couple_with_heart_ww:" }, "1f468-2764-1f468": { "output": "1f468-200d-2764-fe0f-200d-1f468", "name": "couple with heart: man, man", "alpha_code": ":couple_mm:", "aliases": ":couple_with_heart_mm:" }, "1f469-2764-1f48b-1f469": { "output": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469", "name": "kiss: woman, woman", "alpha_code": ":kiss_ww:", "aliases": ":couplekiss_ww:" }, "1f468-2764-1f48b-1f468": { "output": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468", "name": "kiss: man, man", "alpha_code": ":kiss_mm:", "aliases": ":couplekiss_mm:" }, "1f3fb": { "output": "1f3fb", "name": "light skin tone", "alpha_code": ":tone1:", "aliases": "" }, "1f3fc": { "output": "1f3fc", "name": "medium-light skin tone", "alpha_code": ":tone2:", "aliases": "" }, "1f3fd": { "output": "1f3fd", "name": "medium skin tone", "alpha_code": ":tone3:", "aliases": "" }, "1f3fe": { "output": "1f3fe", "name": "medium-dark skin tone", "alpha_code": ":tone4:", "aliases": "" }, "1f3ff": { "output": "1f3ff", "name": "dark skin tone", "alpha_code": ":tone5:", "aliases": "" }, "002a-20e3": { "output": "002a-fe0f-20e3", "name": "keycap: *", "alpha_code": ":asterisk:", "aliases": ":keycap_asterisk:" }, "23cf": { "output": "23cf-fe0f", "name": "eject button", "alpha_code": ":eject:", "aliases": ":eject_symbol:" }, "23ed": { "output": "23ed-fe0f", "name": "next track button", "alpha_code": ":track_next:", "aliases": ":next_track:" }, "23ee": { "output": "23ee-fe0f", "name": "last track button", "alpha_code": ":track_previous:", "aliases": ":previous_track:" }, "23ef": { "output": "23ef-fe0f", "name": "play or pause button", "alpha_code": ":play_pause:", "aliases": "" }, "1f441-1f5e8": { "output": "1f441-fe0f-200d-1f5e8-fe0f", "name": "eye in speech bubble", "alpha_code": ":eye_in_speech_bubble:", "aliases": "" }, "23f1": { "output": "23f1-fe0f", "name": "stopwatch", "alpha_code": ":stopwatch:", "aliases": "" }, "23f2": { "output": "23f2-fe0f", "name": "timer clock", "alpha_code": ":timer:", "aliases": ":timer_clock:" }, "23f8": { "output": "23f8-fe0f", "name": "pause button", "alpha_code": ":pause_button:", "aliases": ":double_vertical_bar:" }, "23f9": { "output": "23f9-fe0f", "name": "stop button", "alpha_code": ":stop_button:", "aliases": "" }, "23fa": { "output": "23fa-fe0f", "name": "record button", "alpha_code": ":record_button:", "aliases": "" }, "2602": { "output": "2602-fe0f", "name": "umbrella", "alpha_code": ":umbrella2:", "aliases": "" }, "2603": { "output": "2603-fe0f", "name": "snowman", "alpha_code": ":snowman2:", "aliases": "" }, "2604": { "output": "2604-fe0f", "name": "comet", "alpha_code": ":comet:", "aliases": "" }, "2618": { "output": "2618-fe0f", "name": "shamrock", "alpha_code": ":shamrock:", "aliases": "" }, "2620": { "output": "2620-fe0f", "name": "skull and crossbones", "alpha_code": ":skull_crossbones:", "aliases": ":skull_and_crossbones:" }, "2622": { "output": "2622-fe0f", "name": "radioactive", "alpha_code": ":radioactive:", "aliases": ":radioactive_sign:" }, "2623": { "output": "2623-fe0f", "name": "biohazard", "alpha_code": ":biohazard:", "aliases": ":biohazard_sign:" }, "2626": { "output": "2626-fe0f", "name": "orthodox cross", "alpha_code": ":orthodox_cross:", "aliases": "" }, "262a": { "output": "262a-fe0f", "name": "star and crescent", "alpha_code": ":star_and_crescent:", "aliases": "" }, "262e": { "output": "262e-fe0f", "name": "peace symbol", "alpha_code": ":peace:", "aliases": ":peace_symbol:" }, "262f": { "output": "262f-fe0f", "name": "yin yang", "alpha_code": ":yin_yang:", "aliases": "" }, "2638": { "output": "2638-fe0f", "name": "wheel of dharma", "alpha_code": ":wheel_of_dharma:", "aliases": "" }, "2639": { "output": "2639-fe0f", "name": "frowning face", "alpha_code": ":frowning2:", "aliases": ":white_frowning_face:" }, "2692": { "output": "2692-fe0f", "name": "hammer and pick", "alpha_code": ":hammer_pick:", "aliases": ":hammer_and_pick:" }, "2694": { "output": "2694-fe0f", "name": "crossed swords", "alpha_code": ":crossed_swords:", "aliases": "" }, "2696": { "output": "2696-fe0f", "name": "balance scale", "alpha_code": ":scales:", "aliases": "" }, "2697": { "output": "2697-fe0f", "name": "alembic", "alpha_code": ":alembic:", "aliases": "" }, "2699": { "output": "2699-fe0f", "name": "gear", "alpha_code": ":gear:", "aliases": "" }, "269b": { "output": "269b-fe0f", "name": "atom symbol", "alpha_code": ":atom:", "aliases": ":atom_symbol:" }, "269c": { "output": "269c-fe0f", "name": "fleur-de-lis", "alpha_code": ":fleur-de-lis:", "aliases": "" }, "26b0": { "output": "26b0-fe0f", "name": "coffin", "alpha_code": ":coffin:", "aliases": "" }, "26b1": { "output": "26b1-fe0f", "name": "funeral urn", "alpha_code": ":urn:", "aliases": ":funeral_urn:" }, "26c8": { "output": "26c8-fe0f", "name": "cloud with lightning and rain", "alpha_code": ":thunder_cloud_rain:", "aliases": ":thunder_cloud_and_rain:" }, "26cf": { "output": "26cf-fe0f", "name": "pick", "alpha_code": ":pick:", "aliases": "" }, "26d1": { "output": "26d1-fe0f", "name": "rescue worker\u2019s helmet", "alpha_code": ":helmet_with_cross:", "aliases": ":helmet_with_white_cross:" }, "26d3": { "output": "26d3-fe0f", "name": "chains", "alpha_code": ":chains:", "aliases": "" }, "26e9": { "output": "26e9-fe0f", "name": "shinto shrine", "alpha_code": ":shinto_shrine:", "aliases": "" }, "26f0": { "output": "26f0-fe0f", "name": "mountain", "alpha_code": ":mountain:", "aliases": "" }, "26f1": { "output": "26f1-fe0f", "name": "umbrella on ground", "alpha_code": ":beach_umbrella:", "aliases": ":umbrella_on_ground:" }, "26f4": { "output": "26f4-fe0f", "name": "ferry", "alpha_code": ":ferry:", "aliases": "" }, "26f7": { "output": "26f7-fe0f", "name": "skier", "alpha_code": ":skier:", "aliases": "" }, "26f8": { "output": "26f8-fe0f", "name": "ice skate", "alpha_code": ":ice_skate:", "aliases": "" }, "26f9": { "output": "26f9-fe0f", "name": "person bouncing ball", "alpha_code": ":person_bouncing_ball:", "aliases": ":basketball_player:|:person_with_ball:" }, "2721": { "output": "2721-fe0f", "name": "star of David", "alpha_code": ":star_of_david:", "aliases": "" }, "2763": { "output": "2763-fe0f", "name": "heart exclamation", "alpha_code": ":heart_exclamation:", "aliases": ":heavy_heart_exclamation_mark_ornament:" }, "1f324": { "output": "1f324-fe0f", "name": "sun behind small cloud", "alpha_code": ":white_sun_small_cloud:", "aliases": ":white_sun_with_small_cloud:" }, "1f325": { "output": "1f325-fe0f", "name": "sun behind large cloud", "alpha_code": ":white_sun_cloud:", "aliases": ":white_sun_behind_cloud:" }, "1f326": { "output": "1f326-fe0f", "name": "sun behind rain cloud", "alpha_code": ":white_sun_rain_cloud:", "aliases": ":white_sun_behind_cloud_with_rain:" }, "1f5b1": { "output": "1f5b1-fe0f", "name": "computer mouse", "alpha_code": ":mouse_three_button:", "aliases": ":three_button_mouse:" }, "1f385-1f3fb": { "output": "1f385-1f3fb", "name": "Santa Claus: light skin tone", "alpha_code": ":santa_tone1:", "aliases": "" }, "1f385-1f3fc": { "output": "1f385-1f3fc", "name": "Santa Claus: medium-light skin tone", "alpha_code": ":santa_tone2:", "aliases": "" }, "1f385-1f3fd": { "output": "1f385-1f3fd", "name": "Santa Claus: medium skin tone", "alpha_code": ":santa_tone3:", "aliases": "" }, "1f385-1f3fe": { "output": "1f385-1f3fe", "name": "Santa Claus: medium-dark skin tone", "alpha_code": ":santa_tone4:", "aliases": "" }, "1f385-1f3ff": { "output": "1f385-1f3ff", "name": "Santa Claus: dark skin tone", "alpha_code": ":santa_tone5:", "aliases": "" }, "1f918-1f3fb": { "output": "1f918-1f3fb", "name": "sign of the horns: light skin tone", "alpha_code": ":metal_tone1:", "aliases": ":sign_of_the_horns_tone1:" }, "1f918-1f3fc": { "output": "1f918-1f3fc", "name": "sign of the horns: medium-light skin tone", "alpha_code": ":metal_tone2:", "aliases": ":sign_of_the_horns_tone2:" }, "1f918-1f3fd": { "output": "1f918-1f3fd", "name": "sign of the horns: medium skin tone", "alpha_code": ":metal_tone3:", "aliases": ":sign_of_the_horns_tone3:" }, "1f918-1f3fe": { "output": "1f918-1f3fe", "name": "sign of the horns: medium-dark skin tone", "alpha_code": ":metal_tone4:", "aliases": ":sign_of_the_horns_tone4:" }, "1f918-1f3ff": { "output": "1f918-1f3ff", "name": "sign of the horns: dark skin tone", "alpha_code": ":metal_tone5:", "aliases": ":sign_of_the_horns_tone5:" }, "1f3cb-1f3fb": { "output": "1f3cb-1f3fb", "name": "person lifting weights: light skin tone", "alpha_code": ":person_lifting_weights_tone1:", "aliases": ":lifter_tone1:|:weight_lifter_tone1:" }, "1f3cb-1f3fc": { "output": "1f3cb-1f3fc", "name": "person lifting weights: medium-light skin tone", "alpha_code": ":person_lifting_weights_tone2:", "aliases": ":lifter_tone2:|:weight_lifter_tone2:" }, "1f3cb-1f3fd": { "output": "1f3cb-1f3fd", "name": "person lifting weights: medium skin tone", "alpha_code": ":person_lifting_weights_tone3:", "aliases": ":lifter_tone3:|:weight_lifter_tone3:" }, "1f3cb-1f3fe": { "output": "1f3cb-1f3fe", "name": "person lifting weights: medium-dark skin tone", "alpha_code": ":person_lifting_weights_tone4:", "aliases": ":lifter_tone4:|:weight_lifter_tone4:" }, "1f3cb-1f3ff": { "output": "1f3cb-1f3ff", "name": "person lifting weights: dark skin tone", "alpha_code": ":person_lifting_weights_tone5:", "aliases": ":lifter_tone5:|:weight_lifter_tone5:" }, "26f9-1f3fb": { "output": "26f9-1f3fb", "name": "person bouncing ball: light skin tone", "alpha_code": ":person_bouncing_ball_tone1:", "aliases": ":basketball_player_tone1:|:person_with_ball_tone1:" }, "26f9-1f3fc": { "output": "26f9-1f3fc", "name": "person bouncing ball: medium-light skin tone", "alpha_code": ":person_bouncing_ball_tone2:", "aliases": ":basketball_player_tone2:|:person_with_ball_tone2:" }, "26f9-1f3fd": { "output": "26f9-1f3fd", "name": "person bouncing ball: medium skin tone", "alpha_code": ":person_bouncing_ball_tone3:", "aliases": ":basketball_player_tone3:|:person_with_ball_tone3:" }, "26f9-1f3fe": { "output": "26f9-1f3fe", "name": "person bouncing ball: medium-dark skin tone", "alpha_code": ":person_bouncing_ball_tone4:", "aliases": ":basketball_player_tone4:|:person_with_ball_tone4:" }, "26f9-1f3ff": { "output": "26f9-1f3ff", "name": "person bouncing ball: dark skin tone", "alpha_code": ":person_bouncing_ball_tone5:", "aliases": ":basketball_player_tone5:|:person_with_ball_tone5:" }, "1f643": { "output": "1f643", "name": "upside-down face", "alpha_code": ":upside_down:", "aliases": ":upside_down_face:" }, "1f911": { "output": "1f911", "name": "money-mouth face", "alpha_code": ":money_mouth:", "aliases": ":money_mouth_face:" }, "1f913": { "output": "1f913", "name": "nerd face", "alpha_code": ":nerd:", "aliases": ":nerd_face:" }, "1f917": { "output": "1f917", "name": "hugging face", "alpha_code": ":hugging:", "aliases": ":hugging_face:" }, "1f644": { "output": "1f644", "name": "face with rolling eyes", "alpha_code": ":rolling_eyes:", "aliases": ":face_with_rolling_eyes:" }, "1f914": { "output": "1f914", "name": "thinking face", "alpha_code": ":thinking:", "aliases": ":thinking_face:" }, "1f910": { "output": "1f910", "name": "zipper-mouth face", "alpha_code": ":zipper_mouth:", "aliases": ":zipper_mouth_face:" }, "1f912": { "output": "1f912", "name": "face with thermometer", "alpha_code": ":thermometer_face:", "aliases": ":face_with_thermometer:" }, "1f915": { "output": "1f915", "name": "face with head-bandage", "alpha_code": ":head_bandage:", "aliases": ":face_with_head_bandage:" }, "1f916": { "output": "1f916", "name": "robot", "alpha_code": ":robot:", "aliases": ":robot_face:" }, "1f981": { "output": "1f981", "name": "lion", "alpha_code": ":lion_face:", "aliases": ":lion:" }, "1f984": { "output": "1f984", "name": "unicorn", "alpha_code": ":unicorn:", "aliases": ":unicorn_face:" }, "1f982": { "output": "1f982", "name": "scorpion", "alpha_code": ":scorpion:", "aliases": "" }, "1f980": { "output": "1f980", "name": "crab", "alpha_code": ":crab:", "aliases": "" }, "1f983": { "output": "1f983", "name": "turkey", "alpha_code": ":turkey:", "aliases": "" }, "1f9c0": { "output": "1f9c0", "name": "cheese wedge", "alpha_code": ":cheese:", "aliases": ":cheese_wedge:" }, "1f32d": { "output": "1f32d", "name": "hot dog", "alpha_code": ":hotdog:", "aliases": ":hot_dog:" }, "1f32e": { "output": "1f32e", "name": "taco", "alpha_code": ":taco:", "aliases": "" }, "1f32f": { "output": "1f32f", "name": "burrito", "alpha_code": ":burrito:", "aliases": "" }, "1f37f": { "output": "1f37f", "name": "popcorn", "alpha_code": ":popcorn:", "aliases": "" }, "1f37e": { "output": "1f37e", "name": "bottle with popping cork", "alpha_code": ":champagne:", "aliases": ":bottle_with_popping_cork:" }, "1f3f9": { "output": "1f3f9", "name": "bow and arrow", "alpha_code": ":bow_and_arrow:", "aliases": ":archery:" }, "1f3fa": { "output": "1f3fa", "name": "amphora", "alpha_code": ":amphora:", "aliases": "" }, "1f6d0": { "output": "1f6d0", "name": "place of worship", "alpha_code": ":place_of_worship:", "aliases": ":worship_symbol:" }, "1f54b": { "output": "1f54b", "name": "kaaba", "alpha_code": ":kaaba:", "aliases": "" }, "1f54c": { "output": "1f54c", "name": "mosque", "alpha_code": ":mosque:", "aliases": "" }, "1f54d": { "output": "1f54d", "name": "synagogue", "alpha_code": ":synagogue:", "aliases": "" }, "1f54e": { "output": "1f54e", "name": "menorah", "alpha_code": ":menorah:", "aliases": "" }, "1f4ff": { "output": "1f4ff", "name": "prayer beads", "alpha_code": ":prayer_beads:", "aliases": "" }, "1f3cf": { "output": "1f3cf", "name": "cricket game", "alpha_code": ":cricket_game:", "aliases": ":cricket_bat_ball:" }, "1f3d0": { "output": "1f3d0", "name": "volleyball", "alpha_code": ":volleyball:", "aliases": "" }, "1f3d1": { "output": "1f3d1", "name": "field hockey", "alpha_code": ":field_hockey:", "aliases": "" }, "1f3d2": { "output": "1f3d2", "name": "ice hockey", "alpha_code": ":hockey:", "aliases": "" }, "1f3d3": { "output": "1f3d3", "name": "ping pong", "alpha_code": ":ping_pong:", "aliases": ":table_tennis:" }, "1f3f8": { "output": "1f3f8", "name": "badminton", "alpha_code": ":badminton:", "aliases": "" }, "1f1e6-1f1fd": { "output": "1f1e6-1f1fd", "name": "flag: \u00c5land Islands", "alpha_code": ":flag_ax:", "aliases": ":ax:" }, "1f1f9-1f1e6": { "output": "1f1f9-1f1e6", "name": "flag: Tristan da Cunha", "alpha_code": ":flag_ta:", "aliases": ":ta:" }, "1f1ee-1f1f4": { "output": "1f1ee-1f1f4", "name": "flag: British Indian Ocean Territory", "alpha_code": ":flag_io:", "aliases": ":io:" }, "1f1e7-1f1f6": { "output": "1f1e7-1f1f6", "name": "flag: Caribbean Netherlands", "alpha_code": ":flag_bq:", "aliases": ":bq:" }, "1f1e8-1f1fd": { "output": "1f1e8-1f1fd", "name": "flag: Christmas Island", "alpha_code": ":flag_cx:", "aliases": ":cx:" }, "1f1e8-1f1e8": { "output": "1f1e8-1f1e8", "name": "flag: Cocos (Keeling) Islands", "alpha_code": ":flag_cc:", "aliases": ":cc:" }, "1f1ec-1f1ec": { "output": "1f1ec-1f1ec", "name": "flag: Guernsey", "alpha_code": ":flag_gg:", "aliases": ":gg:" }, "1f1ee-1f1f2": { "output": "1f1ee-1f1f2", "name": "flag: Isle of Man", "alpha_code": ":flag_im:", "aliases": ":im:" }, "1f1fe-1f1f9": { "output": "1f1fe-1f1f9", "name": "flag: Mayotte", "alpha_code": ":flag_yt:", "aliases": ":yt:" }, "1f1f3-1f1eb": { "output": "1f1f3-1f1eb", "name": "flag: Norfolk Island", "alpha_code": ":flag_nf:", "aliases": ":nf:" }, "1f1f5-1f1f3": { "output": "1f1f5-1f1f3", "name": "flag: Pitcairn Islands", "alpha_code": ":flag_pn:", "aliases": ":pn:" }, "1f1e7-1f1f1": { "output": "1f1e7-1f1f1", "name": "flag: St. Barth\u00e9lemy", "alpha_code": ":flag_bl:", "aliases": ":bl:" }, "1f1f5-1f1f2": { "output": "1f1f5-1f1f2", "name": "flag: St. Pierre & Miquelon", "alpha_code": ":flag_pm:", "aliases": ":pm:" }, "1f1ec-1f1f8": { "output": "1f1ec-1f1f8", "name": "flag: South Georgia & South Sandwich Islands", "alpha_code": ":flag_gs:", "aliases": ":gs:" }, "1f1f9-1f1f0": { "output": "1f1f9-1f1f0", "name": "flag: Tokelau", "alpha_code": ":flag_tk:", "aliases": ":tk:" }, "1f1e7-1f1fb": { "output": "1f1e7-1f1fb", "name": "flag: Bouvet Island", "alpha_code": ":flag_bv:", "aliases": ":bv:" }, "1f1ed-1f1f2": { "output": "1f1ed-1f1f2", "name": "flag: Heard & McDonald Islands", "alpha_code": ":flag_hm:", "aliases": ":hm:" }, "1f1f8-1f1ef": { "output": "1f1f8-1f1ef", "name": "flag: Svalbard & Jan Mayen", "alpha_code": ":flag_sj:", "aliases": ":sj:" }, "1f1fa-1f1f2": { "output": "1f1fa-1f1f2", "name": "flag: U.S. Outlying Islands", "alpha_code": ":flag_um:", "aliases": ":um:" }, "1f1ee-1f1e8": { "output": "1f1ee-1f1e8", "name": "flag: Canary Islands", "alpha_code": ":flag_ic:", "aliases": ":ic:" }, "1f1ea-1f1e6": { "output": "1f1ea-1f1e6", "name": "flag: Ceuta & Melilla", "alpha_code": ":flag_ea:", "aliases": ":ea:" }, "1f1e8-1f1f5": { "output": "1f1e8-1f1f5", "name": "flag: Clipperton Island", "alpha_code": ":flag_cp:", "aliases": ":cp:" }, "1f1e9-1f1ec": { "output": "1f1e9-1f1ec", "name": "flag: Diego Garcia", "alpha_code": ":flag_dg:", "aliases": ":dg:" }, "1f1e6-1f1f8": { "output": "1f1e6-1f1f8", "name": "flag: American Samoa", "alpha_code": ":flag_as:", "aliases": ":as:" }, "1f1e6-1f1f6": { "output": "1f1e6-1f1f6", "name": "flag: Antarctica", "alpha_code": ":flag_aq:", "aliases": ":aq:" }, "1f1fb-1f1ec": { "output": "1f1fb-1f1ec", "name": "flag: British Virgin Islands", "alpha_code": ":flag_vg:", "aliases": ":vg:" }, "1f1e8-1f1f0": { "output": "1f1e8-1f1f0", "name": "flag: Cook Islands", "alpha_code": ":flag_ck:", "aliases": ":ck:" }, "1f1e8-1f1fc": { "output": "1f1e8-1f1fc", "name": "flag: Cura\u00e7ao", "alpha_code": ":flag_cw:", "aliases": ":cw:" }, "1f1ea-1f1fa": { "output": "1f1ea-1f1fa", "name": "flag: European Union", "alpha_code": ":flag_eu:", "aliases": ":eu:" }, "1f1ec-1f1eb": { "output": "1f1ec-1f1eb", "name": "flag: French Guiana", "alpha_code": ":flag_gf:", "aliases": ":gf:" }, "1f1f9-1f1eb": { "output": "1f1f9-1f1eb", "name": "flag: French Southern Territories", "alpha_code": ":flag_tf:", "aliases": ":tf:" }, "1f1ec-1f1f5": { "output": "1f1ec-1f1f5", "name": "flag: Guadeloupe", "alpha_code": ":flag_gp:", "aliases": ":gp:" }, "1f1f2-1f1f6": { "output": "1f1f2-1f1f6", "name": "flag: Martinique", "alpha_code": ":flag_mq:", "aliases": ":mq:" }, "1f1f2-1f1f5": { "output": "1f1f2-1f1f5", "name": "flag: Northern Mariana Islands", "alpha_code": ":flag_mp:", "aliases": ":mp:" }, "1f1f7-1f1ea": { "output": "1f1f7-1f1ea", "name": "flag: R\u00e9union", "alpha_code": ":flag_re:", "aliases": ":re:" }, "1f1f8-1f1fd": { "output": "1f1f8-1f1fd", "name": "flag: Sint Maarten", "alpha_code": ":flag_sx:", "aliases": ":sx:" }, "1f1f8-1f1f8": { "output": "1f1f8-1f1f8", "name": "flag: South Sudan", "alpha_code": ":flag_ss:", "aliases": ":ss:" }, "1f1f9-1f1e8": { "output": "1f1f9-1f1e8", "name": "flag: Turks & Caicos Islands", "alpha_code": ":flag_tc:", "aliases": ":tc:" }, "1f1f2-1f1eb": { "output": "1f1f2-1f1eb", "name": "flag: St. Martin", "alpha_code": ":flag_mf:", "aliases": ":mf:" }, "1f575-1f3fb": { "output": "1f575-1f3fb", "name": "detective: light skin tone", "alpha_code": ":detective_tone1:", "aliases": ":spy_tone1:|:sleuth_or_spy_tone1:" }, "1f575-1f3fc": { "output": "1f575-1f3fc", "name": "detective: medium-light skin tone", "alpha_code": ":detective_tone2:", "aliases": ":spy_tone2:|:sleuth_or_spy_tone2:" }, "1f575-1f3fd": { "output": "1f575-1f3fd", "name": "detective: medium skin tone", "alpha_code": ":detective_tone3:", "aliases": ":spy_tone3:|:sleuth_or_spy_tone3:" }, "1f575-1f3fe": { "output": "1f575-1f3fe", "name": "detective: medium-dark skin tone", "alpha_code": ":detective_tone4:", "aliases": ":spy_tone4:|:sleuth_or_spy_tone4:" }, "1f575-1f3ff": { "output": "1f575-1f3ff", "name": "detective: dark skin tone", "alpha_code": ":detective_tone5:", "aliases": ":spy_tone5:|:sleuth_or_spy_tone5:" }, "1f941": { "output": "1f941", "name": "drum", "alpha_code": ":drum:", "aliases": ":drum_with_drumsticks:" }, "1f990": { "output": "1f990", "name": "shrimp", "alpha_code": ":shrimp:", "aliases": "" }, "1f991": { "output": "1f991", "name": "squid", "alpha_code": ":squid:", "aliases": "" }, "1f95a": { "output": "1f95a", "name": "egg", "alpha_code": ":egg:", "aliases": "" }, "1f95b": { "output": "1f95b", "name": "glass of milk", "alpha_code": ":milk:", "aliases": ":glass_of_milk:" }, "1f95c": { "output": "1f95c", "name": "peanuts", "alpha_code": ":peanuts:", "aliases": ":shelled_peanut:" }, "1f95d": { "output": "1f95d", "name": "kiwi fruit", "alpha_code": ":kiwi:", "aliases": ":kiwifruit:" }, "1f95e": { "output": "1f95e", "name": "pancakes", "alpha_code": ":pancakes:", "aliases": "" }, "1f1fc": { "output": "1f1fc", "name": "regional indicator symbol letter w", "alpha_code": ":regional_indicator_w:", "aliases": "" }, "1f1fb": { "output": "1f1fb", "name": "regional indicator symbol letter v", "alpha_code": ":regional_indicator_v:", "aliases": "" }, "1f1fa": { "output": "1f1fa", "name": "regional indicator symbol letter u", "alpha_code": ":regional_indicator_u:", "aliases": "" }, "1f1f9": { "output": "1f1f9", "name": "regional indicator symbol letter t", "alpha_code": ":regional_indicator_t:", "aliases": "" }, "1f1f8": { "output": "1f1f8", "name": "regional indicator symbol letter s", "alpha_code": ":regional_indicator_s:", "aliases": "" }, "1f1f7": { "output": "1f1f7", "name": "regional indicator symbol letter r", "alpha_code": ":regional_indicator_r:", "aliases": "" }, "1f1f6": { "output": "1f1f6", "name": "regional indicator symbol letter q", "alpha_code": ":regional_indicator_q:", "aliases": "" }, "1f1f5": { "output": "1f1f5", "name": "regional indicator symbol letter p", "alpha_code": ":regional_indicator_p:", "aliases": "" }, "1f1f4": { "output": "1f1f4", "name": "regional indicator symbol letter o", "alpha_code": ":regional_indicator_o:", "aliases": "" }, "1f1f3": { "output": "1f1f3", "name": "regional indicator symbol letter n", "alpha_code": ":regional_indicator_n:", "aliases": "" }, "1f1f2": { "output": "1f1f2", "name": "regional indicator symbol letter m", "alpha_code": ":regional_indicator_m:", "aliases": "" }, "1f1f1": { "output": "1f1f1", "name": "regional indicator symbol letter l", "alpha_code": ":regional_indicator_l:", "aliases": "" }, "1f1f0": { "output": "1f1f0", "name": "regional indicator symbol letter k", "alpha_code": ":regional_indicator_k:", "aliases": "" }, "1f1ef": { "output": "1f1ef", "name": "regional indicator symbol letter j", "alpha_code": ":regional_indicator_j:", "aliases": "" }, "1f1ee": { "output": "1f1ee", "name": "regional indicator symbol letter i", "alpha_code": ":regional_indicator_i:", "aliases": "" }, "1f1ed": { "output": "1f1ed", "name": "regional indicator symbol letter h", "alpha_code": ":regional_indicator_h:", "aliases": "" }, "1f1ec": { "output": "1f1ec", "name": "regional indicator symbol letter g", "alpha_code": ":regional_indicator_g:", "aliases": "" }, "1f1eb": { "output": "1f1eb", "name": "regional indicator symbol letter f", "alpha_code": ":regional_indicator_f:", "aliases": "" }, "1f1ea": { "output": "1f1ea", "name": "regional indicator symbol letter e", "alpha_code": ":regional_indicator_e:", "aliases": "" }, "1f1e9": { "output": "1f1e9", "name": "regional indicator symbol letter d", "alpha_code": ":regional_indicator_d:", "aliases": "" }, "1f1e8": { "output": "1f1e8", "name": "regional indicator symbol letter c", "alpha_code": ":regional_indicator_c:", "aliases": "" }, "1f1e7": { "output": "1f1e7", "name": "regional indicator symbol letter b", "alpha_code": ":regional_indicator_b:", "aliases": "" }, "1f1e6": { "output": "1f1e6", "name": "regional indicator symbol letter a", "alpha_code": ":regional_indicator_a:", "aliases": "" }, "0039": { "output": "0039-fe0f", "name": "digit nine", "alpha_code": ":digit_nine:", "aliases": "" }, "0038": { "output": "0038-fe0f", "name": "digit eight", "alpha_code": ":digit_eight:", "aliases": "" }, "0037": { "output": "0037-fe0f", "name": "digit seven", "alpha_code": ":digit_seven:", "aliases": "" }, "0036": { "output": "0036-fe0f", "name": "digit six", "alpha_code": ":digit_six:", "aliases": "" }, "0035": { "output": "0035-fe0f", "name": "digit five", "alpha_code": ":digit_five:", "aliases": "" }, "0034": { "output": "0034-fe0f", "name": "digit four", "alpha_code": ":digit_four:", "aliases": "" }, "0033": { "output": "0033-fe0f", "name": "digit three", "alpha_code": ":digit_three:", "aliases": "" }, "0032": { "output": "0032-fe0f", "name": "digit two", "alpha_code": ":digit_two:", "aliases": "" }, "0031": { "output": "0031-fe0f", "name": "digit one", "alpha_code": ":digit_one:", "aliases": "" }, "0030": { "output": "0030-fe0f", "name": "digit zero", "alpha_code": ":digit_zero:", "aliases": "" }, "1f46f-2642": { "output": "1f46f-200d-2642-fe0f", "name": "men with bunny ears", "alpha_code": ":men_with_bunny_ears_partying:", "aliases": "" }, "1f46f-2640": { "output": "1f46f-200d-2640-fe0f", "name": "women with bunny ears", "alpha_code": ":women_with_bunny_ears_partying:", "aliases": "" }, "1f3c2-1f3fb": { "output": "1f3c2-1f3fb", "name": "snowboarder: light skin tone", "alpha_code": ":snowboarder_tone1:", "aliases": ":snowboarder_light_skin_tone:" }, "1f3cc-2642": { "output": "1f3cc-fe0f-200d-2642-fe0f", "name": "man golfing", "alpha_code": ":man_golfing:", "aliases": "" }, "1f3cc-1f3fb-2642": { "output": "1f3cc-1f3fb-200d-2642-fe0f", "name": "man golfing: light skin tone", "alpha_code": ":man_golfing_tone1:", "aliases": ":man_golfing_light_skin_tone:" }, "1f3cc-1f3fc-2642": { "output": "1f3cc-1f3fc-200d-2642-fe0f", "name": "man golfing: medium-light skin tone", "alpha_code": ":man_golfing_tone2:", "aliases": ":man_golfing_medium_light_skin_tone:" }, "1f3cc-1f3fd-2642": { "output": "1f3cc-1f3fd-200d-2642-fe0f", "name": "man golfing: medium skin tone", "alpha_code": ":man_golfing_tone3:", "aliases": ":man_golfing_medium_skin_tone:" }, "1f3cc-1f3fe-2642": { "output": "1f3cc-1f3fe-200d-2642-fe0f", "name": "man golfing: medium-dark skin tone", "alpha_code": ":man_golfing_tone4:", "aliases": ":man_golfing_medium_dark_skin_tone:" }, "1f3cc-1f3ff-2642": { "output": "1f3cc-1f3ff-200d-2642-fe0f", "name": "man golfing: dark skin tone", "alpha_code": ":man_golfing_tone5:", "aliases": ":man_golfing_dark_skin_tone:" }, "1f3cc-2640": { "output": "1f3cc-fe0f-200d-2640-fe0f", "name": "woman golfing", "alpha_code": ":woman_golfing:", "aliases": "" }, "1f3cc-1f3fb-2640": { "output": "1f3cc-1f3fb-200d-2640-fe0f", "name": "woman golfing: light skin tone", "alpha_code": ":woman_golfing_tone1:", "aliases": ":woman_golfing_light_skin_tone:" }, "1f3cc-1f3fc-2640": { "output": "1f3cc-1f3fc-200d-2640-fe0f", "name": "woman golfing: medium-light skin tone", "alpha_code": ":woman_golfing_tone2:", "aliases": ":woman_golfing_medium_light_skin_tone:" }, "1f3cc-1f3fd-2640": { "output": "1f3cc-1f3fd-200d-2640-fe0f", "name": "woman golfing: medium skin tone", "alpha_code": ":woman_golfing_tone3:", "aliases": ":woman_golfing_medium_skin_tone:" }, "1f3cc-1f3fe-2640": { "output": "1f3cc-1f3fe-200d-2640-fe0f", "name": "woman golfing: medium-dark skin tone", "alpha_code": ":woman_golfing_tone4:", "aliases": ":woman_golfing_medium_dark_skin_tone:" }, "1f3cc-1f3ff-2640": { "output": "1f3cc-1f3ff-200d-2640-fe0f", "name": "woman golfing: dark skin tone", "alpha_code": ":woman_golfing_tone5:", "aliases": ":woman_golfing_dark_skin_tone:" }, "1f93c-2642": { "output": "1f93c-200d-2642-fe0f", "name": "men wrestling", "alpha_code": ":men_wrestling:", "aliases": "" }, "1f93c-2640": { "output": "1f93c-200d-2640-fe0f", "name": "women wrestling", "alpha_code": ":women_wrestling:", "aliases": "" }, "1f939-1f3ff-2642": { "output": "1f939-1f3ff-200d-2642-fe0f", "name": "man juggling: dark skin tone", "alpha_code": ":man_juggling_tone5:", "aliases": ":man_juggling_dark_skin_tone:" }, "1f939-1f3fe-2642": { "output": "1f939-1f3fe-200d-2642-fe0f", "name": "man juggling: medium-dark skin tone", "alpha_code": ":man_juggling_tone4:", "aliases": ":man_juggling_medium_dark_skin_tone:" }, "1f939-1f3fd-2642": { "output": "1f939-1f3fd-200d-2642-fe0f", "name": "man juggling: medium skin tone", "alpha_code": ":man_juggling_tone3:", "aliases": ":man_juggling_medium_skin_tone:" }, "1f939-1f3fc-2642": { "output": "1f939-1f3fc-200d-2642-fe0f", "name": "man juggling: medium-light skin tone", "alpha_code": ":man_juggling_tone2:", "aliases": ":man_juggling_medium_light_skin_tone:" }, "1f939-1f3fb-2642": { "output": "1f939-1f3fb-200d-2642-fe0f", "name": "man juggling: light skin tone", "alpha_code": ":man_juggling_tone1:", "aliases": ":man_juggling_light_skin_tone:" }, "1f939-2642": { "output": "1f939-200d-2642-fe0f", "name": "man juggling", "alpha_code": ":man_juggling:", "aliases": "" }, "1f939-1f3ff-2640": { "output": "1f939-1f3ff-200d-2640-fe0f", "name": "woman juggling: dark skin tone", "alpha_code": ":woman_juggling_tone5:", "aliases": ":woman_juggling_dark_skin_tone:" }, "1f939-1f3fe-2640": { "output": "1f939-1f3fe-200d-2640-fe0f", "name": "woman juggling: medium-dark skin tone", "alpha_code": ":woman_juggling_tone4:", "aliases": ":woman_juggling_medium_dark_skin_tone:" }, "1f939-1f3fd-2640": { "output": "1f939-1f3fd-200d-2640-fe0f", "name": "woman juggling: medium skin tone", "alpha_code": ":woman_juggling_tone3:", "aliases": ":woman_juggling_medium_skin_tone:" }, "1f939-1f3fc-2640": { "output": "1f939-1f3fc-200d-2640-fe0f", "name": "woman juggling: medium-light skin tone", "alpha_code": ":woman_juggling_tone2:", "aliases": ":woman_juggling_medium_light_skin_tone:" }, "1f939-1f3fb-2640": { "output": "1f939-1f3fb-200d-2640-fe0f", "name": "woman juggling: light skin tone", "alpha_code": ":woman_juggling_tone1:", "aliases": ":woman_juggling_light_skin_tone:" }, "1f939-2640": { "output": "1f939-200d-2640-fe0f", "name": "woman juggling", "alpha_code": ":woman_juggling:", "aliases": "" }, "1f93e-1f3ff-2642": { "output": "1f93e-1f3ff-200d-2642-fe0f", "name": "man playing handball: dark skin tone", "alpha_code": ":man_playing_handball_tone5:", "aliases": ":man_playing_handball_dark_skin_tone:" }, "1f93e-1f3fe-2642": { "output": "1f93e-1f3fe-200d-2642-fe0f", "name": "man playing handball: medium-dark skin tone", "alpha_code": ":man_playing_handball_tone4:", "aliases": ":man_playing_handball_medium_dark_skin_tone:" }, "1f93e-1f3fd-2642": { "output": "1f93e-1f3fd-200d-2642-fe0f", "name": "man playing handball: medium skin tone", "alpha_code": ":man_playing_handball_tone3:", "aliases": ":man_playing_handball_medium_skin_tone:" }, "1f93e-1f3fc-2642": { "output": "1f93e-1f3fc-200d-2642-fe0f", "name": "man playing handball: medium-light skin tone", "alpha_code": ":man_playing_handball_tone2:", "aliases": ":man_playing_handball_medium_light_skin_tone:" }, "1f93e-1f3fb-2642": { "output": "1f93e-1f3fb-200d-2642-fe0f", "name": "man playing handball: light skin tone", "alpha_code": ":man_playing_handball_tone1:", "aliases": ":man_playing_handball_light_skin_tone:" }, "1f93e-2642": { "output": "1f93e-200d-2642-fe0f", "name": "man playing handball", "alpha_code": ":man_playing_handball:", "aliases": "" }, "1f93e-1f3ff-2640": { "output": "1f93e-1f3ff-200d-2640-fe0f", "name": "woman playing handball: dark skin tone", "alpha_code": ":woman_playing_handball_tone5:", "aliases": ":woman_playing_handball_dark_skin_tone:" }, "1f93e-1f3fe-2640": { "output": "1f93e-1f3fe-200d-2640-fe0f", "name": "woman playing handball: medium-dark skin tone", "alpha_code": ":woman_playing_handball_tone4:", "aliases": ":woman_playing_handball_medium_dark_skin_tone:" }, "1f93e-1f3fd-2640": { "output": "1f93e-1f3fd-200d-2640-fe0f", "name": "woman playing handball: medium skin tone", "alpha_code": ":woman_playing_handball_tone3:", "aliases": ":woman_playing_handball_medium_skin_tone:" }, "1f93e-1f3fc-2640": { "output": "1f93e-1f3fc-200d-2640-fe0f", "name": "woman playing handball: medium-light skin tone", "alpha_code": ":woman_playing_handball_tone2:", "aliases": ":woman_playing_handball_medium_light_skin_tone:" }, "1f93e-1f3fb-2640": { "output": "1f93e-1f3fb-200d-2640-fe0f", "name": "woman playing handball: light skin tone", "alpha_code": ":woman_playing_handball_tone1:", "aliases": ":woman_playing_handball_light_skin_tone:" }, "1f93e-2640": { "output": "1f93e-200d-2640-fe0f", "name": "woman playing handball", "alpha_code": ":woman_playing_handball:", "aliases": "" }, "1f93d-1f3ff-2642": { "output": "1f93d-1f3ff-200d-2642-fe0f", "name": "man playing water polo: dark skin tone", "alpha_code": ":man_playing_water_polo_tone5:", "aliases": ":man_playing_water_polo_dark_skin_tone:" }, "1f93d-1f3fe-2642": { "output": "1f93d-1f3fe-200d-2642-fe0f", "name": "man playing water polo: medium-dark skin tone", "alpha_code": ":man_playing_water_polo_tone4:", "aliases": ":man_playing_water_polo_medium_dark_skin_tone:" }, "1f93d-1f3fd-2642": { "output": "1f93d-1f3fd-200d-2642-fe0f", "name": "man playing water polo: medium skin tone", "alpha_code": ":man_playing_water_polo_tone3:", "aliases": ":man_playing_water_polo_medium_skin_tone:" }, "1f93d-1f3fc-2642": { "output": "1f93d-1f3fc-200d-2642-fe0f", "name": "man playing water polo: medium-light skin tone", "alpha_code": ":man_playing_water_polo_tone2:", "aliases": ":man_playing_water_polo_medium_light_skin_tone:" }, "1f93d-1f3fb-2642": { "output": "1f93d-1f3fb-200d-2642-fe0f", "name": "man playing water polo: light skin tone", "alpha_code": ":man_playing_water_polo_tone1:", "aliases": ":man_playing_water_polo_light_skin_tone:" }, "1f93d-2642": { "output": "1f93d-200d-2642-fe0f", "name": "man playing water polo", "alpha_code": ":man_playing_water_polo:", "aliases": "" }, "1f93d-1f3ff-2640": { "output": "1f93d-1f3ff-200d-2640-fe0f", "name": "woman playing water polo: dark skin tone", "alpha_code": ":woman_playing_water_polo_tone5:", "aliases": ":woman_playing_water_polo_dark_skin_tone:" }, "1f93d-1f3fe-2640": { "output": "1f93d-1f3fe-200d-2640-fe0f", "name": "woman playing water polo: medium-dark skin tone", "alpha_code": ":woman_playing_water_polo_tone4:", "aliases": ":woman_playing_water_polo_medium_dark_skin_tone:" }, "1f93d-1f3fd-2640": { "output": "1f93d-1f3fd-200d-2640-fe0f", "name": "woman playing water polo: medium skin tone", "alpha_code": ":woman_playing_water_polo_tone3:", "aliases": ":woman_playing_water_polo_medium_skin_tone:" }, "1f93d-1f3fc-2640": { "output": "1f93d-1f3fc-200d-2640-fe0f", "name": "woman playing water polo: medium-light skin tone", "alpha_code": ":woman_playing_water_polo_tone2:", "aliases": ":woman_playing_water_polo_medium_light_skin_tone:" }, "1f93d-1f3fb-2640": { "output": "1f93d-1f3fb-200d-2640-fe0f", "name": "woman playing water polo: light skin tone", "alpha_code": ":woman_playing_water_polo_tone1:", "aliases": ":woman_playing_water_polo_light_skin_tone:" }, "1f93d-2640": { "output": "1f93d-200d-2640-fe0f", "name": "woman playing water polo", "alpha_code": ":woman_playing_water_polo:", "aliases": "" }, "1f938-1f3ff-2642": { "output": "1f938-1f3ff-200d-2642-fe0f", "name": "man cartwheeling: dark skin tone", "alpha_code": ":man_cartwheeling_tone5:", "aliases": ":man_cartwheeling_dark_skin_tone:" }, "1f938-1f3fe-2642": { "output": "1f938-1f3fe-200d-2642-fe0f", "name": "man cartwheeling: medium-dark skin tone", "alpha_code": ":man_cartwheeling_tone4:", "aliases": ":man_cartwheeling_medium_dark_skin_tone:" }, "1f938-1f3fd-2642": { "output": "1f938-1f3fd-200d-2642-fe0f", "name": "man cartwheeling: medium skin tone", "alpha_code": ":man_cartwheeling_tone3:", "aliases": ":man_cartwheeling_medium_skin_tone:" }, "1f938-1f3fc-2642": { "output": "1f938-1f3fc-200d-2642-fe0f", "name": "man cartwheeling: medium-light skin tone", "alpha_code": ":man_cartwheeling_tone2:", "aliases": ":man_cartwheeling_medium_light_skin_tone:" }, "1f938-1f3fb-2642": { "output": "1f938-1f3fb-200d-2642-fe0f", "name": "man cartwheeling: light skin tone", "alpha_code": ":man_cartwheeling_tone1:", "aliases": ":man_cartwheeling_light_skin_tone:" }, "1f938-2642": { "output": "1f938-200d-2642-fe0f", "name": "man cartwheeling", "alpha_code": ":man_cartwheeling:", "aliases": "" }, "1f938-1f3ff-2640": { "output": "1f938-1f3ff-200d-2640-fe0f", "name": "woman cartwheeling: dark skin tone", "alpha_code": ":woman_cartwheeling_tone5:", "aliases": ":woman_cartwheeling_dark_skin_tone:" }, "1f938-1f3fe-2640": { "output": "1f938-1f3fe-200d-2640-fe0f", "name": "woman cartwheeling: medium-dark skin tone", "alpha_code": ":woman_cartwheeling_tone4:", "aliases": ":woman_cartwheeling_medium_dark_skin_tone:" }, "1f938-1f3fd-2640": { "output": "1f938-1f3fd-200d-2640-fe0f", "name": "woman cartwheeling: medium skin tone", "alpha_code": ":woman_cartwheeling_tone3:", "aliases": ":woman_cartwheeling_medium_skin_tone:" }, "1f938-1f3fc-2640": { "output": "1f938-1f3fc-200d-2640-fe0f", "name": "woman cartwheeling: medium-light skin tone", "alpha_code": ":woman_cartwheeling_tone2:", "aliases": ":woman_cartwheeling_medium_light_skin_tone:" }, "1f938-1f3fb-2640": { "output": "1f938-1f3fb-200d-2640-fe0f", "name": "woman cartwheeling: light skin tone", "alpha_code": ":woman_cartwheeling_tone1:", "aliases": ":woman_cartwheeling_light_skin_tone:" }, "1f938-2640": { "output": "1f938-200d-2640-fe0f", "name": "woman cartwheeling", "alpha_code": ":woman_cartwheeling:", "aliases": "" }, "1f6b6-1f3ff-2642": { "output": "1f6b6-1f3ff-200d-2642-fe0f", "name": "man walking: dark skin tone", "alpha_code": ":man_walking_tone5:", "aliases": ":man_walking_dark_skin_tone:" }, "1f6b6-1f3fe-2642": { "output": "1f6b6-1f3fe-200d-2642-fe0f", "name": "man walking: medium-dark skin tone", "alpha_code": ":man_walking_tone4:", "aliases": ":man_walking_medium_dark_skin_tone:" }, "1f6b6-1f3fd-2642": { "output": "1f6b6-1f3fd-200d-2642-fe0f", "name": "man walking: medium skin tone", "alpha_code": ":man_walking_tone3:", "aliases": ":man_walking_medium_skin_tone:" }, "1f6b6-1f3fc-2642": { "output": "1f6b6-1f3fc-200d-2642-fe0f", "name": "man walking: medium-light skin tone", "alpha_code": ":man_walking_tone2:", "aliases": ":man_walking_medium_light_skin_tone:" }, "1f6b6-1f3fb-2642": { "output": "1f6b6-1f3fb-200d-2642-fe0f", "name": "man walking: light skin tone", "alpha_code": ":man_walking_tone1:", "aliases": ":man_walking_light_skin_tone:" }, "1f6b6-2642": { "output": "1f6b6-200d-2642-fe0f", "name": "man walking", "alpha_code": ":man_walking:", "aliases": "" }, "1f6b6-1f3ff-2640": { "output": "1f6b6-1f3ff-200d-2640-fe0f", "name": "woman walking: dark skin tone", "alpha_code": ":woman_walking_tone5:", "aliases": ":woman_walking_dark_skin_tone:" }, "1f6b6-1f3fe-2640": { "output": "1f6b6-1f3fe-200d-2640-fe0f", "name": "woman walking: medium-dark skin tone", "alpha_code": ":woman_walking_tone4:", "aliases": ":woman_walking_medium_dark_skin_tone:" }, "1f6b6-1f3fd-2640": { "output": "1f6b6-1f3fd-200d-2640-fe0f", "name": "woman walking: medium skin tone", "alpha_code": ":woman_walking_tone3:", "aliases": ":woman_walking_medium_skin_tone:" }, "1f6b6-1f3fc-2640": { "output": "1f6b6-1f3fc-200d-2640-fe0f", "name": "woman walking: medium-light skin tone", "alpha_code": ":woman_walking_tone2:", "aliases": ":woman_walking_medium_light_skin_tone:" }, "1f6b6-1f3fb-2640": { "output": "1f6b6-1f3fb-200d-2640-fe0f", "name": "woman walking: light skin tone", "alpha_code": ":woman_walking_tone1:", "aliases": ":woman_walking_light_skin_tone:" }, "1f6b6-2640": { "output": "1f6b6-200d-2640-fe0f", "name": "woman walking", "alpha_code": ":woman_walking:", "aliases": "" }, "1f6b5-1f3ff-2642": { "output": "1f6b5-1f3ff-200d-2642-fe0f", "name": "man mountain biking: dark skin tone", "alpha_code": ":man_mountain_biking_tone5:", "aliases": ":man_mountain_biking_dark_skin_tone:" }, "1f6b5-1f3fe-2642": { "output": "1f6b5-1f3fe-200d-2642-fe0f", "name": "man mountain biking: medium-dark skin tone", "alpha_code": ":man_mountain_biking_tone4:", "aliases": ":man_mountain_biking_medium_dark_skin_tone:" }, "1f6b5-1f3fd-2642": { "output": "1f6b5-1f3fd-200d-2642-fe0f", "name": "man mountain biking: medium skin tone", "alpha_code": ":man_mountain_biking_tone3:", "aliases": ":man_mountain_biking_medium_skin_tone:" }, "1f6b5-1f3fc-2642": { "output": "1f6b5-1f3fc-200d-2642-fe0f", "name": "man mountain biking: medium-light skin tone", "alpha_code": ":man_mountain_biking_tone2:", "aliases": ":man_mountain_biking_medium_light_skin_tone:" }, "1f6b5-1f3fb-2642": { "output": "1f6b5-1f3fb-200d-2642-fe0f", "name": "man mountain biking: light skin tone", "alpha_code": ":man_mountain_biking_tone1:", "aliases": ":man_mountain_biking_light_skin_tone:" }, "1f6b5-2642": { "output": "1f6b5-200d-2642-fe0f", "name": "man mountain biking", "alpha_code": ":man_mountain_biking:", "aliases": "" }, "1f6b5-1f3ff-2640": { "output": "1f6b5-1f3ff-200d-2640-fe0f", "name": "woman mountain biking: dark skin tone", "alpha_code": ":woman_mountain_biking_tone5:", "aliases": ":woman_mountain_biking_dark_skin_tone:" }, "1f6b5-1f3fe-2640": { "output": "1f6b5-1f3fe-200d-2640-fe0f", "name": "woman mountain biking: medium-dark skin tone", "alpha_code": ":woman_mountain_biking_tone4:", "aliases": ":woman_mountain_biking_medium_dark_skin_tone:" }, "1f6b5-1f3fd-2640": { "output": "1f6b5-1f3fd-200d-2640-fe0f", "name": "woman mountain biking: medium skin tone", "alpha_code": ":woman_mountain_biking_tone3:", "aliases": ":woman_mountain_biking_medium_skin_tone:" }, "1f6b5-1f3fc-2640": { "output": "1f6b5-1f3fc-200d-2640-fe0f", "name": "woman mountain biking: medium-light skin tone", "alpha_code": ":woman_mountain_biking_tone2:", "aliases": ":woman_mountain_biking_medium_light_skin_tone:" }, "1f6b5-1f3fb-2640": { "output": "1f6b5-1f3fb-200d-2640-fe0f", "name": "woman mountain biking: light skin tone", "alpha_code": ":woman_mountain_biking_tone1:", "aliases": ":woman_mountain_biking_light_skin_tone:" }, "1f6b5-2640": { "output": "1f6b5-200d-2640-fe0f", "name": "woman mountain biking", "alpha_code": ":woman_mountain_biking:", "aliases": "" }, "1f6b4-1f3ff-2642": { "output": "1f6b4-1f3ff-200d-2642-fe0f", "name": "man biking: dark skin tone", "alpha_code": ":man_biking_tone5:", "aliases": ":man_biking_dark_skin_tone:" }, "1f6b4-1f3fe-2642": { "output": "1f6b4-1f3fe-200d-2642-fe0f", "name": "man biking: medium-dark skin tone", "alpha_code": ":man_biking_tone4:", "aliases": ":man_biking_medium_dark_skin_tone:" }, "1f6b4-1f3fd-2642": { "output": "1f6b4-1f3fd-200d-2642-fe0f", "name": "man biking: medium skin tone", "alpha_code": ":man_biking_tone3:", "aliases": ":man_biking_medium_skin_tone:" }, "1f6b4-1f3fc-2642": { "output": "1f6b4-1f3fc-200d-2642-fe0f", "name": "man biking: medium-light skin tone", "alpha_code": ":man_biking_tone2:", "aliases": ":man_biking_medium_light_skin_tone:" }, "1f6b4-1f3fb-2642": { "output": "1f6b4-1f3fb-200d-2642-fe0f", "name": "man biking: light skin tone", "alpha_code": ":man_biking_tone1:", "aliases": ":man_biking_light_skin_tone:" }, "1f6b4-2642": { "output": "1f6b4-200d-2642-fe0f", "name": "man biking", "alpha_code": ":man_biking:", "aliases": "" }, "1f6b4-1f3ff-2640": { "output": "1f6b4-1f3ff-200d-2640-fe0f", "name": "woman biking: dark skin tone", "alpha_code": ":woman_biking_tone5:", "aliases": ":woman_biking_dark_skin_tone:" }, "1f6b4-1f3fe-2640": { "output": "1f6b4-1f3fe-200d-2640-fe0f", "name": "woman biking: medium-dark skin tone", "alpha_code": ":woman_biking_tone4:", "aliases": ":woman_biking_medium_dark_skin_tone:" }, "1f6b4-1f3fd-2640": { "output": "1f6b4-1f3fd-200d-2640-fe0f", "name": "woman biking: medium skin tone", "alpha_code": ":woman_biking_tone3:", "aliases": ":woman_biking_medium_skin_tone:" }, "1f6b4-1f3fc-2640": { "output": "1f6b4-1f3fc-200d-2640-fe0f", "name": "woman biking: medium-light skin tone", "alpha_code": ":woman_biking_tone2:", "aliases": ":woman_biking_medium_light_skin_tone:" }, "1f6b4-1f3fb-2640": { "output": "1f6b4-1f3fb-200d-2640-fe0f", "name": "woman biking: light skin tone", "alpha_code": ":woman_biking_tone1:", "aliases": ":woman_biking_light_skin_tone:" }, "1f6b4-2640": { "output": "1f6b4-200d-2640-fe0f", "name": "woman biking", "alpha_code": ":woman_biking:", "aliases": "" }, "1f6a3-1f3ff-2642": { "output": "1f6a3-1f3ff-200d-2642-fe0f", "name": "man rowing boat: dark skin tone", "alpha_code": ":man_rowing_boat_tone5:", "aliases": ":man_rowing_boat_dark_skin_tone:" }, "1f6a3-1f3fe-2642": { "output": "1f6a3-1f3fe-200d-2642-fe0f", "name": "man rowing boat: medium-dark skin tone", "alpha_code": ":man_rowing_boat_tone4:", "aliases": ":man_rowing_boat_medium_dark_skin_tone:" }, "1f6a3-1f3fd-2642": { "output": "1f6a3-1f3fd-200d-2642-fe0f", "name": "man rowing boat: medium skin tone", "alpha_code": ":man_rowing_boat_tone3:", "aliases": ":man_rowing_boat_medium_skin_tone:" }, "1f6a3-1f3fc-2642": { "output": "1f6a3-1f3fc-200d-2642-fe0f", "name": "man rowing boat: medium-light skin tone", "alpha_code": ":man_rowing_boat_tone2:", "aliases": ":man_rowing_boat_medium_light_skin_tone:" }, "1f6a3-1f3fb-2642": { "output": "1f6a3-1f3fb-200d-2642-fe0f", "name": "man rowing boat: light skin tone", "alpha_code": ":man_rowing_boat_tone1:", "aliases": ":man_rowing_boat_light_skin_tone:" }, "1f6a3-2642": { "output": "1f6a3-200d-2642-fe0f", "name": "man rowing boat", "alpha_code": ":man_rowing_boat:", "aliases": "" }, "1f6a3-1f3ff-2640": { "output": "1f6a3-1f3ff-200d-2640-fe0f", "name": "woman rowing boat: dark skin tone", "alpha_code": ":woman_rowing_boat_tone5:", "aliases": ":woman_rowing_boat_dark_skin_tone:" }, "1f6a3-1f3fe-2640": { "output": "1f6a3-1f3fe-200d-2640-fe0f", "name": "woman rowing boat: medium-dark skin tone", "alpha_code": ":woman_rowing_boat_tone4:", "aliases": ":woman_rowing_boat_medium_dark_skin_tone:" }, "1f6a3-1f3fd-2640": { "output": "1f6a3-1f3fd-200d-2640-fe0f", "name": "woman rowing boat: medium skin tone", "alpha_code": ":woman_rowing_boat_tone3:", "aliases": ":woman_rowing_boat_medium_skin_tone:" }, "1f6a3-1f3fc-2640": { "output": "1f6a3-1f3fc-200d-2640-fe0f", "name": "woman rowing boat: medium-light skin tone", "alpha_code": ":woman_rowing_boat_tone2:", "aliases": ":woman_rowing_boat_medium_light_skin_tone:" }, "1f6a3-1f3fb-2640": { "output": "1f6a3-1f3fb-200d-2640-fe0f", "name": "woman rowing boat: light skin tone", "alpha_code": ":woman_rowing_boat_tone1:", "aliases": ":woman_rowing_boat_light_skin_tone:" }, "1f6a3-2640": { "output": "1f6a3-200d-2640-fe0f", "name": "woman rowing boat", "alpha_code": ":woman_rowing_boat:", "aliases": "" }, "1f3cb-1f3ff-2642": { "output": "1f3cb-1f3ff-200d-2642-fe0f", "name": "man lifting weights: dark skin tone", "alpha_code": ":man_lifting_weights_tone5:", "aliases": ":man_lifting_weights_dark_skin_tone:" }, "1f3cb-1f3fe-2642": { "output": "1f3cb-1f3fe-200d-2642-fe0f", "name": "man lifting weights: medium-dark skin tone", "alpha_code": ":man_lifting_weights_tone4:", "aliases": ":man_lifting_weights_medium_dark_skin_tone:" }, "1f3cb-1f3fd-2642": { "output": "1f3cb-1f3fd-200d-2642-fe0f", "name": "man lifting weights: medium skin tone", "alpha_code": ":man_lifting_weights_tone3:", "aliases": ":man_lifting_weights_medium_skin_tone:" }, "1f3cb-1f3fc-2642": { "output": "1f3cb-1f3fc-200d-2642-fe0f", "name": "man lifting weights: medium-light skin tone", "alpha_code": ":man_lifting_weights_tone2:", "aliases": ":man_lifting_weights_medium_light_skin_tone:" }, "1f3cb-1f3fb-2642": { "output": "1f3cb-1f3fb-200d-2642-fe0f", "name": "man lifting weights: light skin tone", "alpha_code": ":man_lifting_weights_tone1:", "aliases": ":man_lifting_weights_light_skin_tone:" }, "1f3cb-2642": { "output": "1f3cb-fe0f-200d-2642-fe0f", "name": "man lifting weights", "alpha_code": ":man_lifting_weights:", "aliases": "" }, "1f3cb-1f3ff-2640": { "output": "1f3cb-1f3ff-200d-2640-fe0f", "name": "woman lifting weights: dark skin tone", "alpha_code": ":woman_lifting_weights_tone5:", "aliases": ":woman_lifting_weights_dark_skin_tone:" }, "1f3cb-1f3fe-2640": { "output": "1f3cb-1f3fe-200d-2640-fe0f", "name": "woman lifting weights: medium-dark skin tone", "alpha_code": ":woman_lifting_weights_tone4:", "aliases": ":woman_lifting_weights_medium_dark_skin_tone:" }, "1f3cb-1f3fd-2640": { "output": "1f3cb-1f3fd-200d-2640-fe0f", "name": "woman lifting weights: medium skin tone", "alpha_code": ":woman_lifting_weights_tone3:", "aliases": ":woman_lifting_weights_medium_skin_tone:" }, "1f3cb-1f3fc-2640": { "output": "1f3cb-1f3fc-200d-2640-fe0f", "name": "woman lifting weights: medium-light skin tone", "alpha_code": ":woman_lifting_weights_tone2:", "aliases": ":woman_lifting_weights_medium_light_skin_tone:" }, "1f3cb-1f3fb-2640": { "output": "1f3cb-1f3fb-200d-2640-fe0f", "name": "woman lifting weights: light skin tone", "alpha_code": ":woman_lifting_weights_tone1:", "aliases": ":woman_lifting_weights_light_skin_tone:" }, "1f3cb-2640": { "output": "1f3cb-fe0f-200d-2640-fe0f", "name": "woman lifting weights", "alpha_code": ":woman_lifting_weights:", "aliases": "" }, "1f3ca-1f3ff-2642": { "output": "1f3ca-1f3ff-200d-2642-fe0f", "name": "man swimming: dark skin tone", "alpha_code": ":man_swimming_tone5:", "aliases": ":man_swimming_dark_skin_tone:" }, "1f3ca-1f3fe-2642": { "output": "1f3ca-1f3fe-200d-2642-fe0f", "name": "man swimming: medium-dark skin tone", "alpha_code": ":man_swimming_tone4:", "aliases": ":man_swimming_medium_dark_skin_tone:" }, "1f3ca-1f3fd-2642": { "output": "1f3ca-1f3fd-200d-2642-fe0f", "name": "man swimming: medium skin tone", "alpha_code": ":man_swimming_tone3:", "aliases": ":man_swimming_medium_skin_tone:" }, "1f3ca-1f3fc-2642": { "output": "1f3ca-1f3fc-200d-2642-fe0f", "name": "man swimming: medium-light skin tone", "alpha_code": ":man_swimming_tone2:", "aliases": ":man_swimming_medium_light_skin_tone:" }, "1f3ca-1f3fb-2642": { "output": "1f3ca-1f3fb-200d-2642-fe0f", "name": "man swimming: light skin tone", "alpha_code": ":man_swimming_tone1:", "aliases": ":man_swimming_light_skin_tone:" }, "1f3ca-2642": { "output": "1f3ca-200d-2642-fe0f", "name": "man swimming", "alpha_code": ":man_swimming:", "aliases": "" }, "1f3ca-1f3ff-2640": { "output": "1f3ca-1f3ff-200d-2640-fe0f", "name": "woman swimming: dark skin tone", "alpha_code": ":woman_swimming_tone5:", "aliases": ":woman_swimming_dark_skin_tone:" }, "1f3ca-1f3fe-2640": { "output": "1f3ca-1f3fe-200d-2640-fe0f", "name": "woman swimming: medium-dark skin tone", "alpha_code": ":woman_swimming_tone4:", "aliases": ":woman_swimming_medium_dark_skin_tone:" }, "1f3ca-1f3fd-2640": { "output": "1f3ca-1f3fd-200d-2640-fe0f", "name": "woman swimming: medium skin tone", "alpha_code": ":woman_swimming_tone3:", "aliases": ":woman_swimming_medium_skin_tone:" }, "1f3ca-1f3fc-2640": { "output": "1f3ca-1f3fc-200d-2640-fe0f", "name": "woman swimming: medium-light skin tone", "alpha_code": ":woman_swimming_tone2:", "aliases": ":woman_swimming_medium_light_skin_tone:" }, "1f3ca-1f3fb-2640": { "output": "1f3ca-1f3fb-200d-2640-fe0f", "name": "woman swimming: light skin tone", "alpha_code": ":woman_swimming_tone1:", "aliases": ":woman_swimming_light_skin_tone:" }, "1f3ca-2640": { "output": "1f3ca-200d-2640-fe0f", "name": "woman swimming", "alpha_code": ":woman_swimming:", "aliases": "" }, "1f3c4-1f3ff-2642": { "output": "1f3c4-1f3ff-200d-2642-fe0f", "name": "man surfing: dark skin tone", "alpha_code": ":man_surfing_tone5:", "aliases": ":man_surfing_dark_skin_tone:" }, "1f3c4-1f3fe-2642": { "output": "1f3c4-1f3fe-200d-2642-fe0f", "name": "man surfing: medium-dark skin tone", "alpha_code": ":man_surfing_tone4:", "aliases": ":man_surfing_medium_dark_skin_tone:" }, "1f3c4-1f3fd-2642": { "output": "1f3c4-1f3fd-200d-2642-fe0f", "name": "man surfing: medium skin tone", "alpha_code": ":man_surfing_tone3:", "aliases": ":man_surfing_medium_skin_tone:" }, "1f3c4-1f3fc-2642": { "output": "1f3c4-1f3fc-200d-2642-fe0f", "name": "man surfing: medium-light skin tone", "alpha_code": ":man_surfing_tone2:", "aliases": ":man_surfing_medium_light_skin_tone:" }, "1f3c4-1f3fb-2642": { "output": "1f3c4-1f3fb-200d-2642-fe0f", "name": "man surfing: light skin tone", "alpha_code": ":man_surfing_tone1:", "aliases": ":man_surfing_light_skin_tone:" }, "1f3c4-2642": { "output": "1f3c4-200d-2642-fe0f", "name": "man surfing", "alpha_code": ":man_surfing:", "aliases": "" }, "1f3c4-1f3ff-2640": { "output": "1f3c4-1f3ff-200d-2640-fe0f", "name": "woman surfing: dark skin tone", "alpha_code": ":woman_surfing_tone5:", "aliases": ":woman_surfing_dark_skin_tone:" }, "1f3c4-1f3fe-2640": { "output": "1f3c4-1f3fe-200d-2640-fe0f", "name": "woman surfing: medium-dark skin tone", "alpha_code": ":woman_surfing_tone4:", "aliases": ":woman_surfing_medium_dark_skin_tone:" }, "1f3c4-1f3fd-2640": { "output": "1f3c4-1f3fd-200d-2640-fe0f", "name": "woman surfing: medium skin tone", "alpha_code": ":woman_surfing_tone3:", "aliases": ":woman_surfing_medium_skin_tone:" }, "1f3c4-1f3fc-2640": { "output": "1f3c4-1f3fc-200d-2640-fe0f", "name": "woman surfing: medium-light skin tone", "alpha_code": ":woman_surfing_tone2:", "aliases": ":woman_surfing_medium_light_skin_tone:" }, "1f3c4-1f3fb-2640": { "output": "1f3c4-1f3fb-200d-2640-fe0f", "name": "woman surfing: light skin tone", "alpha_code": ":woman_surfing_tone1:", "aliases": ":woman_surfing_light_skin_tone:" }, "1f3c4-2640": { "output": "1f3c4-200d-2640-fe0f", "name": "woman surfing", "alpha_code": ":woman_surfing:", "aliases": "" }, "1f3c3-1f3ff-2642": { "output": "1f3c3-1f3ff-200d-2642-fe0f", "name": "man running: dark skin tone", "alpha_code": ":man_running_tone5:", "aliases": ":man_running_dark_skin_tone:" }, "1f3c3-1f3fe-2642": { "output": "1f3c3-1f3fe-200d-2642-fe0f", "name": "man running: medium-dark skin tone", "alpha_code": ":man_running_tone4:", "aliases": ":man_running_medium_dark_skin_tone:" }, "1f3c3-1f3fd-2642": { "output": "1f3c3-1f3fd-200d-2642-fe0f", "name": "man running: medium skin tone", "alpha_code": ":man_running_tone3:", "aliases": ":man_running_medium_skin_tone:" }, "1f3c3-1f3fc-2642": { "output": "1f3c3-1f3fc-200d-2642-fe0f", "name": "man running: medium-light skin tone", "alpha_code": ":man_running_tone2:", "aliases": ":man_running_medium_light_skin_tone:" }, "1f3c3-1f3fb-2642": { "output": "1f3c3-1f3fb-200d-2642-fe0f", "name": "man running: light skin tone", "alpha_code": ":man_running_tone1:", "aliases": ":man_running_light_skin_tone:" }, "1f3c3-2642": { "output": "1f3c3-200d-2642-fe0f", "name": "man running", "alpha_code": ":man_running:", "aliases": "" }, "1f3c3-1f3ff-2640": { "output": "1f3c3-1f3ff-200d-2640-fe0f", "name": "woman running: dark skin tone", "alpha_code": ":woman_running_tone5:", "aliases": ":woman_running_dark_skin_tone:" }, "1f3c3-1f3fe-2640": { "output": "1f3c3-1f3fe-200d-2640-fe0f", "name": "woman running: medium-dark skin tone", "alpha_code": ":woman_running_tone4:", "aliases": ":woman_running_medium_dark_skin_tone:" }, "1f3c3-1f3fd-2640": { "output": "1f3c3-1f3fd-200d-2640-fe0f", "name": "woman running: medium skin tone", "alpha_code": ":woman_running_tone3:", "aliases": ":woman_running_medium_skin_tone:" }, "1f3c3-1f3fc-2640": { "output": "1f3c3-1f3fc-200d-2640-fe0f", "name": "woman running: medium-light skin tone", "alpha_code": ":woman_running_tone2:", "aliases": ":woman_running_medium_light_skin_tone:" }, "1f3c3-1f3fb-2640": { "output": "1f3c3-1f3fb-200d-2640-fe0f", "name": "woman running: light skin tone", "alpha_code": ":woman_running_tone1:", "aliases": ":woman_running_light_skin_tone:" }, "1f3c3-2640": { "output": "1f3c3-200d-2640-fe0f", "name": "woman running", "alpha_code": ":woman_running:", "aliases": "" }, "26f9-1f3ff-2642": { "output": "26f9-1f3ff-200d-2642-fe0f", "name": "man bouncing ball: dark skin tone", "alpha_code": ":man_bouncing_ball_tone5:", "aliases": ":man_bouncing_ball_dark_skin_tone:" }, "26f9-1f3fe-2642": { "output": "26f9-1f3fe-200d-2642-fe0f", "name": "man bouncing ball: medium-dark skin tone", "alpha_code": ":man_bouncing_ball_tone4:", "aliases": ":man_bouncing_ball_medium_dark_skin_tone:" }, "26f9-1f3fd-2642": { "output": "26f9-1f3fd-200d-2642-fe0f", "name": "man bouncing ball: medium skin tone", "alpha_code": ":man_bouncing_ball_tone3:", "aliases": ":man_bouncing_ball_medium_skin_tone:" }, "26f9-1f3fc-2642": { "output": "26f9-1f3fc-200d-2642-fe0f", "name": "man bouncing ball: medium-light skin tone", "alpha_code": ":man_bouncing_ball_tone2:", "aliases": ":man_bouncing_ball_medium_light_skin_tone:" }, "26f9-1f3fb-2642": { "output": "26f9-1f3fb-200d-2642-fe0f", "name": "man bouncing ball: light skin tone", "alpha_code": ":man_bouncing_ball_tone1:", "aliases": ":man_bouncing_ball_light_skin_tone:" }, "26f9-2642": { "output": "26f9-fe0f-200d-2642-fe0f", "name": "man bouncing ball", "alpha_code": ":man_bouncing_ball:", "aliases": "" }, "26f9-1f3ff-2640": { "output": "26f9-1f3ff-200d-2640-fe0f", "name": "woman bouncing ball: dark skin tone", "alpha_code": ":woman_bouncing_ball_tone5:", "aliases": ":woman_bouncing_ball_dark_skin_tone:" }, "26f9-1f3fe-2640": { "output": "26f9-1f3fe-200d-2640-fe0f", "name": "woman bouncing ball: medium-dark skin tone", "alpha_code": ":woman_bouncing_ball_tone4:", "aliases": ":woman_bouncing_ball_medium_dark_skin_tone:" }, "26f9-1f3fd-2640": { "output": "26f9-1f3fd-200d-2640-fe0f", "name": "woman bouncing ball: medium skin tone", "alpha_code": ":woman_bouncing_ball_tone3:", "aliases": ":woman_bouncing_ball_medium_skin_tone:" }, "26f9-1f3fc-2640": { "output": "26f9-1f3fc-200d-2640-fe0f", "name": "woman bouncing ball: medium-light skin tone", "alpha_code": ":woman_bouncing_ball_tone2:", "aliases": ":woman_bouncing_ball_medium_light_skin_tone:" }, "26f9-1f3fb-2640": { "output": "26f9-1f3fb-200d-2640-fe0f", "name": "woman bouncing ball: light skin tone", "alpha_code": ":woman_bouncing_ball_tone1:", "aliases": ":woman_bouncing_ball_light_skin_tone:" }, "26f9-2640": { "output": "26f9-fe0f-200d-2640-fe0f", "name": "woman bouncing ball", "alpha_code": ":woman_bouncing_ball:", "aliases": "" }, "1f937-1f3ff-2642": { "output": "1f937-1f3ff-200d-2642-fe0f", "name": "man shrugging: dark skin tone", "alpha_code": ":man_shrugging_tone5:", "aliases": ":man_shrugging_dark_skin_tone:" }, "1f937-1f3fe-2642": { "output": "1f937-1f3fe-200d-2642-fe0f", "name": "man shrugging: medium-dark skin tone", "alpha_code": ":man_shrugging_tone4:", "aliases": ":man_shrugging_medium_dark_skin_tone:" }, "1f937-1f3fd-2642": { "output": "1f937-1f3fd-200d-2642-fe0f", "name": "man shrugging: medium skin tone", "alpha_code": ":man_shrugging_tone3:", "aliases": ":man_shrugging_medium_skin_tone:" }, "1f937-1f3fc-2642": { "output": "1f937-1f3fc-200d-2642-fe0f", "name": "man shrugging: medium-light skin tone", "alpha_code": ":man_shrugging_tone2:", "aliases": ":man_shrugging_medium_light_skin_tone:" }, "1f937-1f3fb-2642": { "output": "1f937-1f3fb-200d-2642-fe0f", "name": "man shrugging: light skin tone", "alpha_code": ":man_shrugging_tone1:", "aliases": ":man_shrugging_light_skin_tone:" }, "1f937-2642": { "output": "1f937-200d-2642-fe0f", "name": "man shrugging", "alpha_code": ":man_shrugging:", "aliases": "" }, "1f937-1f3ff-2640": { "output": "1f937-1f3ff-200d-2640-fe0f", "name": "woman shrugging: dark skin tone", "alpha_code": ":woman_shrugging_tone5:", "aliases": ":woman_shrugging_dark_skin_tone:" }, "1f937-1f3fe-2640": { "output": "1f937-1f3fe-200d-2640-fe0f", "name": "woman shrugging: medium-dark skin tone", "alpha_code": ":woman_shrugging_tone4:", "aliases": ":woman_shrugging_medium_dark_skin_tone:" }, "1f937-1f3fd-2640": { "output": "1f937-1f3fd-200d-2640-fe0f", "name": "woman shrugging: medium skin tone", "alpha_code": ":woman_shrugging_tone3:", "aliases": ":woman_shrugging_medium_skin_tone:" }, "1f937-1f3fc-2640": { "output": "1f937-1f3fc-200d-2640-fe0f", "name": "woman shrugging: medium-light skin tone", "alpha_code": ":woman_shrugging_tone2:", "aliases": ":woman_shrugging_medium_light_skin_tone:" }, "1f937-1f3fb-2640": { "output": "1f937-1f3fb-200d-2640-fe0f", "name": "woman shrugging: light skin tone", "alpha_code": ":woman_shrugging_tone1:", "aliases": ":woman_shrugging_light_skin_tone:" }, "1f937-2640": { "output": "1f937-200d-2640-fe0f", "name": "woman shrugging", "alpha_code": ":woman_shrugging:", "aliases": "" }, "1f926-1f3ff-2642": { "output": "1f926-1f3ff-200d-2642-fe0f", "name": "man facepalming: dark skin tone", "alpha_code": ":man_facepalming_tone5:", "aliases": ":man_facepalming_dark_skin_tone:" }, "1f926-1f3fe-2642": { "output": "1f926-1f3fe-200d-2642-fe0f", "name": "man facepalming: medium-dark skin tone", "alpha_code": ":man_facepalming_tone4:", "aliases": ":man_facepalming_medium_dark_skin_tone:" }, "1f926-1f3fd-2642": { "output": "1f926-1f3fd-200d-2642-fe0f", "name": "man facepalming: medium skin tone", "alpha_code": ":man_facepalming_tone3:", "aliases": ":man_facepalming_medium_skin_tone:" }, "1f926-1f3fc-2642": { "output": "1f926-1f3fc-200d-2642-fe0f", "name": "man facepalming: medium-light skin tone", "alpha_code": ":man_facepalming_tone2:", "aliases": ":man_facepalming_medium_light_skin_tone:" }, "1f926-1f3fb-2642": { "output": "1f926-1f3fb-200d-2642-fe0f", "name": "man facepalming: light skin tone", "alpha_code": ":man_facepalming_tone1:", "aliases": ":man_facepalming_light_skin_tone:" }, "1f926-2642": { "output": "1f926-200d-2642-fe0f", "name": "man facepalming", "alpha_code": ":man_facepalming:", "aliases": "" }, "1f926-1f3ff-2640": { "output": "1f926-1f3ff-200d-2640-fe0f", "name": "woman facepalming: dark skin tone", "alpha_code": ":woman_facepalming_tone5:", "aliases": ":woman_facepalming_dark_skin_tone:" }, "1f926-1f3fe-2640": { "output": "1f926-1f3fe-200d-2640-fe0f", "name": "woman facepalming: medium-dark skin tone", "alpha_code": ":woman_facepalming_tone4:", "aliases": ":woman_facepalming_medium_dark_skin_tone:" }, "1f926-1f3fd-2640": { "output": "1f926-1f3fd-200d-2640-fe0f", "name": "woman facepalming: medium skin tone", "alpha_code": ":woman_facepalming_tone3:", "aliases": ":woman_facepalming_medium_skin_tone:" }, "1f926-1f3fc-2640": { "output": "1f926-1f3fc-200d-2640-fe0f", "name": "woman facepalming: medium-light skin tone", "alpha_code": ":woman_facepalming_tone2:", "aliases": ":woman_facepalming_medium_light_skin_tone:" }, "1f926-1f3fb-2640": { "output": "1f926-1f3fb-200d-2640-fe0f", "name": "woman facepalming: light skin tone", "alpha_code": ":woman_facepalming_tone1:", "aliases": ":woman_facepalming_light_skin_tone:" }, "1f926-2640": { "output": "1f926-200d-2640-fe0f", "name": "woman facepalming", "alpha_code": ":woman_facepalming:", "aliases": "" }, "1f64e-1f3ff-2642": { "output": "1f64e-1f3ff-200d-2642-fe0f", "name": "man pouting: dark skin tone", "alpha_code": ":man_pouting_tone5:", "aliases": ":man_pouting_dark_skin_tone:" }, "1f64e-1f3fe-2642": { "output": "1f64e-1f3fe-200d-2642-fe0f", "name": "man pouting: medium-dark skin tone", "alpha_code": ":man_pouting_tone4:", "aliases": ":man_pouting_medium_dark_skin_tone:" }, "1f64e-1f3fd-2642": { "output": "1f64e-1f3fd-200d-2642-fe0f", "name": "man pouting: medium skin tone", "alpha_code": ":man_pouting_tone3:", "aliases": ":man_pouting_medium_skin_tone:" }, "1f64e-1f3fc-2642": { "output": "1f64e-1f3fc-200d-2642-fe0f", "name": "man pouting: medium-light skin tone", "alpha_code": ":man_pouting_tone2:", "aliases": ":man_pouting_medium_light_skin_tone:" }, "1f64e-1f3fb-2642": { "output": "1f64e-1f3fb-200d-2642-fe0f", "name": "man pouting: light skin tone", "alpha_code": ":man_pouting_tone1:", "aliases": ":man_pouting_light_skin_tone:" }, "1f64e-2642": { "output": "1f64e-200d-2642-fe0f", "name": "man pouting", "alpha_code": ":man_pouting:", "aliases": "" }, "1f64e-1f3ff-2640": { "output": "1f64e-1f3ff-200d-2640-fe0f", "name": "woman pouting: dark skin tone", "alpha_code": ":woman_pouting_tone5:", "aliases": ":woman_pouting_dark_skin_tone:" }, "1f64e-1f3fe-2640": { "output": "1f64e-1f3fe-200d-2640-fe0f", "name": "woman pouting: medium-dark skin tone", "alpha_code": ":woman_pouting_tone4:", "aliases": ":woman_pouting_medium_dark_skin_tone:" }, "1f64e-1f3fd-2640": { "output": "1f64e-1f3fd-200d-2640-fe0f", "name": "woman pouting: medium skin tone", "alpha_code": ":woman_pouting_tone3:", "aliases": ":woman_pouting_medium_skin_tone:" }, "1f64e-1f3fc-2640": { "output": "1f64e-1f3fc-200d-2640-fe0f", "name": "woman pouting: medium-light skin tone", "alpha_code": ":woman_pouting_tone2:", "aliases": ":woman_pouting_medium_light_skin_tone:" }, "1f64e-1f3fb-2640": { "output": "1f64e-1f3fb-200d-2640-fe0f", "name": "woman pouting: light skin tone", "alpha_code": ":woman_pouting_tone1:", "aliases": ":woman_pouting_light_skin_tone:" }, "1f64e-2640": { "output": "1f64e-200d-2640-fe0f", "name": "woman pouting", "alpha_code": ":woman_pouting:", "aliases": "" }, "1f64d-1f3ff-2642": { "output": "1f64d-1f3ff-200d-2642-fe0f", "name": "man frowning: dark skin tone", "alpha_code": ":man_frowning_tone5:", "aliases": ":man_frowning_dark_skin_tone:" }, "1f64d-1f3fe-2642": { "output": "1f64d-1f3fe-200d-2642-fe0f", "name": "man frowning: medium-dark skin tone", "alpha_code": ":man_frowning_tone4:", "aliases": ":man_frowning_medium_dark_skin_tone:" }, "1f64d-1f3fd-2642": { "output": "1f64d-1f3fd-200d-2642-fe0f", "name": "man frowning: medium skin tone", "alpha_code": ":man_frowning_tone3:", "aliases": ":man_frowning_medium_skin_tone:" }, "1f64d-1f3fc-2642": { "output": "1f64d-1f3fc-200d-2642-fe0f", "name": "man frowning: medium-light skin tone", "alpha_code": ":man_frowning_tone2:", "aliases": ":man_frowning_medium_light_skin_tone:" }, "1f64d-1f3fb-2642": { "output": "1f64d-1f3fb-200d-2642-fe0f", "name": "man frowning: light skin tone", "alpha_code": ":man_frowning_tone1:", "aliases": ":man_frowning_light_skin_tone:" }, "1f64d-2642": { "output": "1f64d-200d-2642-fe0f", "name": "man frowning", "alpha_code": ":man_frowning:", "aliases": "" }, "1f64d-1f3ff-2640": { "output": "1f64d-1f3ff-200d-2640-fe0f", "name": "woman frowning: dark skin tone", "alpha_code": ":woman_frowning_tone5:", "aliases": ":woman_frowning_dark_skin_tone:" }, "1f64d-1f3fe-2640": { "output": "1f64d-1f3fe-200d-2640-fe0f", "name": "woman frowning: medium-dark skin tone", "alpha_code": ":woman_frowning_tone4:", "aliases": ":woman_frowning_medium_dark_skin_tone:" }, "1f64d-1f3fd-2640": { "output": "1f64d-1f3fd-200d-2640-fe0f", "name": "woman frowning: medium skin tone", "alpha_code": ":woman_frowning_tone3:", "aliases": ":woman_frowning_medium_skin_tone:" }, "1f64d-1f3fc-2640": { "output": "1f64d-1f3fc-200d-2640-fe0f", "name": "woman frowning: medium-light skin tone", "alpha_code": ":woman_frowning_tone2:", "aliases": ":woman_frowning_medium_light_skin_tone:" }, "1f64d-1f3fb-2640": { "output": "1f64d-1f3fb-200d-2640-fe0f", "name": "woman frowning: light skin tone", "alpha_code": ":woman_frowning_tone1:", "aliases": ":woman_frowning_light_skin_tone:" }, "1f64d-2640": { "output": "1f64d-200d-2640-fe0f", "name": "woman frowning", "alpha_code": ":woman_frowning:", "aliases": "" }, "1f64b-1f3ff-2642": { "output": "1f64b-1f3ff-200d-2642-fe0f", "name": "man raising hand: dark skin tone", "alpha_code": ":man_raising_hand_tone5:", "aliases": ":man_raising_hand_dark_skin_tone:" }, "1f64b-1f3fe-2642": { "output": "1f64b-1f3fe-200d-2642-fe0f", "name": "man raising hand: medium-dark skin tone", "alpha_code": ":man_raising_hand_tone4:", "aliases": ":man_raising_hand_medium_dark_skin_tone:" }, "1f64b-1f3fd-2642": { "output": "1f64b-1f3fd-200d-2642-fe0f", "name": "man raising hand: medium skin tone", "alpha_code": ":man_raising_hand_tone3:", "aliases": ":man_raising_hand_medium_skin_tone:" }, "1f64b-1f3fc-2642": { "output": "1f64b-1f3fc-200d-2642-fe0f", "name": "man raising hand: medium-light skin tone", "alpha_code": ":man_raising_hand_tone2:", "aliases": ":man_raising_hand_medium_light_skin_tone:" }, "1f64b-1f3fb-2642": { "output": "1f64b-1f3fb-200d-2642-fe0f", "name": "man raising hand: light skin tone", "alpha_code": ":man_raising_hand_tone1:", "aliases": ":man_raising_hand_light_skin_tone:" }, "1f64b-2642": { "output": "1f64b-200d-2642-fe0f", "name": "man raising hand", "alpha_code": ":man_raising_hand:", "aliases": "" }, "1f64b-1f3ff-2640": { "output": "1f64b-1f3ff-200d-2640-fe0f", "name": "woman raising hand: dark skin tone", "alpha_code": ":woman_raising_hand_tone5:", "aliases": ":woman_raising_hand_dark_skin_tone:" }, "1f64b-1f3fe-2640": { "output": "1f64b-1f3fe-200d-2640-fe0f", "name": "woman raising hand: medium-dark skin tone", "alpha_code": ":woman_raising_hand_tone4:", "aliases": ":woman_raising_hand_medium_dark_skin_tone:" }, "1f64b-1f3fd-2640": { "output": "1f64b-1f3fd-200d-2640-fe0f", "name": "woman raising hand: medium skin tone", "alpha_code": ":woman_raising_hand_tone3:", "aliases": ":woman_raising_hand_medium_skin_tone:" }, "1f64b-1f3fc-2640": { "output": "1f64b-1f3fc-200d-2640-fe0f", "name": "woman raising hand: medium-light skin tone", "alpha_code": ":woman_raising_hand_tone2:", "aliases": ":woman_raising_hand_medium_light_skin_tone:" }, "1f64b-1f3fb-2640": { "output": "1f64b-1f3fb-200d-2640-fe0f", "name": "woman raising hand: light skin tone", "alpha_code": ":woman_raising_hand_tone1:", "aliases": ":woman_raising_hand_light_skin_tone:" }, "1f64b-2640": { "output": "1f64b-200d-2640-fe0f", "name": "woman raising hand", "alpha_code": ":woman_raising_hand:", "aliases": "" }, "1f647-1f3ff-2642": { "output": "1f647-1f3ff-200d-2642-fe0f", "name": "man bowing: dark skin tone", "alpha_code": ":man_bowing_tone5:", "aliases": ":man_bowing_dark_skin_tone:" }, "1f647-1f3fe-2642": { "output": "1f647-1f3fe-200d-2642-fe0f", "name": "man bowing: medium-dark skin tone", "alpha_code": ":man_bowing_tone4:", "aliases": ":man_bowing_medium_dark_skin_tone:" }, "1f647-1f3fd-2642": { "output": "1f647-1f3fd-200d-2642-fe0f", "name": "man bowing: medium skin tone", "alpha_code": ":man_bowing_tone3:", "aliases": ":man_bowing_medium_skin_tone:" }, "1f647-1f3fc-2642": { "output": "1f647-1f3fc-200d-2642-fe0f", "name": "man bowing: medium-light skin tone", "alpha_code": ":man_bowing_tone2:", "aliases": ":man_bowing_medium_light_skin_tone:" }, "1f647-1f3fb-2642": { "output": "1f647-1f3fb-200d-2642-fe0f", "name": "man bowing: light skin tone", "alpha_code": ":man_bowing_tone1:", "aliases": ":man_bowing_light_skin_tone:" }, "1f647-2642": { "output": "1f647-200d-2642-fe0f", "name": "man bowing", "alpha_code": ":man_bowing:", "aliases": "" }, "1f647-1f3ff-2640": { "output": "1f647-1f3ff-200d-2640-fe0f", "name": "woman bowing: dark skin tone", "alpha_code": ":woman_bowing_tone5:", "aliases": ":woman_bowing_dark_skin_tone:" }, "1f647-1f3fe-2640": { "output": "1f647-1f3fe-200d-2640-fe0f", "name": "woman bowing: medium-dark skin tone", "alpha_code": ":woman_bowing_tone4:", "aliases": ":woman_bowing_medium_dark_skin_tone:" }, "1f647-1f3fd-2640": { "output": "1f647-1f3fd-200d-2640-fe0f", "name": "woman bowing: medium skin tone", "alpha_code": ":woman_bowing_tone3:", "aliases": ":woman_bowing_medium_skin_tone:" }, "1f647-1f3fc-2640": { "output": "1f647-1f3fc-200d-2640-fe0f", "name": "woman bowing: medium-light skin tone", "alpha_code": ":woman_bowing_tone2:", "aliases": ":woman_bowing_medium_light_skin_tone:" }, "1f647-1f3fb-2640": { "output": "1f647-1f3fb-200d-2640-fe0f", "name": "woman bowing: light skin tone", "alpha_code": ":woman_bowing_tone1:", "aliases": ":woman_bowing_light_skin_tone:" }, "1f647-2640": { "output": "1f647-200d-2640-fe0f", "name": "woman bowing", "alpha_code": ":woman_bowing:", "aliases": "" }, "1f646-1f3ff-2642": { "output": "1f646-1f3ff-200d-2642-fe0f", "name": "man gesturing OK: dark skin tone", "alpha_code": ":man_gesturing_ok_tone5:", "aliases": ":man_gesturing_ok_dark_skin_tone:" }, "1f646-1f3fe-2642": { "output": "1f646-1f3fe-200d-2642-fe0f", "name": "man gesturing OK: medium-dark skin tone", "alpha_code": ":man_gesturing_ok_tone4:", "aliases": ":man_gesturing_ok_medium_dark_skin_tone:" }, "1f646-1f3fd-2642": { "output": "1f646-1f3fd-200d-2642-fe0f", "name": "man gesturing OK: medium skin tone", "alpha_code": ":man_gesturing_ok_tone3:", "aliases": ":man_gesturing_ok_medium_skin_tone:" }, "1f646-1f3fc-2642": { "output": "1f646-1f3fc-200d-2642-fe0f", "name": "man gesturing OK: medium-light skin tone", "alpha_code": ":man_gesturing_ok_tone2:", "aliases": ":man_gesturing_ok_medium_light_skin_tone:" }, "1f646-1f3fb-2642": { "output": "1f646-1f3fb-200d-2642-fe0f", "name": "man gesturing OK: light skin tone", "alpha_code": ":man_gesturing_ok_tone1:", "aliases": ":man_gesturing_ok_light_skin_tone:" }, "1f646-2642": { "output": "1f646-200d-2642-fe0f", "name": "man gesturing OK", "alpha_code": ":man_gesturing_ok:", "aliases": "" }, "1f646-1f3ff-2640": { "output": "1f646-1f3ff-200d-2640-fe0f", "name": "woman gesturing OK: dark skin tone", "alpha_code": ":woman_gesturing_ok_tone5:", "aliases": ":woman_gesturing_ok_dark_skin_tone:" }, "1f646-1f3fe-2640": { "output": "1f646-1f3fe-200d-2640-fe0f", "name": "woman gesturing OK: medium-dark skin tone", "alpha_code": ":woman_gesturing_ok_tone4:", "aliases": ":woman_gesturing_ok_medium_dark_skin_tone:" }, "1f646-1f3fd-2640": { "output": "1f646-1f3fd-200d-2640-fe0f", "name": "woman gesturing OK: medium skin tone", "alpha_code": ":woman_gesturing_ok_tone3:", "aliases": ":woman_gesturing_ok_medium_skin_tone:" }, "1f646-1f3fc-2640": { "output": "1f646-1f3fc-200d-2640-fe0f", "name": "woman gesturing OK: medium-light skin tone", "alpha_code": ":woman_gesturing_ok_tone2:", "aliases": ":woman_gesturing_ok_medium_light_skin_tone:" }, "1f646-1f3fb-2640": { "output": "1f646-1f3fb-200d-2640-fe0f", "name": "woman gesturing OK: light skin tone", "alpha_code": ":woman_gesturing_ok_tone1:", "aliases": ":woman_gesturing_ok_light_skin_tone:" }, "1f646-2640": { "output": "1f646-200d-2640-fe0f", "name": "woman gesturing OK", "alpha_code": ":woman_gesturing_ok:", "aliases": "" }, "1f645-1f3ff-2642": { "output": "1f645-1f3ff-200d-2642-fe0f", "name": "man gesturing NO: dark skin tone", "alpha_code": ":man_gesturing_no_tone5:", "aliases": ":man_gesturing_no_dark_skin_tone:" }, "1f645-1f3fe-2642": { "output": "1f645-1f3fe-200d-2642-fe0f", "name": "man gesturing NO: medium-dark skin tone", "alpha_code": ":man_gesturing_no_tone4:", "aliases": ":man_gesturing_no_medium_dark_skin_tone:" }, "1f645-1f3fd-2642": { "output": "1f645-1f3fd-200d-2642-fe0f", "name": "man gesturing NO: medium skin tone", "alpha_code": ":man_gesturing_no_tone3:", "aliases": ":man_gesturing_no_medium_skin_tone:" }, "1f645-1f3fc-2642": { "output": "1f645-1f3fc-200d-2642-fe0f", "name": "man gesturing NO: medium-light skin tone", "alpha_code": ":man_gesturing_no_tone2:", "aliases": ":man_gesturing_no_medium_light_skin_tone:" }, "1f645-1f3fb-2642": { "output": "1f645-1f3fb-200d-2642-fe0f", "name": "man gesturing NO: light skin tone", "alpha_code": ":man_gesturing_no_tone1:", "aliases": ":man_gesturing_no_light_skin_tone:" }, "1f645-2642": { "output": "1f645-200d-2642-fe0f", "name": "man gesturing NO", "alpha_code": ":man_gesturing_no:", "aliases": "" }, "1f645-1f3ff-2640": { "output": "1f645-1f3ff-200d-2640-fe0f", "name": "woman gesturing NO: dark skin tone", "alpha_code": ":woman_gesturing_no_tone5:", "aliases": ":woman_gesturing_no_dark_skin_tone:" }, "1f645-1f3fe-2640": { "output": "1f645-1f3fe-200d-2640-fe0f", "name": "woman gesturing NO: medium-dark skin tone", "alpha_code": ":woman_gesturing_no_tone4:", "aliases": ":woman_gesturing_no_medium_dark_skin_tone:" }, "1f645-1f3fd-2640": { "output": "1f645-1f3fd-200d-2640-fe0f", "name": "woman gesturing NO: medium skin tone", "alpha_code": ":woman_gesturing_no_tone3:", "aliases": ":woman_gesturing_no_medium_skin_tone:" }, "1f645-1f3fc-2640": { "output": "1f645-1f3fc-200d-2640-fe0f", "name": "woman gesturing NO: medium-light skin tone", "alpha_code": ":woman_gesturing_no_tone2:", "aliases": ":woman_gesturing_no_medium_light_skin_tone:" }, "1f645-1f3fb-2640": { "output": "1f645-1f3fb-200d-2640-fe0f", "name": "woman gesturing NO: light skin tone", "alpha_code": ":woman_gesturing_no_tone1:", "aliases": ":woman_gesturing_no_light_skin_tone:" }, "1f645-2640": { "output": "1f645-200d-2640-fe0f", "name": "woman gesturing NO", "alpha_code": ":woman_gesturing_no:", "aliases": "" }, "1f487-1f3ff-2642": { "output": "1f487-1f3ff-200d-2642-fe0f", "name": "man getting haircut: dark skin tone", "alpha_code": ":man_getting_haircut_tone5:", "aliases": ":man_getting_haircut_dark_skin_tone:" }, "1f487-1f3fe-2642": { "output": "1f487-1f3fe-200d-2642-fe0f", "name": "man getting haircut: medium-dark skin tone", "alpha_code": ":man_getting_haircut_tone4:", "aliases": ":man_getting_haircut_medium_dark_skin_tone:" }, "1f487-1f3fd-2642": { "output": "1f487-1f3fd-200d-2642-fe0f", "name": "man getting haircut: medium skin tone", "alpha_code": ":man_getting_haircut_tone3:", "aliases": ":man_getting_haircut_medium_skin_tone:" }, "1f487-1f3fc-2642": { "output": "1f487-1f3fc-200d-2642-fe0f", "name": "man getting haircut: medium-light skin tone", "alpha_code": ":man_getting_haircut_tone2:", "aliases": ":man_getting_haircut_medium_light_skin_tone:" }, "1f487-1f3fb-2642": { "output": "1f487-1f3fb-200d-2642-fe0f", "name": "man getting haircut: light skin tone", "alpha_code": ":man_getting_haircut_tone1:", "aliases": ":man_getting_haircut_light_skin_tone:" }, "1f487-2642": { "output": "1f487-200d-2642-fe0f", "name": "man getting haircut", "alpha_code": ":man_getting_haircut:", "aliases": "" }, "1f487-1f3ff-2640": { "output": "1f487-1f3ff-200d-2640-fe0f", "name": "woman getting haircut: dark skin tone", "alpha_code": ":woman_getting_haircut_tone5:", "aliases": ":woman_getting_haircut_dark_skin_tone:" }, "1f487-1f3fe-2640": { "output": "1f487-1f3fe-200d-2640-fe0f", "name": "woman getting haircut: medium-dark skin tone", "alpha_code": ":woman_getting_haircut_tone4:", "aliases": ":woman_getting_haircut_medium_dark_skin_tone:" }, "1f487-1f3fd-2640": { "output": "1f487-1f3fd-200d-2640-fe0f", "name": "woman getting haircut: medium skin tone", "alpha_code": ":woman_getting_haircut_tone3:", "aliases": ":woman_getting_haircut_medium_skin_tone:" }, "1f487-1f3fc-2640": { "output": "1f487-1f3fc-200d-2640-fe0f", "name": "woman getting haircut: medium-light skin tone", "alpha_code": ":woman_getting_haircut_tone2:", "aliases": ":woman_getting_haircut_medium_light_skin_tone:" }, "1f487-1f3fb-2640": { "output": "1f487-1f3fb-200d-2640-fe0f", "name": "woman getting haircut: light skin tone", "alpha_code": ":woman_getting_haircut_tone1:", "aliases": ":woman_getting_haircut_light_skin_tone:" }, "1f487-2640": { "output": "1f487-200d-2640-fe0f", "name": "woman getting haircut", "alpha_code": ":woman_getting_haircut:", "aliases": "" }, "1f486-1f3ff-2642": { "output": "1f486-1f3ff-200d-2642-fe0f", "name": "man getting massage: dark skin tone", "alpha_code": ":man_getting_face_massage_tone5:", "aliases": ":man_getting_face_massage_dark_skin_tone:" }, "1f486-1f3fe-2642": { "output": "1f486-1f3fe-200d-2642-fe0f", "name": "man getting massage: medium-dark skin tone", "alpha_code": ":man_getting_face_massage_tone4:", "aliases": ":man_getting_face_massage_medium_dark_skin_tone:" }, "1f486-1f3fd-2642": { "output": "1f486-1f3fd-200d-2642-fe0f", "name": "man getting massage: medium skin tone", "alpha_code": ":man_getting_face_massage_tone3:", "aliases": ":man_getting_face_massage_medium_skin_tone:" }, "1f486-1f3fc-2642": { "output": "1f486-1f3fc-200d-2642-fe0f", "name": "man getting massage: medium-light skin tone", "alpha_code": ":man_getting_face_massage_tone2:", "aliases": ":man_getting_face_massage_medium_light_skin_tone:" }, "1f486-1f3fb-2642": { "output": "1f486-1f3fb-200d-2642-fe0f", "name": "man getting massage: light skin tone", "alpha_code": ":man_getting_face_massage_tone1:", "aliases": ":man_getting_face_massage_light_skin_tone:" }, "1f486-2642": { "output": "1f486-200d-2642-fe0f", "name": "man getting massage", "alpha_code": ":man_getting_face_massage:", "aliases": "" }, "1f486-1f3ff-2640": { "output": "1f486-1f3ff-200d-2640-fe0f", "name": "woman getting massage: dark skin tone", "alpha_code": ":woman_getting_face_massage_tone5:", "aliases": ":woman_getting_face_massage_dark_skin_tone:" }, "1f486-1f3fe-2640": { "output": "1f486-1f3fe-200d-2640-fe0f", "name": "woman getting massage: medium-dark skin tone", "alpha_code": ":woman_getting_face_massage_tone4:", "aliases": ":woman_getting_face_massage_medium_dark_skin_tone:" }, "1f486-1f3fd-2640": { "output": "1f486-1f3fd-200d-2640-fe0f", "name": "woman getting massage: medium skin tone", "alpha_code": ":woman_getting_face_massage_tone3:", "aliases": ":woman_getting_face_massage_medium_skin_tone:" }, "1f486-1f3fc-2640": { "output": "1f486-1f3fc-200d-2640-fe0f", "name": "woman getting massage: medium-light skin tone", "alpha_code": ":woman_getting_face_massage_tone2:", "aliases": ":woman_getting_face_massage_medium_light_skin_tone:" }, "1f486-1f3fb-2640": { "output": "1f486-1f3fb-200d-2640-fe0f", "name": "woman getting massage: light skin tone", "alpha_code": ":woman_getting_face_massage_tone1:", "aliases": ":woman_getting_face_massage_light_skin_tone:" }, "1f486-2640": { "output": "1f486-200d-2640-fe0f", "name": "woman getting massage", "alpha_code": ":woman_getting_face_massage:", "aliases": "" }, "1f481-1f3ff-2642": { "output": "1f481-1f3ff-200d-2642-fe0f", "name": "man tipping hand: dark skin tone", "alpha_code": ":man_tipping_hand_tone5:", "aliases": ":man_tipping_hand_dark_skin_tone:" }, "1f481-1f3fe-2642": { "output": "1f481-1f3fe-200d-2642-fe0f", "name": "man tipping hand: medium-dark skin tone", "alpha_code": ":man_tipping_hand_tone4:", "aliases": ":man_tipping_hand_medium_dark_skin_tone:" }, "1f481-1f3fd-2642": { "output": "1f481-1f3fd-200d-2642-fe0f", "name": "man tipping hand: medium skin tone", "alpha_code": ":man_tipping_hand_tone3:", "aliases": ":man_tipping_hand_medium_skin_tone:" }, "1f481-1f3fc-2642": { "output": "1f481-1f3fc-200d-2642-fe0f", "name": "man tipping hand: medium-light skin tone", "alpha_code": ":man_tipping_hand_tone2:", "aliases": ":man_tipping_hand_medium_light_skin_tone:" }, "1f481-1f3fb-2642": { "output": "1f481-1f3fb-200d-2642-fe0f", "name": "man tipping hand: light skin tone", "alpha_code": ":man_tipping_hand_tone1:", "aliases": ":man_tipping_hand_light_skin_tone:" }, "1f481-2642": { "output": "1f481-200d-2642-fe0f", "name": "man tipping hand", "alpha_code": ":man_tipping_hand:", "aliases": "" }, "1f481-1f3ff-2640": { "output": "1f481-1f3ff-200d-2640-fe0f", "name": "woman tipping hand: dark skin tone", "alpha_code": ":woman_tipping_hand_tone5:", "aliases": ":woman_tipping_hand_dark_skin_tone:" }, "1f481-1f3fe-2640": { "output": "1f481-1f3fe-200d-2640-fe0f", "name": "woman tipping hand: medium-dark skin tone", "alpha_code": ":woman_tipping_hand_tone4:", "aliases": ":woman_tipping_hand_medium_dark_skin_tone:" }, "1f481-1f3fd-2640": { "output": "1f481-1f3fd-200d-2640-fe0f", "name": "woman tipping hand: medium skin tone", "alpha_code": ":woman_tipping_hand_tone3:", "aliases": ":woman_tipping_hand_medium_skin_tone:" }, "1f481-1f3fc-2640": { "output": "1f481-1f3fc-200d-2640-fe0f", "name": "woman tipping hand: medium-light skin tone", "alpha_code": ":woman_tipping_hand_tone2:", "aliases": ":woman_tipping_hand_medium_light_skin_tone:" }, "1f481-1f3fb-2640": { "output": "1f481-1f3fb-200d-2640-fe0f", "name": "woman tipping hand: light skin tone", "alpha_code": ":woman_tipping_hand_tone1:", "aliases": ":woman_tipping_hand_light_skin_tone:" }, "1f481-2640": { "output": "1f481-200d-2640-fe0f", "name": "woman tipping hand", "alpha_code": ":woman_tipping_hand:", "aliases": "" }, "1f471-1f3ff-2642": { "output": "1f471-1f3ff-200d-2642-fe0f", "name": "blond-haired man: dark skin tone", "alpha_code": ":blond-haired_man_tone5:", "aliases": ":blond-haired_man_dark_skin_tone:" }, "1f471-1f3fe-2642": { "output": "1f471-1f3fe-200d-2642-fe0f", "name": "blond-haired man: medium-dark skin tone", "alpha_code": ":blond-haired_man_tone4:", "aliases": ":blond-haired_man_medium_dark_skin_tone:" }, "1f471-1f3fd-2642": { "output": "1f471-1f3fd-200d-2642-fe0f", "name": "blond-haired man: medium skin tone", "alpha_code": ":blond-haired_man_tone3:", "aliases": ":blond-haired_man_medium_skin_tone:" }, "1f471-1f3fc-2642": { "output": "1f471-1f3fc-200d-2642-fe0f", "name": "blond-haired man: medium-light skin tone", "alpha_code": ":blond-haired_man_tone2:", "aliases": ":blond-haired_man_medium_light_skin_tone:" }, "1f471-1f3fb-2642": { "output": "1f471-1f3fb-200d-2642-fe0f", "name": "blond-haired man: light skin tone", "alpha_code": ":blond-haired_man_tone1:", "aliases": ":blond-haired_man_light_skin_tone:" }, "1f471-2642": { "output": "1f471-200d-2642-fe0f", "name": "man: blond hair", "alpha_code": ":blond-haired_man:", "aliases": "" }, "1f471-1f3ff-2640": { "output": "1f471-1f3ff-200d-2640-fe0f", "name": "blond-haired woman: dark skin tone", "alpha_code": ":blond-haired_woman_tone5:", "aliases": ":blond-haired_woman_dark_skin_tone:" }, "1f471-1f3fe-2640": { "output": "1f471-1f3fe-200d-2640-fe0f", "name": "blond-haired woman: medium-dark skin tone", "alpha_code": ":blond-haired_woman_tone4:", "aliases": ":blond-haired_woman_medium_dark_skin_tone:" }, "1f471-1f3fd-2640": { "output": "1f471-1f3fd-200d-2640-fe0f", "name": "blond-haired woman: medium skin tone", "alpha_code": ":blond-haired_woman_tone3:", "aliases": ":blond-haired_woman_medium_skin_tone:" }, "1f471-1f3fc-2640": { "output": "1f471-1f3fc-200d-2640-fe0f", "name": "blond-haired woman: medium-light skin tone", "alpha_code": ":blond-haired_woman_tone2:", "aliases": ":blond-haired_woman_medium_light_skin_tone:" }, "1f471-1f3fb-2640": { "output": "1f471-1f3fb-200d-2640-fe0f", "name": "blond-haired woman: light skin tone", "alpha_code": ":blond-haired_woman_tone1:", "aliases": ":blond-haired_woman_light_skin_tone:" }, "1f471-2640": { "output": "1f471-200d-2640-fe0f", "name": "woman: blond hair", "alpha_code": ":blond-haired_woman:", "aliases": "" }, "1f473-1f3ff-2642": { "output": "1f473-1f3ff-200d-2642-fe0f", "name": "man wearing turban: dark skin tone", "alpha_code": ":man_wearing_turban_tone5:", "aliases": ":man_wearing_turban_dark_skin_tone:" }, "1f473-1f3fe-2642": { "output": "1f473-1f3fe-200d-2642-fe0f", "name": "man wearing turban: medium-dark skin tone", "alpha_code": ":man_wearing_turban_tone4:", "aliases": ":man_wearing_turban_medium_dark_skin_tone:" }, "1f473-1f3fd-2642": { "output": "1f473-1f3fd-200d-2642-fe0f", "name": "man wearing turban: medium skin tone", "alpha_code": ":man_wearing_turban_tone3:", "aliases": ":man_wearing_turban_medium_skin_tone:" }, "1f473-1f3fc-2642": { "output": "1f473-1f3fc-200d-2642-fe0f", "name": "man wearing turban: medium-light skin tone", "alpha_code": ":man_wearing_turban_tone2:", "aliases": ":man_wearing_turban_medium_light_skin_tone:" }, "1f473-1f3fb-2642": { "output": "1f473-1f3fb-200d-2642-fe0f", "name": "man wearing turban: light skin tone", "alpha_code": ":man_wearing_turban_tone1:", "aliases": ":man_wearing_turban_light_skin_tone:" }, "1f473-2642": { "output": "1f473-200d-2642-fe0f", "name": "man wearing turban", "alpha_code": ":man_wearing_turban:", "aliases": "" }, "1f473-1f3ff-2640": { "output": "1f473-1f3ff-200d-2640-fe0f", "name": "woman wearing turban: dark skin tone", "alpha_code": ":woman_wearing_turban_tone5:", "aliases": ":woman_wearing_turban_dark_skin_tone:" }, "1f473-1f3fe-2640": { "output": "1f473-1f3fe-200d-2640-fe0f", "name": "woman wearing turban: medium-dark skin tone", "alpha_code": ":woman_wearing_turban_tone4:", "aliases": ":woman_wearing_turban_medium_dark_skin_tone:" }, "1f473-1f3fd-2640": { "output": "1f473-1f3fd-200d-2640-fe0f", "name": "woman wearing turban: medium skin tone", "alpha_code": ":woman_wearing_turban_tone3:", "aliases": ":woman_wearing_turban_medium_skin_tone:" }, "1f473-1f3fc-2640": { "output": "1f473-1f3fc-200d-2640-fe0f", "name": "woman wearing turban: medium-light skin tone", "alpha_code": ":woman_wearing_turban_tone2:", "aliases": ":woman_wearing_turban_medium_light_skin_tone:" }, "1f473-1f3fb-2640": { "output": "1f473-1f3fb-200d-2640-fe0f", "name": "woman wearing turban: light skin tone", "alpha_code": ":woman_wearing_turban_tone1:", "aliases": ":woman_wearing_turban_light_skin_tone:" }, "1f473-2640": { "output": "1f473-200d-2640-fe0f", "name": "woman wearing turban", "alpha_code": ":woman_wearing_turban:", "aliases": "" }, "1f482-1f3ff-2642": { "output": "1f482-1f3ff-200d-2642-fe0f", "name": "man guard: dark skin tone", "alpha_code": ":man_guard_tone5:", "aliases": ":man_guard_dark_skin_tone:" }, "1f482-1f3fe-2642": { "output": "1f482-1f3fe-200d-2642-fe0f", "name": "man guard: medium-dark skin tone", "alpha_code": ":man_guard_tone4:", "aliases": ":man_guard_medium_dark_skin_tone:" }, "1f482-1f3fd-2642": { "output": "1f482-1f3fd-200d-2642-fe0f", "name": "man guard: medium skin tone", "alpha_code": ":man_guard_tone3:", "aliases": ":man_guard_medium_skin_tone:" }, "1f482-1f3fc-2642": { "output": "1f482-1f3fc-200d-2642-fe0f", "name": "man guard: medium-light skin tone", "alpha_code": ":man_guard_tone2:", "aliases": ":man_guard_medium_light_skin_tone:" }, "1f482-1f3fb-2642": { "output": "1f482-1f3fb-200d-2642-fe0f", "name": "man guard: light skin tone", "alpha_code": ":man_guard_tone1:", "aliases": ":man_guard_light_skin_tone:" }, "1f482-2642": { "output": "1f482-200d-2642-fe0f", "name": "man guard", "alpha_code": ":man_guard:", "aliases": "" }, "1f482-1f3ff-2640": { "output": "1f482-1f3ff-200d-2640-fe0f", "name": "woman guard: dark skin tone", "alpha_code": ":woman_guard_tone5:", "aliases": ":woman_guard_dark_skin_tone:" }, "1f482-1f3fe-2640": { "output": "1f482-1f3fe-200d-2640-fe0f", "name": "woman guard: medium-dark skin tone", "alpha_code": ":woman_guard_tone4:", "aliases": ":woman_guard_medium_dark_skin_tone:" }, "1f482-1f3fd-2640": { "output": "1f482-1f3fd-200d-2640-fe0f", "name": "woman guard: medium skin tone", "alpha_code": ":woman_guard_tone3:", "aliases": ":woman_guard_medium_skin_tone:" }, "1f482-1f3fc-2640": { "output": "1f482-1f3fc-200d-2640-fe0f", "name": "woman guard: medium-light skin tone", "alpha_code": ":woman_guard_tone2:", "aliases": ":woman_guard_medium_light_skin_tone:" }, "1f482-1f3fb-2640": { "output": "1f482-1f3fb-200d-2640-fe0f", "name": "woman guard: light skin tone", "alpha_code": ":woman_guard_tone1:", "aliases": ":woman_guard_light_skin_tone:" }, "1f482-2640": { "output": "1f482-200d-2640-fe0f", "name": "woman guard", "alpha_code": ":woman_guard:", "aliases": "" }, "1f575-1f3ff-2642": { "output": "1f575-1f3ff-200d-2642-fe0f", "name": "man detective: dark skin tone", "alpha_code": ":man_detective_tone5:", "aliases": ":man_detective_dark_skin_tone:" }, "1f575-1f3fe-2642": { "output": "1f575-1f3fe-200d-2642-fe0f", "name": "man detective: medium-dark skin tone", "alpha_code": ":man_detective_tone4:", "aliases": ":man_detective_medium_dark_skin_tone:" }, "1f575-1f3fd-2642": { "output": "1f575-1f3fd-200d-2642-fe0f", "name": "man detective: medium skin tone", "alpha_code": ":man_detective_tone3:", "aliases": ":man_detective_medium_skin_tone:" }, "1f575-1f3fc-2642": { "output": "1f575-1f3fc-200d-2642-fe0f", "name": "man detective: medium-light skin tone", "alpha_code": ":man_detective_tone2:", "aliases": ":man_detective_medium_light_skin_tone:" }, "1f575-1f3fb-2642": { "output": "1f575-1f3fb-200d-2642-fe0f", "name": "man detective: light skin tone", "alpha_code": ":man_detective_tone1:", "aliases": ":man_detective_light_skin_tone:" }, "1f575-2642": { "output": "1f575-fe0f-200d-2642-fe0f", "name": "man detective", "alpha_code": ":man_detective:", "aliases": "" }, "1f575-1f3ff-2640": { "output": "1f575-1f3ff-200d-2640-fe0f", "name": "woman detective: dark skin tone", "alpha_code": ":woman_detective_tone5:", "aliases": ":woman_detective_dark_skin_tone:" }, "1f575-1f3fe-2640": { "output": "1f575-1f3fe-200d-2640-fe0f", "name": "woman detective: medium-dark skin tone", "alpha_code": ":woman_detective_tone4:", "aliases": ":woman_detective_medium_dark_skin_tone:" }, "1f575-1f3fd-2640": { "output": "1f575-1f3fd-200d-2640-fe0f", "name": "woman detective: medium skin tone", "alpha_code": ":woman_detective_tone3:", "aliases": ":woman_detective_medium_skin_tone:" }, "1f575-1f3fc-2640": { "output": "1f575-1f3fc-200d-2640-fe0f", "name": "woman detective: medium-light skin tone", "alpha_code": ":woman_detective_tone2:", "aliases": ":woman_detective_medium_light_skin_tone:" }, "1f575-1f3fb-2640": { "output": "1f575-1f3fb-200d-2640-fe0f", "name": "woman detective: light skin tone", "alpha_code": ":woman_detective_tone1:", "aliases": ":woman_detective_light_skin_tone:" }, "1f575-2640": { "output": "1f575-fe0f-200d-2640-fe0f", "name": "woman detective", "alpha_code": ":woman_detective:", "aliases": "" }, "1f477-1f3ff-2642": { "output": "1f477-1f3ff-200d-2642-fe0f", "name": "man construction worker: dark skin tone", "alpha_code": ":man_construction_worker_tone5:", "aliases": ":man_construction_worker_dark_skin_tone:" }, "1f477-1f3fe-2642": { "output": "1f477-1f3fe-200d-2642-fe0f", "name": "man construction worker: medium-dark skin tone", "alpha_code": ":man_construction_worker_tone4:", "aliases": ":man_construction_worker_medium_dark_skin_tone:" }, "1f477-1f3fd-2642": { "output": "1f477-1f3fd-200d-2642-fe0f", "name": "man construction worker: medium skin tone", "alpha_code": ":man_construction_worker_tone3:", "aliases": ":man_construction_worker_medium_skin_tone:" }, "1f477-1f3fc-2642": { "output": "1f477-1f3fc-200d-2642-fe0f", "name": "man construction worker: medium-light skin tone", "alpha_code": ":man_construction_worker_tone2:", "aliases": ":man_construction_worker_medium_light_skin_tone:" }, "1f477-1f3fb-2642": { "output": "1f477-1f3fb-200d-2642-fe0f", "name": "man construction worker: light skin tone", "alpha_code": ":man_construction_worker_tone1:", "aliases": ":man_construction_worker_light_skin_tone:" }, "1f477-2642": { "output": "1f477-200d-2642-fe0f", "name": "man construction worker", "alpha_code": ":man_construction_worker:", "aliases": "" }, "1f477-1f3ff-2640": { "output": "1f477-1f3ff-200d-2640-fe0f", "name": "woman construction worker: dark skin tone", "alpha_code": ":woman_construction_worker_tone5:", "aliases": ":woman_construction_worker_dark_skin_tone:" }, "1f477-1f3fe-2640": { "output": "1f477-1f3fe-200d-2640-fe0f", "name": "woman construction worker: medium-dark skin tone", "alpha_code": ":woman_construction_worker_tone4:", "aliases": ":woman_construction_worker_medium_dark_skin_tone:" }, "1f477-1f3fd-2640": { "output": "1f477-1f3fd-200d-2640-fe0f", "name": "woman construction worker: medium skin tone", "alpha_code": ":woman_construction_worker_tone3:", "aliases": ":woman_construction_worker_medium_skin_tone:" }, "1f477-1f3fc-2640": { "output": "1f477-1f3fc-200d-2640-fe0f", "name": "woman construction worker: medium-light skin tone", "alpha_code": ":woman_construction_worker_tone2:", "aliases": ":woman_construction_worker_medium_light_skin_tone:" }, "1f477-1f3fb-2640": { "output": "1f477-1f3fb-200d-2640-fe0f", "name": "woman construction worker: light skin tone", "alpha_code": ":woman_construction_worker_tone1:", "aliases": ":woman_construction_worker_light_skin_tone:" }, "1f477-2640": { "output": "1f477-200d-2640-fe0f", "name": "woman construction worker", "alpha_code": ":woman_construction_worker:", "aliases": "" }, "1f46e-1f3ff-2642": { "output": "1f46e-1f3ff-200d-2642-fe0f", "name": "man police officer: dark skin tone", "alpha_code": ":man_police_officer_tone5:", "aliases": ":man_police_officer_dark_skin_tone:" }, "1f46e-1f3fe-2642": { "output": "1f46e-1f3fe-200d-2642-fe0f", "name": "man police officer: medium-dark skin tone", "alpha_code": ":man_police_officer_tone4:", "aliases": ":man_police_officer_medium_dark_skin_tone:" }, "1f46e-1f3fd-2642": { "output": "1f46e-1f3fd-200d-2642-fe0f", "name": "man police officer: medium skin tone", "alpha_code": ":man_police_officer_tone3:", "aliases": ":man_police_officer_medium_skin_tone:" }, "1f46e-1f3fc-2642": { "output": "1f46e-1f3fc-200d-2642-fe0f", "name": "man police officer: medium-light skin tone", "alpha_code": ":man_police_officer_tone2:", "aliases": ":man_police_officer_medium_light_skin_tone:" }, "1f46e-1f3fb-2642": { "output": "1f46e-1f3fb-200d-2642-fe0f", "name": "man police officer: light skin tone", "alpha_code": ":man_police_officer_tone1:", "aliases": ":man_police_officer_light_skin_tone:" }, "1f46e-2642": { "output": "1f46e-200d-2642-fe0f", "name": "man police officer", "alpha_code": ":man_police_officer:", "aliases": "" }, "1f46e-1f3ff-2640": { "output": "1f46e-1f3ff-200d-2640-fe0f", "name": "woman police officer: dark skin tone", "alpha_code": ":woman_police_officer_tone5:", "aliases": ":woman_police_officer_dark_skin_tone:" }, "1f46e-1f3fe-2640": { "output": "1f46e-1f3fe-200d-2640-fe0f", "name": "woman police officer: medium-dark skin tone", "alpha_code": ":woman_police_officer_tone4:", "aliases": ":woman_police_officer_medium_dark_skin_tone:" }, "1f46e-1f3fd-2640": { "output": "1f46e-1f3fd-200d-2640-fe0f", "name": "woman police officer: medium skin tone", "alpha_code": ":woman_police_officer_tone3:", "aliases": ":woman_police_officer_medium_skin_tone:" }, "1f46e-1f3fc-2640": { "output": "1f46e-1f3fc-200d-2640-fe0f", "name": "woman police officer: medium-light skin tone", "alpha_code": ":woman_police_officer_tone2:", "aliases": ":woman_police_officer_medium_light_skin_tone:" }, "1f46e-1f3fb-2640": { "output": "1f46e-1f3fb-200d-2640-fe0f", "name": "woman police officer: light skin tone", "alpha_code": ":woman_police_officer_tone1:", "aliases": ":woman_police_officer_light_skin_tone:" }, "1f46e-2640": { "output": "1f46e-200d-2640-fe0f", "name": "woman police officer", "alpha_code": ":woman_police_officer:", "aliases": "" }, "1f468-1f3ff-1f4bb": { "output": "1f468-1f3ff-200d-1f4bb", "name": "man technologist: dark skin tone", "alpha_code": ":man_technologist_tone5:", "aliases": ":man_technologist_dark_skin_tone:" }, "1f468-1f3fe-1f4bb": { "output": "1f468-1f3fe-200d-1f4bb", "name": "man technologist: medium-dark skin tone", "alpha_code": ":man_technologist_tone4:", "aliases": ":man_technologist_medium_dark_skin_tone:" }, "1f468-1f3fd-1f4bb": { "output": "1f468-1f3fd-200d-1f4bb", "name": "man technologist: medium skin tone", "alpha_code": ":man_technologist_tone3:", "aliases": ":man_technologist_medium_skin_tone:" }, "1f468-1f3fc-1f4bb": { "output": "1f468-1f3fc-200d-1f4bb", "name": "man technologist: medium-light skin tone", "alpha_code": ":man_technologist_tone2:", "aliases": ":man_technologist_medium_light_skin_tone:" }, "1f468-1f3fb-1f4bb": { "output": "1f468-1f3fb-200d-1f4bb", "name": "man technologist: light skin tone", "alpha_code": ":man_technologist_tone1:", "aliases": ":man_technologist_light_skin_tone:" }, "1f468-1f4bb": { "output": "1f468-200d-1f4bb", "name": "man technologist", "alpha_code": ":man_technologist:", "aliases": "" }, "1f469-1f3ff-1f4bb": { "output": "1f469-1f3ff-200d-1f4bb", "name": "woman technologist: dark skin tone", "alpha_code": ":woman_technologist_tone5:", "aliases": ":woman_technologist_dark_skin_tone:" }, "1f469-1f3fe-1f4bb": { "output": "1f469-1f3fe-200d-1f4bb", "name": "woman technologist: medium-dark skin tone", "alpha_code": ":woman_technologist_tone4:", "aliases": ":woman_technologist_medium_dark_skin_tone:" }, "1f469-1f3fd-1f4bb": { "output": "1f469-1f3fd-200d-1f4bb", "name": "woman technologist: medium skin tone", "alpha_code": ":woman_technologist_tone3:", "aliases": ":woman_technologist_medium_skin_tone:" }, "1f469-1f3fc-1f4bb": { "output": "1f469-1f3fc-200d-1f4bb", "name": "woman technologist: medium-light skin tone", "alpha_code": ":woman_technologist_tone2:", "aliases": ":woman_technologist_medium_light_skin_tone:" }, "1f469-1f3fb-1f4bb": { "output": "1f469-1f3fb-200d-1f4bb", "name": "woman technologist: light skin tone", "alpha_code": ":woman_technologist_tone1:", "aliases": ":woman_technologist_light_skin_tone:" }, "1f469-1f4bb": { "output": "1f469-200d-1f4bb", "name": "woman technologist", "alpha_code": ":woman_technologist:", "aliases": "" }, "1f468-1f3ff-1f3eb": { "output": "1f468-1f3ff-200d-1f3eb", "name": "man teacher: dark skin tone", "alpha_code": ":man_teacher_tone5:", "aliases": ":man_teacher_dark_skin_tone:" }, "1f468-1f3fe-1f3eb": { "output": "1f468-1f3fe-200d-1f3eb", "name": "man teacher: medium-dark skin tone", "alpha_code": ":man_teacher_tone4:", "aliases": ":man_teacher_medium_dark_skin_tone:" }, "1f468-1f3fd-1f3eb": { "output": "1f468-1f3fd-200d-1f3eb", "name": "man teacher: medium skin tone", "alpha_code": ":man_teacher_tone3:", "aliases": ":man_teacher_medium_skin_tone:" }, "1f468-1f3fc-1f3eb": { "output": "1f468-1f3fc-200d-1f3eb", "name": "man teacher: medium-light skin tone", "alpha_code": ":man_teacher_tone2:", "aliases": ":man_teacher_medium_light_skin_tone:" }, "1f468-1f3fb-1f3eb": { "output": "1f468-1f3fb-200d-1f3eb", "name": "man teacher: light skin tone", "alpha_code": ":man_teacher_tone1:", "aliases": ":man_teacher_light_skin_tone:" }, "1f468-1f3eb": { "output": "1f468-200d-1f3eb", "name": "man teacher", "alpha_code": ":man_teacher:", "aliases": "" }, "1f469-1f3ff-1f3eb": { "output": "1f469-1f3ff-200d-1f3eb", "name": "woman teacher: dark skin tone", "alpha_code": ":woman_teacher_tone5:", "aliases": ":woman_teacher_dark_skin_tone:" }, "1f469-1f3fe-1f3eb": { "output": "1f469-1f3fe-200d-1f3eb", "name": "woman teacher: medium-dark skin tone", "alpha_code": ":woman_teacher_tone4:", "aliases": ":woman_teacher_medium_dark_skin_tone:" }, "1f469-1f3fd-1f3eb": { "output": "1f469-1f3fd-200d-1f3eb", "name": "woman teacher: medium skin tone", "alpha_code": ":woman_teacher_tone3:", "aliases": ":woman_teacher_medium_skin_tone:" }, "1f469-1f3fc-1f3eb": { "output": "1f469-1f3fc-200d-1f3eb", "name": "woman teacher: medium-light skin tone", "alpha_code": ":woman_teacher_tone2:", "aliases": ":woman_teacher_medium_light_skin_tone:" }, "1f469-1f3fb-1f3eb": { "output": "1f469-1f3fb-200d-1f3eb", "name": "woman teacher: light skin tone", "alpha_code": ":woman_teacher_tone1:", "aliases": ":woman_teacher_light_skin_tone:" }, "1f469-1f3eb": { "output": "1f469-200d-1f3eb", "name": "woman teacher", "alpha_code": ":woman_teacher:", "aliases": "" }, "1f468-1f3ff-1f393": { "output": "1f468-1f3ff-200d-1f393", "name": "man student: dark skin tone", "alpha_code": ":man_student_tone5:", "aliases": ":man_student_dark_skin_tone:" }, "1f468-1f3fe-1f393": { "output": "1f468-1f3fe-200d-1f393", "name": "man student: medium-dark skin tone", "alpha_code": ":man_student_tone4:", "aliases": ":man_student_medium_dark_skin_tone:" }, "1f468-1f3fd-1f393": { "output": "1f468-1f3fd-200d-1f393", "name": "man student: medium skin tone", "alpha_code": ":man_student_tone3:", "aliases": ":man_student_medium_skin_tone:" }, "1f468-1f3fc-1f393": { "output": "1f468-1f3fc-200d-1f393", "name": "man student: medium-light skin tone", "alpha_code": ":man_student_tone2:", "aliases": ":man_student_medium_light_skin_tone:" }, "1f468-1f3fb-1f393": { "output": "1f468-1f3fb-200d-1f393", "name": "man student: light skin tone", "alpha_code": ":man_student_tone1:", "aliases": ":man_student_light_skin_tone:" }, "1f468-1f393": { "output": "1f468-200d-1f393", "name": "man student", "alpha_code": ":man_student:", "aliases": "" }, "1f469-1f3ff-1f393": { "output": "1f469-1f3ff-200d-1f393", "name": "woman student: dark skin tone", "alpha_code": ":woman_student_tone5:", "aliases": ":woman_student_dark_skin_tone:" }, "1f469-1f3fe-1f393": { "output": "1f469-1f3fe-200d-1f393", "name": "woman student: medium-dark skin tone", "alpha_code": ":woman_student_tone4:", "aliases": ":woman_student_medium_dark_skin_tone:" }, "1f469-1f3fd-1f393": { "output": "1f469-1f3fd-200d-1f393", "name": "woman student: medium skin tone", "alpha_code": ":woman_student_tone3:", "aliases": ":woman_student_medium_skin_tone:" }, "1f469-1f3fc-1f393": { "output": "1f469-1f3fc-200d-1f393", "name": "woman student: medium-light skin tone", "alpha_code": ":woman_student_tone2:", "aliases": ":woman_student_medium_light_skin_tone:" }, "1f469-1f3fb-1f393": { "output": "1f469-1f3fb-200d-1f393", "name": "woman student: light skin tone", "alpha_code": ":woman_student_tone1:", "aliases": ":woman_student_light_skin_tone:" }, "1f469-1f393": { "output": "1f469-200d-1f393", "name": "woman student", "alpha_code": ":woman_student:", "aliases": "" }, "1f468-1f3ff-1f3a4": { "output": "1f468-1f3ff-200d-1f3a4", "name": "man singer: dark skin tone", "alpha_code": ":man_singer_tone5:", "aliases": ":man_singer_dark_skin_tone:" }, "1f468-1f3fe-1f3a4": { "output": "1f468-1f3fe-200d-1f3a4", "name": "man singer: medium-dark skin tone", "alpha_code": ":man_singer_tone4:", "aliases": ":man_singer_medium_dark_skin_tone:" }, "1f468-1f3fd-1f3a4": { "output": "1f468-1f3fd-200d-1f3a4", "name": "man singer: medium skin tone", "alpha_code": ":man_singer_tone3:", "aliases": ":man_singer_medium_skin_tone:" }, "1f468-1f3fc-1f3a4": { "output": "1f468-1f3fc-200d-1f3a4", "name": "man singer: medium-light skin tone", "alpha_code": ":man_singer_tone2:", "aliases": ":man_singer_medium_light_skin_tone:" }, "1f468-1f3fb-1f3a4": { "output": "1f468-1f3fb-200d-1f3a4", "name": "man singer: light skin tone", "alpha_code": ":man_singer_tone1:", "aliases": ":man_singer_light_skin_tone:" }, "1f468-1f3a4": { "output": "1f468-200d-1f3a4", "name": "man singer", "alpha_code": ":man_singer:", "aliases": "" }, "1f469-1f3ff-1f3a4": { "output": "1f469-1f3ff-200d-1f3a4", "name": "woman singer: dark skin tone", "alpha_code": ":woman_singer_tone5:", "aliases": ":woman_singer_dark_skin_tone:" }, "1f469-1f3fe-1f3a4": { "output": "1f469-1f3fe-200d-1f3a4", "name": "woman singer: medium-dark skin tone", "alpha_code": ":woman_singer_tone4:", "aliases": ":woman_singer_medium_dark_skin_tone:" }, "1f469-1f3fd-1f3a4": { "output": "1f469-1f3fd-200d-1f3a4", "name": "woman singer: medium skin tone", "alpha_code": ":woman_singer_tone3:", "aliases": ":woman_singer_medium_skin_tone:" }, "1f469-1f3fc-1f3a4": { "output": "1f469-1f3fc-200d-1f3a4", "name": "woman singer: medium-light skin tone", "alpha_code": ":woman_singer_tone2:", "aliases": ":woman_singer_medium_light_skin_tone:" }, "1f469-1f3fb-1f3a4": { "output": "1f469-1f3fb-200d-1f3a4", "name": "woman singer: light skin tone", "alpha_code": ":woman_singer_tone1:", "aliases": ":woman_singer_light_skin_tone:" }, "1f469-1f3a4": { "output": "1f469-200d-1f3a4", "name": "woman singer", "alpha_code": ":woman_singer:", "aliases": "" }, "1f468-1f3ff-1f52c": { "output": "1f468-1f3ff-200d-1f52c", "name": "man scientist: dark skin tone", "alpha_code": ":man_scientist_tone5:", "aliases": ":man_scientist_dark_skin_tone:" }, "1f468-1f3fe-1f52c": { "output": "1f468-1f3fe-200d-1f52c", "name": "man scientist: medium-dark skin tone", "alpha_code": ":man_scientist_tone4:", "aliases": ":man_scientist_medium_dark_skin_tone:" }, "1f468-1f3fd-1f52c": { "output": "1f468-1f3fd-200d-1f52c", "name": "man scientist: medium skin tone", "alpha_code": ":man_scientist_tone3:", "aliases": ":man_scientist_medium_skin_tone:" }, "1f468-1f3fc-1f52c": { "output": "1f468-1f3fc-200d-1f52c", "name": "man scientist: medium-light skin tone", "alpha_code": ":man_scientist_tone2:", "aliases": ":man_scientist_medium_light_skin_tone:" }, "1f468-1f3fb-1f52c": { "output": "1f468-1f3fb-200d-1f52c", "name": "man scientist: light skin tone", "alpha_code": ":man_scientist_tone1:", "aliases": ":man_scientist_light_skin_tone:" }, "1f468-1f52c": { "output": "1f468-200d-1f52c", "name": "man scientist", "alpha_code": ":man_scientist:", "aliases": "" }, "1f469-1f3ff-1f52c": { "output": "1f469-1f3ff-200d-1f52c", "name": "woman scientist: dark skin tone", "alpha_code": ":woman_scientist_tone5:", "aliases": ":woman_scientist_dark_skin_tone:" }, "1f469-1f3fe-1f52c": { "output": "1f469-1f3fe-200d-1f52c", "name": "woman scientist: medium-dark skin tone", "alpha_code": ":woman_scientist_tone4:", "aliases": ":woman_scientist_medium_dark_skin_tone:" }, "1f469-1f3fd-1f52c": { "output": "1f469-1f3fd-200d-1f52c", "name": "woman scientist: medium skin tone", "alpha_code": ":woman_scientist_tone3:", "aliases": ":woman_scientist_medium_skin_tone:" }, "1f469-1f3fc-1f52c": { "output": "1f469-1f3fc-200d-1f52c", "name": "woman scientist: medium-light skin tone", "alpha_code": ":woman_scientist_tone2:", "aliases": ":woman_scientist_medium_light_skin_tone:" }, "1f469-1f3fb-1f52c": { "output": "1f469-1f3fb-200d-1f52c", "name": "woman scientist: light skin tone", "alpha_code": ":woman_scientist_tone1:", "aliases": ":woman_scientist_light_skin_tone:" }, "1f469-1f52c": { "output": "1f469-200d-1f52c", "name": "woman scientist", "alpha_code": ":woman_scientist:", "aliases": "" }, "1f468-1f3ff-1f4bc": { "output": "1f468-1f3ff-200d-1f4bc", "name": "man office worker: dark skin tone", "alpha_code": ":man_office_worker_tone5:", "aliases": ":man_office_worker_dark_skin_tone:" }, "1f468-1f3fe-1f4bc": { "output": "1f468-1f3fe-200d-1f4bc", "name": "man office worker: medium-dark skin tone", "alpha_code": ":man_office_worker_tone4:", "aliases": ":man_office_worker_medium_dark_skin_tone:" }, "1f468-1f3fd-1f4bc": { "output": "1f468-1f3fd-200d-1f4bc", "name": "man office worker: medium skin tone", "alpha_code": ":man_office_worker_tone3:", "aliases": ":man_office_worker_medium_skin_tone:" }, "1f468-1f3fc-1f4bc": { "output": "1f468-1f3fc-200d-1f4bc", "name": "man office worker: medium-light skin tone", "alpha_code": ":man_office_worker_tone2:", "aliases": ":man_office_worker_medium_light_skin_tone:" }, "1f468-1f3fb-1f4bc": { "output": "1f468-1f3fb-200d-1f4bc", "name": "man office worker: light skin tone", "alpha_code": ":man_office_worker_tone1:", "aliases": ":man_office_worker_light_skin_tone:" }, "1f468-1f4bc": { "output": "1f468-200d-1f4bc", "name": "man office worker", "alpha_code": ":man_office_worker:", "aliases": "" }, "1f469-1f3ff-1f4bc": { "output": "1f469-1f3ff-200d-1f4bc", "name": "woman office worker: dark skin tone", "alpha_code": ":woman_office_worker_tone5:", "aliases": ":woman_office_worker_dark_skin_tone:" }, "1f469-1f3fe-1f4bc": { "output": "1f469-1f3fe-200d-1f4bc", "name": "woman office worker: medium-dark skin tone", "alpha_code": ":woman_office_worker_tone4:", "aliases": ":woman_office_worker_medium_dark_skin_tone:" }, "1f469-1f3fd-1f4bc": { "output": "1f469-1f3fd-200d-1f4bc", "name": "woman office worker: medium skin tone", "alpha_code": ":woman_office_worker_tone3:", "aliases": ":woman_office_worker_medium_skin_tone:" }, "1f469-1f3fc-1f4bc": { "output": "1f469-1f3fc-200d-1f4bc", "name": "woman office worker: medium-light skin tone", "alpha_code": ":woman_office_worker_tone2:", "aliases": ":woman_office_worker_medium_light_skin_tone:" }, "1f469-1f3fb-1f4bc": { "output": "1f469-1f3fb-200d-1f4bc", "name": "woman office worker: light skin tone", "alpha_code": ":woman_office_worker_tone1:", "aliases": ":woman_office_worker_light_skin_tone:" }, "1f469-1f4bc": { "output": "1f469-200d-1f4bc", "name": "woman office worker", "alpha_code": ":woman_office_worker:", "aliases": "" }, "1f468-1f3ff-1f527": { "output": "1f468-1f3ff-200d-1f527", "name": "man mechanic: dark skin tone", "alpha_code": ":man_mechanic_tone5:", "aliases": ":man_mechanic_dark_skin_tone:" }, "1f468-1f3fe-1f527": { "output": "1f468-1f3fe-200d-1f527", "name": "man mechanic: medium-dark skin tone", "alpha_code": ":man_mechanic_tone4:", "aliases": ":man_mechanic_medium_dark_skin_tone:" }, "1f468-1f3fd-1f527": { "output": "1f468-1f3fd-200d-1f527", "name": "man mechanic: medium skin tone", "alpha_code": ":man_mechanic_tone3:", "aliases": ":man_mechanic_medium_skin_tone:" }, "1f468-1f3fc-1f527": { "output": "1f468-1f3fc-200d-1f527", "name": "man mechanic: medium-light skin tone", "alpha_code": ":man_mechanic_tone2:", "aliases": ":man_mechanic_medium_light_skin_tone:" }, "1f468-1f3fb-1f527": { "output": "1f468-1f3fb-200d-1f527", "name": "man mechanic: light skin tone", "alpha_code": ":man_mechanic_tone1:", "aliases": ":man_mechanic_light_skin_tone:" }, "1f468-1f527": { "output": "1f468-200d-1f527", "name": "man mechanic", "alpha_code": ":man_mechanic:", "aliases": "" }, "1f469-1f3ff-1f527": { "output": "1f469-1f3ff-200d-1f527", "name": "woman mechanic: dark skin tone", "alpha_code": ":woman_mechanic_tone5:", "aliases": ":woman_mechanic_dark_skin_tone:" }, "1f469-1f3fe-1f527": { "output": "1f469-1f3fe-200d-1f527", "name": "woman mechanic: medium-dark skin tone", "alpha_code": ":woman_mechanic_tone4:", "aliases": ":woman_mechanic_medium_dark_skin_tone:" }, "1f469-1f3fd-1f527": { "output": "1f469-1f3fd-200d-1f527", "name": "woman mechanic: medium skin tone", "alpha_code": ":woman_mechanic_tone3:", "aliases": ":woman_mechanic_medium_skin_tone:" }, "1f469-1f3fc-1f527": { "output": "1f469-1f3fc-200d-1f527", "name": "woman mechanic: medium-light skin tone", "alpha_code": ":woman_mechanic_tone2:", "aliases": ":woman_mechanic_medium_light_skin_tone:" }, "1f469-1f3fb-1f527": { "output": "1f469-1f3fb-200d-1f527", "name": "woman mechanic: light skin tone", "alpha_code": ":woman_mechanic_tone1:", "aliases": ":woman_mechanic_light_skin_tone:" }, "1f469-1f527": { "output": "1f469-200d-1f527", "name": "woman mechanic", "alpha_code": ":woman_mechanic:", "aliases": "" }, "1f468-1f3ff-2695": { "output": "1f468-1f3ff-200d-2695-fe0f", "name": "man health worker: dark skin tone", "alpha_code": ":man_health_worker_tone5:", "aliases": ":man_health_worker_dark_skin_tone:" }, "1f468-1f3fe-2695": { "output": "1f468-1f3fe-200d-2695-fe0f", "name": "man health worker: medium-dark skin tone", "alpha_code": ":man_health_worker_tone4:", "aliases": ":man_health_worker_medium_dark_skin_tone:" }, "1f468-1f3fd-2695": { "output": "1f468-1f3fd-200d-2695-fe0f", "name": "man health worker: medium skin tone", "alpha_code": ":man_health_worker_tone3:", "aliases": ":man_health_worker_medium_skin_tone:" }, "1f468-1f3fc-2695": { "output": "1f468-1f3fc-200d-2695-fe0f", "name": "man health worker: medium-light skin tone", "alpha_code": ":man_health_worker_tone2:", "aliases": ":man_health_worker_medium_light_skin_tone:" }, "1f468-1f3fb-2695": { "output": "1f468-1f3fb-200d-2695-fe0f", "name": "man health worker: light skin tone", "alpha_code": ":man_health_worker_tone1:", "aliases": ":man_health_worker_light_skin_tone:" }, "1f468-2695": { "output": "1f468-200d-2695-fe0f", "name": "man health worker", "alpha_code": ":man_health_worker:", "aliases": "" }, "1f469-1f3ff-2695": { "output": "1f469-1f3ff-200d-2695-fe0f", "name": "woman health worker: dark skin tone", "alpha_code": ":woman_health_worker_tone5:", "aliases": ":woman_health_worker_dark_skin_tone:" }, "1f469-1f3fe-2695": { "output": "1f469-1f3fe-200d-2695-fe0f", "name": "woman health worker: medium-dark skin tone", "alpha_code": ":woman_health_worker_tone4:", "aliases": ":woman_health_worker_medium_dark_skin_tone:" }, "1f469-1f3fd-2695": { "output": "1f469-1f3fd-200d-2695-fe0f", "name": "woman health worker: medium skin tone", "alpha_code": ":woman_health_worker_tone3:", "aliases": ":woman_health_worker_medium_skin_tone:" }, "1f469-1f3fc-2695": { "output": "1f469-1f3fc-200d-2695-fe0f", "name": "woman health worker: medium-light skin tone", "alpha_code": ":woman_health_worker_tone2:", "aliases": ":woman_health_worker_medium_light_skin_tone:" }, "1f469-1f3fb-2695": { "output": "1f469-1f3fb-200d-2695-fe0f", "name": "woman health worker: light skin tone", "alpha_code": ":woman_health_worker_tone1:", "aliases": ":woman_health_worker_light_skin_tone:" }, "1f469-2695": { "output": "1f469-200d-2695-fe0f", "name": "woman health worker", "alpha_code": ":woman_health_worker:", "aliases": "" }, "1f468-1f3ff-1f3ed": { "output": "1f468-1f3ff-200d-1f3ed", "name": "man factory worker: dark skin tone", "alpha_code": ":man_factory_worker_tone5:", "aliases": ":man_factory_worker_dark_skin_tone:" }, "1f468-1f3fe-1f3ed": { "output": "1f468-1f3fe-200d-1f3ed", "name": "man factory worker: medium-dark skin tone", "alpha_code": ":man_factory_worker_tone4:", "aliases": ":man_factory_worker_medium_dark_skin_tone:" }, "1f468-1f3fd-1f3ed": { "output": "1f468-1f3fd-200d-1f3ed", "name": "man factory worker: medium skin tone", "alpha_code": ":man_factory_worker_tone3:", "aliases": ":man_factory_worker_medium_skin_tone:" }, "1f468-1f3fc-1f3ed": { "output": "1f468-1f3fc-200d-1f3ed", "name": "man factory worker: medium-light skin tone", "alpha_code": ":man_factory_worker_tone2:", "aliases": ":man_factory_worker_medium_light_skin_tone:" }, "1f468-1f3fb-1f3ed": { "output": "1f468-1f3fb-200d-1f3ed", "name": "man factory worker: light skin tone", "alpha_code": ":man_factory_worker_tone1:", "aliases": ":man_factory_worker_light_skin_tone:" }, "1f468-1f3ed": { "output": "1f468-200d-1f3ed", "name": "man factory worker", "alpha_code": ":man_factory_worker:", "aliases": "" }, "1f469-1f3ff-1f3ed": { "output": "1f469-1f3ff-200d-1f3ed", "name": "woman factory worker: dark skin tone", "alpha_code": ":woman_factory_worker_tone5:", "aliases": ":woman_factory_worker_dark_skin_tone:" }, "1f469-1f3fe-1f3ed": { "output": "1f469-1f3fe-200d-1f3ed", "name": "woman factory worker: medium-dark skin tone", "alpha_code": ":woman_factory_worker_tone4:", "aliases": ":woman_factory_worker_medium_dark_skin_tone:" }, "1f469-1f3fd-1f3ed": { "output": "1f469-1f3fd-200d-1f3ed", "name": "woman factory worker: medium skin tone", "alpha_code": ":woman_factory_worker_tone3:", "aliases": ":woman_factory_worker_medium_skin_tone:" }, "1f469-1f3fc-1f3ed": { "output": "1f469-1f3fc-200d-1f3ed", "name": "woman factory worker: medium-light skin tone", "alpha_code": ":woman_factory_worker_tone2:", "aliases": ":woman_factory_worker_medium_light_skin_tone:" }, "1f469-1f3fb-1f3ed": { "output": "1f469-1f3fb-200d-1f3ed", "name": "woman factory worker: light skin tone", "alpha_code": ":woman_factory_worker_tone1:", "aliases": ":woman_factory_worker_light_skin_tone:" }, "1f469-1f3ed": { "output": "1f469-200d-1f3ed", "name": "woman factory worker", "alpha_code": ":woman_factory_worker:", "aliases": "" }, "1f468-1f3ff-1f373": { "output": "1f468-1f3ff-200d-1f373", "name": "man cook: dark skin tone", "alpha_code": ":man_cook_tone5:", "aliases": ":man_cook_dark_skin_tone:" }, "1f468-1f3fe-1f373": { "output": "1f468-1f3fe-200d-1f373", "name": "man cook: medium-dark skin tone", "alpha_code": ":man_cook_tone4:", "aliases": ":man_cook_medium_dark_skin_tone:" }, "1f468-1f3fd-1f373": { "output": "1f468-1f3fd-200d-1f373", "name": "man cook: medium skin tone", "alpha_code": ":man_cook_tone3:", "aliases": ":man_cook_medium_skin_tone:" }, "1f468-1f3fc-1f373": { "output": "1f468-1f3fc-200d-1f373", "name": "man cook: medium-light skin tone", "alpha_code": ":man_cook_tone2:", "aliases": ":man_cook_medium_light_skin_tone:" }, "1f468-1f3fb-1f373": { "output": "1f468-1f3fb-200d-1f373", "name": "man cook: light skin tone", "alpha_code": ":man_cook_tone1:", "aliases": ":man_cook_light_skin_tone:" }, "1f468-1f373": { "output": "1f468-200d-1f373", "name": "man cook", "alpha_code": ":man_cook:", "aliases": "" }, "1f469-1f3ff-1f373": { "output": "1f469-1f3ff-200d-1f373", "name": "woman cook: dark skin tone", "alpha_code": ":woman_cook_tone5:", "aliases": ":woman_cook_dark_skin_tone:" }, "1f469-1f3fe-1f373": { "output": "1f469-1f3fe-200d-1f373", "name": "woman cook: medium-dark skin tone", "alpha_code": ":woman_cook_tone4:", "aliases": ":woman_cook_medium_dark_skin_tone:" }, "1f469-1f3fd-1f373": { "output": "1f469-1f3fd-200d-1f373", "name": "woman cook: medium skin tone", "alpha_code": ":woman_cook_tone3:", "aliases": ":woman_cook_medium_skin_tone:" }, "1f469-1f3fc-1f373": { "output": "1f469-1f3fc-200d-1f373", "name": "woman cook: medium-light skin tone", "alpha_code": ":woman_cook_tone2:", "aliases": ":woman_cook_medium_light_skin_tone:" }, "1f469-1f3fb-1f373": { "output": "1f469-1f3fb-200d-1f373", "name": "woman cook: light skin tone", "alpha_code": ":woman_cook_tone1:", "aliases": ":woman_cook_light_skin_tone:" }, "1f469-1f373": { "output": "1f469-200d-1f373", "name": "woman cook", "alpha_code": ":woman_cook:", "aliases": "" }, "1f468-1f3ff-1f33e": { "output": "1f468-1f3ff-200d-1f33e", "name": "man farmer: dark skin tone", "alpha_code": ":man_farmer_tone5:", "aliases": ":man_farmer_dark_skin_tone:" }, "1f468-1f3fe-1f33e": { "output": "1f468-1f3fe-200d-1f33e", "name": "man farmer: medium-dark skin tone", "alpha_code": ":man_farmer_tone4:", "aliases": ":man_farmer_medium_dark_skin_tone:" }, "1f468-1f3fd-1f33e": { "output": "1f468-1f3fd-200d-1f33e", "name": "man farmer: medium skin tone", "alpha_code": ":man_farmer_tone3:", "aliases": ":man_farmer_medium_skin_tone:" }, "1f468-1f3fc-1f33e": { "output": "1f468-1f3fc-200d-1f33e", "name": "man farmer: medium-light skin tone", "alpha_code": ":man_farmer_tone2:", "aliases": ":man_farmer_medium_light_skin_tone:" }, "1f468-1f3fb-1f33e": { "output": "1f468-1f3fb-200d-1f33e", "name": "man farmer: light skin tone", "alpha_code": ":man_farmer_tone1:", "aliases": ":man_farmer_light_skin_tone:" }, "1f468-1f33e": { "output": "1f468-200d-1f33e", "name": "man farmer", "alpha_code": ":man_farmer:", "aliases": "" }, "1f469-1f3ff-1f33e": { "output": "1f469-1f3ff-200d-1f33e", "name": "woman farmer: dark skin tone", "alpha_code": ":woman_farmer_tone5:", "aliases": ":woman_farmer_dark_skin_tone:" }, "1f469-1f3fe-1f33e": { "output": "1f469-1f3fe-200d-1f33e", "name": "woman farmer: medium-dark skin tone", "alpha_code": ":woman_farmer_tone4:", "aliases": ":woman_farmer_medium_dark_skin_tone:" }, "1f469-1f3fd-1f33e": { "output": "1f469-1f3fd-200d-1f33e", "name": "woman farmer: medium skin tone", "alpha_code": ":woman_farmer_tone3:", "aliases": ":woman_farmer_medium_skin_tone:" }, "1f469-1f3fc-1f33e": { "output": "1f469-1f3fc-200d-1f33e", "name": "woman farmer: medium-light skin tone", "alpha_code": ":woman_farmer_tone2:", "aliases": ":woman_farmer_medium_light_skin_tone:" }, "1f469-1f3fb-1f33e": { "output": "1f469-1f3fb-200d-1f33e", "name": "woman farmer: light skin tone", "alpha_code": ":woman_farmer_tone1:", "aliases": ":woman_farmer_light_skin_tone:" }, "1f469-1f33e": { "output": "1f469-200d-1f33e", "name": "woman farmer", "alpha_code": ":woman_farmer:", "aliases": "" }, "1f574-1f3fb": { "output": "1f574-1f3fb", "name": "man in suit levitating: light skin tone", "alpha_code": ":levitate_tone1:", "aliases": ":man_in_business_suit_levitating_tone1:|:man_in_business_suit_levitating_light_skin_tone:" }, "1f574-1f3fc": { "output": "1f574-1f3fc", "name": "man in suit levitating: medium-light skin tone", "alpha_code": ":levitate_tone2:", "aliases": ":man_in_business_suit_levitating_tone2:|:man_in_business_suit_levitating_medium_light_skin_tone:" }, "1f574-1f3fd": { "output": "1f574-1f3fd", "name": "man in suit levitating: medium skin tone", "alpha_code": ":levitate_tone3:", "aliases": ":man_in_business_suit_levitating_tone3:|:man_in_business_suit_levitating_medium_skin_tone:" }, "1f574-1f3fe": { "output": "1f574-1f3fe", "name": "man in suit levitating: medium-dark skin tone", "alpha_code": ":levitate_tone4:", "aliases": ":man_in_business_suit_levitating_tone4:|:man_in_business_suit_levitating_medium_dark_skin_tone:" }, "1f574-1f3ff": { "output": "1f574-1f3ff", "name": "man in suit levitating: dark skin tone", "alpha_code": ":levitate_tone5:", "aliases": ":man_in_business_suit_levitating_tone5:|:man_in_business_suit_levitating_dark_skin_tone:" }, "1f6cc-1f3fb": { "output": "1f6cc-1f3fb", "name": "person in bed: light skin tone", "alpha_code": ":person_in_bed_tone1:", "aliases": ":person_in_bed_light_skin_tone:" }, "1f6cc-1f3fc": { "output": "1f6cc-1f3fc", "name": "person in bed: medium-light skin tone", "alpha_code": ":person_in_bed_tone2:", "aliases": ":person_in_bed_medium_light_skin_tone:" }, "1f6cc-1f3fd": { "output": "1f6cc-1f3fd", "name": "person in bed: medium skin tone", "alpha_code": ":person_in_bed_tone3:", "aliases": ":person_in_bed_medium_skin_tone:" }, "1f6cc-1f3fe": { "output": "1f6cc-1f3fe", "name": "person in bed: medium-dark skin tone", "alpha_code": ":person_in_bed_tone4:", "aliases": ":person_in_bed_medium_dark_skin_tone:" }, "1f6cc-1f3ff": { "output": "1f6cc-1f3ff", "name": "person in bed: dark skin tone", "alpha_code": ":person_in_bed_tone5:", "aliases": ":person_in_bed_dark_skin_tone:" }, "1f468-1f466": { "output": "1f468-200d-1f466", "name": "family: man, boy", "alpha_code": ":family_man_boy:", "aliases": "" }, "1f468-1f466-1f466": { "output": "1f468-200d-1f466-200d-1f466", "name": "family: man, boy, boy", "alpha_code": ":family_man_boy_boy:", "aliases": "" }, "1f468-1f467": { "output": "1f468-200d-1f467", "name": "family: man, girl", "alpha_code": ":family_man_girl:", "aliases": "" }, "1f468-1f467-1f466": { "output": "1f468-200d-1f467-200d-1f466", "name": "family: man, girl, boy", "alpha_code": ":family_man_girl_boy:", "aliases": "" }, "1f469-1f466": { "output": "1f469-200d-1f466", "name": "family: woman, boy", "alpha_code": ":family_woman_boy:", "aliases": "" }, "1f469-1f466-1f466": { "output": "1f469-200d-1f466-200d-1f466", "name": "family: woman, boy, boy", "alpha_code": ":family_woman_boy_boy:", "aliases": "" }, "1f469-1f467": { "output": "1f469-200d-1f467", "name": "family: woman, girl", "alpha_code": ":family_woman_girl:", "aliases": "" }, "1f469-1f467-1f466": { "output": "1f469-200d-1f467-200d-1f466", "name": "family: woman, girl, boy", "alpha_code": ":family_woman_girl_boy:", "aliases": "" }, "1f469-1f467-1f467": { "output": "1f469-200d-1f467-200d-1f467", "name": "family: woman, girl, girl", "alpha_code": ":family_woman_girl_girl:", "aliases": "" }, "1f468-2696": { "output": "1f468-200d-2696-fe0f", "name": "man judge", "alpha_code": ":man_judge:", "aliases": "" }, "1f468-1f3fb-2696": { "output": "1f468-1f3fb-200d-2696-fe0f", "name": "man judge: light skin tone", "alpha_code": ":man_judge_tone1:", "aliases": ":man_judge_light_skin_tone:" }, "1f468-1f3fc-2696": { "output": "1f468-1f3fc-200d-2696-fe0f", "name": "man judge: medium-light skin tone", "alpha_code": ":man_judge_tone2:", "aliases": ":man_judge_medium_light_skin_tone:" }, "1f468-1f3fd-2696": { "output": "1f468-1f3fd-200d-2696-fe0f", "name": "man judge: medium skin tone", "alpha_code": ":man_judge_tone3:", "aliases": ":man_judge_medium_skin_tone:" }, "1f468-1f3fe-2696": { "output": "1f468-1f3fe-200d-2696-fe0f", "name": "man judge: medium-dark skin tone", "alpha_code": ":man_judge_tone4:", "aliases": ":man_judge_medium_dark_skin_tone:" }, "1f468-1f3ff-2696": { "output": "1f468-1f3ff-200d-2696-fe0f", "name": "man judge: dark skin tone", "alpha_code": ":man_judge_tone5:", "aliases": ":man_judge_dark_skin_tone:" }, "1f469-2696": { "output": "1f469-200d-2696-fe0f", "name": "woman judge", "alpha_code": ":woman_judge:", "aliases": "" }, "1f469-1f3fb-2696": { "output": "1f469-1f3fb-200d-2696-fe0f", "name": "woman judge: light skin tone", "alpha_code": ":woman_judge_tone1:", "aliases": ":woman_judge_light_skin_tone:" }, "1f469-1f3fc-2696": { "output": "1f469-1f3fc-200d-2696-fe0f", "name": "woman judge: medium-light skin tone", "alpha_code": ":woman_judge_tone2:", "aliases": ":woman_judge_medium_light_skin_tone:" }, "1f469-1f3fd-2696": { "output": "1f469-1f3fd-200d-2696-fe0f", "name": "woman judge: medium skin tone", "alpha_code": ":woman_judge_tone3:", "aliases": ":woman_judge_medium_skin_tone:" }, "1f469-1f3fe-2696": { "output": "1f469-1f3fe-200d-2696-fe0f", "name": "woman judge: medium-dark skin tone", "alpha_code": ":woman_judge_tone4:", "aliases": ":woman_judge_medium_dark_skin_tone:" }, "1f469-1f3ff-2696": { "output": "1f469-1f3ff-200d-2696-fe0f", "name": "woman judge: dark skin tone", "alpha_code": ":woman_judge_tone5:", "aliases": ":woman_judge_dark_skin_tone:" }, "1f468-2708": { "output": "1f468-200d-2708-fe0f", "name": "man pilot", "alpha_code": ":man_pilot:", "aliases": "" }, "1f468-1f3fb-2708": { "output": "1f468-1f3fb-200d-2708-fe0f", "name": "man pilot: light skin tone", "alpha_code": ":man_pilot_tone1:", "aliases": ":man_pilot_light_skin_tone:" }, "1f468-1f3fc-2708": { "output": "1f468-1f3fc-200d-2708-fe0f", "name": "man pilot: medium-light skin tone", "alpha_code": ":man_pilot_tone2:", "aliases": ":man_pilot_medium_light_skin_tone:" }, "1f468-1f3fd-2708": { "output": "1f468-1f3fd-200d-2708-fe0f", "name": "man pilot: medium skin tone", "alpha_code": ":man_pilot_tone3:", "aliases": ":man_pilot_medium_skin_tone:" }, "1f468-1f3fe-2708": { "output": "1f468-1f3fe-200d-2708-fe0f", "name": "man pilot: medium-dark skin tone", "alpha_code": ":man_pilot_tone4:", "aliases": ":man_pilot_medium_dark_skin_tone:" }, "1f468-1f3ff-2708": { "output": "1f468-1f3ff-200d-2708-fe0f", "name": "man pilot: dark skin tone", "alpha_code": ":man_pilot_tone5:", "aliases": ":man_pilot_dark_skin_tone:" }, "1f469-2708": { "output": "1f469-200d-2708-fe0f", "name": "woman pilot", "alpha_code": ":woman_pilot:", "aliases": "" }, "1f469-1f3fb-2708": { "output": "1f469-1f3fb-200d-2708-fe0f", "name": "woman pilot: light skin tone", "alpha_code": ":woman_pilot_tone1:", "aliases": ":woman_pilot_light_skin_tone:" }, "1f469-1f3fc-2708": { "output": "1f469-1f3fc-200d-2708-fe0f", "name": "woman pilot: medium-light skin tone", "alpha_code": ":woman_pilot_tone2:", "aliases": ":woman_pilot_medium_light_skin_tone:" }, "1f469-1f3fd-2708": { "output": "1f469-1f3fd-200d-2708-fe0f", "name": "woman pilot: medium skin tone", "alpha_code": ":woman_pilot_tone3:", "aliases": ":woman_pilot_medium_skin_tone:" }, "1f469-1f3fe-2708": { "output": "1f469-1f3fe-200d-2708-fe0f", "name": "woman pilot: medium-dark skin tone", "alpha_code": ":woman_pilot_tone4:", "aliases": ":woman_pilot_medium_dark_skin_tone:" }, "1f469-1f3ff-2708": { "output": "1f469-1f3ff-200d-2708-fe0f", "name": "woman pilot: dark skin tone", "alpha_code": ":woman_pilot_tone5:", "aliases": ":woman_pilot_dark_skin_tone:" }, "1f468-1f3a8": { "output": "1f468-200d-1f3a8", "name": "man artist", "alpha_code": ":man_artist:", "aliases": "" }, "1f468-1f3fb-1f3a8": { "output": "1f468-1f3fb-200d-1f3a8", "name": "man artist: light skin tone", "alpha_code": ":man_artist_tone1:", "aliases": ":man_artist_light_skin_tone:" }, "1f468-1f3fc-1f3a8": { "output": "1f468-1f3fc-200d-1f3a8", "name": "man artist: medium-light skin tone", "alpha_code": ":man_artist_tone2:", "aliases": ":man_artist_medium_light_skin_tone:" }, "1f468-1f3fd-1f3a8": { "output": "1f468-1f3fd-200d-1f3a8", "name": "man artist: medium skin tone", "alpha_code": ":man_artist_tone3:", "aliases": ":man_artist_medium_skin_tone:" }, "1f468-1f3fe-1f3a8": { "output": "1f468-1f3fe-200d-1f3a8", "name": "man artist: medium-dark skin tone", "alpha_code": ":man_artist_tone4:", "aliases": ":man_artist_medium_dark_skin_tone:" }, "1f468-1f3ff-1f3a8": { "output": "1f468-1f3ff-200d-1f3a8", "name": "man artist: dark skin tone", "alpha_code": ":man_artist_tone5:", "aliases": ":man_artist_dark_skin_tone:" }, "1f469-1f3a8": { "output": "1f469-200d-1f3a8", "name": "woman artist", "alpha_code": ":woman_artist:", "aliases": "" }, "1f469-1f3fb-1f3a8": { "output": "1f469-1f3fb-200d-1f3a8", "name": "woman artist: light skin tone", "alpha_code": ":woman_artist_tone1:", "aliases": ":woman_artist_light_skin_tone:" }, "1f469-1f3fc-1f3a8": { "output": "1f469-1f3fc-200d-1f3a8", "name": "woman artist: medium-light skin tone", "alpha_code": ":woman_artist_tone2:", "aliases": ":woman_artist_medium_light_skin_tone:" }, "1f469-1f3fd-1f3a8": { "output": "1f469-1f3fd-200d-1f3a8", "name": "woman artist: medium skin tone", "alpha_code": ":woman_artist_tone3:", "aliases": ":woman_artist_medium_skin_tone:" }, "1f469-1f3fe-1f3a8": { "output": "1f469-1f3fe-200d-1f3a8", "name": "woman artist: medium-dark skin tone", "alpha_code": ":woman_artist_tone4:", "aliases": ":woman_artist_medium_dark_skin_tone:" }, "1f469-1f3ff-1f3a8": { "output": "1f469-1f3ff-200d-1f3a8", "name": "woman artist: dark skin tone", "alpha_code": ":woman_artist_tone5:", "aliases": ":woman_artist_dark_skin_tone:" }, "1f468-1f680": { "output": "1f468-200d-1f680", "name": "man astronaut", "alpha_code": ":man_astronaut:", "aliases": "" }, "1f468-1f3fb-1f680": { "output": "1f468-1f3fb-200d-1f680", "name": "man astronaut: light skin tone", "alpha_code": ":man_astronaut_tone1:", "aliases": ":man_astronaut_light_skin_tone:" }, "1f468-1f3fc-1f680": { "output": "1f468-1f3fc-200d-1f680", "name": "man astronaut: medium-light skin tone", "alpha_code": ":man_astronaut_tone2:", "aliases": ":man_astronaut_medium_light_skin_tone:" }, "1f468-1f3fd-1f680": { "output": "1f468-1f3fd-200d-1f680", "name": "man astronaut: medium skin tone", "alpha_code": ":man_astronaut_tone3:", "aliases": ":man_astronaut_medium_skin_tone:" }, "1f468-1f3fe-1f680": { "output": "1f468-1f3fe-200d-1f680", "name": "man astronaut: medium-dark skin tone", "alpha_code": ":man_astronaut_tone4:", "aliases": ":man_astronaut_medium_dark_skin_tone:" }, "1f468-1f3ff-1f680": { "output": "1f468-1f3ff-200d-1f680", "name": "man astronaut: dark skin tone", "alpha_code": ":man_astronaut_tone5:", "aliases": ":man_astronaut_dark_skin_tone:" }, "1f469-1f680": { "output": "1f469-200d-1f680", "name": "woman astronaut", "alpha_code": ":woman_astronaut:", "aliases": "" }, "1f469-1f3fb-1f680": { "output": "1f469-1f3fb-200d-1f680", "name": "woman astronaut: light skin tone", "alpha_code": ":woman_astronaut_tone1:", "aliases": ":woman_astronaut_light_skin_tone:" }, "1f469-1f3fc-1f680": { "output": "1f469-1f3fc-200d-1f680", "name": "woman astronaut: medium-light skin tone", "alpha_code": ":woman_astronaut_tone2:", "aliases": ":woman_astronaut_medium_light_skin_tone:" }, "1f469-1f3fd-1f680": { "output": "1f469-1f3fd-200d-1f680", "name": "woman astronaut: medium skin tone", "alpha_code": ":woman_astronaut_tone3:", "aliases": ":woman_astronaut_medium_skin_tone:" }, "1f469-1f3fe-1f680": { "output": "1f469-1f3fe-200d-1f680", "name": "woman astronaut: medium-dark skin tone", "alpha_code": ":woman_astronaut_tone4:", "aliases": ":woman_astronaut_medium_dark_skin_tone:" }, "1f469-1f3ff-1f680": { "output": "1f469-1f3ff-200d-1f680", "name": "woman astronaut: dark skin tone", "alpha_code": ":woman_astronaut_tone5:", "aliases": ":woman_astronaut_dark_skin_tone:" }, "1f468-1f692": { "output": "1f468-200d-1f692", "name": "man firefighter", "alpha_code": ":man_firefighter:", "aliases": "" }, "1f468-1f3fb-1f692": { "output": "1f468-1f3fb-200d-1f692", "name": "man firefighter: light skin tone", "alpha_code": ":man_firefighter_tone1:", "aliases": ":man_firefighter_light_skin_tone:" }, "1f468-1f3fc-1f692": { "output": "1f468-1f3fc-200d-1f692", "name": "man firefighter: medium-light skin tone", "alpha_code": ":man_firefighter_tone2:", "aliases": ":man_firefighter_medium_light_skin_tone:" }, "1f468-1f3fd-1f692": { "output": "1f468-1f3fd-200d-1f692", "name": "man firefighter: medium skin tone", "alpha_code": ":man_firefighter_tone3:", "aliases": ":man_firefighter_medium_skin_tone:" }, "1f468-1f3fe-1f692": { "output": "1f468-1f3fe-200d-1f692", "name": "man firefighter: medium-dark skin tone", "alpha_code": ":man_firefighter_tone4:", "aliases": ":man_firefighter_medium_dark_skin_tone:" }, "1f468-1f3ff-1f692": { "output": "1f468-1f3ff-200d-1f692", "name": "man firefighter: dark skin tone", "alpha_code": ":man_firefighter_tone5:", "aliases": ":man_firefighter_dark_skin_tone:" }, "1f469-1f692": { "output": "1f469-200d-1f692", "name": "woman firefighter", "alpha_code": ":woman_firefighter:", "aliases": "" }, "1f469-1f3fb-1f692": { "output": "1f469-1f3fb-200d-1f692", "name": "woman firefighter: light skin tone", "alpha_code": ":woman_firefighter_tone1:", "aliases": ":woman_firefighter_light_skin_tone:" }, "1f469-1f3fc-1f692": { "output": "1f469-1f3fc-200d-1f692", "name": "woman firefighter: medium-light skin tone", "alpha_code": ":woman_firefighter_tone2:", "aliases": ":woman_firefighter_medium_light_skin_tone:" }, "1f469-1f3fd-1f692": { "output": "1f469-1f3fd-200d-1f692", "name": "woman firefighter: medium skin tone", "alpha_code": ":woman_firefighter_tone3:", "aliases": ":woman_firefighter_medium_skin_tone:" }, "1f469-1f3fe-1f692": { "output": "1f469-1f3fe-200d-1f692", "name": "woman firefighter: medium-dark skin tone", "alpha_code": ":woman_firefighter_tone4:", "aliases": ":woman_firefighter_medium_dark_skin_tone:" }, "1f469-1f3ff-1f692": { "output": "1f469-1f3ff-200d-1f692", "name": "woman firefighter: dark skin tone", "alpha_code": ":woman_firefighter_tone5:", "aliases": ":woman_firefighter_dark_skin_tone:" }, "2640": { "output": "2640-fe0f", "name": "female sign", "alpha_code": ":female_sign:", "aliases": "" }, "2642": { "output": "2642-fe0f", "name": "male sign", "alpha_code": ":male_sign:", "aliases": "" }, "2695": { "output": "2695-fe0f", "name": "medical symbol", "alpha_code": ":medical_symbol:", "aliases": "" }, "1f1fa-1f1f3": { "output": "1f1fa-1f1f3", "name": "flag: United Nations", "alpha_code": ":united_nations:", "aliases": "" }, "1f3c2-1f3fc": { "output": "1f3c2-1f3fc", "name": "snowboarder: medium-light skin tone", "alpha_code": ":snowboarder_tone2:", "aliases": ":snowboarder_medium_light_skin_tone:" }, "1f3c2-1f3fd": { "output": "1f3c2-1f3fd", "name": "snowboarder: medium skin tone", "alpha_code": ":snowboarder_tone3:", "aliases": ":snowboarder_medium_skin_tone:" }, "1f3c2-1f3fe": { "output": "1f3c2-1f3fe", "name": "snowboarder: medium-dark skin tone", "alpha_code": ":snowboarder_tone4:", "aliases": ":snowboarder_medium_dark_skin_tone:" }, "1f3c2-1f3ff": { "output": "1f3c2-1f3ff", "name": "snowboarder: dark skin tone", "alpha_code": ":snowboarder_tone5:", "aliases": ":snowboarder_dark_skin_tone:" }, "1f3cc-1f3fb": { "output": "1f3cc-1f3fb", "name": "person golfing: light skin tone", "alpha_code": ":person_golfing_tone1:", "aliases": ":person_golfing_light_skin_tone:" }, "1f3cc-1f3fc": { "output": "1f3cc-1f3fc", "name": "person golfing: medium-light skin tone", "alpha_code": ":person_golfing_tone2:", "aliases": ":person_golfing_medium_light_skin_tone:" }, "1f3cc-1f3fd": { "output": "1f3cc-1f3fd", "name": "person golfing: medium skin tone", "alpha_code": ":person_golfing_tone3:", "aliases": ":person_golfing_medium_skin_tone:" }, "1f3cc-1f3fe": { "output": "1f3cc-1f3fe", "name": "person golfing: medium-dark skin tone", "alpha_code": ":person_golfing_tone4:", "aliases": ":person_golfing_medium_dark_skin_tone:" }, "1f3cc-1f3ff": { "output": "1f3cc-1f3ff", "name": "person golfing: dark skin tone", "alpha_code": ":person_golfing_tone5:", "aliases": ":person_golfing_dark_skin_tone:" }, "1f468-1f467-1f467": { "output": "1f468-200d-1f467-200d-1f467", "name": "family: man, girl, girl", "alpha_code": ":family_man_girl_girl:", "aliases": "" }, "1f468-1f469-1f466": { "output": "1f468-200d-1f469-200d-1f466", "name": "family: man, woman, boy", "alpha_code": ":family_man_woman_boy:", "aliases": "" }, "1f469-2764-1f468": { "output": "1f469-200d-2764-fe0f-200d-1f468", "name": "couple with heart: woman, man", "alpha_code": ":couple_with_heart_woman_man:", "aliases": "" }, "1f469-2764-1f48b-1f468": { "output": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468", "name": "kiss: woman, man", "alpha_code": ":kiss_woman_man:", "aliases": "" }, "1f6f7": { "output": "1f6f7", "name": "sled", "alpha_code": ":sled:", "aliases": "" }, "1f6f8": { "output": "1f6f8", "name": "flying saucer", "alpha_code": ":flying_saucer:", "aliases": "" }, "1f91f": { "output": "1f91f", "name": "love-you gesture", "alpha_code": ":love_you_gesture:", "aliases": "" }, "1f928": { "output": "1f928", "name": "face with raised eyebrow", "alpha_code": ":face_with_raised_eyebrow:", "aliases": "" }, "1f929": { "output": "1f929", "name": "star-struck", "alpha_code": ":star_struck:", "aliases": "" }, "1f92a": { "output": "1f92a", "name": "zany face", "alpha_code": ":zany_face:", "aliases": "" }, "1f92b": { "output": "1f92b", "name": "shushing face", "alpha_code": ":shushing_face:", "aliases": "" }, "1f92c": { "output": "1f92c", "name": "face with symbols on mouth", "alpha_code": ":face_with_symbols_over_mouth:", "aliases": "" }, "1f92d": { "output": "1f92d", "name": "face with hand over mouth", "alpha_code": ":face_with_hand_over_mouth:", "aliases": "" }, "1f92e": { "output": "1f92e", "name": "face vomiting", "alpha_code": ":face_vomiting:", "aliases": "" }, "1f92f": { "output": "1f92f", "name": "exploding head", "alpha_code": ":exploding_head:", "aliases": "" }, "1f931": { "output": "1f931", "name": "breast-feeding", "alpha_code": ":breast_feeding:", "aliases": "" }, "1f932": { "output": "1f932", "name": "palms up together", "alpha_code": ":palms_up_together:", "aliases": "" }, "1f94c": { "output": "1f94c", "name": "curling stone", "alpha_code": ":curling_stone:", "aliases": "" }, "1f95f": { "output": "1f95f", "name": "dumpling", "alpha_code": ":dumpling:", "aliases": "" }, "1f960": { "output": "1f960", "name": "fortune cookie", "alpha_code": ":fortune_cookie:", "aliases": "" }, "1f961": { "output": "1f961", "name": "takeout box", "alpha_code": ":takeout_box:", "aliases": "" }, "1f962": { "output": "1f962", "name": "chopsticks", "alpha_code": ":chopsticks:", "aliases": "" }, "1f963": { "output": "1f963", "name": "bowl with spoon", "alpha_code": ":bowl_with_spoon:", "aliases": "" }, "1f964": { "output": "1f964", "name": "cup with straw", "alpha_code": ":cup_with_straw:", "aliases": "" }, "1f965": { "output": "1f965", "name": "coconut", "alpha_code": ":coconut:", "aliases": "" }, "1f966": { "output": "1f966", "name": "broccoli", "alpha_code": ":broccoli:", "aliases": "" }, "1f967": { "output": "1f967", "name": "pie", "alpha_code": ":pie:", "aliases": "" }, "1f968": { "output": "1f968", "name": "pretzel", "alpha_code": ":pretzel:", "aliases": "" }, "1f969": { "output": "1f969", "name": "cut of meat", "alpha_code": ":cut_of_meat:", "aliases": "" }, "1f96a": { "output": "1f96a", "name": "sandwich", "alpha_code": ":sandwich:", "aliases": "" }, "1f96b": { "output": "1f96b", "name": "canned food", "alpha_code": ":canned_food:", "aliases": "" }, "1f992": { "output": "1f992", "name": "giraffe", "alpha_code": ":giraffe:", "aliases": "" }, "1f993": { "output": "1f993", "name": "zebra", "alpha_code": ":zebra:", "aliases": "" }, "1f994": { "output": "1f994", "name": "hedgehog", "alpha_code": ":hedgehog:", "aliases": "" }, "1f995": { "output": "1f995", "name": "sauropod", "alpha_code": ":sauropod:", "aliases": "" }, "1f996": { "output": "1f996", "name": "T-Rex", "alpha_code": ":t_rex:", "aliases": "" }, "1f997": { "output": "1f997", "name": "cricket", "alpha_code": ":cricket:", "aliases": "" }, "1f9d0": { "output": "1f9d0", "name": "face with monocle", "alpha_code": ":face_with_monocle:", "aliases": "" }, "1f9d1": { "output": "1f9d1", "name": "person", "alpha_code": ":adult:", "aliases": "" }, "1f9d2": { "output": "1f9d2", "name": "child", "alpha_code": ":child:", "aliases": "" }, "1f9d3": { "output": "1f9d3", "name": "older person", "alpha_code": ":older_adult:", "aliases": "" }, "1f9d4": { "output": "1f9d4", "name": "man: beard", "alpha_code": ":bearded_person:", "aliases": "" }, "1f9d5": { "output": "1f9d5", "name": "woman with headscarf", "alpha_code": ":woman_with_headscarf:", "aliases": "" }, "1f9d6": { "output": "1f9d6", "name": "person in steamy room", "alpha_code": ":person_in_steamy_room:", "aliases": "" }, "1f9d7": { "output": "1f9d7", "name": "person climbing", "alpha_code": ":person_climbing:", "aliases": "" }, "1f9d8": { "output": "1f9d8", "name": "person in lotus position", "alpha_code": ":person_in_lotus_position:", "aliases": "" }, "1f9d9": { "output": "1f9d9", "name": "mage", "alpha_code": ":mage:", "aliases": "" }, "1f9da": { "output": "1f9da", "name": "fairy", "alpha_code": ":fairy:", "aliases": "" }, "1f9db": { "output": "1f9db", "name": "vampire", "alpha_code": ":vampire:", "aliases": "" }, "1f9dc": { "output": "1f9dc", "name": "merperson", "alpha_code": ":merperson:", "aliases": "" }, "1f9dd": { "output": "1f9dd", "name": "elf", "alpha_code": ":elf:", "aliases": "" }, "1f9de": { "output": "1f9de", "name": "genie", "alpha_code": ":genie:", "aliases": "" }, "1f9df": { "output": "1f9df", "name": "zombie", "alpha_code": ":zombie:", "aliases": "" }, "1f9e0": { "output": "1f9e0", "name": "brain", "alpha_code": ":brain:", "aliases": "" }, "1f9e1": { "output": "1f9e1", "name": "orange heart", "alpha_code": ":orange_heart:", "aliases": "" }, "1f9e2": { "output": "1f9e2", "name": "billed cap", "alpha_code": ":billed_cap:", "aliases": "" }, "1f9e3": { "output": "1f9e3", "name": "scarf", "alpha_code": ":scarf:", "aliases": "" }, "1f9e4": { "output": "1f9e4", "name": "gloves", "alpha_code": ":gloves:", "aliases": "" }, "1f9e5": { "output": "1f9e5", "name": "coat", "alpha_code": ":coat:", "aliases": "" }, "1f9e6": { "output": "1f9e6", "name": "socks", "alpha_code": ":socks:", "aliases": "" }, "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f": { "output": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f", "name": "flag: England", "alpha_code": ":england:", "aliases": "" }, "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f": { "output": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f", "name": "flag: Scotland", "alpha_code": ":scotland:", "aliases": "" }, "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f": { "output": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f", "name": "flag: Wales", "alpha_code": ":wales:", "aliases": "" }, "1f91f-1f3fb": { "output": "1f91f-1f3fb", "name": "love-you gesture: light skin tone", "alpha_code": ":love_you_gesture_tone1:", "aliases": ":love_you_gesture_light_skin_tone:" }, "1f91f-1f3fc": { "output": "1f91f-1f3fc", "name": "love-you gesture: medium-light skin tone", "alpha_code": ":love_you_gesture_tone2:", "aliases": ":love_you_gesture_medium_light_skin_tone:" }, "1f91f-1f3fd": { "output": "1f91f-1f3fd", "name": "love-you gesture: medium skin tone", "alpha_code": ":love_you_gesture_tone3:", "aliases": ":love_you_gesture_medium_skin_tone:" }, "1f91f-1f3fe": { "output": "1f91f-1f3fe", "name": "love-you gesture: medium-dark skin tone", "alpha_code": ":love_you_gesture_tone4:", "aliases": ":love_you_gesture_medium_dark_skin_tone:" }, "1f91f-1f3ff": { "output": "1f91f-1f3ff", "name": "love-you gesture: dark skin tone", "alpha_code": ":love_you_gesture_tone5:", "aliases": ":love_you_gesture_dark_skin_tone:" }, "1f931-1f3fb": { "output": "1f931-1f3fb", "name": "breast-feeding: light skin tone", "alpha_code": ":breast_feeding_tone1:", "aliases": ":breast_feeding_light_skin_tone:" }, "1f931-1f3fc": { "output": "1f931-1f3fc", "name": "breast-feeding: medium-light skin tone", "alpha_code": ":breast_feeding_tone2:", "aliases": ":breast_feeding_medium_light_skin_tone:" }, "1f931-1f3fd": { "output": "1f931-1f3fd", "name": "breast-feeding: medium skin tone", "alpha_code": ":breast_feeding_tone3:", "aliases": ":breast_feeding_medium_skin_tone:" }, "1f931-1f3fe": { "output": "1f931-1f3fe", "name": "breast-feeding: medium-dark skin tone", "alpha_code": ":breast_feeding_tone4:", "aliases": ":breast_feeding_medium_dark_skin_tone:" }, "1f931-1f3ff": { "output": "1f931-1f3ff", "name": "breast-feeding: dark skin tone", "alpha_code": ":breast_feeding_tone5:", "aliases": ":breast_feeding_dark_skin_tone:" }, "1f932-1f3fb": { "output": "1f932-1f3fb", "name": "palms up together: light skin tone", "alpha_code": ":palms_up_together_tone1:", "aliases": ":palms_up_together_light_skin_tone:" }, "1f932-1f3fc": { "output": "1f932-1f3fc", "name": "palms up together: medium-light skin tone", "alpha_code": ":palms_up_together_tone2:", "aliases": ":palms_up_together_medium_light_skin_tone:" }, "1f932-1f3fd": { "output": "1f932-1f3fd", "name": "palms up together: medium skin tone", "alpha_code": ":palms_up_together_tone3:", "aliases": ":palms_up_together_medium_skin_tone:" }, "1f932-1f3fe": { "output": "1f932-1f3fe", "name": "palms up together: medium-dark skin tone", "alpha_code": ":palms_up_together_tone4:", "aliases": ":palms_up_together_medium_dark_skin_tone:" }, "1f932-1f3ff": { "output": "1f932-1f3ff", "name": "palms up together: dark skin tone", "alpha_code": ":palms_up_together_tone5:", "aliases": ":palms_up_together_dark_skin_tone:" }, "1f9d1-1f3fb": { "output": "1f9d1-1f3fb", "name": "adult: light skin tone", "alpha_code": ":adult_tone1:", "aliases": ":adult_light_skin_tone:" }, "1f9d1-1f3fc": { "output": "1f9d1-1f3fc", "name": "adult: medium-light skin tone", "alpha_code": ":adult_tone2:", "aliases": ":adult_medium_light_skin_tone:" }, "1f9d1-1f3fd": { "output": "1f9d1-1f3fd", "name": "adult: medium skin tone", "alpha_code": ":adult_tone3:", "aliases": ":adult_medium_skin_tone:" }, "1f9d1-1f3fe": { "output": "1f9d1-1f3fe", "name": "adult: medium-dark skin tone", "alpha_code": ":adult_tone4:", "aliases": ":adult_medium_dark_skin_tone:" }, "1f9d1-1f3ff": { "output": "1f9d1-1f3ff", "name": "adult: dark skin tone", "alpha_code": ":adult_tone5:", "aliases": ":adult_dark_skin_tone:" }, "1f9d2-1f3fb": { "output": "1f9d2-1f3fb", "name": "child: light skin tone", "alpha_code": ":child_tone1:", "aliases": ":child_light_skin_tone:" }, "1f9d2-1f3fc": { "output": "1f9d2-1f3fc", "name": "child: medium-light skin tone", "alpha_code": ":child_tone2:", "aliases": ":child_medium_light_skin_tone:" }, "1f9d2-1f3fd": { "output": "1f9d2-1f3fd", "name": "child: medium skin tone", "alpha_code": ":child_tone3:", "aliases": ":child_medium_skin_tone:" }, "1f9d2-1f3fe": { "output": "1f9d2-1f3fe", "name": "child: medium-dark skin tone", "alpha_code": ":child_tone4:", "aliases": ":child_medium_dark_skin_tone:" }, "1f9d2-1f3ff": { "output": "1f9d2-1f3ff", "name": "child: dark skin tone", "alpha_code": ":child_tone5:", "aliases": ":child_dark_skin_tone:" }, "1f9d3-1f3fb": { "output": "1f9d3-1f3fb", "name": "older adult: light skin tone", "alpha_code": ":older_adult_tone1:", "aliases": ":older_adult_light_skin_tone:" }, "1f9d3-1f3fc": { "output": "1f9d3-1f3fc", "name": "older adult: medium-light skin tone", "alpha_code": ":older_adult_tone2:", "aliases": ":older_adult_medium_light_skin_tone:" }, "1f9d3-1f3fd": { "output": "1f9d3-1f3fd", "name": "older adult: medium skin tone", "alpha_code": ":older_adult_tone3:", "aliases": ":older_adult_medium_skin_tone:" }, "1f9d3-1f3fe": { "output": "1f9d3-1f3fe", "name": "older adult: medium-dark skin tone", "alpha_code": ":older_adult_tone4:", "aliases": ":older_adult_medium_dark_skin_tone:" }, "1f9d3-1f3ff": { "output": "1f9d3-1f3ff", "name": "older adult: dark skin tone", "alpha_code": ":older_adult_tone5:", "aliases": ":older_adult_dark_skin_tone:" }, "1f9d4-1f3fb": { "output": "1f9d4-1f3fb", "name": "bearded person: light skin tone", "alpha_code": ":bearded_person_tone1:", "aliases": ":bearded_person_light_skin_tone:" }, "1f9d4-1f3fc": { "output": "1f9d4-1f3fc", "name": "bearded person: medium-light skin tone", "alpha_code": ":bearded_person_tone2:", "aliases": ":bearded_person_medium_light_skin_tone:" }, "1f9d4-1f3fd": { "output": "1f9d4-1f3fd", "name": "bearded person: medium skin tone", "alpha_code": ":bearded_person_tone3:", "aliases": ":bearded_person_medium_skin_tone:" }, "1f9d4-1f3fe": { "output": "1f9d4-1f3fe", "name": "bearded person: medium-dark skin tone", "alpha_code": ":bearded_person_tone4:", "aliases": ":bearded_person_medium_dark_skin_tone:" }, "1f9d4-1f3ff": { "output": "1f9d4-1f3ff", "name": "bearded person: dark skin tone", "alpha_code": ":bearded_person_tone5:", "aliases": ":bearded_person_dark_skin_tone:" }, "1f9d5-1f3fb": { "output": "1f9d5-1f3fb", "name": "woman with headscarf: light skin tone", "alpha_code": ":woman_with_headscarf_tone1:", "aliases": ":woman_with_headscarf_light_skin_tone:" }, "1f9d5-1f3fc": { "output": "1f9d5-1f3fc", "name": "woman with headscarf: medium-light skin tone", "alpha_code": ":woman_with_headscarf_tone2:", "aliases": ":woman_with_headscarf_medium_light_skin_tone:" }, "1f9d5-1f3fd": { "output": "1f9d5-1f3fd", "name": "woman with headscarf: medium skin tone", "alpha_code": ":woman_with_headscarf_tone3:", "aliases": ":woman_with_headscarf_medium_skin_tone:" }, "1f9d5-1f3fe": { "output": "1f9d5-1f3fe", "name": "woman with headscarf: medium-dark skin tone", "alpha_code": ":woman_with_headscarf_tone4:", "aliases": ":woman_with_headscarf_medium_dark_skin_tone:" }, "1f9d5-1f3ff": { "output": "1f9d5-1f3ff", "name": "woman with headscarf: dark skin tone", "alpha_code": ":woman_with_headscarf_tone5:", "aliases": ":woman_with_headscarf_dark_skin_tone:" }, "1f9d6-1f3fb": { "output": "1f9d6-1f3fb", "name": "person in steamy room: light skin tone", "alpha_code": ":person_in_steamy_room_tone1:", "aliases": ":person_in_steamy_room_light_skin_tone:" }, "1f9d6-1f3fc": { "output": "1f9d6-1f3fc", "name": "person in steamy room: medium-light skin tone", "alpha_code": ":person_in_steamy_room_tone2:", "aliases": ":person_in_steamy_room_medium_light_skin_tone:" }, "1f9d6-1f3fd": { "output": "1f9d6-1f3fd", "name": "person in steamy room: medium skin tone", "alpha_code": ":person_in_steamy_room_tone3:", "aliases": ":person_in_steamy_room_medium_skin_tone:" }, "1f9d6-1f3fe": { "output": "1f9d6-1f3fe", "name": "person in steamy room: medium-dark skin tone", "alpha_code": ":person_in_steamy_room_tone4:", "aliases": ":person_in_steamy_room_medium_dark_skin_tone:" }, "1f9d6-1f3ff": { "output": "1f9d6-1f3ff", "name": "person in steamy room: dark skin tone", "alpha_code": ":person_in_steamy_room_tone5:", "aliases": ":person_in_steamy_room_dark_skin_tone:" }, "1f9d7-1f3fb": { "output": "1f9d7-1f3fb", "name": "person climbing: light skin tone", "alpha_code": ":person_climbing_tone1:", "aliases": ":person_climbing_light_skin_tone:" }, "1f9d7-1f3fc": { "output": "1f9d7-1f3fc", "name": "person climbing: medium-light skin tone", "alpha_code": ":person_climbing_tone2:", "aliases": ":person_climbing_medium_light_skin_tone:" }, "1f9d7-1f3fd": { "output": "1f9d7-1f3fd", "name": "person climbing: medium skin tone", "alpha_code": ":person_climbing_tone3:", "aliases": ":person_climbing_medium_skin_tone:" }, "1f9d7-1f3fe": { "output": "1f9d7-1f3fe", "name": "person climbing: medium-dark skin tone", "alpha_code": ":person_climbing_tone4:", "aliases": ":person_climbing_medium_dark_skin_tone:" }, "1f9d7-1f3ff": { "output": "1f9d7-1f3ff", "name": "person climbing: dark skin tone", "alpha_code": ":person_climbing_tone5:", "aliases": ":person_climbing_dark_skin_tone:" }, "1f9d8-1f3fb": { "output": "1f9d8-1f3fb", "name": "person in lotus position: light skin tone", "alpha_code": ":person_in_lotus_position_tone1:", "aliases": ":person_in_lotus_position_light_skin_tone:" }, "1f9d8-1f3fc": { "output": "1f9d8-1f3fc", "name": "person in lotus position: medium-light skin tone", "alpha_code": ":person_in_lotus_position_tone2:", "aliases": ":person_in_lotus_position_medium_light_skin_tone:" }, "1f9d8-1f3fd": { "output": "1f9d8-1f3fd", "name": "person in lotus position: medium skin tone", "alpha_code": ":person_in_lotus_position_tone3:", "aliases": ":person_in_lotus_position_medium_skin_tone:" }, "1f9d8-1f3fe": { "output": "1f9d8-1f3fe", "name": "person in lotus position: medium-dark skin tone", "alpha_code": ":person_in_lotus_position_tone4:", "aliases": ":person_in_lotus_position_medium_dark_skin_tone:" }, "1f9d8-1f3ff": { "output": "1f9d8-1f3ff", "name": "person in lotus position: dark skin tone", "alpha_code": ":person_in_lotus_position_tone5:", "aliases": ":person_in_lotus_position_dark_skin_tone:" }, "1f9d9-1f3fb": { "output": "1f9d9-1f3fb", "name": "mage: light skin tone", "alpha_code": ":mage_tone1:", "aliases": ":mage_light_skin_tone:" }, "1f9d9-1f3fc": { "output": "1f9d9-1f3fc", "name": "mage: medium-light skin tone", "alpha_code": ":mage_tone2:", "aliases": ":mage_medium_light_skin_tone:" }, "1f9d9-1f3fd": { "output": "1f9d9-1f3fd", "name": "mage: medium skin tone", "alpha_code": ":mage_tone3:", "aliases": ":mage_medium_skin_tone:" }, "1f9d9-1f3fe": { "output": "1f9d9-1f3fe", "name": "mage: medium-dark skin tone", "alpha_code": ":mage_tone4:", "aliases": ":mage_medium_dark_skin_tone:" }, "1f9d9-1f3ff": { "output": "1f9d9-1f3ff", "name": "mage: dark skin tone", "alpha_code": ":mage_tone5:", "aliases": ":mage_dark_skin_tone:" }, "1f9da-1f3fb": { "output": "1f9da-1f3fb", "name": "fairy: light skin tone", "alpha_code": ":fairy_tone1:", "aliases": ":fairy_light_skin_tone:" }, "1f9da-1f3fc": { "output": "1f9da-1f3fc", "name": "fairy: medium-light skin tone", "alpha_code": ":fairy_tone2:", "aliases": ":fairy_medium_light_skin_tone:" }, "1f9da-1f3fd": { "output": "1f9da-1f3fd", "name": "fairy: medium skin tone", "alpha_code": ":fairy_tone3:", "aliases": ":fairy_medium_skin_tone:" }, "1f9da-1f3fe": { "output": "1f9da-1f3fe", "name": "fairy: medium-dark skin tone", "alpha_code": ":fairy_tone4:", "aliases": ":fairy_medium_dark_skin_tone:" }, "1f9da-1f3ff": { "output": "1f9da-1f3ff", "name": "fairy: dark skin tone", "alpha_code": ":fairy_tone5:", "aliases": ":fairy_dark_skin_tone:" }, "1f9db-1f3fb": { "output": "1f9db-1f3fb", "name": "vampire: light skin tone", "alpha_code": ":vampire_tone1:", "aliases": ":vampire_light_skin_tone:" }, "1f9db-1f3fc": { "output": "1f9db-1f3fc", "name": "vampire: medium-light skin tone", "alpha_code": ":vampire_tone2:", "aliases": ":vampire_medium_light_skin_tone:" }, "1f9db-1f3fd": { "output": "1f9db-1f3fd", "name": "vampire: medium skin tone", "alpha_code": ":vampire_tone3:", "aliases": ":vampire_medium_skin_tone:" }, "1f9db-1f3fe": { "output": "1f9db-1f3fe", "name": "vampire: medium-dark skin tone", "alpha_code": ":vampire_tone4:", "aliases": ":vampire_medium_dark_skin_tone:" }, "1f9db-1f3ff": { "output": "1f9db-1f3ff", "name": "vampire: dark skin tone", "alpha_code": ":vampire_tone5:", "aliases": ":vampire_dark_skin_tone:" }, "1f9dc-1f3fb": { "output": "1f9dc-1f3fb", "name": "merperson: light skin tone", "alpha_code": ":merperson_tone1:", "aliases": ":merperson_light_skin_tone:" }, "1f9dc-1f3fc": { "output": "1f9dc-1f3fc", "name": "merperson: medium-light skin tone", "alpha_code": ":merperson_tone2:", "aliases": ":merperson_medium_light_skin_tone:" }, "1f9dc-1f3fd": { "output": "1f9dc-1f3fd", "name": "merperson: medium skin tone", "alpha_code": ":merperson_tone3:", "aliases": ":merperson_medium_skin_tone:" }, "1f9dc-1f3fe": { "output": "1f9dc-1f3fe", "name": "merperson: medium-dark skin tone", "alpha_code": ":merperson_tone4:", "aliases": ":merperson_medium_dark_skin_tone:" }, "1f9dc-1f3ff": { "output": "1f9dc-1f3ff", "name": "merperson: dark skin tone", "alpha_code": ":merperson_tone5:", "aliases": ":merperson_dark_skin_tone:" }, "1f9dd-1f3fb": { "output": "1f9dd-1f3fb", "name": "elf: light skin tone", "alpha_code": ":elf_tone1:", "aliases": ":elf_light_skin_tone:" }, "1f9dd-1f3fc": { "output": "1f9dd-1f3fc", "name": "elf: medium-light skin tone", "alpha_code": ":elf_tone2:", "aliases": ":elf_medium_light_skin_tone:" }, "1f9dd-1f3fd": { "output": "1f9dd-1f3fd", "name": "elf: medium skin tone", "alpha_code": ":elf_tone3:", "aliases": ":elf_medium_skin_tone:" }, "1f9dd-1f3fe": { "output": "1f9dd-1f3fe", "name": "elf: medium-dark skin tone", "alpha_code": ":elf_tone4:", "aliases": ":elf_medium_dark_skin_tone:" }, "1f9dd-1f3ff": { "output": "1f9dd-1f3ff", "name": "elf: dark skin tone", "alpha_code": ":elf_tone5:", "aliases": ":elf_dark_skin_tone:" }, "1f9d9-2640": { "output": "1f9d9-200d-2640-fe0f", "name": "woman mage", "alpha_code": ":woman_mage:", "aliases": "" }, "1f9d9-2642": { "output": "1f9d9-200d-2642-fe0f", "name": "man mage", "alpha_code": ":man_mage:", "aliases": "" }, "1f9d9-1f3fb-2640": { "output": "1f9d9-1f3fb-200d-2640-fe0f", "name": "woman mage: light skin tone", "alpha_code": ":woman_mage_tone1:", "aliases": ":woman_mage_light_skin_tone:" }, "1f9d9-1f3fb-2642": { "output": "1f9d9-1f3fb-200d-2642-fe0f", "name": "man mage: light skin tone", "alpha_code": ":man_mage_tone1:", "aliases": ":man_mage_light_skin_tone:" }, "1f9d9-1f3fc-2640": { "output": "1f9d9-1f3fc-200d-2640-fe0f", "name": "woman mage: medium-light skin tone", "alpha_code": ":woman_mage_tone2:", "aliases": ":woman_mage_medium_light_skin_tone:" }, "1f9d9-1f3fc-2642": { "output": "1f9d9-1f3fc-200d-2642-fe0f", "name": "man mage: medium-light skin tone", "alpha_code": ":man_mage_tone2:", "aliases": ":man_mage_medium_light_skin_tone:" }, "1f9d9-1f3fd-2640": { "output": "1f9d9-1f3fd-200d-2640-fe0f", "name": "woman mage: medium skin tone", "alpha_code": ":woman_mage_tone3:", "aliases": ":woman_mage_medium_skin_tone:" }, "1f9d9-1f3fd-2642": { "output": "1f9d9-1f3fd-200d-2642-fe0f", "name": "man mage: medium skin tone", "alpha_code": ":man_mage_tone3:", "aliases": ":man_mage_medium_skin_tone:" }, "1f9d9-1f3fe-2640": { "output": "1f9d9-1f3fe-200d-2640-fe0f", "name": "woman mage: medium-dark skin tone", "alpha_code": ":woman_mage_tone4:", "aliases": ":woman_mage_medium_dark_skin_tone:" }, "1f9d9-1f3fe-2642": { "output": "1f9d9-1f3fe-200d-2642-fe0f", "name": "man mage: medium-dark skin tone", "alpha_code": ":man_mage_tone4:", "aliases": ":man_mage_medium_dark_skin_tone:" }, "1f9d9-1f3ff-2640": { "output": "1f9d9-1f3ff-200d-2640-fe0f", "name": "woman mage: dark skin tone", "alpha_code": ":woman_mage_tone5:", "aliases": ":woman_mage_dark_skin_tone:" }, "1f9d9-1f3ff-2642": { "output": "1f9d9-1f3ff-200d-2642-fe0f", "name": "man mage: dark skin tone", "alpha_code": ":man_mage_tone5:", "aliases": ":man_mage_dark_skin_tone:" }, "1f9da-2640": { "output": "1f9da-200d-2640-fe0f", "name": "woman fairy", "alpha_code": ":woman_fairy:", "aliases": "" }, "1f9da-2642": { "output": "1f9da-200d-2642-fe0f", "name": "man fairy", "alpha_code": ":man_fairy:", "aliases": "" }, "1f9da-1f3fb-2640": { "output": "1f9da-1f3fb-200d-2640-fe0f", "name": "woman fairy: light skin tone", "alpha_code": ":woman_fairy_tone1:", "aliases": ":woman_fairy_light_skin_tone:" }, "1f9da-1f3fb-2642": { "output": "1f9da-1f3fb-200d-2642-fe0f", "name": "man fairy: light skin tone", "alpha_code": ":man_fairy_tone1:", "aliases": ":man_fairy_light_skin_tone:" }, "1f9da-1f3fc-2640": { "output": "1f9da-1f3fc-200d-2640-fe0f", "name": "woman fairy: medium-light skin tone", "alpha_code": ":woman_fairy_tone2:", "aliases": ":woman_fairy_medium_light_skin_tone:" }, "1f9da-1f3fc-2642": { "output": "1f9da-1f3fc-200d-2642-fe0f", "name": "man fairy: medium-light skin tone", "alpha_code": ":man_fairy_tone2:", "aliases": ":man_fairy_medium_light_skin_tone:" }, "1f9da-1f3fd-2640": { "output": "1f9da-1f3fd-200d-2640-fe0f", "name": "woman fairy: medium skin tone", "alpha_code": ":woman_fairy_tone3:", "aliases": ":woman_fairy_medium_skin_tone:" }, "1f9da-1f3fd-2642": { "output": "1f9da-1f3fd-200d-2642-fe0f", "name": "man fairy: medium skin tone", "alpha_code": ":man_fairy_tone3:", "aliases": ":man_fairy_medium_skin_tone:" }, "1f9da-1f3fe-2640": { "output": "1f9da-1f3fe-200d-2640-fe0f", "name": "woman fairy: medium-dark skin tone", "alpha_code": ":woman_fairy_tone4:", "aliases": ":woman_fairy_medium_dark_skin_tone:" }, "1f9da-1f3fe-2642": { "output": "1f9da-1f3fe-200d-2642-fe0f", "name": "man fairy: medium-dark skin tone", "alpha_code": ":man_fairy_tone4:", "aliases": ":man_fairy_medium_dark_skin_tone:" }, "1f9da-1f3ff-2640": { "output": "1f9da-1f3ff-200d-2640-fe0f", "name": "woman fairy: dark skin tone", "alpha_code": ":woman_fairy_tone5:", "aliases": ":woman_fairy_dark_skin_tone:" }, "1f9da-1f3ff-2642": { "output": "1f9da-1f3ff-200d-2642-fe0f", "name": "man fairy: dark skin tone", "alpha_code": ":man_fairy_tone5:", "aliases": ":man_fairy_dark_skin_tone:" }, "1f9db-2640": { "output": "1f9db-200d-2640-fe0f", "name": "woman vampire", "alpha_code": ":woman_vampire:", "aliases": "" }, "1f9db-2642": { "output": "1f9db-200d-2642-fe0f", "name": "man vampire", "alpha_code": ":man_vampire:", "aliases": "" }, "1f9db-1f3fb-2640": { "output": "1f9db-1f3fb-200d-2640-fe0f", "name": "woman vampire: light skin tone", "alpha_code": ":woman_vampire_tone1:", "aliases": ":woman_vampire_light_skin_tone:" }, "1f9db-1f3fb-2642": { "output": "1f9db-1f3fb-200d-2642-fe0f", "name": "man vampire: light skin tone", "alpha_code": ":man_vampire_tone1:", "aliases": ":man_vampire_light_skin_tone:" }, "1f9db-1f3fc-2640": { "output": "1f9db-1f3fc-200d-2640-fe0f", "name": "woman vampire: medium-light skin tone", "alpha_code": ":woman_vampire_tone2:", "aliases": ":woman_vampire_medium_light_skin_tone:" }, "1f9db-1f3fc-2642": { "output": "1f9db-1f3fc-200d-2642-fe0f", "name": "man vampire: medium-light skin tone", "alpha_code": ":man_vampire_tone2:", "aliases": ":man_vampire_medium_light_skin_tone:" }, "1f9db-1f3fd-2640": { "output": "1f9db-1f3fd-200d-2640-fe0f", "name": "woman vampire: medium skin tone", "alpha_code": ":woman_vampire_tone3:", "aliases": ":woman_vampire_medium_skin_tone:" }, "1f9db-1f3fd-2642": { "output": "1f9db-1f3fd-200d-2642-fe0f", "name": "man vampire: medium skin tone", "alpha_code": ":man_vampire_tone3:", "aliases": ":man_vampire_medium_skin_tone:" }, "1f9db-1f3fe-2640": { "output": "1f9db-1f3fe-200d-2640-fe0f", "name": "woman vampire: medium-dark skin tone", "alpha_code": ":woman_vampire_tone4:", "aliases": ":woman_vampire_medium_dark_skin_tone:" }, "1f9db-1f3fe-2642": { "output": "1f9db-1f3fe-200d-2642-fe0f", "name": "man vampire: medium-dark skin tone", "alpha_code": ":man_vampire_tone4:", "aliases": ":man_vampire_medium_dark_skin_tone:" }, "1f9db-1f3ff-2640": { "output": "1f9db-1f3ff-200d-2640-fe0f", "name": "woman vampire: dark skin tone", "alpha_code": ":woman_vampire_tone5:", "aliases": ":woman_vampire_dark_skin_tone:" }, "1f9db-1f3ff-2642": { "output": "1f9db-1f3ff-200d-2642-fe0f", "name": "man vampire: dark skin tone", "alpha_code": ":man_vampire_tone5:", "aliases": ":man_vampire_dark_skin_tone:" }, "1f9dc-2640": { "output": "1f9dc-200d-2640-fe0f", "name": "mermaid", "alpha_code": ":mermaid:", "aliases": "" }, "1f9dc-2642": { "output": "1f9dc-200d-2642-fe0f", "name": "merman", "alpha_code": ":merman:", "aliases": "" }, "1f9dc-1f3fb-2640": { "output": "1f9dc-1f3fb-200d-2640-fe0f", "name": "mermaid: light skin tone", "alpha_code": ":mermaid_tone1:", "aliases": ":mermaid_light_skin_tone:" }, "1f9dc-1f3fb-2642": { "output": "1f9dc-1f3fb-200d-2642-fe0f", "name": "merman: light skin tone", "alpha_code": ":merman_tone1:", "aliases": ":merman_light_skin_tone:" }, "1f9dc-1f3fc-2640": { "output": "1f9dc-1f3fc-200d-2640-fe0f", "name": "mermaid: medium-light skin tone", "alpha_code": ":mermaid_tone2:", "aliases": ":mermaid_medium_light_skin_tone:" }, "1f9dc-1f3fc-2642": { "output": "1f9dc-1f3fc-200d-2642-fe0f", "name": "merman: medium-light skin tone", "alpha_code": ":merman_tone2:", "aliases": ":merman_medium_light_skin_tone:" }, "1f9dc-1f3fd-2640": { "output": "1f9dc-1f3fd-200d-2640-fe0f", "name": "mermaid: medium skin tone", "alpha_code": ":mermaid_tone3:", "aliases": ":mermaid_medium_skin_tone:" }, "1f9dc-1f3fd-2642": { "output": "1f9dc-1f3fd-200d-2642-fe0f", "name": "merman: medium skin tone", "alpha_code": ":merman_tone3:", "aliases": ":merman_medium_skin_tone:" }, "1f9dc-1f3fe-2640": { "output": "1f9dc-1f3fe-200d-2640-fe0f", "name": "mermaid: medium-dark skin tone", "alpha_code": ":mermaid_tone4:", "aliases": ":mermaid_medium_dark_skin_tone:" }, "1f9dc-1f3fe-2642": { "output": "1f9dc-1f3fe-200d-2642-fe0f", "name": "merman: medium-dark skin tone", "alpha_code": ":merman_tone4:", "aliases": ":merman_medium_dark_skin_tone:" }, "1f9dc-1f3ff-2640": { "output": "1f9dc-1f3ff-200d-2640-fe0f", "name": "mermaid: dark skin tone", "alpha_code": ":mermaid_tone5:", "aliases": ":mermaid_dark_skin_tone:" }, "1f9dc-1f3ff-2642": { "output": "1f9dc-1f3ff-200d-2642-fe0f", "name": "merman: dark skin tone", "alpha_code": ":merman_tone5:", "aliases": ":merman_dark_skin_tone:" }, "1f9dd-2640": { "output": "1f9dd-200d-2640-fe0f", "name": "woman elf", "alpha_code": ":woman_elf:", "aliases": "" }, "1f9dd-2642": { "output": "1f9dd-200d-2642-fe0f", "name": "man elf", "alpha_code": ":man_elf:", "aliases": "" }, "1f9dd-1f3fb-2640": { "output": "1f9dd-1f3fb-200d-2640-fe0f", "name": "woman elf: light skin tone", "alpha_code": ":woman_elf_tone1:", "aliases": ":woman_elf_light_skin_tone:" }, "1f9dd-1f3fb-2642": { "output": "1f9dd-1f3fb-200d-2642-fe0f", "name": "man elf: light skin tone", "alpha_code": ":man_elf_tone1:", "aliases": ":man_elf_light_skin_tone:" }, "1f9dd-1f3fc-2640": { "output": "1f9dd-1f3fc-200d-2640-fe0f", "name": "woman elf: medium-light skin tone", "alpha_code": ":woman_elf_tone2:", "aliases": ":woman_elf_medium_light_skin_tone:" }, "1f9dd-1f3fc-2642": { "output": "1f9dd-1f3fc-200d-2642-fe0f", "name": "man elf: medium-light skin tone", "alpha_code": ":man_elf_tone2:", "aliases": ":man_elf_medium_light_skin_tone:" }, "1f9dd-1f3fd-2640": { "output": "1f9dd-1f3fd-200d-2640-fe0f", "name": "woman elf: medium skin tone", "alpha_code": ":woman_elf_tone3:", "aliases": ":woman_elf_medium_skin_tone:" }, "1f9dd-1f3fd-2642": { "output": "1f9dd-1f3fd-200d-2642-fe0f", "name": "man elf: medium skin tone", "alpha_code": ":man_elf_tone3:", "aliases": ":man_elf_medium_skin_tone:" }, "1f9dd-1f3fe-2640": { "output": "1f9dd-1f3fe-200d-2640-fe0f", "name": "woman elf: medium-dark skin tone", "alpha_code": ":woman_elf_tone4:", "aliases": ":woman_elf_medium_dark_skin_tone:" }, "1f9dd-1f3fe-2642": { "output": "1f9dd-1f3fe-200d-2642-fe0f", "name": "man elf: medium-dark skin tone", "alpha_code": ":man_elf_tone4:", "aliases": ":man_elf_medium_dark_skin_tone:" }, "1f9dd-1f3ff-2640": { "output": "1f9dd-1f3ff-200d-2640-fe0f", "name": "woman elf: dark skin tone", "alpha_code": ":woman_elf_tone5:", "aliases": ":woman_elf_dark_skin_tone:" }, "1f9dd-1f3ff-2642": { "output": "1f9dd-1f3ff-200d-2642-fe0f", "name": "man elf: dark skin tone", "alpha_code": ":man_elf_tone5:", "aliases": ":man_elf_dark_skin_tone:" }, "1f9de-2640": { "output": "1f9de-200d-2640-fe0f", "name": "woman genie", "alpha_code": ":woman_genie:", "aliases": "" }, "1f9de-2642": { "output": "1f9de-200d-2642-fe0f", "name": "man genie", "alpha_code": ":man_genie:", "aliases": "" }, "1f9df-2640": { "output": "1f9df-200d-2640-fe0f", "name": "woman zombie", "alpha_code": ":woman_zombie:", "aliases": "" }, "1f9df-2642": { "output": "1f9df-200d-2642-fe0f", "name": "man zombie", "alpha_code": ":man_zombie:", "aliases": "" }, "1f9d6-2640": { "output": "1f9d6-200d-2640-fe0f", "name": "woman in steamy room", "alpha_code": ":woman_in_steamy_room:", "aliases": "" }, "1f9d6-2642": { "output": "1f9d6-200d-2642-fe0f", "name": "man in steamy room", "alpha_code": ":man_in_steamy_room:", "aliases": "" }, "1f9d6-1f3fb-2640": { "output": "1f9d6-1f3fb-200d-2640-fe0f", "name": "woman in steamy room: light skin tone", "alpha_code": ":woman_in_steamy_room_tone1:", "aliases": ":woman_in_steamy_room_light_skin_tone:" }, "1f9d6-1f3fb-2642": { "output": "1f9d6-1f3fb-200d-2642-fe0f", "name": "man in steamy room: light skin tone", "alpha_code": ":man_in_steamy_room_tone1:", "aliases": ":man_in_steamy_room_light_skin_tone:" }, "1f9d6-1f3fc-2640": { "output": "1f9d6-1f3fc-200d-2640-fe0f", "name": "woman in steamy room: medium-light skin tone", "alpha_code": ":woman_in_steamy_room_tone2:", "aliases": ":woman_in_steamy_room_medium_light_skin_tone:" }, "1f9d6-1f3fc-2642": { "output": "1f9d6-1f3fc-200d-2642-fe0f", "name": "man in steamy room: medium-light skin tone", "alpha_code": ":man_in_steamy_room_tone2:", "aliases": ":man_in_steamy_room_medium_light_skin_tone:" }, "1f9d6-1f3fd-2640": { "output": "1f9d6-1f3fd-200d-2640-fe0f", "name": "woman in steamy room: medium skin tone", "alpha_code": ":woman_in_steamy_room_tone3:", "aliases": ":woman_in_steamy_room_medium_skin_tone:" }, "1f9d6-1f3fd-2642": { "output": "1f9d6-1f3fd-200d-2642-fe0f", "name": "man in steamy room: medium skin tone", "alpha_code": ":man_in_steamy_room_tone3:", "aliases": ":man_in_steamy_room_medium_skin_tone:" }, "1f9d6-1f3fe-2640": { "output": "1f9d6-1f3fe-200d-2640-fe0f", "name": "woman in steamy room: medium-dark skin tone", "alpha_code": ":woman_in_steamy_room_tone4:", "aliases": ":woman_in_steamy_room_medium_dark_skin_tone:" }, "1f9d6-1f3fe-2642": { "output": "1f9d6-1f3fe-200d-2642-fe0f", "name": "man in steamy room: medium-dark skin tone", "alpha_code": ":man_in_steamy_room_tone4:", "aliases": ":man_in_steamy_room_medium_dark_skin_tone:" }, "1f9d6-1f3ff-2640": { "output": "1f9d6-1f3ff-200d-2640-fe0f", "name": "woman in steamy room: dark skin tone", "alpha_code": ":woman_in_steamy_room_tone5:", "aliases": ":woman_in_steamy_room_dark_skin_tone:" }, "1f9d6-1f3ff-2642": { "output": "1f9d6-1f3ff-200d-2642-fe0f", "name": "man in steamy room: dark skin tone", "alpha_code": ":man_in_steamy_room_tone5:", "aliases": ":man_in_steamy_room_dark_skin_tone:" }, "1f9d7-2640": { "output": "1f9d7-200d-2640-fe0f", "name": "woman climbing", "alpha_code": ":woman_climbing:", "aliases": "" }, "1f9d7-2642": { "output": "1f9d7-200d-2642-fe0f", "name": "man climbing", "alpha_code": ":man_climbing:", "aliases": "" }, "1f9d7-1f3fb-2640": { "output": "1f9d7-1f3fb-200d-2640-fe0f", "name": "woman climbing: light skin tone", "alpha_code": ":woman_climbing_tone1:", "aliases": ":woman_climbing_light_skin_tone:" }, "1f9d7-1f3fb-2642": { "output": "1f9d7-1f3fb-200d-2642-fe0f", "name": "man climbing: light skin tone", "alpha_code": ":man_climbing_tone1:", "aliases": ":man_climbing_light_skin_tone:" }, "1f9d7-1f3fc-2640": { "output": "1f9d7-1f3fc-200d-2640-fe0f", "name": "woman climbing: medium-light skin tone", "alpha_code": ":woman_climbing_tone2:", "aliases": ":woman_climbing_medium_light_skin_tone:" }, "1f9d7-1f3fc-2642": { "output": "1f9d7-1f3fc-200d-2642-fe0f", "name": "man climbing: medium-light skin tone", "alpha_code": ":man_climbing_tone2:", "aliases": ":man_climbing_medium_light_skin_tone:" }, "1f9d7-1f3fd-2640": { "output": "1f9d7-1f3fd-200d-2640-fe0f", "name": "woman climbing: medium skin tone", "alpha_code": ":woman_climbing_tone3:", "aliases": ":woman_climbing_medium_skin_tone:" }, "1f9d7-1f3fd-2642": { "output": "1f9d7-1f3fd-200d-2642-fe0f", "name": "man climbing: medium skin tone", "alpha_code": ":man_climbing_tone3:", "aliases": ":man_climbing_medium_skin_tone:" }, "1f9d7-1f3fe-2640": { "output": "1f9d7-1f3fe-200d-2640-fe0f", "name": "woman climbing: medium-dark skin tone", "alpha_code": ":woman_climbing_tone4:", "aliases": ":woman_climbing_medium_dark_skin_tone:" }, "1f9d7-1f3fe-2642": { "output": "1f9d7-1f3fe-200d-2642-fe0f", "name": "man climbing: medium-dark skin tone", "alpha_code": ":man_climbing_tone4:", "aliases": ":man_climbing_medium_dark_skin_tone:" }, "1f9d7-1f3ff-2640": { "output": "1f9d7-1f3ff-200d-2640-fe0f", "name": "woman climbing: dark skin tone", "alpha_code": ":woman_climbing_tone5:", "aliases": ":woman_climbing_dark_skin_tone:" }, "1f9d7-1f3ff-2642": { "output": "1f9d7-1f3ff-200d-2642-fe0f", "name": "man climbing: dark skin tone", "alpha_code": ":man_climbing_tone5:", "aliases": ":man_climbing_dark_skin_tone:" }, "1f9d8-2640": { "output": "1f9d8-200d-2640-fe0f", "name": "woman in lotus position", "alpha_code": ":woman_in_lotus_position:", "aliases": "" }, "1f9d8-2642": { "output": "1f9d8-200d-2642-fe0f", "name": "man in lotus position", "alpha_code": ":man_in_lotus_position:", "aliases": "" }, "1f9d8-1f3fb-2640": { "output": "1f9d8-1f3fb-200d-2640-fe0f", "name": "woman in lotus position: light skin tone", "alpha_code": ":woman_in_lotus_position_tone1:", "aliases": ":woman_in_lotus_position_light_skin_tone:" }, "1f9d8-1f3fb-2642": { "output": "1f9d8-1f3fb-200d-2642-fe0f", "name": "man in lotus position: light skin tone", "alpha_code": ":man_in_lotus_position_tone1:", "aliases": ":man_in_lotus_position_light_skin_tone:" }, "1f9d8-1f3fc-2640": { "output": "1f9d8-1f3fc-200d-2640-fe0f", "name": "woman in lotus position: medium-light skin tone", "alpha_code": ":woman_in_lotus_position_tone2:", "aliases": ":woman_in_lotus_position_medium_light_skin_tone:" }, "1f9d8-1f3fc-2642": { "output": "1f9d8-1f3fc-200d-2642-fe0f", "name": "man in lotus position: medium-light skin tone", "alpha_code": ":man_in_lotus_position_tone2:", "aliases": ":man_in_lotus_position_medium_light_skin_tone:" }, "1f9d8-1f3fd-2640": { "output": "1f9d8-1f3fd-200d-2640-fe0f", "name": "woman in lotus position: medium skin tone", "alpha_code": ":woman_in_lotus_position_tone3:", "aliases": ":woman_in_lotus_position_medium_skin_tone:" }, "1f9d8-1f3fd-2642": { "output": "1f9d8-1f3fd-200d-2642-fe0f", "name": "man in lotus position: medium skin tone", "alpha_code": ":man_in_lotus_position_tone3:", "aliases": ":man_in_lotus_position_medium_skin_tone:" }, "1f9d8-1f3fe-2640": { "output": "1f9d8-1f3fe-200d-2640-fe0f", "name": "woman in lotus position: medium-dark skin tone", "alpha_code": ":woman_in_lotus_position_tone4:", "aliases": ":woman_in_lotus_position_medium_dark_skin_tone:" }, "1f9d8-1f3fe-2642": { "output": "1f9d8-1f3fe-200d-2642-fe0f", "name": "man in lotus position: medium-dark skin tone", "alpha_code": ":man_in_lotus_position_tone4:", "aliases": ":man_in_lotus_position_medium_dark_skin_tone:" }, "1f9d8-1f3ff-2640": { "output": "1f9d8-1f3ff-200d-2640-fe0f", "name": "woman in lotus position: dark skin tone", "alpha_code": ":woman_in_lotus_position_tone5:", "aliases": ":woman_in_lotus_position_dark_skin_tone:" }, "1f9d8-1f3ff-2642": { "output": "1f9d8-1f3ff-200d-2642-fe0f", "name": "man in lotus position: dark skin tone", "alpha_code": ":man_in_lotus_position_tone5:", "aliases": ":man_in_lotus_position_dark_skin_tone:" }, "265f": { "output": "265f-fe0f", "name": "chess pawn", "alpha_code": ":chess_pawn:", "aliases": "" }, "267e": { "output": "267e-fe0f", "name": "infinity", "alpha_code": ":infinity:", "aliases": "" }, "1f6f9": { "output": "1f6f9", "name": "skateboard", "alpha_code": ":skateboard:", "aliases": "" }, "1f94d": { "output": "1f94d", "name": "lacrosse", "alpha_code": ":lacrosse:", "aliases": "" }, "1f94e": { "output": "1f94e", "name": "softball", "alpha_code": ":softball:", "aliases": "" }, "1f94f": { "output": "1f94f", "name": "flying disc", "alpha_code": ":flying_disc:", "aliases": "" }, "1f96c": { "output": "1f96c", "name": "leafy green", "alpha_code": ":leafy_green:", "aliases": "" }, "1f96d": { "output": "1f96d", "name": "mango", "alpha_code": ":mango:", "aliases": "" }, "1f96e": { "output": "1f96e", "name": "moon cake", "alpha_code": ":moon_cake:", "aliases": "" }, "1f96f": { "output": "1f96f", "name": "bagel", "alpha_code": ":bagel:", "aliases": "" }, "1f970": { "output": "1f970", "name": "smiling face with hearts", "alpha_code": ":smiling_face_with_3_hearts:", "aliases": "" }, "1f973": { "output": "1f973", "name": "partying face", "alpha_code": ":partying_face:", "aliases": "" }, "1f974": { "output": "1f974", "name": "woozy face", "alpha_code": ":woozy_face:", "aliases": "" }, "1f975": { "output": "1f975", "name": "hot face", "alpha_code": ":hot_face:", "aliases": "" }, "1f976": { "output": "1f976", "name": "cold face", "alpha_code": ":cold_face:", "aliases": "" }, "1f97a": { "output": "1f97a", "name": "pleading face", "alpha_code": ":pleading_face:", "aliases": "" }, "1f97c": { "output": "1f97c", "name": "lab coat", "alpha_code": ":lab_coat:", "aliases": "" }, "1f97d": { "output": "1f97d", "name": "goggles", "alpha_code": ":goggles:", "aliases": "" }, "1f97e": { "output": "1f97e", "name": "hiking boot", "alpha_code": ":hiking_boot:", "aliases": "" }, "1f97f": { "output": "1f97f", "name": "flat shoe", "alpha_code": ":womans_flat_shoe:", "aliases": "" }, "1f998": { "output": "1f998", "name": "kangaroo", "alpha_code": ":kangaroo:", "aliases": "" }, "1f999": { "output": "1f999", "name": "llama", "alpha_code": ":llama:", "aliases": "" }, "1f99a": { "output": "1f99a", "name": "peacock", "alpha_code": ":peacock:", "aliases": "" }, "1f99b": { "output": "1f99b", "name": "hippopotamus", "alpha_code": ":hippopotamus:", "aliases": "" }, "1f99c": { "output": "1f99c", "name": "parrot", "alpha_code": ":parrot:", "aliases": "" }, "1f99d": { "output": "1f99d", "name": "raccoon", "alpha_code": ":raccoon:", "aliases": "" }, "1f99e": { "output": "1f99e", "name": "lobster", "alpha_code": ":lobster:", "aliases": "" }, "1f99f": { "output": "1f99f", "name": "mosquito", "alpha_code": ":mosquito:", "aliases": "" }, "1f9a0": { "output": "1f9a0", "name": "microbe", "alpha_code": ":microbe:", "aliases": "" }, "1f9a1": { "output": "1f9a1", "name": "badger", "alpha_code": ":badger:", "aliases": "" }, "1f9a2": { "output": "1f9a2", "name": "swan", "alpha_code": ":swan:", "aliases": "" }, "1f9b0": { "output": "1f9b0", "name": "red hair", "alpha_code": ":red_haired:", "aliases": "" }, "1f9b1": { "output": "1f9b1", "name": "curly hair", "alpha_code": ":curly_haired:", "aliases": "" }, "1f9b2": { "output": "1f9b2", "name": "bald", "alpha_code": ":bald:", "aliases": "" }, "1f9b3": { "output": "1f9b3", "name": "white hair", "alpha_code": ":white_haired:", "aliases": "" }, "1f9b4": { "output": "1f9b4", "name": "bone", "alpha_code": ":bone:", "aliases": "" }, "1f9b5": { "output": "1f9b5", "name": "leg", "alpha_code": ":leg:", "aliases": "" }, "1f9b6": { "output": "1f9b6", "name": "foot", "alpha_code": ":foot:", "aliases": "" }, "1f9b7": { "output": "1f9b7", "name": "tooth", "alpha_code": ":tooth:", "aliases": "" }, "1f9b8": { "output": "1f9b8", "name": "superhero", "alpha_code": ":superhero:", "aliases": "" }, "1f9b9": { "output": "1f9b9", "name": "supervillain", "alpha_code": ":supervillain:", "aliases": "" }, "1f9c1": { "output": "1f9c1", "name": "cupcake", "alpha_code": ":cupcake:", "aliases": "" }, "1f9c2": { "output": "1f9c2", "name": "salt", "alpha_code": ":salt:", "aliases": "" }, "1f9e7": { "output": "1f9e7", "name": "red envelope", "alpha_code": ":red_envelope:", "aliases": "" }, "1f9e8": { "output": "1f9e8", "name": "firecracker", "alpha_code": ":firecracker:", "aliases": "" }, "1f9e9": { "output": "1f9e9", "name": "puzzle piece", "alpha_code": ":jigsaw:", "aliases": "" }, "1f9ea": { "output": "1f9ea", "name": "test tube", "alpha_code": ":test_tube:", "aliases": "" }, "1f9eb": { "output": "1f9eb", "name": "petri dish", "alpha_code": ":petri_dish:", "aliases": "" }, "1f9ec": { "output": "1f9ec", "name": "dna", "alpha_code": ":dna:", "aliases": "" }, "1f9ed": { "output": "1f9ed", "name": "compass", "alpha_code": ":compass:", "aliases": "" }, "1f9ee": { "output": "1f9ee", "name": "abacus", "alpha_code": ":abacus:", "aliases": "" }, "1f9ef": { "output": "1f9ef", "name": "fire extinguisher", "alpha_code": ":fire_extinguisher:", "aliases": "" }, "1f9f0": { "output": "1f9f0", "name": "toolbox", "alpha_code": ":toolbox:", "aliases": "" }, "1f9f1": { "output": "1f9f1", "name": "brick", "alpha_code": ":bricks:", "aliases": "" }, "1f9f2": { "output": "1f9f2", "name": "magnet", "alpha_code": ":magnet:", "aliases": "" }, "1f9f3": { "output": "1f9f3", "name": "luggage", "alpha_code": ":luggage:", "aliases": "" }, "1f9f4": { "output": "1f9f4", "name": "lotion bottle", "alpha_code": ":squeeze_bottle:", "aliases": "" }, "1f9f5": { "output": "1f9f5", "name": "thread", "alpha_code": ":thread:", "aliases": "" }, "1f9f6": { "output": "1f9f6", "name": "yarn", "alpha_code": ":yarn:", "aliases": "" }, "1f9f7": { "output": "1f9f7", "name": "safety pin", "alpha_code": ":safety_pin:", "aliases": "" }, "1f9f8": { "output": "1f9f8", "name": "teddy bear", "alpha_code": ":teddy_bear:", "aliases": "" }, "1f9f9": { "output": "1f9f9", "name": "broom", "alpha_code": ":broom:", "aliases": "" }, "1f9fa": { "output": "1f9fa", "name": "basket", "alpha_code": ":basket:", "aliases": "" }, "1f9fb": { "output": "1f9fb", "name": "roll of paper", "alpha_code": ":roll_of_paper:", "aliases": "" }, "1f9fc": { "output": "1f9fc", "name": "soap", "alpha_code": ":soap:", "aliases": "" }, "1f9fd": { "output": "1f9fd", "name": "sponge", "alpha_code": ":sponge:", "aliases": "" }, "1f9fe": { "output": "1f9fe", "name": "receipt", "alpha_code": ":receipt:", "aliases": "" }, "1f9ff": { "output": "1f9ff", "name": "nazar amulet", "alpha_code": ":nazar_amulet:", "aliases": "" }, "1f9b5-1f3fb": { "output": "1f9b5-1f3fb", "name": "leg: light skin tone", "alpha_code": ":leg_tone1:", "aliases": ":leg_light_skin_tone:" }, "1f9b5-1f3fc": { "output": "1f9b5-1f3fc", "name": "leg: medium-light skin tone", "alpha_code": ":leg_tone2:", "aliases": ":leg_medium_light_skin_tone:" }, "1f9b5-1f3fd": { "output": "1f9b5-1f3fd", "name": "leg: medium skin tone", "alpha_code": ":leg_tone3:", "aliases": ":leg_medium_skin_tone:" }, "1f9b5-1f3fe": { "output": "1f9b5-1f3fe", "name": "leg: medium-dark skin tone", "alpha_code": ":leg_tone4:", "aliases": ":leg_medium_dark_skin_tone:" }, "1f9b5-1f3ff": { "output": "1f9b5-1f3ff", "name": "leg: dark skin tone", "alpha_code": ":leg_tone5:", "aliases": ":leg_dark_skin_tone:" }, "1f9b6-1f3fb": { "output": "1f9b6-1f3fb", "name": "foot: light skin tone", "alpha_code": ":foot_tone1:", "aliases": ":foot_light_skin_tone:" }, "1f9b6-1f3fc": { "output": "1f9b6-1f3fc", "name": "foot: medium-light skin tone", "alpha_code": ":foot_tone2:", "aliases": ":foot_medium_light_skin_tone:" }, "1f9b6-1f3fd": { "output": "1f9b6-1f3fd", "name": "foot: medium skin tone", "alpha_code": ":foot_tone3:", "aliases": ":foot_medium_skin_tone:" }, "1f9b6-1f3fe": { "output": "1f9b6-1f3fe", "name": "foot: medium-dark skin tone", "alpha_code": ":foot_tone4:", "aliases": ":foot_medium_dark_skin_tone:" }, "1f9b6-1f3ff": { "output": "1f9b6-1f3ff", "name": "foot: dark skin tone", "alpha_code": ":foot_tone5:", "aliases": ":foot_dark_skin_tone:" }, "1f9b8-1f3fb": { "output": "1f9b8-1f3fb", "name": "superhero: light skin tone", "alpha_code": ":superhero_tone1:", "aliases": ":superhero_light_skin_tone:" }, "1f9b8-1f3fc": { "output": "1f9b8-1f3fc", "name": "superhero: medium-light skin tone", "alpha_code": ":superhero_tone2:", "aliases": ":superhero_medium_light_skin_tone:" }, "1f9b8-1f3fd": { "output": "1f9b8-1f3fd", "name": "superhero: medium skin tone", "alpha_code": ":superhero_tone3:", "aliases": ":superhero_medium_skin_tone:" }, "1f9b8-1f3fe": { "output": "1f9b8-1f3fe", "name": "superhero: medium-dark skin tone", "alpha_code": ":superhero_tone4:", "aliases": ":superhero_medium_dark_skin_tone:" }, "1f9b8-1f3ff": { "output": "1f9b8-1f3ff", "name": "superhero: dark skin tone", "alpha_code": ":superhero_tone5:", "aliases": ":superhero_dark_skin_tone:" }, "1f9b9-1f3fb": { "output": "1f9b9-1f3fb", "name": "supervillain: light skin tone", "alpha_code": ":supervillain_tone1:", "aliases": ":supervillain_light_skin_tone:" }, "1f9b9-1f3fc": { "output": "1f9b9-1f3fc", "name": "supervillain: medium-light skin tone", "alpha_code": ":supervillain_tone2:", "aliases": ":supervillain_medium_light_skin_tone:" }, "1f9b9-1f3fd": { "output": "1f9b9-1f3fd", "name": "supervillain: medium skin tone", "alpha_code": ":supervillain_tone3:", "aliases": ":supervillain_medium_skin_tone:" }, "1f9b9-1f3fe": { "output": "1f9b9-1f3fe", "name": "supervillain: medium-dark skin tone", "alpha_code": ":supervillain_tone4:", "aliases": ":supervillain_medium_dark_skin_tone:" }, "1f9b9-1f3ff": { "output": "1f9b9-1f3ff", "name": "supervillain: dark skin tone", "alpha_code": ":supervillain_tone5:", "aliases": ":supervillain_dark_skin_tone:" }, "1f468-1f9b0": { "output": "1f468-200d-1f9b0", "name": "man: red hair", "alpha_code": ":man_red_haired:", "aliases": "" }, "1f468-1f9b1": { "output": "1f468-200d-1f9b1", "name": "man: curly hair", "alpha_code": ":man_curly_haired:", "aliases": "" }, "1f468-1f9b2": { "output": "1f468-200d-1f9b2", "name": "man: bald", "alpha_code": ":man_bald:", "aliases": "" }, "1f468-1f9b3": { "output": "1f468-200d-1f9b3", "name": "man: white hair", "alpha_code": ":man_white_haired:", "aliases": "" }, "1f468-1f3fb-1f9b0": { "output": "1f468-1f3fb-200d-1f9b0", "name": "man, red haired: light skin tone", "alpha_code": ":man_red_haired_tone1:", "aliases": ":man_red_haired_light_skin_tone:" }, "1f468-1f3fb-1f9b1": { "output": "1f468-1f3fb-200d-1f9b1", "name": "man, curly haired: light skin tone", "alpha_code": ":man_curly_haired_tone1:", "aliases": ":man_curly_haired_light_skin_tone:" }, "1f468-1f3fb-1f9b2": { "output": "1f468-1f3fb-200d-1f9b2", "name": "man, bald: light skin tone", "alpha_code": ":man_bald_tone1:", "aliases": ":man_bald_light_skin_tone:" }, "1f468-1f3fb-1f9b3": { "output": "1f468-1f3fb-200d-1f9b3", "name": "man, white haired: light skin tone", "alpha_code": ":man_white_haired_tone1:", "aliases": ":man_white_haired_light_skin_tone:" }, "1f468-1f3fc-1f9b0": { "output": "1f468-1f3fc-200d-1f9b0", "name": "man, red haired: medium-light skin tone", "alpha_code": ":man_red_haired_tone2:", "aliases": ":man_red_haired_medium_light_skin_tone:" }, "1f468-1f3fc-1f9b1": { "output": "1f468-1f3fc-200d-1f9b1", "name": "man, curly haired: medium-light skin tone", "alpha_code": ":man_curly_haired_tone2:", "aliases": ":man_curly_haired_medium_light_skin_tone:" }, "1f468-1f3fc-1f9b2": { "output": "1f468-1f3fc-200d-1f9b2", "name": "man, bald: medium-light skin tone", "alpha_code": ":man_bald_tone2:", "aliases": ":man_bald_medium_light_skin_tone:" }, "1f468-1f3fc-1f9b3": { "output": "1f468-1f3fc-200d-1f9b3", "name": "man, white haired: medium-light skin tone", "alpha_code": ":man_white_haired_tone2:", "aliases": ":man_white_haired_medium_light_skin_tone:" }, "1f468-1f3fd-1f9b0": { "output": "1f468-1f3fd-200d-1f9b0", "name": "man, red haired: medium skin tone", "alpha_code": ":man_red_haired_tone3:", "aliases": ":man_red_haired_medium_skin_tone:" }, "1f468-1f3fd-1f9b1": { "output": "1f468-1f3fd-200d-1f9b1", "name": "man, curly haired: medium skin tone", "alpha_code": ":man_curly_haired_tone3:", "aliases": ":man_curly_haired_medium_skin_tone:" }, "1f468-1f3fd-1f9b2": { "output": "1f468-1f3fd-200d-1f9b2", "name": "man, bald: medium skin tone", "alpha_code": ":man_bald_tone3:", "aliases": ":man_bald_medium_skin_tone:" }, "1f468-1f3fd-1f9b3": { "output": "1f468-1f3fd-200d-1f9b3", "name": "man, white haired: medium skin tone", "alpha_code": ":man_white_haired_tone3:", "aliases": ":man_white_haired_medium_skin_tone:" }, "1f468-1f3fe-1f9b0": { "output": "1f468-1f3fe-200d-1f9b0", "name": "man, red haired: medium-dark skin tone", "alpha_code": ":man_red_haired_tone4:", "aliases": ":man_red_haired_medium_dark_skin_tone:" }, "1f468-1f3fe-1f9b1": { "output": "1f468-1f3fe-200d-1f9b1", "name": "man, curly haired: medium-dark skin tone", "alpha_code": ":man_curly_haired_tone4:", "aliases": ":man_curly_haired_medium_dark_skin_tone:" }, "1f468-1f3fe-1f9b2": { "output": "1f468-1f3fe-200d-1f9b2", "name": "man, bald: medium-dark skin tone", "alpha_code": ":man_bald_tone4:", "aliases": ":man_bald_medium_dark_skin_tone:" }, "1f468-1f3fe-1f9b3": { "output": "1f468-1f3fe-200d-1f9b3", "name": "man, white haired: medium-dark skin tone", "alpha_code": ":man_white_haired_tone4:", "aliases": ":man_white_haired_medium_dark_skin_tone:" }, "1f468-1f3ff-1f9b0": { "output": "1f468-1f3ff-200d-1f9b0", "name": "man, red haired: dark skin tone", "alpha_code": ":man_red_haired_tone5:", "aliases": ":man_red_haired_dark_skin_tone:" }, "1f468-1f3ff-1f9b1": { "output": "1f468-1f3ff-200d-1f9b1", "name": "man, curly haired: dark skin tone", "alpha_code": ":man_curly_haired_tone5:", "aliases": ":man_curly_haired_dark_skin_tone:" }, "1f468-1f3ff-1f9b2": { "output": "1f468-1f3ff-200d-1f9b2", "name": "man, bald: dark skin tone", "alpha_code": ":man_bald_tone5:", "aliases": ":man_bald_dark_skin_tone:" }, "1f468-1f3ff-1f9b3": { "output": "1f468-1f3ff-200d-1f9b3", "name": "man, white haired: dark skin tone", "alpha_code": ":man_white_haired_tone5:", "aliases": ":man_white_haired_dark_skin_tone:" }, "1f469-1f9b0": { "output": "1f469-200d-1f9b0", "name": "woman: red hair", "alpha_code": ":woman_red_haired:", "aliases": "" }, "1f469-1f9b1": { "output": "1f469-200d-1f9b1", "name": "woman: curly hair", "alpha_code": ":woman_curly_haired:", "aliases": "" }, "1f469-1f9b2": { "output": "1f469-200d-1f9b2", "name": "woman: bald", "alpha_code": ":woman_bald:", "aliases": "" }, "1f469-1f9b3": { "output": "1f469-200d-1f9b3", "name": "woman: white hair", "alpha_code": ":woman_white_haired:", "aliases": "" }, "1f469-1f3fb-1f9b0": { "output": "1f469-1f3fb-200d-1f9b0", "name": "woman, red haired: light skin tone", "alpha_code": ":woman_red_haired_tone1:", "aliases": ":woman_red_haired_light_skin_tone:" }, "1f469-1f3fb-1f9b1": { "output": "1f469-1f3fb-200d-1f9b1", "name": "woman, curly haired: light skin tone", "alpha_code": ":woman_curly_haired_tone1:", "aliases": ":woman_curly_haired_light_skin_tone:" }, "1f469-1f3fb-1f9b2": { "output": "1f469-1f3fb-200d-1f9b2", "name": "woman, bald: light skin tone", "alpha_code": ":woman_bald_tone1:", "aliases": ":woman_bald_light_skin_tone:" }, "1f469-1f3fb-1f9b3": { "output": "1f469-1f3fb-200d-1f9b3", "name": "woman, white haired: light skin tone", "alpha_code": ":woman_white_haired_tone1:", "aliases": ":woman_white_haired_light_skin_tone:" }, "1f469-1f3fc-1f9b0": { "output": "1f469-1f3fc-200d-1f9b0", "name": "woman, red haired: medium-light skin tone", "alpha_code": ":woman_red_haired_tone2:", "aliases": ":woman_red_haired_medium_light_skin_tone:" }, "1f469-1f3fc-1f9b1": { "output": "1f469-1f3fc-200d-1f9b1", "name": "woman, curly haired: medium-light skin tone", "alpha_code": ":woman_curly_haired_tone2:", "aliases": ":woman_curly_haired_medium_light_skin_tone:" }, "1f469-1f3fc-1f9b2": { "output": "1f469-1f3fc-200d-1f9b2", "name": "woman, bald: medium-light skin tone", "alpha_code": ":woman_bald_tone2:", "aliases": ":woman_bald_medium_light_skin_tone:" }, "1f469-1f3fc-1f9b3": { "output": "1f469-1f3fc-200d-1f9b3", "name": "woman, white haired: medium-light skin tone", "alpha_code": ":woman_white_haired_tone2:", "aliases": ":woman_white_haired_medium_light_skin_tone:" }, "1f469-1f3fd-1f9b0": { "output": "1f469-1f3fd-200d-1f9b0", "name": "woman, red haired: medium skin tone", "alpha_code": ":woman_red_haired_tone3:", "aliases": ":woman_red_haired_medium_skin_tone:" }, "1f469-1f3fd-1f9b1": { "output": "1f469-1f3fd-200d-1f9b1", "name": "woman, curly haired: medium skin tone", "alpha_code": ":woman_curly_haired_tone3:", "aliases": ":woman_curly_haired_medium_skin_tone:" }, "1f469-1f3fd-1f9b2": { "output": "1f469-1f3fd-200d-1f9b2", "name": "woman, bald: medium skin tone", "alpha_code": ":woman_bald_tone3:", "aliases": ":woman_bald_medium_skin_tone:" }, "1f469-1f3fd-1f9b3": { "output": "1f469-1f3fd-200d-1f9b3", "name": "woman, white haired: medium skin tone", "alpha_code": ":woman_white_haired_tone3:", "aliases": ":woman_white_haired_medium_skin_tone:" }, "1f469-1f3fe-1f9b0": { "output": "1f469-1f3fe-200d-1f9b0", "name": "woman, red haired: medium-dark skin tone", "alpha_code": ":woman_red_haired_tone4:", "aliases": ":woman_red_haired_medium_dark_skin_tone:" }, "1f469-1f3fe-1f9b1": { "output": "1f469-1f3fe-200d-1f9b1", "name": "woman, curly haired: medium-dark skin tone", "alpha_code": ":woman_curly_haired_tone4:", "aliases": ":woman_curly_haired_medium_dark_skin_tone:" }, "1f469-1f3fe-1f9b2": { "output": "1f469-1f3fe-200d-1f9b2", "name": "woman, bald: medium-dark skin tone", "alpha_code": ":woman_bald_tone4:", "aliases": ":woman_bald_medium_dark_skin_tone:" }, "1f469-1f3fe-1f9b3": { "output": "1f469-1f3fe-200d-1f9b3", "name": "woman, white haired: medium-dark skin tone", "alpha_code": ":woman_white_haired_tone4:", "aliases": ":woman_white_haired_medium_dark_skin_tone:" }, "1f469-1f3ff-1f9b0": { "output": "1f469-1f3ff-200d-1f9b0", "name": "woman, red haired: dark skin tone", "alpha_code": ":woman_red_haired_tone5:", "aliases": ":woman_red_haired_dark_skin_tone:" }, "1f469-1f3ff-1f9b1": { "output": "1f469-1f3ff-200d-1f9b1", "name": "woman, curly haired: dark skin tone", "alpha_code": ":woman_curly_haired_tone5:", "aliases": ":woman_curly_haired_dark_skin_tone:" }, "1f469-1f3ff-1f9b2": { "output": "1f469-1f3ff-200d-1f9b2", "name": "woman, bald: dark skin tone", "alpha_code": ":woman_bald_tone5:", "aliases": ":woman_bald_dark_skin_tone:" }, "1f469-1f3ff-1f9b3": { "output": "1f469-1f3ff-200d-1f9b3", "name": "woman, white haired: dark skin tone", "alpha_code": ":woman_white_haired_tone5:", "aliases": ":woman_white_haired_dark_skin_tone:" }, "1f9b8-2640": { "output": "1f9b8-200d-2640-fe0f", "name": "woman superhero", "alpha_code": ":woman_superhero:", "aliases": "" }, "1f9b8-2642": { "output": "1f9b8-200d-2642-fe0f", "name": "man superhero", "alpha_code": ":man_superhero:", "aliases": "" }, "1f9b8-1f3fb-2640": { "output": "1f9b8-1f3fb-200d-2640-fe0f", "name": "woman superhero: light skin tone", "alpha_code": ":woman_superhero_tone1:", "aliases": ":woman_superhero_light_skin_tone:" }, "1f9b8-1f3fb-2642": { "output": "1f9b8-1f3fb-200d-2642-fe0f", "name": "man superhero: light skin tone", "alpha_code": ":man_superhero_tone1:", "aliases": ":man_superhero_light_skin_tone:" }, "1f9b8-1f3fc-2640": { "output": "1f9b8-1f3fc-200d-2640-fe0f", "name": "woman superhero: medium-light skin tone", "alpha_code": ":woman_superhero_tone2:", "aliases": ":woman_superhero_medium_light_skin_tone:" }, "1f9b8-1f3fc-2642": { "output": "1f9b8-1f3fc-200d-2642-fe0f", "name": "man superhero: medium-light skin tone", "alpha_code": ":man_superhero_tone2:", "aliases": ":man_superhero_medium_light_skin_tone:" }, "1f9b8-1f3fd-2640": { "output": "1f9b8-1f3fd-200d-2640-fe0f", "name": "woman superhero: medium skin tone", "alpha_code": ":woman_superhero_tone3:", "aliases": ":woman_superhero_medium_skin_tone:" }, "1f9b8-1f3fd-2642": { "output": "1f9b8-1f3fd-200d-2642-fe0f", "name": "man superhero: medium skin tone", "alpha_code": ":man_superhero_tone3:", "aliases": ":man_superhero_medium_skin_tone:" }, "1f9b8-1f3fe-2640": { "output": "1f9b8-1f3fe-200d-2640-fe0f", "name": "woman superhero: medium-dark skin tone", "alpha_code": ":woman_superhero_tone4:", "aliases": ":woman_superhero_medium_dark_skin_tone:" }, "1f9b8-1f3fe-2642": { "output": "1f9b8-1f3fe-200d-2642-fe0f", "name": "man superhero: medium-dark skin tone", "alpha_code": ":man_superhero_tone4:", "aliases": ":man_superhero_medium_dark_skin_tone:" }, "1f9b8-1f3ff-2640": { "output": "1f9b8-1f3ff-200d-2640-fe0f", "name": "woman superhero: dark skin tone", "alpha_code": ":woman_superhero_tone5:", "aliases": ":woman_superhero_dark_skin_tone:" }, "1f9b8-1f3ff-2642": { "output": "1f9b8-1f3ff-200d-2642-fe0f", "name": "man superhero: dark skin tone", "alpha_code": ":man_superhero_tone5:", "aliases": ":man_superhero_dark_skin_tone:" }, "1f9b9-2640": { "output": "1f9b9-200d-2640-fe0f", "name": "woman supervillain", "alpha_code": ":woman_supervillain:", "aliases": "" }, "1f9b9-2642": { "output": "1f9b9-200d-2642-fe0f", "name": "man supervillain", "alpha_code": ":man_supervillain:", "aliases": "" }, "1f9b9-1f3fb-2640": { "output": "1f9b9-1f3fb-200d-2640-fe0f", "name": "woman supervillain: light skin tone", "alpha_code": ":woman_supervillain_tone1:", "aliases": ":woman_supervillain_light_skin_tone:" }, "1f9b9-1f3fb-2642": { "output": "1f9b9-1f3fb-200d-2642-fe0f", "name": "man supervillain: light skin tone", "alpha_code": ":man_supervillain_tone1:", "aliases": ":man_supervillain_light_skin_tone:" }, "1f9b9-1f3fc-2640": { "output": "1f9b9-1f3fc-200d-2640-fe0f", "name": "woman supervillain: medium-light skin tone", "alpha_code": ":woman_supervillain_tone2:", "aliases": ":woman_supervillain_medium_light_skin_tone:" }, "1f9b9-1f3fc-2642": { "output": "1f9b9-1f3fc-200d-2642-fe0f", "name": "man supervillain: medium-light skin tone", "alpha_code": ":man_supervillain_tone2:", "aliases": ":man_supervillain_medium_light_skin_tone:" }, "1f9b9-1f3fd-2640": { "output": "1f9b9-1f3fd-200d-2640-fe0f", "name": "woman supervillain: medium skin tone", "alpha_code": ":woman_supervillain_tone3:", "aliases": ":woman_supervillain_medium_skin_tone:" }, "1f9b9-1f3fd-2642": { "output": "1f9b9-1f3fd-200d-2642-fe0f", "name": "man supervillain: medium skin tone", "alpha_code": ":man_supervillain_tone3:", "aliases": ":man_supervillain_medium_skin_tone:" }, "1f9b9-1f3fe-2640": { "output": "1f9b9-1f3fe-200d-2640-fe0f", "name": "woman supervillain: medium-dark skin tone", "alpha_code": ":woman_supervillain_tone4:", "aliases": ":woman_supervillain_medium_dark_skin_tone:" }, "1f9b9-1f3fe-2642": { "output": "1f9b9-1f3fe-200d-2642-fe0f", "name": "man supervillain: medium-dark skin tone", "alpha_code": ":man_supervillain_tone4:", "aliases": ":man_supervillain_medium_dark_skin_tone:" }, "1f9b9-1f3ff-2640": { "output": "1f9b9-1f3ff-200d-2640-fe0f", "name": "woman supervillain: dark skin tone", "alpha_code": ":woman_supervillain_tone5:", "aliases": ":woman_supervillain_dark_skin_tone:" }, "1f9b9-1f3ff-2642": { "output": "1f9b9-1f3ff-200d-2642-fe0f", "name": "man supervillain: dark skin tone", "alpha_code": ":man_supervillain_tone5:", "aliases": ":man_supervillain_dark_skin_tone:" }, "1f3f4-2620": { "output": "1f3f4-200d-2620-fe0f", "name": "pirate flag", "alpha_code": ":pirate_flag:", "aliases": "" }, "1f6d5": { "output": "1f6d5", "name": "hindu temple", "alpha_code": ":hindu_temple:", "aliases": "" }, "1f6fa": { "output": "1f6fa", "name": "auto rickshaw", "alpha_code": ":auto_rickshaw:", "aliases": "" }, "1f7e0": { "output": "1f7e0", "name": "orange circle", "alpha_code": ":orange_circle:", "aliases": "" }, "1f7e1": { "output": "1f7e1", "name": "yellow circle", "alpha_code": ":yellow_circle:", "aliases": "" }, "1f7e2": { "output": "1f7e2", "name": "green circle", "alpha_code": ":green_circle:", "aliases": "" }, "1f7e3": { "output": "1f7e3", "name": "purple circle", "alpha_code": ":purple_circle:", "aliases": "" }, "1f7e4": { "output": "1f7e4", "name": "brown circle", "alpha_code": ":brown_circle:", "aliases": "" }, "1f7e5": { "output": "1f7e5", "name": "red square", "alpha_code": ":red_square:", "aliases": "" }, "1f7e6": { "output": "1f7e6", "name": "blue square", "alpha_code": ":blue_square:", "aliases": "" }, "1f7e7": { "output": "1f7e7", "name": "orange square", "alpha_code": ":orange_square:", "aliases": "" }, "1f7e8": { "output": "1f7e8", "name": "yellow square", "alpha_code": ":yellow_square:", "aliases": "" }, "1f7e9": { "output": "1f7e9", "name": "green square", "alpha_code": ":green_square:", "aliases": "" }, "1f7ea": { "output": "1f7ea", "name": "purple square", "alpha_code": ":purple_square:", "aliases": "" }, "1f7eb": { "output": "1f7eb", "name": "brown square", "alpha_code": ":brown_square:", "aliases": "" }, "1f90d": { "output": "1f90d", "name": "white heart", "alpha_code": ":white_heart:", "aliases": "" }, "1f90e": { "output": "1f90e", "name": "brown heart", "alpha_code": ":brown_heart:", "aliases": "" }, "1f90f": { "output": "1f90f", "name": "pinching hand", "alpha_code": ":pinching_hand:", "aliases": "" }, "1f93f": { "output": "1f93f", "name": "diving mask", "alpha_code": ":diving_mask:", "aliases": "" }, "1f971": { "output": "1f971", "name": "yawning face", "alpha_code": ":yawning_face:", "aliases": "" }, "1f97b": { "output": "1f97b", "name": "sari", "alpha_code": ":sari:", "aliases": "" }, "1f9a5": { "output": "1f9a5", "name": "sloth", "alpha_code": ":sloth:", "aliases": "" }, "1f9a6": { "output": "1f9a6", "name": "otter", "alpha_code": ":otter:", "aliases": "" }, "1f9a7": { "output": "1f9a7", "name": "orangutan", "alpha_code": ":orangutan:", "aliases": "" }, "1f9a8": { "output": "1f9a8", "name": "skunk", "alpha_code": ":skunk:", "aliases": "" }, "1f9a9": { "output": "1f9a9", "name": "flamingo", "alpha_code": ":flamingo:", "aliases": "" }, "1f9aa": { "output": "1f9aa", "name": "oyster", "alpha_code": ":oyster:", "aliases": "" }, "1f9ae": { "output": "1f9ae", "name": "guide dog", "alpha_code": ":guide_dog:", "aliases": "" }, "1f9af": { "output": "1f9af", "name": "probing cane", "alpha_code": ":probing_cane:", "aliases": "" }, "1f9ba": { "output": "1f9ba", "name": "safety vest", "alpha_code": ":safety_vest:", "aliases": "" }, "1f9bb": { "output": "1f9bb", "name": "ear with hearing aid", "alpha_code": ":ear_with_hearing_aid:", "aliases": "" }, "1f9bc": { "output": "1f9bc", "name": "motorized wheelchair", "alpha_code": ":motorized_wheelchair:", "aliases": "" }, "1f9bd": { "output": "1f9bd", "name": "manual wheelchair", "alpha_code": ":manual_wheelchair:", "aliases": "" }, "1f9be": { "output": "1f9be", "name": "mechanical arm", "alpha_code": ":mechanical_arm:", "aliases": "" }, "1f9bf": { "output": "1f9bf", "name": "mechanical leg", "alpha_code": ":mechanical_leg:", "aliases": "" }, "1f9c3": { "output": "1f9c3", "name": "beverage box", "alpha_code": ":beverage_box:", "aliases": "" }, "1f9c4": { "output": "1f9c4", "name": "garlic", "alpha_code": ":garlic:", "aliases": "" }, "1f9c5": { "output": "1f9c5", "name": "onion", "alpha_code": ":onion:", "aliases": "" }, "1f9c6": { "output": "1f9c6", "name": "falafel", "alpha_code": ":falafel:", "aliases": "" }, "1f9c7": { "output": "1f9c7", "name": "waffle", "alpha_code": ":waffle:", "aliases": "" }, "1f9c8": { "output": "1f9c8", "name": "butter", "alpha_code": ":butter:", "aliases": "" }, "1f9c9": { "output": "1f9c9", "name": "mate", "alpha_code": ":mate:", "aliases": "" }, "1f9ca": { "output": "1f9ca", "name": "ice cube", "alpha_code": ":ice_cube:", "aliases": "" }, "1f9cd": { "output": "1f9cd", "name": "person standing", "alpha_code": ":person_standing:", "aliases": "" }, "1f9ce": { "output": "1f9ce", "name": "person kneeling", "alpha_code": ":person_kneeling:", "aliases": "" }, "1f9cf": { "output": "1f9cf", "name": "deaf person", "alpha_code": ":deaf_person:", "aliases": "" }, "1fa70": { "output": "1fa70", "name": "ballet shoes", "alpha_code": ":ballet_shoes:", "aliases": "" }, "1fa71": { "output": "1fa71", "name": "one-piece swimsuit", "alpha_code": ":one_piece_swimsuit:", "aliases": "" }, "1fa72": { "output": "1fa72", "name": "briefs", "alpha_code": ":briefs:", "aliases": "" }, "1fa73": { "output": "1fa73", "name": "shorts", "alpha_code": ":shorts:", "aliases": "" }, "1fa78": { "output": "1fa78", "name": "drop of blood", "alpha_code": ":drop_of_blood:", "aliases": "" }, "1fa79": { "output": "1fa79", "name": "adhesive bandage", "alpha_code": ":adhesive_bandage:", "aliases": "" }, "1fa7a": { "output": "1fa7a", "name": "stethoscope", "alpha_code": ":stethoscope:", "aliases": "" }, "1fa80": { "output": "1fa80", "name": "yo-yo", "alpha_code": ":yo_yo:", "aliases": "" }, "1fa81": { "output": "1fa81", "name": "kite", "alpha_code": ":kite:", "aliases": "" }, "1fa82": { "output": "1fa82", "name": "parachute", "alpha_code": ":parachute:", "aliases": "" }, "1fa90": { "output": "1fa90", "name": "ringed planet", "alpha_code": ":ringed_planet:", "aliases": "" }, "1fa91": { "output": "1fa91", "name": "chair", "alpha_code": ":chair:", "aliases": "" }, "1fa92": { "output": "1fa92", "name": "razor", "alpha_code": ":razor:", "aliases": "" }, "1fa93": { "output": "1fa93", "name": "axe", "alpha_code": ":axe:", "aliases": "" }, "1fa94": { "output": "1fa94", "name": "diya lamp", "alpha_code": ":diya_lamp:", "aliases": "" }, "1fa95": { "output": "1fa95", "name": "banjo", "alpha_code": ":banjo:", "aliases": "" }, "1f46b-1f3fb": { "output": "1f46b-1f3fb", "name": "woman and man holding hands: light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone1:", "aliases": ":woman_and_man_holding_hands_light_skin_tone:" }, "1f46b-1f3fc": { "output": "1f46b-1f3fc", "name": "woman and man holding hands: medium-light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone2:", "aliases": ":woman_and_man_holding_hands_medium_light_skin_tone:" }, "1f46b-1f3fd": { "output": "1f46b-1f3fd", "name": "woman and man holding hands: medium skin tone", "alpha_code": ":woman_and_man_holding_hands_tone3:", "aliases": ":woman_and_man_holding_hands_medium_skin_tone:" }, "1f46b-1f3fe": { "output": "1f46b-1f3fe", "name": "woman and man holding hands: medium-dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone4:", "aliases": ":woman_and_man_holding_hands_medium_dark_skin_tone:" }, "1f46b-1f3ff": { "output": "1f46b-1f3ff", "name": "woman and man holding hands: dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone5:", "aliases": ":woman_and_man_holding_hands_dark_skin_tone:" }, "1f46c-1f3fb": { "output": "1f46c-1f3fb", "name": "men holding hands: light skin tone", "alpha_code": ":men_holding_hands_tone1:", "aliases": ":men_holding_hands_light_skin_tone:" }, "1f46c-1f3fc": { "output": "1f46c-1f3fc", "name": "men holding hands: medium-light skin tone", "alpha_code": ":men_holding_hands_tone2:", "aliases": ":men_holding_hands_medium_light_skin_tone:" }, "1f46c-1f3fd": { "output": "1f46c-1f3fd", "name": "men holding hands: medium skin tone", "alpha_code": ":men_holding_hands_tone3:", "aliases": ":men_holding_hands_medium_skin_tone:" }, "1f46c-1f3fe": { "output": "1f46c-1f3fe", "name": "men holding hands: medium-dark skin tone", "alpha_code": ":men_holding_hands_tone4:", "aliases": ":men_holding_hands_medium_dark_skin_tone:" }, "1f46c-1f3ff": { "output": "1f46c-1f3ff", "name": "men holding hands: dark skin tone", "alpha_code": ":men_holding_hands_tone5:", "aliases": ":men_holding_hands_dark_skin_tone:" }, "1f46d-1f3fb": { "output": "1f46d-1f3fb", "name": "women holding hands: light skin tone", "alpha_code": ":women_holding_hands_tone1:", "aliases": ":women_holding_hands_light_skin_tone:" }, "1f46d-1f3fc": { "output": "1f46d-1f3fc", "name": "women holding hands: medium-light skin tone", "alpha_code": ":women_holding_hands_tone2:", "aliases": ":women_holding_hands_medium_light_skin_tone:" }, "1f46d-1f3fd": { "output": "1f46d-1f3fd", "name": "women holding hands: medium skin tone", "alpha_code": ":women_holding_hands_tone3:", "aliases": ":women_holding_hands_medium_skin_tone:" }, "1f46d-1f3fe": { "output": "1f46d-1f3fe", "name": "women holding hands: medium-dark skin tone", "alpha_code": ":women_holding_hands_tone4:", "aliases": ":women_holding_hands_medium_dark_skin_tone:" }, "1f46d-1f3ff": { "output": "1f46d-1f3ff", "name": "women holding hands: dark skin tone", "alpha_code": ":women_holding_hands_tone5:", "aliases": ":women_holding_hands_dark_skin_tone:" }, "1f90f-1f3fb": { "output": "1f90f-1f3fb", "name": "pinching hand: light skin tone", "alpha_code": ":pinching_hand_tone1:", "aliases": ":pinching_hand_light_skin_tone:" }, "1f90f-1f3fc": { "output": "1f90f-1f3fc", "name": "pinching hand: medium-light skin tone", "alpha_code": ":pinching_hand_tone2:", "aliases": ":pinching_hand_medium_light_skin_tone:" }, "1f90f-1f3fd": { "output": "1f90f-1f3fd", "name": "pinching hand: medium skin tone", "alpha_code": ":pinching_hand_tone3:", "aliases": ":pinching_hand_medium_skin_tone:" }, "1f90f-1f3fe": { "output": "1f90f-1f3fe", "name": "pinching hand: medium-dark skin tone", "alpha_code": ":pinching_hand_tone4:", "aliases": ":pinching_hand_medium_dark_skin_tone:" }, "1f90f-1f3ff": { "output": "1f90f-1f3ff", "name": "pinching hand: dark skin tone", "alpha_code": ":pinching_hand_tone5:", "aliases": ":pinching_hand_dark_skin_tone:" }, "1f9bb-1f3fb": { "output": "1f9bb-1f3fb", "name": "ear with hearing aid: light skin tone", "alpha_code": ":ear_with_hearing_aid_tone1:", "aliases": ":ear_with_hearing_aid_light_skin_tone:" }, "1f9bb-1f3fc": { "output": "1f9bb-1f3fc", "name": "ear with hearing aid: medium-light skin tone", "alpha_code": ":ear_with_hearing_aid_tone2:", "aliases": ":ear_with_hearing_aid_medium_light_skin_tone:" }, "1f9bb-1f3fd": { "output": "1f9bb-1f3fd", "name": "ear with hearing aid: medium skin tone", "alpha_code": ":ear_with_hearing_aid_tone3:", "aliases": ":ear_with_hearing_aid_medium_skin_tone:" }, "1f9bb-1f3fe": { "output": "1f9bb-1f3fe", "name": "ear with hearing aid: medium-dark skin tone", "alpha_code": ":ear_with_hearing_aid_tone4:", "aliases": ":ear_with_hearing_aid_medium_dark_skin_tone:" }, "1f9bb-1f3ff": { "output": "1f9bb-1f3ff", "name": "ear with hearing aid: dark skin tone", "alpha_code": ":ear_with_hearing_aid_tone5:", "aliases": ":ear_with_hearing_aid_dark_skin_tone:" }, "1f9cd-1f3fb": { "output": "1f9cd-1f3fb", "name": "person standing: light skin tone", "alpha_code": ":person_standing_tone1:", "aliases": ":person_standing_light_skin_tone:" }, "1f9cd-1f3fc": { "output": "1f9cd-1f3fc", "name": "person standing: medium-light skin tone", "alpha_code": ":person_standing_tone2:", "aliases": ":person_standing_medium_light_skin_tone:" }, "1f9cd-1f3fd": { "output": "1f9cd-1f3fd", "name": "person standing: medium skin tone", "alpha_code": ":person_standing_tone3:", "aliases": ":person_standing_medium_skin_tone:" }, "1f9cd-1f3fe": { "output": "1f9cd-1f3fe", "name": "person standing: medium-dark skin tone", "alpha_code": ":person_standing_tone4:", "aliases": ":person_standing_medium_dark_skin_tone:" }, "1f9cd-1f3ff": { "output": "1f9cd-1f3ff", "name": "person standing: dark skin tone", "alpha_code": ":person_standing_tone5:", "aliases": ":person_standing_dark_skin_tone:" }, "1f9ce-1f3fb": { "output": "1f9ce-1f3fb", "name": "person kneeling: light skin tone", "alpha_code": ":person_kneeling_tone1:", "aliases": ":person_kneeling_light_skin_tone:" }, "1f9ce-1f3fc": { "output": "1f9ce-1f3fc", "name": "person kneeling: medium-light skin tone", "alpha_code": ":person_kneeling_tone2:", "aliases": ":person_kneeling_medium_light_skin_tone:" }, "1f9ce-1f3fd": { "output": "1f9ce-1f3fd", "name": "person kneeling: medium skin tone", "alpha_code": ":person_kneeling_tone3:", "aliases": ":person_kneeling_medium_skin_tone:" }, "1f9ce-1f3fe": { "output": "1f9ce-1f3fe", "name": "person kneeling: medium-dark skin tone", "alpha_code": ":person_kneeling_tone4:", "aliases": ":person_kneeling_medium_dark_skin_tone:" }, "1f9ce-1f3ff": { "output": "1f9ce-1f3ff", "name": "person kneeling: dark skin tone", "alpha_code": ":person_kneeling_tone5:", "aliases": ":person_kneeling_dark_skin_tone:" }, "1f9cf-1f3fb": { "output": "1f9cf-1f3fb", "name": "deaf person: light skin tone", "alpha_code": ":deaf_person_tone1:", "aliases": ":deaf_person_light_skin_tone:" }, "1f9cf-1f3fc": { "output": "1f9cf-1f3fc", "name": "deaf person: medium-light skin tone", "alpha_code": ":deaf_person_tone2:", "aliases": ":deaf_person_medium_light_skin_tone:" }, "1f9cf-1f3fd": { "output": "1f9cf-1f3fd", "name": "deaf person: medium skin tone", "alpha_code": ":deaf_person_tone3:", "aliases": ":deaf_person_medium_skin_tone:" }, "1f9cf-1f3fe": { "output": "1f9cf-1f3fe", "name": "deaf person: medium-dark skin tone", "alpha_code": ":deaf_person_tone4:", "aliases": ":deaf_person_medium_dark_skin_tone:" }, "1f9cf-1f3ff": { "output": "1f9cf-1f3ff", "name": "deaf person: dark skin tone", "alpha_code": ":deaf_person_tone5:", "aliases": ":deaf_person_dark_skin_tone:" }, "1f468-1f3fc-1f91d-1f468-1f3fb": { "output": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb", "name": "men holding hands: medium-light skin tone, light skin tone", "alpha_code": ":men_holding_hands_tone2_tone1:", "aliases": ":men_holding_hands_medium_light_skin_tone_light_skin_tone:" }, "1f468-1f3fd-1f91d-1f468-1f3fb": { "output": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb", "name": "men holding hands: medium skin tone, light skin tone", "alpha_code": ":men_holding_hands_tone3_tone1:", "aliases": ":men_holding_hands_medium_skin_tone_light_skin_tone:" }, "1f468-1f3fd-1f91d-1f468-1f3fc": { "output": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc", "name": "men holding hands: medium skin tone, medium-light skin tone", "alpha_code": ":men_holding_hands_tone3_tone2:", "aliases": ":men_holding_hands_medium_skin_tone_medium_light_skin_tone:" }, "1f468-1f3fe-1f91d-1f468-1f3fb": { "output": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb", "name": "men holding hands: medium-dark skin tone, light skin tone", "alpha_code": ":men_holding_hands_tone4_tone1:", "aliases": ":men_holding_hands_medium_dark_skin_tone_light_skin_tone:" }, "1f468-1f3fe-1f91d-1f468-1f3fd": { "output": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd", "name": "men holding hands: medium-dark skin tone, medium skin tone", "alpha_code": ":men_holding_hands_tone4_tone3:", "aliases": ":men_holding_hands_medium_dark_skin_tone_medium_skin_tone:" }, "1f468-1f3ff-1f91d-1f468-1f3fb": { "output": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb", "name": "men holding hands: dark skin tone, light skin tone", "alpha_code": ":men_holding_hands_tone5_tone1:", "aliases": ":men_holding_hands_dark_skin_tone_light_skin_tone:" }, "1f468-1f3ff-1f91d-1f468-1f3fc": { "output": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc", "name": "men holding hands: dark skin tone, medium-light skin tone", "alpha_code": ":men_holding_hands_tone5_tone2:", "aliases": ":men_holding_hands_dark_skin_tone_medium_light_skin_tone:" }, "1f468-1f3ff-1f91d-1f468-1f3fd": { "output": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd", "name": "men holding hands: dark skin tone, medium skin tone", "alpha_code": ":men_holding_hands_tone5_tone3:", "aliases": ":men_holding_hands_dark_skin_tone_medium_skin_tone:" }, "1f468-1f3ff-1f91d-1f468-1f3fe": { "output": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe", "name": "men holding hands: dark skin tone, medium-dark skin tone", "alpha_code": ":men_holding_hands_tone5_tone4:", "aliases": ":men_holding_hands_dark_skin_tone_medium_dark_skin_tone:" }, "1f469-1f3fb-1f91d-1f468-1f3fd": { "output": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd", "name": "woman and man holding hands: light skin tone, medium skin tone", "alpha_code": ":woman_and_man_holding_hands_tone1_tone3:", "aliases": ":woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:" }, "1f469-1f3fb-1f91d-1f468-1f3ff": { "output": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff", "name": "woman and man holding hands: light skin tone, dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone1_tone5:", "aliases": ":woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:" }, "1f469-1f3fc-1f91d-1f469-1f3fb": { "output": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb", "name": "women holding hands: medium-light skin tone, light skin tone", "alpha_code": ":women_holding_hands_tone2_tone1:", "aliases": ":women_holding_hands_medium_light_skin_tone_light_skin_tone:" }, "1f469-1f3fd-1f91d-1f468-1f3ff": { "output": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff", "name": "woman and man holding hands: medium skin tone, dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone3_tone5:", "aliases": ":woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:" }, "1f469-1f3fd-1f91d-1f469-1f3fb": { "output": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb", "name": "women holding hands: medium skin tone, light skin tone", "alpha_code": ":women_holding_hands_tone3_tone1:", "aliases": ":women_holding_hands_medium_skin_tone_light_skin_tone:" }, "1f469-1f3fd-1f91d-1f469-1f3fc": { "output": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc", "name": "women holding hands: medium skin tone, medium-light skin tone", "alpha_code": ":women_holding_hands_tone3_tone2:", "aliases": ":women_holding_hands_medium_skin_tone_medium_light_skin_tone:" }, "1f469-1f3fe-1f91d-1f469-1f3fb": { "output": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb", "name": "women holding hands: medium-dark skin tone, light skin tone", "alpha_code": ":women_holding_hands_tone4_tone1:", "aliases": ":women_holding_hands_medium_dark_skin_tone_light_skin_tone:" }, "1f469-1f3fe-1f91d-1f469-1f3fd": { "output": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd", "name": "women holding hands: medium-dark skin tone, medium skin tone", "alpha_code": ":women_holding_hands_tone4_tone3:", "aliases": ":women_holding_hands_medium_dark_skin_tone_medium_skin_tone:" }, "1f469-1f3ff-1f91d-1f469-1f3fb": { "output": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb", "name": "women holding hands: dark skin tone, light skin tone", "alpha_code": ":women_holding_hands_tone5_tone1:", "aliases": ":women_holding_hands_dark_skin_tone_light_skin_tone:" }, "1f469-1f3ff-1f91d-1f469-1f3fc": { "output": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc", "name": "women holding hands: dark skin tone, medium-light skin tone", "alpha_code": ":women_holding_hands_tone5_tone2:", "aliases": ":women_holding_hands_dark_skin_tone_medium_light_skin_tone:" }, "1f469-1f3ff-1f91d-1f469-1f3fd": { "output": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd", "name": "women holding hands: dark skin tone, medium skin tone", "alpha_code": ":women_holding_hands_tone5_tone3:", "aliases": ":women_holding_hands_dark_skin_tone_medium_skin_tone:" }, "1f469-1f3ff-1f91d-1f469-1f3fe": { "output": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe", "name": "women holding hands: dark skin tone, medium-dark skin tone", "alpha_code": ":women_holding_hands_tone5_tone4:", "aliases": ":women_holding_hands_dark_skin_tone_medium_dark_skin_tone:" }, "1f9d1-1f91d-1f9d1": { "output": "1f9d1-200d-1f91d-200d-1f9d1", "name": "people holding hands", "alpha_code": ":people_holding_hands:", "aliases": "" }, "1f9d1-1f3fb-1f91d-1f9d1-1f3fb": { "output": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb", "name": "people holding hands: light skin tone", "alpha_code": ":people_holding_hands_tone1:", "aliases": ":people_holding_hands_light_skin_tone:" }, "1f9d1-1f3fc-1f91d-1f9d1-1f3fb": { "output": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb", "name": "people holding hands: medium-light skin tone, light skin tone", "alpha_code": ":people_holding_hands_tone2_tone1:", "aliases": ":people_holding_hands_medium_light_skin_tone_light_skin_tone:" }, "1f9d1-1f3fc-1f91d-1f9d1-1f3fc": { "output": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc", "name": "people holding hands: medium-light skin tone", "alpha_code": ":people_holding_hands_tone2:", "aliases": ":people_holding_hands_medium_light_skin_tone:" }, "1f9d1-1f3fd-1f91d-1f9d1-1f3fb": { "output": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb", "name": "people holding hands: medium skin tone, light skin tone", "alpha_code": ":people_holding_hands_tone3_tone1:", "aliases": ":people_holding_hands_medium_skin_tone_light_skin_tone:" }, "1f9d1-1f3fd-1f91d-1f9d1-1f3fc": { "output": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc", "name": "people holding hands: medium skin tone, medium-light skin tone", "alpha_code": ":people_holding_hands_tone3_tone2:", "aliases": ":people_holding_hands_medium_skin_tone_medium_light_skin_tone:" }, "1f9d1-1f3fd-1f91d-1f9d1-1f3fd": { "output": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd", "name": "people holding hands: medium skin tone", "alpha_code": ":people_holding_hands_tone3:", "aliases": ":people_holding_hands_medium_skin_tone:" }, "1f9d1-1f3fe-1f91d-1f9d1-1f3fb": { "output": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb", "name": "people holding hands: medium-dark skin tone, light skin tone", "alpha_code": ":people_holding_hands_tone4_tone1:", "aliases": ":people_holding_hands_medium_dark_skin_tone_light_skin_tone:" }, "1f9d1-1f3fe-1f91d-1f9d1-1f3fd": { "output": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd", "name": "people holding hands: medium-dark skin tone, medium skin tone", "alpha_code": ":people_holding_hands_tone4_tone3:", "aliases": ":people_holding_hands_medium_dark_skin_tone_medium_skin_tone:" }, "1f9d1-1f3fe-1f91d-1f9d1-1f3fe": { "output": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe", "name": "people holding hands: medium-dark skin tone", "alpha_code": ":people_holding_hands_tone4:", "aliases": ":people_holding_hands_medium_dark_skin_tone:" }, "1f9d1-1f3ff-1f91d-1f9d1-1f3fb": { "output": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb", "name": "people holding hands: dark skin tone, light skin tone", "alpha_code": ":people_holding_hands_tone5_tone1:", "aliases": ":people_holding_hands_dark_skin_tone_light_skin_tone:" }, "1f9d1-1f3ff-1f91d-1f9d1-1f3fc": { "output": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc", "name": "people holding hands: dark skin tone, medium-light skin tone", "alpha_code": ":people_holding_hands_tone5_tone2:", "aliases": ":people_holding_hands_dark_skin_tone_medium_light_skin_tone:" }, "1f9d1-1f3ff-1f91d-1f9d1-1f3fd": { "output": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd", "name": "people holding hands: dark skin tone, medium skin tone", "alpha_code": ":people_holding_hands_tone5_tone3:", "aliases": ":people_holding_hands_dark_skin_tone_medium_skin_tone:" }, "1f9d1-1f3ff-1f91d-1f9d1-1f3fe": { "output": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe", "name": "people holding hands: dark skin tone, medium-dark skin tone", "alpha_code": ":people_holding_hands_tone5_tone4:", "aliases": ":people_holding_hands_dark_skin_tone_medium_dark_skin_tone:" }, "1f9d1-1f3ff-1f91d-1f9d1-1f3ff": { "output": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff", "name": "people holding hands: dark skin tone", "alpha_code": ":people_holding_hands_tone5:", "aliases": ":people_holding_hands_dark_skin_tone:" }, "1f468-1f9af": { "output": "1f468-200d-1f9af", "name": "man with probing cane", "alpha_code": ":man_with_probing_cane:", "aliases": "" }, "1f468-1f9bc": { "output": "1f468-200d-1f9bc", "name": "man in motorized wheelchair", "alpha_code": ":man_in_motorized_wheelchair:", "aliases": "" }, "1f468-1f9bd": { "output": "1f468-200d-1f9bd", "name": "man in manual wheelchair", "alpha_code": ":man_in_manual_wheelchair:", "aliases": "" }, "1f468-1f3fb-1f9af": { "output": "1f468-1f3fb-200d-1f9af", "name": "man with probing cane: light skin tone", "alpha_code": ":man_with_probing_cane_tone1:", "aliases": ":man_with_probing_cane_light_skin_tone:" }, "1f468-1f3fb-1f9bc": { "output": "1f468-1f3fb-200d-1f9bc", "name": "man in motorized wheelchair: light skin tone", "alpha_code": ":man_in_motorized_wheelchair_tone1:", "aliases": ":man_in_motorized_wheelchair_light_skin_tone:" }, "1f468-1f3fb-1f9bd": { "output": "1f468-1f3fb-200d-1f9bd", "name": "man in manual wheelchair: light skin tone", "alpha_code": ":man_in_manual_wheelchair_tone1:", "aliases": ":man_in_manual_wheelchair_light_skin_tone:" }, "1f468-1f3fc-1f9af": { "output": "1f468-1f3fc-200d-1f9af", "name": "man with probing cane: medium-light skin tone", "alpha_code": ":man_with_probing_cane_tone2:", "aliases": ":man_with_probing_cane_medium_light_skin_tone:" }, "1f468-1f3fc-1f9bc": { "output": "1f468-1f3fc-200d-1f9bc", "name": "man in motorized wheelchair: medium-light skin tone", "alpha_code": ":man_in_motorized_wheelchair_tone2:", "aliases": ":man_in_motorized_wheelchair_medium_light_skin_tone:" }, "1f468-1f3fc-1f9bd": { "output": "1f468-1f3fc-200d-1f9bd", "name": "man in manual wheelchair: medium-light skin tone", "alpha_code": ":man_in_manual_wheelchair_tone2:", "aliases": ":man_in_manual_wheelchair_medium_light_skin_tone:" }, "1f468-1f3fd-1f9af": { "output": "1f468-1f3fd-200d-1f9af", "name": "man with probing cane: medium skin tone", "alpha_code": ":man_with_probing_cane_tone3:", "aliases": ":man_with_probing_cane_medium_skin_tone:" }, "1f468-1f3fd-1f9bc": { "output": "1f468-1f3fd-200d-1f9bc", "name": "man in motorized wheelchair: medium skin tone", "alpha_code": ":man_in_motorized_wheelchair_tone3:", "aliases": ":man_in_motorized_wheelchair_medium_skin_tone:" }, "1f468-1f3fd-1f9bd": { "output": "1f468-1f3fd-200d-1f9bd", "name": "man in manual wheelchair: medium skin tone", "alpha_code": ":man_in_manual_wheelchair_tone3:", "aliases": ":man_in_manual_wheelchair_medium_skin_tone:" }, "1f468-1f3fe-1f9af": { "output": "1f468-1f3fe-200d-1f9af", "name": "man with probing cane: medium-dark skin tone", "alpha_code": ":man_with_probing_cane_tone4:", "aliases": ":man_with_probing_cane_medium_dark_skin_tone:" }, "1f468-1f3fe-1f9bc": { "output": "1f468-1f3fe-200d-1f9bc", "name": "man in motorized wheelchair: medium-dark skin tone", "alpha_code": ":man_in_motorized_wheelchair_tone4:", "aliases": ":man_in_motorized_wheelchair_medium_dark_skin_tone:" }, "1f468-1f3fe-1f9bd": { "output": "1f468-1f3fe-200d-1f9bd", "name": "man in manual wheelchair: medium-dark skin tone", "alpha_code": ":man_in_manual_wheelchair_tone4:", "aliases": ":man_in_manual_wheelchair_medium_dark_skin_tone:" }, "1f468-1f3ff-1f9af": { "output": "1f468-1f3ff-200d-1f9af", "name": "man with probing cane: dark skin tone", "alpha_code": ":man_with_probing_cane_tone5:", "aliases": ":man_with_probing_cane_dark_skin_tone:" }, "1f468-1f3ff-1f9bc": { "output": "1f468-1f3ff-200d-1f9bc", "name": "man in motorized wheelchair: dark skin tone", "alpha_code": ":man_in_motorized_wheelchair_tone5:", "aliases": ":man_in_motorized_wheelchair_dark_skin_tone:" }, "1f468-1f3ff-1f9bd": { "output": "1f468-1f3ff-200d-1f9bd", "name": "man in manual wheelchair: dark skin tone", "alpha_code": ":man_in_manual_wheelchair_tone5:", "aliases": ":man_in_manual_wheelchair_dark_skin_tone:" }, "1f469-1f9af": { "output": "1f469-200d-1f9af", "name": "woman with probing cane", "alpha_code": ":woman_with_probing_cane:", "aliases": "" }, "1f469-1f9bc": { "output": "1f469-200d-1f9bc", "name": "woman in motorized wheelchair", "alpha_code": ":woman_in_motorized_wheelchair:", "aliases": "" }, "1f469-1f9bd": { "output": "1f469-200d-1f9bd", "name": "woman in manual wheelchair", "alpha_code": ":woman_in_manual_wheelchair:", "aliases": "" }, "1f469-1f3fb-1f9af": { "output": "1f469-1f3fb-200d-1f9af", "name": "woman with probing cane: light skin tone", "alpha_code": ":woman_with_probing_cane_tone1:", "aliases": ":woman_with_probing_cane_light_skin_tone:" }, "1f469-1f3fb-1f9bc": { "output": "1f469-1f3fb-200d-1f9bc", "name": "woman in motorized wheelchair: light skin tone", "alpha_code": ":woman_in_motorized_wheelchair_tone1:", "aliases": ":woman_in_motorized_wheelchair_light_skin_tone:" }, "1f469-1f3fb-1f9bd": { "output": "1f469-1f3fb-200d-1f9bd", "name": "woman in manual wheelchair: light skin tone", "alpha_code": ":woman_in_manual_wheelchair_tone1:", "aliases": ":woman_in_manual_wheelchair_light_skin_tone:" }, "1f469-1f3fc-1f9af": { "output": "1f469-1f3fc-200d-1f9af", "name": "woman with probing cane: medium-light skin tone", "alpha_code": ":woman_with_probing_cane_tone2:", "aliases": ":woman_with_probing_cane_medium_light_skin_tone:" }, "1f469-1f3fc-1f9bc": { "output": "1f469-1f3fc-200d-1f9bc", "name": "woman in motorized wheelchair: medium-light skin tone", "alpha_code": ":woman_in_motorized_wheelchair_tone2:", "aliases": ":woman_in_motorized_wheelchair_medium_light_skin_tone:" }, "1f469-1f3fc-1f9bd": { "output": "1f469-1f3fc-200d-1f9bd", "name": "woman in manual wheelchair: medium-light skin tone", "alpha_code": ":woman_in_manual_wheelchair_tone2:", "aliases": ":woman_in_manual_wheelchair_medium_light_skin_tone:" }, "1f469-1f3fd-1f9af": { "output": "1f469-1f3fd-200d-1f9af", "name": "woman with probing cane: medium skin tone", "alpha_code": ":woman_with_probing_cane_tone3:", "aliases": ":woman_with_probing_cane_medium_skin_tone:" }, "1f469-1f3fd-1f9bc": { "output": "1f469-1f3fd-200d-1f9bc", "name": "woman in motorized wheelchair: medium skin tone", "alpha_code": ":woman_in_motorized_wheelchair_tone3:", "aliases": ":woman_in_motorized_wheelchair_medium_skin_tone:" }, "1f469-1f3fd-1f9bd": { "output": "1f469-1f3fd-200d-1f9bd", "name": "woman in manual wheelchair: medium skin tone", "alpha_code": ":woman_in_manual_wheelchair_tone3:", "aliases": ":woman_in_manual_wheelchair_medium_skin_tone:" }, "1f469-1f3fe-1f9af": { "output": "1f469-1f3fe-200d-1f9af", "name": "woman with probing cane: medium-dark skin tone", "alpha_code": ":woman_with_probing_cane_tone4:", "aliases": ":woman_with_probing_cane_medium_dark_skin_tone:" }, "1f469-1f3fe-1f9bc": { "output": "1f469-1f3fe-200d-1f9bc", "name": "woman in motorized wheelchair: medium-dark skin tone", "alpha_code": ":woman_in_motorized_wheelchair_tone4:", "aliases": ":woman_in_motorized_wheelchair_medium_dark_skin_tone:" }, "1f469-1f3fe-1f9bd": { "output": "1f469-1f3fe-200d-1f9bd", "name": "woman in manual wheelchair: medium-dark skin tone", "alpha_code": ":woman_in_manual_wheelchair_tone4:", "aliases": ":woman_in_manual_wheelchair_medium_dark_skin_tone:" }, "1f469-1f3ff-1f9af": { "output": "1f469-1f3ff-200d-1f9af", "name": "woman with probing cane: dark skin tone", "alpha_code": ":woman_with_probing_cane_tone5:", "aliases": ":woman_with_probing_cane_dark_skin_tone:" }, "1f469-1f3ff-1f9bc": { "output": "1f469-1f3ff-200d-1f9bc", "name": "woman in motorized wheelchair: dark skin tone", "alpha_code": ":woman_in_motorized_wheelchair_tone5:", "aliases": ":woman_in_motorized_wheelchair_dark_skin_tone:" }, "1f469-1f3ff-1f9bd": { "output": "1f469-1f3ff-200d-1f9bd", "name": "woman in manual wheelchair: dark skin tone", "alpha_code": ":woman_in_manual_wheelchair_tone5:", "aliases": ":woman_in_manual_wheelchair_dark_skin_tone:" }, "1f9cd-2640": { "output": "1f9cd-200d-2640-fe0f", "name": "woman standing", "alpha_code": ":woman_standing:", "aliases": "" }, "1f9cd-2642": { "output": "1f9cd-200d-2642-fe0f", "name": "man standing", "alpha_code": ":man_standing:", "aliases": "" }, "1f9cd-1f3fb-2640": { "output": "1f9cd-1f3fb-200d-2640-fe0f", "name": "woman standing: light skin tone", "alpha_code": ":woman_standing_tone1:", "aliases": ":woman_standing_light_skin_tone:" }, "1f9cd-1f3fb-2642": { "output": "1f9cd-1f3fb-200d-2642-fe0f", "name": "man standing: light skin tone", "alpha_code": ":man_standing_tone1:", "aliases": ":man_standing_light_skin_tone:" }, "1f9cd-1f3fc-2640": { "output": "1f9cd-1f3fc-200d-2640-fe0f", "name": "woman standing: medium-light skin tone", "alpha_code": ":woman_standing_tone2:", "aliases": ":woman_standing_medium_light_skin_tone:" }, "1f9cd-1f3fc-2642": { "output": "1f9cd-1f3fc-200d-2642-fe0f", "name": "man standing: medium-light skin tone", "alpha_code": ":man_standing_tone2:", "aliases": ":man_standing_medium_light_skin_tone:" }, "1f9cd-1f3fd-2640": { "output": "1f9cd-1f3fd-200d-2640-fe0f", "name": "woman standing: medium skin tone", "alpha_code": ":woman_standing_tone3:", "aliases": ":woman_standing_medium_skin_tone:" }, "1f9cd-1f3fd-2642": { "output": "1f9cd-1f3fd-200d-2642-fe0f", "name": "man standing: medium skin tone", "alpha_code": ":man_standing_tone3:", "aliases": ":man_standing_medium_skin_tone:" }, "1f9cd-1f3fe-2640": { "output": "1f9cd-1f3fe-200d-2640-fe0f", "name": "woman standing: medium-dark skin tone", "alpha_code": ":woman_standing_tone4:", "aliases": ":woman_standing_medium_dark_skin_tone:" }, "1f9cd-1f3fe-2642": { "output": "1f9cd-1f3fe-200d-2642-fe0f", "name": "man standing: medium-dark skin tone", "alpha_code": ":man_standing_tone4:", "aliases": ":man_standing_medium_dark_skin_tone:" }, "1f9cd-1f3ff-2640": { "output": "1f9cd-1f3ff-200d-2640-fe0f", "name": "woman standing: dark skin tone", "alpha_code": ":woman_standing_tone5:", "aliases": ":woman_standing_dark_skin_tone:" }, "1f9cd-1f3ff-2642": { "output": "1f9cd-1f3ff-200d-2642-fe0f", "name": "man standing: dark skin tone", "alpha_code": ":man_standing_tone5:", "aliases": ":man_standing_dark_skin_tone:" }, "1f9ce-2640": { "output": "1f9ce-200d-2640-fe0f", "name": "woman kneeling", "alpha_code": ":woman_kneeling:", "aliases": "" }, "1f9ce-2642": { "output": "1f9ce-200d-2642-fe0f", "name": "man kneeling", "alpha_code": ":man_kneeling:", "aliases": "" }, "1f9ce-1f3fb-2640": { "output": "1f9ce-1f3fb-200d-2640-fe0f", "name": "woman kneeling: light skin tone", "alpha_code": ":woman_kneeling_tone1:", "aliases": ":woman_kneeling_light_skin_tone:" }, "1f9ce-1f3fb-2642": { "output": "1f9ce-1f3fb-200d-2642-fe0f", "name": "man kneeling: light skin tone", "alpha_code": ":man_kneeling_tone1:", "aliases": ":man_kneeling_light_skin_tone:" }, "1f9ce-1f3fc-2640": { "output": "1f9ce-1f3fc-200d-2640-fe0f", "name": "woman kneeling: medium-light skin tone", "alpha_code": ":woman_kneeling_tone2:", "aliases": ":woman_kneeling_medium_light_skin_tone:" }, "1f9ce-1f3fc-2642": { "output": "1f9ce-1f3fc-200d-2642-fe0f", "name": "man kneeling: medium-light skin tone", "alpha_code": ":man_kneeling_tone2:", "aliases": ":man_kneeling_medium_light_skin_tone:" }, "1f9ce-1f3fd-2640": { "output": "1f9ce-1f3fd-200d-2640-fe0f", "name": "woman kneeling: medium skin tone", "alpha_code": ":woman_kneeling_tone3:", "aliases": ":woman_kneeling_medium_skin_tone:" }, "1f9ce-1f3fd-2642": { "output": "1f9ce-1f3fd-200d-2642-fe0f", "name": "man kneeling: medium skin tone", "alpha_code": ":man_kneeling_tone3:", "aliases": ":man_kneeling_medium_skin_tone:" }, "1f9ce-1f3fe-2640": { "output": "1f9ce-1f3fe-200d-2640-fe0f", "name": "woman kneeling: medium-dark skin tone", "alpha_code": ":woman_kneeling_tone4:", "aliases": ":woman_kneeling_medium_dark_skin_tone:" }, "1f9ce-1f3fe-2642": { "output": "1f9ce-1f3fe-200d-2642-fe0f", "name": "man kneeling: medium-dark skin tone", "alpha_code": ":man_kneeling_tone4:", "aliases": ":man_kneeling_medium_dark_skin_tone:" }, "1f9ce-1f3ff-2640": { "output": "1f9ce-1f3ff-200d-2640-fe0f", "name": "woman kneeling: dark skin tone", "alpha_code": ":woman_kneeling_tone5:", "aliases": ":woman_kneeling_dark_skin_tone:" }, "1f9ce-1f3ff-2642": { "output": "1f9ce-1f3ff-200d-2642-fe0f", "name": "man kneeling: dark skin tone", "alpha_code": ":man_kneeling_tone5:", "aliases": ":man_kneeling_dark_skin_tone:" }, "1f9cf-2640": { "output": "1f9cf-200d-2640-fe0f", "name": "deaf woman", "alpha_code": ":deaf_woman:", "aliases": "" }, "1f9cf-2642": { "output": "1f9cf-200d-2642-fe0f", "name": "deaf man", "alpha_code": ":deaf_man:", "aliases": "" }, "1f9cf-1f3fb-2640": { "output": "1f9cf-1f3fb-200d-2640-fe0f", "name": "deaf woman: light skin tone", "alpha_code": ":deaf_woman_tone1:", "aliases": ":deaf_woman_light_skin_tone:" }, "1f9cf-1f3fb-2642": { "output": "1f9cf-1f3fb-200d-2642-fe0f", "name": "deaf man: light skin tone", "alpha_code": ":deaf_man_tone1:", "aliases": ":deaf_man_light_skin_tone:" }, "1f9cf-1f3fc-2640": { "output": "1f9cf-1f3fc-200d-2640-fe0f", "name": "deaf woman: medium-light skin tone", "alpha_code": ":deaf_woman_tone2:", "aliases": ":deaf_woman_medium_light_skin_tone:" }, "1f9cf-1f3fc-2642": { "output": "1f9cf-1f3fc-200d-2642-fe0f", "name": "deaf man: medium-light skin tone", "alpha_code": ":deaf_man_tone2:", "aliases": ":deaf_man_medium_light_skin_tone:" }, "1f9cf-1f3fd-2640": { "output": "1f9cf-1f3fd-200d-2640-fe0f", "name": "deaf woman: medium skin tone", "alpha_code": ":deaf_woman_tone3:", "aliases": ":deaf_woman_medium_skin_tone:" }, "1f9cf-1f3fd-2642": { "output": "1f9cf-1f3fd-200d-2642-fe0f", "name": "deaf man: medium skin tone", "alpha_code": ":deaf_man_tone3:", "aliases": ":deaf_man_medium_skin_tone:" }, "1f9cf-1f3fe-2640": { "output": "1f9cf-1f3fe-200d-2640-fe0f", "name": "deaf woman: medium-dark skin tone", "alpha_code": ":deaf_woman_tone4:", "aliases": ":deaf_woman_medium_dark_skin_tone:" }, "1f9cf-1f3fe-2642": { "output": "1f9cf-1f3fe-200d-2642-fe0f", "name": "deaf man: medium-dark skin tone", "alpha_code": ":deaf_man_tone4:", "aliases": ":deaf_man_medium_dark_skin_tone:" }, "1f9cf-1f3ff-2640": { "output": "1f9cf-1f3ff-200d-2640-fe0f", "name": "deaf woman: dark skin tone", "alpha_code": ":deaf_woman_tone5:", "aliases": ":deaf_woman_dark_skin_tone:" }, "1f9cf-1f3ff-2642": { "output": "1f9cf-1f3ff-200d-2642-fe0f", "name": "deaf man: dark skin tone", "alpha_code": ":deaf_man_tone5:", "aliases": ":deaf_man_dark_skin_tone:" }, "1f415-1f9ba": { "output": "1f415-200d-1f9ba", "name": "service dog", "alpha_code": ":service_dog:", "aliases": "" }, "1f9d1-1f3fe-1f91d-1f9d1-1f3fc": { "output": "1f9d1-1f3fe-1f91d-1f9d1-1f3fc", "name": "people holding hands: medium dark skin tone, medium light skin tone", "alpha_code": ":people_holding_hands_tone4_tone2:", "aliases": ":people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" }, "1f469-1f3ff-1f91d-1f468-1f3fe": { "output": "1f469-1f3ff-1f91d-1f468-1f3fe", "name": "woman and man holding hands: dark skin tone, medium dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone5_tone4:", "aliases": ":woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:" }, "1f469-1f3ff-1f91d-1f468-1f3fd": { "output": "1f469-1f3ff-1f91d-1f468-1f3fd", "name": "woman and man holding hands: dark skin tone, medium skin tone", "alpha_code": ":woman_and_man_holding_hands_tone5_tone3:", "aliases": ":woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:" }, "1f469-1f3ff-1f91d-1f468-1f3fc": { "output": "1f469-1f3ff-1f91d-1f468-1f3fc", "name": "woman and man holding hands: dark skin tone, medium light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone5_tone2:", "aliases": ":woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:" }, "1f469-1f3ff-1f91d-1f468-1f3fb": { "output": "1f469-1f3ff-1f91d-1f468-1f3fb", "name": "woman and man holding hands: dark skin tone, light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone5_tone1:", "aliases": ":woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:" }, "1f469-1f3fe-1f91d-1f468-1f3ff": { "output": "1f469-1f3fe-1f91d-1f468-1f3ff", "name": "woman and man holding hands: medium dark skin tone, dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone4_tone5:", "aliases": ":woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:" }, "1f469-1f3fe-1f91d-1f468-1f3fd": { "output": "1f469-1f3fe-1f91d-1f468-1f3fd", "name": "woman and man holding hands: medium dark skin tone, medium skin tone", "alpha_code": ":woman_and_man_holding_hands_tone4_tone3:", "aliases": ":woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:" }, "1f469-1f3fe-1f91d-1f468-1f3fc": { "output": "1f469-1f3fe-1f91d-1f468-1f3fc", "name": "woman and man holding hands: medium dark skin tone, medium light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone4_tone2:", "aliases": ":woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" }, "1f469-1f3fe-1f91d-1f468-1f3fb": { "output": "1f469-1f3fe-1f91d-1f468-1f3fb", "name": "woman and man holding hands: medium dark skin tone, light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone4_tone1:", "aliases": ":woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:" }, "1f469-1f3fd-1f91d-1f468-1f3fe": { "output": "1f469-1f3fd-1f91d-1f468-1f3fe", "name": "woman and man holding hands: medium skin tone, medium dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone3_tone4:", "aliases": ":woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:" }, "1f469-1f3fd-1f91d-1f468-1f3fc": { "output": "1f469-1f3fd-1f91d-1f468-1f3fc", "name": "woman and man holding hands: medium skin tone, medium light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone3_tone2:", "aliases": ":woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:" }, "1f469-1f3fd-1f91d-1f468-1f3fb": { "output": "1f469-1f3fd-1f91d-1f468-1f3fb", "name": "woman and man holding hands: medium skin tone, light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone3_tone1:", "aliases": ":woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:" }, "1f469-1f3fc-1f91d-1f468-1f3ff": { "output": "1f469-1f3fc-1f91d-1f468-1f3ff", "name": "woman and man holding hands: medium light skin tone, dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone2_tone5:", "aliases": ":woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:" }, "1f469-1f3fc-1f91d-1f468-1f3fe": { "output": "1f469-1f3fc-1f91d-1f468-1f3fe", "name": "woman and man holding hands: medium light skin tone, medium dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone2_tone4:", "aliases": ":woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:" }, "1f469-1f3fc-1f91d-1f468-1f3fd": { "output": "1f469-1f3fc-1f91d-1f468-1f3fd", "name": "woman and man holding hands: medium light skin tone, medium skin tone", "alpha_code": ":woman_and_man_holding_hands_tone2_tone3:", "aliases": ":woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:" }, "1f469-1f3fc-1f91d-1f468-1f3fb": { "output": "1f469-1f3fc-1f91d-1f468-1f3fb", "name": "woman and man holding hands: medium light skin tone, light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone2_tone1:", "aliases": ":woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:" }, "1f469-1f3fb-1f91d-1f468-1f3fe": { "output": "1f469-1f3fb-1f91d-1f468-1f3fe", "name": "woman and man holding hands: light skin tone, medium dark skin tone", "alpha_code": ":woman_and_man_holding_hands_tone1_tone4:", "aliases": ":woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:" }, "1f469-1f3fb-1f91d-1f468-1f3fc": { "output": "1f469-1f3fb-1f91d-1f468-1f3fc", "name": "woman and man holding hands: light skin tone, medium light skin tone", "alpha_code": ":woman_and_man_holding_hands_tone1_tone2:", "aliases": ":woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:" }, "1f468-1f3fe-1f91d-1f468-1f3fc": { "output": "1f468-1f3fe-1f91d-1f468-1f3fc", "name": "men holding hands: medium dark skin tone, medium light skin tone", "alpha_code": ":men_holding_hands_tone4_tone2:", "aliases": ":men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" }, "1f469-1f3fe-1f91d-1f469-1f3fc": { "output": "1f469-1f3fe-1f91d-1f469-1f3fc", "name": "women holding hands: medium dark skin tone, medium light skin tone", "alpha_code": ":women_holding_hands_tone4_tone2:", "aliases": ":women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" } }tanuki_emoji-0.9.0/vendor/emojione-alpha-codes/LICENSE.md0000644000004100000410000000013114545323276023120 0ustar www-datawww-data#### License * License: MIT * Complete Legal Terms: http://opensource.org/licenses/MITtanuki_emoji-0.9.0/vendor/emojione-alpha-codes/README.md0000644000004100000410000002363014545323276023004 0ustar www-datawww-data# Emoji Alpha Codes ### WHAT ARE EMOJI ALPHA CODES? An EAC (some know them as cheat codes, shortnames, or short codes) are emoji keywords wrapped in colons such as :emoji: as an alternative/convenient method to inserting emoij graphics directly into message forms without having to use a separate emoji picker or pasting the emoji unicode. ### PURPOSE OF THIS DATA The purpose is to unify various alpha code lists into a single table developers could contribute to and share. With a few different tables floating around, we've done our best to organize and de-fragment the tables. To do this, we've divided the codes into a primary and secondary category. The single "primary" EAC code is the main identifier and the "secondary" EAC code(s) are alternatives. This gives the site developer the option to allow either a primary or secondary code to be entered to call a single emoji. Our goal here is to help everyone involved and we appreciate contributions to this list. Please know we don't recommend the primary EAC's change unless there's a major reason for it. ### THE FILES We've included the current list of emoji alpha codes in two formats, json and csv. In each file the data is primarily arranged by unicode code point. The files are structured as such. ##### JSON ``` { "1f600": { "output": "1f601", "name": "grinning face", "alpha_code": ":grinning:", "aliases": "" }, "1f642": { "output": "1f642", "name": "slightly smiling face", "alpha_code": ":slight_smile:", "aliases": ":slightly_smiling_face:" }, "1f36e": { "output": "1f46e", "name": "custard", "alpha_code": ":custard:", "aliases": ":pudding:|:flan:" } } ``` ##### CSV ``` “unicode”, "output", “name”, "alpha_code”, “aliases” ``` ### LICENSE * License: MIT * Complete Legal Terms: http://opensource.org/licenses/MIT ### PRIMARY SHORTNAME CHANGES The following is a list of shortnames that have been moved into the ":aliases:" column and replaced by a new primary shortname (alpha code), as of the JoyPixels 3.0 update (April 2017). ``` Previous Shortname,New Shortname :golfer:,:person_golfing: :man_with_turban:,:person_wearing_turban: :man_with_turban_tone1:,:person_wearing_turban_tone1: :man_with_turban_tone2:,:person_wearing_turban_tone2: :man_with_turban_tone3:,:person_wearing_turban_tone3: :man_with_turban_tone4:,:person_wearing_turban_tone4: :man_with_turban_tone5:,:person_wearing_turban_tone5: :man_with_gua_pi_mao:,:man_with_chinese_cap: :man_with_gua_pi_mao_tone1:,:man_with_chinese_cap_tone1: :man_with_gua_pi_mao_tone2:,:man_with_chinese_cap_tone2: :man_with_gua_pi_mao_tone3:,:man_with_chinese_cap_tone3: :man_with_gua_pi_mao_tone4:,:man_with_chinese_cap_tone4: :man_with_gua_pi_mao_tone5:,:man_with_chinese_cap_tone5: :dancers:,:people_with_bunny_ears_partying: :runner:,:person_running: :runner_tone1:,:person_running_tone1: :runner_tone2:,:person_running_tone2: :runner_tone3:,:person_running_tone3: :runner_tone4:,:person_running_tone4: :runner_tone5:,:person_running_tone5: :walking:,:person_walking: :walking_tone1:,:person_walking_tone1: :walking_tone2:,:person_walking_tone2: :walking_tone3:,:person_walking_tone3: :walking_tone4:,:person_walking_tone4: :walking_tone5:,:person_walking_tone5: :haircut:,:person_getting_haircut: :haircut_tone1:,:person_getting_haircut_tone1: :haircut_tone2:,:person_getting_haircut_tone2: :haircut_tone3:,:person_getting_haircut_tone3: :haircut_tone4:,:person_getting_haircut_tone4: :haircut_tone5:,:person_getting_haircut_tone5: :massage:,:person_getting_massage: :massage_tone1:,:person_getting_massage_tone1: :massage_tone2:,:person_getting_massage_tone2: :massage_tone3:,:person_getting_massage_tone3: :massage_tone4:,:person_getting_massage_tone4: :massage_tone5:,:person_getting_massage_tone5: :shrug:,:person_shrugging: :shrug_tone1:,:person_shrugging_tone1: :shrug_tone2:,:person_shrugging_tone2: :shrug_tone3:,:person_shrugging_tone3: :shrug_tone4:,:person_shrugging_tone4: :shrug_tone5:,:person_shrugging_tone5: :face_palm:,:person_facepalming: :face_palm_tone1:,:person_facepalming_tone1: :face_palm_tone2:,:person_facepalming_tone2: :face_palm_tone3:,:person_facepalming_tone3: :face_palm_tone4:,:person_facepalming_tone4: :face_palm_tone5:,:person_facepalming_tone5: :wrestlers:,:people_wrestling: :cop:,:police_officer: :cop_tone1:,:police_officer_tone1: :cop_tone2:,:police_officer_tone2: :cop_tone3:,:police_officer_tone3: :cop_tone4:,:police_officer_tone4: :cop_tone5:,:police_officer_tone5: :spy:,:detective: :spy_tone1:,:detective_tone1: :spy_tone2:,:detective_tone2: :spy_tone3:,:detective_tone3: :spy_tone4:,:detective_tone4: :spy_tone5:,:detective_tone5: :guardsman:,:guard: :guardsman_tone1:,:guard_tone1: :guardsman_tone2:,:guard_tone2: :guardsman_tone3:,:guard_tone3: :guardsman_tone4:,:guard_tone4: :guardsman_tone5:,:guard_tone5: :person_with_blond_hair:,:blond_haired_person: :person_with_blond_hair_tone1:,:blond_haired_person_tone1: :person_with_blond_hair_tone2:,:blond_haired_person_tone2: :person_with_blond_hair_tone3:,:blond_haired_person_tone3: :person_with_blond_hair_tone4:,:blond_haired_person_tone4: :person_with_blond_hair_tone5:,:blond_haired_person_tone5: :person_with_pouting_face:,:person_pouting: :person_with_pouting_face_tone1:,:person_pouting_tone1: :person_with_pouting_face_tone2:,:person_pouting_tone2: :person_with_pouting_face_tone3:,:person_pouting_tone3: :person_with_pouting_face_tone4:,:person_pouting_tone4: :person_with_pouting_face_tone5:,:person_pouting_tone5: :no_good:,:person_gesturing_no: :no_good_tone1:,:person_gesturing_no_tone1: :no_good_tone2:,:person_gesturing_no_tone2: :no_good_tone3:,:person_gesturing_no_tone3: :no_good_tone4:,:person_gesturing_no_tone4: :no_good_tone5:,:person_gesturing_no_tone5: :ok_woman:,:person_gesturing_ok: :ok_woman_tone1:,:person_gesturing_ok_tone1: :ok_woman_tone2:,:person_gesturing_ok_tone2: :ok_woman_tone3:,:person_gesturing_ok_tone3: :ok_woman_tone4:,:person_gesturing_ok_tone4: :ok_woman_tone5:,:person_gesturing_ok_tone5: :information_desk_person:,:person_tipping_hand: :information_desk_person_tone1:,:person_tipping_hand_tone1: :information_desk_person_tone2:,:person_tipping_hand_tone2: :information_desk_person_tone3:,:person_tipping_hand_tone3: :information_desk_person_tone4:,:person_tipping_hand_tone4: :information_desk_person_tone5:,:person_tipping_hand_tone5: :raising_hand:,:person_raising_hand: :raising_hand_tone1:,:person_raising_hand_tone1: :raising_hand_tone2:,:person_raising_hand_tone2: :raising_hand_tone3:,:person_raising_hand_tone3: :raising_hand_tone4:,:person_raising_hand_tone4: :raising_hand_tone5:,:person_raising_hand_tone5: :bow:,:person_bowing: :bow_tone1:,:person_bowing_tone1: :bow_tone2:,:person_bowing_tone2: :bow_tone3:,:person_bowing_tone3: :bow_tone4:,:person_bowing_tone4: :bow_tone5:,:person_bowing_tone5: :fencer:,:person_fencing: :surfer:,:person_surfing: :surfer_tone1:,:person_surfing_tone1: :surfer_tone2:,:person_surfing_tone2: :surfer_tone3:,:person_surfing_tone3: :surfer_tone4:,:person_surfing_tone4: :surfer_tone5:,:person_surfing_tone5: :rowboat:,:person_rowing_boat: :rowboat_tone1:,:person_rowing_boat_tone1: :rowboat_tone2:,:person_rowing_boat_tone2: :rowboat_tone3:,:person_rowing_boat_tone3: :rowboat_tone4:,:person_rowing_boat_tone4: :rowboat_tone5:,:person_rowing_boat_tone5: :swimmer:,:person_swimming: :swimmer_tone1:,:person_swimming_tone1: :swimmer_tone2:,:person_swimming_tone2: :swimmer_tone3:,:person_swimming_tone3: :swimmer_tone4:,:person_swimming_tone4: :swimmer_tone5:,:person_swimming_tone5: :basketball_player:,:person_bouncing_ball: :basketball_player_tone1:,:person_bouncing_ball_tone1: :basketball_player_tone2:,:person_bouncing_ball_tone2: :basketball_player_tone3:,:person_bouncing_ball_tone3: :basketball_player_tone4:,:person_bouncing_ball_tone4: :basketball_player_tone5:,:person_bouncing_ball_tone5: :lifter:,:person_lifting_weights: :lifter_tone1:,:person_lifting_weights_tone1: :lifter_tone2:,:person_lifting_weights_tone2: :lifter_tone3:,:person_lifting_weights_tone3: :lifter_tone4:,:person_lifting_weights_tone4: :lifter_tone5:,:person_lifting_weights_tone5: :bicyclist:,:person_biking: :bicyclist_tone1:,:person_biking_tone1: :bicyclist_tone2:,:person_biking_tone2: :bicyclist_tone3:,:person_biking_tone3: :bicyclist_tone4:,:person_biking_tone4: :bicyclist_tone5:,:person_biking_tone5: :mountain_bicyclist:,:person_mountain_biking: :mountain_bicyclist_tone1:,:person_mountain_biking_tone1: :mountain_bicyclist_tone2:,:person_mountain_biking_tone2: :mountain_bicyclist_tone3:,:person_mountain_biking_tone3: :mountain_bicyclist_tone4:,:person_mountain_biking_tone4: :mountain_bicyclist_tone5:,:person_mountain_biking_tone5: :water_polo:,:person_playing_water_polo: :water_polo_tone1:,:person_playing_water_polo_tone1: :water_polo_tone2:,:person_playing_water_polo_tone2: :water_polo_tone3:,:person_playing_water_polo_tone3: :water_polo_tone4:,:person_playing_water_polo_tone4: :water_polo_tone5:,:person_playing_water_polo_tone5: :handball:,:person_playing_handball: :handball_tone1:,:person_playing_handball_tone1: :handball_tone2:,:person_playing_handball_tone2: :handball_tone3:,:person_playing_handball_tone3: :handball_tone4:,:person_playing_handball_tone4: :handball_tone5:,:person_playing_handball_tone5: :juggling:,:person_juggling: :juggling_tone1:,:person_juggling_tone1: :juggling_tone2:,:person_juggling_tone2: :juggling_tone3:,:person_juggling_tone3: :juggling_tone4:,:person_juggling_tone4: :juggling_tone5:,:person_juggling_tone5: :levitating:,:man_in_business_suit_levitating: :cartwheel:,:person_doing_cartwheel: :cartwheel_tone1:,:person_doing_cartwheel_tone1: :cartwheel_tone2:,:person_doing_cartwheel_tone2: :cartwheel_tone3:,:person_doing_cartwheel_tone3: :cartwheel_tone4:,:person_doing_cartwheel_tone4: :cartwheel_tone5:,:person_doing_cartwheel_tone5: ``` tanuki_emoji-0.9.0/vendor/emojione-alpha-codes/eac.csv0000644000004100000410000103462714545323276023003 0ustar www-datawww-data"unicode","output","name","alpha_code","aliases" "0023-20e3","0023-fe0f-20e3","keycap: #",":hash:","" "0030-20e3","0030-fe0f-20e3","keycap: 0",":zero:","" "0031-20e3","0031-fe0f-20e3","keycap: 1",":one:","" "0032-20e3","0032-fe0f-20e3","keycap: 2",":two:","" "0033-20e3","0033-fe0f-20e3","keycap: 3",":three:","" "0034-20e3","0034-fe0f-20e3","keycap: 4",":four:","" "0035-20e3","0035-fe0f-20e3","keycap: 5",":five:","" "0036-20e3","0036-fe0f-20e3","keycap: 6",":six:","" "0037-20e3","0037-fe0f-20e3","keycap: 7",":seven:","" "0038-20e3","0038-fe0f-20e3","keycap: 8",":eight:","" "0039-20e3","0039-fe0f-20e3","keycap: 9",":nine:","" "00a9","00a9-fe0f","copyright",":copyright:","" "00ae","00ae-fe0f","registered",":registered:","" "203c","203c-fe0f","double exclamation mark",":bangbang:","" "2049","2049-fe0f","exclamation question mark",":interrobang:","" "2122","2122-fe0f","trade mark",":tm:","" "2139","2139-fe0f","information",":information_source:","" "2194","2194-fe0f","left-right arrow",":left_right_arrow:","" "2195","2195-fe0f","up-down arrow",":arrow_up_down:","" "2196","2196-fe0f","up-left arrow",":arrow_upper_left:","" "1f949","1f949","3rd place medal",":third_place:",":third_place_medal:" "2197","2197-fe0f","up-right arrow",":arrow_upper_right:","" "2198","2198-fe0f","down-right arrow",":arrow_lower_right:","" "2199","2199-fe0f","down-left arrow",":arrow_lower_left:","" "1f948","1f948","2nd place medal",":second_place:",":second_place_medal:" "21a9","21a9-fe0f","right arrow curving left",":leftwards_arrow_with_hook:","" "21aa","21aa-fe0f","left arrow curving right",":arrow_right_hook:","" "231a","231a","watch",":watch:","" "231b","231b","hourglass done",":hourglass:","" "23e9","23e9","fast-forward button",":fast_forward:","" "23ea","23ea","fast reverse button",":rewind:","" "23eb","23eb","fast up button",":arrow_double_up:","" "23ec","23ec","fast down button",":arrow_double_down:","" "23f0","23f0","alarm clock",":alarm_clock:","" "23f3","23f3","hourglass not done",":hourglass_flowing_sand:","" "24c2","24c2-fe0f","circled M",":m:","" "25aa","25aa-fe0f","black small square",":black_small_square:","" "25ab","25ab-fe0f","white small square",":white_small_square:","" "25b6","25b6-fe0f","play button",":arrow_forward:","" "25c0","25c0-fe0f","reverse button",":arrow_backward:","" "25fb","25fb-fe0f","white medium square",":white_medium_square:","" "25fc","25fc-fe0f","black medium square",":black_medium_square:","" "25fd","25fd","white medium-small square",":white_medium_small_square:","" "25fe","25fe","black medium-small square",":black_medium_small_square:","" "2600","2600-fe0f","sun",":sunny:","" "2601","2601-fe0f","cloud",":cloud:","" "260e","260e-fe0f","telephone",":telephone:","" "2611","2611-fe0f","check box with check",":ballot_box_with_check:","" "2614","2614","umbrella with rain drops",":umbrella:","" "2615","2615","hot beverage",":coffee:","" "261d","261d-fe0f","index pointing up",":point_up:","" "263a","263a-fe0f","smiling face",":relaxed:","" "2648","2648","Aries",":aries:","" "1f947","1f947","1st place medal",":first_place:",":first_place_medal:" "2649","2649","Taurus",":taurus:","" "1f93a","1f93a","person fencing",":person_fencing:",":fencer:|:fencing:" "264a","264a","Gemini",":gemini:","" "264b","264b","Cancer",":cancer:","" "1f945","1f945","goal net",":goal:",":goal_net:" "264c","264c","Leo",":leo:","" "002a","002a-fe0f","asterisk",":asterisk_symbol:","" "264d","264d","Virgo",":virgo:","" "1f93e","1f93e","person playing handball",":person_playing_handball:",":handball:" "264e","264e","Libra",":libra:","" "1f1ff","1f1ff","regional indicator symbol letter z",":regional_indicator_z:","" "1f93d","1f93d","person playing water polo",":person_playing_water_polo:",":water_polo:" "264f","264f","Scorpio",":scorpius:","" "2650","2650","Sagittarius",":sagittarius:","" "1f94b","1f94b","martial arts uniform",":martial_arts_uniform:",":karate_uniform:" "2651","2651","Capricorn",":capricorn:","" "1f94a","1f94a","boxing glove",":boxing_glove:",":boxing_gloves:" "2652","2652","Aquarius",":aquarius:","" "1f93c","1f93c","people wrestling",":people_wrestling:",":wrestlers:|:wrestling:" "2653","2653","Pisces",":pisces:","" "2660","2660-fe0f","spade suit",":spades:","" "2663","2663-fe0f","club suit",":clubs:","" "2665","2665-fe0f","heart suit",":hearts:","" "2666","2666-fe0f","diamond suit",":diamonds:","" "2668","2668-fe0f","hot springs",":hotsprings:","" "267b","267b-fe0f","recycling symbol",":recycle:","" "1f939","1f939","person juggling",":person_juggling:",":juggling:|:juggler:" "267f","267f","wheelchair symbol",":wheelchair:","" "2693","2693","anchor",":anchor:","" "26a0","26a0-fe0f","warning",":warning:","" "26a1","26a1","high voltage",":zap:","" "26aa","26aa","white circle",":white_circle:","" "26ab","26ab","black circle",":black_circle:","" "26bd","26bd","soccer ball",":soccer:","" "26be","26be","baseball",":baseball:","" "26c4","26c4","snowman without snow",":snowman:","" "26c5","26c5","sun behind cloud",":partly_sunny:","" "26ce","26ce","Ophiuchus",":ophiuchus:","" "1f938","1f938","person cartwheeling",":person_doing_cartwheel:",":cartwheel:" "26d4","26d4","no entry",":no_entry:","" "26ea","26ea","church",":church:","" "26f2","26f2","fountain",":fountain:","" "1f6f6","1f6f6","canoe",":canoe:",":kayak:" "26f3","26f3","flag in hole",":golf:","" "26f5","26f5","sailboat",":sailboat:","" "26fa","26fa","tent",":tent:","" "26fd","26fd","fuel pump",":fuelpump:","" "2702","2702-fe0f","scissors",":scissors:","" "2705","2705","check mark button",":white_check_mark:","" "2708","2708-fe0f","airplane",":airplane:","" "2709","2709-fe0f","envelope",":envelope:","" "270a","270a","raised fist",":fist:","" "270b","270b","raised hand",":raised_hand:","" "270c","270c-fe0f","victory hand",":v:","" "270f","270f-fe0f","pencil",":pencil2:","" "2712","2712-fe0f","black nib",":black_nib:","" "2714","2714-fe0f","check mark",":heavy_check_mark:","" "2716","2716-fe0f","multiplication sign",":heavy_multiplication_x:","" "2728","2728","sparkles",":sparkles:","" "2733","2733-fe0f","eight-spoked asterisk",":eight_spoked_asterisk:","" "2734","2734-fe0f","eight-pointed star",":eight_pointed_black_star:","" "2744","2744-fe0f","snowflake",":snowflake:","" "2747","2747-fe0f","sparkle",":sparkle:","" "274c","274c","cross mark",":x:","" "274e","274e","cross mark button",":negative_squared_cross_mark:","" "2753","2753","question mark",":question:","" "2754","2754","white question mark",":grey_question:","" "1f6f5","1f6f5","motor scooter",":motor_scooter:",":motorbike:" "2755","2755","white exclamation mark",":grey_exclamation:","" "2757","2757","exclamation mark",":exclamation:","" "2764","2764-fe0f","red heart",":heart:","" "2795","2795","plus sign",":heavy_plus_sign:","" "2796","2796","minus sign",":heavy_minus_sign:","" "2797","2797","division sign",":heavy_division_sign:","" "27a1","27a1-fe0f","right arrow",":arrow_right:","" "27b0","27b0","curly loop",":curly_loop:","" "2934","2934-fe0f","right arrow curving up",":arrow_heading_up:","" "2935","2935-fe0f","right arrow curving down",":arrow_heading_down:","" "2b05","2b05-fe0f","left arrow",":arrow_left:","" "2b06","2b06-fe0f","up arrow",":arrow_up:","" "1f6f4","1f6f4","kick scooter",":scooter:","" "2b07","2b07-fe0f","down arrow",":arrow_down:","" "2b1b","2b1b","black large square",":black_large_square:","" "2b1c","2b1c","white large square",":white_large_square:","" "2b50","2b50","star",":star:","" "2b55","2b55","hollow red circle",":o:","" "3030","3030-fe0f","wavy dash",":wavy_dash:","" "303d","303d-fe0f","part alternation mark",":part_alternation_mark:","" "3297","3297-fe0f","Japanese “congratulations” button",":congratulations:","" "1f6d2","1f6d2","shopping cart",":shopping_cart:",":shopping_trolley:" "3299","3299-fe0f","Japanese “secret” button",":secret:","" "1f004","1f004","mahjong red dragon",":mahjong:","" "1f0cf","1f0cf","joker",":black_joker:","" "1f170","1f170-fe0f","A button (blood type)",":a:","" "1f171","1f171-fe0f","B button (blood type)",":b:","" "1f17e","1f17e-fe0f","O button (blood type)",":o2:","" "1f17f","1f17f-fe0f","P button",":parking:","" "1f6d1","1f6d1","stop sign",":octagonal_sign:",":stop_sign:" "1f18e","1f18e","AB button (blood type)",":ab:","" "1f191","1f191","CL button",":cl:","" "1f1fe","1f1fe","regional indicator symbol letter y",":regional_indicator_y:","" "1f192","1f192","COOL button",":cool:","" "1f193","1f193","FREE button",":free:","" "1f194","1f194","ID button",":id:","" "1f195","1f195","NEW button",":new:","" "1f196","1f196","NG button",":ng:","" "1f197","1f197","OK button",":ok:","" "1f198","1f198","SOS button",":sos:","" "1f944","1f944","spoon",":spoon:","" "1f199","1f199","UP! button",":up:","" "1f19a","1f19a","VS button",":vs:","" "1f1e8-1f1f3","1f1e8-1f1f3","flag: China",":flag_cn:",":cn:" "1f1e9-1f1ea","1f1e9-1f1ea","flag: Germany",":flag_de:",":de:" "1f1ea-1f1f8","1f1ea-1f1f8","flag: Spain",":flag_es:",":es:" "1f1eb-1f1f7","1f1eb-1f1f7","flag: France",":flag_fr:",":fr:" "1f1ec-1f1e7","1f1ec-1f1e7","flag: United Kingdom",":flag_gb:",":gb:" "1f942","1f942","clinking glasses",":champagne_glass:",":clinking_glass:" "1f943","1f943","tumbler glass",":tumbler_glass:",":whisky:" "1f1ee-1f1f9","1f1ee-1f1f9","flag: Italy",":flag_it:",":it:" "1f1ef-1f1f5","1f1ef-1f1f5","flag: Japan",":flag_jp:",":jp:" "1f1f0-1f1f7","1f1f0-1f1f7","flag: South Korea",":flag_kr:",":kr:" "1f1fa-1f1f8","1f1fa-1f1f8","flag: United States",":flag_us:",":us:" "1f1f7-1f1fa","1f1f7-1f1fa","flag: Russia",":flag_ru:",":ru:" "1f201","1f201","Japanese “here” button",":koko:","" "1f202","1f202-fe0f","Japanese “service charge” button",":sa:","" "1f21a","1f21a","Japanese “free of charge” button",":u7121:","" "1f22f","1f22f","Japanese “reserved” button",":u6307:","" "1f959","1f959","stuffed flatbread",":stuffed_flatbread:",":stuffed_pita:" "1f232","1f232","Japanese “prohibited” button",":u7981:","" "1f233","1f233","Japanese “vacancy” button",":u7a7a:","" "1f234","1f234","Japanese “passing grade” button",":u5408:","" "1f235","1f235","Japanese “no vacancy” button",":u6e80:","" "1f236","1f236","Japanese “not free of charge” button",":u6709:","" "1f958","1f958","shallow pan of food",":shallow_pan_of_food:",":paella:" "1f237","1f237-fe0f","Japanese “monthly amount” button",":u6708:","" "1f238","1f238","Japanese “application” button",":u7533:","" "1f239","1f239","Japanese “discount” button",":u5272:","" "1f957","1f957","green salad",":salad:",":green_salad:" "1f23a","1f23a","Japanese “open for business” button",":u55b6:","" "1f250","1f250","Japanese “bargain” button",":ideograph_advantage:","" "1f251","1f251","Japanese “acceptable” button",":accept:","" "1f300","1f300","cyclone",":cyclone:","" "1f956","1f956","baguette bread",":french_bread:",":baguette_bread:" "1f301","1f301","foggy",":foggy:","" "1f302","1f302","closed umbrella",":closed_umbrella:","" "1f303","1f303","night with stars",":night_with_stars:","" "1f304","1f304","sunrise over mountains",":sunrise_over_mountains:","" "1f305","1f305","sunrise",":sunrise:","" "1f306","1f306","cityscape at dusk",":city_dusk:","" "1f955","1f955","carrot",":carrot:","" "1f307","1f307","sunset",":city_sunset:",":city_sunrise:" "1f308","1f308","rainbow",":rainbow:","" "1f954","1f954","potato",":potato:","" "1f309","1f309","bridge at night",":bridge_at_night:","" "1f30a","1f30a","water wave",":ocean:","" "1f30b","1f30b","volcano",":volcano:","" "1f30c","1f30c","milky way",":milky_way:","" "1f30f","1f30f","globe showing Asia-Australia",":earth_asia:","" "1f311","1f311","new moon",":new_moon:","" "1f953","1f953","bacon",":bacon:","" "1f313","1f313","first quarter moon",":first_quarter_moon:","" "1f314","1f314","waxing gibbous moon",":waxing_gibbous_moon:","" "1f315","1f315","full moon",":full_moon:","" "1f319","1f319","crescent moon",":crescent_moon:","" "1f31b","1f31b","first quarter moon face",":first_quarter_moon_with_face:","" "1f31f","1f31f","glowing star",":star2:","" "1f952","1f952","cucumber",":cucumber:","" "1f320","1f320","shooting star",":stars:","" "1f330","1f330","chestnut",":chestnut:","" "1f951","1f951","avocado",":avocado:","" "1f331","1f331","seedling",":seedling:","" "1f334","1f334","palm tree",":palm_tree:","" "1f335","1f335","cactus",":cactus:","" "1f337","1f337","tulip",":tulip:","" "1f338","1f338","cherry blossom",":cherry_blossom:","" "1f339","1f339","rose",":rose:","" "1f33a","1f33a","hibiscus",":hibiscus:","" "1f33b","1f33b","sunflower",":sunflower:","" "1f33c","1f33c","blossom",":blossom:","" "1f33d","1f33d","ear of corn",":corn:","" "1f950","1f950","croissant",":croissant:","" "1f33e","1f33e","sheaf of rice",":ear_of_rice:","" "1f33f","1f33f","herb",":herb:","" "1f340","1f340","four leaf clover",":four_leaf_clover:","" "1f341","1f341","maple leaf",":maple_leaf:","" "1f342","1f342","fallen leaf",":fallen_leaf:","" "1f343","1f343","leaf fluttering in wind",":leaves:","" "1f344","1f344","mushroom",":mushroom:","" "1f345","1f345","tomato",":tomato:","" "1f346","1f346","eggplant",":eggplant:","" "1f347","1f347","grapes",":grapes:","" "1f348","1f348","melon",":melon:","" "1f349","1f349","watermelon",":watermelon:","" "1f34a","1f34a","tangerine",":tangerine:","" "1f940","1f940","wilted flower",":wilted_rose:",":wilted_flower:" "1f34c","1f34c","banana",":banana:","" "1f34d","1f34d","pineapple",":pineapple:","" "1f34e","1f34e","red apple",":apple:","" "1f34f","1f34f","green apple",":green_apple:","" "1f351","1f351","peach",":peach:","" "1f352","1f352","cherries",":cherries:","" "1f353","1f353","strawberry",":strawberry:","" "1f98f","1f98f","rhinoceros",":rhino:",":rhinoceros:" "1f354","1f354","hamburger",":hamburger:","" "1f355","1f355","pizza",":pizza:","" "1f356","1f356","meat on bone",":meat_on_bone:","" "1f98e","1f98e","lizard",":lizard:","" "1f357","1f357","poultry leg",":poultry_leg:","" "1f358","1f358","rice cracker",":rice_cracker:","" "1f359","1f359","rice ball",":rice_ball:","" "1f98d","1f98d","gorilla",":gorilla:","" "1f35a","1f35a","cooked rice",":rice:","" "1f35b","1f35b","curry rice",":curry:","" "1f98c","1f98c","deer",":deer:","" "1f35c","1f35c","steaming bowl",":ramen:","" "1f35d","1f35d","spaghetti",":spaghetti:","" "1f35e","1f35e","bread",":bread:","" "1f35f","1f35f","french fries",":fries:","" "1f98b","1f98b","butterfly",":butterfly:","" "1f360","1f360","roasted sweet potato",":sweet_potato:","" "1f361","1f361","dango",":dango:","" "1f98a","1f98a","fox",":fox:",":fox_face:" "1f362","1f362","oden",":oden:","" "1f363","1f363","sushi",":sushi:","" "1f989","1f989","owl",":owl:","" "1f364","1f364","fried shrimp",":fried_shrimp:","" "1f365","1f365","fish cake with swirl",":fish_cake:","" "1f988","1f988","shark",":shark:","" "1f366","1f366","soft ice cream",":icecream:","" "1f987","1f987","bat",":bat:","" "1f367","1f367","shaved ice",":shaved_ice:","" "1f1fd","1f1fd","regional indicator symbol letter x",":regional_indicator_x:","" "1f368","1f368","ice cream",":ice_cream:","" "1f986","1f986","duck",":duck:","" "1f369","1f369","doughnut",":doughnut:","" "1f985","1f985","eagle",":eagle:","" "1f36a","1f36a","cookie",":cookie:","" "1f5a4","1f5a4","black heart",":black_heart:","" "1f36b","1f36b","chocolate bar",":chocolate_bar:","" "1f36c","1f36c","candy",":candy:","" "1f36d","1f36d","lollipop",":lollipop:","" "1f36e","1f36e","custard",":custard:",":pudding:|:flan:" "1f36f","1f36f","honey pot",":honey_pot:","" "1f91e","1f91e","crossed fingers",":fingers_crossed:",":hand_with_index_and_middle_finger_crossed:" "1f370","1f370","shortcake",":cake:","" "1f371","1f371","bento box",":bento:","" "1f372","1f372","pot of food",":stew:","" "1f91d","1f91d","handshake",":handshake:",":shaking_hands:" "1f373","1f373","cooking",":cooking:","" "1f374","1f374","fork and knife",":fork_and_knife:","" "1f375","1f375","teacup without handle",":tea:","" "1f376","1f376","sake",":sake:","" "1f377","1f377","wine glass",":wine_glass:","" "1f378","1f378","cocktail glass",":cocktail:","" "1f379","1f379","tropical drink",":tropical_drink:","" "1f37a","1f37a","beer mug",":beer:","" "1f37b","1f37b","clinking beer mugs",":beers:","" "1f380","1f380","ribbon",":ribbon:","" "1f381","1f381","wrapped gift",":gift:","" "1f382","1f382","birthday cake",":birthday:","" "1f383","1f383","jack-o-lantern",":jack_o_lantern:","" "1f91b","1f91b","left-facing fist",":left_facing_fist:",":left_fist:" "1f91c","1f91c","right-facing fist",":right_facing_fist:",":right_fist:" "1f384","1f384","Christmas tree",":christmas_tree:","" "1f385","1f385","Santa Claus",":santa:","" "1f386","1f386","fireworks",":fireworks:","" "1f91a","1f91a","raised back of hand",":raised_back_of_hand:",":back_of_hand:" "1f387","1f387","sparkler",":sparkler:","" "1f388","1f388","balloon",":balloon:","" "1f389","1f389","party popper",":tada:","" "1f38a","1f38a","confetti ball",":confetti_ball:","" "1f38b","1f38b","tanabata tree",":tanabata_tree:","" "1f38c","1f38c","crossed flags",":crossed_flags:","" "1f919","1f919","call me hand",":call_me:",":call_me_hand:" "1f38d","1f38d","pine decoration",":bamboo:","" "1f57a","1f57a","man dancing",":man_dancing:",":male_dancer:" "1f38e","1f38e","Japanese dolls",":dolls:","" "1f933","1f933","selfie",":selfie:","" "1f38f","1f38f","carp streamer",":flags:","" "1f930","1f930","pregnant woman",":pregnant_woman:",":expecting_woman:" "1f390","1f390","wind chime",":wind_chime:","" "1f926","1f926","person facepalming",":person_facepalming:",":face_palm:|:facepalm:" "1f937","1f937","person shrugging",":person_shrugging:",":shrug:" "1f391","1f391","moon viewing ceremony",":rice_scene:","" "1f392","1f392","backpack",":school_satchel:","" "1f393","1f393","graduation cap",":mortar_board:","" "1f3a0","1f3a0","carousel horse",":carousel_horse:","" "1f3a1","1f3a1","ferris wheel",":ferris_wheel:","" "1f3a2","1f3a2","roller coaster",":roller_coaster:","" "1f3a3","1f3a3","fishing pole",":fishing_pole_and_fish:","" "1f3a4","1f3a4","microphone",":microphone:","" "0023","0023-fe0f","pound symbol",":pound_symbol:","" "1f3a5","1f3a5","movie camera",":movie_camera:","" "1f3a6","1f3a6","cinema",":cinema:","" "1f3a7","1f3a7","headphone",":headphones:","" "1f936","1f936","Mrs. Claus",":mrs_claus:",":mother_christmas:" "1f3a8","1f3a8","artist palette",":art:","" "1f935","1f935","man in tuxedo",":man_in_tuxedo:","" "1f3a9","1f3a9","top hat",":tophat:","" "1f3aa","1f3aa","circus tent",":circus_tent:","" "1f934","1f934","prince",":prince:","" "1f3ab","1f3ab","ticket",":ticket:","" "1f3ac","1f3ac","clapper board",":clapper:","" "1f3ad","1f3ad","performing arts",":performing_arts:","" "1f927","1f927","sneezing face",":sneezing_face:",":sneeze:" "1f3ae","1f3ae","video game",":video_game:","" "1f3af","1f3af","direct hit",":dart:","" "1f3b0","1f3b0","slot machine",":slot_machine:","" "1f3b1","1f3b1","pool 8 ball",":8ball:","" "1f3b2","1f3b2","game die",":game_die:","" "1f3b3","1f3b3","bowling",":bowling:","" "1f3b4","1f3b4","flower playing cards",":flower_playing_cards:","" "1f925","1f925","lying face",":lying_face:",":liar:" "1f3b5","1f3b5","musical note",":musical_note:","" "1f3b6","1f3b6","musical notes",":notes:","" "1f3b7","1f3b7","saxophone",":saxophone:","" "1f924","1f924","drooling face",":drooling_face:",":drool:" "1f3b8","1f3b8","guitar",":guitar:","" "1f3b9","1f3b9","musical keyboard",":musical_keyboard:","" "1f3ba","1f3ba","trumpet",":trumpet:","" "1f923","1f923","rolling on the floor laughing",":rofl:",":rolling_on_the_floor_laughing:" "1f3bb","1f3bb","violin",":violin:","" "1f3bc","1f3bc","musical score",":musical_score:","" "1f3bd","1f3bd","running shirt",":running_shirt_with_sash:","" "1f922","1f922","nauseated face",":nauseated_face:",":sick:" "1f3be","1f3be","tennis",":tennis:","" "1f3bf","1f3bf","skis",":ski:","" "1f3c0","1f3c0","basketball",":basketball:","" "1f3c1","1f3c1","chequered flag",":checkered_flag:","" "1f921","1f921","clown face",":clown:",":clown_face:" "1f3c2","1f3c2","snowboarder",":snowboarder:","" "1f3c3","1f3c3","person running",":person_running:",":runner:" "1f3c4","1f3c4","person surfing",":person_surfing:",":surfer:" "1f3c6","1f3c6","trophy",":trophy:","" "1f3c8","1f3c8","american football",":football:","" "1f3ca","1f3ca","person swimming",":person_swimming:",":swimmer:" "1f3e0","1f3e0","house",":house:","" "1f3e1","1f3e1","house with garden",":house_with_garden:","" "1f3e2","1f3e2","office building",":office:","" "1f3e3","1f3e3","Japanese post office",":post_office:","" "1f3e5","1f3e5","hospital",":hospital:","" "1f3e6","1f3e6","bank",":bank:","" "1f3e7","1f3e7","ATM sign",":atm:","" "1f3e8","1f3e8","hotel",":hotel:","" "1f3e9","1f3e9","love hotel",":love_hotel:","" "1f3ea","1f3ea","convenience store",":convenience_store:","" "1f3eb","1f3eb","school",":school:","" "1f3ec","1f3ec","department store",":department_store:","" "1f920","1f920","cowboy hat face",":cowboy:",":face_with_cowboy_hat:" "1f3ed","1f3ed","factory",":factory:","" "1f3ee","1f3ee","red paper lantern",":izakaya_lantern:","" "1f3ef","1f3ef","Japanese castle",":japanese_castle:","" "1f3f0","1f3f0","castle",":european_castle:","" "1f40c","1f40c","snail",":snail:","" "1f40d","1f40d","snake",":snake:","" "1f40e","1f40e","horse",":racehorse:","" "1f411","1f411","ewe",":sheep:","" "1f412","1f412","monkey",":monkey:","" "1f414","1f414","chicken",":chicken:","" "1f417","1f417","boar",":boar:","" "1f418","1f418","elephant",":elephant:","" "1f419","1f419","octopus",":octopus:","" "1f41a","1f41a","spiral shell",":shell:","" "1f934-1f3fb","1f934-1f3fb","prince: light skin tone",":prince_tone1:","" "1f41b","1f41b","bug",":bug:","" "1f41c","1f41c","ant",":ant:","" "1f41d","1f41d","honeybee",":bee:","" "1f41e","1f41e","lady beetle",":beetle:","" "1f41f","1f41f","fish",":fish:","" "1f420","1f420","tropical fish",":tropical_fish:","" "1f421","1f421","blowfish",":blowfish:","" "1f422","1f422","turtle",":turtle:","" "1f423","1f423","hatching chick",":hatching_chick:","" "1f424","1f424","baby chick",":baby_chick:","" "1f425","1f425","front-facing baby chick",":hatched_chick:","" "1f426","1f426","bird",":bird:","" "1f427","1f427","penguin",":penguin:","" "1f428","1f428","koala",":koala:","" "1f429","1f429","poodle",":poodle:","" "1f42b","1f42b","two-hump camel",":camel:","" "1f42c","1f42c","dolphin",":dolphin:","" "1f42d","1f42d","mouse face",":mouse:","" "1f42e","1f42e","cow face",":cow:","" "1f42f","1f42f","tiger face",":tiger:","" "1f430","1f430","rabbit face",":rabbit:","" "1f431","1f431","cat face",":cat:","" "1f432","1f432","dragon face",":dragon_face:","" "1f433","1f433","spouting whale",":whale:","" "1f434","1f434","horse face",":horse:","" "1f435","1f435","monkey face",":monkey_face:","" "1f436","1f436","dog face",":dog:","" "1f437","1f437","pig face",":pig:","" "1f438","1f438","frog",":frog:","" "1f439","1f439","hamster",":hamster:","" "1f43a","1f43a","wolf",":wolf:","" "1f43b","1f43b","bear",":bear:","" "1f43c","1f43c","panda",":panda_face:","" "1f43d","1f43d","pig nose",":pig_nose:","" "1f43e","1f43e","paw prints",":feet:",":paw_prints:" "1f934-1f3fc","1f934-1f3fc","prince: medium-light skin tone",":prince_tone2:","" "1f440","1f440","eyes",":eyes:","" "1f442","1f442","ear",":ear:","" "1f443","1f443","nose",":nose:","" "1f444","1f444","mouth",":lips:","" "1f445","1f445","tongue",":tongue:","" "1f934-1f3fd","1f934-1f3fd","prince: medium skin tone",":prince_tone3:","" "1f446","1f446","backhand index pointing up",":point_up_2:","" "1f447","1f447","backhand index pointing down",":point_down:","" "1f448","1f448","backhand index pointing left",":point_left:","" "1f449","1f449","backhand index pointing right",":point_right:","" "1f44a","1f44a","oncoming fist",":punch:","" "1f44b","1f44b","waving hand",":wave:","" "1f44c","1f44c","OK hand",":ok_hand:","" "1f44d","1f44d","thumbs up",":thumbsup:",":+1:|:thumbup:" "1f44e","1f44e","thumbs down",":thumbsdown:",":-1:|:thumbdown:" "1f44f","1f44f","clapping hands",":clap:","" "1f450","1f450","open hands",":open_hands:","" "1f451","1f451","crown",":crown:","" "1f452","1f452","woman’s hat",":womans_hat:","" "1f453","1f453","glasses",":eyeglasses:","" "1f454","1f454","necktie",":necktie:","" "1f455","1f455","t-shirt",":shirt:","" "1f934-1f3fe","1f934-1f3fe","prince: medium-dark skin tone",":prince_tone4:","" "1f456","1f456","jeans",":jeans:","" "1f457","1f457","dress",":dress:","" "1f458","1f458","kimono",":kimono:","" "1f934-1f3ff","1f934-1f3ff","prince: dark skin tone",":prince_tone5:","" "1f459","1f459","bikini",":bikini:","" "1f45a","1f45a","woman’s clothes",":womans_clothes:","" "1f45b","1f45b","purse",":purse:","" "1f45c","1f45c","handbag",":handbag:","" "1f45d","1f45d","clutch bag",":pouch:","" "1f45e","1f45e","man’s shoe",":mans_shoe:","" "1f45f","1f45f","running shoe",":athletic_shoe:","" "1f460","1f460","high-heeled shoe",":high_heel:","" "1f461","1f461","woman’s sandal",":sandal:","" "1f462","1f462","woman’s boot",":boot:","" "1f463","1f463","footprints",":footprints:","" "1f464","1f464","bust in silhouette",":bust_in_silhouette:","" "1f936-1f3fb","1f936-1f3fb","Mrs. Claus: light skin tone",":mrs_claus_tone1:",":mother_christmas_tone1:" "1f466","1f466","boy",":boy:","" "1f467","1f467","girl",":girl:","" "1f468","1f468","man",":man:","" "1f469","1f469","woman",":woman:","" "1f46a","1f46a","family",":family:","" "1f46b","1f46b","woman and man holding hands",":couple:","" "1f46e","1f46e","police officer",":police_officer:",":cop:" "1f46f","1f46f","people with bunny ears",":people_with_bunny_ears_partying:",":dancers:" "1f470","1f470","bride with veil",":bride_with_veil:","" "1f471","1f471","person: blond hair",":blond_haired_person:",":person_with_blond_hair:" "1f472","1f472","man with Chinese cap",":man_with_chinese_cap:",":man_with_gua_pi_mao:" "1f473","1f473","person wearing turban",":person_wearing_turban:",":man_with_turban:" "1f474","1f474","old man",":older_man:","" "1f475","1f475","old woman",":older_woman:",":grandma:" "1f476","1f476","baby",":baby:","" "1f477","1f477","construction worker",":construction_worker:","" "1f478","1f478","princess",":princess:","" "1f479","1f479","ogre",":japanese_ogre:","" "1f936-1f3fc","1f936-1f3fc","Mrs. Claus: medium-light skin tone",":mrs_claus_tone2:",":mother_christmas_tone2:" "1f47a","1f47a","goblin",":japanese_goblin:","" "1f47b","1f47b","ghost",":ghost:","" "1f47c","1f47c","baby angel",":angel:","" "1f47d","1f47d","alien",":alien:","" "1f47e","1f47e","alien monster",":space_invader:","" "1f936-1f3fd","1f936-1f3fd","Mrs. Claus: medium skin tone",":mrs_claus_tone3:",":mother_christmas_tone3:" "1f47f","1f47f","angry face with horns",":imp:","" "1f480","1f480","skull",":skull:",":skeleton:" "1f4c7","1f4c7","card index",":card_index:","" "1f481","1f481","person tipping hand",":person_tipping_hand:",":information_desk_person:" "1f482","1f482","guard",":guard:",":guardsman:" "1f483","1f483","woman dancing",":dancer:","" "1f484","1f484","lipstick",":lipstick:","" "1f485","1f485","nail polish",":nail_care:","" "1f4d2","1f4d2","ledger",":ledger:","" "1f486","1f486","person getting massage",":person_getting_massage:",":massage:" "1f4d3","1f4d3","notebook",":notebook:","" "1f487","1f487","person getting haircut",":person_getting_haircut:",":haircut:" "1f4d4","1f4d4","notebook with decorative cover",":notebook_with_decorative_cover:","" "1f488","1f488","barber pole",":barber:","" "1f4d5","1f4d5","closed book",":closed_book:","" "1f489","1f489","syringe",":syringe:","" "1f4d6","1f4d6","open book",":book:","" "1f48a","1f48a","pill",":pill:","" "1f4d7","1f4d7","green book",":green_book:","" "1f48b","1f48b","kiss mark",":kiss:","" "1f4d8","1f4d8","blue book",":blue_book:","" "1f48c","1f48c","love letter",":love_letter:","" "1f4d9","1f4d9","orange book",":orange_book:","" "1f48d","1f48d","ring",":ring:","" "1f4da","1f4da","books",":books:","" "1f48e","1f48e","gem stone",":gem:","" "1f936-1f3fe","1f936-1f3fe","Mrs. Claus: medium-dark skin tone",":mrs_claus_tone4:",":mother_christmas_tone4:" "1f4db","1f4db","name badge",":name_badge:","" "1f48f","1f48f","kiss",":couplekiss:","" "1f4dc","1f4dc","scroll",":scroll:","" "1f490","1f490","bouquet",":bouquet:","" "1f4dd","1f4dd","memo",":pencil:",":memo:" "1f936-1f3ff","1f936-1f3ff","Mrs. Claus: dark skin tone",":mrs_claus_tone5:",":mother_christmas_tone5:" "1f491","1f491","couple with heart",":couple_with_heart:","" "1f4de","1f4de","telephone receiver",":telephone_receiver:","" "1f492","1f492","wedding",":wedding:","" "1f4df","1f4df","pager",":pager:","" "1f4e0","1f4e0","fax machine",":fax:","" "1f493","1f493","beating heart",":heartbeat:","" "1f4e1","1f4e1","satellite antenna",":satellite:","" "1f4e2","1f4e2","loudspeaker",":loudspeaker:","" "1f935-1f3fb","1f935-1f3fb","man in tuxedo: light skin tone",":man_in_tuxedo_tone1:",":tuxedo_tone1:" "1f494","1f494","broken heart",":broken_heart:","" "1f4e3","1f4e3","megaphone",":mega:","" "1f4e4","1f4e4","outbox tray",":outbox_tray:","" "1f495","1f495","two hearts",":two_hearts:","" "1f4e5","1f4e5","inbox tray",":inbox_tray:","" "1f4e6","1f4e6","package",":package:","" "1f935-1f3fc","1f935-1f3fc","man in tuxedo: medium-light skin tone",":man_in_tuxedo_tone2:",":tuxedo_tone2:" "1f496","1f496","sparkling heart",":sparkling_heart:","" "1f4e7","1f4e7","e-mail",":e-mail:",":email:" "1f4e8","1f4e8","incoming envelope",":incoming_envelope:","" "1f497","1f497","growing heart",":heartpulse:","" "1f935-1f3fd","1f935-1f3fd","man in tuxedo: medium skin tone",":man_in_tuxedo_tone3:",":tuxedo_tone3:" "1f4e9","1f4e9","envelope with arrow",":envelope_with_arrow:","" "1f4ea","1f4ea","closed mailbox with lowered flag",":mailbox_closed:","" "1f498","1f498","heart with arrow",":cupid:","" "1f4eb","1f4eb","closed mailbox with raised flag",":mailbox:","" "1f935-1f3fe","1f935-1f3fe","man in tuxedo: medium-dark skin tone",":man_in_tuxedo_tone4:",":tuxedo_tone4:" "1f4ee","1f4ee","postbox",":postbox:","" "1f499","1f499","blue heart",":blue_heart:","" "1f4f0","1f4f0","newspaper",":newspaper:","" "1f935-1f3ff","1f935-1f3ff","man in tuxedo: dark skin tone",":man_in_tuxedo_tone5:",":tuxedo_tone5:" "1f4f1","1f4f1","mobile phone",":iphone:","" "1f49a","1f49a","green heart",":green_heart:","" "1f937-1f3fb","1f937-1f3fb","person shrugging: light skin tone",":person_shrugging_tone1:",":shrug_tone1:" "1f4f2","1f4f2","mobile phone with arrow",":calling:","" "1f4f3","1f4f3","vibration mode",":vibration_mode:","" "1f49b","1f49b","yellow heart",":yellow_heart:","" "1f937-1f3fc","1f937-1f3fc","person shrugging: medium-light skin tone",":person_shrugging_tone2:",":shrug_tone2:" "1f4f4","1f4f4","mobile phone off",":mobile_phone_off:","" "1f4f6","1f4f6","antenna bars",":signal_strength:","" "1f937-1f3fd","1f937-1f3fd","person shrugging: medium skin tone",":person_shrugging_tone3:",":shrug_tone3:" "1f49c","1f49c","purple heart",":purple_heart:","" "1f937-1f3fe","1f937-1f3fe","person shrugging: medium-dark skin tone",":person_shrugging_tone4:",":shrug_tone4:" "1f4f7","1f4f7","camera",":camera:","" "1f4f9","1f4f9","video camera",":video_camera:","" "1f49d","1f49d","heart with ribbon",":gift_heart:","" "1f4fa","1f4fa","television",":tv:","" "1f937-1f3ff","1f937-1f3ff","person shrugging: dark skin tone",":person_shrugging_tone5:",":shrug_tone5:" "1f4fb","1f4fb","radio",":radio:","" "1f49e","1f49e","revolving hearts",":revolving_hearts:","" "1f4fc","1f4fc","videocassette",":vhs:","" "1f926-1f3fb","1f926-1f3fb","person facepalming: light skin tone",":person_facepalming_tone1:",":face_palm_tone1:|:facepalm_tone1:" "1f503","1f503","clockwise vertical arrows",":arrows_clockwise:","" "1f49f","1f49f","heart decoration",":heart_decoration:","" "1f50a","1f50a","speaker high volume",":loud_sound:","" "1f50b","1f50b","battery",":battery:","" "1f4a0","1f4a0","diamond with a dot",":diamond_shape_with_a_dot_inside:","" "1f50c","1f50c","electric plug",":electric_plug:","" "1f50d","1f50d","magnifying glass tilted left",":mag:","" "1f926-1f3fc","1f926-1f3fc","person facepalming: medium-light skin tone",":person_facepalming_tone2:",":face_palm_tone2:|:facepalm_tone2:" "1f4a1","1f4a1","light bulb",":bulb:","" "1f50e","1f50e","magnifying glass tilted right",":mag_right:","" "1f50f","1f50f","locked with pen",":lock_with_ink_pen:","" "1f4a2","1f4a2","anger symbol",":anger:","" "1f510","1f510","locked with key",":closed_lock_with_key:","" "1f511","1f511","key",":key:","" "1f4a3","1f4a3","bomb",":bomb:","" "1f512","1f512","locked",":lock:","" "1f513","1f513","unlocked",":unlock:","" "1f4a4","1f4a4","zzz",":zzz:","" "1f514","1f514","bell",":bell:","" "1f516","1f516","bookmark",":bookmark:","" "1f4a5","1f4a5","collision",":boom:","" "1f926-1f3fd","1f926-1f3fd","person facepalming: medium skin tone",":person_facepalming_tone3:",":face_palm_tone3:|:facepalm_tone3:" "1f517","1f517","link",":link:","" "1f518","1f518","radio button",":radio_button:","" "1f4a6","1f4a6","sweat droplets",":sweat_drops:","" "1f519","1f519","BACK arrow",":back:","" "1f51a","1f51a","END arrow",":end:","" "1f4a7","1f4a7","droplet",":droplet:","" "1f926-1f3fe","1f926-1f3fe","person facepalming: medium-dark skin tone",":person_facepalming_tone4:",":face_palm_tone4:|:facepalm_tone4:" "1f51b","1f51b","ON! arrow",":on:","" "1f51c","1f51c","SOON arrow",":soon:","" "1f4a8","1f4a8","dashing away",":dash:","" "1f51d","1f51d","TOP arrow",":top:","" "1f51e","1f51e","no one under eighteen",":underage:","" "1f4a9","1f4a9","pile of poo",":poop:",":shit:|:hankey:|:poo:" "1f51f","1f51f","keycap: 10",":keycap_ten:","" "1f4aa","1f4aa","flexed biceps",":muscle:","" "1f520","1f520","input latin uppercase",":capital_abcd:","" "1f521","1f521","input latin lowercase",":abcd:","" "1f4ab","1f4ab","dizzy",":dizzy:","" "1f926-1f3ff","1f926-1f3ff","person facepalming: dark skin tone",":person_facepalming_tone5:",":face_palm_tone5:|:facepalm_tone5:" "1f522","1f522","input numbers",":1234:","" "1f523","1f523","input symbols",":symbols:","" "1f4ac","1f4ac","speech balloon",":speech_balloon:","" "1f524","1f524","input latin letters",":abc:","" "1f525","1f525","fire",":fire:",":flame:" "1f4ae","1f4ae","white flower",":white_flower:","" "1f526","1f526","flashlight",":flashlight:","" "1f527","1f527","wrench",":wrench:","" "1f4af","1f4af","hundred points",":100:","" "1f528","1f528","hammer",":hammer:","" "1f529","1f529","nut and bolt",":nut_and_bolt:","" "1f4b0","1f4b0","money bag",":moneybag:","" "1f52a","1f52a","kitchen knife",":knife:","" "1f52b","1f52b","pistol",":gun:","" "1f4b1","1f4b1","currency exchange",":currency_exchange:","" "1f930-1f3fb","1f930-1f3fb","pregnant woman: light skin tone",":pregnant_woman_tone1:",":expecting_woman_tone1:" "1f52e","1f52e","crystal ball",":crystal_ball:","" "1f4b2","1f4b2","heavy dollar sign",":heavy_dollar_sign:","" "1f52f","1f52f","dotted six-pointed star",":six_pointed_star:","" "1f4b3","1f4b3","credit card",":credit_card:","" "1f530","1f530","Japanese symbol for beginner",":beginner:","" "1f531","1f531","trident emblem",":trident:","" "1f4b4","1f4b4","yen banknote",":yen:","" "1f930-1f3fc","1f930-1f3fc","pregnant woman: medium-light skin tone",":pregnant_woman_tone2:",":expecting_woman_tone2:" "1f532","1f532","black square button",":black_square_button:","" "1f533","1f533","white square button",":white_square_button:","" "1f4b5","1f4b5","dollar banknote",":dollar:","" "1f534","1f534","red circle",":red_circle:","" "1f535","1f535","blue circle",":blue_circle:","" "1f4b8","1f4b8","money with wings",":money_with_wings:","" "1f536","1f536","large orange diamond",":large_orange_diamond:","" "1f537","1f537","large blue diamond",":large_blue_diamond:","" "1f4b9","1f4b9","chart increasing with yen",":chart:","" "1f930-1f3fd","1f930-1f3fd","pregnant woman: medium skin tone",":pregnant_woman_tone3:",":expecting_woman_tone3:" "1f538","1f538","small orange diamond",":small_orange_diamond:","" "1f539","1f539","small blue diamond",":small_blue_diamond:","" "1f4ba","1f4ba","seat",":seat:","" "1f53a","1f53a","red triangle pointed up",":small_red_triangle:","" "1f53b","1f53b","red triangle pointed down",":small_red_triangle_down:","" "1f4bb","1f4bb","laptop computer",":computer:","" "1f53c","1f53c","upwards button",":arrow_up_small:","" "1f4bc","1f4bc","briefcase",":briefcase:","" "1f53d","1f53d","downwards button",":arrow_down_small:","" "1f550","1f550","one o’clock",":clock1:","" "1f4bd","1f4bd","computer disk",":minidisc:","" "1f551","1f551","two o’clock",":clock2:","" "1f4be","1f4be","floppy disk",":floppy_disk:","" "1f930-1f3fe","1f930-1f3fe","pregnant woman: medium-dark skin tone",":pregnant_woman_tone4:",":expecting_woman_tone4:" "1f552","1f552","three o’clock",":clock3:","" "1f4bf","1f4bf","optical disk",":cd:","" "1f553","1f553","four o’clock",":clock4:","" "1f4c0","1f4c0","dvd",":dvd:","" "1f554","1f554","five o’clock",":clock5:","" "1f555","1f555","six o’clock",":clock6:","" "1f4c1","1f4c1","file folder",":file_folder:","" "1f556","1f556","seven o’clock",":clock7:","" "1f557","1f557","eight o’clock",":clock8:","" "1f4c2","1f4c2","open file folder",":open_file_folder:","" "1f558","1f558","nine o’clock",":clock9:","" "1f559","1f559","ten o’clock",":clock10:","" "1f4c3","1f4c3","page with curl",":page_with_curl:","" "1f55a","1f55a","eleven o’clock",":clock11:","" "1f55b","1f55b","twelve o’clock",":clock12:","" "1f4c4","1f4c4","page facing up",":page_facing_up:","" "1f5fb","1f5fb","mount fuji",":mount_fuji:","" "1f5fc","1f5fc","Tokyo tower",":tokyo_tower:","" "1f4c5","1f4c5","calendar",":date:","" "1f5fd","1f5fd","Statue of Liberty",":statue_of_liberty:","" "1f5fe","1f5fe","map of Japan",":japan:","" "1f4c6","1f4c6","tear-off calendar",":calendar:","" "1f5ff","1f5ff","moai",":moyai:","" "1f601","1f601","beaming face with smiling eyes",":grin:","" "1f602","1f602","face with tears of joy",":joy:","" "1f603","1f603","grinning face with big eyes",":smiley:","" "1f4c8","1f4c8","chart increasing",":chart_with_upwards_trend:","" "1f604","1f604","grinning face with smiling eyes",":smile:","" "1f605","1f605","grinning face with sweat",":sweat_smile:","" "1f4c9","1f4c9","chart decreasing",":chart_with_downwards_trend:","" "1f606","1f606","grinning squinting face",":laughing:",":satisfied:" "1f609","1f609","winking face",":wink:","" "1f4ca","1f4ca","bar chart",":bar_chart:","" "1f60a","1f60a","smiling face with smiling eyes",":blush:","" "1f60b","1f60b","face savoring food",":yum:","" "1f4cb","1f4cb","clipboard",":clipboard:","" "1f60c","1f60c","relieved face",":relieved:","" "1f60d","1f60d","smiling face with heart-eyes",":heart_eyes:","" "1f4cc","1f4cc","pushpin",":pushpin:","" "1f60f","1f60f","smirking face",":smirk:","" "1f612","1f612","unamused face",":unamused:","" "1f4cd","1f4cd","round pushpin",":round_pushpin:","" "1f613","1f613","downcast face with sweat",":sweat:","" "1f614","1f614","pensive face",":pensive:","" "1f4ce","1f4ce","paperclip",":paperclip:","" "1f616","1f616","confounded face",":confounded:","" "1f618","1f618","face blowing a kiss",":kissing_heart:","" "1f930-1f3ff","1f930-1f3ff","pregnant woman: dark skin tone",":pregnant_woman_tone5:",":expecting_woman_tone5:" "1f4cf","1f4cf","straight ruler",":straight_ruler:","" "1f61a","1f61a","kissing face with closed eyes",":kissing_closed_eyes:","" "1f61c","1f61c","winking face with tongue",":stuck_out_tongue_winking_eye:","" "1f4d0","1f4d0","triangular ruler",":triangular_ruler:","" "1f61d","1f61d","squinting face with tongue",":stuck_out_tongue_closed_eyes:","" "1f61e","1f61e","disappointed face",":disappointed:","" "1f4d1","1f4d1","bookmark tabs",":bookmark_tabs:","" "1f620","1f620","angry face",":angry:","" "1f621","1f621","pouting face",":rage:","" "1f622","1f622","crying face",":cry:","" "1f623","1f623","persevering face",":persevere:","" "1f624","1f624","face with steam from nose",":triumph:","" "1f625","1f625","sad but relieved face",":disappointed_relieved:","" "1f628","1f628","fearful face",":fearful:","" "1f629","1f629","weary face",":weary:","" "1f62a","1f62a","sleepy face",":sleepy:","" "1f62b","1f62b","tired face",":tired_face:","" "1f62d","1f62d","loudly crying face",":sob:","" "1f630","1f630","anxious face with sweat",":cold_sweat:","" "1f631","1f631","face screaming in fear",":scream:","" "1f632","1f632","astonished face",":astonished:","" "1f633","1f633","flushed face",":flushed:","" "1f635","1f635","dizzy face",":dizzy_face:","" "1f637","1f637","face with medical mask",":mask:","" "1f638","1f638","grinning cat with smiling eyes",":smile_cat:","" "1f639","1f639","cat with tears of joy",":joy_cat:","" "1f63a","1f63a","grinning cat",":smiley_cat:","" "1f63b","1f63b","smiling cat with heart-eyes",":heart_eyes_cat:","" "1f63c","1f63c","cat with wry smile",":smirk_cat:","" "1f63d","1f63d","kissing cat",":kissing_cat:","" "1f63e","1f63e","pouting cat",":pouting_cat:","" "1f63f","1f63f","crying cat",":crying_cat_face:","" "1f640","1f640","weary cat",":scream_cat:","" "1f645","1f645","person gesturing NO",":person_gesturing_no:",":no_good:" "1f646","1f646","person gesturing OK",":person_gesturing_ok:",":ok_woman:" "1f647","1f647","person bowing",":person_bowing:",":bow:" "1f648","1f648","see-no-evil monkey",":see_no_evil:","" "1f57a-1f3fb","1f57a-1f3fb","man dancing: light skin tone",":man_dancing_tone1:",":male_dancer_tone1:" "1f649","1f649","hear-no-evil monkey",":hear_no_evil:","" "1f64a","1f64a","speak-no-evil monkey",":speak_no_evil:","" "1f57a-1f3fc","1f57a-1f3fc","man dancing: medium-light skin tone",":man_dancing_tone2:",":male_dancer_tone2:" "1f64b","1f64b","person raising hand",":person_raising_hand:",":raising_hand:" "1f64c","1f64c","raising hands",":raised_hands:","" "1f64d","1f64d","person frowning",":person_frowning:","" "1f64e","1f64e","person pouting",":person_pouting:",":person_with_pouting_face:" "1f64f","1f64f","folded hands",":pray:","" "1f680","1f680","rocket",":rocket:","" "1f683","1f683","railway car",":railway_car:","" "1f684","1f684","high-speed train",":bullettrain_side:","" "1f685","1f685","bullet train",":bullettrain_front:","" "1f687","1f687","metro",":metro:","" "1f689","1f689","station",":station:","" "1f68c","1f68c","bus",":bus:","" "1f68f","1f68f","bus stop",":busstop:","" "1f691","1f691","ambulance",":ambulance:","" "1f692","1f692","fire engine",":fire_engine:","" "1f693","1f693","police car",":police_car:","" "1f695","1f695","taxi",":taxi:","" "1f697","1f697","automobile",":red_car:","" "1f699","1f699","sport utility vehicle",":blue_car:","" "1f69a","1f69a","delivery truck",":truck:","" "1f6a2","1f6a2","ship",":ship:","" "1f6a4","1f6a4","speedboat",":speedboat:","" "1f6a5","1f6a5","horizontal traffic light",":traffic_light:","" "1f6a7","1f6a7","construction",":construction:","" "1f6a8","1f6a8","police car light",":rotating_light:","" "1f6a9","1f6a9","triangular flag",":triangular_flag_on_post:","" "1f6aa","1f6aa","door",":door:","" "1f57a-1f3fd","1f57a-1f3fd","man dancing: medium skin tone",":man_dancing_tone3:",":male_dancer_tone3:" "1f6ab","1f6ab","prohibited",":no_entry_sign:","" "1f6ac","1f6ac","cigarette",":smoking:","" "1f6ad","1f6ad","no smoking",":no_smoking:","" "1f6b2","1f6b2","bicycle",":bike:","" "1f6b6","1f6b6","person walking",":person_walking:",":walking:" "1f6b9","1f6b9","men’s room",":mens:","" "1f6ba","1f6ba","women’s room",":womens:","" "1f57a-1f3fe","1f57a-1f3fe","man dancing: medium-dark skin tone",":man_dancing_tone4:",":male_dancer_tone4:" "1f6bb","1f6bb","restroom",":restroom:","" "1f6bc","1f6bc","baby symbol",":baby_symbol:","" "1f57a-1f3ff","1f57a-1f3ff","man dancing: dark skin tone",":man_dancing_tone5:",":male_dancer_tone5:" "1f6bd","1f6bd","toilet",":toilet:","" "1f6be","1f6be","water closet",":wc:","" "1f933-1f3fb","1f933-1f3fb","selfie: light skin tone",":selfie_tone1:","" "1f6c0","1f6c0","person taking bath",":bath:","" "1f918","1f918","sign of the horns",":metal:",":sign_of_the_horns:" "1f600","1f600","grinning face",":grinning:","" "1f607","1f607","smiling face with halo",":innocent:","" "1f608","1f608","smiling face with horns",":smiling_imp:","" "1f60e","1f60e","smiling face with sunglasses",":sunglasses:","" "1f610","1f610","neutral face",":neutral_face:","" "1f611","1f611","expressionless face",":expressionless:","" "1f615","1f615","confused face",":confused:","" "1f617","1f617","kissing face",":kissing:","" "1f933-1f3fc","1f933-1f3fc","selfie: medium-light skin tone",":selfie_tone2:","" "1f619","1f619","kissing face with smiling eyes",":kissing_smiling_eyes:","" "1f61b","1f61b","face with tongue",":stuck_out_tongue:","" "1f61f","1f61f","worried face",":worried:","" "1f626","1f626","frowning face with open mouth",":frowning:","" "1f627","1f627","anguished face",":anguished:","" "1f62c","1f62c","grimacing face",":grimacing:","" "1f62e","1f62e","face with open mouth",":open_mouth:","" "1f62f","1f62f","hushed face",":hushed:","" "1f634","1f634","sleeping face",":sleeping:","" "1f636","1f636","face without mouth",":no_mouth:","" "1f681","1f681","helicopter",":helicopter:","" "1f682","1f682","locomotive",":steam_locomotive:","" "1f686","1f686","train",":train2:","" "1f688","1f688","light rail",":light_rail:","" "1f68a","1f68a","tram",":tram:","" "1f68d","1f68d","oncoming bus",":oncoming_bus:","" "1f68e","1f68e","trolleybus",":trolleybus:","" "1f690","1f690","minibus",":minibus:","" "1f694","1f694","oncoming police car",":oncoming_police_car:","" "1f696","1f696","oncoming taxi",":oncoming_taxi:","" "1f698","1f698","oncoming automobile",":oncoming_automobile:","" "1f69b","1f69b","articulated lorry",":articulated_lorry:","" "1f933-1f3fd","1f933-1f3fd","selfie: medium skin tone",":selfie_tone3:","" "1f69c","1f69c","tractor",":tractor:","" "1f69d","1f69d","monorail",":monorail:","" "1f69e","1f69e","mountain railway",":mountain_railway:","" "1f69f","1f69f","suspension railway",":suspension_railway:","" "1f6a0","1f6a0","mountain cableway",":mountain_cableway:","" "1f6a1","1f6a1","aerial tramway",":aerial_tramway:","" "1f6a3","1f6a3","person rowing boat",":person_rowing_boat:",":rowboat:" "1f6a6","1f6a6","vertical traffic light",":vertical_traffic_light:","" "1f933-1f3fe","1f933-1f3fe","selfie: medium-dark skin tone",":selfie_tone4:","" "1f6ae","1f6ae","litter in bin sign",":put_litter_in_its_place:","" "1f6af","1f6af","no littering",":do_not_litter:","" "1f933-1f3ff","1f933-1f3ff","selfie: dark skin tone",":selfie_tone5:","" "1f6b0","1f6b0","potable water",":potable_water:","" "1f6b1","1f6b1","non-potable water",":non-potable_water:","" "1f6b3","1f6b3","no bicycles",":no_bicycles:","" "1f91e-1f3fb","1f91e-1f3fb","crossed fingers: light skin tone",":fingers_crossed_tone1:",":hand_with_index_and_middle_fingers_crossed_tone1:" "1f6b4","1f6b4","person biking",":person_biking:",":bicyclist:" "1f6b5","1f6b5","person mountain biking",":person_mountain_biking:",":mountain_bicyclist:" "1f6b7","1f6b7","no pedestrians",":no_pedestrians:","" "1f6b8","1f6b8","children crossing",":children_crossing:","" "1f6bf","1f6bf","shower",":shower:","" "1f6c1","1f6c1","bathtub",":bathtub:","" "1f6c2","1f6c2","passport control",":passport_control:","" "1f91e-1f3fc","1f91e-1f3fc","crossed fingers: medium-light skin tone",":fingers_crossed_tone2:",":hand_with_index_and_middle_fingers_crossed_tone2:" "1f6c3","1f6c3","customs",":customs:","" "1f6c4","1f6c4","baggage claim",":baggage_claim:","" "1f91e-1f3fd","1f91e-1f3fd","crossed fingers: medium skin tone",":fingers_crossed_tone3:",":hand_with_index_and_middle_fingers_crossed_tone3:" "1f6c5","1f6c5","left luggage",":left_luggage:","" "1f30d","1f30d","globe showing Europe-Africa",":earth_africa:","" "1f30e","1f30e","globe showing Americas",":earth_americas:","" "1f310","1f310","globe with meridians",":globe_with_meridians:","" "1f312","1f312","waxing crescent moon",":waxing_crescent_moon:","" "1f316","1f316","waning gibbous moon",":waning_gibbous_moon:","" "1f317","1f317","last quarter moon",":last_quarter_moon:","" "1f318","1f318","waning crescent moon",":waning_crescent_moon:","" "1f31a","1f31a","new moon face",":new_moon_with_face:","" "1f31c","1f31c","last quarter moon face",":last_quarter_moon_with_face:","" "1f31d","1f31d","full moon face",":full_moon_with_face:","" "1f31e","1f31e","sun with face",":sun_with_face:","" "1f332","1f332","evergreen tree",":evergreen_tree:","" "1f333","1f333","deciduous tree",":deciduous_tree:","" "1f34b","1f34b","lemon",":lemon:","" "1f91e-1f3fe","1f91e-1f3fe","crossed fingers: medium-dark skin tone",":fingers_crossed_tone4:",":hand_with_index_and_middle_fingers_crossed_tone4:" "1f350","1f350","pear",":pear:","" "1f37c","1f37c","baby bottle",":baby_bottle:","" "1f3c7","1f3c7","horse racing",":horse_racing:","" "1f3c9","1f3c9","rugby football",":rugby_football:","" "1f3e4","1f3e4","post office",":european_post_office:","" "1f400","1f400","rat",":rat:","" "1f401","1f401","mouse",":mouse2:","" "1f402","1f402","ox",":ox:","" "1f403","1f403","water buffalo",":water_buffalo:","" "1f404","1f404","cow",":cow2:","" "1f405","1f405","tiger",":tiger2:","" "1f406","1f406","leopard",":leopard:","" "1f407","1f407","rabbit",":rabbit2:","" "1f408","1f408","cat",":cat2:","" "1f409","1f409","dragon",":dragon:","" "1f40a","1f40a","crocodile",":crocodile:","" "1f40b","1f40b","whale",":whale2:","" "1f40f","1f40f","ram",":ram:","" "1f410","1f410","goat",":goat:","" "1f413","1f413","rooster",":rooster:","" "1f415","1f415","dog",":dog2:","" "1f416","1f416","pig",":pig2:","" "1f91e-1f3ff","1f91e-1f3ff","crossed fingers: dark skin tone",":fingers_crossed_tone5:",":hand_with_index_and_middle_fingers_crossed_tone5:" "1f42a","1f42a","camel",":dromedary_camel:","" "1f465","1f465","busts in silhouette",":busts_in_silhouette:","" "1f46c","1f46c","men holding hands",":two_men_holding_hands:","" "1f46d","1f46d","women holding hands",":two_women_holding_hands:","" "1f4ad","1f4ad","thought balloon",":thought_balloon:","" "1f4b6","1f4b6","euro banknote",":euro:","" "1f919-1f3fb","1f919-1f3fb","call me hand: light skin tone",":call_me_tone1:",":call_me_hand_tone1:" "1f4b7","1f4b7","pound banknote",":pound:","" "1f4ec","1f4ec","open mailbox with raised flag",":mailbox_with_mail:","" "1f4ed","1f4ed","open mailbox with lowered flag",":mailbox_with_no_mail:","" "1f919-1f3fc","1f919-1f3fc","call me hand: medium-light skin tone",":call_me_tone2:",":call_me_hand_tone2:" "1f4ef","1f4ef","postal horn",":postal_horn:","" "1f4f5","1f4f5","no mobile phones",":no_mobile_phones:","" "1f500","1f500","shuffle tracks button",":twisted_rightwards_arrows:","" "1f501","1f501","repeat button",":repeat:","" "1f502","1f502","repeat single button",":repeat_one:","" "1f504","1f504","counterclockwise arrows button",":arrows_counterclockwise:","" "1f919-1f3fd","1f919-1f3fd","call me hand: medium skin tone",":call_me_tone3:",":call_me_hand_tone3:" "1f505","1f505","dim button",":low_brightness:","" "1f506","1f506","bright button",":high_brightness:","" "1f507","1f507","muted speaker",":mute:","" "1f509","1f509","speaker medium volume",":sound:","" "1f515","1f515","bell with slash",":no_bell:","" "1f52c","1f52c","microscope",":microscope:","" "1f52d","1f52d","telescope",":telescope:","" "1f55c","1f55c","one-thirty",":clock130:","" "1f55d","1f55d","two-thirty",":clock230:","" "1f55e","1f55e","three-thirty",":clock330:","" "1f55f","1f55f","four-thirty",":clock430:","" "1f560","1f560","five-thirty",":clock530:","" "1f561","1f561","six-thirty",":clock630:","" "1f562","1f562","seven-thirty",":clock730:","" "1f563","1f563","eight-thirty",":clock830:","" "1f564","1f564","nine-thirty",":clock930:","" "1f565","1f565","ten-thirty",":clock1030:","" "1f566","1f566","eleven-thirty",":clock1130:","" "1f567","1f567","twelve-thirty",":clock1230:","" "1f508","1f508","speaker low volume",":speaker:","" "1f68b","1f68b","tram car",":train:","" "27bf","27bf","double curly loop",":loop:","" "1f1e6-1f1eb","1f1e6-1f1eb","flag: Afghanistan",":flag_af:",":af:" "1f1e6-1f1f1","1f1e6-1f1f1","flag: Albania",":flag_al:",":al:" "1f1e9-1f1ff","1f1e9-1f1ff","flag: Algeria",":flag_dz:",":dz:" "1f1e6-1f1e9","1f1e6-1f1e9","flag: Andorra",":flag_ad:",":ad:" "1f1e6-1f1f4","1f1e6-1f1f4","flag: Angola",":flag_ao:",":ao:" "1f1e6-1f1ec","1f1e6-1f1ec","flag: Antigua & Barbuda",":flag_ag:",":ag:" "1f1e6-1f1f7","1f1e6-1f1f7","flag: Argentina",":flag_ar:",":ar:" "1f1e6-1f1f2","1f1e6-1f1f2","flag: Armenia",":flag_am:",":am:" "1f1e6-1f1fa","1f1e6-1f1fa","flag: Australia",":flag_au:",":au:" "1f1e6-1f1f9","1f1e6-1f1f9","flag: Austria",":flag_at:",":at:" "1f1e6-1f1ff","1f1e6-1f1ff","flag: Azerbaijan",":flag_az:",":az:" "1f1e7-1f1f8","1f1e7-1f1f8","flag: Bahamas",":flag_bs:",":bs:" "1f1e7-1f1ed","1f1e7-1f1ed","flag: Bahrain",":flag_bh:",":bh:" "1f1e7-1f1e9","1f1e7-1f1e9","flag: Bangladesh",":flag_bd:",":bd:" "1f1e7-1f1e7","1f1e7-1f1e7","flag: Barbados",":flag_bb:",":bb:" "1f1e7-1f1fe","1f1e7-1f1fe","flag: Belarus",":flag_by:",":by:" "1f1e7-1f1ea","1f1e7-1f1ea","flag: Belgium",":flag_be:",":be:" "1f1e7-1f1ff","1f1e7-1f1ff","flag: Belize",":flag_bz:",":bz:" "1f1e7-1f1ef","1f1e7-1f1ef","flag: Benin",":flag_bj:",":bj:" "1f1e7-1f1f9","1f1e7-1f1f9","flag: Bhutan",":flag_bt:",":bt:" "1f1e7-1f1f4","1f1e7-1f1f4","flag: Bolivia",":flag_bo:",":bo:" "1f1e7-1f1e6","1f1e7-1f1e6","flag: Bosnia & Herzegovina",":flag_ba:",":ba:" "1f1e7-1f1fc","1f1e7-1f1fc","flag: Botswana",":flag_bw:",":bw:" "1f1e7-1f1f7","1f1e7-1f1f7","flag: Brazil",":flag_br:",":br:" "1f1e7-1f1f3","1f1e7-1f1f3","flag: Brunei",":flag_bn:",":bn:" "1f1e7-1f1ec","1f1e7-1f1ec","flag: Bulgaria",":flag_bg:",":bg:" "1f1e7-1f1eb","1f1e7-1f1eb","flag: Burkina Faso",":flag_bf:",":bf:" "1f1e7-1f1ee","1f1e7-1f1ee","flag: Burundi",":flag_bi:",":bi:" "1f1f0-1f1ed","1f1f0-1f1ed","flag: Cambodia",":flag_kh:",":kh:" "1f1e8-1f1f2","1f1e8-1f1f2","flag: Cameroon",":flag_cm:",":cm:" "1f1e8-1f1e6","1f1e8-1f1e6","flag: Canada",":flag_ca:",":ca:" "1f1e8-1f1fb","1f1e8-1f1fb","flag: Cape Verde",":flag_cv:",":cv:" "1f919-1f3fe","1f919-1f3fe","call me hand: medium-dark skin tone",":call_me_tone4:",":call_me_hand_tone4:" "1f1e8-1f1eb","1f1e8-1f1eb","flag: Central African Republic",":flag_cf:",":cf:" "1f1f9-1f1e9","1f1f9-1f1e9","flag: Chad",":flag_td:",":td:" "1f1e8-1f1f1","1f1e8-1f1f1","flag: Chile",":flag_cl:",":chile:" "1f1e8-1f1f4","1f1e8-1f1f4","flag: Colombia",":flag_co:",":co:" "1f1f0-1f1f2","1f1f0-1f1f2","flag: Comoros",":flag_km:",":km:" "1f1e8-1f1f7","1f1e8-1f1f7","flag: Costa Rica",":flag_cr:",":cr:" "1f1e8-1f1ee","1f1e8-1f1ee","flag: Côte d’Ivoire",":flag_ci:",":ci:" "1f1ed-1f1f7","1f1ed-1f1f7","flag: Croatia",":flag_hr:",":hr:" "1f1e8-1f1fa","1f1e8-1f1fa","flag: Cuba",":flag_cu:",":cu:" "1f1e8-1f1fe","1f1e8-1f1fe","flag: Cyprus",":flag_cy:",":cy:" "1f1e8-1f1ff","1f1e8-1f1ff","flag: Czechia",":flag_cz:",":cz:" "1f919-1f3ff","1f919-1f3ff","call me hand: dark skin tone",":call_me_tone5:",":call_me_hand_tone5:" "1f1e8-1f1e9","1f1e8-1f1e9","flag: Congo - Kinshasa",":flag_cd:",":congo:" "1f91b-1f3fb","1f91b-1f3fb","left-facing fist: light skin tone",":left_facing_fist_tone1:",":left_fist_tone1:" "1f1e9-1f1f0","1f1e9-1f1f0","flag: Denmark",":flag_dk:",":dk:" "1f1e9-1f1ef","1f1e9-1f1ef","flag: Djibouti",":flag_dj:",":dj:" "1f1e9-1f1f2","1f1e9-1f1f2","flag: Dominica",":flag_dm:",":dm:" "1f1e9-1f1f4","1f1e9-1f1f4","flag: Dominican Republic",":flag_do:",":do:" "1f1f9-1f1f1","1f1f9-1f1f1","flag: Timor-Leste",":flag_tl:",":tl:" "1f1ea-1f1e8","1f1ea-1f1e8","flag: Ecuador",":flag_ec:",":ec:" "1f1ea-1f1ec","1f1ea-1f1ec","flag: Egypt",":flag_eg:",":eg:" "1f1f8-1f1fb","1f1f8-1f1fb","flag: El Salvador",":flag_sv:",":sv:" "1f1ec-1f1f6","1f1ec-1f1f6","flag: Equatorial Guinea",":flag_gq:",":gq:" "1f1ea-1f1f7","1f1ea-1f1f7","flag: Eritrea",":flag_er:",":er:" "1f1ea-1f1ea","1f1ea-1f1ea","flag: Estonia",":flag_ee:",":ee:" "1f1ea-1f1f9","1f1ea-1f1f9","flag: Ethiopia",":flag_et:",":et:" "1f91b-1f3fc","1f91b-1f3fc","left-facing fist: medium-light skin tone",":left_facing_fist_tone2:",":left_fist_tone2:" "1f1eb-1f1ef","1f1eb-1f1ef","flag: Fiji",":flag_fj:",":fj:" "1f1eb-1f1ee","1f1eb-1f1ee","flag: Finland",":flag_fi:",":fi:" "1f1ec-1f1e6","1f1ec-1f1e6","flag: Gabon",":flag_ga:",":ga:" "1f1ec-1f1f2","1f1ec-1f1f2","flag: Gambia",":flag_gm:",":gm:" "1f1ec-1f1ea","1f1ec-1f1ea","flag: Georgia",":flag_ge:",":ge:" "1f1ec-1f1ed","1f1ec-1f1ed","flag: Ghana",":flag_gh:",":gh:" "1f1ec-1f1f7","1f1ec-1f1f7","flag: Greece",":flag_gr:",":gr:" "1f1ec-1f1e9","1f1ec-1f1e9","flag: Grenada",":flag_gd:",":gd:" "1f1ec-1f1f9","1f1ec-1f1f9","flag: Guatemala",":flag_gt:",":gt:" "1f1ec-1f1f3","1f1ec-1f1f3","flag: Guinea",":flag_gn:",":gn:" "1f1ec-1f1fc","1f1ec-1f1fc","flag: Guinea-Bissau",":flag_gw:",":gw:" "1f1ec-1f1fe","1f1ec-1f1fe","flag: Guyana",":flag_gy:",":gy:" "1f1ed-1f1f9","1f1ed-1f1f9","flag: Haiti",":flag_ht:",":ht:" "1f1ed-1f1f3","1f1ed-1f1f3","flag: Honduras",":flag_hn:",":hn:" "1f1ed-1f1fa","1f1ed-1f1fa","flag: Hungary",":flag_hu:",":hu:" "1f1ee-1f1f8","1f1ee-1f1f8","flag: Iceland",":flag_is:",":is:" "1f1ee-1f1f3","1f1ee-1f1f3","flag: India",":flag_in:",":in:" "1f1ee-1f1e9","1f1ee-1f1e9","flag: Indonesia",":flag_id:",":indonesia:" "1f1ee-1f1f7","1f1ee-1f1f7","flag: Iran",":flag_ir:",":ir:" "1f1ee-1f1f6","1f1ee-1f1f6","flag: Iraq",":flag_iq:",":iq:" "1f1ee-1f1ea","1f1ee-1f1ea","flag: Ireland",":flag_ie:",":ie:" "1f1ee-1f1f1","1f1ee-1f1f1","flag: Israel",":flag_il:",":il:" "1f1ef-1f1f2","1f1ef-1f1f2","flag: Jamaica",":flag_jm:",":jm:" "1f1ef-1f1f4","1f1ef-1f1f4","flag: Jordan",":flag_jo:",":jo:" "1f1f0-1f1ff","1f1f0-1f1ff","flag: Kazakhstan",":flag_kz:",":kz:" "1f1f0-1f1ea","1f1f0-1f1ea","flag: Kenya",":flag_ke:",":ke:" "1f1f0-1f1ee","1f1f0-1f1ee","flag: Kiribati",":flag_ki:",":ki:" "1f1fd-1f1f0","1f1fd-1f1f0","flag: Kosovo",":flag_xk:",":xk:" "1f1f0-1f1fc","1f1f0-1f1fc","flag: Kuwait",":flag_kw:",":kw:" "1f1f0-1f1ec","1f1f0-1f1ec","flag: Kyrgyzstan",":flag_kg:",":kg:" "1f91b-1f3fd","1f91b-1f3fd","left-facing fist: medium skin tone",":left_facing_fist_tone3:",":left_fist_tone3:" "1f1f1-1f1e6","1f1f1-1f1e6","flag: Laos",":flag_la:",":la:" "1f1f1-1f1fb","1f1f1-1f1fb","flag: Latvia",":flag_lv:",":lv:" "1f1f1-1f1e7","1f1f1-1f1e7","flag: Lebanon",":flag_lb:",":lb:" "1f1f1-1f1f8","1f1f1-1f1f8","flag: Lesotho",":flag_ls:",":ls:" "1f1f1-1f1f7","1f1f1-1f1f7","flag: Liberia",":flag_lr:",":lr:" "1f1f1-1f1fe","1f1f1-1f1fe","flag: Libya",":flag_ly:",":ly:" "1f1f1-1f1ee","1f1f1-1f1ee","flag: Liechtenstein",":flag_li:",":li:" "1f1f1-1f1f9","1f1f1-1f1f9","flag: Lithuania",":flag_lt:",":lt:" "1f1f1-1f1fa","1f1f1-1f1fa","flag: Luxembourg",":flag_lu:",":lu:" "1f1f2-1f1f0","1f1f2-1f1f0","flag: Macedonia",":flag_mk:",":mk:" "1f1f2-1f1ec","1f1f2-1f1ec","flag: Madagascar",":flag_mg:",":mg:" "1f1f2-1f1fc","1f1f2-1f1fc","flag: Malawi",":flag_mw:",":mw:" "1f1f2-1f1fe","1f1f2-1f1fe","flag: Malaysia",":flag_my:",":my:" "1f1f2-1f1fb","1f1f2-1f1fb","flag: Maldives",":flag_mv:",":mv:" "1f1f2-1f1f1","1f1f2-1f1f1","flag: Mali",":flag_ml:",":ml:" "1f1f2-1f1f9","1f1f2-1f1f9","flag: Malta",":flag_mt:",":mt:" "1f1f2-1f1ed","1f1f2-1f1ed","flag: Marshall Islands",":flag_mh:",":mh:" "1f1f2-1f1f7","1f1f2-1f1f7","flag: Mauritania",":flag_mr:",":mr:" "1f1f2-1f1fa","1f1f2-1f1fa","flag: Mauritius",":flag_mu:",":mu:" "1f1f2-1f1fd","1f1f2-1f1fd","flag: Mexico",":flag_mx:",":mx:" "1f1eb-1f1f2","1f1eb-1f1f2","flag: Micronesia",":flag_fm:",":fm:" "1f1f2-1f1e9","1f1f2-1f1e9","flag: Moldova",":flag_md:",":md:" "1f1f2-1f1e8","1f1f2-1f1e8","flag: Monaco",":flag_mc:",":mc:" "1f1f2-1f1f3","1f1f2-1f1f3","flag: Mongolia",":flag_mn:",":mn:" "1f1f2-1f1ea","1f1f2-1f1ea","flag: Montenegro",":flag_me:",":me:" "1f1f2-1f1e6","1f1f2-1f1e6","flag: Morocco",":flag_ma:",":ma:" "1f1f2-1f1ff","1f1f2-1f1ff","flag: Mozambique",":flag_mz:",":mz:" "1f1f2-1f1f2","1f1f2-1f1f2","flag: Myanmar (Burma)",":flag_mm:",":mm:" "1f1f3-1f1e6","1f1f3-1f1e6","flag: Namibia",":flag_na:",":na:" "1f1f3-1f1f7","1f1f3-1f1f7","flag: Nauru",":flag_nr:",":nr:" "1f1f3-1f1f5","1f1f3-1f1f5","flag: Nepal",":flag_np:",":np:" "1f1f3-1f1f1","1f1f3-1f1f1","flag: Netherlands",":flag_nl:",":nl:" "1f1f3-1f1ff","1f1f3-1f1ff","flag: New Zealand",":flag_nz:",":nz:" "1f1f3-1f1ee","1f1f3-1f1ee","flag: Nicaragua",":flag_ni:",":ni:" "1f1f3-1f1ea","1f1f3-1f1ea","flag: Niger",":flag_ne:",":ne:" "1f1f3-1f1ec","1f1f3-1f1ec","flag: Nigeria",":flag_ng:",":nigeria:" "1f1f0-1f1f5","1f1f0-1f1f5","flag: North Korea",":flag_kp:",":kp:" "1f1f3-1f1f4","1f1f3-1f1f4","flag: Norway",":flag_no:",":no:" "1f1f4-1f1f2","1f1f4-1f1f2","flag: Oman",":flag_om:",":om:" "1f1f5-1f1f0","1f1f5-1f1f0","flag: Pakistan",":flag_pk:",":pk:" "1f1f5-1f1fc","1f1f5-1f1fc","flag: Palau",":flag_pw:",":pw:" "1f1f5-1f1e6","1f1f5-1f1e6","flag: Panama",":flag_pa:",":pa:" "1f1f5-1f1ec","1f1f5-1f1ec","flag: Papua New Guinea",":flag_pg:",":pg:" "1f91b-1f3fe","1f91b-1f3fe","left-facing fist: medium-dark skin tone",":left_facing_fist_tone4:",":left_fist_tone4:" "1f1f5-1f1fe","1f1f5-1f1fe","flag: Paraguay",":flag_py:",":py:" "1f1f5-1f1ea","1f1f5-1f1ea","flag: Peru",":flag_pe:",":pe:" "1f1f5-1f1ed","1f1f5-1f1ed","flag: Philippines",":flag_ph:",":ph:" "1f1f5-1f1f1","1f1f5-1f1f1","flag: Poland",":flag_pl:",":pl:" "1f1f5-1f1f9","1f1f5-1f1f9","flag: Portugal",":flag_pt:",":pt:" "1f1f6-1f1e6","1f1f6-1f1e6","flag: Qatar",":flag_qa:",":qa:" "1f1f9-1f1fc","1f1f9-1f1fc","flag: Taiwan",":flag_tw:",":tw:" "1f1e8-1f1ec","1f1e8-1f1ec","flag: Congo - Brazzaville",":flag_cg:",":cg:" "1f1f7-1f1f4","1f1f7-1f1f4","flag: Romania",":flag_ro:",":ro:" "1f1f7-1f1fc","1f1f7-1f1fc","flag: Rwanda",":flag_rw:",":rw:" "1f1f0-1f1f3","1f1f0-1f1f3","flag: St. Kitts & Nevis",":flag_kn:",":kn:" "1f1f1-1f1e8","1f1f1-1f1e8","flag: St. Lucia",":flag_lc:",":lc:" "1f1fb-1f1e8","1f1fb-1f1e8","flag: St. Vincent & Grenadines",":flag_vc:",":vc:" "1f1fc-1f1f8","1f1fc-1f1f8","flag: Samoa",":flag_ws:",":ws:" "1f1f8-1f1f2","1f1f8-1f1f2","flag: San Marino",":flag_sm:",":sm:" "1f1f8-1f1f9","1f1f8-1f1f9","flag: São Tomé & Príncipe",":flag_st:",":st:" "1f1f8-1f1e6","1f1f8-1f1e6","flag: Saudi Arabia",":flag_sa:",":saudiarabia:|:saudi:" "1f91b-1f3ff","1f91b-1f3ff","left-facing fist: dark skin tone",":left_facing_fist_tone5:",":left_fist_tone5:" "1f1f8-1f1f3","1f1f8-1f1f3","flag: Senegal",":flag_sn:",":sn:" "1f1f7-1f1f8","1f1f7-1f1f8","flag: Serbia",":flag_rs:",":rs:" "1f1f8-1f1e8","1f1f8-1f1e8","flag: Seychelles",":flag_sc:",":sc:" "1f1f8-1f1f1","1f1f8-1f1f1","flag: Sierra Leone",":flag_sl:",":sl:" "1f1f8-1f1ec","1f1f8-1f1ec","flag: Singapore",":flag_sg:",":sg:" "1f1f8-1f1f0","1f1f8-1f1f0","flag: Slovakia",":flag_sk:",":sk:" "1f1f8-1f1ee","1f1f8-1f1ee","flag: Slovenia",":flag_si:",":si:" "1f1f8-1f1e7","1f1f8-1f1e7","flag: Solomon Islands",":flag_sb:",":sb:" "1f1f8-1f1f4","1f1f8-1f1f4","flag: Somalia",":flag_so:",":so:" "1f1ff-1f1e6","1f1ff-1f1e6","flag: South Africa",":flag_za:",":za:" "1f1f1-1f1f0","1f1f1-1f1f0","flag: Sri Lanka",":flag_lk:",":lk:" "1f1f8-1f1e9","1f1f8-1f1e9","flag: Sudan",":flag_sd:",":sd:" "1f1f8-1f1f7","1f1f8-1f1f7","flag: Suriname",":flag_sr:",":sr:" "1f1f8-1f1ff","1f1f8-1f1ff","flag: Eswatini",":flag_sz:",":sz:" "1f1f8-1f1ea","1f1f8-1f1ea","flag: Sweden",":flag_se:",":se:" "1f1e8-1f1ed","1f1e8-1f1ed","flag: Switzerland",":flag_ch:",":ch:" "1f1f8-1f1fe","1f1f8-1f1fe","flag: Syria",":flag_sy:",":sy:" "1f1f9-1f1ef","1f1f9-1f1ef","flag: Tajikistan",":flag_tj:",":tj:" "1f1f9-1f1ff","1f1f9-1f1ff","flag: Tanzania",":flag_tz:",":tz:" "1f1f9-1f1ed","1f1f9-1f1ed","flag: Thailand",":flag_th:",":th:" "1f1f9-1f1ec","1f1f9-1f1ec","flag: Togo",":flag_tg:",":tg:" "1f1f9-1f1f4","1f1f9-1f1f4","flag: Tonga",":flag_to:",":to:" "1f1f9-1f1f9","1f1f9-1f1f9","flag: Trinidad & Tobago",":flag_tt:",":tt:" "1f1f9-1f1f3","1f1f9-1f1f3","flag: Tunisia",":flag_tn:",":tn:" "1f1f9-1f1f7","1f1f9-1f1f7","flag: Turkey",":flag_tr:",":tr:" "1f1f9-1f1f2","1f1f9-1f1f2","flag: Turkmenistan",":flag_tm:",":turkmenistan:" "1f1f9-1f1fb","1f1f9-1f1fb","flag: Tuvalu",":flag_tv:",":tuvalu:" "1f1fa-1f1ec","1f1fa-1f1ec","flag: Uganda",":flag_ug:",":ug:" "1f1fa-1f1e6","1f1fa-1f1e6","flag: Ukraine",":flag_ua:",":ua:" "1f1e6-1f1ea","1f1e6-1f1ea","flag: United Arab Emirates",":flag_ae:",":ae:" "1f1fa-1f1fe","1f1fa-1f1fe","flag: Uruguay",":flag_uy:",":uy:" "1f1fa-1f1ff","1f1fa-1f1ff","flag: Uzbekistan",":flag_uz:",":uz:" "1f1fb-1f1fa","1f1fb-1f1fa","flag: Vanuatu",":flag_vu:",":vu:" "1f1fb-1f1e6","1f1fb-1f1e6","flag: Vatican City",":flag_va:",":va:" "1f1fb-1f1ea","1f1fb-1f1ea","flag: Venezuela",":flag_ve:",":ve:" "1f1fb-1f1f3","1f1fb-1f1f3","flag: Vietnam",":flag_vn:",":vn:" "1f1ea-1f1ed","1f1ea-1f1ed","flag: Western Sahara",":flag_eh:",":eh:" "1f91c-1f3fb","1f91c-1f3fb","right-facing fist: light skin tone",":right_facing_fist_tone1:",":right_fist_tone1:" "1f1fe-1f1ea","1f1fe-1f1ea","flag: Yemen",":flag_ye:",":ye:" "1f1ff-1f1f2","1f1ff-1f1f2","flag: Zambia",":flag_zm:",":zm:" "1f1ff-1f1fc","1f1ff-1f1fc","flag: Zimbabwe",":flag_zw:",":zw:" "1f1f5-1f1f7","1f1f5-1f1f7","flag: Puerto Rico",":flag_pr:",":pr:" "1f1f0-1f1fe","1f1f0-1f1fe","flag: Cayman Islands",":flag_ky:",":ky:" "1f1e7-1f1f2","1f1e7-1f1f2","flag: Bermuda",":flag_bm:",":bm:" "1f1f5-1f1eb","1f1f5-1f1eb","flag: French Polynesia",":flag_pf:",":pf:" "1f1f5-1f1f8","1f1f5-1f1f8","flag: Palestinian Territories",":flag_ps:",":ps:" "1f1f3-1f1e8","1f1f3-1f1e8","flag: New Caledonia",":flag_nc:",":nc:" "1f91c-1f3fc","1f91c-1f3fc","right-facing fist: medium-light skin tone",":right_facing_fist_tone2:",":right_fist_tone2:" "1f1f8-1f1ed","1f1f8-1f1ed","flag: St. Helena",":flag_sh:",":sh:" "1f1e6-1f1fc","1f1e6-1f1fc","flag: Aruba",":flag_aw:",":aw:" "1f1fb-1f1ee","1f1fb-1f1ee","flag: U.S. Virgin Islands",":flag_vi:",":vi:" "1f1ed-1f1f0","1f1ed-1f1f0","flag: Hong Kong SAR China",":flag_hk:",":hk:" "1f1e6-1f1e8","1f1e6-1f1e8","flag: Ascension Island",":flag_ac:",":ac:" "1f1f2-1f1f8","1f1f2-1f1f8","flag: Montserrat",":flag_ms:",":ms:" "1f1ec-1f1fa","1f1ec-1f1fa","flag: Guam",":flag_gu:",":gu:" "1f1ec-1f1f1","1f1ec-1f1f1","flag: Greenland",":flag_gl:",":gl:" "1f1f3-1f1fa","1f1f3-1f1fa","flag: Niue",":flag_nu:",":nu:" "1f1fc-1f1eb","1f1fc-1f1eb","flag: Wallis & Futuna",":flag_wf:",":wf:" "1f1f2-1f1f4","1f1f2-1f1f4","flag: Macao SAR China",":flag_mo:",":mo:" "1f91c-1f3fd","1f91c-1f3fd","right-facing fist: medium skin tone",":right_facing_fist_tone3:",":right_fist_tone3:" "1f1eb-1f1f4","1f1eb-1f1f4","flag: Faroe Islands",":flag_fo:",":fo:" "1f1eb-1f1f0","1f1eb-1f1f0","flag: Falkland Islands",":flag_fk:",":fk:" "1f1ef-1f1ea","1f1ef-1f1ea","flag: Jersey",":flag_je:",":je:" "1f1e6-1f1ee","1f1e6-1f1ee","flag: Anguilla",":flag_ai:",":ai:" "1f1ec-1f1ee","1f1ec-1f1ee","flag: Gibraltar",":flag_gi:",":gi:" "1f39e","1f39e-fe0f","film frames",":film_frames:","" "1f39f","1f39f-fe0f","admission tickets",":tickets:",":admission_tickets:" "1f3c5","1f3c5","sports medal",":medal:",":sports_medal:" "1f3cb","1f3cb-fe0f","person lifting weights",":person_lifting_weights:",":lifter:|:weight_lifter:" "1f3cc","1f3cc-fe0f","person golfing",":person_golfing:",":golfer:" "1f3cd","1f3cd-fe0f","motorcycle",":motorcycle:",":racing_motorcycle:" "1f3ce","1f3ce-fe0f","racing car",":race_car:",":racing_car:" "1f396","1f396-fe0f","military medal",":military_medal:","" "1f397","1f397-fe0f","reminder ribbon",":reminder_ribbon:","" "1f336","1f336-fe0f","hot pepper",":hot_pepper:","" "1f91c-1f3fe","1f91c-1f3fe","right-facing fist: medium-dark skin tone",":right_facing_fist_tone4:",":right_fist_tone4:" "1f327","1f327-fe0f","cloud with rain",":cloud_rain:",":cloud_with_rain:" "1f328","1f328-fe0f","cloud with snow",":cloud_snow:",":cloud_with_snow:" "1f329","1f329-fe0f","cloud with lightning",":cloud_lightning:",":cloud_with_lightning:" "1f32a","1f32a-fe0f","tornado",":cloud_tornado:",":cloud_with_tornado:" "1f32b","1f32b-fe0f","fog",":fog:","" "1f32c","1f32c-fe0f","wind face",":wind_blowing_face:","" "1f43f","1f43f-fe0f","chipmunk",":chipmunk:","" "1f577","1f577-fe0f","spider",":spider:","" "1f578","1f578-fe0f","spider web",":spider_web:","" "1f321","1f321-fe0f","thermometer",":thermometer:","" "1f399","1f399-fe0f","studio microphone",":microphone2:",":studio_microphone:" "1f39a","1f39a-fe0f","level slider",":level_slider:","" "1f39b","1f39b-fe0f","control knobs",":control_knobs:","" "1f3f3","1f3f3-fe0f","white flag",":flag_white:",":waving_white_flag:" "1f3f4","1f3f4","black flag",":flag_black:",":waving_black_flag:" "1f3f5","1f3f5-fe0f","rosette",":rosette:","" "1f3f7","1f3f7-fe0f","label",":label:","" "1f4f8","1f4f8","camera with flash",":camera_with_flash:","" "1f4fd","1f4fd-fe0f","film projector",":projector:",":film_projector:" "271d","271d-fe0f","latin cross",":cross:",":latin_cross:" "1f549","1f549-fe0f","om",":om_symbol:","" "1f54a","1f54a-fe0f","dove",":dove:",":dove_of_peace:" "1f56f","1f56f-fe0f","candle",":candle:","" "1f570","1f570-fe0f","mantelpiece clock",":clock:",":mantlepiece_clock:" "1f573","1f573-fe0f","hole",":hole:","" "1f576","1f576-fe0f","sunglasses",":dark_sunglasses:","" "1f579","1f579-fe0f","joystick",":joystick:","" "1f587","1f587-fe0f","linked paperclips",":paperclips:",":linked_paperclips:" "1f58a","1f58a-fe0f","pen",":pen_ballpoint:",":lower_left_ballpoint_pen:" "1f58b","1f58b-fe0f","fountain pen",":pen_fountain:",":lower_left_fountain_pen:" "1f58c","1f58c-fe0f","paintbrush",":paintbrush:",":lower_left_paintbrush:" "1f58d","1f58d-fe0f","crayon",":crayon:",":lower_left_crayon:" "1f5a5","1f5a5-fe0f","desktop computer",":desktop:",":desktop_computer:" "1f5a8","1f5a8-fe0f","printer",":printer:","" "1f91c-1f3ff","1f91c-1f3ff","right-facing fist: dark skin tone",":right_facing_fist_tone5:",":right_fist_tone5:" "2328","2328-fe0f","keyboard",":keyboard:","" "1f5b2","1f5b2-fe0f","trackball",":trackball:","" "1f91a-1f3fb","1f91a-1f3fb","raised back of hand: light skin tone",":raised_back_of_hand_tone1:",":back_of_hand_tone1:" "1f5bc","1f5bc-fe0f","framed picture",":frame_photo:",":frame_with_picture:" "1f5c2","1f5c2-fe0f","card index dividers",":dividers:",":card_index_dividers:" "1f5c3","1f5c3-fe0f","card file box",":card_box:",":card_file_box:" "1f5c4","1f5c4-fe0f","file cabinet",":file_cabinet:","" "1f5d1","1f5d1-fe0f","wastebasket",":wastebasket:","" "1f5d2","1f5d2-fe0f","spiral notepad",":notepad_spiral:",":spiral_note_pad:" "1f5d3","1f5d3-fe0f","spiral calendar",":calendar_spiral:",":spiral_calendar_pad:" "1f5dc","1f5dc-fe0f","clamp",":compression:","" "1f5dd","1f5dd-fe0f","old key",":key2:",":old_key:" "1f5de","1f5de-fe0f","rolled-up newspaper",":newspaper2:",":rolled_up_newspaper:" "1f5e1","1f5e1-fe0f","dagger",":dagger:",":dagger_knife:" "1f5e3","1f5e3-fe0f","speaking head",":speaking_head:",":speaking_head_in_silhouette:" "1f5e8","1f5e8-fe0f","left speech bubble",":speech_left:",":left_speech_bubble:" "1f91a-1f3fc","1f91a-1f3fc","raised back of hand: medium-light skin tone",":raised_back_of_hand_tone2:",":back_of_hand_tone2:" "1f5ef","1f5ef-fe0f","right anger bubble",":anger_right:",":right_anger_bubble:" "1f91a-1f3fd","1f91a-1f3fd","raised back of hand: medium skin tone",":raised_back_of_hand_tone3:",":back_of_hand_tone3:" "1f5f3","1f5f3-fe0f","ballot box with ballot",":ballot_box:",":ballot_box_with_ballot:" "1f5fa","1f5fa-fe0f","world map",":map:",":world_map:" "1f6cc","1f6cc","person in bed",":sleeping_accommodation:","" "1f6e0","1f6e0-fe0f","hammer and wrench",":tools:",":hammer_and_wrench:" "1f6e1","1f6e1-fe0f","shield",":shield:","" "1f6e2","1f6e2-fe0f","oil drum",":oil:",":oil_drum:" "1f6f0","1f6f0-fe0f","satellite",":satellite_orbital:","" "1f37d","1f37d-fe0f","fork and knife with plate",":fork_knife_plate:",":fork_and_knife_with_plate:" "1f441","1f441-fe0f","eye",":eye:","" "1f574","1f574-fe0f","man in suit levitating",":levitate:",":man_in_business_suit_levitating:" "1f575","1f575-fe0f","detective",":detective:",":spy:|:sleuth_or_spy:" "270d","270d-fe0f","writing hand",":writing_hand:","" "1f590","1f590-fe0f","hand with fingers splayed",":hand_splayed:",":raised_hand_with_fingers_splayed:" "1f595","1f595","middle finger",":middle_finger:",":reversed_hand_with_middle_finger_extended:" "1f596","1f596","vulcan salute",":vulcan:",":raised_hand_with_part_between_middle_and_ring_fingers:" "1f641","1f641","slightly frowning face",":slight_frown:",":slightly_frowning_face:" "1f642","1f642","slightly smiling face",":slight_smile:",":slightly_smiling_face:" "1f3d4","1f3d4-fe0f","snow-capped mountain",":mountain_snow:",":snow_capped_mountain:" "1f3d5","1f3d5-fe0f","camping",":camping:","" "1f3d6","1f3d6-fe0f","beach with umbrella",":beach:",":beach_with_umbrella:" "1f3d7","1f3d7-fe0f","building construction",":construction_site:",":building_construction:" "1f3d8","1f3d8-fe0f","houses",":homes:",":house_buildings:" "1f3d9","1f3d9-fe0f","cityscape",":cityscape:","" "1f3da","1f3da-fe0f","derelict house",":house_abandoned:",":derelict_house_building:" "1f3db","1f3db-fe0f","classical building",":classical_building:","" "1f3dc","1f3dc-fe0f","desert",":desert:","" "1f3dd","1f3dd-fe0f","desert island",":island:",":desert_island:" "1f3de","1f3de-fe0f","national park",":park:",":national_park:" "1f3df","1f3df-fe0f","stadium",":stadium:","" "1f6cb","1f6cb-fe0f","couch and lamp",":couch:",":couch_and_lamp:" "1f91a-1f3fe","1f91a-1f3fe","raised back of hand: medium-dark skin tone",":raised_back_of_hand_tone4:",":back_of_hand_tone4:" "1f6cd","1f6cd-fe0f","shopping bags",":shopping_bags:","" "1f6ce","1f6ce-fe0f","bellhop bell",":bellhop:",":bellhop_bell:" "1f6cf","1f6cf-fe0f","bed",":bed:","" "1f6e3","1f6e3-fe0f","motorway",":motorway:","" "1f6e4","1f6e4-fe0f","railway track",":railway_track:",":railroad_track:" "1f6e5","1f6e5-fe0f","motor boat",":motorboat:","" "1f6e9","1f6e9-fe0f","small airplane",":airplane_small:",":small_airplane:" "1f6eb","1f6eb","airplane departure",":airplane_departure:","" "1f6ec","1f6ec","airplane arrival",":airplane_arriving:","" "1f6f3","1f6f3-fe0f","passenger ship",":cruise_ship:",":passenger_ship:" "1f476-1f3fb","1f476-1f3fb","baby: light skin tone",":baby_tone1:","" "1f476-1f3fc","1f476-1f3fc","baby: medium-light skin tone",":baby_tone2:","" "1f476-1f3fd","1f476-1f3fd","baby: medium skin tone",":baby_tone3:","" "1f476-1f3fe","1f476-1f3fe","baby: medium-dark skin tone",":baby_tone4:","" "1f476-1f3ff","1f476-1f3ff","baby: dark skin tone",":baby_tone5:","" "1f466-1f3fb","1f466-1f3fb","boy: light skin tone",":boy_tone1:","" "1f466-1f3fc","1f466-1f3fc","boy: medium-light skin tone",":boy_tone2:","" "1f466-1f3fd","1f466-1f3fd","boy: medium skin tone",":boy_tone3:","" "1f466-1f3fe","1f466-1f3fe","boy: medium-dark skin tone",":boy_tone4:","" "1f466-1f3ff","1f466-1f3ff","boy: dark skin tone",":boy_tone5:","" "1f467-1f3fb","1f467-1f3fb","girl: light skin tone",":girl_tone1:","" "1f467-1f3fc","1f467-1f3fc","girl: medium-light skin tone",":girl_tone2:","" "1f467-1f3fd","1f467-1f3fd","girl: medium skin tone",":girl_tone3:","" "1f467-1f3fe","1f467-1f3fe","girl: medium-dark skin tone",":girl_tone4:","" "1f467-1f3ff","1f467-1f3ff","girl: dark skin tone",":girl_tone5:","" "1f468-1f3fb","1f468-1f3fb","man: light skin tone",":man_tone1:","" "1f468-1f3fc","1f468-1f3fc","man: medium-light skin tone",":man_tone2:","" "1f468-1f3fd","1f468-1f3fd","man: medium skin tone",":man_tone3:","" "1f468-1f3fe","1f468-1f3fe","man: medium-dark skin tone",":man_tone4:","" "1f468-1f3ff","1f468-1f3ff","man: dark skin tone",":man_tone5:","" "1f469-1f3fb","1f469-1f3fb","woman: light skin tone",":woman_tone1:","" "1f469-1f3fc","1f469-1f3fc","woman: medium-light skin tone",":woman_tone2:","" "1f469-1f3fd","1f469-1f3fd","woman: medium skin tone",":woman_tone3:","" "1f469-1f3fe","1f469-1f3fe","woman: medium-dark skin tone",":woman_tone4:","" "1f469-1f3ff","1f469-1f3ff","woman: dark skin tone",":woman_tone5:","" "1f470-1f3fb","1f470-1f3fb","bride with veil: light skin tone",":bride_with_veil_tone1:","" "1f470-1f3fc","1f470-1f3fc","bride with veil: medium-light skin tone",":bride_with_veil_tone2:","" "1f91a-1f3ff","1f91a-1f3ff","raised back of hand: dark skin tone",":raised_back_of_hand_tone5:",":back_of_hand_tone5:" "1f470-1f3fd","1f470-1f3fd","bride with veil: medium skin tone",":bride_with_veil_tone3:","" "1f470-1f3fe","1f470-1f3fe","bride with veil: medium-dark skin tone",":bride_with_veil_tone4:","" "1f470-1f3ff","1f470-1f3ff","bride with veil: dark skin tone",":bride_with_veil_tone5:","" "1f471-1f3fb","1f471-1f3fb","blond-haired person: light skin tone",":blond_haired_person_tone1:",":person_with_blond_hair_tone1:" "1f471-1f3fc","1f471-1f3fc","blond-haired person: medium-light skin tone",":blond_haired_person_tone2:",":person_with_blond_hair_tone2:" "1f471-1f3fd","1f471-1f3fd","blond-haired person: medium skin tone",":blond_haired_person_tone3:",":person_with_blond_hair_tone3:" "1f471-1f3fe","1f471-1f3fe","blond-haired person: medium-dark skin tone",":blond_haired_person_tone4:",":person_with_blond_hair_tone4:" "1f471-1f3ff","1f471-1f3ff","blond-haired person: dark skin tone",":blond_haired_person_tone5:",":person_with_blond_hair_tone5:" "1f472-1f3fb","1f472-1f3fb","man with Chinese cap: light skin tone",":man_with_chinese_cap_tone1:",":man_with_gua_pi_mao_tone1:" "1f472-1f3fc","1f472-1f3fc","man with Chinese cap: medium-light skin tone",":man_with_chinese_cap_tone2:",":man_with_gua_pi_mao_tone2:" "1f472-1f3fd","1f472-1f3fd","man with Chinese cap: medium skin tone",":man_with_chinese_cap_tone3:",":man_with_gua_pi_mao_tone3:" "1f472-1f3fe","1f472-1f3fe","man with Chinese cap: medium-dark skin tone",":man_with_chinese_cap_tone4:",":man_with_gua_pi_mao_tone4:" "1f472-1f3ff","1f472-1f3ff","man with Chinese cap: dark skin tone",":man_with_chinese_cap_tone5:",":man_with_gua_pi_mao_tone5:" "1f473-1f3fb","1f473-1f3fb","person wearing turban: light skin tone",":person_wearing_turban_tone1:",":man_with_turban_tone1:" "1f473-1f3fc","1f473-1f3fc","person wearing turban: medium-light skin tone",":person_wearing_turban_tone2:",":man_with_turban_tone2:" "1f473-1f3fd","1f473-1f3fd","person wearing turban: medium skin tone",":person_wearing_turban_tone3:",":man_with_turban_tone3:" "1f473-1f3fe","1f473-1f3fe","person wearing turban: medium-dark skin tone",":person_wearing_turban_tone4:",":man_with_turban_tone4:" "1f473-1f3ff","1f473-1f3ff","person wearing turban: dark skin tone",":person_wearing_turban_tone5:",":man_with_turban_tone5:" "1f474-1f3fb","1f474-1f3fb","old man: light skin tone",":older_man_tone1:","" "1f474-1f3fc","1f474-1f3fc","old man: medium-light skin tone",":older_man_tone2:","" "1f474-1f3fd","1f474-1f3fd","old man: medium skin tone",":older_man_tone3:","" "1f474-1f3fe","1f474-1f3fe","old man: medium-dark skin tone",":older_man_tone4:","" "1f474-1f3ff","1f474-1f3ff","old man: dark skin tone",":older_man_tone5:","" "1f475-1f3fb","1f475-1f3fb","old woman: light skin tone",":older_woman_tone1:",":grandma_tone1:" "1f475-1f3fc","1f475-1f3fc","old woman: medium-light skin tone",":older_woman_tone2:",":grandma_tone2:" "1f475-1f3fd","1f475-1f3fd","old woman: medium skin tone",":older_woman_tone3:",":grandma_tone3:" "1f475-1f3fe","1f475-1f3fe","old woman: medium-dark skin tone",":older_woman_tone4:",":grandma_tone4:" "1f475-1f3ff","1f475-1f3ff","old woman: dark skin tone",":older_woman_tone5:",":grandma_tone5:" "1f46e-1f3fb","1f46e-1f3fb","police officer: light skin tone",":police_officer_tone1:",":cop_tone1:" "1f46e-1f3fc","1f46e-1f3fc","police officer: medium-light skin tone",":police_officer_tone2:",":cop_tone2:" "1f46e-1f3fd","1f46e-1f3fd","police officer: medium skin tone",":police_officer_tone3:",":cop_tone3:" "1f46e-1f3fe","1f46e-1f3fe","police officer: medium-dark skin tone",":police_officer_tone4:",":cop_tone4:" "1f46e-1f3ff","1f46e-1f3ff","police officer: dark skin tone",":police_officer_tone5:",":cop_tone5:" "1f477-1f3fb","1f477-1f3fb","construction worker: light skin tone",":construction_worker_tone1:","" "1f477-1f3fc","1f477-1f3fc","construction worker: medium-light skin tone",":construction_worker_tone2:","" "1f477-1f3fd","1f477-1f3fd","construction worker: medium skin tone",":construction_worker_tone3:","" "1f477-1f3fe","1f477-1f3fe","construction worker: medium-dark skin tone",":construction_worker_tone4:","" "1f477-1f3ff","1f477-1f3ff","construction worker: dark skin tone",":construction_worker_tone5:","" "1f478-1f3fb","1f478-1f3fb","princess: light skin tone",":princess_tone1:","" "1f478-1f3fc","1f478-1f3fc","princess: medium-light skin tone",":princess_tone2:","" "1f478-1f3fd","1f478-1f3fd","princess: medium skin tone",":princess_tone3:","" "1f478-1f3fe","1f478-1f3fe","princess: medium-dark skin tone",":princess_tone4:","" "1f938-1f3fb","1f938-1f3fb","person cartwheeling: light skin tone",":person_doing_cartwheel_tone1:",":cartwheel_tone1:" "1f478-1f3ff","1f478-1f3ff","princess: dark skin tone",":princess_tone5:","" "1f482-1f3fb","1f482-1f3fb","guard: light skin tone",":guard_tone1:",":guardsman_tone1:" "1f482-1f3fc","1f482-1f3fc","guard: medium-light skin tone",":guard_tone2:",":guardsman_tone2:" "1f938-1f3fc","1f938-1f3fc","person cartwheeling: medium-light skin tone",":person_doing_cartwheel_tone2:",":cartwheel_tone2:" "1f482-1f3fd","1f482-1f3fd","guard: medium skin tone",":guard_tone3:",":guardsman_tone3:" "1f482-1f3fe","1f482-1f3fe","guard: medium-dark skin tone",":guard_tone4:",":guardsman_tone4:" "1f482-1f3ff","1f482-1f3ff","guard: dark skin tone",":guard_tone5:",":guardsman_tone5:" "1f938-1f3fd","1f938-1f3fd","person cartwheeling: medium skin tone",":person_doing_cartwheel_tone3:",":cartwheel_tone3:" "1f47c-1f3fb","1f47c-1f3fb","baby angel: light skin tone",":angel_tone1:","" "1f47c-1f3fc","1f47c-1f3fc","baby angel: medium-light skin tone",":angel_tone2:","" "1f47c-1f3fd","1f47c-1f3fd","baby angel: medium skin tone",":angel_tone3:","" "1f47c-1f3fe","1f47c-1f3fe","baby angel: medium-dark skin tone",":angel_tone4:","" "1f47c-1f3ff","1f47c-1f3ff","baby angel: dark skin tone",":angel_tone5:","" "1f647-1f3fb","1f647-1f3fb","person bowing: light skin tone",":person_bowing_tone1:",":bow_tone1:" "1f647-1f3fc","1f647-1f3fc","person bowing: medium-light skin tone",":person_bowing_tone2:",":bow_tone2:" "1f647-1f3fd","1f647-1f3fd","person bowing: medium skin tone",":person_bowing_tone3:",":bow_tone3:" "1f647-1f3fe","1f647-1f3fe","person bowing: medium-dark skin tone",":person_bowing_tone4:",":bow_tone4:" "1f647-1f3ff","1f647-1f3ff","person bowing: dark skin tone",":person_bowing_tone5:",":bow_tone5:" "1f481-1f3fb","1f481-1f3fb","person tipping hand: light skin tone",":person_tipping_hand_tone1:",":information_desk_person_tone1:" "1f481-1f3fc","1f481-1f3fc","person tipping hand: medium-light skin tone",":person_tipping_hand_tone2:",":information_desk_person_tone2:" "1f481-1f3fd","1f481-1f3fd","person tipping hand: medium skin tone",":person_tipping_hand_tone3:",":information_desk_person_tone3:" "1f938-1f3fe","1f938-1f3fe","person cartwheeling: medium-dark skin tone",":person_doing_cartwheel_tone4:",":cartwheel_tone4:" "1f481-1f3fe","1f481-1f3fe","person tipping hand: medium-dark skin tone",":person_tipping_hand_tone4:",":information_desk_person_tone4:" "1f481-1f3ff","1f481-1f3ff","person tipping hand: dark skin tone",":person_tipping_hand_tone5:",":information_desk_person_tone5:" "1f645-1f3fb","1f645-1f3fb","person gesturing NO: light skin tone",":person_gesturing_no_tone1:",":no_good_tone1:" "1f938-1f3ff","1f938-1f3ff","person cartwheeling: dark skin tone",":person_doing_cartwheel_tone5:",":cartwheel_tone5:" "1f645-1f3fc","1f645-1f3fc","person gesturing NO: medium-light skin tone",":person_gesturing_no_tone2:",":no_good_tone2:" "1f645-1f3fd","1f645-1f3fd","person gesturing NO: medium skin tone",":person_gesturing_no_tone3:",":no_good_tone3:" "1f645-1f3fe","1f645-1f3fe","person gesturing NO: medium-dark skin tone",":person_gesturing_no_tone4:",":no_good_tone4:" "1f645-1f3ff","1f645-1f3ff","person gesturing NO: dark skin tone",":person_gesturing_no_tone5:",":no_good_tone5:" "1f646-1f3fb","1f646-1f3fb","person gesturing OK: light skin tone",":person_gesturing_ok_tone1:",":ok_woman_tone1:" "1f646-1f3fc","1f646-1f3fc","person gesturing OK: medium-light skin tone",":person_gesturing_ok_tone2:",":ok_woman_tone2:" "1f646-1f3fd","1f646-1f3fd","person gesturing OK: medium skin tone",":person_gesturing_ok_tone3:",":ok_woman_tone3:" "1f646-1f3fe","1f646-1f3fe","person gesturing OK: medium-dark skin tone",":person_gesturing_ok_tone4:",":ok_woman_tone4:" "1f646-1f3ff","1f646-1f3ff","person gesturing OK: dark skin tone",":person_gesturing_ok_tone5:",":ok_woman_tone5:" "1f64b-1f3fb","1f64b-1f3fb","person raising hand: light skin tone",":person_raising_hand_tone1:",":raising_hand_tone1:" "1f64b-1f3fc","1f64b-1f3fc","person raising hand: medium-light skin tone",":person_raising_hand_tone2:",":raising_hand_tone2:" "1f64b-1f3fd","1f64b-1f3fd","person raising hand: medium skin tone",":person_raising_hand_tone3:",":raising_hand_tone3:" "1f64b-1f3fe","1f64b-1f3fe","person raising hand: medium-dark skin tone",":person_raising_hand_tone4:",":raising_hand_tone4:" "1f64b-1f3ff","1f64b-1f3ff","person raising hand: dark skin tone",":person_raising_hand_tone5:",":raising_hand_tone5:" "1f64e-1f3fb","1f64e-1f3fb","person pouting: light skin tone",":person_pouting_tone1:",":person_with_pouting_face_tone1:" "1f64e-1f3fc","1f64e-1f3fc","person pouting: medium-light skin tone",":person_pouting_tone2:",":person_with_pouting_face_tone2:" "1f64e-1f3fd","1f64e-1f3fd","person pouting: medium skin tone",":person_pouting_tone3:",":person_with_pouting_face_tone3:" "1f64e-1f3fe","1f64e-1f3fe","person pouting: medium-dark skin tone",":person_pouting_tone4:",":person_with_pouting_face_tone4:" "1f64e-1f3ff","1f64e-1f3ff","person pouting: dark skin tone",":person_pouting_tone5:",":person_with_pouting_face_tone5:" "1f64d-1f3fb","1f64d-1f3fb","person frowning: light skin tone",":person_frowning_tone1:","" "1f64d-1f3fc","1f64d-1f3fc","person frowning: medium-light skin tone",":person_frowning_tone2:","" "1f64d-1f3fd","1f64d-1f3fd","person frowning: medium skin tone",":person_frowning_tone3:","" "1f64d-1f3fe","1f64d-1f3fe","person frowning: medium-dark skin tone",":person_frowning_tone4:","" "1f64d-1f3ff","1f64d-1f3ff","person frowning: dark skin tone",":person_frowning_tone5:","" "1f486-1f3fb","1f486-1f3fb","person getting massage: light skin tone",":person_getting_massage_tone1:",":massage_tone1:" "1f486-1f3fc","1f486-1f3fc","person getting massage: medium-light skin tone",":person_getting_massage_tone2:",":massage_tone2:" "1f486-1f3fd","1f486-1f3fd","person getting massage: medium skin tone",":person_getting_massage_tone3:",":massage_tone3:" "1f486-1f3fe","1f486-1f3fe","person getting massage: medium-dark skin tone",":person_getting_massage_tone4:",":massage_tone4:" "1f486-1f3ff","1f486-1f3ff","person getting massage: dark skin tone",":person_getting_massage_tone5:",":massage_tone5:" "1f487-1f3fb","1f487-1f3fb","person getting haircut: light skin tone",":person_getting_haircut_tone1:",":haircut_tone1:" "1f487-1f3fc","1f487-1f3fc","person getting haircut: medium-light skin tone",":person_getting_haircut_tone2:",":haircut_tone2:" "1f487-1f3fd","1f487-1f3fd","person getting haircut: medium skin tone",":person_getting_haircut_tone3:",":haircut_tone3:" "1f487-1f3fe","1f487-1f3fe","person getting haircut: medium-dark skin tone",":person_getting_haircut_tone4:",":haircut_tone4:" "1f487-1f3ff","1f487-1f3ff","person getting haircut: dark skin tone",":person_getting_haircut_tone5:",":haircut_tone5:" "1f64c-1f3fb","1f64c-1f3fb","raising hands: light skin tone",":raised_hands_tone1:","" "1f64c-1f3fc","1f64c-1f3fc","raising hands: medium-light skin tone",":raised_hands_tone2:","" "1f64c-1f3fd","1f64c-1f3fd","raising hands: medium skin tone",":raised_hands_tone3:","" "1f64c-1f3fe","1f64c-1f3fe","raising hands: medium-dark skin tone",":raised_hands_tone4:","" "1f64c-1f3ff","1f64c-1f3ff","raising hands: dark skin tone",":raised_hands_tone5:","" "1f44f-1f3fb","1f44f-1f3fb","clapping hands: light skin tone",":clap_tone1:","" "1f44f-1f3fc","1f44f-1f3fc","clapping hands: medium-light skin tone",":clap_tone2:","" "1f44f-1f3fd","1f44f-1f3fd","clapping hands: medium skin tone",":clap_tone3:","" "1f93d-1f3fb","1f93d-1f3fb","person playing water polo: light skin tone",":person_playing_water_polo_tone1:",":water_polo_tone1:" "1f44f-1f3fe","1f44f-1f3fe","clapping hands: medium-dark skin tone",":clap_tone4:","" "1f44f-1f3ff","1f44f-1f3ff","clapping hands: dark skin tone",":clap_tone5:","" "1f93d-1f3fc","1f93d-1f3fc","person playing water polo: medium-light skin tone",":person_playing_water_polo_tone2:",":water_polo_tone2:" "1f442-1f3fb","1f442-1f3fb","ear: light skin tone",":ear_tone1:","" "1f442-1f3fc","1f442-1f3fc","ear: medium-light skin tone",":ear_tone2:","" "1f442-1f3fd","1f442-1f3fd","ear: medium skin tone",":ear_tone3:","" "1f442-1f3fe","1f442-1f3fe","ear: medium-dark skin tone",":ear_tone4:","" "1f442-1f3ff","1f442-1f3ff","ear: dark skin tone",":ear_tone5:","" "1f443-1f3fb","1f443-1f3fb","nose: light skin tone",":nose_tone1:","" "1f443-1f3fc","1f443-1f3fc","nose: medium-light skin tone",":nose_tone2:","" "1f443-1f3fd","1f443-1f3fd","nose: medium skin tone",":nose_tone3:","" "1f443-1f3fe","1f443-1f3fe","nose: medium-dark skin tone",":nose_tone4:","" "1f443-1f3ff","1f443-1f3ff","nose: dark skin tone",":nose_tone5:","" "1f485-1f3fb","1f485-1f3fb","nail polish: light skin tone",":nail_care_tone1:","" "1f485-1f3fc","1f485-1f3fc","nail polish: medium-light skin tone",":nail_care_tone2:","" "1f485-1f3fd","1f485-1f3fd","nail polish: medium skin tone",":nail_care_tone3:","" "1f485-1f3fe","1f485-1f3fe","nail polish: medium-dark skin tone",":nail_care_tone4:","" "1f485-1f3ff","1f485-1f3ff","nail polish: dark skin tone",":nail_care_tone5:","" "1f44b-1f3fb","1f44b-1f3fb","waving hand: light skin tone",":wave_tone1:","" "1f44b-1f3fc","1f44b-1f3fc","waving hand: medium-light skin tone",":wave_tone2:","" "1f44b-1f3fd","1f44b-1f3fd","waving hand: medium skin tone",":wave_tone3:","" "1f44b-1f3fe","1f44b-1f3fe","waving hand: medium-dark skin tone",":wave_tone4:","" "1f44b-1f3ff","1f44b-1f3ff","waving hand: dark skin tone",":wave_tone5:","" "1f44d-1f3fb","1f44d-1f3fb","thumbs up: light skin tone",":thumbsup_tone1:",":+1_tone1:|:thumbup_tone1:" "1f44d-1f3fc","1f44d-1f3fc","thumbs up: medium-light skin tone",":thumbsup_tone2:",":+1_tone2:|:thumbup_tone2:" "1f44d-1f3fd","1f44d-1f3fd","thumbs up: medium skin tone",":thumbsup_tone3:",":+1_tone3:|:thumbup_tone3:" "1f44d-1f3fe","1f44d-1f3fe","thumbs up: medium-dark skin tone",":thumbsup_tone4:",":+1_tone4:|:thumbup_tone4:" "1f44d-1f3ff","1f44d-1f3ff","thumbs up: dark skin tone",":thumbsup_tone5:",":+1_tone5:|:thumbup_tone5:" "1f44e-1f3fb","1f44e-1f3fb","thumbs down: light skin tone",":thumbsdown_tone1:",":-1_tone1:|:thumbdown_tone1:" "1f44e-1f3fc","1f44e-1f3fc","thumbs down: medium-light skin tone",":thumbsdown_tone2:",":-1_tone2:|:thumbdown_tone2:" "1f44e-1f3fd","1f44e-1f3fd","thumbs down: medium skin tone",":thumbsdown_tone3:",":-1_tone3:|:thumbdown_tone3:" "1f44e-1f3fe","1f44e-1f3fe","thumbs down: medium-dark skin tone",":thumbsdown_tone4:",":-1_tone4:|:thumbdown_tone4:" "1f44e-1f3ff","1f44e-1f3ff","thumbs down: dark skin tone",":thumbsdown_tone5:",":-1_tone5:|:thumbdown_tone5:" "261d-1f3fb","261d-1f3fb","index pointing up: light skin tone",":point_up_tone1:","" "261d-1f3fc","261d-1f3fc","index pointing up: medium-light skin tone",":point_up_tone2:","" "261d-1f3fd","261d-1f3fd","index pointing up: medium skin tone",":point_up_tone3:","" "261d-1f3fe","261d-1f3fe","index pointing up: medium-dark skin tone",":point_up_tone4:","" "261d-1f3ff","261d-1f3ff","index pointing up: dark skin tone",":point_up_tone5:","" "1f446-1f3fb","1f446-1f3fb","backhand index pointing up: light skin tone",":point_up_2_tone1:","" "1f446-1f3fc","1f446-1f3fc","backhand index pointing up: medium-light skin tone",":point_up_2_tone2:","" "1f446-1f3fd","1f446-1f3fd","backhand index pointing up: medium skin tone",":point_up_2_tone3:","" "1f446-1f3fe","1f446-1f3fe","backhand index pointing up: medium-dark skin tone",":point_up_2_tone4:","" "1f446-1f3ff","1f446-1f3ff","backhand index pointing up: dark skin tone",":point_up_2_tone5:","" "1f447-1f3fb","1f447-1f3fb","backhand index pointing down: light skin tone",":point_down_tone1:","" "1f447-1f3fc","1f447-1f3fc","backhand index pointing down: medium-light skin tone",":point_down_tone2:","" "1f447-1f3fd","1f447-1f3fd","backhand index pointing down: medium skin tone",":point_down_tone3:","" "1f447-1f3fe","1f447-1f3fe","backhand index pointing down: medium-dark skin tone",":point_down_tone4:","" "1f447-1f3ff","1f447-1f3ff","backhand index pointing down: dark skin tone",":point_down_tone5:","" "1f448-1f3fb","1f448-1f3fb","backhand index pointing left: light skin tone",":point_left_tone1:","" "1f448-1f3fc","1f448-1f3fc","backhand index pointing left: medium-light skin tone",":point_left_tone2:","" "1f448-1f3fd","1f448-1f3fd","backhand index pointing left: medium skin tone",":point_left_tone3:","" "1f448-1f3fe","1f448-1f3fe","backhand index pointing left: medium-dark skin tone",":point_left_tone4:","" "1f448-1f3ff","1f448-1f3ff","backhand index pointing left: dark skin tone",":point_left_tone5:","" "1f449-1f3fb","1f449-1f3fb","backhand index pointing right: light skin tone",":point_right_tone1:","" "1f449-1f3fc","1f449-1f3fc","backhand index pointing right: medium-light skin tone",":point_right_tone2:","" "1f449-1f3fd","1f449-1f3fd","backhand index pointing right: medium skin tone",":point_right_tone3:","" "1f449-1f3fe","1f449-1f3fe","backhand index pointing right: medium-dark skin tone",":point_right_tone4:","" "1f449-1f3ff","1f449-1f3ff","backhand index pointing right: dark skin tone",":point_right_tone5:","" "1f44c-1f3fb","1f44c-1f3fb","OK hand: light skin tone",":ok_hand_tone1:","" "1f44c-1f3fc","1f44c-1f3fc","OK hand: medium-light skin tone",":ok_hand_tone2:","" "1f93d-1f3fd","1f93d-1f3fd","person playing water polo: medium skin tone",":person_playing_water_polo_tone3:",":water_polo_tone3:" "1f44c-1f3fd","1f44c-1f3fd","OK hand: medium skin tone",":ok_hand_tone3:","" "1f44c-1f3fe","1f44c-1f3fe","OK hand: medium-dark skin tone",":ok_hand_tone4:","" "1f93d-1f3fe","1f93d-1f3fe","person playing water polo: medium-dark skin tone",":person_playing_water_polo_tone4:",":water_polo_tone4:" "1f44c-1f3ff","1f44c-1f3ff","OK hand: dark skin tone",":ok_hand_tone5:","" "270c-1f3fb","270c-1f3fb","victory hand: light skin tone",":v_tone1:","" "270c-1f3fc","270c-1f3fc","victory hand: medium-light skin tone",":v_tone2:","" "270c-1f3fd","270c-1f3fd","victory hand: medium skin tone",":v_tone3:","" "270c-1f3fe","270c-1f3fe","victory hand: medium-dark skin tone",":v_tone4:","" "270c-1f3ff","270c-1f3ff","victory hand: dark skin tone",":v_tone5:","" "1f44a-1f3fb","1f44a-1f3fb","oncoming fist: light skin tone",":punch_tone1:","" "1f44a-1f3fc","1f44a-1f3fc","oncoming fist: medium-light skin tone",":punch_tone2:","" "1f44a-1f3fd","1f44a-1f3fd","oncoming fist: medium skin tone",":punch_tone3:","" "1f44a-1f3fe","1f44a-1f3fe","oncoming fist: medium-dark skin tone",":punch_tone4:","" "1f44a-1f3ff","1f44a-1f3ff","oncoming fist: dark skin tone",":punch_tone5:","" "270a-1f3fb","270a-1f3fb","raised fist: light skin tone",":fist_tone1:","" "270a-1f3fc","270a-1f3fc","raised fist: medium-light skin tone",":fist_tone2:","" "270a-1f3fd","270a-1f3fd","raised fist: medium skin tone",":fist_tone3:","" "270a-1f3fe","270a-1f3fe","raised fist: medium-dark skin tone",":fist_tone4:","" "270a-1f3ff","270a-1f3ff","raised fist: dark skin tone",":fist_tone5:","" "270b-1f3fb","270b-1f3fb","raised hand: light skin tone",":raised_hand_tone1:","" "270b-1f3fc","270b-1f3fc","raised hand: medium-light skin tone",":raised_hand_tone2:","" "270b-1f3fd","270b-1f3fd","raised hand: medium skin tone",":raised_hand_tone3:","" "270b-1f3fe","270b-1f3fe","raised hand: medium-dark skin tone",":raised_hand_tone4:","" "270b-1f3ff","270b-1f3ff","raised hand: dark skin tone",":raised_hand_tone5:","" "1f4aa-1f3fb","1f4aa-1f3fb","flexed biceps: light skin tone",":muscle_tone1:","" "1f4aa-1f3fc","1f4aa-1f3fc","flexed biceps: medium-light skin tone",":muscle_tone2:","" "1f4aa-1f3fd","1f4aa-1f3fd","flexed biceps: medium skin tone",":muscle_tone3:","" "1f4aa-1f3fe","1f4aa-1f3fe","flexed biceps: medium-dark skin tone",":muscle_tone4:","" "1f4aa-1f3ff","1f4aa-1f3ff","flexed biceps: dark skin tone",":muscle_tone5:","" "1f450-1f3fb","1f450-1f3fb","open hands: light skin tone",":open_hands_tone1:","" "1f450-1f3fc","1f450-1f3fc","open hands: medium-light skin tone",":open_hands_tone2:","" "1f450-1f3fd","1f450-1f3fd","open hands: medium skin tone",":open_hands_tone3:","" "1f450-1f3fe","1f450-1f3fe","open hands: medium-dark skin tone",":open_hands_tone4:","" "1f450-1f3ff","1f450-1f3ff","open hands: dark skin tone",":open_hands_tone5:","" "1f64f-1f3fb","1f64f-1f3fb","folded hands: light skin tone",":pray_tone1:","" "1f93d-1f3ff","1f93d-1f3ff","person playing water polo: dark skin tone",":person_playing_water_polo_tone5:",":water_polo_tone5:" "1f64f-1f3fc","1f64f-1f3fc","folded hands: medium-light skin tone",":pray_tone2:","" "1f64f-1f3fd","1f64f-1f3fd","folded hands: medium skin tone",":pray_tone3:","" "1f93e-1f3fb","1f93e-1f3fb","person playing handball: light skin tone",":person_playing_handball_tone1:",":handball_tone1:" "1f64f-1f3fe","1f64f-1f3fe","folded hands: medium-dark skin tone",":pray_tone4:","" "1f64f-1f3ff","1f64f-1f3ff","folded hands: dark skin tone",":pray_tone5:","" "1f93e-1f3fc","1f93e-1f3fc","person playing handball: medium-light skin tone",":person_playing_handball_tone2:",":handball_tone2:" "1f3c3-1f3fb","1f3c3-1f3fb","person running: light skin tone",":person_running_tone1:",":runner_tone1:" "1f3c3-1f3fc","1f3c3-1f3fc","person running: medium-light skin tone",":person_running_tone2:",":runner_tone2:" "1f3c3-1f3fd","1f3c3-1f3fd","person running: medium skin tone",":person_running_tone3:",":runner_tone3:" "1f3c3-1f3fe","1f3c3-1f3fe","person running: medium-dark skin tone",":person_running_tone4:",":runner_tone4:" "1f93e-1f3fd","1f93e-1f3fd","person playing handball: medium skin tone",":person_playing_handball_tone3:",":handball_tone3:" "1f3c3-1f3ff","1f3c3-1f3ff","person running: dark skin tone",":person_running_tone5:",":runner_tone5:" "1f6b6-1f3fb","1f6b6-1f3fb","person walking: light skin tone",":person_walking_tone1:",":walking_tone1:" "1f6b6-1f3fc","1f6b6-1f3fc","person walking: medium-light skin tone",":person_walking_tone2:",":walking_tone2:" "1f6b6-1f3fd","1f6b6-1f3fd","person walking: medium skin tone",":person_walking_tone3:",":walking_tone3:" "1f6b6-1f3fe","1f6b6-1f3fe","person walking: medium-dark skin tone",":person_walking_tone4:",":walking_tone4:" "1f6b6-1f3ff","1f6b6-1f3ff","person walking: dark skin tone",":person_walking_tone5:",":walking_tone5:" "1f483-1f3fb","1f483-1f3fb","woman dancing: light skin tone",":dancer_tone1:","" "1f93e-1f3fe","1f93e-1f3fe","person playing handball: medium-dark skin tone",":person_playing_handball_tone4:",":handball_tone4:" "1f483-1f3fc","1f483-1f3fc","woman dancing: medium-light skin tone",":dancer_tone2:","" "1f483-1f3fd","1f483-1f3fd","woman dancing: medium skin tone",":dancer_tone3:","" "1f93e-1f3ff","1f93e-1f3ff","person playing handball: dark skin tone",":person_playing_handball_tone5:",":handball_tone5:" "1f483-1f3fe","1f483-1f3fe","woman dancing: medium-dark skin tone",":dancer_tone4:","" "1f483-1f3ff","1f483-1f3ff","woman dancing: dark skin tone",":dancer_tone5:","" "1f939-1f3fb","1f939-1f3fb","person juggling: light skin tone",":person_juggling_tone1:",":juggling_tone1:|:juggler_tone1:" "1f6a3-1f3fb","1f6a3-1f3fb","person rowing boat: light skin tone",":person_rowing_boat_tone1:",":rowboat_tone1:" "1f6a3-1f3fc","1f6a3-1f3fc","person rowing boat: medium-light skin tone",":person_rowing_boat_tone2:",":rowboat_tone2:" "1f6a3-1f3fd","1f6a3-1f3fd","person rowing boat: medium skin tone",":person_rowing_boat_tone3:",":rowboat_tone3:" "1f6a3-1f3fe","1f6a3-1f3fe","person rowing boat: medium-dark skin tone",":person_rowing_boat_tone4:",":rowboat_tone4:" "1f6a3-1f3ff","1f6a3-1f3ff","person rowing boat: dark skin tone",":person_rowing_boat_tone5:",":rowboat_tone5:" "1f3ca-1f3fb","1f3ca-1f3fb","person swimming: light skin tone",":person_swimming_tone1:",":swimmer_tone1:" "1f3ca-1f3fc","1f3ca-1f3fc","person swimming: medium-light skin tone",":person_swimming_tone2:",":swimmer_tone2:" "1f939-1f3fc","1f939-1f3fc","person juggling: medium-light skin tone",":person_juggling_tone2:",":juggling_tone2:|:juggler_tone2:" "1f3ca-1f3fd","1f3ca-1f3fd","person swimming: medium skin tone",":person_swimming_tone3:",":swimmer_tone3:" "1f3ca-1f3fe","1f3ca-1f3fe","person swimming: medium-dark skin tone",":person_swimming_tone4:",":swimmer_tone4:" "1f3ca-1f3ff","1f3ca-1f3ff","person swimming: dark skin tone",":person_swimming_tone5:",":swimmer_tone5:" "1f939-1f3fd","1f939-1f3fd","person juggling: medium skin tone",":person_juggling_tone3:",":juggling_tone3:|:juggler_tone3:" "1f3c4-1f3fb","1f3c4-1f3fb","person surfing: light skin tone",":person_surfing_tone1:",":surfer_tone1:" "1f3c4-1f3fc","1f3c4-1f3fc","person surfing: medium-light skin tone",":person_surfing_tone2:",":surfer_tone2:" "1f3c4-1f3fd","1f3c4-1f3fd","person surfing: medium skin tone",":person_surfing_tone3:",":surfer_tone3:" "1f3c4-1f3fe","1f3c4-1f3fe","person surfing: medium-dark skin tone",":person_surfing_tone4:",":surfer_tone4:" "1f3c4-1f3ff","1f3c4-1f3ff","person surfing: dark skin tone",":person_surfing_tone5:",":surfer_tone5:" "1f6c0-1f3fb","1f6c0-1f3fb","person taking bath: light skin tone",":bath_tone1:","" "1f6c0-1f3fc","1f6c0-1f3fc","person taking bath: medium-light skin tone",":bath_tone2:","" "1f939-1f3fe","1f939-1f3fe","person juggling: medium-dark skin tone",":person_juggling_tone4:",":juggling_tone4:|:juggler_tone4:" "1f6c0-1f3fd","1f6c0-1f3fd","person taking bath: medium skin tone",":bath_tone3:","" "1f6c0-1f3fe","1f6c0-1f3fe","person taking bath: medium-dark skin tone",":bath_tone4:","" "1f6c0-1f3ff","1f6c0-1f3ff","person taking bath: dark skin tone",":bath_tone5:","" "1f939-1f3ff","1f939-1f3ff","person juggling: dark skin tone",":person_juggling_tone5:",":juggling_tone5:|:juggler_tone5:" "1f6b4-1f3fb","1f6b4-1f3fb","person biking: light skin tone",":person_biking_tone1:",":bicyclist_tone1:" "1f6b4-1f3fc","1f6b4-1f3fc","person biking: medium-light skin tone",":person_biking_tone2:",":bicyclist_tone2:" "1f6b4-1f3fd","1f6b4-1f3fd","person biking: medium skin tone",":person_biking_tone3:",":bicyclist_tone3:" "1f3f3-1f308","1f3f3-fe0f-200d-1f308","rainbow flag",":rainbow_flag:",":gay_pride_flag:" "1f6b4-1f3fe","1f6b4-1f3fe","person biking: medium-dark skin tone",":person_biking_tone4:",":bicyclist_tone4:" "1f6b4-1f3ff","1f6b4-1f3ff","person biking: dark skin tone",":person_biking_tone5:",":bicyclist_tone5:" "1f6b5-1f3fb","1f6b5-1f3fb","person mountain biking: light skin tone",":person_mountain_biking_tone1:",":mountain_bicyclist_tone1:" "1f6b5-1f3fc","1f6b5-1f3fc","person mountain biking: medium-light skin tone",":person_mountain_biking_tone2:",":mountain_bicyclist_tone2:" "1f6b5-1f3fd","1f6b5-1f3fd","person mountain biking: medium skin tone",":person_mountain_biking_tone3:",":mountain_bicyclist_tone3:" "1f6b5-1f3fe","1f6b5-1f3fe","person mountain biking: medium-dark skin tone",":person_mountain_biking_tone4:",":mountain_bicyclist_tone4:" "1f6b5-1f3ff","1f6b5-1f3ff","person mountain biking: dark skin tone",":person_mountain_biking_tone5:",":mountain_bicyclist_tone5:" "1f3c7-1f3fb","1f3c7-1f3fb","horse racing: light skin tone",":horse_racing_tone1:","" "1f3c7-1f3fc","1f3c7-1f3fc","horse racing: medium-light skin tone",":horse_racing_tone2:","" "1f3c7-1f3fd","1f3c7-1f3fd","horse racing: medium skin tone",":horse_racing_tone3:","" "1f3c7-1f3fe","1f3c7-1f3fe","horse racing: medium-dark skin tone",":horse_racing_tone4:","" "1f3c7-1f3ff","1f3c7-1f3ff","horse racing: dark skin tone",":horse_racing_tone5:","" "270d-1f3fb","270d-1f3fb","writing hand: light skin tone",":writing_hand_tone1:","" "270d-1f3fc","270d-1f3fc","writing hand: medium-light skin tone",":writing_hand_tone2:","" "270d-1f3fd","270d-1f3fd","writing hand: medium skin tone",":writing_hand_tone3:","" "270d-1f3fe","270d-1f3fe","writing hand: medium-dark skin tone",":writing_hand_tone4:","" "270d-1f3ff","270d-1f3ff","writing hand: dark skin tone",":writing_hand_tone5:","" "1f590-1f3fb","1f590-1f3fb","hand with fingers splayed: light skin tone",":hand_splayed_tone1:",":raised_hand_with_fingers_splayed_tone1:" "1f590-1f3fc","1f590-1f3fc","hand with fingers splayed: medium-light skin tone",":hand_splayed_tone2:",":raised_hand_with_fingers_splayed_tone2:" "1f590-1f3fd","1f590-1f3fd","hand with fingers splayed: medium skin tone",":hand_splayed_tone3:",":raised_hand_with_fingers_splayed_tone3:" "1f590-1f3fe","1f590-1f3fe","hand with fingers splayed: medium-dark skin tone",":hand_splayed_tone4:",":raised_hand_with_fingers_splayed_tone4:" "1f590-1f3ff","1f590-1f3ff","hand with fingers splayed: dark skin tone",":hand_splayed_tone5:",":raised_hand_with_fingers_splayed_tone5:" "1f595-1f3fb","1f595-1f3fb","middle finger: light skin tone",":middle_finger_tone1:",":reversed_hand_with_middle_finger_extended_tone1:" "1f595-1f3fc","1f595-1f3fc","middle finger: medium-light skin tone",":middle_finger_tone2:",":reversed_hand_with_middle_finger_extended_tone2:" "1f595-1f3fd","1f595-1f3fd","middle finger: medium skin tone",":middle_finger_tone3:",":reversed_hand_with_middle_finger_extended_tone3:" "1f595-1f3fe","1f595-1f3fe","middle finger: medium-dark skin tone",":middle_finger_tone4:",":reversed_hand_with_middle_finger_extended_tone4:" "1f595-1f3ff","1f595-1f3ff","middle finger: dark skin tone",":middle_finger_tone5:",":reversed_hand_with_middle_finger_extended_tone5:" "1f596-1f3fb","1f596-1f3fb","vulcan salute: light skin tone",":vulcan_tone1:",":raised_hand_with_part_between_middle_and_ring_fingers_tone1:" "1f596-1f3fc","1f596-1f3fc","vulcan salute: medium-light skin tone",":vulcan_tone2:",":raised_hand_with_part_between_middle_and_ring_fingers_tone2:" "1f596-1f3fd","1f596-1f3fd","vulcan salute: medium skin tone",":vulcan_tone3:",":raised_hand_with_part_between_middle_and_ring_fingers_tone3:" "1f596-1f3fe","1f596-1f3fe","vulcan salute: medium-dark skin tone",":vulcan_tone4:",":raised_hand_with_part_between_middle_and_ring_fingers_tone4:" "1f596-1f3ff","1f596-1f3ff","vulcan salute: dark skin tone",":vulcan_tone5:",":raised_hand_with_part_between_middle_and_ring_fingers_tone5:" "1f468-1f468-1f466","1f468-200d-1f468-200d-1f466","family: man, man, boy",":family_mmb:","" "1f468-1f468-1f466-1f466","1f468-200d-1f468-200d-1f466-200d-1f466","family: man, man, boy, boy",":family_mmbb:","" "1f468-1f468-1f467","1f468-200d-1f468-200d-1f467","family: man, man, girl",":family_mmg:","" "1f468-1f468-1f467-1f466","1f468-200d-1f468-200d-1f467-200d-1f466","family: man, man, girl, boy",":family_mmgb:","" "1f468-1f468-1f467-1f467","1f468-200d-1f468-200d-1f467-200d-1f467","family: man, man, girl, girl",":family_mmgg:","" "1f468-1f469-1f466-1f466","1f468-200d-1f469-200d-1f466-200d-1f466","family: man, woman, boy, boy",":family_mwbb:","" "1f468-1f469-1f467","1f468-200d-1f469-200d-1f467","family: man, woman, girl",":family_mwg:","" "1f468-1f469-1f467-1f466","1f468-200d-1f469-200d-1f467-200d-1f466","family: man, woman, girl, boy",":family_mwgb:","" "1f468-1f469-1f467-1f467","1f468-200d-1f469-200d-1f467-200d-1f467","family: man, woman, girl, girl",":family_mwgg:","" "1f469-1f469-1f466","1f469-200d-1f469-200d-1f466","family: woman, woman, boy",":family_wwb:","" "1f469-1f469-1f466-1f466","1f469-200d-1f469-200d-1f466-200d-1f466","family: woman, woman, boy, boy",":family_wwbb:","" "1f469-1f469-1f467","1f469-200d-1f469-200d-1f467","family: woman, woman, girl",":family_wwg:","" "1f469-1f469-1f467-1f466","1f469-200d-1f469-200d-1f467-200d-1f466","family: woman, woman, girl, boy",":family_wwgb:","" "1f469-1f469-1f467-1f467","1f469-200d-1f469-200d-1f467-200d-1f467","family: woman, woman, girl, girl",":family_wwgg:","" "1f469-2764-1f469","1f469-200d-2764-fe0f-200d-1f469","couple with heart: woman, woman",":couple_ww:",":couple_with_heart_ww:" "1f468-2764-1f468","1f468-200d-2764-fe0f-200d-1f468","couple with heart: man, man",":couple_mm:",":couple_with_heart_mm:" "1f469-2764-1f48b-1f469","1f469-200d-2764-fe0f-200d-1f48b-200d-1f469","kiss: woman, woman",":kiss_ww:",":couplekiss_ww:" "1f468-2764-1f48b-1f468","1f468-200d-2764-fe0f-200d-1f48b-200d-1f468","kiss: man, man",":kiss_mm:",":couplekiss_mm:" "1f3fb","1f3fb","light skin tone",":tone1:","" "1f3fc","1f3fc","medium-light skin tone",":tone2:","" "1f3fd","1f3fd","medium skin tone",":tone3:","" "1f3fe","1f3fe","medium-dark skin tone",":tone4:","" "1f3ff","1f3ff","dark skin tone",":tone5:","" "002a-20e3","002a-fe0f-20e3","keycap: *",":asterisk:",":keycap_asterisk:" "23cf","23cf-fe0f","eject button",":eject:",":eject_symbol:" "23ed","23ed-fe0f","next track button",":track_next:",":next_track:" "23ee","23ee-fe0f","last track button",":track_previous:",":previous_track:" "23ef","23ef-fe0f","play or pause button",":play_pause:","" "1f441-1f5e8","1f441-fe0f-200d-1f5e8-fe0f","eye in speech bubble",":eye_in_speech_bubble:","" "23f1","23f1-fe0f","stopwatch",":stopwatch:","" "23f2","23f2-fe0f","timer clock",":timer:",":timer_clock:" "23f8","23f8-fe0f","pause button",":pause_button:",":double_vertical_bar:" "23f9","23f9-fe0f","stop button",":stop_button:","" "23fa","23fa-fe0f","record button",":record_button:","" "2602","2602-fe0f","umbrella",":umbrella2:","" "2603","2603-fe0f","snowman",":snowman2:","" "2604","2604-fe0f","comet",":comet:","" "2618","2618-fe0f","shamrock",":shamrock:","" "2620","2620-fe0f","skull and crossbones",":skull_crossbones:",":skull_and_crossbones:" "2622","2622-fe0f","radioactive",":radioactive:",":radioactive_sign:" "2623","2623-fe0f","biohazard",":biohazard:",":biohazard_sign:" "2626","2626-fe0f","orthodox cross",":orthodox_cross:","" "262a","262a-fe0f","star and crescent",":star_and_crescent:","" "262e","262e-fe0f","peace symbol",":peace:",":peace_symbol:" "262f","262f-fe0f","yin yang",":yin_yang:","" "2638","2638-fe0f","wheel of dharma",":wheel_of_dharma:","" "2639","2639-fe0f","frowning face",":frowning2:",":white_frowning_face:" "2692","2692-fe0f","hammer and pick",":hammer_pick:",":hammer_and_pick:" "2694","2694-fe0f","crossed swords",":crossed_swords:","" "2696","2696-fe0f","balance scale",":scales:","" "2697","2697-fe0f","alembic",":alembic:","" "2699","2699-fe0f","gear",":gear:","" "269b","269b-fe0f","atom symbol",":atom:",":atom_symbol:" "269c","269c-fe0f","fleur-de-lis",":fleur-de-lis:","" "26b0","26b0-fe0f","coffin",":coffin:","" "26b1","26b1-fe0f","funeral urn",":urn:",":funeral_urn:" "26c8","26c8-fe0f","cloud with lightning and rain",":thunder_cloud_rain:",":thunder_cloud_and_rain:" "26cf","26cf-fe0f","pick",":pick:","" "26d1","26d1-fe0f","rescue worker’s helmet",":helmet_with_cross:",":helmet_with_white_cross:" "26d3","26d3-fe0f","chains",":chains:","" "26e9","26e9-fe0f","shinto shrine",":shinto_shrine:","" "26f0","26f0-fe0f","mountain",":mountain:","" "26f1","26f1-fe0f","umbrella on ground",":beach_umbrella:",":umbrella_on_ground:" "26f4","26f4-fe0f","ferry",":ferry:","" "26f7","26f7-fe0f","skier",":skier:","" "26f8","26f8-fe0f","ice skate",":ice_skate:","" "26f9","26f9-fe0f","person bouncing ball",":person_bouncing_ball:",":basketball_player:|:person_with_ball:" "2721","2721-fe0f","star of David",":star_of_david:","" "2763","2763-fe0f","heart exclamation",":heart_exclamation:",":heavy_heart_exclamation_mark_ornament:" "1f324","1f324-fe0f","sun behind small cloud",":white_sun_small_cloud:",":white_sun_with_small_cloud:" "1f325","1f325-fe0f","sun behind large cloud",":white_sun_cloud:",":white_sun_behind_cloud:" "1f326","1f326-fe0f","sun behind rain cloud",":white_sun_rain_cloud:",":white_sun_behind_cloud_with_rain:" "1f5b1","1f5b1-fe0f","computer mouse",":mouse_three_button:",":three_button_mouse:" "1f385-1f3fb","1f385-1f3fb","Santa Claus: light skin tone",":santa_tone1:","" "1f385-1f3fc","1f385-1f3fc","Santa Claus: medium-light skin tone",":santa_tone2:","" "1f385-1f3fd","1f385-1f3fd","Santa Claus: medium skin tone",":santa_tone3:","" "1f385-1f3fe","1f385-1f3fe","Santa Claus: medium-dark skin tone",":santa_tone4:","" "1f385-1f3ff","1f385-1f3ff","Santa Claus: dark skin tone",":santa_tone5:","" "1f918-1f3fb","1f918-1f3fb","sign of the horns: light skin tone",":metal_tone1:",":sign_of_the_horns_tone1:" "1f918-1f3fc","1f918-1f3fc","sign of the horns: medium-light skin tone",":metal_tone2:",":sign_of_the_horns_tone2:" "1f918-1f3fd","1f918-1f3fd","sign of the horns: medium skin tone",":metal_tone3:",":sign_of_the_horns_tone3:" "1f918-1f3fe","1f918-1f3fe","sign of the horns: medium-dark skin tone",":metal_tone4:",":sign_of_the_horns_tone4:" "1f918-1f3ff","1f918-1f3ff","sign of the horns: dark skin tone",":metal_tone5:",":sign_of_the_horns_tone5:" "1f3cb-1f3fb","1f3cb-1f3fb","person lifting weights: light skin tone",":person_lifting_weights_tone1:",":lifter_tone1:|:weight_lifter_tone1:" "1f3cb-1f3fc","1f3cb-1f3fc","person lifting weights: medium-light skin tone",":person_lifting_weights_tone2:",":lifter_tone2:|:weight_lifter_tone2:" "1f3cb-1f3fd","1f3cb-1f3fd","person lifting weights: medium skin tone",":person_lifting_weights_tone3:",":lifter_tone3:|:weight_lifter_tone3:" "1f3cb-1f3fe","1f3cb-1f3fe","person lifting weights: medium-dark skin tone",":person_lifting_weights_tone4:",":lifter_tone4:|:weight_lifter_tone4:" "1f3cb-1f3ff","1f3cb-1f3ff","person lifting weights: dark skin tone",":person_lifting_weights_tone5:",":lifter_tone5:|:weight_lifter_tone5:" "26f9-1f3fb","26f9-1f3fb","person bouncing ball: light skin tone",":person_bouncing_ball_tone1:",":basketball_player_tone1:|:person_with_ball_tone1:" "26f9-1f3fc","26f9-1f3fc","person bouncing ball: medium-light skin tone",":person_bouncing_ball_tone2:",":basketball_player_tone2:|:person_with_ball_tone2:" "26f9-1f3fd","26f9-1f3fd","person bouncing ball: medium skin tone",":person_bouncing_ball_tone3:",":basketball_player_tone3:|:person_with_ball_tone3:" "26f9-1f3fe","26f9-1f3fe","person bouncing ball: medium-dark skin tone",":person_bouncing_ball_tone4:",":basketball_player_tone4:|:person_with_ball_tone4:" "26f9-1f3ff","26f9-1f3ff","person bouncing ball: dark skin tone",":person_bouncing_ball_tone5:",":basketball_player_tone5:|:person_with_ball_tone5:" "1f643","1f643","upside-down face",":upside_down:",":upside_down_face:" "1f911","1f911","money-mouth face",":money_mouth:",":money_mouth_face:" "1f913","1f913","nerd face",":nerd:",":nerd_face:" "1f917","1f917","hugging face",":hugging:",":hugging_face:" "1f644","1f644","face with rolling eyes",":rolling_eyes:",":face_with_rolling_eyes:" "1f914","1f914","thinking face",":thinking:",":thinking_face:" "1f910","1f910","zipper-mouth face",":zipper_mouth:",":zipper_mouth_face:" "1f912","1f912","face with thermometer",":thermometer_face:",":face_with_thermometer:" "1f915","1f915","face with head-bandage",":head_bandage:",":face_with_head_bandage:" "1f916","1f916","robot",":robot:",":robot_face:" "1f981","1f981","lion",":lion_face:",":lion:" "1f984","1f984","unicorn",":unicorn:",":unicorn_face:" "1f982","1f982","scorpion",":scorpion:","" "1f980","1f980","crab",":crab:","" "1f983","1f983","turkey",":turkey:","" "1f9c0","1f9c0","cheese wedge",":cheese:",":cheese_wedge:" "1f32d","1f32d","hot dog",":hotdog:",":hot_dog:" "1f32e","1f32e","taco",":taco:","" "1f32f","1f32f","burrito",":burrito:","" "1f37f","1f37f","popcorn",":popcorn:","" "1f37e","1f37e","bottle with popping cork",":champagne:",":bottle_with_popping_cork:" "1f3f9","1f3f9","bow and arrow",":bow_and_arrow:",":archery:" "1f3fa","1f3fa","amphora",":amphora:","" "1f6d0","1f6d0","place of worship",":place_of_worship:",":worship_symbol:" "1f54b","1f54b","kaaba",":kaaba:","" "1f54c","1f54c","mosque",":mosque:","" "1f54d","1f54d","synagogue",":synagogue:","" "1f54e","1f54e","menorah",":menorah:","" "1f4ff","1f4ff","prayer beads",":prayer_beads:","" "1f3cf","1f3cf","cricket game",":cricket_game:",":cricket_bat_ball:" "1f3d0","1f3d0","volleyball",":volleyball:","" "1f3d1","1f3d1","field hockey",":field_hockey:","" "1f3d2","1f3d2","ice hockey",":hockey:","" "1f3d3","1f3d3","ping pong",":ping_pong:",":table_tennis:" "1f3f8","1f3f8","badminton",":badminton:","" "1f1e6-1f1fd","1f1e6-1f1fd","flag: Åland Islands",":flag_ax:",":ax:" "1f1f9-1f1e6","1f1f9-1f1e6","flag: Tristan da Cunha",":flag_ta:",":ta:" "1f1ee-1f1f4","1f1ee-1f1f4","flag: British Indian Ocean Territory",":flag_io:",":io:" "1f1e7-1f1f6","1f1e7-1f1f6","flag: Caribbean Netherlands",":flag_bq:",":bq:" "1f1e8-1f1fd","1f1e8-1f1fd","flag: Christmas Island",":flag_cx:",":cx:" "1f1e8-1f1e8","1f1e8-1f1e8","flag: Cocos (Keeling) Islands",":flag_cc:",":cc:" "1f1ec-1f1ec","1f1ec-1f1ec","flag: Guernsey",":flag_gg:",":gg:" "1f1ee-1f1f2","1f1ee-1f1f2","flag: Isle of Man",":flag_im:",":im:" "1f1fe-1f1f9","1f1fe-1f1f9","flag: Mayotte",":flag_yt:",":yt:" "1f1f3-1f1eb","1f1f3-1f1eb","flag: Norfolk Island",":flag_nf:",":nf:" "1f1f5-1f1f3","1f1f5-1f1f3","flag: Pitcairn Islands",":flag_pn:",":pn:" "1f1e7-1f1f1","1f1e7-1f1f1","flag: St. Barthélemy",":flag_bl:",":bl:" "1f1f5-1f1f2","1f1f5-1f1f2","flag: St. Pierre & Miquelon",":flag_pm:",":pm:" "1f1ec-1f1f8","1f1ec-1f1f8","flag: South Georgia & South Sandwich Islands",":flag_gs:",":gs:" "1f1f9-1f1f0","1f1f9-1f1f0","flag: Tokelau",":flag_tk:",":tk:" "1f1e7-1f1fb","1f1e7-1f1fb","flag: Bouvet Island",":flag_bv:",":bv:" "1f1ed-1f1f2","1f1ed-1f1f2","flag: Heard & McDonald Islands",":flag_hm:",":hm:" "1f1f8-1f1ef","1f1f8-1f1ef","flag: Svalbard & Jan Mayen",":flag_sj:",":sj:" "1f1fa-1f1f2","1f1fa-1f1f2","flag: U.S. Outlying Islands",":flag_um:",":um:" "1f1ee-1f1e8","1f1ee-1f1e8","flag: Canary Islands",":flag_ic:",":ic:" "1f1ea-1f1e6","1f1ea-1f1e6","flag: Ceuta & Melilla",":flag_ea:",":ea:" "1f1e8-1f1f5","1f1e8-1f1f5","flag: Clipperton Island",":flag_cp:",":cp:" "1f1e9-1f1ec","1f1e9-1f1ec","flag: Diego Garcia",":flag_dg:",":dg:" "1f1e6-1f1f8","1f1e6-1f1f8","flag: American Samoa",":flag_as:",":as:" "1f1e6-1f1f6","1f1e6-1f1f6","flag: Antarctica",":flag_aq:",":aq:" "1f1fb-1f1ec","1f1fb-1f1ec","flag: British Virgin Islands",":flag_vg:",":vg:" "1f1e8-1f1f0","1f1e8-1f1f0","flag: Cook Islands",":flag_ck:",":ck:" "1f1e8-1f1fc","1f1e8-1f1fc","flag: Curaçao",":flag_cw:",":cw:" "1f1ea-1f1fa","1f1ea-1f1fa","flag: European Union",":flag_eu:",":eu:" "1f1ec-1f1eb","1f1ec-1f1eb","flag: French Guiana",":flag_gf:",":gf:" "1f1f9-1f1eb","1f1f9-1f1eb","flag: French Southern Territories",":flag_tf:",":tf:" "1f1ec-1f1f5","1f1ec-1f1f5","flag: Guadeloupe",":flag_gp:",":gp:" "1f1f2-1f1f6","1f1f2-1f1f6","flag: Martinique",":flag_mq:",":mq:" "1f1f2-1f1f5","1f1f2-1f1f5","flag: Northern Mariana Islands",":flag_mp:",":mp:" "1f1f7-1f1ea","1f1f7-1f1ea","flag: Réunion",":flag_re:",":re:" "1f1f8-1f1fd","1f1f8-1f1fd","flag: Sint Maarten",":flag_sx:",":sx:" "1f1f8-1f1f8","1f1f8-1f1f8","flag: South Sudan",":flag_ss:",":ss:" "1f1f9-1f1e8","1f1f9-1f1e8","flag: Turks & Caicos Islands",":flag_tc:",":tc:" "1f1f2-1f1eb","1f1f2-1f1eb","flag: St. Martin",":flag_mf:",":mf:" "1f575-1f3fb","1f575-1f3fb","detective: light skin tone",":detective_tone1:",":spy_tone1:|:sleuth_or_spy_tone1:" "1f575-1f3fc","1f575-1f3fc","detective: medium-light skin tone",":detective_tone2:",":spy_tone2:|:sleuth_or_spy_tone2:" "1f575-1f3fd","1f575-1f3fd","detective: medium skin tone",":detective_tone3:",":spy_tone3:|:sleuth_or_spy_tone3:" "1f575-1f3fe","1f575-1f3fe","detective: medium-dark skin tone",":detective_tone4:",":spy_tone4:|:sleuth_or_spy_tone4:" "1f575-1f3ff","1f575-1f3ff","detective: dark skin tone",":detective_tone5:",":spy_tone5:|:sleuth_or_spy_tone5:" "1f941","1f941","drum",":drum:",":drum_with_drumsticks:" "1f990","1f990","shrimp",":shrimp:","" "1f991","1f991","squid",":squid:","" "1f95a","1f95a","egg",":egg:","" "1f95b","1f95b","glass of milk",":milk:",":glass_of_milk:" "1f95c","1f95c","peanuts",":peanuts:",":shelled_peanut:" "1f95d","1f95d","kiwi fruit",":kiwi:",":kiwifruit:" "1f95e","1f95e","pancakes",":pancakes:","" "1f1fc","1f1fc","regional indicator symbol letter w",":regional_indicator_w:","" "1f1fb","1f1fb","regional indicator symbol letter v",":regional_indicator_v:","" "1f1fa","1f1fa","regional indicator symbol letter u",":regional_indicator_u:","" "1f1f9","1f1f9","regional indicator symbol letter t",":regional_indicator_t:","" "1f1f8","1f1f8","regional indicator symbol letter s",":regional_indicator_s:","" "1f1f7","1f1f7","regional indicator symbol letter r",":regional_indicator_r:","" "1f1f6","1f1f6","regional indicator symbol letter q",":regional_indicator_q:","" "1f1f5","1f1f5","regional indicator symbol letter p",":regional_indicator_p:","" "1f1f4","1f1f4","regional indicator symbol letter o",":regional_indicator_o:","" "1f1f3","1f1f3","regional indicator symbol letter n",":regional_indicator_n:","" "1f1f2","1f1f2","regional indicator symbol letter m",":regional_indicator_m:","" "1f1f1","1f1f1","regional indicator symbol letter l",":regional_indicator_l:","" "1f1f0","1f1f0","regional indicator symbol letter k",":regional_indicator_k:","" "1f1ef","1f1ef","regional indicator symbol letter j",":regional_indicator_j:","" "1f1ee","1f1ee","regional indicator symbol letter i",":regional_indicator_i:","" "1f1ed","1f1ed","regional indicator symbol letter h",":regional_indicator_h:","" "1f1ec","1f1ec","regional indicator symbol letter g",":regional_indicator_g:","" "1f1eb","1f1eb","regional indicator symbol letter f",":regional_indicator_f:","" "1f1ea","1f1ea","regional indicator symbol letter e",":regional_indicator_e:","" "1f1e9","1f1e9","regional indicator symbol letter d",":regional_indicator_d:","" "1f1e8","1f1e8","regional indicator symbol letter c",":regional_indicator_c:","" "1f1e7","1f1e7","regional indicator symbol letter b",":regional_indicator_b:","" "1f1e6","1f1e6","regional indicator symbol letter a",":regional_indicator_a:","" "0039","0039-fe0f","digit nine",":digit_nine:","" "0038","0038-fe0f","digit eight",":digit_eight:","" "0037","0037-fe0f","digit seven",":digit_seven:","" "0036","0036-fe0f","digit six",":digit_six:","" "0035","0035-fe0f","digit five",":digit_five:","" "0034","0034-fe0f","digit four",":digit_four:","" "0033","0033-fe0f","digit three",":digit_three:","" "0032","0032-fe0f","digit two",":digit_two:","" "0031","0031-fe0f","digit one",":digit_one:","" "0030","0030-fe0f","digit zero",":digit_zero:","" "1f46f-2642","1f46f-200d-2642-fe0f","men with bunny ears",":men_with_bunny_ears_partying:","" "1f46f-2640","1f46f-200d-2640-fe0f","women with bunny ears",":women_with_bunny_ears_partying:","" "1f3c2-1f3fb","1f3c2-1f3fb","snowboarder: light skin tone",":snowboarder_tone1:",":snowboarder_light_skin_tone:" "1f3cc-2642","1f3cc-fe0f-200d-2642-fe0f","man golfing",":man_golfing:","" "1f3cc-1f3fb-2642","1f3cc-1f3fb-200d-2642-fe0f","man golfing: light skin tone",":man_golfing_tone1:",":man_golfing_light_skin_tone:" "1f3cc-1f3fc-2642","1f3cc-1f3fc-200d-2642-fe0f","man golfing: medium-light skin tone",":man_golfing_tone2:",":man_golfing_medium_light_skin_tone:" "1f3cc-1f3fd-2642","1f3cc-1f3fd-200d-2642-fe0f","man golfing: medium skin tone",":man_golfing_tone3:",":man_golfing_medium_skin_tone:" "1f3cc-1f3fe-2642","1f3cc-1f3fe-200d-2642-fe0f","man golfing: medium-dark skin tone",":man_golfing_tone4:",":man_golfing_medium_dark_skin_tone:" "1f3cc-1f3ff-2642","1f3cc-1f3ff-200d-2642-fe0f","man golfing: dark skin tone",":man_golfing_tone5:",":man_golfing_dark_skin_tone:" "1f3cc-2640","1f3cc-fe0f-200d-2640-fe0f","woman golfing",":woman_golfing:","" "1f3cc-1f3fb-2640","1f3cc-1f3fb-200d-2640-fe0f","woman golfing: light skin tone",":woman_golfing_tone1:",":woman_golfing_light_skin_tone:" "1f3cc-1f3fc-2640","1f3cc-1f3fc-200d-2640-fe0f","woman golfing: medium-light skin tone",":woman_golfing_tone2:",":woman_golfing_medium_light_skin_tone:" "1f3cc-1f3fd-2640","1f3cc-1f3fd-200d-2640-fe0f","woman golfing: medium skin tone",":woman_golfing_tone3:",":woman_golfing_medium_skin_tone:" "1f3cc-1f3fe-2640","1f3cc-1f3fe-200d-2640-fe0f","woman golfing: medium-dark skin tone",":woman_golfing_tone4:",":woman_golfing_medium_dark_skin_tone:" "1f3cc-1f3ff-2640","1f3cc-1f3ff-200d-2640-fe0f","woman golfing: dark skin tone",":woman_golfing_tone5:",":woman_golfing_dark_skin_tone:" "1f93c-2642","1f93c-200d-2642-fe0f","men wrestling",":men_wrestling:","" "1f93c-2640","1f93c-200d-2640-fe0f","women wrestling",":women_wrestling:","" "1f939-1f3ff-2642","1f939-1f3ff-200d-2642-fe0f","man juggling: dark skin tone",":man_juggling_tone5:",":man_juggling_dark_skin_tone:" "1f939-1f3fe-2642","1f939-1f3fe-200d-2642-fe0f","man juggling: medium-dark skin tone",":man_juggling_tone4:",":man_juggling_medium_dark_skin_tone:" "1f939-1f3fd-2642","1f939-1f3fd-200d-2642-fe0f","man juggling: medium skin tone",":man_juggling_tone3:",":man_juggling_medium_skin_tone:" "1f939-1f3fc-2642","1f939-1f3fc-200d-2642-fe0f","man juggling: medium-light skin tone",":man_juggling_tone2:",":man_juggling_medium_light_skin_tone:" "1f939-1f3fb-2642","1f939-1f3fb-200d-2642-fe0f","man juggling: light skin tone",":man_juggling_tone1:",":man_juggling_light_skin_tone:" "1f939-2642","1f939-200d-2642-fe0f","man juggling",":man_juggling:","" "1f939-1f3ff-2640","1f939-1f3ff-200d-2640-fe0f","woman juggling: dark skin tone",":woman_juggling_tone5:",":woman_juggling_dark_skin_tone:" "1f939-1f3fe-2640","1f939-1f3fe-200d-2640-fe0f","woman juggling: medium-dark skin tone",":woman_juggling_tone4:",":woman_juggling_medium_dark_skin_tone:" "1f939-1f3fd-2640","1f939-1f3fd-200d-2640-fe0f","woman juggling: medium skin tone",":woman_juggling_tone3:",":woman_juggling_medium_skin_tone:" "1f939-1f3fc-2640","1f939-1f3fc-200d-2640-fe0f","woman juggling: medium-light skin tone",":woman_juggling_tone2:",":woman_juggling_medium_light_skin_tone:" "1f939-1f3fb-2640","1f939-1f3fb-200d-2640-fe0f","woman juggling: light skin tone",":woman_juggling_tone1:",":woman_juggling_light_skin_tone:" "1f939-2640","1f939-200d-2640-fe0f","woman juggling",":woman_juggling:","" "1f93e-1f3ff-2642","1f93e-1f3ff-200d-2642-fe0f","man playing handball: dark skin tone",":man_playing_handball_tone5:",":man_playing_handball_dark_skin_tone:" "1f93e-1f3fe-2642","1f93e-1f3fe-200d-2642-fe0f","man playing handball: medium-dark skin tone",":man_playing_handball_tone4:",":man_playing_handball_medium_dark_skin_tone:" "1f93e-1f3fd-2642","1f93e-1f3fd-200d-2642-fe0f","man playing handball: medium skin tone",":man_playing_handball_tone3:",":man_playing_handball_medium_skin_tone:" "1f93e-1f3fc-2642","1f93e-1f3fc-200d-2642-fe0f","man playing handball: medium-light skin tone",":man_playing_handball_tone2:",":man_playing_handball_medium_light_skin_tone:" "1f93e-1f3fb-2642","1f93e-1f3fb-200d-2642-fe0f","man playing handball: light skin tone",":man_playing_handball_tone1:",":man_playing_handball_light_skin_tone:" "1f93e-2642","1f93e-200d-2642-fe0f","man playing handball",":man_playing_handball:","" "1f93e-1f3ff-2640","1f93e-1f3ff-200d-2640-fe0f","woman playing handball: dark skin tone",":woman_playing_handball_tone5:",":woman_playing_handball_dark_skin_tone:" "1f93e-1f3fe-2640","1f93e-1f3fe-200d-2640-fe0f","woman playing handball: medium-dark skin tone",":woman_playing_handball_tone4:",":woman_playing_handball_medium_dark_skin_tone:" "1f93e-1f3fd-2640","1f93e-1f3fd-200d-2640-fe0f","woman playing handball: medium skin tone",":woman_playing_handball_tone3:",":woman_playing_handball_medium_skin_tone:" "1f93e-1f3fc-2640","1f93e-1f3fc-200d-2640-fe0f","woman playing handball: medium-light skin tone",":woman_playing_handball_tone2:",":woman_playing_handball_medium_light_skin_tone:" "1f93e-1f3fb-2640","1f93e-1f3fb-200d-2640-fe0f","woman playing handball: light skin tone",":woman_playing_handball_tone1:",":woman_playing_handball_light_skin_tone:" "1f93e-2640","1f93e-200d-2640-fe0f","woman playing handball",":woman_playing_handball:","" "1f93d-1f3ff-2642","1f93d-1f3ff-200d-2642-fe0f","man playing water polo: dark skin tone",":man_playing_water_polo_tone5:",":man_playing_water_polo_dark_skin_tone:" "1f93d-1f3fe-2642","1f93d-1f3fe-200d-2642-fe0f","man playing water polo: medium-dark skin tone",":man_playing_water_polo_tone4:",":man_playing_water_polo_medium_dark_skin_tone:" "1f93d-1f3fd-2642","1f93d-1f3fd-200d-2642-fe0f","man playing water polo: medium skin tone",":man_playing_water_polo_tone3:",":man_playing_water_polo_medium_skin_tone:" "1f93d-1f3fc-2642","1f93d-1f3fc-200d-2642-fe0f","man playing water polo: medium-light skin tone",":man_playing_water_polo_tone2:",":man_playing_water_polo_medium_light_skin_tone:" "1f93d-1f3fb-2642","1f93d-1f3fb-200d-2642-fe0f","man playing water polo: light skin tone",":man_playing_water_polo_tone1:",":man_playing_water_polo_light_skin_tone:" "1f93d-2642","1f93d-200d-2642-fe0f","man playing water polo",":man_playing_water_polo:","" "1f93d-1f3ff-2640","1f93d-1f3ff-200d-2640-fe0f","woman playing water polo: dark skin tone",":woman_playing_water_polo_tone5:",":woman_playing_water_polo_dark_skin_tone:" "1f93d-1f3fe-2640","1f93d-1f3fe-200d-2640-fe0f","woman playing water polo: medium-dark skin tone",":woman_playing_water_polo_tone4:",":woman_playing_water_polo_medium_dark_skin_tone:" "1f93d-1f3fd-2640","1f93d-1f3fd-200d-2640-fe0f","woman playing water polo: medium skin tone",":woman_playing_water_polo_tone3:",":woman_playing_water_polo_medium_skin_tone:" "1f93d-1f3fc-2640","1f93d-1f3fc-200d-2640-fe0f","woman playing water polo: medium-light skin tone",":woman_playing_water_polo_tone2:",":woman_playing_water_polo_medium_light_skin_tone:" "1f93d-1f3fb-2640","1f93d-1f3fb-200d-2640-fe0f","woman playing water polo: light skin tone",":woman_playing_water_polo_tone1:",":woman_playing_water_polo_light_skin_tone:" "1f93d-2640","1f93d-200d-2640-fe0f","woman playing water polo",":woman_playing_water_polo:","" "1f938-1f3ff-2642","1f938-1f3ff-200d-2642-fe0f","man cartwheeling: dark skin tone",":man_cartwheeling_tone5:",":man_cartwheeling_dark_skin_tone:" "1f938-1f3fe-2642","1f938-1f3fe-200d-2642-fe0f","man cartwheeling: medium-dark skin tone",":man_cartwheeling_tone4:",":man_cartwheeling_medium_dark_skin_tone:" "1f938-1f3fd-2642","1f938-1f3fd-200d-2642-fe0f","man cartwheeling: medium skin tone",":man_cartwheeling_tone3:",":man_cartwheeling_medium_skin_tone:" "1f938-1f3fc-2642","1f938-1f3fc-200d-2642-fe0f","man cartwheeling: medium-light skin tone",":man_cartwheeling_tone2:",":man_cartwheeling_medium_light_skin_tone:" "1f938-1f3fb-2642","1f938-1f3fb-200d-2642-fe0f","man cartwheeling: light skin tone",":man_cartwheeling_tone1:",":man_cartwheeling_light_skin_tone:" "1f938-2642","1f938-200d-2642-fe0f","man cartwheeling",":man_cartwheeling:","" "1f938-1f3ff-2640","1f938-1f3ff-200d-2640-fe0f","woman cartwheeling: dark skin tone",":woman_cartwheeling_tone5:",":woman_cartwheeling_dark_skin_tone:" "1f938-1f3fe-2640","1f938-1f3fe-200d-2640-fe0f","woman cartwheeling: medium-dark skin tone",":woman_cartwheeling_tone4:",":woman_cartwheeling_medium_dark_skin_tone:" "1f938-1f3fd-2640","1f938-1f3fd-200d-2640-fe0f","woman cartwheeling: medium skin tone",":woman_cartwheeling_tone3:",":woman_cartwheeling_medium_skin_tone:" "1f938-1f3fc-2640","1f938-1f3fc-200d-2640-fe0f","woman cartwheeling: medium-light skin tone",":woman_cartwheeling_tone2:",":woman_cartwheeling_medium_light_skin_tone:" "1f938-1f3fb-2640","1f938-1f3fb-200d-2640-fe0f","woman cartwheeling: light skin tone",":woman_cartwheeling_tone1:",":woman_cartwheeling_light_skin_tone:" "1f938-2640","1f938-200d-2640-fe0f","woman cartwheeling",":woman_cartwheeling:","" "1f6b6-1f3ff-2642","1f6b6-1f3ff-200d-2642-fe0f","man walking: dark skin tone",":man_walking_tone5:",":man_walking_dark_skin_tone:" "1f6b6-1f3fe-2642","1f6b6-1f3fe-200d-2642-fe0f","man walking: medium-dark skin tone",":man_walking_tone4:",":man_walking_medium_dark_skin_tone:" "1f6b6-1f3fd-2642","1f6b6-1f3fd-200d-2642-fe0f","man walking: medium skin tone",":man_walking_tone3:",":man_walking_medium_skin_tone:" "1f6b6-1f3fc-2642","1f6b6-1f3fc-200d-2642-fe0f","man walking: medium-light skin tone",":man_walking_tone2:",":man_walking_medium_light_skin_tone:" "1f6b6-1f3fb-2642","1f6b6-1f3fb-200d-2642-fe0f","man walking: light skin tone",":man_walking_tone1:",":man_walking_light_skin_tone:" "1f6b6-2642","1f6b6-200d-2642-fe0f","man walking",":man_walking:","" "1f6b6-1f3ff-2640","1f6b6-1f3ff-200d-2640-fe0f","woman walking: dark skin tone",":woman_walking_tone5:",":woman_walking_dark_skin_tone:" "1f6b6-1f3fe-2640","1f6b6-1f3fe-200d-2640-fe0f","woman walking: medium-dark skin tone",":woman_walking_tone4:",":woman_walking_medium_dark_skin_tone:" "1f6b6-1f3fd-2640","1f6b6-1f3fd-200d-2640-fe0f","woman walking: medium skin tone",":woman_walking_tone3:",":woman_walking_medium_skin_tone:" "1f6b6-1f3fc-2640","1f6b6-1f3fc-200d-2640-fe0f","woman walking: medium-light skin tone",":woman_walking_tone2:",":woman_walking_medium_light_skin_tone:" "1f6b6-1f3fb-2640","1f6b6-1f3fb-200d-2640-fe0f","woman walking: light skin tone",":woman_walking_tone1:",":woman_walking_light_skin_tone:" "1f6b6-2640","1f6b6-200d-2640-fe0f","woman walking",":woman_walking:","" "1f6b5-1f3ff-2642","1f6b5-1f3ff-200d-2642-fe0f","man mountain biking: dark skin tone",":man_mountain_biking_tone5:",":man_mountain_biking_dark_skin_tone:" "1f6b5-1f3fe-2642","1f6b5-1f3fe-200d-2642-fe0f","man mountain biking: medium-dark skin tone",":man_mountain_biking_tone4:",":man_mountain_biking_medium_dark_skin_tone:" "1f6b5-1f3fd-2642","1f6b5-1f3fd-200d-2642-fe0f","man mountain biking: medium skin tone",":man_mountain_biking_tone3:",":man_mountain_biking_medium_skin_tone:" "1f6b5-1f3fc-2642","1f6b5-1f3fc-200d-2642-fe0f","man mountain biking: medium-light skin tone",":man_mountain_biking_tone2:",":man_mountain_biking_medium_light_skin_tone:" "1f6b5-1f3fb-2642","1f6b5-1f3fb-200d-2642-fe0f","man mountain biking: light skin tone",":man_mountain_biking_tone1:",":man_mountain_biking_light_skin_tone:" "1f6b5-2642","1f6b5-200d-2642-fe0f","man mountain biking",":man_mountain_biking:","" "1f6b5-1f3ff-2640","1f6b5-1f3ff-200d-2640-fe0f","woman mountain biking: dark skin tone",":woman_mountain_biking_tone5:",":woman_mountain_biking_dark_skin_tone:" "1f6b5-1f3fe-2640","1f6b5-1f3fe-200d-2640-fe0f","woman mountain biking: medium-dark skin tone",":woman_mountain_biking_tone4:",":woman_mountain_biking_medium_dark_skin_tone:" "1f6b5-1f3fd-2640","1f6b5-1f3fd-200d-2640-fe0f","woman mountain biking: medium skin tone",":woman_mountain_biking_tone3:",":woman_mountain_biking_medium_skin_tone:" "1f6b5-1f3fc-2640","1f6b5-1f3fc-200d-2640-fe0f","woman mountain biking: medium-light skin tone",":woman_mountain_biking_tone2:",":woman_mountain_biking_medium_light_skin_tone:" "1f6b5-1f3fb-2640","1f6b5-1f3fb-200d-2640-fe0f","woman mountain biking: light skin tone",":woman_mountain_biking_tone1:",":woman_mountain_biking_light_skin_tone:" "1f6b5-2640","1f6b5-200d-2640-fe0f","woman mountain biking",":woman_mountain_biking:","" "1f6b4-1f3ff-2642","1f6b4-1f3ff-200d-2642-fe0f","man biking: dark skin tone",":man_biking_tone5:",":man_biking_dark_skin_tone:" "1f6b4-1f3fe-2642","1f6b4-1f3fe-200d-2642-fe0f","man biking: medium-dark skin tone",":man_biking_tone4:",":man_biking_medium_dark_skin_tone:" "1f6b4-1f3fd-2642","1f6b4-1f3fd-200d-2642-fe0f","man biking: medium skin tone",":man_biking_tone3:",":man_biking_medium_skin_tone:" "1f6b4-1f3fc-2642","1f6b4-1f3fc-200d-2642-fe0f","man biking: medium-light skin tone",":man_biking_tone2:",":man_biking_medium_light_skin_tone:" "1f6b4-1f3fb-2642","1f6b4-1f3fb-200d-2642-fe0f","man biking: light skin tone",":man_biking_tone1:",":man_biking_light_skin_tone:" "1f6b4-2642","1f6b4-200d-2642-fe0f","man biking",":man_biking:","" "1f6b4-1f3ff-2640","1f6b4-1f3ff-200d-2640-fe0f","woman biking: dark skin tone",":woman_biking_tone5:",":woman_biking_dark_skin_tone:" "1f6b4-1f3fe-2640","1f6b4-1f3fe-200d-2640-fe0f","woman biking: medium-dark skin tone",":woman_biking_tone4:",":woman_biking_medium_dark_skin_tone:" "1f6b4-1f3fd-2640","1f6b4-1f3fd-200d-2640-fe0f","woman biking: medium skin tone",":woman_biking_tone3:",":woman_biking_medium_skin_tone:" "1f6b4-1f3fc-2640","1f6b4-1f3fc-200d-2640-fe0f","woman biking: medium-light skin tone",":woman_biking_tone2:",":woman_biking_medium_light_skin_tone:" "1f6b4-1f3fb-2640","1f6b4-1f3fb-200d-2640-fe0f","woman biking: light skin tone",":woman_biking_tone1:",":woman_biking_light_skin_tone:" "1f6b4-2640","1f6b4-200d-2640-fe0f","woman biking",":woman_biking:","" "1f6a3-1f3ff-2642","1f6a3-1f3ff-200d-2642-fe0f","man rowing boat: dark skin tone",":man_rowing_boat_tone5:",":man_rowing_boat_dark_skin_tone:" "1f6a3-1f3fe-2642","1f6a3-1f3fe-200d-2642-fe0f","man rowing boat: medium-dark skin tone",":man_rowing_boat_tone4:",":man_rowing_boat_medium_dark_skin_tone:" "1f6a3-1f3fd-2642","1f6a3-1f3fd-200d-2642-fe0f","man rowing boat: medium skin tone",":man_rowing_boat_tone3:",":man_rowing_boat_medium_skin_tone:" "1f6a3-1f3fc-2642","1f6a3-1f3fc-200d-2642-fe0f","man rowing boat: medium-light skin tone",":man_rowing_boat_tone2:",":man_rowing_boat_medium_light_skin_tone:" "1f6a3-1f3fb-2642","1f6a3-1f3fb-200d-2642-fe0f","man rowing boat: light skin tone",":man_rowing_boat_tone1:",":man_rowing_boat_light_skin_tone:" "1f6a3-2642","1f6a3-200d-2642-fe0f","man rowing boat",":man_rowing_boat:","" "1f6a3-1f3ff-2640","1f6a3-1f3ff-200d-2640-fe0f","woman rowing boat: dark skin tone",":woman_rowing_boat_tone5:",":woman_rowing_boat_dark_skin_tone:" "1f6a3-1f3fe-2640","1f6a3-1f3fe-200d-2640-fe0f","woman rowing boat: medium-dark skin tone",":woman_rowing_boat_tone4:",":woman_rowing_boat_medium_dark_skin_tone:" "1f6a3-1f3fd-2640","1f6a3-1f3fd-200d-2640-fe0f","woman rowing boat: medium skin tone",":woman_rowing_boat_tone3:",":woman_rowing_boat_medium_skin_tone:" "1f6a3-1f3fc-2640","1f6a3-1f3fc-200d-2640-fe0f","woman rowing boat: medium-light skin tone",":woman_rowing_boat_tone2:",":woman_rowing_boat_medium_light_skin_tone:" "1f6a3-1f3fb-2640","1f6a3-1f3fb-200d-2640-fe0f","woman rowing boat: light skin tone",":woman_rowing_boat_tone1:",":woman_rowing_boat_light_skin_tone:" "1f6a3-2640","1f6a3-200d-2640-fe0f","woman rowing boat",":woman_rowing_boat:","" "1f3cb-1f3ff-2642","1f3cb-1f3ff-200d-2642-fe0f","man lifting weights: dark skin tone",":man_lifting_weights_tone5:",":man_lifting_weights_dark_skin_tone:" "1f3cb-1f3fe-2642","1f3cb-1f3fe-200d-2642-fe0f","man lifting weights: medium-dark skin tone",":man_lifting_weights_tone4:",":man_lifting_weights_medium_dark_skin_tone:" "1f3cb-1f3fd-2642","1f3cb-1f3fd-200d-2642-fe0f","man lifting weights: medium skin tone",":man_lifting_weights_tone3:",":man_lifting_weights_medium_skin_tone:" "1f3cb-1f3fc-2642","1f3cb-1f3fc-200d-2642-fe0f","man lifting weights: medium-light skin tone",":man_lifting_weights_tone2:",":man_lifting_weights_medium_light_skin_tone:" "1f3cb-1f3fb-2642","1f3cb-1f3fb-200d-2642-fe0f","man lifting weights: light skin tone",":man_lifting_weights_tone1:",":man_lifting_weights_light_skin_tone:" "1f3cb-2642","1f3cb-fe0f-200d-2642-fe0f","man lifting weights",":man_lifting_weights:","" "1f3cb-1f3ff-2640","1f3cb-1f3ff-200d-2640-fe0f","woman lifting weights: dark skin tone",":woman_lifting_weights_tone5:",":woman_lifting_weights_dark_skin_tone:" "1f3cb-1f3fe-2640","1f3cb-1f3fe-200d-2640-fe0f","woman lifting weights: medium-dark skin tone",":woman_lifting_weights_tone4:",":woman_lifting_weights_medium_dark_skin_tone:" "1f3cb-1f3fd-2640","1f3cb-1f3fd-200d-2640-fe0f","woman lifting weights: medium skin tone",":woman_lifting_weights_tone3:",":woman_lifting_weights_medium_skin_tone:" "1f3cb-1f3fc-2640","1f3cb-1f3fc-200d-2640-fe0f","woman lifting weights: medium-light skin tone",":woman_lifting_weights_tone2:",":woman_lifting_weights_medium_light_skin_tone:" "1f3cb-1f3fb-2640","1f3cb-1f3fb-200d-2640-fe0f","woman lifting weights: light skin tone",":woman_lifting_weights_tone1:",":woman_lifting_weights_light_skin_tone:" "1f3cb-2640","1f3cb-fe0f-200d-2640-fe0f","woman lifting weights",":woman_lifting_weights:","" "1f3ca-1f3ff-2642","1f3ca-1f3ff-200d-2642-fe0f","man swimming: dark skin tone",":man_swimming_tone5:",":man_swimming_dark_skin_tone:" "1f3ca-1f3fe-2642","1f3ca-1f3fe-200d-2642-fe0f","man swimming: medium-dark skin tone",":man_swimming_tone4:",":man_swimming_medium_dark_skin_tone:" "1f3ca-1f3fd-2642","1f3ca-1f3fd-200d-2642-fe0f","man swimming: medium skin tone",":man_swimming_tone3:",":man_swimming_medium_skin_tone:" "1f3ca-1f3fc-2642","1f3ca-1f3fc-200d-2642-fe0f","man swimming: medium-light skin tone",":man_swimming_tone2:",":man_swimming_medium_light_skin_tone:" "1f3ca-1f3fb-2642","1f3ca-1f3fb-200d-2642-fe0f","man swimming: light skin tone",":man_swimming_tone1:",":man_swimming_light_skin_tone:" "1f3ca-2642","1f3ca-200d-2642-fe0f","man swimming",":man_swimming:","" "1f3ca-1f3ff-2640","1f3ca-1f3ff-200d-2640-fe0f","woman swimming: dark skin tone",":woman_swimming_tone5:",":woman_swimming_dark_skin_tone:" "1f3ca-1f3fe-2640","1f3ca-1f3fe-200d-2640-fe0f","woman swimming: medium-dark skin tone",":woman_swimming_tone4:",":woman_swimming_medium_dark_skin_tone:" "1f3ca-1f3fd-2640","1f3ca-1f3fd-200d-2640-fe0f","woman swimming: medium skin tone",":woman_swimming_tone3:",":woman_swimming_medium_skin_tone:" "1f3ca-1f3fc-2640","1f3ca-1f3fc-200d-2640-fe0f","woman swimming: medium-light skin tone",":woman_swimming_tone2:",":woman_swimming_medium_light_skin_tone:" "1f3ca-1f3fb-2640","1f3ca-1f3fb-200d-2640-fe0f","woman swimming: light skin tone",":woman_swimming_tone1:",":woman_swimming_light_skin_tone:" "1f3ca-2640","1f3ca-200d-2640-fe0f","woman swimming",":woman_swimming:","" "1f3c4-1f3ff-2642","1f3c4-1f3ff-200d-2642-fe0f","man surfing: dark skin tone",":man_surfing_tone5:",":man_surfing_dark_skin_tone:" "1f3c4-1f3fe-2642","1f3c4-1f3fe-200d-2642-fe0f","man surfing: medium-dark skin tone",":man_surfing_tone4:",":man_surfing_medium_dark_skin_tone:" "1f3c4-1f3fd-2642","1f3c4-1f3fd-200d-2642-fe0f","man surfing: medium skin tone",":man_surfing_tone3:",":man_surfing_medium_skin_tone:" "1f3c4-1f3fc-2642","1f3c4-1f3fc-200d-2642-fe0f","man surfing: medium-light skin tone",":man_surfing_tone2:",":man_surfing_medium_light_skin_tone:" "1f3c4-1f3fb-2642","1f3c4-1f3fb-200d-2642-fe0f","man surfing: light skin tone",":man_surfing_tone1:",":man_surfing_light_skin_tone:" "1f3c4-2642","1f3c4-200d-2642-fe0f","man surfing",":man_surfing:","" "1f3c4-1f3ff-2640","1f3c4-1f3ff-200d-2640-fe0f","woman surfing: dark skin tone",":woman_surfing_tone5:",":woman_surfing_dark_skin_tone:" "1f3c4-1f3fe-2640","1f3c4-1f3fe-200d-2640-fe0f","woman surfing: medium-dark skin tone",":woman_surfing_tone4:",":woman_surfing_medium_dark_skin_tone:" "1f3c4-1f3fd-2640","1f3c4-1f3fd-200d-2640-fe0f","woman surfing: medium skin tone",":woman_surfing_tone3:",":woman_surfing_medium_skin_tone:" "1f3c4-1f3fc-2640","1f3c4-1f3fc-200d-2640-fe0f","woman surfing: medium-light skin tone",":woman_surfing_tone2:",":woman_surfing_medium_light_skin_tone:" "1f3c4-1f3fb-2640","1f3c4-1f3fb-200d-2640-fe0f","woman surfing: light skin tone",":woman_surfing_tone1:",":woman_surfing_light_skin_tone:" "1f3c4-2640","1f3c4-200d-2640-fe0f","woman surfing",":woman_surfing:","" "1f3c3-1f3ff-2642","1f3c3-1f3ff-200d-2642-fe0f","man running: dark skin tone",":man_running_tone5:",":man_running_dark_skin_tone:" "1f3c3-1f3fe-2642","1f3c3-1f3fe-200d-2642-fe0f","man running: medium-dark skin tone",":man_running_tone4:",":man_running_medium_dark_skin_tone:" "1f3c3-1f3fd-2642","1f3c3-1f3fd-200d-2642-fe0f","man running: medium skin tone",":man_running_tone3:",":man_running_medium_skin_tone:" "1f3c3-1f3fc-2642","1f3c3-1f3fc-200d-2642-fe0f","man running: medium-light skin tone",":man_running_tone2:",":man_running_medium_light_skin_tone:" "1f3c3-1f3fb-2642","1f3c3-1f3fb-200d-2642-fe0f","man running: light skin tone",":man_running_tone1:",":man_running_light_skin_tone:" "1f3c3-2642","1f3c3-200d-2642-fe0f","man running",":man_running:","" "1f3c3-1f3ff-2640","1f3c3-1f3ff-200d-2640-fe0f","woman running: dark skin tone",":woman_running_tone5:",":woman_running_dark_skin_tone:" "1f3c3-1f3fe-2640","1f3c3-1f3fe-200d-2640-fe0f","woman running: medium-dark skin tone",":woman_running_tone4:",":woman_running_medium_dark_skin_tone:" "1f3c3-1f3fd-2640","1f3c3-1f3fd-200d-2640-fe0f","woman running: medium skin tone",":woman_running_tone3:",":woman_running_medium_skin_tone:" "1f3c3-1f3fc-2640","1f3c3-1f3fc-200d-2640-fe0f","woman running: medium-light skin tone",":woman_running_tone2:",":woman_running_medium_light_skin_tone:" "1f3c3-1f3fb-2640","1f3c3-1f3fb-200d-2640-fe0f","woman running: light skin tone",":woman_running_tone1:",":woman_running_light_skin_tone:" "1f3c3-2640","1f3c3-200d-2640-fe0f","woman running",":woman_running:","" "26f9-1f3ff-2642","26f9-1f3ff-200d-2642-fe0f","man bouncing ball: dark skin tone",":man_bouncing_ball_tone5:",":man_bouncing_ball_dark_skin_tone:" "26f9-1f3fe-2642","26f9-1f3fe-200d-2642-fe0f","man bouncing ball: medium-dark skin tone",":man_bouncing_ball_tone4:",":man_bouncing_ball_medium_dark_skin_tone:" "26f9-1f3fd-2642","26f9-1f3fd-200d-2642-fe0f","man bouncing ball: medium skin tone",":man_bouncing_ball_tone3:",":man_bouncing_ball_medium_skin_tone:" "26f9-1f3fc-2642","26f9-1f3fc-200d-2642-fe0f","man bouncing ball: medium-light skin tone",":man_bouncing_ball_tone2:",":man_bouncing_ball_medium_light_skin_tone:" "26f9-1f3fb-2642","26f9-1f3fb-200d-2642-fe0f","man bouncing ball: light skin tone",":man_bouncing_ball_tone1:",":man_bouncing_ball_light_skin_tone:" "26f9-2642","26f9-fe0f-200d-2642-fe0f","man bouncing ball",":man_bouncing_ball:","" "26f9-1f3ff-2640","26f9-1f3ff-200d-2640-fe0f","woman bouncing ball: dark skin tone",":woman_bouncing_ball_tone5:",":woman_bouncing_ball_dark_skin_tone:" "26f9-1f3fe-2640","26f9-1f3fe-200d-2640-fe0f","woman bouncing ball: medium-dark skin tone",":woman_bouncing_ball_tone4:",":woman_bouncing_ball_medium_dark_skin_tone:" "26f9-1f3fd-2640","26f9-1f3fd-200d-2640-fe0f","woman bouncing ball: medium skin tone",":woman_bouncing_ball_tone3:",":woman_bouncing_ball_medium_skin_tone:" "26f9-1f3fc-2640","26f9-1f3fc-200d-2640-fe0f","woman bouncing ball: medium-light skin tone",":woman_bouncing_ball_tone2:",":woman_bouncing_ball_medium_light_skin_tone:" "26f9-1f3fb-2640","26f9-1f3fb-200d-2640-fe0f","woman bouncing ball: light skin tone",":woman_bouncing_ball_tone1:",":woman_bouncing_ball_light_skin_tone:" "26f9-2640","26f9-fe0f-200d-2640-fe0f","woman bouncing ball",":woman_bouncing_ball:","" "1f937-1f3ff-2642","1f937-1f3ff-200d-2642-fe0f","man shrugging: dark skin tone",":man_shrugging_tone5:",":man_shrugging_dark_skin_tone:" "1f937-1f3fe-2642","1f937-1f3fe-200d-2642-fe0f","man shrugging: medium-dark skin tone",":man_shrugging_tone4:",":man_shrugging_medium_dark_skin_tone:" "1f937-1f3fd-2642","1f937-1f3fd-200d-2642-fe0f","man shrugging: medium skin tone",":man_shrugging_tone3:",":man_shrugging_medium_skin_tone:" "1f937-1f3fc-2642","1f937-1f3fc-200d-2642-fe0f","man shrugging: medium-light skin tone",":man_shrugging_tone2:",":man_shrugging_medium_light_skin_tone:" "1f937-1f3fb-2642","1f937-1f3fb-200d-2642-fe0f","man shrugging: light skin tone",":man_shrugging_tone1:",":man_shrugging_light_skin_tone:" "1f937-2642","1f937-200d-2642-fe0f","man shrugging",":man_shrugging:","" "1f937-1f3ff-2640","1f937-1f3ff-200d-2640-fe0f","woman shrugging: dark skin tone",":woman_shrugging_tone5:",":woman_shrugging_dark_skin_tone:" "1f937-1f3fe-2640","1f937-1f3fe-200d-2640-fe0f","woman shrugging: medium-dark skin tone",":woman_shrugging_tone4:",":woman_shrugging_medium_dark_skin_tone:" "1f937-1f3fd-2640","1f937-1f3fd-200d-2640-fe0f","woman shrugging: medium skin tone",":woman_shrugging_tone3:",":woman_shrugging_medium_skin_tone:" "1f937-1f3fc-2640","1f937-1f3fc-200d-2640-fe0f","woman shrugging: medium-light skin tone",":woman_shrugging_tone2:",":woman_shrugging_medium_light_skin_tone:" "1f937-1f3fb-2640","1f937-1f3fb-200d-2640-fe0f","woman shrugging: light skin tone",":woman_shrugging_tone1:",":woman_shrugging_light_skin_tone:" "1f937-2640","1f937-200d-2640-fe0f","woman shrugging",":woman_shrugging:","" "1f926-1f3ff-2642","1f926-1f3ff-200d-2642-fe0f","man facepalming: dark skin tone",":man_facepalming_tone5:",":man_facepalming_dark_skin_tone:" "1f926-1f3fe-2642","1f926-1f3fe-200d-2642-fe0f","man facepalming: medium-dark skin tone",":man_facepalming_tone4:",":man_facepalming_medium_dark_skin_tone:" "1f926-1f3fd-2642","1f926-1f3fd-200d-2642-fe0f","man facepalming: medium skin tone",":man_facepalming_tone3:",":man_facepalming_medium_skin_tone:" "1f926-1f3fc-2642","1f926-1f3fc-200d-2642-fe0f","man facepalming: medium-light skin tone",":man_facepalming_tone2:",":man_facepalming_medium_light_skin_tone:" "1f926-1f3fb-2642","1f926-1f3fb-200d-2642-fe0f","man facepalming: light skin tone",":man_facepalming_tone1:",":man_facepalming_light_skin_tone:" "1f926-2642","1f926-200d-2642-fe0f","man facepalming",":man_facepalming:","" "1f926-1f3ff-2640","1f926-1f3ff-200d-2640-fe0f","woman facepalming: dark skin tone",":woman_facepalming_tone5:",":woman_facepalming_dark_skin_tone:" "1f926-1f3fe-2640","1f926-1f3fe-200d-2640-fe0f","woman facepalming: medium-dark skin tone",":woman_facepalming_tone4:",":woman_facepalming_medium_dark_skin_tone:" "1f926-1f3fd-2640","1f926-1f3fd-200d-2640-fe0f","woman facepalming: medium skin tone",":woman_facepalming_tone3:",":woman_facepalming_medium_skin_tone:" "1f926-1f3fc-2640","1f926-1f3fc-200d-2640-fe0f","woman facepalming: medium-light skin tone",":woman_facepalming_tone2:",":woman_facepalming_medium_light_skin_tone:" "1f926-1f3fb-2640","1f926-1f3fb-200d-2640-fe0f","woman facepalming: light skin tone",":woman_facepalming_tone1:",":woman_facepalming_light_skin_tone:" "1f926-2640","1f926-200d-2640-fe0f","woman facepalming",":woman_facepalming:","" "1f64e-1f3ff-2642","1f64e-1f3ff-200d-2642-fe0f","man pouting: dark skin tone",":man_pouting_tone5:",":man_pouting_dark_skin_tone:" "1f64e-1f3fe-2642","1f64e-1f3fe-200d-2642-fe0f","man pouting: medium-dark skin tone",":man_pouting_tone4:",":man_pouting_medium_dark_skin_tone:" "1f64e-1f3fd-2642","1f64e-1f3fd-200d-2642-fe0f","man pouting: medium skin tone",":man_pouting_tone3:",":man_pouting_medium_skin_tone:" "1f64e-1f3fc-2642","1f64e-1f3fc-200d-2642-fe0f","man pouting: medium-light skin tone",":man_pouting_tone2:",":man_pouting_medium_light_skin_tone:" "1f64e-1f3fb-2642","1f64e-1f3fb-200d-2642-fe0f","man pouting: light skin tone",":man_pouting_tone1:",":man_pouting_light_skin_tone:" "1f64e-2642","1f64e-200d-2642-fe0f","man pouting",":man_pouting:","" "1f64e-1f3ff-2640","1f64e-1f3ff-200d-2640-fe0f","woman pouting: dark skin tone",":woman_pouting_tone5:",":woman_pouting_dark_skin_tone:" "1f64e-1f3fe-2640","1f64e-1f3fe-200d-2640-fe0f","woman pouting: medium-dark skin tone",":woman_pouting_tone4:",":woman_pouting_medium_dark_skin_tone:" "1f64e-1f3fd-2640","1f64e-1f3fd-200d-2640-fe0f","woman pouting: medium skin tone",":woman_pouting_tone3:",":woman_pouting_medium_skin_tone:" "1f64e-1f3fc-2640","1f64e-1f3fc-200d-2640-fe0f","woman pouting: medium-light skin tone",":woman_pouting_tone2:",":woman_pouting_medium_light_skin_tone:" "1f64e-1f3fb-2640","1f64e-1f3fb-200d-2640-fe0f","woman pouting: light skin tone",":woman_pouting_tone1:",":woman_pouting_light_skin_tone:" "1f64e-2640","1f64e-200d-2640-fe0f","woman pouting",":woman_pouting:","" "1f64d-1f3ff-2642","1f64d-1f3ff-200d-2642-fe0f","man frowning: dark skin tone",":man_frowning_tone5:",":man_frowning_dark_skin_tone:" "1f64d-1f3fe-2642","1f64d-1f3fe-200d-2642-fe0f","man frowning: medium-dark skin tone",":man_frowning_tone4:",":man_frowning_medium_dark_skin_tone:" "1f64d-1f3fd-2642","1f64d-1f3fd-200d-2642-fe0f","man frowning: medium skin tone",":man_frowning_tone3:",":man_frowning_medium_skin_tone:" "1f64d-1f3fc-2642","1f64d-1f3fc-200d-2642-fe0f","man frowning: medium-light skin tone",":man_frowning_tone2:",":man_frowning_medium_light_skin_tone:" "1f64d-1f3fb-2642","1f64d-1f3fb-200d-2642-fe0f","man frowning: light skin tone",":man_frowning_tone1:",":man_frowning_light_skin_tone:" "1f64d-2642","1f64d-200d-2642-fe0f","man frowning",":man_frowning:","" "1f64d-1f3ff-2640","1f64d-1f3ff-200d-2640-fe0f","woman frowning: dark skin tone",":woman_frowning_tone5:",":woman_frowning_dark_skin_tone:" "1f64d-1f3fe-2640","1f64d-1f3fe-200d-2640-fe0f","woman frowning: medium-dark skin tone",":woman_frowning_tone4:",":woman_frowning_medium_dark_skin_tone:" "1f64d-1f3fd-2640","1f64d-1f3fd-200d-2640-fe0f","woman frowning: medium skin tone",":woman_frowning_tone3:",":woman_frowning_medium_skin_tone:" "1f64d-1f3fc-2640","1f64d-1f3fc-200d-2640-fe0f","woman frowning: medium-light skin tone",":woman_frowning_tone2:",":woman_frowning_medium_light_skin_tone:" "1f64d-1f3fb-2640","1f64d-1f3fb-200d-2640-fe0f","woman frowning: light skin tone",":woman_frowning_tone1:",":woman_frowning_light_skin_tone:" "1f64d-2640","1f64d-200d-2640-fe0f","woman frowning",":woman_frowning:","" "1f64b-1f3ff-2642","1f64b-1f3ff-200d-2642-fe0f","man raising hand: dark skin tone",":man_raising_hand_tone5:",":man_raising_hand_dark_skin_tone:" "1f64b-1f3fe-2642","1f64b-1f3fe-200d-2642-fe0f","man raising hand: medium-dark skin tone",":man_raising_hand_tone4:",":man_raising_hand_medium_dark_skin_tone:" "1f64b-1f3fd-2642","1f64b-1f3fd-200d-2642-fe0f","man raising hand: medium skin tone",":man_raising_hand_tone3:",":man_raising_hand_medium_skin_tone:" "1f64b-1f3fc-2642","1f64b-1f3fc-200d-2642-fe0f","man raising hand: medium-light skin tone",":man_raising_hand_tone2:",":man_raising_hand_medium_light_skin_tone:" "1f64b-1f3fb-2642","1f64b-1f3fb-200d-2642-fe0f","man raising hand: light skin tone",":man_raising_hand_tone1:",":man_raising_hand_light_skin_tone:" "1f64b-2642","1f64b-200d-2642-fe0f","man raising hand",":man_raising_hand:","" "1f64b-1f3ff-2640","1f64b-1f3ff-200d-2640-fe0f","woman raising hand: dark skin tone",":woman_raising_hand_tone5:",":woman_raising_hand_dark_skin_tone:" "1f64b-1f3fe-2640","1f64b-1f3fe-200d-2640-fe0f","woman raising hand: medium-dark skin tone",":woman_raising_hand_tone4:",":woman_raising_hand_medium_dark_skin_tone:" "1f64b-1f3fd-2640","1f64b-1f3fd-200d-2640-fe0f","woman raising hand: medium skin tone",":woman_raising_hand_tone3:",":woman_raising_hand_medium_skin_tone:" "1f64b-1f3fc-2640","1f64b-1f3fc-200d-2640-fe0f","woman raising hand: medium-light skin tone",":woman_raising_hand_tone2:",":woman_raising_hand_medium_light_skin_tone:" "1f64b-1f3fb-2640","1f64b-1f3fb-200d-2640-fe0f","woman raising hand: light skin tone",":woman_raising_hand_tone1:",":woman_raising_hand_light_skin_tone:" "1f64b-2640","1f64b-200d-2640-fe0f","woman raising hand",":woman_raising_hand:","" "1f647-1f3ff-2642","1f647-1f3ff-200d-2642-fe0f","man bowing: dark skin tone",":man_bowing_tone5:",":man_bowing_dark_skin_tone:" "1f647-1f3fe-2642","1f647-1f3fe-200d-2642-fe0f","man bowing: medium-dark skin tone",":man_bowing_tone4:",":man_bowing_medium_dark_skin_tone:" "1f647-1f3fd-2642","1f647-1f3fd-200d-2642-fe0f","man bowing: medium skin tone",":man_bowing_tone3:",":man_bowing_medium_skin_tone:" "1f647-1f3fc-2642","1f647-1f3fc-200d-2642-fe0f","man bowing: medium-light skin tone",":man_bowing_tone2:",":man_bowing_medium_light_skin_tone:" "1f647-1f3fb-2642","1f647-1f3fb-200d-2642-fe0f","man bowing: light skin tone",":man_bowing_tone1:",":man_bowing_light_skin_tone:" "1f647-2642","1f647-200d-2642-fe0f","man bowing",":man_bowing:","" "1f647-1f3ff-2640","1f647-1f3ff-200d-2640-fe0f","woman bowing: dark skin tone",":woman_bowing_tone5:",":woman_bowing_dark_skin_tone:" "1f647-1f3fe-2640","1f647-1f3fe-200d-2640-fe0f","woman bowing: medium-dark skin tone",":woman_bowing_tone4:",":woman_bowing_medium_dark_skin_tone:" "1f647-1f3fd-2640","1f647-1f3fd-200d-2640-fe0f","woman bowing: medium skin tone",":woman_bowing_tone3:",":woman_bowing_medium_skin_tone:" "1f647-1f3fc-2640","1f647-1f3fc-200d-2640-fe0f","woman bowing: medium-light skin tone",":woman_bowing_tone2:",":woman_bowing_medium_light_skin_tone:" "1f647-1f3fb-2640","1f647-1f3fb-200d-2640-fe0f","woman bowing: light skin tone",":woman_bowing_tone1:",":woman_bowing_light_skin_tone:" "1f647-2640","1f647-200d-2640-fe0f","woman bowing",":woman_bowing:","" "1f646-1f3ff-2642","1f646-1f3ff-200d-2642-fe0f","man gesturing OK: dark skin tone",":man_gesturing_ok_tone5:",":man_gesturing_ok_dark_skin_tone:" "1f646-1f3fe-2642","1f646-1f3fe-200d-2642-fe0f","man gesturing OK: medium-dark skin tone",":man_gesturing_ok_tone4:",":man_gesturing_ok_medium_dark_skin_tone:" "1f646-1f3fd-2642","1f646-1f3fd-200d-2642-fe0f","man gesturing OK: medium skin tone",":man_gesturing_ok_tone3:",":man_gesturing_ok_medium_skin_tone:" "1f646-1f3fc-2642","1f646-1f3fc-200d-2642-fe0f","man gesturing OK: medium-light skin tone",":man_gesturing_ok_tone2:",":man_gesturing_ok_medium_light_skin_tone:" "1f646-1f3fb-2642","1f646-1f3fb-200d-2642-fe0f","man gesturing OK: light skin tone",":man_gesturing_ok_tone1:",":man_gesturing_ok_light_skin_tone:" "1f646-2642","1f646-200d-2642-fe0f","man gesturing OK",":man_gesturing_ok:","" "1f646-1f3ff-2640","1f646-1f3ff-200d-2640-fe0f","woman gesturing OK: dark skin tone",":woman_gesturing_ok_tone5:",":woman_gesturing_ok_dark_skin_tone:" "1f646-1f3fe-2640","1f646-1f3fe-200d-2640-fe0f","woman gesturing OK: medium-dark skin tone",":woman_gesturing_ok_tone4:",":woman_gesturing_ok_medium_dark_skin_tone:" "1f646-1f3fd-2640","1f646-1f3fd-200d-2640-fe0f","woman gesturing OK: medium skin tone",":woman_gesturing_ok_tone3:",":woman_gesturing_ok_medium_skin_tone:" "1f646-1f3fc-2640","1f646-1f3fc-200d-2640-fe0f","woman gesturing OK: medium-light skin tone",":woman_gesturing_ok_tone2:",":woman_gesturing_ok_medium_light_skin_tone:" "1f646-1f3fb-2640","1f646-1f3fb-200d-2640-fe0f","woman gesturing OK: light skin tone",":woman_gesturing_ok_tone1:",":woman_gesturing_ok_light_skin_tone:" "1f646-2640","1f646-200d-2640-fe0f","woman gesturing OK",":woman_gesturing_ok:","" "1f645-1f3ff-2642","1f645-1f3ff-200d-2642-fe0f","man gesturing NO: dark skin tone",":man_gesturing_no_tone5:",":man_gesturing_no_dark_skin_tone:" "1f645-1f3fe-2642","1f645-1f3fe-200d-2642-fe0f","man gesturing NO: medium-dark skin tone",":man_gesturing_no_tone4:",":man_gesturing_no_medium_dark_skin_tone:" "1f645-1f3fd-2642","1f645-1f3fd-200d-2642-fe0f","man gesturing NO: medium skin tone",":man_gesturing_no_tone3:",":man_gesturing_no_medium_skin_tone:" "1f645-1f3fc-2642","1f645-1f3fc-200d-2642-fe0f","man gesturing NO: medium-light skin tone",":man_gesturing_no_tone2:",":man_gesturing_no_medium_light_skin_tone:" "1f645-1f3fb-2642","1f645-1f3fb-200d-2642-fe0f","man gesturing NO: light skin tone",":man_gesturing_no_tone1:",":man_gesturing_no_light_skin_tone:" "1f645-2642","1f645-200d-2642-fe0f","man gesturing NO",":man_gesturing_no:","" "1f645-1f3ff-2640","1f645-1f3ff-200d-2640-fe0f","woman gesturing NO: dark skin tone",":woman_gesturing_no_tone5:",":woman_gesturing_no_dark_skin_tone:" "1f645-1f3fe-2640","1f645-1f3fe-200d-2640-fe0f","woman gesturing NO: medium-dark skin tone",":woman_gesturing_no_tone4:",":woman_gesturing_no_medium_dark_skin_tone:" "1f645-1f3fd-2640","1f645-1f3fd-200d-2640-fe0f","woman gesturing NO: medium skin tone",":woman_gesturing_no_tone3:",":woman_gesturing_no_medium_skin_tone:" "1f645-1f3fc-2640","1f645-1f3fc-200d-2640-fe0f","woman gesturing NO: medium-light skin tone",":woman_gesturing_no_tone2:",":woman_gesturing_no_medium_light_skin_tone:" "1f645-1f3fb-2640","1f645-1f3fb-200d-2640-fe0f","woman gesturing NO: light skin tone",":woman_gesturing_no_tone1:",":woman_gesturing_no_light_skin_tone:" "1f645-2640","1f645-200d-2640-fe0f","woman gesturing NO",":woman_gesturing_no:","" "1f487-1f3ff-2642","1f487-1f3ff-200d-2642-fe0f","man getting haircut: dark skin tone",":man_getting_haircut_tone5:",":man_getting_haircut_dark_skin_tone:" "1f487-1f3fe-2642","1f487-1f3fe-200d-2642-fe0f","man getting haircut: medium-dark skin tone",":man_getting_haircut_tone4:",":man_getting_haircut_medium_dark_skin_tone:" "1f487-1f3fd-2642","1f487-1f3fd-200d-2642-fe0f","man getting haircut: medium skin tone",":man_getting_haircut_tone3:",":man_getting_haircut_medium_skin_tone:" "1f487-1f3fc-2642","1f487-1f3fc-200d-2642-fe0f","man getting haircut: medium-light skin tone",":man_getting_haircut_tone2:",":man_getting_haircut_medium_light_skin_tone:" "1f487-1f3fb-2642","1f487-1f3fb-200d-2642-fe0f","man getting haircut: light skin tone",":man_getting_haircut_tone1:",":man_getting_haircut_light_skin_tone:" "1f487-2642","1f487-200d-2642-fe0f","man getting haircut",":man_getting_haircut:","" "1f487-1f3ff-2640","1f487-1f3ff-200d-2640-fe0f","woman getting haircut: dark skin tone",":woman_getting_haircut_tone5:",":woman_getting_haircut_dark_skin_tone:" "1f487-1f3fe-2640","1f487-1f3fe-200d-2640-fe0f","woman getting haircut: medium-dark skin tone",":woman_getting_haircut_tone4:",":woman_getting_haircut_medium_dark_skin_tone:" "1f487-1f3fd-2640","1f487-1f3fd-200d-2640-fe0f","woman getting haircut: medium skin tone",":woman_getting_haircut_tone3:",":woman_getting_haircut_medium_skin_tone:" "1f487-1f3fc-2640","1f487-1f3fc-200d-2640-fe0f","woman getting haircut: medium-light skin tone",":woman_getting_haircut_tone2:",":woman_getting_haircut_medium_light_skin_tone:" "1f487-1f3fb-2640","1f487-1f3fb-200d-2640-fe0f","woman getting haircut: light skin tone",":woman_getting_haircut_tone1:",":woman_getting_haircut_light_skin_tone:" "1f487-2640","1f487-200d-2640-fe0f","woman getting haircut",":woman_getting_haircut:","" "1f486-1f3ff-2642","1f486-1f3ff-200d-2642-fe0f","man getting massage: dark skin tone",":man_getting_face_massage_tone5:",":man_getting_face_massage_dark_skin_tone:" "1f486-1f3fe-2642","1f486-1f3fe-200d-2642-fe0f","man getting massage: medium-dark skin tone",":man_getting_face_massage_tone4:",":man_getting_face_massage_medium_dark_skin_tone:" "1f486-1f3fd-2642","1f486-1f3fd-200d-2642-fe0f","man getting massage: medium skin tone",":man_getting_face_massage_tone3:",":man_getting_face_massage_medium_skin_tone:" "1f486-1f3fc-2642","1f486-1f3fc-200d-2642-fe0f","man getting massage: medium-light skin tone",":man_getting_face_massage_tone2:",":man_getting_face_massage_medium_light_skin_tone:" "1f486-1f3fb-2642","1f486-1f3fb-200d-2642-fe0f","man getting massage: light skin tone",":man_getting_face_massage_tone1:",":man_getting_face_massage_light_skin_tone:" "1f486-2642","1f486-200d-2642-fe0f","man getting massage",":man_getting_face_massage:","" "1f486-1f3ff-2640","1f486-1f3ff-200d-2640-fe0f","woman getting massage: dark skin tone",":woman_getting_face_massage_tone5:",":woman_getting_face_massage_dark_skin_tone:" "1f486-1f3fe-2640","1f486-1f3fe-200d-2640-fe0f","woman getting massage: medium-dark skin tone",":woman_getting_face_massage_tone4:",":woman_getting_face_massage_medium_dark_skin_tone:" "1f486-1f3fd-2640","1f486-1f3fd-200d-2640-fe0f","woman getting massage: medium skin tone",":woman_getting_face_massage_tone3:",":woman_getting_face_massage_medium_skin_tone:" "1f486-1f3fc-2640","1f486-1f3fc-200d-2640-fe0f","woman getting massage: medium-light skin tone",":woman_getting_face_massage_tone2:",":woman_getting_face_massage_medium_light_skin_tone:" "1f486-1f3fb-2640","1f486-1f3fb-200d-2640-fe0f","woman getting massage: light skin tone",":woman_getting_face_massage_tone1:",":woman_getting_face_massage_light_skin_tone:" "1f486-2640","1f486-200d-2640-fe0f","woman getting massage",":woman_getting_face_massage:","" "1f481-1f3ff-2642","1f481-1f3ff-200d-2642-fe0f","man tipping hand: dark skin tone",":man_tipping_hand_tone5:",":man_tipping_hand_dark_skin_tone:" "1f481-1f3fe-2642","1f481-1f3fe-200d-2642-fe0f","man tipping hand: medium-dark skin tone",":man_tipping_hand_tone4:",":man_tipping_hand_medium_dark_skin_tone:" "1f481-1f3fd-2642","1f481-1f3fd-200d-2642-fe0f","man tipping hand: medium skin tone",":man_tipping_hand_tone3:",":man_tipping_hand_medium_skin_tone:" "1f481-1f3fc-2642","1f481-1f3fc-200d-2642-fe0f","man tipping hand: medium-light skin tone",":man_tipping_hand_tone2:",":man_tipping_hand_medium_light_skin_tone:" "1f481-1f3fb-2642","1f481-1f3fb-200d-2642-fe0f","man tipping hand: light skin tone",":man_tipping_hand_tone1:",":man_tipping_hand_light_skin_tone:" "1f481-2642","1f481-200d-2642-fe0f","man tipping hand",":man_tipping_hand:","" "1f481-1f3ff-2640","1f481-1f3ff-200d-2640-fe0f","woman tipping hand: dark skin tone",":woman_tipping_hand_tone5:",":woman_tipping_hand_dark_skin_tone:" "1f481-1f3fe-2640","1f481-1f3fe-200d-2640-fe0f","woman tipping hand: medium-dark skin tone",":woman_tipping_hand_tone4:",":woman_tipping_hand_medium_dark_skin_tone:" "1f481-1f3fd-2640","1f481-1f3fd-200d-2640-fe0f","woman tipping hand: medium skin tone",":woman_tipping_hand_tone3:",":woman_tipping_hand_medium_skin_tone:" "1f481-1f3fc-2640","1f481-1f3fc-200d-2640-fe0f","woman tipping hand: medium-light skin tone",":woman_tipping_hand_tone2:",":woman_tipping_hand_medium_light_skin_tone:" "1f481-1f3fb-2640","1f481-1f3fb-200d-2640-fe0f","woman tipping hand: light skin tone",":woman_tipping_hand_tone1:",":woman_tipping_hand_light_skin_tone:" "1f481-2640","1f481-200d-2640-fe0f","woman tipping hand",":woman_tipping_hand:","" "1f471-1f3ff-2642","1f471-1f3ff-200d-2642-fe0f","blond-haired man: dark skin tone",":blond-haired_man_tone5:",":blond-haired_man_dark_skin_tone:" "1f471-1f3fe-2642","1f471-1f3fe-200d-2642-fe0f","blond-haired man: medium-dark skin tone",":blond-haired_man_tone4:",":blond-haired_man_medium_dark_skin_tone:" "1f471-1f3fd-2642","1f471-1f3fd-200d-2642-fe0f","blond-haired man: medium skin tone",":blond-haired_man_tone3:",":blond-haired_man_medium_skin_tone:" "1f471-1f3fc-2642","1f471-1f3fc-200d-2642-fe0f","blond-haired man: medium-light skin tone",":blond-haired_man_tone2:",":blond-haired_man_medium_light_skin_tone:" "1f471-1f3fb-2642","1f471-1f3fb-200d-2642-fe0f","blond-haired man: light skin tone",":blond-haired_man_tone1:",":blond-haired_man_light_skin_tone:" "1f471-2642","1f471-200d-2642-fe0f","man: blond hair",":blond-haired_man:","" "1f471-1f3ff-2640","1f471-1f3ff-200d-2640-fe0f","blond-haired woman: dark skin tone",":blond-haired_woman_tone5:",":blond-haired_woman_dark_skin_tone:" "1f471-1f3fe-2640","1f471-1f3fe-200d-2640-fe0f","blond-haired woman: medium-dark skin tone",":blond-haired_woman_tone4:",":blond-haired_woman_medium_dark_skin_tone:" "1f471-1f3fd-2640","1f471-1f3fd-200d-2640-fe0f","blond-haired woman: medium skin tone",":blond-haired_woman_tone3:",":blond-haired_woman_medium_skin_tone:" "1f471-1f3fc-2640","1f471-1f3fc-200d-2640-fe0f","blond-haired woman: medium-light skin tone",":blond-haired_woman_tone2:",":blond-haired_woman_medium_light_skin_tone:" "1f471-1f3fb-2640","1f471-1f3fb-200d-2640-fe0f","blond-haired woman: light skin tone",":blond-haired_woman_tone1:",":blond-haired_woman_light_skin_tone:" "1f471-2640","1f471-200d-2640-fe0f","woman: blond hair",":blond-haired_woman:","" "1f473-1f3ff-2642","1f473-1f3ff-200d-2642-fe0f","man wearing turban: dark skin tone",":man_wearing_turban_tone5:",":man_wearing_turban_dark_skin_tone:" "1f473-1f3fe-2642","1f473-1f3fe-200d-2642-fe0f","man wearing turban: medium-dark skin tone",":man_wearing_turban_tone4:",":man_wearing_turban_medium_dark_skin_tone:" "1f473-1f3fd-2642","1f473-1f3fd-200d-2642-fe0f","man wearing turban: medium skin tone",":man_wearing_turban_tone3:",":man_wearing_turban_medium_skin_tone:" "1f473-1f3fc-2642","1f473-1f3fc-200d-2642-fe0f","man wearing turban: medium-light skin tone",":man_wearing_turban_tone2:",":man_wearing_turban_medium_light_skin_tone:" "1f473-1f3fb-2642","1f473-1f3fb-200d-2642-fe0f","man wearing turban: light skin tone",":man_wearing_turban_tone1:",":man_wearing_turban_light_skin_tone:" "1f473-2642","1f473-200d-2642-fe0f","man wearing turban",":man_wearing_turban:","" "1f473-1f3ff-2640","1f473-1f3ff-200d-2640-fe0f","woman wearing turban: dark skin tone",":woman_wearing_turban_tone5:",":woman_wearing_turban_dark_skin_tone:" "1f473-1f3fe-2640","1f473-1f3fe-200d-2640-fe0f","woman wearing turban: medium-dark skin tone",":woman_wearing_turban_tone4:",":woman_wearing_turban_medium_dark_skin_tone:" "1f473-1f3fd-2640","1f473-1f3fd-200d-2640-fe0f","woman wearing turban: medium skin tone",":woman_wearing_turban_tone3:",":woman_wearing_turban_medium_skin_tone:" "1f473-1f3fc-2640","1f473-1f3fc-200d-2640-fe0f","woman wearing turban: medium-light skin tone",":woman_wearing_turban_tone2:",":woman_wearing_turban_medium_light_skin_tone:" "1f473-1f3fb-2640","1f473-1f3fb-200d-2640-fe0f","woman wearing turban: light skin tone",":woman_wearing_turban_tone1:",":woman_wearing_turban_light_skin_tone:" "1f473-2640","1f473-200d-2640-fe0f","woman wearing turban",":woman_wearing_turban:","" "1f482-1f3ff-2642","1f482-1f3ff-200d-2642-fe0f","man guard: dark skin tone",":man_guard_tone5:",":man_guard_dark_skin_tone:" "1f482-1f3fe-2642","1f482-1f3fe-200d-2642-fe0f","man guard: medium-dark skin tone",":man_guard_tone4:",":man_guard_medium_dark_skin_tone:" "1f482-1f3fd-2642","1f482-1f3fd-200d-2642-fe0f","man guard: medium skin tone",":man_guard_tone3:",":man_guard_medium_skin_tone:" "1f482-1f3fc-2642","1f482-1f3fc-200d-2642-fe0f","man guard: medium-light skin tone",":man_guard_tone2:",":man_guard_medium_light_skin_tone:" "1f482-1f3fb-2642","1f482-1f3fb-200d-2642-fe0f","man guard: light skin tone",":man_guard_tone1:",":man_guard_light_skin_tone:" "1f482-2642","1f482-200d-2642-fe0f","man guard",":man_guard:","" "1f482-1f3ff-2640","1f482-1f3ff-200d-2640-fe0f","woman guard: dark skin tone",":woman_guard_tone5:",":woman_guard_dark_skin_tone:" "1f482-1f3fe-2640","1f482-1f3fe-200d-2640-fe0f","woman guard: medium-dark skin tone",":woman_guard_tone4:",":woman_guard_medium_dark_skin_tone:" "1f482-1f3fd-2640","1f482-1f3fd-200d-2640-fe0f","woman guard: medium skin tone",":woman_guard_tone3:",":woman_guard_medium_skin_tone:" "1f482-1f3fc-2640","1f482-1f3fc-200d-2640-fe0f","woman guard: medium-light skin tone",":woman_guard_tone2:",":woman_guard_medium_light_skin_tone:" "1f482-1f3fb-2640","1f482-1f3fb-200d-2640-fe0f","woman guard: light skin tone",":woman_guard_tone1:",":woman_guard_light_skin_tone:" "1f482-2640","1f482-200d-2640-fe0f","woman guard",":woman_guard:","" "1f575-1f3ff-2642","1f575-1f3ff-200d-2642-fe0f","man detective: dark skin tone",":man_detective_tone5:",":man_detective_dark_skin_tone:" "1f575-1f3fe-2642","1f575-1f3fe-200d-2642-fe0f","man detective: medium-dark skin tone",":man_detective_tone4:",":man_detective_medium_dark_skin_tone:" "1f575-1f3fd-2642","1f575-1f3fd-200d-2642-fe0f","man detective: medium skin tone",":man_detective_tone3:",":man_detective_medium_skin_tone:" "1f575-1f3fc-2642","1f575-1f3fc-200d-2642-fe0f","man detective: medium-light skin tone",":man_detective_tone2:",":man_detective_medium_light_skin_tone:" "1f575-1f3fb-2642","1f575-1f3fb-200d-2642-fe0f","man detective: light skin tone",":man_detective_tone1:",":man_detective_light_skin_tone:" "1f575-2642","1f575-fe0f-200d-2642-fe0f","man detective",":man_detective:","" "1f575-1f3ff-2640","1f575-1f3ff-200d-2640-fe0f","woman detective: dark skin tone",":woman_detective_tone5:",":woman_detective_dark_skin_tone:" "1f575-1f3fe-2640","1f575-1f3fe-200d-2640-fe0f","woman detective: medium-dark skin tone",":woman_detective_tone4:",":woman_detective_medium_dark_skin_tone:" "1f575-1f3fd-2640","1f575-1f3fd-200d-2640-fe0f","woman detective: medium skin tone",":woman_detective_tone3:",":woman_detective_medium_skin_tone:" "1f575-1f3fc-2640","1f575-1f3fc-200d-2640-fe0f","woman detective: medium-light skin tone",":woman_detective_tone2:",":woman_detective_medium_light_skin_tone:" "1f575-1f3fb-2640","1f575-1f3fb-200d-2640-fe0f","woman detective: light skin tone",":woman_detective_tone1:",":woman_detective_light_skin_tone:" "1f575-2640","1f575-fe0f-200d-2640-fe0f","woman detective",":woman_detective:","" "1f477-1f3ff-2642","1f477-1f3ff-200d-2642-fe0f","man construction worker: dark skin tone",":man_construction_worker_tone5:",":man_construction_worker_dark_skin_tone:" "1f477-1f3fe-2642","1f477-1f3fe-200d-2642-fe0f","man construction worker: medium-dark skin tone",":man_construction_worker_tone4:",":man_construction_worker_medium_dark_skin_tone:" "1f477-1f3fd-2642","1f477-1f3fd-200d-2642-fe0f","man construction worker: medium skin tone",":man_construction_worker_tone3:",":man_construction_worker_medium_skin_tone:" "1f477-1f3fc-2642","1f477-1f3fc-200d-2642-fe0f","man construction worker: medium-light skin tone",":man_construction_worker_tone2:",":man_construction_worker_medium_light_skin_tone:" "1f477-1f3fb-2642","1f477-1f3fb-200d-2642-fe0f","man construction worker: light skin tone",":man_construction_worker_tone1:",":man_construction_worker_light_skin_tone:" "1f477-2642","1f477-200d-2642-fe0f","man construction worker",":man_construction_worker:","" "1f477-1f3ff-2640","1f477-1f3ff-200d-2640-fe0f","woman construction worker: dark skin tone",":woman_construction_worker_tone5:",":woman_construction_worker_dark_skin_tone:" "1f477-1f3fe-2640","1f477-1f3fe-200d-2640-fe0f","woman construction worker: medium-dark skin tone",":woman_construction_worker_tone4:",":woman_construction_worker_medium_dark_skin_tone:" "1f477-1f3fd-2640","1f477-1f3fd-200d-2640-fe0f","woman construction worker: medium skin tone",":woman_construction_worker_tone3:",":woman_construction_worker_medium_skin_tone:" "1f477-1f3fc-2640","1f477-1f3fc-200d-2640-fe0f","woman construction worker: medium-light skin tone",":woman_construction_worker_tone2:",":woman_construction_worker_medium_light_skin_tone:" "1f477-1f3fb-2640","1f477-1f3fb-200d-2640-fe0f","woman construction worker: light skin tone",":woman_construction_worker_tone1:",":woman_construction_worker_light_skin_tone:" "1f477-2640","1f477-200d-2640-fe0f","woman construction worker",":woman_construction_worker:","" "1f46e-1f3ff-2642","1f46e-1f3ff-200d-2642-fe0f","man police officer: dark skin tone",":man_police_officer_tone5:",":man_police_officer_dark_skin_tone:" "1f46e-1f3fe-2642","1f46e-1f3fe-200d-2642-fe0f","man police officer: medium-dark skin tone",":man_police_officer_tone4:",":man_police_officer_medium_dark_skin_tone:" "1f46e-1f3fd-2642","1f46e-1f3fd-200d-2642-fe0f","man police officer: medium skin tone",":man_police_officer_tone3:",":man_police_officer_medium_skin_tone:" "1f46e-1f3fc-2642","1f46e-1f3fc-200d-2642-fe0f","man police officer: medium-light skin tone",":man_police_officer_tone2:",":man_police_officer_medium_light_skin_tone:" "1f46e-1f3fb-2642","1f46e-1f3fb-200d-2642-fe0f","man police officer: light skin tone",":man_police_officer_tone1:",":man_police_officer_light_skin_tone:" "1f46e-2642","1f46e-200d-2642-fe0f","man police officer",":man_police_officer:","" "1f46e-1f3ff-2640","1f46e-1f3ff-200d-2640-fe0f","woman police officer: dark skin tone",":woman_police_officer_tone5:",":woman_police_officer_dark_skin_tone:" "1f46e-1f3fe-2640","1f46e-1f3fe-200d-2640-fe0f","woman police officer: medium-dark skin tone",":woman_police_officer_tone4:",":woman_police_officer_medium_dark_skin_tone:" "1f46e-1f3fd-2640","1f46e-1f3fd-200d-2640-fe0f","woman police officer: medium skin tone",":woman_police_officer_tone3:",":woman_police_officer_medium_skin_tone:" "1f46e-1f3fc-2640","1f46e-1f3fc-200d-2640-fe0f","woman police officer: medium-light skin tone",":woman_police_officer_tone2:",":woman_police_officer_medium_light_skin_tone:" "1f46e-1f3fb-2640","1f46e-1f3fb-200d-2640-fe0f","woman police officer: light skin tone",":woman_police_officer_tone1:",":woman_police_officer_light_skin_tone:" "1f46e-2640","1f46e-200d-2640-fe0f","woman police officer",":woman_police_officer:","" "1f468-1f3ff-1f4bb","1f468-1f3ff-200d-1f4bb","man technologist: dark skin tone",":man_technologist_tone5:",":man_technologist_dark_skin_tone:" "1f468-1f3fe-1f4bb","1f468-1f3fe-200d-1f4bb","man technologist: medium-dark skin tone",":man_technologist_tone4:",":man_technologist_medium_dark_skin_tone:" "1f468-1f3fd-1f4bb","1f468-1f3fd-200d-1f4bb","man technologist: medium skin tone",":man_technologist_tone3:",":man_technologist_medium_skin_tone:" "1f468-1f3fc-1f4bb","1f468-1f3fc-200d-1f4bb","man technologist: medium-light skin tone",":man_technologist_tone2:",":man_technologist_medium_light_skin_tone:" "1f468-1f3fb-1f4bb","1f468-1f3fb-200d-1f4bb","man technologist: light skin tone",":man_technologist_tone1:",":man_technologist_light_skin_tone:" "1f468-1f4bb","1f468-200d-1f4bb","man technologist",":man_technologist:","" "1f469-1f3ff-1f4bb","1f469-1f3ff-200d-1f4bb","woman technologist: dark skin tone",":woman_technologist_tone5:",":woman_technologist_dark_skin_tone:" "1f469-1f3fe-1f4bb","1f469-1f3fe-200d-1f4bb","woman technologist: medium-dark skin tone",":woman_technologist_tone4:",":woman_technologist_medium_dark_skin_tone:" "1f469-1f3fd-1f4bb","1f469-1f3fd-200d-1f4bb","woman technologist: medium skin tone",":woman_technologist_tone3:",":woman_technologist_medium_skin_tone:" "1f469-1f3fc-1f4bb","1f469-1f3fc-200d-1f4bb","woman technologist: medium-light skin tone",":woman_technologist_tone2:",":woman_technologist_medium_light_skin_tone:" "1f469-1f3fb-1f4bb","1f469-1f3fb-200d-1f4bb","woman technologist: light skin tone",":woman_technologist_tone1:",":woman_technologist_light_skin_tone:" "1f469-1f4bb","1f469-200d-1f4bb","woman technologist",":woman_technologist:","" "1f468-1f3ff-1f3eb","1f468-1f3ff-200d-1f3eb","man teacher: dark skin tone",":man_teacher_tone5:",":man_teacher_dark_skin_tone:" "1f468-1f3fe-1f3eb","1f468-1f3fe-200d-1f3eb","man teacher: medium-dark skin tone",":man_teacher_tone4:",":man_teacher_medium_dark_skin_tone:" "1f468-1f3fd-1f3eb","1f468-1f3fd-200d-1f3eb","man teacher: medium skin tone",":man_teacher_tone3:",":man_teacher_medium_skin_tone:" "1f468-1f3fc-1f3eb","1f468-1f3fc-200d-1f3eb","man teacher: medium-light skin tone",":man_teacher_tone2:",":man_teacher_medium_light_skin_tone:" "1f468-1f3fb-1f3eb","1f468-1f3fb-200d-1f3eb","man teacher: light skin tone",":man_teacher_tone1:",":man_teacher_light_skin_tone:" "1f468-1f3eb","1f468-200d-1f3eb","man teacher",":man_teacher:","" "1f469-1f3ff-1f3eb","1f469-1f3ff-200d-1f3eb","woman teacher: dark skin tone",":woman_teacher_tone5:",":woman_teacher_dark_skin_tone:" "1f469-1f3fe-1f3eb","1f469-1f3fe-200d-1f3eb","woman teacher: medium-dark skin tone",":woman_teacher_tone4:",":woman_teacher_medium_dark_skin_tone:" "1f469-1f3fd-1f3eb","1f469-1f3fd-200d-1f3eb","woman teacher: medium skin tone",":woman_teacher_tone3:",":woman_teacher_medium_skin_tone:" "1f469-1f3fc-1f3eb","1f469-1f3fc-200d-1f3eb","woman teacher: medium-light skin tone",":woman_teacher_tone2:",":woman_teacher_medium_light_skin_tone:" "1f469-1f3fb-1f3eb","1f469-1f3fb-200d-1f3eb","woman teacher: light skin tone",":woman_teacher_tone1:",":woman_teacher_light_skin_tone:" "1f469-1f3eb","1f469-200d-1f3eb","woman teacher",":woman_teacher:","" "1f468-1f3ff-1f393","1f468-1f3ff-200d-1f393","man student: dark skin tone",":man_student_tone5:",":man_student_dark_skin_tone:" "1f468-1f3fe-1f393","1f468-1f3fe-200d-1f393","man student: medium-dark skin tone",":man_student_tone4:",":man_student_medium_dark_skin_tone:" "1f468-1f3fd-1f393","1f468-1f3fd-200d-1f393","man student: medium skin tone",":man_student_tone3:",":man_student_medium_skin_tone:" "1f468-1f3fc-1f393","1f468-1f3fc-200d-1f393","man student: medium-light skin tone",":man_student_tone2:",":man_student_medium_light_skin_tone:" "1f468-1f3fb-1f393","1f468-1f3fb-200d-1f393","man student: light skin tone",":man_student_tone1:",":man_student_light_skin_tone:" "1f468-1f393","1f468-200d-1f393","man student",":man_student:","" "1f469-1f3ff-1f393","1f469-1f3ff-200d-1f393","woman student: dark skin tone",":woman_student_tone5:",":woman_student_dark_skin_tone:" "1f469-1f3fe-1f393","1f469-1f3fe-200d-1f393","woman student: medium-dark skin tone",":woman_student_tone4:",":woman_student_medium_dark_skin_tone:" "1f469-1f3fd-1f393","1f469-1f3fd-200d-1f393","woman student: medium skin tone",":woman_student_tone3:",":woman_student_medium_skin_tone:" "1f469-1f3fc-1f393","1f469-1f3fc-200d-1f393","woman student: medium-light skin tone",":woman_student_tone2:",":woman_student_medium_light_skin_tone:" "1f469-1f3fb-1f393","1f469-1f3fb-200d-1f393","woman student: light skin tone",":woman_student_tone1:",":woman_student_light_skin_tone:" "1f469-1f393","1f469-200d-1f393","woman student",":woman_student:","" "1f468-1f3ff-1f3a4","1f468-1f3ff-200d-1f3a4","man singer: dark skin tone",":man_singer_tone5:",":man_singer_dark_skin_tone:" "1f468-1f3fe-1f3a4","1f468-1f3fe-200d-1f3a4","man singer: medium-dark skin tone",":man_singer_tone4:",":man_singer_medium_dark_skin_tone:" "1f468-1f3fd-1f3a4","1f468-1f3fd-200d-1f3a4","man singer: medium skin tone",":man_singer_tone3:",":man_singer_medium_skin_tone:" "1f468-1f3fc-1f3a4","1f468-1f3fc-200d-1f3a4","man singer: medium-light skin tone",":man_singer_tone2:",":man_singer_medium_light_skin_tone:" "1f468-1f3fb-1f3a4","1f468-1f3fb-200d-1f3a4","man singer: light skin tone",":man_singer_tone1:",":man_singer_light_skin_tone:" "1f468-1f3a4","1f468-200d-1f3a4","man singer",":man_singer:","" "1f469-1f3ff-1f3a4","1f469-1f3ff-200d-1f3a4","woman singer: dark skin tone",":woman_singer_tone5:",":woman_singer_dark_skin_tone:" "1f469-1f3fe-1f3a4","1f469-1f3fe-200d-1f3a4","woman singer: medium-dark skin tone",":woman_singer_tone4:",":woman_singer_medium_dark_skin_tone:" "1f469-1f3fd-1f3a4","1f469-1f3fd-200d-1f3a4","woman singer: medium skin tone",":woman_singer_tone3:",":woman_singer_medium_skin_tone:" "1f469-1f3fc-1f3a4","1f469-1f3fc-200d-1f3a4","woman singer: medium-light skin tone",":woman_singer_tone2:",":woman_singer_medium_light_skin_tone:" "1f469-1f3fb-1f3a4","1f469-1f3fb-200d-1f3a4","woman singer: light skin tone",":woman_singer_tone1:",":woman_singer_light_skin_tone:" "1f469-1f3a4","1f469-200d-1f3a4","woman singer",":woman_singer:","" "1f468-1f3ff-1f52c","1f468-1f3ff-200d-1f52c","man scientist: dark skin tone",":man_scientist_tone5:",":man_scientist_dark_skin_tone:" "1f468-1f3fe-1f52c","1f468-1f3fe-200d-1f52c","man scientist: medium-dark skin tone",":man_scientist_tone4:",":man_scientist_medium_dark_skin_tone:" "1f468-1f3fd-1f52c","1f468-1f3fd-200d-1f52c","man scientist: medium skin tone",":man_scientist_tone3:",":man_scientist_medium_skin_tone:" "1f468-1f3fc-1f52c","1f468-1f3fc-200d-1f52c","man scientist: medium-light skin tone",":man_scientist_tone2:",":man_scientist_medium_light_skin_tone:" "1f468-1f3fb-1f52c","1f468-1f3fb-200d-1f52c","man scientist: light skin tone",":man_scientist_tone1:",":man_scientist_light_skin_tone:" "1f468-1f52c","1f468-200d-1f52c","man scientist",":man_scientist:","" "1f469-1f3ff-1f52c","1f469-1f3ff-200d-1f52c","woman scientist: dark skin tone",":woman_scientist_tone5:",":woman_scientist_dark_skin_tone:" "1f469-1f3fe-1f52c","1f469-1f3fe-200d-1f52c","woman scientist: medium-dark skin tone",":woman_scientist_tone4:",":woman_scientist_medium_dark_skin_tone:" "1f469-1f3fd-1f52c","1f469-1f3fd-200d-1f52c","woman scientist: medium skin tone",":woman_scientist_tone3:",":woman_scientist_medium_skin_tone:" "1f469-1f3fc-1f52c","1f469-1f3fc-200d-1f52c","woman scientist: medium-light skin tone",":woman_scientist_tone2:",":woman_scientist_medium_light_skin_tone:" "1f469-1f3fb-1f52c","1f469-1f3fb-200d-1f52c","woman scientist: light skin tone",":woman_scientist_tone1:",":woman_scientist_light_skin_tone:" "1f469-1f52c","1f469-200d-1f52c","woman scientist",":woman_scientist:","" "1f468-1f3ff-1f4bc","1f468-1f3ff-200d-1f4bc","man office worker: dark skin tone",":man_office_worker_tone5:",":man_office_worker_dark_skin_tone:" "1f468-1f3fe-1f4bc","1f468-1f3fe-200d-1f4bc","man office worker: medium-dark skin tone",":man_office_worker_tone4:",":man_office_worker_medium_dark_skin_tone:" "1f468-1f3fd-1f4bc","1f468-1f3fd-200d-1f4bc","man office worker: medium skin tone",":man_office_worker_tone3:",":man_office_worker_medium_skin_tone:" "1f468-1f3fc-1f4bc","1f468-1f3fc-200d-1f4bc","man office worker: medium-light skin tone",":man_office_worker_tone2:",":man_office_worker_medium_light_skin_tone:" "1f468-1f3fb-1f4bc","1f468-1f3fb-200d-1f4bc","man office worker: light skin tone",":man_office_worker_tone1:",":man_office_worker_light_skin_tone:" "1f468-1f4bc","1f468-200d-1f4bc","man office worker",":man_office_worker:","" "1f469-1f3ff-1f4bc","1f469-1f3ff-200d-1f4bc","woman office worker: dark skin tone",":woman_office_worker_tone5:",":woman_office_worker_dark_skin_tone:" "1f469-1f3fe-1f4bc","1f469-1f3fe-200d-1f4bc","woman office worker: medium-dark skin tone",":woman_office_worker_tone4:",":woman_office_worker_medium_dark_skin_tone:" "1f469-1f3fd-1f4bc","1f469-1f3fd-200d-1f4bc","woman office worker: medium skin tone",":woman_office_worker_tone3:",":woman_office_worker_medium_skin_tone:" "1f469-1f3fc-1f4bc","1f469-1f3fc-200d-1f4bc","woman office worker: medium-light skin tone",":woman_office_worker_tone2:",":woman_office_worker_medium_light_skin_tone:" "1f469-1f3fb-1f4bc","1f469-1f3fb-200d-1f4bc","woman office worker: light skin tone",":woman_office_worker_tone1:",":woman_office_worker_light_skin_tone:" "1f469-1f4bc","1f469-200d-1f4bc","woman office worker",":woman_office_worker:","" "1f468-1f3ff-1f527","1f468-1f3ff-200d-1f527","man mechanic: dark skin tone",":man_mechanic_tone5:",":man_mechanic_dark_skin_tone:" "1f468-1f3fe-1f527","1f468-1f3fe-200d-1f527","man mechanic: medium-dark skin tone",":man_mechanic_tone4:",":man_mechanic_medium_dark_skin_tone:" "1f468-1f3fd-1f527","1f468-1f3fd-200d-1f527","man mechanic: medium skin tone",":man_mechanic_tone3:",":man_mechanic_medium_skin_tone:" "1f468-1f3fc-1f527","1f468-1f3fc-200d-1f527","man mechanic: medium-light skin tone",":man_mechanic_tone2:",":man_mechanic_medium_light_skin_tone:" "1f468-1f3fb-1f527","1f468-1f3fb-200d-1f527","man mechanic: light skin tone",":man_mechanic_tone1:",":man_mechanic_light_skin_tone:" "1f468-1f527","1f468-200d-1f527","man mechanic",":man_mechanic:","" "1f469-1f3ff-1f527","1f469-1f3ff-200d-1f527","woman mechanic: dark skin tone",":woman_mechanic_tone5:",":woman_mechanic_dark_skin_tone:" "1f469-1f3fe-1f527","1f469-1f3fe-200d-1f527","woman mechanic: medium-dark skin tone",":woman_mechanic_tone4:",":woman_mechanic_medium_dark_skin_tone:" "1f469-1f3fd-1f527","1f469-1f3fd-200d-1f527","woman mechanic: medium skin tone",":woman_mechanic_tone3:",":woman_mechanic_medium_skin_tone:" "1f469-1f3fc-1f527","1f469-1f3fc-200d-1f527","woman mechanic: medium-light skin tone",":woman_mechanic_tone2:",":woman_mechanic_medium_light_skin_tone:" "1f469-1f3fb-1f527","1f469-1f3fb-200d-1f527","woman mechanic: light skin tone",":woman_mechanic_tone1:",":woman_mechanic_light_skin_tone:" "1f469-1f527","1f469-200d-1f527","woman mechanic",":woman_mechanic:","" "1f468-1f3ff-2695","1f468-1f3ff-200d-2695-fe0f","man health worker: dark skin tone",":man_health_worker_tone5:",":man_health_worker_dark_skin_tone:" "1f468-1f3fe-2695","1f468-1f3fe-200d-2695-fe0f","man health worker: medium-dark skin tone",":man_health_worker_tone4:",":man_health_worker_medium_dark_skin_tone:" "1f468-1f3fd-2695","1f468-1f3fd-200d-2695-fe0f","man health worker: medium skin tone",":man_health_worker_tone3:",":man_health_worker_medium_skin_tone:" "1f468-1f3fc-2695","1f468-1f3fc-200d-2695-fe0f","man health worker: medium-light skin tone",":man_health_worker_tone2:",":man_health_worker_medium_light_skin_tone:" "1f468-1f3fb-2695","1f468-1f3fb-200d-2695-fe0f","man health worker: light skin tone",":man_health_worker_tone1:",":man_health_worker_light_skin_tone:" "1f468-2695","1f468-200d-2695-fe0f","man health worker",":man_health_worker:","" "1f469-1f3ff-2695","1f469-1f3ff-200d-2695-fe0f","woman health worker: dark skin tone",":woman_health_worker_tone5:",":woman_health_worker_dark_skin_tone:" "1f469-1f3fe-2695","1f469-1f3fe-200d-2695-fe0f","woman health worker: medium-dark skin tone",":woman_health_worker_tone4:",":woman_health_worker_medium_dark_skin_tone:" "1f469-1f3fd-2695","1f469-1f3fd-200d-2695-fe0f","woman health worker: medium skin tone",":woman_health_worker_tone3:",":woman_health_worker_medium_skin_tone:" "1f469-1f3fc-2695","1f469-1f3fc-200d-2695-fe0f","woman health worker: medium-light skin tone",":woman_health_worker_tone2:",":woman_health_worker_medium_light_skin_tone:" "1f469-1f3fb-2695","1f469-1f3fb-200d-2695-fe0f","woman health worker: light skin tone",":woman_health_worker_tone1:",":woman_health_worker_light_skin_tone:" "1f469-2695","1f469-200d-2695-fe0f","woman health worker",":woman_health_worker:","" "1f468-1f3ff-1f3ed","1f468-1f3ff-200d-1f3ed","man factory worker: dark skin tone",":man_factory_worker_tone5:",":man_factory_worker_dark_skin_tone:" "1f468-1f3fe-1f3ed","1f468-1f3fe-200d-1f3ed","man factory worker: medium-dark skin tone",":man_factory_worker_tone4:",":man_factory_worker_medium_dark_skin_tone:" "1f468-1f3fd-1f3ed","1f468-1f3fd-200d-1f3ed","man factory worker: medium skin tone",":man_factory_worker_tone3:",":man_factory_worker_medium_skin_tone:" "1f468-1f3fc-1f3ed","1f468-1f3fc-200d-1f3ed","man factory worker: medium-light skin tone",":man_factory_worker_tone2:",":man_factory_worker_medium_light_skin_tone:" "1f468-1f3fb-1f3ed","1f468-1f3fb-200d-1f3ed","man factory worker: light skin tone",":man_factory_worker_tone1:",":man_factory_worker_light_skin_tone:" "1f468-1f3ed","1f468-200d-1f3ed","man factory worker",":man_factory_worker:","" "1f469-1f3ff-1f3ed","1f469-1f3ff-200d-1f3ed","woman factory worker: dark skin tone",":woman_factory_worker_tone5:",":woman_factory_worker_dark_skin_tone:" "1f469-1f3fe-1f3ed","1f469-1f3fe-200d-1f3ed","woman factory worker: medium-dark skin tone",":woman_factory_worker_tone4:",":woman_factory_worker_medium_dark_skin_tone:" "1f469-1f3fd-1f3ed","1f469-1f3fd-200d-1f3ed","woman factory worker: medium skin tone",":woman_factory_worker_tone3:",":woman_factory_worker_medium_skin_tone:" "1f469-1f3fc-1f3ed","1f469-1f3fc-200d-1f3ed","woman factory worker: medium-light skin tone",":woman_factory_worker_tone2:",":woman_factory_worker_medium_light_skin_tone:" "1f469-1f3fb-1f3ed","1f469-1f3fb-200d-1f3ed","woman factory worker: light skin tone",":woman_factory_worker_tone1:",":woman_factory_worker_light_skin_tone:" "1f469-1f3ed","1f469-200d-1f3ed","woman factory worker",":woman_factory_worker:","" "1f468-1f3ff-1f373","1f468-1f3ff-200d-1f373","man cook: dark skin tone",":man_cook_tone5:",":man_cook_dark_skin_tone:" "1f468-1f3fe-1f373","1f468-1f3fe-200d-1f373","man cook: medium-dark skin tone",":man_cook_tone4:",":man_cook_medium_dark_skin_tone:" "1f468-1f3fd-1f373","1f468-1f3fd-200d-1f373","man cook: medium skin tone",":man_cook_tone3:",":man_cook_medium_skin_tone:" "1f468-1f3fc-1f373","1f468-1f3fc-200d-1f373","man cook: medium-light skin tone",":man_cook_tone2:",":man_cook_medium_light_skin_tone:" "1f468-1f3fb-1f373","1f468-1f3fb-200d-1f373","man cook: light skin tone",":man_cook_tone1:",":man_cook_light_skin_tone:" "1f468-1f373","1f468-200d-1f373","man cook",":man_cook:","" "1f469-1f3ff-1f373","1f469-1f3ff-200d-1f373","woman cook: dark skin tone",":woman_cook_tone5:",":woman_cook_dark_skin_tone:" "1f469-1f3fe-1f373","1f469-1f3fe-200d-1f373","woman cook: medium-dark skin tone",":woman_cook_tone4:",":woman_cook_medium_dark_skin_tone:" "1f469-1f3fd-1f373","1f469-1f3fd-200d-1f373","woman cook: medium skin tone",":woman_cook_tone3:",":woman_cook_medium_skin_tone:" "1f469-1f3fc-1f373","1f469-1f3fc-200d-1f373","woman cook: medium-light skin tone",":woman_cook_tone2:",":woman_cook_medium_light_skin_tone:" "1f469-1f3fb-1f373","1f469-1f3fb-200d-1f373","woman cook: light skin tone",":woman_cook_tone1:",":woman_cook_light_skin_tone:" "1f469-1f373","1f469-200d-1f373","woman cook",":woman_cook:","" "1f468-1f3ff-1f33e","1f468-1f3ff-200d-1f33e","man farmer: dark skin tone",":man_farmer_tone5:",":man_farmer_dark_skin_tone:" "1f468-1f3fe-1f33e","1f468-1f3fe-200d-1f33e","man farmer: medium-dark skin tone",":man_farmer_tone4:",":man_farmer_medium_dark_skin_tone:" "1f468-1f3fd-1f33e","1f468-1f3fd-200d-1f33e","man farmer: medium skin tone",":man_farmer_tone3:",":man_farmer_medium_skin_tone:" "1f468-1f3fc-1f33e","1f468-1f3fc-200d-1f33e","man farmer: medium-light skin tone",":man_farmer_tone2:",":man_farmer_medium_light_skin_tone:" "1f468-1f3fb-1f33e","1f468-1f3fb-200d-1f33e","man farmer: light skin tone",":man_farmer_tone1:",":man_farmer_light_skin_tone:" "1f468-1f33e","1f468-200d-1f33e","man farmer",":man_farmer:","" "1f469-1f3ff-1f33e","1f469-1f3ff-200d-1f33e","woman farmer: dark skin tone",":woman_farmer_tone5:",":woman_farmer_dark_skin_tone:" "1f469-1f3fe-1f33e","1f469-1f3fe-200d-1f33e","woman farmer: medium-dark skin tone",":woman_farmer_tone4:",":woman_farmer_medium_dark_skin_tone:" "1f469-1f3fd-1f33e","1f469-1f3fd-200d-1f33e","woman farmer: medium skin tone",":woman_farmer_tone3:",":woman_farmer_medium_skin_tone:" "1f469-1f3fc-1f33e","1f469-1f3fc-200d-1f33e","woman farmer: medium-light skin tone",":woman_farmer_tone2:",":woman_farmer_medium_light_skin_tone:" "1f469-1f3fb-1f33e","1f469-1f3fb-200d-1f33e","woman farmer: light skin tone",":woman_farmer_tone1:",":woman_farmer_light_skin_tone:" "1f469-1f33e","1f469-200d-1f33e","woman farmer",":woman_farmer:","" "1f574-1f3fb","1f574-1f3fb","man in suit levitating: light skin tone",":levitate_tone1:",":man_in_business_suit_levitating_tone1:|:man_in_business_suit_levitating_light_skin_tone:" "1f574-1f3fc","1f574-1f3fc","man in suit levitating: medium-light skin tone",":levitate_tone2:",":man_in_business_suit_levitating_tone2:|:man_in_business_suit_levitating_medium_light_skin_tone:" "1f574-1f3fd","1f574-1f3fd","man in suit levitating: medium skin tone",":levitate_tone3:",":man_in_business_suit_levitating_tone3:|:man_in_business_suit_levitating_medium_skin_tone:" "1f574-1f3fe","1f574-1f3fe","man in suit levitating: medium-dark skin tone",":levitate_tone4:",":man_in_business_suit_levitating_tone4:|:man_in_business_suit_levitating_medium_dark_skin_tone:" "1f574-1f3ff","1f574-1f3ff","man in suit levitating: dark skin tone",":levitate_tone5:",":man_in_business_suit_levitating_tone5:|:man_in_business_suit_levitating_dark_skin_tone:" "1f6cc-1f3fb","1f6cc-1f3fb","person in bed: light skin tone",":person_in_bed_tone1:",":person_in_bed_light_skin_tone:" "1f6cc-1f3fc","1f6cc-1f3fc","person in bed: medium-light skin tone",":person_in_bed_tone2:",":person_in_bed_medium_light_skin_tone:" "1f6cc-1f3fd","1f6cc-1f3fd","person in bed: medium skin tone",":person_in_bed_tone3:",":person_in_bed_medium_skin_tone:" "1f6cc-1f3fe","1f6cc-1f3fe","person in bed: medium-dark skin tone",":person_in_bed_tone4:",":person_in_bed_medium_dark_skin_tone:" "1f6cc-1f3ff","1f6cc-1f3ff","person in bed: dark skin tone",":person_in_bed_tone5:",":person_in_bed_dark_skin_tone:" "1f468-1f466","1f468-200d-1f466","family: man, boy",":family_man_boy:","" "1f468-1f466-1f466","1f468-200d-1f466-200d-1f466","family: man, boy, boy",":family_man_boy_boy:","" "1f468-1f467","1f468-200d-1f467","family: man, girl",":family_man_girl:","" "1f468-1f467-1f466","1f468-200d-1f467-200d-1f466","family: man, girl, boy",":family_man_girl_boy:","" "1f469-1f466","1f469-200d-1f466","family: woman, boy",":family_woman_boy:","" "1f469-1f466-1f466","1f469-200d-1f466-200d-1f466","family: woman, boy, boy",":family_woman_boy_boy:","" "1f469-1f467","1f469-200d-1f467","family: woman, girl",":family_woman_girl:","" "1f469-1f467-1f466","1f469-200d-1f467-200d-1f466","family: woman, girl, boy",":family_woman_girl_boy:","" "1f469-1f467-1f467","1f469-200d-1f467-200d-1f467","family: woman, girl, girl",":family_woman_girl_girl:","" "1f468-2696","1f468-200d-2696-fe0f","man judge",":man_judge:","" "1f468-1f3fb-2696","1f468-1f3fb-200d-2696-fe0f","man judge: light skin tone",":man_judge_tone1:",":man_judge_light_skin_tone:" "1f468-1f3fc-2696","1f468-1f3fc-200d-2696-fe0f","man judge: medium-light skin tone",":man_judge_tone2:",":man_judge_medium_light_skin_tone:" "1f468-1f3fd-2696","1f468-1f3fd-200d-2696-fe0f","man judge: medium skin tone",":man_judge_tone3:",":man_judge_medium_skin_tone:" "1f468-1f3fe-2696","1f468-1f3fe-200d-2696-fe0f","man judge: medium-dark skin tone",":man_judge_tone4:",":man_judge_medium_dark_skin_tone:" "1f468-1f3ff-2696","1f468-1f3ff-200d-2696-fe0f","man judge: dark skin tone",":man_judge_tone5:",":man_judge_dark_skin_tone:" "1f469-2696","1f469-200d-2696-fe0f","woman judge",":woman_judge:","" "1f469-1f3fb-2696","1f469-1f3fb-200d-2696-fe0f","woman judge: light skin tone",":woman_judge_tone1:",":woman_judge_light_skin_tone:" "1f469-1f3fc-2696","1f469-1f3fc-200d-2696-fe0f","woman judge: medium-light skin tone",":woman_judge_tone2:",":woman_judge_medium_light_skin_tone:" "1f469-1f3fd-2696","1f469-1f3fd-200d-2696-fe0f","woman judge: medium skin tone",":woman_judge_tone3:",":woman_judge_medium_skin_tone:" "1f469-1f3fe-2696","1f469-1f3fe-200d-2696-fe0f","woman judge: medium-dark skin tone",":woman_judge_tone4:",":woman_judge_medium_dark_skin_tone:" "1f469-1f3ff-2696","1f469-1f3ff-200d-2696-fe0f","woman judge: dark skin tone",":woman_judge_tone5:",":woman_judge_dark_skin_tone:" "1f468-2708","1f468-200d-2708-fe0f","man pilot",":man_pilot:","" "1f468-1f3fb-2708","1f468-1f3fb-200d-2708-fe0f","man pilot: light skin tone",":man_pilot_tone1:",":man_pilot_light_skin_tone:" "1f468-1f3fc-2708","1f468-1f3fc-200d-2708-fe0f","man pilot: medium-light skin tone",":man_pilot_tone2:",":man_pilot_medium_light_skin_tone:" "1f468-1f3fd-2708","1f468-1f3fd-200d-2708-fe0f","man pilot: medium skin tone",":man_pilot_tone3:",":man_pilot_medium_skin_tone:" "1f468-1f3fe-2708","1f468-1f3fe-200d-2708-fe0f","man pilot: medium-dark skin tone",":man_pilot_tone4:",":man_pilot_medium_dark_skin_tone:" "1f468-1f3ff-2708","1f468-1f3ff-200d-2708-fe0f","man pilot: dark skin tone",":man_pilot_tone5:",":man_pilot_dark_skin_tone:" "1f469-2708","1f469-200d-2708-fe0f","woman pilot",":woman_pilot:","" "1f469-1f3fb-2708","1f469-1f3fb-200d-2708-fe0f","woman pilot: light skin tone",":woman_pilot_tone1:",":woman_pilot_light_skin_tone:" "1f469-1f3fc-2708","1f469-1f3fc-200d-2708-fe0f","woman pilot: medium-light skin tone",":woman_pilot_tone2:",":woman_pilot_medium_light_skin_tone:" "1f469-1f3fd-2708","1f469-1f3fd-200d-2708-fe0f","woman pilot: medium skin tone",":woman_pilot_tone3:",":woman_pilot_medium_skin_tone:" "1f469-1f3fe-2708","1f469-1f3fe-200d-2708-fe0f","woman pilot: medium-dark skin tone",":woman_pilot_tone4:",":woman_pilot_medium_dark_skin_tone:" "1f469-1f3ff-2708","1f469-1f3ff-200d-2708-fe0f","woman pilot: dark skin tone",":woman_pilot_tone5:",":woman_pilot_dark_skin_tone:" "1f468-1f3a8","1f468-200d-1f3a8","man artist",":man_artist:","" "1f468-1f3fb-1f3a8","1f468-1f3fb-200d-1f3a8","man artist: light skin tone",":man_artist_tone1:",":man_artist_light_skin_tone:" "1f468-1f3fc-1f3a8","1f468-1f3fc-200d-1f3a8","man artist: medium-light skin tone",":man_artist_tone2:",":man_artist_medium_light_skin_tone:" "1f468-1f3fd-1f3a8","1f468-1f3fd-200d-1f3a8","man artist: medium skin tone",":man_artist_tone3:",":man_artist_medium_skin_tone:" "1f468-1f3fe-1f3a8","1f468-1f3fe-200d-1f3a8","man artist: medium-dark skin tone",":man_artist_tone4:",":man_artist_medium_dark_skin_tone:" "1f468-1f3ff-1f3a8","1f468-1f3ff-200d-1f3a8","man artist: dark skin tone",":man_artist_tone5:",":man_artist_dark_skin_tone:" "1f469-1f3a8","1f469-200d-1f3a8","woman artist",":woman_artist:","" "1f469-1f3fb-1f3a8","1f469-1f3fb-200d-1f3a8","woman artist: light skin tone",":woman_artist_tone1:",":woman_artist_light_skin_tone:" "1f469-1f3fc-1f3a8","1f469-1f3fc-200d-1f3a8","woman artist: medium-light skin tone",":woman_artist_tone2:",":woman_artist_medium_light_skin_tone:" "1f469-1f3fd-1f3a8","1f469-1f3fd-200d-1f3a8","woman artist: medium skin tone",":woman_artist_tone3:",":woman_artist_medium_skin_tone:" "1f469-1f3fe-1f3a8","1f469-1f3fe-200d-1f3a8","woman artist: medium-dark skin tone",":woman_artist_tone4:",":woman_artist_medium_dark_skin_tone:" "1f469-1f3ff-1f3a8","1f469-1f3ff-200d-1f3a8","woman artist: dark skin tone",":woman_artist_tone5:",":woman_artist_dark_skin_tone:" "1f468-1f680","1f468-200d-1f680","man astronaut",":man_astronaut:","" "1f468-1f3fb-1f680","1f468-1f3fb-200d-1f680","man astronaut: light skin tone",":man_astronaut_tone1:",":man_astronaut_light_skin_tone:" "1f468-1f3fc-1f680","1f468-1f3fc-200d-1f680","man astronaut: medium-light skin tone",":man_astronaut_tone2:",":man_astronaut_medium_light_skin_tone:" "1f468-1f3fd-1f680","1f468-1f3fd-200d-1f680","man astronaut: medium skin tone",":man_astronaut_tone3:",":man_astronaut_medium_skin_tone:" "1f468-1f3fe-1f680","1f468-1f3fe-200d-1f680","man astronaut: medium-dark skin tone",":man_astronaut_tone4:",":man_astronaut_medium_dark_skin_tone:" "1f468-1f3ff-1f680","1f468-1f3ff-200d-1f680","man astronaut: dark skin tone",":man_astronaut_tone5:",":man_astronaut_dark_skin_tone:" "1f469-1f680","1f469-200d-1f680","woman astronaut",":woman_astronaut:","" "1f469-1f3fb-1f680","1f469-1f3fb-200d-1f680","woman astronaut: light skin tone",":woman_astronaut_tone1:",":woman_astronaut_light_skin_tone:" "1f469-1f3fc-1f680","1f469-1f3fc-200d-1f680","woman astronaut: medium-light skin tone",":woman_astronaut_tone2:",":woman_astronaut_medium_light_skin_tone:" "1f469-1f3fd-1f680","1f469-1f3fd-200d-1f680","woman astronaut: medium skin tone",":woman_astronaut_tone3:",":woman_astronaut_medium_skin_tone:" "1f469-1f3fe-1f680","1f469-1f3fe-200d-1f680","woman astronaut: medium-dark skin tone",":woman_astronaut_tone4:",":woman_astronaut_medium_dark_skin_tone:" "1f469-1f3ff-1f680","1f469-1f3ff-200d-1f680","woman astronaut: dark skin tone",":woman_astronaut_tone5:",":woman_astronaut_dark_skin_tone:" "1f468-1f692","1f468-200d-1f692","man firefighter",":man_firefighter:","" "1f468-1f3fb-1f692","1f468-1f3fb-200d-1f692","man firefighter: light skin tone",":man_firefighter_tone1:",":man_firefighter_light_skin_tone:" "1f468-1f3fc-1f692","1f468-1f3fc-200d-1f692","man firefighter: medium-light skin tone",":man_firefighter_tone2:",":man_firefighter_medium_light_skin_tone:" "1f468-1f3fd-1f692","1f468-1f3fd-200d-1f692","man firefighter: medium skin tone",":man_firefighter_tone3:",":man_firefighter_medium_skin_tone:" "1f468-1f3fe-1f692","1f468-1f3fe-200d-1f692","man firefighter: medium-dark skin tone",":man_firefighter_tone4:",":man_firefighter_medium_dark_skin_tone:" "1f468-1f3ff-1f692","1f468-1f3ff-200d-1f692","man firefighter: dark skin tone",":man_firefighter_tone5:",":man_firefighter_dark_skin_tone:" "1f469-1f692","1f469-200d-1f692","woman firefighter",":woman_firefighter:","" "1f469-1f3fb-1f692","1f469-1f3fb-200d-1f692","woman firefighter: light skin tone",":woman_firefighter_tone1:",":woman_firefighter_light_skin_tone:" "1f469-1f3fc-1f692","1f469-1f3fc-200d-1f692","woman firefighter: medium-light skin tone",":woman_firefighter_tone2:",":woman_firefighter_medium_light_skin_tone:" "1f469-1f3fd-1f692","1f469-1f3fd-200d-1f692","woman firefighter: medium skin tone",":woman_firefighter_tone3:",":woman_firefighter_medium_skin_tone:" "1f469-1f3fe-1f692","1f469-1f3fe-200d-1f692","woman firefighter: medium-dark skin tone",":woman_firefighter_tone4:",":woman_firefighter_medium_dark_skin_tone:" "1f469-1f3ff-1f692","1f469-1f3ff-200d-1f692","woman firefighter: dark skin tone",":woman_firefighter_tone5:",":woman_firefighter_dark_skin_tone:" "2640","2640-fe0f","female sign",":female_sign:","" "2642","2642-fe0f","male sign",":male_sign:","" "2695","2695-fe0f","medical symbol",":medical_symbol:","" "1f1fa-1f1f3","1f1fa-1f1f3","flag: United Nations",":united_nations:","" "1f3c2-1f3fc","1f3c2-1f3fc","snowboarder: medium-light skin tone",":snowboarder_tone2:",":snowboarder_medium_light_skin_tone:" "1f3c2-1f3fd","1f3c2-1f3fd","snowboarder: medium skin tone",":snowboarder_tone3:",":snowboarder_medium_skin_tone:" "1f3c2-1f3fe","1f3c2-1f3fe","snowboarder: medium-dark skin tone",":snowboarder_tone4:",":snowboarder_medium_dark_skin_tone:" "1f3c2-1f3ff","1f3c2-1f3ff","snowboarder: dark skin tone",":snowboarder_tone5:",":snowboarder_dark_skin_tone:" "1f3cc-1f3fb","1f3cc-1f3fb","person golfing: light skin tone",":person_golfing_tone1:",":person_golfing_light_skin_tone:" "1f3cc-1f3fc","1f3cc-1f3fc","person golfing: medium-light skin tone",":person_golfing_tone2:",":person_golfing_medium_light_skin_tone:" "1f3cc-1f3fd","1f3cc-1f3fd","person golfing: medium skin tone",":person_golfing_tone3:",":person_golfing_medium_skin_tone:" "1f3cc-1f3fe","1f3cc-1f3fe","person golfing: medium-dark skin tone",":person_golfing_tone4:",":person_golfing_medium_dark_skin_tone:" "1f3cc-1f3ff","1f3cc-1f3ff","person golfing: dark skin tone",":person_golfing_tone5:",":person_golfing_dark_skin_tone:" "1f468-1f467-1f467","1f468-200d-1f467-200d-1f467","family: man, girl, girl",":family_man_girl_girl:","" "1f468-1f469-1f466","1f468-200d-1f469-200d-1f466","family: man, woman, boy",":family_man_woman_boy:","" "1f469-2764-1f468","1f469-200d-2764-fe0f-200d-1f468","couple with heart: woman, man",":couple_with_heart_woman_man:","" "1f469-2764-1f48b-1f468","1f469-200d-2764-fe0f-200d-1f48b-200d-1f468","kiss: woman, man",":kiss_woman_man:","" "1f6f7","1f6f7","sled",":sled:","" "1f6f8","1f6f8","flying saucer",":flying_saucer:","" "1f91f","1f91f","love-you gesture",":love_you_gesture:","" "1f928","1f928","face with raised eyebrow",":face_with_raised_eyebrow:","" "1f929","1f929","star-struck",":star_struck:","" "1f92a","1f92a","zany face",":zany_face:","" "1f92b","1f92b","shushing face",":shushing_face:","" "1f92c","1f92c","face with symbols on mouth",":face_with_symbols_over_mouth:","" "1f92d","1f92d","face with hand over mouth",":face_with_hand_over_mouth:","" "1f92e","1f92e","face vomiting",":face_vomiting:","" "1f92f","1f92f","exploding head",":exploding_head:","" "1f931","1f931","breast-feeding",":breast_feeding:","" "1f932","1f932","palms up together",":palms_up_together:","" "1f94c","1f94c","curling stone",":curling_stone:","" "1f95f","1f95f","dumpling",":dumpling:","" "1f960","1f960","fortune cookie",":fortune_cookie:","" "1f961","1f961","takeout box",":takeout_box:","" "1f962","1f962","chopsticks",":chopsticks:","" "1f963","1f963","bowl with spoon",":bowl_with_spoon:","" "1f964","1f964","cup with straw",":cup_with_straw:","" "1f965","1f965","coconut",":coconut:","" "1f966","1f966","broccoli",":broccoli:","" "1f967","1f967","pie",":pie:","" "1f968","1f968","pretzel",":pretzel:","" "1f969","1f969","cut of meat",":cut_of_meat:","" "1f96a","1f96a","sandwich",":sandwich:","" "1f96b","1f96b","canned food",":canned_food:","" "1f992","1f992","giraffe",":giraffe:","" "1f993","1f993","zebra",":zebra:","" "1f994","1f994","hedgehog",":hedgehog:","" "1f995","1f995","sauropod",":sauropod:","" "1f996","1f996","T-Rex",":t_rex:","" "1f997","1f997","cricket",":cricket:","" "1f9d0","1f9d0","face with monocle",":face_with_monocle:","" "1f9d1","1f9d1","person",":adult:","" "1f9d2","1f9d2","child",":child:","" "1f9d3","1f9d3","older person",":older_adult:","" "1f9d4","1f9d4","man: beard",":bearded_person:","" "1f9d5","1f9d5","woman with headscarf",":woman_with_headscarf:","" "1f9d6","1f9d6","person in steamy room",":person_in_steamy_room:","" "1f9d7","1f9d7","person climbing",":person_climbing:","" "1f9d8","1f9d8","person in lotus position",":person_in_lotus_position:","" "1f9d9","1f9d9","mage",":mage:","" "1f9da","1f9da","fairy",":fairy:","" "1f9db","1f9db","vampire",":vampire:","" "1f9dc","1f9dc","merperson",":merperson:","" "1f9dd","1f9dd","elf",":elf:","" "1f9de","1f9de","genie",":genie:","" "1f9df","1f9df","zombie",":zombie:","" "1f9e0","1f9e0","brain",":brain:","" "1f9e1","1f9e1","orange heart",":orange_heart:","" "1f9e2","1f9e2","billed cap",":billed_cap:","" "1f9e3","1f9e3","scarf",":scarf:","" "1f9e4","1f9e4","gloves",":gloves:","" "1f9e5","1f9e5","coat",":coat:","" "1f9e6","1f9e6","socks",":socks:","" "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","1f3f4-e0067-e0062-e0065-e006e-e0067-e007f","flag: England",":england:","" "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","1f3f4-e0067-e0062-e0073-e0063-e0074-e007f","flag: Scotland",":scotland:","" "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","1f3f4-e0067-e0062-e0077-e006c-e0073-e007f","flag: Wales",":wales:","" "1f91f-1f3fb","1f91f-1f3fb","love-you gesture: light skin tone",":love_you_gesture_tone1:",":love_you_gesture_light_skin_tone:" "1f91f-1f3fc","1f91f-1f3fc","love-you gesture: medium-light skin tone",":love_you_gesture_tone2:",":love_you_gesture_medium_light_skin_tone:" "1f91f-1f3fd","1f91f-1f3fd","love-you gesture: medium skin tone",":love_you_gesture_tone3:",":love_you_gesture_medium_skin_tone:" "1f91f-1f3fe","1f91f-1f3fe","love-you gesture: medium-dark skin tone",":love_you_gesture_tone4:",":love_you_gesture_medium_dark_skin_tone:" "1f91f-1f3ff","1f91f-1f3ff","love-you gesture: dark skin tone",":love_you_gesture_tone5:",":love_you_gesture_dark_skin_tone:" "1f931-1f3fb","1f931-1f3fb","breast-feeding: light skin tone",":breast_feeding_tone1:",":breast_feeding_light_skin_tone:" "1f931-1f3fc","1f931-1f3fc","breast-feeding: medium-light skin tone",":breast_feeding_tone2:",":breast_feeding_medium_light_skin_tone:" "1f931-1f3fd","1f931-1f3fd","breast-feeding: medium skin tone",":breast_feeding_tone3:",":breast_feeding_medium_skin_tone:" "1f931-1f3fe","1f931-1f3fe","breast-feeding: medium-dark skin tone",":breast_feeding_tone4:",":breast_feeding_medium_dark_skin_tone:" "1f931-1f3ff","1f931-1f3ff","breast-feeding: dark skin tone",":breast_feeding_tone5:",":breast_feeding_dark_skin_tone:" "1f932-1f3fb","1f932-1f3fb","palms up together: light skin tone",":palms_up_together_tone1:",":palms_up_together_light_skin_tone:" "1f932-1f3fc","1f932-1f3fc","palms up together: medium-light skin tone",":palms_up_together_tone2:",":palms_up_together_medium_light_skin_tone:" "1f932-1f3fd","1f932-1f3fd","palms up together: medium skin tone",":palms_up_together_tone3:",":palms_up_together_medium_skin_tone:" "1f932-1f3fe","1f932-1f3fe","palms up together: medium-dark skin tone",":palms_up_together_tone4:",":palms_up_together_medium_dark_skin_tone:" "1f932-1f3ff","1f932-1f3ff","palms up together: dark skin tone",":palms_up_together_tone5:",":palms_up_together_dark_skin_tone:" "1f9d1-1f3fb","1f9d1-1f3fb","adult: light skin tone",":adult_tone1:",":adult_light_skin_tone:" "1f9d1-1f3fc","1f9d1-1f3fc","adult: medium-light skin tone",":adult_tone2:",":adult_medium_light_skin_tone:" "1f9d1-1f3fd","1f9d1-1f3fd","adult: medium skin tone",":adult_tone3:",":adult_medium_skin_tone:" "1f9d1-1f3fe","1f9d1-1f3fe","adult: medium-dark skin tone",":adult_tone4:",":adult_medium_dark_skin_tone:" "1f9d1-1f3ff","1f9d1-1f3ff","adult: dark skin tone",":adult_tone5:",":adult_dark_skin_tone:" "1f9d2-1f3fb","1f9d2-1f3fb","child: light skin tone",":child_tone1:",":child_light_skin_tone:" "1f9d2-1f3fc","1f9d2-1f3fc","child: medium-light skin tone",":child_tone2:",":child_medium_light_skin_tone:" "1f9d2-1f3fd","1f9d2-1f3fd","child: medium skin tone",":child_tone3:",":child_medium_skin_tone:" "1f9d2-1f3fe","1f9d2-1f3fe","child: medium-dark skin tone",":child_tone4:",":child_medium_dark_skin_tone:" "1f9d2-1f3ff","1f9d2-1f3ff","child: dark skin tone",":child_tone5:",":child_dark_skin_tone:" "1f9d3-1f3fb","1f9d3-1f3fb","older adult: light skin tone",":older_adult_tone1:",":older_adult_light_skin_tone:" "1f9d3-1f3fc","1f9d3-1f3fc","older adult: medium-light skin tone",":older_adult_tone2:",":older_adult_medium_light_skin_tone:" "1f9d3-1f3fd","1f9d3-1f3fd","older adult: medium skin tone",":older_adult_tone3:",":older_adult_medium_skin_tone:" "1f9d3-1f3fe","1f9d3-1f3fe","older adult: medium-dark skin tone",":older_adult_tone4:",":older_adult_medium_dark_skin_tone:" "1f9d3-1f3ff","1f9d3-1f3ff","older adult: dark skin tone",":older_adult_tone5:",":older_adult_dark_skin_tone:" "1f9d4-1f3fb","1f9d4-1f3fb","bearded person: light skin tone",":bearded_person_tone1:",":bearded_person_light_skin_tone:" "1f9d4-1f3fc","1f9d4-1f3fc","bearded person: medium-light skin tone",":bearded_person_tone2:",":bearded_person_medium_light_skin_tone:" "1f9d4-1f3fd","1f9d4-1f3fd","bearded person: medium skin tone",":bearded_person_tone3:",":bearded_person_medium_skin_tone:" "1f9d4-1f3fe","1f9d4-1f3fe","bearded person: medium-dark skin tone",":bearded_person_tone4:",":bearded_person_medium_dark_skin_tone:" "1f9d4-1f3ff","1f9d4-1f3ff","bearded person: dark skin tone",":bearded_person_tone5:",":bearded_person_dark_skin_tone:" "1f9d5-1f3fb","1f9d5-1f3fb","woman with headscarf: light skin tone",":woman_with_headscarf_tone1:",":woman_with_headscarf_light_skin_tone:" "1f9d5-1f3fc","1f9d5-1f3fc","woman with headscarf: medium-light skin tone",":woman_with_headscarf_tone2:",":woman_with_headscarf_medium_light_skin_tone:" "1f9d5-1f3fd","1f9d5-1f3fd","woman with headscarf: medium skin tone",":woman_with_headscarf_tone3:",":woman_with_headscarf_medium_skin_tone:" "1f9d5-1f3fe","1f9d5-1f3fe","woman with headscarf: medium-dark skin tone",":woman_with_headscarf_tone4:",":woman_with_headscarf_medium_dark_skin_tone:" "1f9d5-1f3ff","1f9d5-1f3ff","woman with headscarf: dark skin tone",":woman_with_headscarf_tone5:",":woman_with_headscarf_dark_skin_tone:" "1f9d6-1f3fb","1f9d6-1f3fb","person in steamy room: light skin tone",":person_in_steamy_room_tone1:",":person_in_steamy_room_light_skin_tone:" "1f9d6-1f3fc","1f9d6-1f3fc","person in steamy room: medium-light skin tone",":person_in_steamy_room_tone2:",":person_in_steamy_room_medium_light_skin_tone:" "1f9d6-1f3fd","1f9d6-1f3fd","person in steamy room: medium skin tone",":person_in_steamy_room_tone3:",":person_in_steamy_room_medium_skin_tone:" "1f9d6-1f3fe","1f9d6-1f3fe","person in steamy room: medium-dark skin tone",":person_in_steamy_room_tone4:",":person_in_steamy_room_medium_dark_skin_tone:" "1f9d6-1f3ff","1f9d6-1f3ff","person in steamy room: dark skin tone",":person_in_steamy_room_tone5:",":person_in_steamy_room_dark_skin_tone:" "1f9d7-1f3fb","1f9d7-1f3fb","person climbing: light skin tone",":person_climbing_tone1:",":person_climbing_light_skin_tone:" "1f9d7-1f3fc","1f9d7-1f3fc","person climbing: medium-light skin tone",":person_climbing_tone2:",":person_climbing_medium_light_skin_tone:" "1f9d7-1f3fd","1f9d7-1f3fd","person climbing: medium skin tone",":person_climbing_tone3:",":person_climbing_medium_skin_tone:" "1f9d7-1f3fe","1f9d7-1f3fe","person climbing: medium-dark skin tone",":person_climbing_tone4:",":person_climbing_medium_dark_skin_tone:" "1f9d7-1f3ff","1f9d7-1f3ff","person climbing: dark skin tone",":person_climbing_tone5:",":person_climbing_dark_skin_tone:" "1f9d8-1f3fb","1f9d8-1f3fb","person in lotus position: light skin tone",":person_in_lotus_position_tone1:",":person_in_lotus_position_light_skin_tone:" "1f9d8-1f3fc","1f9d8-1f3fc","person in lotus position: medium-light skin tone",":person_in_lotus_position_tone2:",":person_in_lotus_position_medium_light_skin_tone:" "1f9d8-1f3fd","1f9d8-1f3fd","person in lotus position: medium skin tone",":person_in_lotus_position_tone3:",":person_in_lotus_position_medium_skin_tone:" "1f9d8-1f3fe","1f9d8-1f3fe","person in lotus position: medium-dark skin tone",":person_in_lotus_position_tone4:",":person_in_lotus_position_medium_dark_skin_tone:" "1f9d8-1f3ff","1f9d8-1f3ff","person in lotus position: dark skin tone",":person_in_lotus_position_tone5:",":person_in_lotus_position_dark_skin_tone:" "1f9d9-1f3fb","1f9d9-1f3fb","mage: light skin tone",":mage_tone1:",":mage_light_skin_tone:" "1f9d9-1f3fc","1f9d9-1f3fc","mage: medium-light skin tone",":mage_tone2:",":mage_medium_light_skin_tone:" "1f9d9-1f3fd","1f9d9-1f3fd","mage: medium skin tone",":mage_tone3:",":mage_medium_skin_tone:" "1f9d9-1f3fe","1f9d9-1f3fe","mage: medium-dark skin tone",":mage_tone4:",":mage_medium_dark_skin_tone:" "1f9d9-1f3ff","1f9d9-1f3ff","mage: dark skin tone",":mage_tone5:",":mage_dark_skin_tone:" "1f9da-1f3fb","1f9da-1f3fb","fairy: light skin tone",":fairy_tone1:",":fairy_light_skin_tone:" "1f9da-1f3fc","1f9da-1f3fc","fairy: medium-light skin tone",":fairy_tone2:",":fairy_medium_light_skin_tone:" "1f9da-1f3fd","1f9da-1f3fd","fairy: medium skin tone",":fairy_tone3:",":fairy_medium_skin_tone:" "1f9da-1f3fe","1f9da-1f3fe","fairy: medium-dark skin tone",":fairy_tone4:",":fairy_medium_dark_skin_tone:" "1f9da-1f3ff","1f9da-1f3ff","fairy: dark skin tone",":fairy_tone5:",":fairy_dark_skin_tone:" "1f9db-1f3fb","1f9db-1f3fb","vampire: light skin tone",":vampire_tone1:",":vampire_light_skin_tone:" "1f9db-1f3fc","1f9db-1f3fc","vampire: medium-light skin tone",":vampire_tone2:",":vampire_medium_light_skin_tone:" "1f9db-1f3fd","1f9db-1f3fd","vampire: medium skin tone",":vampire_tone3:",":vampire_medium_skin_tone:" "1f9db-1f3fe","1f9db-1f3fe","vampire: medium-dark skin tone",":vampire_tone4:",":vampire_medium_dark_skin_tone:" "1f9db-1f3ff","1f9db-1f3ff","vampire: dark skin tone",":vampire_tone5:",":vampire_dark_skin_tone:" "1f9dc-1f3fb","1f9dc-1f3fb","merperson: light skin tone",":merperson_tone1:",":merperson_light_skin_tone:" "1f9dc-1f3fc","1f9dc-1f3fc","merperson: medium-light skin tone",":merperson_tone2:",":merperson_medium_light_skin_tone:" "1f9dc-1f3fd","1f9dc-1f3fd","merperson: medium skin tone",":merperson_tone3:",":merperson_medium_skin_tone:" "1f9dc-1f3fe","1f9dc-1f3fe","merperson: medium-dark skin tone",":merperson_tone4:",":merperson_medium_dark_skin_tone:" "1f9dc-1f3ff","1f9dc-1f3ff","merperson: dark skin tone",":merperson_tone5:",":merperson_dark_skin_tone:" "1f9dd-1f3fb","1f9dd-1f3fb","elf: light skin tone",":elf_tone1:",":elf_light_skin_tone:" "1f9dd-1f3fc","1f9dd-1f3fc","elf: medium-light skin tone",":elf_tone2:",":elf_medium_light_skin_tone:" "1f9dd-1f3fd","1f9dd-1f3fd","elf: medium skin tone",":elf_tone3:",":elf_medium_skin_tone:" "1f9dd-1f3fe","1f9dd-1f3fe","elf: medium-dark skin tone",":elf_tone4:",":elf_medium_dark_skin_tone:" "1f9dd-1f3ff","1f9dd-1f3ff","elf: dark skin tone",":elf_tone5:",":elf_dark_skin_tone:" "1f9d9-2640","1f9d9-200d-2640-fe0f","woman mage",":woman_mage:","" "1f9d9-2642","1f9d9-200d-2642-fe0f","man mage",":man_mage:","" "1f9d9-1f3fb-2640","1f9d9-1f3fb-200d-2640-fe0f","woman mage: light skin tone",":woman_mage_tone1:",":woman_mage_light_skin_tone:" "1f9d9-1f3fb-2642","1f9d9-1f3fb-200d-2642-fe0f","man mage: light skin tone",":man_mage_tone1:",":man_mage_light_skin_tone:" "1f9d9-1f3fc-2640","1f9d9-1f3fc-200d-2640-fe0f","woman mage: medium-light skin tone",":woman_mage_tone2:",":woman_mage_medium_light_skin_tone:" "1f9d9-1f3fc-2642","1f9d9-1f3fc-200d-2642-fe0f","man mage: medium-light skin tone",":man_mage_tone2:",":man_mage_medium_light_skin_tone:" "1f9d9-1f3fd-2640","1f9d9-1f3fd-200d-2640-fe0f","woman mage: medium skin tone",":woman_mage_tone3:",":woman_mage_medium_skin_tone:" "1f9d9-1f3fd-2642","1f9d9-1f3fd-200d-2642-fe0f","man mage: medium skin tone",":man_mage_tone3:",":man_mage_medium_skin_tone:" "1f9d9-1f3fe-2640","1f9d9-1f3fe-200d-2640-fe0f","woman mage: medium-dark skin tone",":woman_mage_tone4:",":woman_mage_medium_dark_skin_tone:" "1f9d9-1f3fe-2642","1f9d9-1f3fe-200d-2642-fe0f","man mage: medium-dark skin tone",":man_mage_tone4:",":man_mage_medium_dark_skin_tone:" "1f9d9-1f3ff-2640","1f9d9-1f3ff-200d-2640-fe0f","woman mage: dark skin tone",":woman_mage_tone5:",":woman_mage_dark_skin_tone:" "1f9d9-1f3ff-2642","1f9d9-1f3ff-200d-2642-fe0f","man mage: dark skin tone",":man_mage_tone5:",":man_mage_dark_skin_tone:" "1f9da-2640","1f9da-200d-2640-fe0f","woman fairy",":woman_fairy:","" "1f9da-2642","1f9da-200d-2642-fe0f","man fairy",":man_fairy:","" "1f9da-1f3fb-2640","1f9da-1f3fb-200d-2640-fe0f","woman fairy: light skin tone",":woman_fairy_tone1:",":woman_fairy_light_skin_tone:" "1f9da-1f3fb-2642","1f9da-1f3fb-200d-2642-fe0f","man fairy: light skin tone",":man_fairy_tone1:",":man_fairy_light_skin_tone:" "1f9da-1f3fc-2640","1f9da-1f3fc-200d-2640-fe0f","woman fairy: medium-light skin tone",":woman_fairy_tone2:",":woman_fairy_medium_light_skin_tone:" "1f9da-1f3fc-2642","1f9da-1f3fc-200d-2642-fe0f","man fairy: medium-light skin tone",":man_fairy_tone2:",":man_fairy_medium_light_skin_tone:" "1f9da-1f3fd-2640","1f9da-1f3fd-200d-2640-fe0f","woman fairy: medium skin tone",":woman_fairy_tone3:",":woman_fairy_medium_skin_tone:" "1f9da-1f3fd-2642","1f9da-1f3fd-200d-2642-fe0f","man fairy: medium skin tone",":man_fairy_tone3:",":man_fairy_medium_skin_tone:" "1f9da-1f3fe-2640","1f9da-1f3fe-200d-2640-fe0f","woman fairy: medium-dark skin tone",":woman_fairy_tone4:",":woman_fairy_medium_dark_skin_tone:" "1f9da-1f3fe-2642","1f9da-1f3fe-200d-2642-fe0f","man fairy: medium-dark skin tone",":man_fairy_tone4:",":man_fairy_medium_dark_skin_tone:" "1f9da-1f3ff-2640","1f9da-1f3ff-200d-2640-fe0f","woman fairy: dark skin tone",":woman_fairy_tone5:",":woman_fairy_dark_skin_tone:" "1f9da-1f3ff-2642","1f9da-1f3ff-200d-2642-fe0f","man fairy: dark skin tone",":man_fairy_tone5:",":man_fairy_dark_skin_tone:" "1f9db-2640","1f9db-200d-2640-fe0f","woman vampire",":woman_vampire:","" "1f9db-2642","1f9db-200d-2642-fe0f","man vampire",":man_vampire:","" "1f9db-1f3fb-2640","1f9db-1f3fb-200d-2640-fe0f","woman vampire: light skin tone",":woman_vampire_tone1:",":woman_vampire_light_skin_tone:" "1f9db-1f3fb-2642","1f9db-1f3fb-200d-2642-fe0f","man vampire: light skin tone",":man_vampire_tone1:",":man_vampire_light_skin_tone:" "1f9db-1f3fc-2640","1f9db-1f3fc-200d-2640-fe0f","woman vampire: medium-light skin tone",":woman_vampire_tone2:",":woman_vampire_medium_light_skin_tone:" "1f9db-1f3fc-2642","1f9db-1f3fc-200d-2642-fe0f","man vampire: medium-light skin tone",":man_vampire_tone2:",":man_vampire_medium_light_skin_tone:" "1f9db-1f3fd-2640","1f9db-1f3fd-200d-2640-fe0f","woman vampire: medium skin tone",":woman_vampire_tone3:",":woman_vampire_medium_skin_tone:" "1f9db-1f3fd-2642","1f9db-1f3fd-200d-2642-fe0f","man vampire: medium skin tone",":man_vampire_tone3:",":man_vampire_medium_skin_tone:" "1f9db-1f3fe-2640","1f9db-1f3fe-200d-2640-fe0f","woman vampire: medium-dark skin tone",":woman_vampire_tone4:",":woman_vampire_medium_dark_skin_tone:" "1f9db-1f3fe-2642","1f9db-1f3fe-200d-2642-fe0f","man vampire: medium-dark skin tone",":man_vampire_tone4:",":man_vampire_medium_dark_skin_tone:" "1f9db-1f3ff-2640","1f9db-1f3ff-200d-2640-fe0f","woman vampire: dark skin tone",":woman_vampire_tone5:",":woman_vampire_dark_skin_tone:" "1f9db-1f3ff-2642","1f9db-1f3ff-200d-2642-fe0f","man vampire: dark skin tone",":man_vampire_tone5:",":man_vampire_dark_skin_tone:" "1f9dc-2640","1f9dc-200d-2640-fe0f","mermaid",":mermaid:","" "1f9dc-2642","1f9dc-200d-2642-fe0f","merman",":merman:","" "1f9dc-1f3fb-2640","1f9dc-1f3fb-200d-2640-fe0f","mermaid: light skin tone",":mermaid_tone1:",":mermaid_light_skin_tone:" "1f9dc-1f3fb-2642","1f9dc-1f3fb-200d-2642-fe0f","merman: light skin tone",":merman_tone1:",":merman_light_skin_tone:" "1f9dc-1f3fc-2640","1f9dc-1f3fc-200d-2640-fe0f","mermaid: medium-light skin tone",":mermaid_tone2:",":mermaid_medium_light_skin_tone:" "1f9dc-1f3fc-2642","1f9dc-1f3fc-200d-2642-fe0f","merman: medium-light skin tone",":merman_tone2:",":merman_medium_light_skin_tone:" "1f9dc-1f3fd-2640","1f9dc-1f3fd-200d-2640-fe0f","mermaid: medium skin tone",":mermaid_tone3:",":mermaid_medium_skin_tone:" "1f9dc-1f3fd-2642","1f9dc-1f3fd-200d-2642-fe0f","merman: medium skin tone",":merman_tone3:",":merman_medium_skin_tone:" "1f9dc-1f3fe-2640","1f9dc-1f3fe-200d-2640-fe0f","mermaid: medium-dark skin tone",":mermaid_tone4:",":mermaid_medium_dark_skin_tone:" "1f9dc-1f3fe-2642","1f9dc-1f3fe-200d-2642-fe0f","merman: medium-dark skin tone",":merman_tone4:",":merman_medium_dark_skin_tone:" "1f9dc-1f3ff-2640","1f9dc-1f3ff-200d-2640-fe0f","mermaid: dark skin tone",":mermaid_tone5:",":mermaid_dark_skin_tone:" "1f9dc-1f3ff-2642","1f9dc-1f3ff-200d-2642-fe0f","merman: dark skin tone",":merman_tone5:",":merman_dark_skin_tone:" "1f9dd-2640","1f9dd-200d-2640-fe0f","woman elf",":woman_elf:","" "1f9dd-2642","1f9dd-200d-2642-fe0f","man elf",":man_elf:","" "1f9dd-1f3fb-2640","1f9dd-1f3fb-200d-2640-fe0f","woman elf: light skin tone",":woman_elf_tone1:",":woman_elf_light_skin_tone:" "1f9dd-1f3fb-2642","1f9dd-1f3fb-200d-2642-fe0f","man elf: light skin tone",":man_elf_tone1:",":man_elf_light_skin_tone:" "1f9dd-1f3fc-2640","1f9dd-1f3fc-200d-2640-fe0f","woman elf: medium-light skin tone",":woman_elf_tone2:",":woman_elf_medium_light_skin_tone:" "1f9dd-1f3fc-2642","1f9dd-1f3fc-200d-2642-fe0f","man elf: medium-light skin tone",":man_elf_tone2:",":man_elf_medium_light_skin_tone:" "1f9dd-1f3fd-2640","1f9dd-1f3fd-200d-2640-fe0f","woman elf: medium skin tone",":woman_elf_tone3:",":woman_elf_medium_skin_tone:" "1f9dd-1f3fd-2642","1f9dd-1f3fd-200d-2642-fe0f","man elf: medium skin tone",":man_elf_tone3:",":man_elf_medium_skin_tone:" "1f9dd-1f3fe-2640","1f9dd-1f3fe-200d-2640-fe0f","woman elf: medium-dark skin tone",":woman_elf_tone4:",":woman_elf_medium_dark_skin_tone:" "1f9dd-1f3fe-2642","1f9dd-1f3fe-200d-2642-fe0f","man elf: medium-dark skin tone",":man_elf_tone4:",":man_elf_medium_dark_skin_tone:" "1f9dd-1f3ff-2640","1f9dd-1f3ff-200d-2640-fe0f","woman elf: dark skin tone",":woman_elf_tone5:",":woman_elf_dark_skin_tone:" "1f9dd-1f3ff-2642","1f9dd-1f3ff-200d-2642-fe0f","man elf: dark skin tone",":man_elf_tone5:",":man_elf_dark_skin_tone:" "1f9de-2640","1f9de-200d-2640-fe0f","woman genie",":woman_genie:","" "1f9de-2642","1f9de-200d-2642-fe0f","man genie",":man_genie:","" "1f9df-2640","1f9df-200d-2640-fe0f","woman zombie",":woman_zombie:","" "1f9df-2642","1f9df-200d-2642-fe0f","man zombie",":man_zombie:","" "1f9d6-2640","1f9d6-200d-2640-fe0f","woman in steamy room",":woman_in_steamy_room:","" "1f9d6-2642","1f9d6-200d-2642-fe0f","man in steamy room",":man_in_steamy_room:","" "1f9d6-1f3fb-2640","1f9d6-1f3fb-200d-2640-fe0f","woman in steamy room: light skin tone",":woman_in_steamy_room_tone1:",":woman_in_steamy_room_light_skin_tone:" "1f9d6-1f3fb-2642","1f9d6-1f3fb-200d-2642-fe0f","man in steamy room: light skin tone",":man_in_steamy_room_tone1:",":man_in_steamy_room_light_skin_tone:" "1f9d6-1f3fc-2640","1f9d6-1f3fc-200d-2640-fe0f","woman in steamy room: medium-light skin tone",":woman_in_steamy_room_tone2:",":woman_in_steamy_room_medium_light_skin_tone:" "1f9d6-1f3fc-2642","1f9d6-1f3fc-200d-2642-fe0f","man in steamy room: medium-light skin tone",":man_in_steamy_room_tone2:",":man_in_steamy_room_medium_light_skin_tone:" "1f9d6-1f3fd-2640","1f9d6-1f3fd-200d-2640-fe0f","woman in steamy room: medium skin tone",":woman_in_steamy_room_tone3:",":woman_in_steamy_room_medium_skin_tone:" "1f9d6-1f3fd-2642","1f9d6-1f3fd-200d-2642-fe0f","man in steamy room: medium skin tone",":man_in_steamy_room_tone3:",":man_in_steamy_room_medium_skin_tone:" "1f9d6-1f3fe-2640","1f9d6-1f3fe-200d-2640-fe0f","woman in steamy room: medium-dark skin tone",":woman_in_steamy_room_tone4:",":woman_in_steamy_room_medium_dark_skin_tone:" "1f9d6-1f3fe-2642","1f9d6-1f3fe-200d-2642-fe0f","man in steamy room: medium-dark skin tone",":man_in_steamy_room_tone4:",":man_in_steamy_room_medium_dark_skin_tone:" "1f9d6-1f3ff-2640","1f9d6-1f3ff-200d-2640-fe0f","woman in steamy room: dark skin tone",":woman_in_steamy_room_tone5:",":woman_in_steamy_room_dark_skin_tone:" "1f9d6-1f3ff-2642","1f9d6-1f3ff-200d-2642-fe0f","man in steamy room: dark skin tone",":man_in_steamy_room_tone5:",":man_in_steamy_room_dark_skin_tone:" "1f9d7-2640","1f9d7-200d-2640-fe0f","woman climbing",":woman_climbing:","" "1f9d7-2642","1f9d7-200d-2642-fe0f","man climbing",":man_climbing:","" "1f9d7-1f3fb-2640","1f9d7-1f3fb-200d-2640-fe0f","woman climbing: light skin tone",":woman_climbing_tone1:",":woman_climbing_light_skin_tone:" "1f9d7-1f3fb-2642","1f9d7-1f3fb-200d-2642-fe0f","man climbing: light skin tone",":man_climbing_tone1:",":man_climbing_light_skin_tone:" "1f9d7-1f3fc-2640","1f9d7-1f3fc-200d-2640-fe0f","woman climbing: medium-light skin tone",":woman_climbing_tone2:",":woman_climbing_medium_light_skin_tone:" "1f9d7-1f3fc-2642","1f9d7-1f3fc-200d-2642-fe0f","man climbing: medium-light skin tone",":man_climbing_tone2:",":man_climbing_medium_light_skin_tone:" "1f9d7-1f3fd-2640","1f9d7-1f3fd-200d-2640-fe0f","woman climbing: medium skin tone",":woman_climbing_tone3:",":woman_climbing_medium_skin_tone:" "1f9d7-1f3fd-2642","1f9d7-1f3fd-200d-2642-fe0f","man climbing: medium skin tone",":man_climbing_tone3:",":man_climbing_medium_skin_tone:" "1f9d7-1f3fe-2640","1f9d7-1f3fe-200d-2640-fe0f","woman climbing: medium-dark skin tone",":woman_climbing_tone4:",":woman_climbing_medium_dark_skin_tone:" "1f9d7-1f3fe-2642","1f9d7-1f3fe-200d-2642-fe0f","man climbing: medium-dark skin tone",":man_climbing_tone4:",":man_climbing_medium_dark_skin_tone:" "1f9d7-1f3ff-2640","1f9d7-1f3ff-200d-2640-fe0f","woman climbing: dark skin tone",":woman_climbing_tone5:",":woman_climbing_dark_skin_tone:" "1f9d7-1f3ff-2642","1f9d7-1f3ff-200d-2642-fe0f","man climbing: dark skin tone",":man_climbing_tone5:",":man_climbing_dark_skin_tone:" "1f9d8-2640","1f9d8-200d-2640-fe0f","woman in lotus position",":woman_in_lotus_position:","" "1f9d8-2642","1f9d8-200d-2642-fe0f","man in lotus position",":man_in_lotus_position:","" "1f9d8-1f3fb-2640","1f9d8-1f3fb-200d-2640-fe0f","woman in lotus position: light skin tone",":woman_in_lotus_position_tone1:",":woman_in_lotus_position_light_skin_tone:" "1f9d8-1f3fb-2642","1f9d8-1f3fb-200d-2642-fe0f","man in lotus position: light skin tone",":man_in_lotus_position_tone1:",":man_in_lotus_position_light_skin_tone:" "1f9d8-1f3fc-2640","1f9d8-1f3fc-200d-2640-fe0f","woman in lotus position: medium-light skin tone",":woman_in_lotus_position_tone2:",":woman_in_lotus_position_medium_light_skin_tone:" "1f9d8-1f3fc-2642","1f9d8-1f3fc-200d-2642-fe0f","man in lotus position: medium-light skin tone",":man_in_lotus_position_tone2:",":man_in_lotus_position_medium_light_skin_tone:" "1f9d8-1f3fd-2640","1f9d8-1f3fd-200d-2640-fe0f","woman in lotus position: medium skin tone",":woman_in_lotus_position_tone3:",":woman_in_lotus_position_medium_skin_tone:" "1f9d8-1f3fd-2642","1f9d8-1f3fd-200d-2642-fe0f","man in lotus position: medium skin tone",":man_in_lotus_position_tone3:",":man_in_lotus_position_medium_skin_tone:" "1f9d8-1f3fe-2640","1f9d8-1f3fe-200d-2640-fe0f","woman in lotus position: medium-dark skin tone",":woman_in_lotus_position_tone4:",":woman_in_lotus_position_medium_dark_skin_tone:" "1f9d8-1f3fe-2642","1f9d8-1f3fe-200d-2642-fe0f","man in lotus position: medium-dark skin tone",":man_in_lotus_position_tone4:",":man_in_lotus_position_medium_dark_skin_tone:" "1f9d8-1f3ff-2640","1f9d8-1f3ff-200d-2640-fe0f","woman in lotus position: dark skin tone",":woman_in_lotus_position_tone5:",":woman_in_lotus_position_dark_skin_tone:" "1f9d8-1f3ff-2642","1f9d8-1f3ff-200d-2642-fe0f","man in lotus position: dark skin tone",":man_in_lotus_position_tone5:",":man_in_lotus_position_dark_skin_tone:" "265f","265f-fe0f","chess pawn",":chess_pawn:","" "267e","267e-fe0f","infinity",":infinity:","" "1f6f9","1f6f9","skateboard",":skateboard:","" "1f94d","1f94d","lacrosse",":lacrosse:","" "1f94e","1f94e","softball",":softball:","" "1f94f","1f94f","flying disc",":flying_disc:","" "1f96c","1f96c","leafy green",":leafy_green:","" "1f96d","1f96d","mango",":mango:","" "1f96e","1f96e","moon cake",":moon_cake:","" "1f96f","1f96f","bagel",":bagel:","" "1f970","1f970","smiling face with hearts",":smiling_face_with_3_hearts:","" "1f973","1f973","partying face",":partying_face:","" "1f974","1f974","woozy face",":woozy_face:","" "1f975","1f975","hot face",":hot_face:","" "1f976","1f976","cold face",":cold_face:","" "1f97a","1f97a","pleading face",":pleading_face:","" "1f97c","1f97c","lab coat",":lab_coat:","" "1f97d","1f97d","goggles",":goggles:","" "1f97e","1f97e","hiking boot",":hiking_boot:","" "1f97f","1f97f","flat shoe",":womans_flat_shoe:","" "1f998","1f998","kangaroo",":kangaroo:","" "1f999","1f999","llama",":llama:","" "1f99a","1f99a","peacock",":peacock:","" "1f99b","1f99b","hippopotamus",":hippopotamus:","" "1f99c","1f99c","parrot",":parrot:","" "1f99d","1f99d","raccoon",":raccoon:","" "1f99e","1f99e","lobster",":lobster:","" "1f99f","1f99f","mosquito",":mosquito:","" "1f9a0","1f9a0","microbe",":microbe:","" "1f9a1","1f9a1","badger",":badger:","" "1f9a2","1f9a2","swan",":swan:","" "1f9b0","1f9b0","red hair",":red_haired:","" "1f9b1","1f9b1","curly hair",":curly_haired:","" "1f9b2","1f9b2","bald",":bald:","" "1f9b3","1f9b3","white hair",":white_haired:","" "1f9b4","1f9b4","bone",":bone:","" "1f9b5","1f9b5","leg",":leg:","" "1f9b6","1f9b6","foot",":foot:","" "1f9b7","1f9b7","tooth",":tooth:","" "1f9b8","1f9b8","superhero",":superhero:","" "1f9b9","1f9b9","supervillain",":supervillain:","" "1f9c1","1f9c1","cupcake",":cupcake:","" "1f9c2","1f9c2","salt",":salt:","" "1f9e7","1f9e7","red envelope",":red_envelope:","" "1f9e8","1f9e8","firecracker",":firecracker:","" "1f9e9","1f9e9","puzzle piece",":jigsaw:","" "1f9ea","1f9ea","test tube",":test_tube:","" "1f9eb","1f9eb","petri dish",":petri_dish:","" "1f9ec","1f9ec","dna",":dna:","" "1f9ed","1f9ed","compass",":compass:","" "1f9ee","1f9ee","abacus",":abacus:","" "1f9ef","1f9ef","fire extinguisher",":fire_extinguisher:","" "1f9f0","1f9f0","toolbox",":toolbox:","" "1f9f1","1f9f1","brick",":bricks:","" "1f9f2","1f9f2","magnet",":magnet:","" "1f9f3","1f9f3","luggage",":luggage:","" "1f9f4","1f9f4","lotion bottle",":squeeze_bottle:","" "1f9f5","1f9f5","thread",":thread:","" "1f9f6","1f9f6","yarn",":yarn:","" "1f9f7","1f9f7","safety pin",":safety_pin:","" "1f9f8","1f9f8","teddy bear",":teddy_bear:","" "1f9f9","1f9f9","broom",":broom:","" "1f9fa","1f9fa","basket",":basket:","" "1f9fb","1f9fb","roll of paper",":roll_of_paper:","" "1f9fc","1f9fc","soap",":soap:","" "1f9fd","1f9fd","sponge",":sponge:","" "1f9fe","1f9fe","receipt",":receipt:","" "1f9ff","1f9ff","nazar amulet",":nazar_amulet:","" "1f9b5-1f3fb","1f9b5-1f3fb","leg: light skin tone",":leg_tone1:",":leg_light_skin_tone:" "1f9b5-1f3fc","1f9b5-1f3fc","leg: medium-light skin tone",":leg_tone2:",":leg_medium_light_skin_tone:" "1f9b5-1f3fd","1f9b5-1f3fd","leg: medium skin tone",":leg_tone3:",":leg_medium_skin_tone:" "1f9b5-1f3fe","1f9b5-1f3fe","leg: medium-dark skin tone",":leg_tone4:",":leg_medium_dark_skin_tone:" "1f9b5-1f3ff","1f9b5-1f3ff","leg: dark skin tone",":leg_tone5:",":leg_dark_skin_tone:" "1f9b6-1f3fb","1f9b6-1f3fb","foot: light skin tone",":foot_tone1:",":foot_light_skin_tone:" "1f9b6-1f3fc","1f9b6-1f3fc","foot: medium-light skin tone",":foot_tone2:",":foot_medium_light_skin_tone:" "1f9b6-1f3fd","1f9b6-1f3fd","foot: medium skin tone",":foot_tone3:",":foot_medium_skin_tone:" "1f9b6-1f3fe","1f9b6-1f3fe","foot: medium-dark skin tone",":foot_tone4:",":foot_medium_dark_skin_tone:" "1f9b6-1f3ff","1f9b6-1f3ff","foot: dark skin tone",":foot_tone5:",":foot_dark_skin_tone:" "1f9b8-1f3fb","1f9b8-1f3fb","superhero: light skin tone",":superhero_tone1:",":superhero_light_skin_tone:" "1f9b8-1f3fc","1f9b8-1f3fc","superhero: medium-light skin tone",":superhero_tone2:",":superhero_medium_light_skin_tone:" "1f9b8-1f3fd","1f9b8-1f3fd","superhero: medium skin tone",":superhero_tone3:",":superhero_medium_skin_tone:" "1f9b8-1f3fe","1f9b8-1f3fe","superhero: medium-dark skin tone",":superhero_tone4:",":superhero_medium_dark_skin_tone:" "1f9b8-1f3ff","1f9b8-1f3ff","superhero: dark skin tone",":superhero_tone5:",":superhero_dark_skin_tone:" "1f9b9-1f3fb","1f9b9-1f3fb","supervillain: light skin tone",":supervillain_tone1:",":supervillain_light_skin_tone:" "1f9b9-1f3fc","1f9b9-1f3fc","supervillain: medium-light skin tone",":supervillain_tone2:",":supervillain_medium_light_skin_tone:" "1f9b9-1f3fd","1f9b9-1f3fd","supervillain: medium skin tone",":supervillain_tone3:",":supervillain_medium_skin_tone:" "1f9b9-1f3fe","1f9b9-1f3fe","supervillain: medium-dark skin tone",":supervillain_tone4:",":supervillain_medium_dark_skin_tone:" "1f9b9-1f3ff","1f9b9-1f3ff","supervillain: dark skin tone",":supervillain_tone5:",":supervillain_dark_skin_tone:" "1f468-1f9b0","1f468-200d-1f9b0","man: red hair",":man_red_haired:","" "1f468-1f9b1","1f468-200d-1f9b1","man: curly hair",":man_curly_haired:","" "1f468-1f9b2","1f468-200d-1f9b2","man: bald",":man_bald:","" "1f468-1f9b3","1f468-200d-1f9b3","man: white hair",":man_white_haired:","" "1f468-1f3fb-1f9b0","1f468-1f3fb-200d-1f9b0","man, red haired: light skin tone",":man_red_haired_tone1:",":man_red_haired_light_skin_tone:" "1f468-1f3fb-1f9b1","1f468-1f3fb-200d-1f9b1","man, curly haired: light skin tone",":man_curly_haired_tone1:",":man_curly_haired_light_skin_tone:" "1f468-1f3fb-1f9b2","1f468-1f3fb-200d-1f9b2","man, bald: light skin tone",":man_bald_tone1:",":man_bald_light_skin_tone:" "1f468-1f3fb-1f9b3","1f468-1f3fb-200d-1f9b3","man, white haired: light skin tone",":man_white_haired_tone1:",":man_white_haired_light_skin_tone:" "1f468-1f3fc-1f9b0","1f468-1f3fc-200d-1f9b0","man, red haired: medium-light skin tone",":man_red_haired_tone2:",":man_red_haired_medium_light_skin_tone:" "1f468-1f3fc-1f9b1","1f468-1f3fc-200d-1f9b1","man, curly haired: medium-light skin tone",":man_curly_haired_tone2:",":man_curly_haired_medium_light_skin_tone:" "1f468-1f3fc-1f9b2","1f468-1f3fc-200d-1f9b2","man, bald: medium-light skin tone",":man_bald_tone2:",":man_bald_medium_light_skin_tone:" "1f468-1f3fc-1f9b3","1f468-1f3fc-200d-1f9b3","man, white haired: medium-light skin tone",":man_white_haired_tone2:",":man_white_haired_medium_light_skin_tone:" "1f468-1f3fd-1f9b0","1f468-1f3fd-200d-1f9b0","man, red haired: medium skin tone",":man_red_haired_tone3:",":man_red_haired_medium_skin_tone:" "1f468-1f3fd-1f9b1","1f468-1f3fd-200d-1f9b1","man, curly haired: medium skin tone",":man_curly_haired_tone3:",":man_curly_haired_medium_skin_tone:" "1f468-1f3fd-1f9b2","1f468-1f3fd-200d-1f9b2","man, bald: medium skin tone",":man_bald_tone3:",":man_bald_medium_skin_tone:" "1f468-1f3fd-1f9b3","1f468-1f3fd-200d-1f9b3","man, white haired: medium skin tone",":man_white_haired_tone3:",":man_white_haired_medium_skin_tone:" "1f468-1f3fe-1f9b0","1f468-1f3fe-200d-1f9b0","man, red haired: medium-dark skin tone",":man_red_haired_tone4:",":man_red_haired_medium_dark_skin_tone:" "1f468-1f3fe-1f9b1","1f468-1f3fe-200d-1f9b1","man, curly haired: medium-dark skin tone",":man_curly_haired_tone4:",":man_curly_haired_medium_dark_skin_tone:" "1f468-1f3fe-1f9b2","1f468-1f3fe-200d-1f9b2","man, bald: medium-dark skin tone",":man_bald_tone4:",":man_bald_medium_dark_skin_tone:" "1f468-1f3fe-1f9b3","1f468-1f3fe-200d-1f9b3","man, white haired: medium-dark skin tone",":man_white_haired_tone4:",":man_white_haired_medium_dark_skin_tone:" "1f468-1f3ff-1f9b0","1f468-1f3ff-200d-1f9b0","man, red haired: dark skin tone",":man_red_haired_tone5:",":man_red_haired_dark_skin_tone:" "1f468-1f3ff-1f9b1","1f468-1f3ff-200d-1f9b1","man, curly haired: dark skin tone",":man_curly_haired_tone5:",":man_curly_haired_dark_skin_tone:" "1f468-1f3ff-1f9b2","1f468-1f3ff-200d-1f9b2","man, bald: dark skin tone",":man_bald_tone5:",":man_bald_dark_skin_tone:" "1f468-1f3ff-1f9b3","1f468-1f3ff-200d-1f9b3","man, white haired: dark skin tone",":man_white_haired_tone5:",":man_white_haired_dark_skin_tone:" "1f469-1f9b0","1f469-200d-1f9b0","woman: red hair",":woman_red_haired:","" "1f469-1f9b1","1f469-200d-1f9b1","woman: curly hair",":woman_curly_haired:","" "1f469-1f9b2","1f469-200d-1f9b2","woman: bald",":woman_bald:","" "1f469-1f9b3","1f469-200d-1f9b3","woman: white hair",":woman_white_haired:","" "1f469-1f3fb-1f9b0","1f469-1f3fb-200d-1f9b0","woman, red haired: light skin tone",":woman_red_haired_tone1:",":woman_red_haired_light_skin_tone:" "1f469-1f3fb-1f9b1","1f469-1f3fb-200d-1f9b1","woman, curly haired: light skin tone",":woman_curly_haired_tone1:",":woman_curly_haired_light_skin_tone:" "1f469-1f3fb-1f9b2","1f469-1f3fb-200d-1f9b2","woman, bald: light skin tone",":woman_bald_tone1:",":woman_bald_light_skin_tone:" "1f469-1f3fb-1f9b3","1f469-1f3fb-200d-1f9b3","woman, white haired: light skin tone",":woman_white_haired_tone1:",":woman_white_haired_light_skin_tone:" "1f469-1f3fc-1f9b0","1f469-1f3fc-200d-1f9b0","woman, red haired: medium-light skin tone",":woman_red_haired_tone2:",":woman_red_haired_medium_light_skin_tone:" "1f469-1f3fc-1f9b1","1f469-1f3fc-200d-1f9b1","woman, curly haired: medium-light skin tone",":woman_curly_haired_tone2:",":woman_curly_haired_medium_light_skin_tone:" "1f469-1f3fc-1f9b2","1f469-1f3fc-200d-1f9b2","woman, bald: medium-light skin tone",":woman_bald_tone2:",":woman_bald_medium_light_skin_tone:" "1f469-1f3fc-1f9b3","1f469-1f3fc-200d-1f9b3","woman, white haired: medium-light skin tone",":woman_white_haired_tone2:",":woman_white_haired_medium_light_skin_tone:" "1f469-1f3fd-1f9b0","1f469-1f3fd-200d-1f9b0","woman, red haired: medium skin tone",":woman_red_haired_tone3:",":woman_red_haired_medium_skin_tone:" "1f469-1f3fd-1f9b1","1f469-1f3fd-200d-1f9b1","woman, curly haired: medium skin tone",":woman_curly_haired_tone3:",":woman_curly_haired_medium_skin_tone:" "1f469-1f3fd-1f9b2","1f469-1f3fd-200d-1f9b2","woman, bald: medium skin tone",":woman_bald_tone3:",":woman_bald_medium_skin_tone:" "1f469-1f3fd-1f9b3","1f469-1f3fd-200d-1f9b3","woman, white haired: medium skin tone",":woman_white_haired_tone3:",":woman_white_haired_medium_skin_tone:" "1f469-1f3fe-1f9b0","1f469-1f3fe-200d-1f9b0","woman, red haired: medium-dark skin tone",":woman_red_haired_tone4:",":woman_red_haired_medium_dark_skin_tone:" "1f469-1f3fe-1f9b1","1f469-1f3fe-200d-1f9b1","woman, curly haired: medium-dark skin tone",":woman_curly_haired_tone4:",":woman_curly_haired_medium_dark_skin_tone:" "1f469-1f3fe-1f9b2","1f469-1f3fe-200d-1f9b2","woman, bald: medium-dark skin tone",":woman_bald_tone4:",":woman_bald_medium_dark_skin_tone:" "1f469-1f3fe-1f9b3","1f469-1f3fe-200d-1f9b3","woman, white haired: medium-dark skin tone",":woman_white_haired_tone4:",":woman_white_haired_medium_dark_skin_tone:" "1f469-1f3ff-1f9b0","1f469-1f3ff-200d-1f9b0","woman, red haired: dark skin tone",":woman_red_haired_tone5:",":woman_red_haired_dark_skin_tone:" "1f469-1f3ff-1f9b1","1f469-1f3ff-200d-1f9b1","woman, curly haired: dark skin tone",":woman_curly_haired_tone5:",":woman_curly_haired_dark_skin_tone:" "1f469-1f3ff-1f9b2","1f469-1f3ff-200d-1f9b2","woman, bald: dark skin tone",":woman_bald_tone5:",":woman_bald_dark_skin_tone:" "1f469-1f3ff-1f9b3","1f469-1f3ff-200d-1f9b3","woman, white haired: dark skin tone",":woman_white_haired_tone5:",":woman_white_haired_dark_skin_tone:" "1f9b8-2640","1f9b8-200d-2640-fe0f","woman superhero",":woman_superhero:","" "1f9b8-2642","1f9b8-200d-2642-fe0f","man superhero",":man_superhero:","" "1f9b8-1f3fb-2640","1f9b8-1f3fb-200d-2640-fe0f","woman superhero: light skin tone",":woman_superhero_tone1:",":woman_superhero_light_skin_tone:" "1f9b8-1f3fb-2642","1f9b8-1f3fb-200d-2642-fe0f","man superhero: light skin tone",":man_superhero_tone1:",":man_superhero_light_skin_tone:" "1f9b8-1f3fc-2640","1f9b8-1f3fc-200d-2640-fe0f","woman superhero: medium-light skin tone",":woman_superhero_tone2:",":woman_superhero_medium_light_skin_tone:" "1f9b8-1f3fc-2642","1f9b8-1f3fc-200d-2642-fe0f","man superhero: medium-light skin tone",":man_superhero_tone2:",":man_superhero_medium_light_skin_tone:" "1f9b8-1f3fd-2640","1f9b8-1f3fd-200d-2640-fe0f","woman superhero: medium skin tone",":woman_superhero_tone3:",":woman_superhero_medium_skin_tone:" "1f9b8-1f3fd-2642","1f9b8-1f3fd-200d-2642-fe0f","man superhero: medium skin tone",":man_superhero_tone3:",":man_superhero_medium_skin_tone:" "1f9b8-1f3fe-2640","1f9b8-1f3fe-200d-2640-fe0f","woman superhero: medium-dark skin tone",":woman_superhero_tone4:",":woman_superhero_medium_dark_skin_tone:" "1f9b8-1f3fe-2642","1f9b8-1f3fe-200d-2642-fe0f","man superhero: medium-dark skin tone",":man_superhero_tone4:",":man_superhero_medium_dark_skin_tone:" "1f9b8-1f3ff-2640","1f9b8-1f3ff-200d-2640-fe0f","woman superhero: dark skin tone",":woman_superhero_tone5:",":woman_superhero_dark_skin_tone:" "1f9b8-1f3ff-2642","1f9b8-1f3ff-200d-2642-fe0f","man superhero: dark skin tone",":man_superhero_tone5:",":man_superhero_dark_skin_tone:" "1f9b9-2640","1f9b9-200d-2640-fe0f","woman supervillain",":woman_supervillain:","" "1f9b9-2642","1f9b9-200d-2642-fe0f","man supervillain",":man_supervillain:","" "1f9b9-1f3fb-2640","1f9b9-1f3fb-200d-2640-fe0f","woman supervillain: light skin tone",":woman_supervillain_tone1:",":woman_supervillain_light_skin_tone:" "1f9b9-1f3fb-2642","1f9b9-1f3fb-200d-2642-fe0f","man supervillain: light skin tone",":man_supervillain_tone1:",":man_supervillain_light_skin_tone:" "1f9b9-1f3fc-2640","1f9b9-1f3fc-200d-2640-fe0f","woman supervillain: medium-light skin tone",":woman_supervillain_tone2:",":woman_supervillain_medium_light_skin_tone:" "1f9b9-1f3fc-2642","1f9b9-1f3fc-200d-2642-fe0f","man supervillain: medium-light skin tone",":man_supervillain_tone2:",":man_supervillain_medium_light_skin_tone:" "1f9b9-1f3fd-2640","1f9b9-1f3fd-200d-2640-fe0f","woman supervillain: medium skin tone",":woman_supervillain_tone3:",":woman_supervillain_medium_skin_tone:" "1f9b9-1f3fd-2642","1f9b9-1f3fd-200d-2642-fe0f","man supervillain: medium skin tone",":man_supervillain_tone3:",":man_supervillain_medium_skin_tone:" "1f9b9-1f3fe-2640","1f9b9-1f3fe-200d-2640-fe0f","woman supervillain: medium-dark skin tone",":woman_supervillain_tone4:",":woman_supervillain_medium_dark_skin_tone:" "1f9b9-1f3fe-2642","1f9b9-1f3fe-200d-2642-fe0f","man supervillain: medium-dark skin tone",":man_supervillain_tone4:",":man_supervillain_medium_dark_skin_tone:" "1f9b9-1f3ff-2640","1f9b9-1f3ff-200d-2640-fe0f","woman supervillain: dark skin tone",":woman_supervillain_tone5:",":woman_supervillain_dark_skin_tone:" "1f9b9-1f3ff-2642","1f9b9-1f3ff-200d-2642-fe0f","man supervillain: dark skin tone",":man_supervillain_tone5:",":man_supervillain_dark_skin_tone:" "1f3f4-2620","1f3f4-200d-2620-fe0f","pirate flag",":pirate_flag:","" "1f6d5","1f6d5","hindu temple",":hindu_temple:","" "1f6fa","1f6fa","auto rickshaw",":auto_rickshaw:","" "1f7e0","1f7e0","orange circle",":orange_circle:","" "1f7e1","1f7e1","yellow circle",":yellow_circle:","" "1f7e2","1f7e2","green circle",":green_circle:","" "1f7e3","1f7e3","purple circle",":purple_circle:","" "1f7e4","1f7e4","brown circle",":brown_circle:","" "1f7e5","1f7e5","red square",":red_square:","" "1f7e6","1f7e6","blue square",":blue_square:","" "1f7e7","1f7e7","orange square",":orange_square:","" "1f7e8","1f7e8","yellow square",":yellow_square:","" "1f7e9","1f7e9","green square",":green_square:","" "1f7ea","1f7ea","purple square",":purple_square:","" "1f7eb","1f7eb","brown square",":brown_square:","" "1f90d","1f90d","white heart",":white_heart:","" "1f90e","1f90e","brown heart",":brown_heart:","" "1f90f","1f90f","pinching hand",":pinching_hand:","" "1f93f","1f93f","diving mask",":diving_mask:","" "1f971","1f971","yawning face",":yawning_face:","" "1f97b","1f97b","sari",":sari:","" "1f9a5","1f9a5","sloth",":sloth:","" "1f9a6","1f9a6","otter",":otter:","" "1f9a7","1f9a7","orangutan",":orangutan:","" "1f9a8","1f9a8","skunk",":skunk:","" "1f9a9","1f9a9","flamingo",":flamingo:","" "1f9aa","1f9aa","oyster",":oyster:","" "1f9ae","1f9ae","guide dog",":guide_dog:","" "1f9af","1f9af","probing cane",":probing_cane:","" "1f9ba","1f9ba","safety vest",":safety_vest:","" "1f9bb","1f9bb","ear with hearing aid",":ear_with_hearing_aid:","" "1f9bc","1f9bc","motorized wheelchair",":motorized_wheelchair:","" "1f9bd","1f9bd","manual wheelchair",":manual_wheelchair:","" "1f9be","1f9be","mechanical arm",":mechanical_arm:","" "1f9bf","1f9bf","mechanical leg",":mechanical_leg:","" "1f9c3","1f9c3","beverage box",":beverage_box:","" "1f9c4","1f9c4","garlic",":garlic:","" "1f9c5","1f9c5","onion",":onion:","" "1f9c6","1f9c6","falafel",":falafel:","" "1f9c7","1f9c7","waffle",":waffle:","" "1f9c8","1f9c8","butter",":butter:","" "1f9c9","1f9c9","mate",":mate:","" "1f9ca","1f9ca","ice cube",":ice_cube:","" "1f9cd","1f9cd","person standing",":person_standing:","" "1f9ce","1f9ce","person kneeling",":person_kneeling:","" "1f9cf","1f9cf","deaf person",":deaf_person:","" "1fa70","1fa70","ballet shoes",":ballet_shoes:","" "1fa71","1fa71","one-piece swimsuit",":one_piece_swimsuit:","" "1fa72","1fa72","briefs",":briefs:","" "1fa73","1fa73","shorts",":shorts:","" "1fa78","1fa78","drop of blood",":drop_of_blood:","" "1fa79","1fa79","adhesive bandage",":adhesive_bandage:","" "1fa7a","1fa7a","stethoscope",":stethoscope:","" "1fa80","1fa80","yo-yo",":yo_yo:","" "1fa81","1fa81","kite",":kite:","" "1fa82","1fa82","parachute",":parachute:","" "1fa90","1fa90","ringed planet",":ringed_planet:","" "1fa91","1fa91","chair",":chair:","" "1fa92","1fa92","razor",":razor:","" "1fa93","1fa93","axe",":axe:","" "1fa94","1fa94","diya lamp",":diya_lamp:","" "1fa95","1fa95","banjo",":banjo:","" "1f46b-1f3fb","1f46b-1f3fb","woman and man holding hands: light skin tone",":woman_and_man_holding_hands_tone1:",":woman_and_man_holding_hands_light_skin_tone:" "1f46b-1f3fc","1f46b-1f3fc","woman and man holding hands: medium-light skin tone",":woman_and_man_holding_hands_tone2:",":woman_and_man_holding_hands_medium_light_skin_tone:" "1f46b-1f3fd","1f46b-1f3fd","woman and man holding hands: medium skin tone",":woman_and_man_holding_hands_tone3:",":woman_and_man_holding_hands_medium_skin_tone:" "1f46b-1f3fe","1f46b-1f3fe","woman and man holding hands: medium-dark skin tone",":woman_and_man_holding_hands_tone4:",":woman_and_man_holding_hands_medium_dark_skin_tone:" "1f46b-1f3ff","1f46b-1f3ff","woman and man holding hands: dark skin tone",":woman_and_man_holding_hands_tone5:",":woman_and_man_holding_hands_dark_skin_tone:" "1f46c-1f3fb","1f46c-1f3fb","men holding hands: light skin tone",":men_holding_hands_tone1:",":men_holding_hands_light_skin_tone:" "1f46c-1f3fc","1f46c-1f3fc","men holding hands: medium-light skin tone",":men_holding_hands_tone2:",":men_holding_hands_medium_light_skin_tone:" "1f46c-1f3fd","1f46c-1f3fd","men holding hands: medium skin tone",":men_holding_hands_tone3:",":men_holding_hands_medium_skin_tone:" "1f46c-1f3fe","1f46c-1f3fe","men holding hands: medium-dark skin tone",":men_holding_hands_tone4:",":men_holding_hands_medium_dark_skin_tone:" "1f46c-1f3ff","1f46c-1f3ff","men holding hands: dark skin tone",":men_holding_hands_tone5:",":men_holding_hands_dark_skin_tone:" "1f46d-1f3fb","1f46d-1f3fb","women holding hands: light skin tone",":women_holding_hands_tone1:",":women_holding_hands_light_skin_tone:" "1f46d-1f3fc","1f46d-1f3fc","women holding hands: medium-light skin tone",":women_holding_hands_tone2:",":women_holding_hands_medium_light_skin_tone:" "1f46d-1f3fd","1f46d-1f3fd","women holding hands: medium skin tone",":women_holding_hands_tone3:",":women_holding_hands_medium_skin_tone:" "1f46d-1f3fe","1f46d-1f3fe","women holding hands: medium-dark skin tone",":women_holding_hands_tone4:",":women_holding_hands_medium_dark_skin_tone:" "1f46d-1f3ff","1f46d-1f3ff","women holding hands: dark skin tone",":women_holding_hands_tone5:",":women_holding_hands_dark_skin_tone:" "1f90f-1f3fb","1f90f-1f3fb","pinching hand: light skin tone",":pinching_hand_tone1:",":pinching_hand_light_skin_tone:" "1f90f-1f3fc","1f90f-1f3fc","pinching hand: medium-light skin tone",":pinching_hand_tone2:",":pinching_hand_medium_light_skin_tone:" "1f90f-1f3fd","1f90f-1f3fd","pinching hand: medium skin tone",":pinching_hand_tone3:",":pinching_hand_medium_skin_tone:" "1f90f-1f3fe","1f90f-1f3fe","pinching hand: medium-dark skin tone",":pinching_hand_tone4:",":pinching_hand_medium_dark_skin_tone:" "1f90f-1f3ff","1f90f-1f3ff","pinching hand: dark skin tone",":pinching_hand_tone5:",":pinching_hand_dark_skin_tone:" "1f9bb-1f3fb","1f9bb-1f3fb","ear with hearing aid: light skin tone",":ear_with_hearing_aid_tone1:",":ear_with_hearing_aid_light_skin_tone:" "1f9bb-1f3fc","1f9bb-1f3fc","ear with hearing aid: medium-light skin tone",":ear_with_hearing_aid_tone2:",":ear_with_hearing_aid_medium_light_skin_tone:" "1f9bb-1f3fd","1f9bb-1f3fd","ear with hearing aid: medium skin tone",":ear_with_hearing_aid_tone3:",":ear_with_hearing_aid_medium_skin_tone:" "1f9bb-1f3fe","1f9bb-1f3fe","ear with hearing aid: medium-dark skin tone",":ear_with_hearing_aid_tone4:",":ear_with_hearing_aid_medium_dark_skin_tone:" "1f9bb-1f3ff","1f9bb-1f3ff","ear with hearing aid: dark skin tone",":ear_with_hearing_aid_tone5:",":ear_with_hearing_aid_dark_skin_tone:" "1f9cd-1f3fb","1f9cd-1f3fb","person standing: light skin tone",":person_standing_tone1:",":person_standing_light_skin_tone:" "1f9cd-1f3fc","1f9cd-1f3fc","person standing: medium-light skin tone",":person_standing_tone2:",":person_standing_medium_light_skin_tone:" "1f9cd-1f3fd","1f9cd-1f3fd","person standing: medium skin tone",":person_standing_tone3:",":person_standing_medium_skin_tone:" "1f9cd-1f3fe","1f9cd-1f3fe","person standing: medium-dark skin tone",":person_standing_tone4:",":person_standing_medium_dark_skin_tone:" "1f9cd-1f3ff","1f9cd-1f3ff","person standing: dark skin tone",":person_standing_tone5:",":person_standing_dark_skin_tone:" "1f9ce-1f3fb","1f9ce-1f3fb","person kneeling: light skin tone",":person_kneeling_tone1:",":person_kneeling_light_skin_tone:" "1f9ce-1f3fc","1f9ce-1f3fc","person kneeling: medium-light skin tone",":person_kneeling_tone2:",":person_kneeling_medium_light_skin_tone:" "1f9ce-1f3fd","1f9ce-1f3fd","person kneeling: medium skin tone",":person_kneeling_tone3:",":person_kneeling_medium_skin_tone:" "1f9ce-1f3fe","1f9ce-1f3fe","person kneeling: medium-dark skin tone",":person_kneeling_tone4:",":person_kneeling_medium_dark_skin_tone:" "1f9ce-1f3ff","1f9ce-1f3ff","person kneeling: dark skin tone",":person_kneeling_tone5:",":person_kneeling_dark_skin_tone:" "1f9cf-1f3fb","1f9cf-1f3fb","deaf person: light skin tone",":deaf_person_tone1:",":deaf_person_light_skin_tone:" "1f9cf-1f3fc","1f9cf-1f3fc","deaf person: medium-light skin tone",":deaf_person_tone2:",":deaf_person_medium_light_skin_tone:" "1f9cf-1f3fd","1f9cf-1f3fd","deaf person: medium skin tone",":deaf_person_tone3:",":deaf_person_medium_skin_tone:" "1f9cf-1f3fe","1f9cf-1f3fe","deaf person: medium-dark skin tone",":deaf_person_tone4:",":deaf_person_medium_dark_skin_tone:" "1f9cf-1f3ff","1f9cf-1f3ff","deaf person: dark skin tone",":deaf_person_tone5:",":deaf_person_dark_skin_tone:" "1f468-1f3fc-1f91d-1f468-1f3fb","1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb","men holding hands: medium-light skin tone, light skin tone",":men_holding_hands_tone2_tone1:",":men_holding_hands_medium_light_skin_tone_light_skin_tone:" "1f468-1f3fd-1f91d-1f468-1f3fb","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb","men holding hands: medium skin tone, light skin tone",":men_holding_hands_tone3_tone1:",":men_holding_hands_medium_skin_tone_light_skin_tone:" "1f468-1f3fd-1f91d-1f468-1f3fc","1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc","men holding hands: medium skin tone, medium-light skin tone",":men_holding_hands_tone3_tone2:",":men_holding_hands_medium_skin_tone_medium_light_skin_tone:" "1f468-1f3fe-1f91d-1f468-1f3fb","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb","men holding hands: medium-dark skin tone, light skin tone",":men_holding_hands_tone4_tone1:",":men_holding_hands_medium_dark_skin_tone_light_skin_tone:" "1f468-1f3fe-1f91d-1f468-1f3fd","1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd","men holding hands: medium-dark skin tone, medium skin tone",":men_holding_hands_tone4_tone3:",":men_holding_hands_medium_dark_skin_tone_medium_skin_tone:" "1f468-1f3ff-1f91d-1f468-1f3fb","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb","men holding hands: dark skin tone, light skin tone",":men_holding_hands_tone5_tone1:",":men_holding_hands_dark_skin_tone_light_skin_tone:" "1f468-1f3ff-1f91d-1f468-1f3fc","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc","men holding hands: dark skin tone, medium-light skin tone",":men_holding_hands_tone5_tone2:",":men_holding_hands_dark_skin_tone_medium_light_skin_tone:" "1f468-1f3ff-1f91d-1f468-1f3fd","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd","men holding hands: dark skin tone, medium skin tone",":men_holding_hands_tone5_tone3:",":men_holding_hands_dark_skin_tone_medium_skin_tone:" "1f468-1f3ff-1f91d-1f468-1f3fe","1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe","men holding hands: dark skin tone, medium-dark skin tone",":men_holding_hands_tone5_tone4:",":men_holding_hands_dark_skin_tone_medium_dark_skin_tone:" "1f469-1f3fb-1f91d-1f468-1f3fd","1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd","woman and man holding hands: light skin tone, medium skin tone",":woman_and_man_holding_hands_tone1_tone3:",":woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:" "1f469-1f3fb-1f91d-1f468-1f3ff","1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff","woman and man holding hands: light skin tone, dark skin tone",":woman_and_man_holding_hands_tone1_tone5:",":woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:" "1f469-1f3fc-1f91d-1f469-1f3fb","1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb","women holding hands: medium-light skin tone, light skin tone",":women_holding_hands_tone2_tone1:",":women_holding_hands_medium_light_skin_tone_light_skin_tone:" "1f469-1f3fd-1f91d-1f468-1f3ff","1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff","woman and man holding hands: medium skin tone, dark skin tone",":woman_and_man_holding_hands_tone3_tone5:",":woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:" "1f469-1f3fd-1f91d-1f469-1f3fb","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb","women holding hands: medium skin tone, light skin tone",":women_holding_hands_tone3_tone1:",":women_holding_hands_medium_skin_tone_light_skin_tone:" "1f469-1f3fd-1f91d-1f469-1f3fc","1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc","women holding hands: medium skin tone, medium-light skin tone",":women_holding_hands_tone3_tone2:",":women_holding_hands_medium_skin_tone_medium_light_skin_tone:" "1f469-1f3fe-1f91d-1f469-1f3fb","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb","women holding hands: medium-dark skin tone, light skin tone",":women_holding_hands_tone4_tone1:",":women_holding_hands_medium_dark_skin_tone_light_skin_tone:" "1f469-1f3fe-1f91d-1f469-1f3fd","1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd","women holding hands: medium-dark skin tone, medium skin tone",":women_holding_hands_tone4_tone3:",":women_holding_hands_medium_dark_skin_tone_medium_skin_tone:" "1f469-1f3ff-1f91d-1f469-1f3fb","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb","women holding hands: dark skin tone, light skin tone",":women_holding_hands_tone5_tone1:",":women_holding_hands_dark_skin_tone_light_skin_tone:" "1f469-1f3ff-1f91d-1f469-1f3fc","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc","women holding hands: dark skin tone, medium-light skin tone",":women_holding_hands_tone5_tone2:",":women_holding_hands_dark_skin_tone_medium_light_skin_tone:" "1f469-1f3ff-1f91d-1f469-1f3fd","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd","women holding hands: dark skin tone, medium skin tone",":women_holding_hands_tone5_tone3:",":women_holding_hands_dark_skin_tone_medium_skin_tone:" "1f469-1f3ff-1f91d-1f469-1f3fe","1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe","women holding hands: dark skin tone, medium-dark skin tone",":women_holding_hands_tone5_tone4:",":women_holding_hands_dark_skin_tone_medium_dark_skin_tone:" "1f9d1-1f91d-1f9d1","1f9d1-200d-1f91d-200d-1f9d1","people holding hands",":people_holding_hands:","" "1f9d1-1f3fb-1f91d-1f9d1-1f3fb","1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb","people holding hands: light skin tone",":people_holding_hands_tone1:",":people_holding_hands_light_skin_tone:" "1f9d1-1f3fc-1f91d-1f9d1-1f3fb","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb","people holding hands: medium-light skin tone, light skin tone",":people_holding_hands_tone2_tone1:",":people_holding_hands_medium_light_skin_tone_light_skin_tone:" "1f9d1-1f3fc-1f91d-1f9d1-1f3fc","1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc","people holding hands: medium-light skin tone",":people_holding_hands_tone2:",":people_holding_hands_medium_light_skin_tone:" "1f9d1-1f3fd-1f91d-1f9d1-1f3fb","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb","people holding hands: medium skin tone, light skin tone",":people_holding_hands_tone3_tone1:",":people_holding_hands_medium_skin_tone_light_skin_tone:" "1f9d1-1f3fd-1f91d-1f9d1-1f3fc","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc","people holding hands: medium skin tone, medium-light skin tone",":people_holding_hands_tone3_tone2:",":people_holding_hands_medium_skin_tone_medium_light_skin_tone:" "1f9d1-1f3fd-1f91d-1f9d1-1f3fd","1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd","people holding hands: medium skin tone",":people_holding_hands_tone3:",":people_holding_hands_medium_skin_tone:" "1f9d1-1f3fe-1f91d-1f9d1-1f3fb","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb","people holding hands: medium-dark skin tone, light skin tone",":people_holding_hands_tone4_tone1:",":people_holding_hands_medium_dark_skin_tone_light_skin_tone:" "1f9d1-1f3fe-1f91d-1f9d1-1f3fd","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd","people holding hands: medium-dark skin tone, medium skin tone",":people_holding_hands_tone4_tone3:",":people_holding_hands_medium_dark_skin_tone_medium_skin_tone:" "1f9d1-1f3fe-1f91d-1f9d1-1f3fe","1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe","people holding hands: medium-dark skin tone",":people_holding_hands_tone4:",":people_holding_hands_medium_dark_skin_tone:" "1f9d1-1f3ff-1f91d-1f9d1-1f3fb","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb","people holding hands: dark skin tone, light skin tone",":people_holding_hands_tone5_tone1:",":people_holding_hands_dark_skin_tone_light_skin_tone:" "1f9d1-1f3ff-1f91d-1f9d1-1f3fc","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc","people holding hands: dark skin tone, medium-light skin tone",":people_holding_hands_tone5_tone2:",":people_holding_hands_dark_skin_tone_medium_light_skin_tone:" "1f9d1-1f3ff-1f91d-1f9d1-1f3fd","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd","people holding hands: dark skin tone, medium skin tone",":people_holding_hands_tone5_tone3:",":people_holding_hands_dark_skin_tone_medium_skin_tone:" "1f9d1-1f3ff-1f91d-1f9d1-1f3fe","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe","people holding hands: dark skin tone, medium-dark skin tone",":people_holding_hands_tone5_tone4:",":people_holding_hands_dark_skin_tone_medium_dark_skin_tone:" "1f9d1-1f3ff-1f91d-1f9d1-1f3ff","1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff","people holding hands: dark skin tone",":people_holding_hands_tone5:",":people_holding_hands_dark_skin_tone:" "1f468-1f9af","1f468-200d-1f9af","man with probing cane",":man_with_probing_cane:","" "1f468-1f9bc","1f468-200d-1f9bc","man in motorized wheelchair",":man_in_motorized_wheelchair:","" "1f468-1f9bd","1f468-200d-1f9bd","man in manual wheelchair",":man_in_manual_wheelchair:","" "1f468-1f3fb-1f9af","1f468-1f3fb-200d-1f9af","man with probing cane: light skin tone",":man_with_probing_cane_tone1:",":man_with_probing_cane_light_skin_tone:" "1f468-1f3fb-1f9bc","1f468-1f3fb-200d-1f9bc","man in motorized wheelchair: light skin tone",":man_in_motorized_wheelchair_tone1:",":man_in_motorized_wheelchair_light_skin_tone:" "1f468-1f3fb-1f9bd","1f468-1f3fb-200d-1f9bd","man in manual wheelchair: light skin tone",":man_in_manual_wheelchair_tone1:",":man_in_manual_wheelchair_light_skin_tone:" "1f468-1f3fc-1f9af","1f468-1f3fc-200d-1f9af","man with probing cane: medium-light skin tone",":man_with_probing_cane_tone2:",":man_with_probing_cane_medium_light_skin_tone:" "1f468-1f3fc-1f9bc","1f468-1f3fc-200d-1f9bc","man in motorized wheelchair: medium-light skin tone",":man_in_motorized_wheelchair_tone2:",":man_in_motorized_wheelchair_medium_light_skin_tone:" "1f468-1f3fc-1f9bd","1f468-1f3fc-200d-1f9bd","man in manual wheelchair: medium-light skin tone",":man_in_manual_wheelchair_tone2:",":man_in_manual_wheelchair_medium_light_skin_tone:" "1f468-1f3fd-1f9af","1f468-1f3fd-200d-1f9af","man with probing cane: medium skin tone",":man_with_probing_cane_tone3:",":man_with_probing_cane_medium_skin_tone:" "1f468-1f3fd-1f9bc","1f468-1f3fd-200d-1f9bc","man in motorized wheelchair: medium skin tone",":man_in_motorized_wheelchair_tone3:",":man_in_motorized_wheelchair_medium_skin_tone:" "1f468-1f3fd-1f9bd","1f468-1f3fd-200d-1f9bd","man in manual wheelchair: medium skin tone",":man_in_manual_wheelchair_tone3:",":man_in_manual_wheelchair_medium_skin_tone:" "1f468-1f3fe-1f9af","1f468-1f3fe-200d-1f9af","man with probing cane: medium-dark skin tone",":man_with_probing_cane_tone4:",":man_with_probing_cane_medium_dark_skin_tone:" "1f468-1f3fe-1f9bc","1f468-1f3fe-200d-1f9bc","man in motorized wheelchair: medium-dark skin tone",":man_in_motorized_wheelchair_tone4:",":man_in_motorized_wheelchair_medium_dark_skin_tone:" "1f468-1f3fe-1f9bd","1f468-1f3fe-200d-1f9bd","man in manual wheelchair: medium-dark skin tone",":man_in_manual_wheelchair_tone4:",":man_in_manual_wheelchair_medium_dark_skin_tone:" "1f468-1f3ff-1f9af","1f468-1f3ff-200d-1f9af","man with probing cane: dark skin tone",":man_with_probing_cane_tone5:",":man_with_probing_cane_dark_skin_tone:" "1f468-1f3ff-1f9bc","1f468-1f3ff-200d-1f9bc","man in motorized wheelchair: dark skin tone",":man_in_motorized_wheelchair_tone5:",":man_in_motorized_wheelchair_dark_skin_tone:" "1f468-1f3ff-1f9bd","1f468-1f3ff-200d-1f9bd","man in manual wheelchair: dark skin tone",":man_in_manual_wheelchair_tone5:",":man_in_manual_wheelchair_dark_skin_tone:" "1f469-1f9af","1f469-200d-1f9af","woman with probing cane",":woman_with_probing_cane:","" "1f469-1f9bc","1f469-200d-1f9bc","woman in motorized wheelchair",":woman_in_motorized_wheelchair:","" "1f469-1f9bd","1f469-200d-1f9bd","woman in manual wheelchair",":woman_in_manual_wheelchair:","" "1f469-1f3fb-1f9af","1f469-1f3fb-200d-1f9af","woman with probing cane: light skin tone",":woman_with_probing_cane_tone1:",":woman_with_probing_cane_light_skin_tone:" "1f469-1f3fb-1f9bc","1f469-1f3fb-200d-1f9bc","woman in motorized wheelchair: light skin tone",":woman_in_motorized_wheelchair_tone1:",":woman_in_motorized_wheelchair_light_skin_tone:" "1f469-1f3fb-1f9bd","1f469-1f3fb-200d-1f9bd","woman in manual wheelchair: light skin tone",":woman_in_manual_wheelchair_tone1:",":woman_in_manual_wheelchair_light_skin_tone:" "1f469-1f3fc-1f9af","1f469-1f3fc-200d-1f9af","woman with probing cane: medium-light skin tone",":woman_with_probing_cane_tone2:",":woman_with_probing_cane_medium_light_skin_tone:" "1f469-1f3fc-1f9bc","1f469-1f3fc-200d-1f9bc","woman in motorized wheelchair: medium-light skin tone",":woman_in_motorized_wheelchair_tone2:",":woman_in_motorized_wheelchair_medium_light_skin_tone:" "1f469-1f3fc-1f9bd","1f469-1f3fc-200d-1f9bd","woman in manual wheelchair: medium-light skin tone",":woman_in_manual_wheelchair_tone2:",":woman_in_manual_wheelchair_medium_light_skin_tone:" "1f469-1f3fd-1f9af","1f469-1f3fd-200d-1f9af","woman with probing cane: medium skin tone",":woman_with_probing_cane_tone3:",":woman_with_probing_cane_medium_skin_tone:" "1f469-1f3fd-1f9bc","1f469-1f3fd-200d-1f9bc","woman in motorized wheelchair: medium skin tone",":woman_in_motorized_wheelchair_tone3:",":woman_in_motorized_wheelchair_medium_skin_tone:" "1f469-1f3fd-1f9bd","1f469-1f3fd-200d-1f9bd","woman in manual wheelchair: medium skin tone",":woman_in_manual_wheelchair_tone3:",":woman_in_manual_wheelchair_medium_skin_tone:" "1f469-1f3fe-1f9af","1f469-1f3fe-200d-1f9af","woman with probing cane: medium-dark skin tone",":woman_with_probing_cane_tone4:",":woman_with_probing_cane_medium_dark_skin_tone:" "1f469-1f3fe-1f9bc","1f469-1f3fe-200d-1f9bc","woman in motorized wheelchair: medium-dark skin tone",":woman_in_motorized_wheelchair_tone4:",":woman_in_motorized_wheelchair_medium_dark_skin_tone:" "1f469-1f3fe-1f9bd","1f469-1f3fe-200d-1f9bd","woman in manual wheelchair: medium-dark skin tone",":woman_in_manual_wheelchair_tone4:",":woman_in_manual_wheelchair_medium_dark_skin_tone:" "1f469-1f3ff-1f9af","1f469-1f3ff-200d-1f9af","woman with probing cane: dark skin tone",":woman_with_probing_cane_tone5:",":woman_with_probing_cane_dark_skin_tone:" "1f469-1f3ff-1f9bc","1f469-1f3ff-200d-1f9bc","woman in motorized wheelchair: dark skin tone",":woman_in_motorized_wheelchair_tone5:",":woman_in_motorized_wheelchair_dark_skin_tone:" "1f469-1f3ff-1f9bd","1f469-1f3ff-200d-1f9bd","woman in manual wheelchair: dark skin tone",":woman_in_manual_wheelchair_tone5:",":woman_in_manual_wheelchair_dark_skin_tone:" "1f9cd-2640","1f9cd-200d-2640-fe0f","woman standing",":woman_standing:","" "1f9cd-2642","1f9cd-200d-2642-fe0f","man standing",":man_standing:","" "1f9cd-1f3fb-2640","1f9cd-1f3fb-200d-2640-fe0f","woman standing: light skin tone",":woman_standing_tone1:",":woman_standing_light_skin_tone:" "1f9cd-1f3fb-2642","1f9cd-1f3fb-200d-2642-fe0f","man standing: light skin tone",":man_standing_tone1:",":man_standing_light_skin_tone:" "1f9cd-1f3fc-2640","1f9cd-1f3fc-200d-2640-fe0f","woman standing: medium-light skin tone",":woman_standing_tone2:",":woman_standing_medium_light_skin_tone:" "1f9cd-1f3fc-2642","1f9cd-1f3fc-200d-2642-fe0f","man standing: medium-light skin tone",":man_standing_tone2:",":man_standing_medium_light_skin_tone:" "1f9cd-1f3fd-2640","1f9cd-1f3fd-200d-2640-fe0f","woman standing: medium skin tone",":woman_standing_tone3:",":woman_standing_medium_skin_tone:" "1f9cd-1f3fd-2642","1f9cd-1f3fd-200d-2642-fe0f","man standing: medium skin tone",":man_standing_tone3:",":man_standing_medium_skin_tone:" "1f9cd-1f3fe-2640","1f9cd-1f3fe-200d-2640-fe0f","woman standing: medium-dark skin tone",":woman_standing_tone4:",":woman_standing_medium_dark_skin_tone:" "1f9cd-1f3fe-2642","1f9cd-1f3fe-200d-2642-fe0f","man standing: medium-dark skin tone",":man_standing_tone4:",":man_standing_medium_dark_skin_tone:" "1f9cd-1f3ff-2640","1f9cd-1f3ff-200d-2640-fe0f","woman standing: dark skin tone",":woman_standing_tone5:",":woman_standing_dark_skin_tone:" "1f9cd-1f3ff-2642","1f9cd-1f3ff-200d-2642-fe0f","man standing: dark skin tone",":man_standing_tone5:",":man_standing_dark_skin_tone:" "1f9ce-2640","1f9ce-200d-2640-fe0f","woman kneeling",":woman_kneeling:","" "1f9ce-2642","1f9ce-200d-2642-fe0f","man kneeling",":man_kneeling:","" "1f9ce-1f3fb-2640","1f9ce-1f3fb-200d-2640-fe0f","woman kneeling: light skin tone",":woman_kneeling_tone1:",":woman_kneeling_light_skin_tone:" "1f9ce-1f3fb-2642","1f9ce-1f3fb-200d-2642-fe0f","man kneeling: light skin tone",":man_kneeling_tone1:",":man_kneeling_light_skin_tone:" "1f9ce-1f3fc-2640","1f9ce-1f3fc-200d-2640-fe0f","woman kneeling: medium-light skin tone",":woman_kneeling_tone2:",":woman_kneeling_medium_light_skin_tone:" "1f9ce-1f3fc-2642","1f9ce-1f3fc-200d-2642-fe0f","man kneeling: medium-light skin tone",":man_kneeling_tone2:",":man_kneeling_medium_light_skin_tone:" "1f9ce-1f3fd-2640","1f9ce-1f3fd-200d-2640-fe0f","woman kneeling: medium skin tone",":woman_kneeling_tone3:",":woman_kneeling_medium_skin_tone:" "1f9ce-1f3fd-2642","1f9ce-1f3fd-200d-2642-fe0f","man kneeling: medium skin tone",":man_kneeling_tone3:",":man_kneeling_medium_skin_tone:" "1f9ce-1f3fe-2640","1f9ce-1f3fe-200d-2640-fe0f","woman kneeling: medium-dark skin tone",":woman_kneeling_tone4:",":woman_kneeling_medium_dark_skin_tone:" "1f9ce-1f3fe-2642","1f9ce-1f3fe-200d-2642-fe0f","man kneeling: medium-dark skin tone",":man_kneeling_tone4:",":man_kneeling_medium_dark_skin_tone:" "1f9ce-1f3ff-2640","1f9ce-1f3ff-200d-2640-fe0f","woman kneeling: dark skin tone",":woman_kneeling_tone5:",":woman_kneeling_dark_skin_tone:" "1f9ce-1f3ff-2642","1f9ce-1f3ff-200d-2642-fe0f","man kneeling: dark skin tone",":man_kneeling_tone5:",":man_kneeling_dark_skin_tone:" "1f9cf-2640","1f9cf-200d-2640-fe0f","deaf woman",":deaf_woman:","" "1f9cf-2642","1f9cf-200d-2642-fe0f","deaf man",":deaf_man:","" "1f9cf-1f3fb-2640","1f9cf-1f3fb-200d-2640-fe0f","deaf woman: light skin tone",":deaf_woman_tone1:",":deaf_woman_light_skin_tone:" "1f9cf-1f3fb-2642","1f9cf-1f3fb-200d-2642-fe0f","deaf man: light skin tone",":deaf_man_tone1:",":deaf_man_light_skin_tone:" "1f9cf-1f3fc-2640","1f9cf-1f3fc-200d-2640-fe0f","deaf woman: medium-light skin tone",":deaf_woman_tone2:",":deaf_woman_medium_light_skin_tone:" "1f9cf-1f3fc-2642","1f9cf-1f3fc-200d-2642-fe0f","deaf man: medium-light skin tone",":deaf_man_tone2:",":deaf_man_medium_light_skin_tone:" "1f9cf-1f3fd-2640","1f9cf-1f3fd-200d-2640-fe0f","deaf woman: medium skin tone",":deaf_woman_tone3:",":deaf_woman_medium_skin_tone:" "1f9cf-1f3fd-2642","1f9cf-1f3fd-200d-2642-fe0f","deaf man: medium skin tone",":deaf_man_tone3:",":deaf_man_medium_skin_tone:" "1f9cf-1f3fe-2640","1f9cf-1f3fe-200d-2640-fe0f","deaf woman: medium-dark skin tone",":deaf_woman_tone4:",":deaf_woman_medium_dark_skin_tone:" "1f9cf-1f3fe-2642","1f9cf-1f3fe-200d-2642-fe0f","deaf man: medium-dark skin tone",":deaf_man_tone4:",":deaf_man_medium_dark_skin_tone:" "1f9cf-1f3ff-2640","1f9cf-1f3ff-200d-2640-fe0f","deaf woman: dark skin tone",":deaf_woman_tone5:",":deaf_woman_dark_skin_tone:" "1f9cf-1f3ff-2642","1f9cf-1f3ff-200d-2642-fe0f","deaf man: dark skin tone",":deaf_man_tone5:",":deaf_man_dark_skin_tone:" "1f415-1f9ba","1f415-200d-1f9ba","service dog",":service_dog:","" "1f9d1-1f3fe-1f91d-1f9d1-1f3fc","1f9d1-1f3fe-1f91d-1f9d1-1f3fc","people holding hands: medium dark skin tone, medium light skin tone",":people_holding_hands_tone4_tone2:",":people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" "1f469-1f3ff-1f91d-1f468-1f3fe","1f469-1f3ff-1f91d-1f468-1f3fe","woman and man holding hands: dark skin tone, medium dark skin tone",":woman_and_man_holding_hands_tone5_tone4:",":woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:" "1f469-1f3ff-1f91d-1f468-1f3fd","1f469-1f3ff-1f91d-1f468-1f3fd","woman and man holding hands: dark skin tone, medium skin tone",":woman_and_man_holding_hands_tone5_tone3:",":woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:" "1f469-1f3ff-1f91d-1f468-1f3fc","1f469-1f3ff-1f91d-1f468-1f3fc","woman and man holding hands: dark skin tone, medium light skin tone",":woman_and_man_holding_hands_tone5_tone2:",":woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:" "1f469-1f3ff-1f91d-1f468-1f3fb","1f469-1f3ff-1f91d-1f468-1f3fb","woman and man holding hands: dark skin tone, light skin tone",":woman_and_man_holding_hands_tone5_tone1:",":woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:" "1f469-1f3fe-1f91d-1f468-1f3ff","1f469-1f3fe-1f91d-1f468-1f3ff","woman and man holding hands: medium dark skin tone, dark skin tone",":woman_and_man_holding_hands_tone4_tone5:",":woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:" "1f469-1f3fe-1f91d-1f468-1f3fd","1f469-1f3fe-1f91d-1f468-1f3fd","woman and man holding hands: medium dark skin tone, medium skin tone",":woman_and_man_holding_hands_tone4_tone3:",":woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:" "1f469-1f3fe-1f91d-1f468-1f3fc","1f469-1f3fe-1f91d-1f468-1f3fc","woman and man holding hands: medium dark skin tone, medium light skin tone",":woman_and_man_holding_hands_tone4_tone2:",":woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" "1f469-1f3fe-1f91d-1f468-1f3fb","1f469-1f3fe-1f91d-1f468-1f3fb","woman and man holding hands: medium dark skin tone, light skin tone",":woman_and_man_holding_hands_tone4_tone1:",":woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:" "1f469-1f3fd-1f91d-1f468-1f3fe","1f469-1f3fd-1f91d-1f468-1f3fe","woman and man holding hands: medium skin tone, medium dark skin tone",":woman_and_man_holding_hands_tone3_tone4:",":woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:" "1f469-1f3fd-1f91d-1f468-1f3fc","1f469-1f3fd-1f91d-1f468-1f3fc","woman and man holding hands: medium skin tone, medium light skin tone",":woman_and_man_holding_hands_tone3_tone2:",":woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:" "1f469-1f3fd-1f91d-1f468-1f3fb","1f469-1f3fd-1f91d-1f468-1f3fb","woman and man holding hands: medium skin tone, light skin tone",":woman_and_man_holding_hands_tone3_tone1:",":woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:" "1f469-1f3fc-1f91d-1f468-1f3ff","1f469-1f3fc-1f91d-1f468-1f3ff","woman and man holding hands: medium light skin tone, dark skin tone",":woman_and_man_holding_hands_tone2_tone5:",":woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:" "1f469-1f3fc-1f91d-1f468-1f3fe","1f469-1f3fc-1f91d-1f468-1f3fe","woman and man holding hands: medium light skin tone, medium dark skin tone",":woman_and_man_holding_hands_tone2_tone4:",":woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:" "1f469-1f3fc-1f91d-1f468-1f3fd","1f469-1f3fc-1f91d-1f468-1f3fd","woman and man holding hands: medium light skin tone, medium skin tone",":woman_and_man_holding_hands_tone2_tone3:",":woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:" "1f469-1f3fc-1f91d-1f468-1f3fb","1f469-1f3fc-1f91d-1f468-1f3fb","woman and man holding hands: medium light skin tone, light skin tone",":woman_and_man_holding_hands_tone2_tone1:",":woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:" "1f469-1f3fb-1f91d-1f468-1f3fe","1f469-1f3fb-1f91d-1f468-1f3fe","woman and man holding hands: light skin tone, medium dark skin tone",":woman_and_man_holding_hands_tone1_tone4:",":woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:" "1f469-1f3fb-1f91d-1f468-1f3fc","1f469-1f3fb-1f91d-1f468-1f3fc","woman and man holding hands: light skin tone, medium light skin tone",":woman_and_man_holding_hands_tone1_tone2:",":woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:" "1f468-1f3fe-1f91d-1f468-1f3fc","1f468-1f3fe-1f91d-1f468-1f3fc","men holding hands: medium dark skin tone, medium light skin tone",":men_holding_hands_tone4_tone2:",":men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:" "1f469-1f3fe-1f91d-1f469-1f3fc","1f469-1f3fe-1f91d-1f469-1f3fc","women holding hands: medium dark skin tone, medium light skin tone",":women_holding_hands_tone4_tone2:",":women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:"tanuki_emoji-0.9.0/vendor/emojione-alpha-codes/CHANGELOG.md0000644000004100000410000000310414545323276023330 0ustar www-datawww-datachangelog --------- ####UPDATE 2019-07-22 * additions * Unicode 12 charcters ####UPDATE 2017-06-30 * additions * Unicode 10 charcters * changes * inclusion of output code point attribute, used to generate native Unicode ####UPDATE 2017-04-15 * additions * gender based roles * aliases for diversity naming convention (e.g. tone1 = light_skin_tone) * changes * in a previous version, csv columns were renamed to more closely match the json attribute labels. now we've updated "alpha code" to "alpha_code" for closer alignment * we've removed the versioning from this data set now that it's part of the JoyPixels repo ####1.1 / 2016-07-19 * additions * all of unicode 9 * :gay_pride_flag: * important note * because aliases are pipe-delimited strings, we have removed square bracket encapsulation and replaced with double-quote encapsulation ####0.9 / 2016-04-05 * additions * :paw_prints: alias to paw prints * :thumbup: alias to thumbs up sign * :thumbup_tone1: alias to thumbs up sign tone 1 * :thumbup_tone2: alias to thumbs up sign tone 2 * :thumbup_tone3: alias to thumbs up sign tone 3 * :thumbup_tone4: alias to thumbs up sign tone 4 * :thumbup_tone5: alias to thumbs up sign tone 5 * :thumbdown: alias to thumbs down sign * :thumbdown_tone1: alias to thumbs down sign tone 1 * :thumbdown_tone2: alias to thumbs down sign tone 2 * :thumbdown_tone3: alias to thumbs down sign tone 3 * :thumbdown_tone4: alias to thumbs down sign tone 4 * :thumbdown_tone5: alias to thumbs down sign tone 5 ####0.8 / 2015-12-17 * Initial commit tanuki_emoji-0.9.0/vendor/unicode/0000755000004100000410000000000014545323276017164 5ustar www-datawww-datatanuki_emoji-0.9.0/vendor/unicode/emoji-data.txt0000644000004100000410000031674714545323276021761 0ustar www-datawww-data# emoji-data.txt # Date: 2020-01-28, 20:52:38 GMT # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # Emoji Data for UTS #51 # Version: 13.0 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # # Format: # ; # # Note: there is no guarantee as to the structure of whitespace or comments # # Characters and sequences are listed in code point order. Users should be shown a more natural order. # See the CLDR collation order for Emoji. # ================================================ # All omitted code points have Emoji=No # @missing: 0000..10FFFF ; Emoji ; No 0023 ; Emoji # E0.0 [1] (#️) number sign 002A ; Emoji # E0.0 [1] (*️) asterisk 0030..0039 ; Emoji # E0.0 [10] (0️..9️) digit zero..digit nine 00A9 ; Emoji # E0.6 [1] (©️) copyright 00AE ; Emoji # E0.6 [1] (®️) registered 203C ; Emoji # E0.6 [1] (‼️) double exclamation mark 2049 ; Emoji # E0.6 [1] (⁉️) exclamation question mark 2122 ; Emoji # E0.6 [1] (™️) trade mark 2139 ; Emoji # E0.6 [1] (ℹ️) information 2194..2199 ; Emoji # E0.6 [6] (↔️..↙️) left-right arrow..down-left arrow 21A9..21AA ; Emoji # E0.6 [2] (↩️..↪️) right arrow curving left..left arrow curving right 231A..231B ; Emoji # E0.6 [2] (⌚..⌛) watch..hourglass done 2328 ; Emoji # E1.0 [1] (⌨️) keyboard 23CF ; Emoji # E1.0 [1] (⏏️) eject button 23E9..23EC ; Emoji # E0.6 [4] (⏩..⏬) fast-forward button..fast down button 23ED..23EE ; Emoji # E0.7 [2] (⏭️..⏮️) next track button..last track button 23EF ; Emoji # E1.0 [1] (⏯️) play or pause button 23F0 ; Emoji # E0.6 [1] (⏰) alarm clock 23F1..23F2 ; Emoji # E1.0 [2] (⏱️..⏲️) stopwatch..timer clock 23F3 ; Emoji # E0.6 [1] (⏳) hourglass not done 23F8..23FA ; Emoji # E0.7 [3] (⏸️..⏺️) pause button..record button 24C2 ; Emoji # E0.6 [1] (Ⓜ️) circled M 25AA..25AB ; Emoji # E0.6 [2] (▪️..▫️) black small square..white small square 25B6 ; Emoji # E0.6 [1] (▶️) play button 25C0 ; Emoji # E0.6 [1] (◀️) reverse button 25FB..25FE ; Emoji # E0.6 [4] (◻️..◾) white medium square..black medium-small square 2600..2601 ; Emoji # E0.6 [2] (☀️..☁️) sun..cloud 2602..2603 ; Emoji # E0.7 [2] (☂️..☃️) umbrella..snowman 2604 ; Emoji # E1.0 [1] (☄️) comet 260E ; Emoji # E0.6 [1] (☎️) telephone 2611 ; Emoji # E0.6 [1] (☑️) check box with check 2614..2615 ; Emoji # E0.6 [2] (☔..☕) umbrella with rain drops..hot beverage 2618 ; Emoji # E1.0 [1] (☘️) shamrock 261D ; Emoji # E0.6 [1] (☝️) index pointing up 2620 ; Emoji # E1.0 [1] (☠️) skull and crossbones 2622..2623 ; Emoji # E1.0 [2] (☢️..☣️) radioactive..biohazard 2626 ; Emoji # E1.0 [1] (☦️) orthodox cross 262A ; Emoji # E0.7 [1] (☪️) star and crescent 262E ; Emoji # E1.0 [1] (☮️) peace symbol 262F ; Emoji # E0.7 [1] (☯️) yin yang 2638..2639 ; Emoji # E0.7 [2] (☸️..☹️) wheel of dharma..frowning face 263A ; Emoji # E0.6 [1] (☺️) smiling face 2640 ; Emoji # E4.0 [1] (♀️) female sign 2642 ; Emoji # E4.0 [1] (♂️) male sign 2648..2653 ; Emoji # E0.6 [12] (♈..♓) Aries..Pisces 265F ; Emoji # E11.0 [1] (♟️) chess pawn 2660 ; Emoji # E0.6 [1] (♠️) spade suit 2663 ; Emoji # E0.6 [1] (♣️) club suit 2665..2666 ; Emoji # E0.6 [2] (♥️..♦️) heart suit..diamond suit 2668 ; Emoji # E0.6 [1] (♨️) hot springs 267B ; Emoji # E0.6 [1] (♻️) recycling symbol 267E ; Emoji # E11.0 [1] (♾️) infinity 267F ; Emoji # E0.6 [1] (♿) wheelchair symbol 2692 ; Emoji # E1.0 [1] (⚒️) hammer and pick 2693 ; Emoji # E0.6 [1] (⚓) anchor 2694 ; Emoji # E1.0 [1] (⚔️) crossed swords 2695 ; Emoji # E4.0 [1] (⚕️) medical symbol 2696..2697 ; Emoji # E1.0 [2] (⚖️..⚗️) balance scale..alembic 2699 ; Emoji # E1.0 [1] (⚙️) gear 269B..269C ; Emoji # E1.0 [2] (⚛️..⚜️) atom symbol..fleur-de-lis 26A0..26A1 ; Emoji # E0.6 [2] (⚠️..⚡) warning..high voltage 26A7 ; Emoji # E13.0 [1] (⚧️) transgender symbol 26AA..26AB ; Emoji # E0.6 [2] (⚪..⚫) white circle..black circle 26B0..26B1 ; Emoji # E1.0 [2] (⚰️..⚱️) coffin..funeral urn 26BD..26BE ; Emoji # E0.6 [2] (⚽..⚾) soccer ball..baseball 26C4..26C5 ; Emoji # E0.6 [2] (⛄..⛅) snowman without snow..sun behind cloud 26C8 ; Emoji # E0.7 [1] (⛈️) cloud with lightning and rain 26CE ; Emoji # E0.6 [1] (⛎) Ophiuchus 26CF ; Emoji # E0.7 [1] (⛏️) pick 26D1 ; Emoji # E0.7 [1] (⛑️) rescue worker’s helmet 26D3 ; Emoji # E0.7 [1] (⛓️) chains 26D4 ; Emoji # E0.6 [1] (⛔) no entry 26E9 ; Emoji # E0.7 [1] (⛩️) shinto shrine 26EA ; Emoji # E0.6 [1] (⛪) church 26F0..26F1 ; Emoji # E0.7 [2] (⛰️..⛱️) mountain..umbrella on ground 26F2..26F3 ; Emoji # E0.6 [2] (⛲..⛳) fountain..flag in hole 26F4 ; Emoji # E0.7 [1] (⛴️) ferry 26F5 ; Emoji # E0.6 [1] (⛵) sailboat 26F7..26F9 ; Emoji # E0.7 [3] (⛷️..⛹️) skier..person bouncing ball 26FA ; Emoji # E0.6 [1] (⛺) tent 26FD ; Emoji # E0.6 [1] (⛽) fuel pump 2702 ; Emoji # E0.6 [1] (✂️) scissors 2705 ; Emoji # E0.6 [1] (✅) check mark button 2708..270C ; Emoji # E0.6 [5] (✈️..✌️) airplane..victory hand 270D ; Emoji # E0.7 [1] (✍️) writing hand 270F ; Emoji # E0.6 [1] (✏️) pencil 2712 ; Emoji # E0.6 [1] (✒️) black nib 2714 ; Emoji # E0.6 [1] (✔️) check mark 2716 ; Emoji # E0.6 [1] (✖️) multiply 271D ; Emoji # E0.7 [1] (✝️) latin cross 2721 ; Emoji # E0.7 [1] (✡️) star of David 2728 ; Emoji # E0.6 [1] (✨) sparkles 2733..2734 ; Emoji # E0.6 [2] (✳️..✴️) eight-spoked asterisk..eight-pointed star 2744 ; Emoji # E0.6 [1] (❄️) snowflake 2747 ; Emoji # E0.6 [1] (❇️) sparkle 274C ; Emoji # E0.6 [1] (❌) cross mark 274E ; Emoji # E0.6 [1] (❎) cross mark button 2753..2755 ; Emoji # E0.6 [3] (❓..❕) question mark..white exclamation mark 2757 ; Emoji # E0.6 [1] (❗) exclamation mark 2763 ; Emoji # E1.0 [1] (❣️) heart exclamation 2764 ; Emoji # E0.6 [1] (❤️) red heart 2795..2797 ; Emoji # E0.6 [3] (➕..➗) plus..divide 27A1 ; Emoji # E0.6 [1] (➡️) right arrow 27B0 ; Emoji # E0.6 [1] (➰) curly loop 27BF ; Emoji # E1.0 [1] (➿) double curly loop 2934..2935 ; Emoji # E0.6 [2] (⤴️..⤵️) right arrow curving up..right arrow curving down 2B05..2B07 ; Emoji # E0.6 [3] (⬅️..⬇️) left arrow..down arrow 2B1B..2B1C ; Emoji # E0.6 [2] (⬛..⬜) black large square..white large square 2B50 ; Emoji # E0.6 [1] (⭐) star 2B55 ; Emoji # E0.6 [1] (⭕) hollow red circle 3030 ; Emoji # E0.6 [1] (〰️) wavy dash 303D ; Emoji # E0.6 [1] (〽️) part alternation mark 3297 ; Emoji # E0.6 [1] (㊗️) Japanese “congratulations” button 3299 ; Emoji # E0.6 [1] (㊙️) Japanese “secret” button 1F004 ; Emoji # E0.6 [1] (🀄) mahjong red dragon 1F0CF ; Emoji # E0.6 [1] (🃏) joker 1F170..1F171 ; Emoji # E0.6 [2] (🅰️..🅱️) A button (blood type)..B button (blood type) 1F17E..1F17F ; Emoji # E0.6 [2] (🅾️..🅿️) O button (blood type)..P button 1F18E ; Emoji # E0.6 [1] (🆎) AB button (blood type) 1F191..1F19A ; Emoji # E0.6 [10] (🆑..🆚) CL button..VS button 1F1E6..1F1FF ; Emoji # E0.0 [26] (🇦..🇿) regional indicator symbol letter a..regional indicator symbol letter z 1F201..1F202 ; Emoji # E0.6 [2] (🈁..🈂️) Japanese “here” button..Japanese “service charge” button 1F21A ; Emoji # E0.6 [1] (🈚) Japanese “free of charge” button 1F22F ; Emoji # E0.6 [1] (🈯) Japanese “reserved” button 1F232..1F23A ; Emoji # E0.6 [9] (🈲..🈺) Japanese “prohibited” button..Japanese “open for business” button 1F250..1F251 ; Emoji # E0.6 [2] (🉐..🉑) Japanese “bargain” button..Japanese “acceptable” button 1F300..1F30C ; Emoji # E0.6 [13] (🌀..🌌) cyclone..milky way 1F30D..1F30E ; Emoji # E0.7 [2] (🌍..🌎) globe showing Europe-Africa..globe showing Americas 1F30F ; Emoji # E0.6 [1] (🌏) globe showing Asia-Australia 1F310 ; Emoji # E1.0 [1] (🌐) globe with meridians 1F311 ; Emoji # E0.6 [1] (🌑) new moon 1F312 ; Emoji # E1.0 [1] (🌒) waxing crescent moon 1F313..1F315 ; Emoji # E0.6 [3] (🌓..🌕) first quarter moon..full moon 1F316..1F318 ; Emoji # E1.0 [3] (🌖..🌘) waning gibbous moon..waning crescent moon 1F319 ; Emoji # E0.6 [1] (🌙) crescent moon 1F31A ; Emoji # E1.0 [1] (🌚) new moon face 1F31B ; Emoji # E0.6 [1] (🌛) first quarter moon face 1F31C ; Emoji # E0.7 [1] (🌜) last quarter moon face 1F31D..1F31E ; Emoji # E1.0 [2] (🌝..🌞) full moon face..sun with face 1F31F..1F320 ; Emoji # E0.6 [2] (🌟..🌠) glowing star..shooting star 1F321 ; Emoji # E0.7 [1] (🌡️) thermometer 1F324..1F32C ; Emoji # E0.7 [9] (🌤️..🌬️) sun behind small cloud..wind face 1F32D..1F32F ; Emoji # E1.0 [3] (🌭..🌯) hot dog..burrito 1F330..1F331 ; Emoji # E0.6 [2] (🌰..🌱) chestnut..seedling 1F332..1F333 ; Emoji # E1.0 [2] (🌲..🌳) evergreen tree..deciduous tree 1F334..1F335 ; Emoji # E0.6 [2] (🌴..🌵) palm tree..cactus 1F336 ; Emoji # E0.7 [1] (🌶️) hot pepper 1F337..1F34A ; Emoji # E0.6 [20] (🌷..🍊) tulip..tangerine 1F34B ; Emoji # E1.0 [1] (🍋) lemon 1F34C..1F34F ; Emoji # E0.6 [4] (🍌..🍏) banana..green apple 1F350 ; Emoji # E1.0 [1] (🍐) pear 1F351..1F37B ; Emoji # E0.6 [43] (🍑..🍻) peach..clinking beer mugs 1F37C ; Emoji # E1.0 [1] (🍼) baby bottle 1F37D ; Emoji # E0.7 [1] (🍽️) fork and knife with plate 1F37E..1F37F ; Emoji # E1.0 [2] (🍾..🍿) bottle with popping cork..popcorn 1F380..1F393 ; Emoji # E0.6 [20] (🎀..🎓) ribbon..graduation cap 1F396..1F397 ; Emoji # E0.7 [2] (🎖️..🎗️) military medal..reminder ribbon 1F399..1F39B ; Emoji # E0.7 [3] (🎙️..🎛️) studio microphone..control knobs 1F39E..1F39F ; Emoji # E0.7 [2] (🎞️..🎟️) film frames..admission tickets 1F3A0..1F3C4 ; Emoji # E0.6 [37] (🎠..🏄) carousel horse..person surfing 1F3C5 ; Emoji # E1.0 [1] (🏅) sports medal 1F3C6 ; Emoji # E0.6 [1] (🏆) trophy 1F3C7 ; Emoji # E1.0 [1] (🏇) horse racing 1F3C8 ; Emoji # E0.6 [1] (🏈) american football 1F3C9 ; Emoji # E1.0 [1] (🏉) rugby football 1F3CA ; Emoji # E0.6 [1] (🏊) person swimming 1F3CB..1F3CE ; Emoji # E0.7 [4] (🏋️..🏎️) person lifting weights..racing car 1F3CF..1F3D3 ; Emoji # E1.0 [5] (🏏..🏓) cricket game..ping pong 1F3D4..1F3DF ; Emoji # E0.7 [12] (🏔️..🏟️) snow-capped mountain..stadium 1F3E0..1F3E3 ; Emoji # E0.6 [4] (🏠..🏣) house..Japanese post office 1F3E4 ; Emoji # E1.0 [1] (🏤) post office 1F3E5..1F3F0 ; Emoji # E0.6 [12] (🏥..🏰) hospital..castle 1F3F3 ; Emoji # E0.7 [1] (🏳️) white flag 1F3F4 ; Emoji # E1.0 [1] (🏴) black flag 1F3F5 ; Emoji # E0.7 [1] (🏵️) rosette 1F3F7 ; Emoji # E0.7 [1] (🏷️) label 1F3F8..1F407 ; Emoji # E1.0 [16] (🏸..🐇) badminton..rabbit 1F408 ; Emoji # E0.7 [1] (🐈) cat 1F409..1F40B ; Emoji # E1.0 [3] (🐉..🐋) dragon..whale 1F40C..1F40E ; Emoji # E0.6 [3] (🐌..🐎) snail..horse 1F40F..1F410 ; Emoji # E1.0 [2] (🐏..🐐) ram..goat 1F411..1F412 ; Emoji # E0.6 [2] (🐑..🐒) ewe..monkey 1F413 ; Emoji # E1.0 [1] (🐓) rooster 1F414 ; Emoji # E0.6 [1] (🐔) chicken 1F415 ; Emoji # E0.7 [1] (🐕) dog 1F416 ; Emoji # E1.0 [1] (🐖) pig 1F417..1F429 ; Emoji # E0.6 [19] (🐗..🐩) boar..poodle 1F42A ; Emoji # E1.0 [1] (🐪) camel 1F42B..1F43E ; Emoji # E0.6 [20] (🐫..🐾) two-hump camel..paw prints 1F43F ; Emoji # E0.7 [1] (🐿️) chipmunk 1F440 ; Emoji # E0.6 [1] (👀) eyes 1F441 ; Emoji # E0.7 [1] (👁️) eye 1F442..1F464 ; Emoji # E0.6 [35] (👂..👤) ear..bust in silhouette 1F465 ; Emoji # E1.0 [1] (👥) busts in silhouette 1F466..1F46B ; Emoji # E0.6 [6] (👦..👫) boy..woman and man holding hands 1F46C..1F46D ; Emoji # E1.0 [2] (👬..👭) men holding hands..women holding hands 1F46E..1F4AC ; Emoji # E0.6 [63] (👮..💬) police officer..speech balloon 1F4AD ; Emoji # E1.0 [1] (💭) thought balloon 1F4AE..1F4B5 ; Emoji # E0.6 [8] (💮..💵) white flower..dollar banknote 1F4B6..1F4B7 ; Emoji # E1.0 [2] (💶..💷) euro banknote..pound banknote 1F4B8..1F4EB ; Emoji # E0.6 [52] (💸..📫) money with wings..closed mailbox with raised flag 1F4EC..1F4ED ; Emoji # E0.7 [2] (📬..📭) open mailbox with raised flag..open mailbox with lowered flag 1F4EE ; Emoji # E0.6 [1] (📮) postbox 1F4EF ; Emoji # E1.0 [1] (📯) postal horn 1F4F0..1F4F4 ; Emoji # E0.6 [5] (📰..📴) newspaper..mobile phone off 1F4F5 ; Emoji # E1.0 [1] (📵) no mobile phones 1F4F6..1F4F7 ; Emoji # E0.6 [2] (📶..📷) antenna bars..camera 1F4F8 ; Emoji # E1.0 [1] (📸) camera with flash 1F4F9..1F4FC ; Emoji # E0.6 [4] (📹..📼) video camera..videocassette 1F4FD ; Emoji # E0.7 [1] (📽️) film projector 1F4FF..1F502 ; Emoji # E1.0 [4] (📿..🔂) prayer beads..repeat single button 1F503 ; Emoji # E0.6 [1] (🔃) clockwise vertical arrows 1F504..1F507 ; Emoji # E1.0 [4] (🔄..🔇) counterclockwise arrows button..muted speaker 1F508 ; Emoji # E0.7 [1] (🔈) speaker low volume 1F509 ; Emoji # E1.0 [1] (🔉) speaker medium volume 1F50A..1F514 ; Emoji # E0.6 [11] (🔊..🔔) speaker high volume..bell 1F515 ; Emoji # E1.0 [1] (🔕) bell with slash 1F516..1F52B ; Emoji # E0.6 [22] (🔖..🔫) bookmark..pistol 1F52C..1F52D ; Emoji # E1.0 [2] (🔬..🔭) microscope..telescope 1F52E..1F53D ; Emoji # E0.6 [16] (🔮..🔽) crystal ball..downwards button 1F549..1F54A ; Emoji # E0.7 [2] (🕉️..🕊️) om..dove 1F54B..1F54E ; Emoji # E1.0 [4] (🕋..🕎) kaaba..menorah 1F550..1F55B ; Emoji # E0.6 [12] (🕐..🕛) one o’clock..twelve o’clock 1F55C..1F567 ; Emoji # E0.7 [12] (🕜..🕧) one-thirty..twelve-thirty 1F56F..1F570 ; Emoji # E0.7 [2] (🕯️..🕰️) candle..mantelpiece clock 1F573..1F579 ; Emoji # E0.7 [7] (🕳️..🕹️) hole..joystick 1F57A ; Emoji # E3.0 [1] (🕺) man dancing 1F587 ; Emoji # E0.7 [1] (🖇️) linked paperclips 1F58A..1F58D ; Emoji # E0.7 [4] (🖊️..🖍️) pen..crayon 1F590 ; Emoji # E0.7 [1] (🖐️) hand with fingers splayed 1F595..1F596 ; Emoji # E1.0 [2] (🖕..🖖) middle finger..vulcan salute 1F5A4 ; Emoji # E3.0 [1] (🖤) black heart 1F5A5 ; Emoji # E0.7 [1] (🖥️) desktop computer 1F5A8 ; Emoji # E0.7 [1] (🖨️) printer 1F5B1..1F5B2 ; Emoji # E0.7 [2] (🖱️..🖲️) computer mouse..trackball 1F5BC ; Emoji # E0.7 [1] (🖼️) framed picture 1F5C2..1F5C4 ; Emoji # E0.7 [3] (🗂️..🗄️) card index dividers..file cabinet 1F5D1..1F5D3 ; Emoji # E0.7 [3] (🗑️..🗓️) wastebasket..spiral calendar 1F5DC..1F5DE ; Emoji # E0.7 [3] (🗜️..🗞️) clamp..rolled-up newspaper 1F5E1 ; Emoji # E0.7 [1] (🗡️) dagger 1F5E3 ; Emoji # E0.7 [1] (🗣️) speaking head 1F5E8 ; Emoji # E2.0 [1] (🗨️) left speech bubble 1F5EF ; Emoji # E0.7 [1] (🗯️) right anger bubble 1F5F3 ; Emoji # E0.7 [1] (🗳️) ballot box with ballot 1F5FA ; Emoji # E0.7 [1] (🗺️) world map 1F5FB..1F5FF ; Emoji # E0.6 [5] (🗻..🗿) mount fuji..moai 1F600 ; Emoji # E1.0 [1] (😀) grinning face 1F601..1F606 ; Emoji # E0.6 [6] (😁..😆) beaming face with smiling eyes..grinning squinting face 1F607..1F608 ; Emoji # E1.0 [2] (😇..😈) smiling face with halo..smiling face with horns 1F609..1F60D ; Emoji # E0.6 [5] (😉..😍) winking face..smiling face with heart-eyes 1F60E ; Emoji # E1.0 [1] (😎) smiling face with sunglasses 1F60F ; Emoji # E0.6 [1] (😏) smirking face 1F610 ; Emoji # E0.7 [1] (😐) neutral face 1F611 ; Emoji # E1.0 [1] (😑) expressionless face 1F612..1F614 ; Emoji # E0.6 [3] (😒..😔) unamused face..pensive face 1F615 ; Emoji # E1.0 [1] (😕) confused face 1F616 ; Emoji # E0.6 [1] (😖) confounded face 1F617 ; Emoji # E1.0 [1] (😗) kissing face 1F618 ; Emoji # E0.6 [1] (😘) face blowing a kiss 1F619 ; Emoji # E1.0 [1] (😙) kissing face with smiling eyes 1F61A ; Emoji # E0.6 [1] (😚) kissing face with closed eyes 1F61B ; Emoji # E1.0 [1] (😛) face with tongue 1F61C..1F61E ; Emoji # E0.6 [3] (😜..😞) winking face with tongue..disappointed face 1F61F ; Emoji # E1.0 [1] (😟) worried face 1F620..1F625 ; Emoji # E0.6 [6] (😠..😥) angry face..sad but relieved face 1F626..1F627 ; Emoji # E1.0 [2] (😦..😧) frowning face with open mouth..anguished face 1F628..1F62B ; Emoji # E0.6 [4] (😨..😫) fearful face..tired face 1F62C ; Emoji # E1.0 [1] (😬) grimacing face 1F62D ; Emoji # E0.6 [1] (😭) loudly crying face 1F62E..1F62F ; Emoji # E1.0 [2] (😮..😯) face with open mouth..hushed face 1F630..1F633 ; Emoji # E0.6 [4] (😰..😳) anxious face with sweat..flushed face 1F634 ; Emoji # E1.0 [1] (😴) sleeping face 1F635 ; Emoji # E0.6 [1] (😵) dizzy face 1F636 ; Emoji # E1.0 [1] (😶) face without mouth 1F637..1F640 ; Emoji # E0.6 [10] (😷..🙀) face with medical mask..weary cat 1F641..1F644 ; Emoji # E1.0 [4] (🙁..🙄) slightly frowning face..face with rolling eyes 1F645..1F64F ; Emoji # E0.6 [11] (🙅..🙏) person gesturing NO..folded hands 1F680 ; Emoji # E0.6 [1] (🚀) rocket 1F681..1F682 ; Emoji # E1.0 [2] (🚁..🚂) helicopter..locomotive 1F683..1F685 ; Emoji # E0.6 [3] (🚃..🚅) railway car..bullet train 1F686 ; Emoji # E1.0 [1] (🚆) train 1F687 ; Emoji # E0.6 [1] (🚇) metro 1F688 ; Emoji # E1.0 [1] (🚈) light rail 1F689 ; Emoji # E0.6 [1] (🚉) station 1F68A..1F68B ; Emoji # E1.0 [2] (🚊..🚋) tram..tram car 1F68C ; Emoji # E0.6 [1] (🚌) bus 1F68D ; Emoji # E0.7 [1] (🚍) oncoming bus 1F68E ; Emoji # E1.0 [1] (🚎) trolleybus 1F68F ; Emoji # E0.6 [1] (🚏) bus stop 1F690 ; Emoji # E1.0 [1] (🚐) minibus 1F691..1F693 ; Emoji # E0.6 [3] (🚑..🚓) ambulance..police car 1F694 ; Emoji # E0.7 [1] (🚔) oncoming police car 1F695 ; Emoji # E0.6 [1] (🚕) taxi 1F696 ; Emoji # E1.0 [1] (🚖) oncoming taxi 1F697 ; Emoji # E0.6 [1] (🚗) automobile 1F698 ; Emoji # E0.7 [1] (🚘) oncoming automobile 1F699..1F69A ; Emoji # E0.6 [2] (🚙..🚚) sport utility vehicle..delivery truck 1F69B..1F6A1 ; Emoji # E1.0 [7] (🚛..🚡) articulated lorry..aerial tramway 1F6A2 ; Emoji # E0.6 [1] (🚢) ship 1F6A3 ; Emoji # E1.0 [1] (🚣) person rowing boat 1F6A4..1F6A5 ; Emoji # E0.6 [2] (🚤..🚥) speedboat..horizontal traffic light 1F6A6 ; Emoji # E1.0 [1] (🚦) vertical traffic light 1F6A7..1F6AD ; Emoji # E0.6 [7] (🚧..🚭) construction..no smoking 1F6AE..1F6B1 ; Emoji # E1.0 [4] (🚮..🚱) litter in bin sign..non-potable water 1F6B2 ; Emoji # E0.6 [1] (🚲) bicycle 1F6B3..1F6B5 ; Emoji # E1.0 [3] (🚳..🚵) no bicycles..person mountain biking 1F6B6 ; Emoji # E0.6 [1] (🚶) person walking 1F6B7..1F6B8 ; Emoji # E1.0 [2] (🚷..🚸) no pedestrians..children crossing 1F6B9..1F6BE ; Emoji # E0.6 [6] (🚹..🚾) men’s room..water closet 1F6BF ; Emoji # E1.0 [1] (🚿) shower 1F6C0 ; Emoji # E0.6 [1] (🛀) person taking bath 1F6C1..1F6C5 ; Emoji # E1.0 [5] (🛁..🛅) bathtub..left luggage 1F6CB ; Emoji # E0.7 [1] (🛋️) couch and lamp 1F6CC ; Emoji # E1.0 [1] (🛌) person in bed 1F6CD..1F6CF ; Emoji # E0.7 [3] (🛍️..🛏️) shopping bags..bed 1F6D0 ; Emoji # E1.0 [1] (🛐) place of worship 1F6D1..1F6D2 ; Emoji # E3.0 [2] (🛑..🛒) stop sign..shopping cart 1F6D5 ; Emoji # E12.0 [1] (🛕) hindu temple 1F6D6..1F6D7 ; Emoji # E13.0 [2] (🛖..🛗) hut..elevator 1F6E0..1F6E5 ; Emoji # E0.7 [6] (🛠️..🛥️) hammer and wrench..motor boat 1F6E9 ; Emoji # E0.7 [1] (🛩️) small airplane 1F6EB..1F6EC ; Emoji # E1.0 [2] (🛫..🛬) airplane departure..airplane arrival 1F6F0 ; Emoji # E0.7 [1] (🛰️) satellite 1F6F3 ; Emoji # E0.7 [1] (🛳️) passenger ship 1F6F4..1F6F6 ; Emoji # E3.0 [3] (🛴..🛶) kick scooter..canoe 1F6F7..1F6F8 ; Emoji # E5.0 [2] (🛷..🛸) sled..flying saucer 1F6F9 ; Emoji # E11.0 [1] (🛹) skateboard 1F6FA ; Emoji # E12.0 [1] (🛺) auto rickshaw 1F6FB..1F6FC ; Emoji # E13.0 [2] (🛻..🛼) pickup truck..roller skate 1F7E0..1F7EB ; Emoji # E12.0 [12] (🟠..🟫) orange circle..brown square 1F90C ; Emoji # E13.0 [1] (🤌) pinched fingers 1F90D..1F90F ; Emoji # E12.0 [3] (🤍..🤏) white heart..pinching hand 1F910..1F918 ; Emoji # E1.0 [9] (🤐..🤘) zipper-mouth face..sign of the horns 1F919..1F91E ; Emoji # E3.0 [6] (🤙..🤞) call me hand..crossed fingers 1F91F ; Emoji # E5.0 [1] (🤟) love-you gesture 1F920..1F927 ; Emoji # E3.0 [8] (🤠..🤧) cowboy hat face..sneezing face 1F928..1F92F ; Emoji # E5.0 [8] (🤨..🤯) face with raised eyebrow..exploding head 1F930 ; Emoji # E3.0 [1] (🤰) pregnant woman 1F931..1F932 ; Emoji # E5.0 [2] (🤱..🤲) breast-feeding..palms up together 1F933..1F93A ; Emoji # E3.0 [8] (🤳..🤺) selfie..person fencing 1F93C..1F93E ; Emoji # E3.0 [3] (🤼..🤾) people wrestling..person playing handball 1F93F ; Emoji # E12.0 [1] (🤿) diving mask 1F940..1F945 ; Emoji # E3.0 [6] (🥀..🥅) wilted flower..goal net 1F947..1F94B ; Emoji # E3.0 [5] (🥇..🥋) 1st place medal..martial arts uniform 1F94C ; Emoji # E5.0 [1] (🥌) curling stone 1F94D..1F94F ; Emoji # E11.0 [3] (🥍..🥏) lacrosse..flying disc 1F950..1F95E ; Emoji # E3.0 [15] (🥐..🥞) croissant..pancakes 1F95F..1F96B ; Emoji # E5.0 [13] (🥟..🥫) dumpling..canned food 1F96C..1F970 ; Emoji # E11.0 [5] (🥬..🥰) leafy green..smiling face with hearts 1F971 ; Emoji # E12.0 [1] (🥱) yawning face 1F972 ; Emoji # E13.0 [1] (🥲) smiling face with tear 1F973..1F976 ; Emoji # E11.0 [4] (🥳..🥶) partying face..cold face 1F977..1F978 ; Emoji # E13.0 [2] (🥷..🥸) ninja..disguised face 1F97A ; Emoji # E11.0 [1] (🥺) pleading face 1F97B ; Emoji # E12.0 [1] (🥻) sari 1F97C..1F97F ; Emoji # E11.0 [4] (🥼..🥿) lab coat..flat shoe 1F980..1F984 ; Emoji # E1.0 [5] (🦀..🦄) crab..unicorn 1F985..1F991 ; Emoji # E3.0 [13] (🦅..🦑) eagle..squid 1F992..1F997 ; Emoji # E5.0 [6] (🦒..🦗) giraffe..cricket 1F998..1F9A2 ; Emoji # E11.0 [11] (🦘..🦢) kangaroo..swan 1F9A3..1F9A4 ; Emoji # E13.0 [2] (🦣..🦤) mammoth..dodo 1F9A5..1F9AA ; Emoji # E12.0 [6] (🦥..🦪) sloth..oyster 1F9AB..1F9AD ; Emoji # E13.0 [3] (🦫..🦭) beaver..seal 1F9AE..1F9AF ; Emoji # E12.0 [2] (🦮..🦯) guide dog..white cane 1F9B0..1F9B9 ; Emoji # E11.0 [10] (🦰..🦹) red hair..supervillain 1F9BA..1F9BF ; Emoji # E12.0 [6] (🦺..🦿) safety vest..mechanical leg 1F9C0 ; Emoji # E1.0 [1] (🧀) cheese wedge 1F9C1..1F9C2 ; Emoji # E11.0 [2] (🧁..🧂) cupcake..salt 1F9C3..1F9CA ; Emoji # E12.0 [8] (🧃..🧊) beverage box..ice 1F9CB ; Emoji # E13.0 [1] (🧋) bubble tea 1F9CD..1F9CF ; Emoji # E12.0 [3] (🧍..🧏) person standing..deaf person 1F9D0..1F9E6 ; Emoji # E5.0 [23] (🧐..🧦) face with monocle..socks 1F9E7..1F9FF ; Emoji # E11.0 [25] (🧧..🧿) red envelope..nazar amulet 1FA70..1FA73 ; Emoji # E12.0 [4] (🩰..🩳) ballet shoes..shorts 1FA74 ; Emoji # E13.0 [1] (🩴) thong sandal 1FA78..1FA7A ; Emoji # E12.0 [3] (🩸..🩺) drop of blood..stethoscope 1FA80..1FA82 ; Emoji # E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Emoji # E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA90..1FA95 ; Emoji # E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Emoji # E13.0 [19] (🪖..🪨) military helmet..rock 1FAB0..1FAB6 ; Emoji # E13.0 [7] (🪰..🪶) fly..feather 1FAC0..1FAC2 ; Emoji # E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAD0..1FAD6 ; Emoji # E13.0 [7] (🫐..🫖) blueberries..teapot # Total elements: 1367 # ================================================ # All omitted code points have Emoji_Presentation=No # @missing: 0000..10FFFF ; Emoji_Presentation ; No 231A..231B ; Emoji_Presentation # E0.6 [2] (⌚..⌛) watch..hourglass done 23E9..23EC ; Emoji_Presentation # E0.6 [4] (⏩..⏬) fast-forward button..fast down button 23F0 ; Emoji_Presentation # E0.6 [1] (⏰) alarm clock 23F3 ; Emoji_Presentation # E0.6 [1] (⏳) hourglass not done 25FD..25FE ; Emoji_Presentation # E0.6 [2] (◽..◾) white medium-small square..black medium-small square 2614..2615 ; Emoji_Presentation # E0.6 [2] (☔..☕) umbrella with rain drops..hot beverage 2648..2653 ; Emoji_Presentation # E0.6 [12] (♈..♓) Aries..Pisces 267F ; Emoji_Presentation # E0.6 [1] (♿) wheelchair symbol 2693 ; Emoji_Presentation # E0.6 [1] (⚓) anchor 26A1 ; Emoji_Presentation # E0.6 [1] (⚡) high voltage 26AA..26AB ; Emoji_Presentation # E0.6 [2] (⚪..⚫) white circle..black circle 26BD..26BE ; Emoji_Presentation # E0.6 [2] (⚽..⚾) soccer ball..baseball 26C4..26C5 ; Emoji_Presentation # E0.6 [2] (⛄..⛅) snowman without snow..sun behind cloud 26CE ; Emoji_Presentation # E0.6 [1] (⛎) Ophiuchus 26D4 ; Emoji_Presentation # E0.6 [1] (⛔) no entry 26EA ; Emoji_Presentation # E0.6 [1] (⛪) church 26F2..26F3 ; Emoji_Presentation # E0.6 [2] (⛲..⛳) fountain..flag in hole 26F5 ; Emoji_Presentation # E0.6 [1] (⛵) sailboat 26FA ; Emoji_Presentation # E0.6 [1] (⛺) tent 26FD ; Emoji_Presentation # E0.6 [1] (⛽) fuel pump 2705 ; Emoji_Presentation # E0.6 [1] (✅) check mark button 270A..270B ; Emoji_Presentation # E0.6 [2] (✊..✋) raised fist..raised hand 2728 ; Emoji_Presentation # E0.6 [1] (✨) sparkles 274C ; Emoji_Presentation # E0.6 [1] (❌) cross mark 274E ; Emoji_Presentation # E0.6 [1] (❎) cross mark button 2753..2755 ; Emoji_Presentation # E0.6 [3] (❓..❕) question mark..white exclamation mark 2757 ; Emoji_Presentation # E0.6 [1] (❗) exclamation mark 2795..2797 ; Emoji_Presentation # E0.6 [3] (➕..➗) plus..divide 27B0 ; Emoji_Presentation # E0.6 [1] (➰) curly loop 27BF ; Emoji_Presentation # E1.0 [1] (➿) double curly loop 2B1B..2B1C ; Emoji_Presentation # E0.6 [2] (⬛..⬜) black large square..white large square 2B50 ; Emoji_Presentation # E0.6 [1] (⭐) star 2B55 ; Emoji_Presentation # E0.6 [1] (⭕) hollow red circle 1F004 ; Emoji_Presentation # E0.6 [1] (🀄) mahjong red dragon 1F0CF ; Emoji_Presentation # E0.6 [1] (🃏) joker 1F18E ; Emoji_Presentation # E0.6 [1] (🆎) AB button (blood type) 1F191..1F19A ; Emoji_Presentation # E0.6 [10] (🆑..🆚) CL button..VS button 1F1E6..1F1FF ; Emoji_Presentation # E0.0 [26] (🇦..🇿) regional indicator symbol letter a..regional indicator symbol letter z 1F201 ; Emoji_Presentation # E0.6 [1] (🈁) Japanese “here” button 1F21A ; Emoji_Presentation # E0.6 [1] (🈚) Japanese “free of charge” button 1F22F ; Emoji_Presentation # E0.6 [1] (🈯) Japanese “reserved” button 1F232..1F236 ; Emoji_Presentation # E0.6 [5] (🈲..🈶) Japanese “prohibited” button..Japanese “not free of charge” button 1F238..1F23A ; Emoji_Presentation # E0.6 [3] (🈸..🈺) Japanese “application” button..Japanese “open for business” button 1F250..1F251 ; Emoji_Presentation # E0.6 [2] (🉐..🉑) Japanese “bargain” button..Japanese “acceptable” button 1F300..1F30C ; Emoji_Presentation # E0.6 [13] (🌀..🌌) cyclone..milky way 1F30D..1F30E ; Emoji_Presentation # E0.7 [2] (🌍..🌎) globe showing Europe-Africa..globe showing Americas 1F30F ; Emoji_Presentation # E0.6 [1] (🌏) globe showing Asia-Australia 1F310 ; Emoji_Presentation # E1.0 [1] (🌐) globe with meridians 1F311 ; Emoji_Presentation # E0.6 [1] (🌑) new moon 1F312 ; Emoji_Presentation # E1.0 [1] (🌒) waxing crescent moon 1F313..1F315 ; Emoji_Presentation # E0.6 [3] (🌓..🌕) first quarter moon..full moon 1F316..1F318 ; Emoji_Presentation # E1.0 [3] (🌖..🌘) waning gibbous moon..waning crescent moon 1F319 ; Emoji_Presentation # E0.6 [1] (🌙) crescent moon 1F31A ; Emoji_Presentation # E1.0 [1] (🌚) new moon face 1F31B ; Emoji_Presentation # E0.6 [1] (🌛) first quarter moon face 1F31C ; Emoji_Presentation # E0.7 [1] (🌜) last quarter moon face 1F31D..1F31E ; Emoji_Presentation # E1.0 [2] (🌝..🌞) full moon face..sun with face 1F31F..1F320 ; Emoji_Presentation # E0.6 [2] (🌟..🌠) glowing star..shooting star 1F32D..1F32F ; Emoji_Presentation # E1.0 [3] (🌭..🌯) hot dog..burrito 1F330..1F331 ; Emoji_Presentation # E0.6 [2] (🌰..🌱) chestnut..seedling 1F332..1F333 ; Emoji_Presentation # E1.0 [2] (🌲..🌳) evergreen tree..deciduous tree 1F334..1F335 ; Emoji_Presentation # E0.6 [2] (🌴..🌵) palm tree..cactus 1F337..1F34A ; Emoji_Presentation # E0.6 [20] (🌷..🍊) tulip..tangerine 1F34B ; Emoji_Presentation # E1.0 [1] (🍋) lemon 1F34C..1F34F ; Emoji_Presentation # E0.6 [4] (🍌..🍏) banana..green apple 1F350 ; Emoji_Presentation # E1.0 [1] (🍐) pear 1F351..1F37B ; Emoji_Presentation # E0.6 [43] (🍑..🍻) peach..clinking beer mugs 1F37C ; Emoji_Presentation # E1.0 [1] (🍼) baby bottle 1F37E..1F37F ; Emoji_Presentation # E1.0 [2] (🍾..🍿) bottle with popping cork..popcorn 1F380..1F393 ; Emoji_Presentation # E0.6 [20] (🎀..🎓) ribbon..graduation cap 1F3A0..1F3C4 ; Emoji_Presentation # E0.6 [37] (🎠..🏄) carousel horse..person surfing 1F3C5 ; Emoji_Presentation # E1.0 [1] (🏅) sports medal 1F3C6 ; Emoji_Presentation # E0.6 [1] (🏆) trophy 1F3C7 ; Emoji_Presentation # E1.0 [1] (🏇) horse racing 1F3C8 ; Emoji_Presentation # E0.6 [1] (🏈) american football 1F3C9 ; Emoji_Presentation # E1.0 [1] (🏉) rugby football 1F3CA ; Emoji_Presentation # E0.6 [1] (🏊) person swimming 1F3CF..1F3D3 ; Emoji_Presentation # E1.0 [5] (🏏..🏓) cricket game..ping pong 1F3E0..1F3E3 ; Emoji_Presentation # E0.6 [4] (🏠..🏣) house..Japanese post office 1F3E4 ; Emoji_Presentation # E1.0 [1] (🏤) post office 1F3E5..1F3F0 ; Emoji_Presentation # E0.6 [12] (🏥..🏰) hospital..castle 1F3F4 ; Emoji_Presentation # E1.0 [1] (🏴) black flag 1F3F8..1F407 ; Emoji_Presentation # E1.0 [16] (🏸..🐇) badminton..rabbit 1F408 ; Emoji_Presentation # E0.7 [1] (🐈) cat 1F409..1F40B ; Emoji_Presentation # E1.0 [3] (🐉..🐋) dragon..whale 1F40C..1F40E ; Emoji_Presentation # E0.6 [3] (🐌..🐎) snail..horse 1F40F..1F410 ; Emoji_Presentation # E1.0 [2] (🐏..🐐) ram..goat 1F411..1F412 ; Emoji_Presentation # E0.6 [2] (🐑..🐒) ewe..monkey 1F413 ; Emoji_Presentation # E1.0 [1] (🐓) rooster 1F414 ; Emoji_Presentation # E0.6 [1] (🐔) chicken 1F415 ; Emoji_Presentation # E0.7 [1] (🐕) dog 1F416 ; Emoji_Presentation # E1.0 [1] (🐖) pig 1F417..1F429 ; Emoji_Presentation # E0.6 [19] (🐗..🐩) boar..poodle 1F42A ; Emoji_Presentation # E1.0 [1] (🐪) camel 1F42B..1F43E ; Emoji_Presentation # E0.6 [20] (🐫..🐾) two-hump camel..paw prints 1F440 ; Emoji_Presentation # E0.6 [1] (👀) eyes 1F442..1F464 ; Emoji_Presentation # E0.6 [35] (👂..👤) ear..bust in silhouette 1F465 ; Emoji_Presentation # E1.0 [1] (👥) busts in silhouette 1F466..1F46B ; Emoji_Presentation # E0.6 [6] (👦..👫) boy..woman and man holding hands 1F46C..1F46D ; Emoji_Presentation # E1.0 [2] (👬..👭) men holding hands..women holding hands 1F46E..1F4AC ; Emoji_Presentation # E0.6 [63] (👮..💬) police officer..speech balloon 1F4AD ; Emoji_Presentation # E1.0 [1] (💭) thought balloon 1F4AE..1F4B5 ; Emoji_Presentation # E0.6 [8] (💮..💵) white flower..dollar banknote 1F4B6..1F4B7 ; Emoji_Presentation # E1.0 [2] (💶..💷) euro banknote..pound banknote 1F4B8..1F4EB ; Emoji_Presentation # E0.6 [52] (💸..📫) money with wings..closed mailbox with raised flag 1F4EC..1F4ED ; Emoji_Presentation # E0.7 [2] (📬..📭) open mailbox with raised flag..open mailbox with lowered flag 1F4EE ; Emoji_Presentation # E0.6 [1] (📮) postbox 1F4EF ; Emoji_Presentation # E1.0 [1] (📯) postal horn 1F4F0..1F4F4 ; Emoji_Presentation # E0.6 [5] (📰..📴) newspaper..mobile phone off 1F4F5 ; Emoji_Presentation # E1.0 [1] (📵) no mobile phones 1F4F6..1F4F7 ; Emoji_Presentation # E0.6 [2] (📶..📷) antenna bars..camera 1F4F8 ; Emoji_Presentation # E1.0 [1] (📸) camera with flash 1F4F9..1F4FC ; Emoji_Presentation # E0.6 [4] (📹..📼) video camera..videocassette 1F4FF..1F502 ; Emoji_Presentation # E1.0 [4] (📿..🔂) prayer beads..repeat single button 1F503 ; Emoji_Presentation # E0.6 [1] (🔃) clockwise vertical arrows 1F504..1F507 ; Emoji_Presentation # E1.0 [4] (🔄..🔇) counterclockwise arrows button..muted speaker 1F508 ; Emoji_Presentation # E0.7 [1] (🔈) speaker low volume 1F509 ; Emoji_Presentation # E1.0 [1] (🔉) speaker medium volume 1F50A..1F514 ; Emoji_Presentation # E0.6 [11] (🔊..🔔) speaker high volume..bell 1F515 ; Emoji_Presentation # E1.0 [1] (🔕) bell with slash 1F516..1F52B ; Emoji_Presentation # E0.6 [22] (🔖..🔫) bookmark..pistol 1F52C..1F52D ; Emoji_Presentation # E1.0 [2] (🔬..🔭) microscope..telescope 1F52E..1F53D ; Emoji_Presentation # E0.6 [16] (🔮..🔽) crystal ball..downwards button 1F54B..1F54E ; Emoji_Presentation # E1.0 [4] (🕋..🕎) kaaba..menorah 1F550..1F55B ; Emoji_Presentation # E0.6 [12] (🕐..🕛) one o’clock..twelve o’clock 1F55C..1F567 ; Emoji_Presentation # E0.7 [12] (🕜..🕧) one-thirty..twelve-thirty 1F57A ; Emoji_Presentation # E3.0 [1] (🕺) man dancing 1F595..1F596 ; Emoji_Presentation # E1.0 [2] (🖕..🖖) middle finger..vulcan salute 1F5A4 ; Emoji_Presentation # E3.0 [1] (🖤) black heart 1F5FB..1F5FF ; Emoji_Presentation # E0.6 [5] (🗻..🗿) mount fuji..moai 1F600 ; Emoji_Presentation # E1.0 [1] (😀) grinning face 1F601..1F606 ; Emoji_Presentation # E0.6 [6] (😁..😆) beaming face with smiling eyes..grinning squinting face 1F607..1F608 ; Emoji_Presentation # E1.0 [2] (😇..😈) smiling face with halo..smiling face with horns 1F609..1F60D ; Emoji_Presentation # E0.6 [5] (😉..😍) winking face..smiling face with heart-eyes 1F60E ; Emoji_Presentation # E1.0 [1] (😎) smiling face with sunglasses 1F60F ; Emoji_Presentation # E0.6 [1] (😏) smirking face 1F610 ; Emoji_Presentation # E0.7 [1] (😐) neutral face 1F611 ; Emoji_Presentation # E1.0 [1] (😑) expressionless face 1F612..1F614 ; Emoji_Presentation # E0.6 [3] (😒..😔) unamused face..pensive face 1F615 ; Emoji_Presentation # E1.0 [1] (😕) confused face 1F616 ; Emoji_Presentation # E0.6 [1] (😖) confounded face 1F617 ; Emoji_Presentation # E1.0 [1] (😗) kissing face 1F618 ; Emoji_Presentation # E0.6 [1] (😘) face blowing a kiss 1F619 ; Emoji_Presentation # E1.0 [1] (😙) kissing face with smiling eyes 1F61A ; Emoji_Presentation # E0.6 [1] (😚) kissing face with closed eyes 1F61B ; Emoji_Presentation # E1.0 [1] (😛) face with tongue 1F61C..1F61E ; Emoji_Presentation # E0.6 [3] (😜..😞) winking face with tongue..disappointed face 1F61F ; Emoji_Presentation # E1.0 [1] (😟) worried face 1F620..1F625 ; Emoji_Presentation # E0.6 [6] (😠..😥) angry face..sad but relieved face 1F626..1F627 ; Emoji_Presentation # E1.0 [2] (😦..😧) frowning face with open mouth..anguished face 1F628..1F62B ; Emoji_Presentation # E0.6 [4] (😨..😫) fearful face..tired face 1F62C ; Emoji_Presentation # E1.0 [1] (😬) grimacing face 1F62D ; Emoji_Presentation # E0.6 [1] (😭) loudly crying face 1F62E..1F62F ; Emoji_Presentation # E1.0 [2] (😮..😯) face with open mouth..hushed face 1F630..1F633 ; Emoji_Presentation # E0.6 [4] (😰..😳) anxious face with sweat..flushed face 1F634 ; Emoji_Presentation # E1.0 [1] (😴) sleeping face 1F635 ; Emoji_Presentation # E0.6 [1] (😵) dizzy face 1F636 ; Emoji_Presentation # E1.0 [1] (😶) face without mouth 1F637..1F640 ; Emoji_Presentation # E0.6 [10] (😷..🙀) face with medical mask..weary cat 1F641..1F644 ; Emoji_Presentation # E1.0 [4] (🙁..🙄) slightly frowning face..face with rolling eyes 1F645..1F64F ; Emoji_Presentation # E0.6 [11] (🙅..🙏) person gesturing NO..folded hands 1F680 ; Emoji_Presentation # E0.6 [1] (🚀) rocket 1F681..1F682 ; Emoji_Presentation # E1.0 [2] (🚁..🚂) helicopter..locomotive 1F683..1F685 ; Emoji_Presentation # E0.6 [3] (🚃..🚅) railway car..bullet train 1F686 ; Emoji_Presentation # E1.0 [1] (🚆) train 1F687 ; Emoji_Presentation # E0.6 [1] (🚇) metro 1F688 ; Emoji_Presentation # E1.0 [1] (🚈) light rail 1F689 ; Emoji_Presentation # E0.6 [1] (🚉) station 1F68A..1F68B ; Emoji_Presentation # E1.0 [2] (🚊..🚋) tram..tram car 1F68C ; Emoji_Presentation # E0.6 [1] (🚌) bus 1F68D ; Emoji_Presentation # E0.7 [1] (🚍) oncoming bus 1F68E ; Emoji_Presentation # E1.0 [1] (🚎) trolleybus 1F68F ; Emoji_Presentation # E0.6 [1] (🚏) bus stop 1F690 ; Emoji_Presentation # E1.0 [1] (🚐) minibus 1F691..1F693 ; Emoji_Presentation # E0.6 [3] (🚑..🚓) ambulance..police car 1F694 ; Emoji_Presentation # E0.7 [1] (🚔) oncoming police car 1F695 ; Emoji_Presentation # E0.6 [1] (🚕) taxi 1F696 ; Emoji_Presentation # E1.0 [1] (🚖) oncoming taxi 1F697 ; Emoji_Presentation # E0.6 [1] (🚗) automobile 1F698 ; Emoji_Presentation # E0.7 [1] (🚘) oncoming automobile 1F699..1F69A ; Emoji_Presentation # E0.6 [2] (🚙..🚚) sport utility vehicle..delivery truck 1F69B..1F6A1 ; Emoji_Presentation # E1.0 [7] (🚛..🚡) articulated lorry..aerial tramway 1F6A2 ; Emoji_Presentation # E0.6 [1] (🚢) ship 1F6A3 ; Emoji_Presentation # E1.0 [1] (🚣) person rowing boat 1F6A4..1F6A5 ; Emoji_Presentation # E0.6 [2] (🚤..🚥) speedboat..horizontal traffic light 1F6A6 ; Emoji_Presentation # E1.0 [1] (🚦) vertical traffic light 1F6A7..1F6AD ; Emoji_Presentation # E0.6 [7] (🚧..🚭) construction..no smoking 1F6AE..1F6B1 ; Emoji_Presentation # E1.0 [4] (🚮..🚱) litter in bin sign..non-potable water 1F6B2 ; Emoji_Presentation # E0.6 [1] (🚲) bicycle 1F6B3..1F6B5 ; Emoji_Presentation # E1.0 [3] (🚳..🚵) no bicycles..person mountain biking 1F6B6 ; Emoji_Presentation # E0.6 [1] (🚶) person walking 1F6B7..1F6B8 ; Emoji_Presentation # E1.0 [2] (🚷..🚸) no pedestrians..children crossing 1F6B9..1F6BE ; Emoji_Presentation # E0.6 [6] (🚹..🚾) men’s room..water closet 1F6BF ; Emoji_Presentation # E1.0 [1] (🚿) shower 1F6C0 ; Emoji_Presentation # E0.6 [1] (🛀) person taking bath 1F6C1..1F6C5 ; Emoji_Presentation # E1.0 [5] (🛁..🛅) bathtub..left luggage 1F6CC ; Emoji_Presentation # E1.0 [1] (🛌) person in bed 1F6D0 ; Emoji_Presentation # E1.0 [1] (🛐) place of worship 1F6D1..1F6D2 ; Emoji_Presentation # E3.0 [2] (🛑..🛒) stop sign..shopping cart 1F6D5 ; Emoji_Presentation # E12.0 [1] (🛕) hindu temple 1F6D6..1F6D7 ; Emoji_Presentation # E13.0 [2] (🛖..🛗) hut..elevator 1F6EB..1F6EC ; Emoji_Presentation # E1.0 [2] (🛫..🛬) airplane departure..airplane arrival 1F6F4..1F6F6 ; Emoji_Presentation # E3.0 [3] (🛴..🛶) kick scooter..canoe 1F6F7..1F6F8 ; Emoji_Presentation # E5.0 [2] (🛷..🛸) sled..flying saucer 1F6F9 ; Emoji_Presentation # E11.0 [1] (🛹) skateboard 1F6FA ; Emoji_Presentation # E12.0 [1] (🛺) auto rickshaw 1F6FB..1F6FC ; Emoji_Presentation # E13.0 [2] (🛻..🛼) pickup truck..roller skate 1F7E0..1F7EB ; Emoji_Presentation # E12.0 [12] (🟠..🟫) orange circle..brown square 1F90C ; Emoji_Presentation # E13.0 [1] (🤌) pinched fingers 1F90D..1F90F ; Emoji_Presentation # E12.0 [3] (🤍..🤏) white heart..pinching hand 1F910..1F918 ; Emoji_Presentation # E1.0 [9] (🤐..🤘) zipper-mouth face..sign of the horns 1F919..1F91E ; Emoji_Presentation # E3.0 [6] (🤙..🤞) call me hand..crossed fingers 1F91F ; Emoji_Presentation # E5.0 [1] (🤟) love-you gesture 1F920..1F927 ; Emoji_Presentation # E3.0 [8] (🤠..🤧) cowboy hat face..sneezing face 1F928..1F92F ; Emoji_Presentation # E5.0 [8] (🤨..🤯) face with raised eyebrow..exploding head 1F930 ; Emoji_Presentation # E3.0 [1] (🤰) pregnant woman 1F931..1F932 ; Emoji_Presentation # E5.0 [2] (🤱..🤲) breast-feeding..palms up together 1F933..1F93A ; Emoji_Presentation # E3.0 [8] (🤳..🤺) selfie..person fencing 1F93C..1F93E ; Emoji_Presentation # E3.0 [3] (🤼..🤾) people wrestling..person playing handball 1F93F ; Emoji_Presentation # E12.0 [1] (🤿) diving mask 1F940..1F945 ; Emoji_Presentation # E3.0 [6] (🥀..🥅) wilted flower..goal net 1F947..1F94B ; Emoji_Presentation # E3.0 [5] (🥇..🥋) 1st place medal..martial arts uniform 1F94C ; Emoji_Presentation # E5.0 [1] (🥌) curling stone 1F94D..1F94F ; Emoji_Presentation # E11.0 [3] (🥍..🥏) lacrosse..flying disc 1F950..1F95E ; Emoji_Presentation # E3.0 [15] (🥐..🥞) croissant..pancakes 1F95F..1F96B ; Emoji_Presentation # E5.0 [13] (🥟..🥫) dumpling..canned food 1F96C..1F970 ; Emoji_Presentation # E11.0 [5] (🥬..🥰) leafy green..smiling face with hearts 1F971 ; Emoji_Presentation # E12.0 [1] (🥱) yawning face 1F972 ; Emoji_Presentation # E13.0 [1] (🥲) smiling face with tear 1F973..1F976 ; Emoji_Presentation # E11.0 [4] (🥳..🥶) partying face..cold face 1F977..1F978 ; Emoji_Presentation # E13.0 [2] (🥷..🥸) ninja..disguised face 1F97A ; Emoji_Presentation # E11.0 [1] (🥺) pleading face 1F97B ; Emoji_Presentation # E12.0 [1] (🥻) sari 1F97C..1F97F ; Emoji_Presentation # E11.0 [4] (🥼..🥿) lab coat..flat shoe 1F980..1F984 ; Emoji_Presentation # E1.0 [5] (🦀..🦄) crab..unicorn 1F985..1F991 ; Emoji_Presentation # E3.0 [13] (🦅..🦑) eagle..squid 1F992..1F997 ; Emoji_Presentation # E5.0 [6] (🦒..🦗) giraffe..cricket 1F998..1F9A2 ; Emoji_Presentation # E11.0 [11] (🦘..🦢) kangaroo..swan 1F9A3..1F9A4 ; Emoji_Presentation # E13.0 [2] (🦣..🦤) mammoth..dodo 1F9A5..1F9AA ; Emoji_Presentation # E12.0 [6] (🦥..🦪) sloth..oyster 1F9AB..1F9AD ; Emoji_Presentation # E13.0 [3] (🦫..🦭) beaver..seal 1F9AE..1F9AF ; Emoji_Presentation # E12.0 [2] (🦮..🦯) guide dog..white cane 1F9B0..1F9B9 ; Emoji_Presentation # E11.0 [10] (🦰..🦹) red hair..supervillain 1F9BA..1F9BF ; Emoji_Presentation # E12.0 [6] (🦺..🦿) safety vest..mechanical leg 1F9C0 ; Emoji_Presentation # E1.0 [1] (🧀) cheese wedge 1F9C1..1F9C2 ; Emoji_Presentation # E11.0 [2] (🧁..🧂) cupcake..salt 1F9C3..1F9CA ; Emoji_Presentation # E12.0 [8] (🧃..🧊) beverage box..ice 1F9CB ; Emoji_Presentation # E13.0 [1] (🧋) bubble tea 1F9CD..1F9CF ; Emoji_Presentation # E12.0 [3] (🧍..🧏) person standing..deaf person 1F9D0..1F9E6 ; Emoji_Presentation # E5.0 [23] (🧐..🧦) face with monocle..socks 1F9E7..1F9FF ; Emoji_Presentation # E11.0 [25] (🧧..🧿) red envelope..nazar amulet 1FA70..1FA73 ; Emoji_Presentation # E12.0 [4] (🩰..🩳) ballet shoes..shorts 1FA74 ; Emoji_Presentation # E13.0 [1] (🩴) thong sandal 1FA78..1FA7A ; Emoji_Presentation # E12.0 [3] (🩸..🩺) drop of blood..stethoscope 1FA80..1FA82 ; Emoji_Presentation # E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Emoji_Presentation # E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA90..1FA95 ; Emoji_Presentation # E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Emoji_Presentation # E13.0 [19] (🪖..🪨) military helmet..rock 1FAB0..1FAB6 ; Emoji_Presentation # E13.0 [7] (🪰..🪶) fly..feather 1FAC0..1FAC2 ; Emoji_Presentation # E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAD0..1FAD6 ; Emoji_Presentation # E13.0 [7] (🫐..🫖) blueberries..teapot # Total elements: 1148 # ================================================ # All omitted code points have Emoji_Modifier=No # @missing: 0000..10FFFF ; Emoji_Modifier ; No 1F3FB..1F3FF ; Emoji_Modifier # E1.0 [5] (🏻..🏿) light skin tone..dark skin tone # Total elements: 5 # ================================================ # All omitted code points have Emoji_Modifier_Base=No # @missing: 0000..10FFFF ; Emoji_Modifier_Base ; No 261D ; Emoji_Modifier_Base # E0.6 [1] (☝️) index pointing up 26F9 ; Emoji_Modifier_Base # E0.7 [1] (⛹️) person bouncing ball 270A..270C ; Emoji_Modifier_Base # E0.6 [3] (✊..✌️) raised fist..victory hand 270D ; Emoji_Modifier_Base # E0.7 [1] (✍️) writing hand 1F385 ; Emoji_Modifier_Base # E0.6 [1] (🎅) Santa Claus 1F3C2..1F3C4 ; Emoji_Modifier_Base # E0.6 [3] (🏂..🏄) snowboarder..person surfing 1F3C7 ; Emoji_Modifier_Base # E1.0 [1] (🏇) horse racing 1F3CA ; Emoji_Modifier_Base # E0.6 [1] (🏊) person swimming 1F3CB..1F3CC ; Emoji_Modifier_Base # E0.7 [2] (🏋️..🏌️) person lifting weights..person golfing 1F442..1F443 ; Emoji_Modifier_Base # E0.6 [2] (👂..👃) ear..nose 1F446..1F450 ; Emoji_Modifier_Base # E0.6 [11] (👆..👐) backhand index pointing up..open hands 1F466..1F46B ; Emoji_Modifier_Base # E0.6 [6] (👦..👫) boy..woman and man holding hands 1F46C..1F46D ; Emoji_Modifier_Base # E1.0 [2] (👬..👭) men holding hands..women holding hands 1F46E..1F478 ; Emoji_Modifier_Base # E0.6 [11] (👮..👸) police officer..princess 1F47C ; Emoji_Modifier_Base # E0.6 [1] (👼) baby angel 1F481..1F483 ; Emoji_Modifier_Base # E0.6 [3] (💁..💃) person tipping hand..woman dancing 1F485..1F487 ; Emoji_Modifier_Base # E0.6 [3] (💅..💇) nail polish..person getting haircut 1F48F ; Emoji_Modifier_Base # E0.6 [1] (💏) kiss 1F491 ; Emoji_Modifier_Base # E0.6 [1] (💑) couple with heart 1F4AA ; Emoji_Modifier_Base # E0.6 [1] (💪) flexed biceps 1F574..1F575 ; Emoji_Modifier_Base # E0.7 [2] (🕴️..🕵️) person in suit levitating..detective 1F57A ; Emoji_Modifier_Base # E3.0 [1] (🕺) man dancing 1F590 ; Emoji_Modifier_Base # E0.7 [1] (🖐️) hand with fingers splayed 1F595..1F596 ; Emoji_Modifier_Base # E1.0 [2] (🖕..🖖) middle finger..vulcan salute 1F645..1F647 ; Emoji_Modifier_Base # E0.6 [3] (🙅..🙇) person gesturing NO..person bowing 1F64B..1F64F ; Emoji_Modifier_Base # E0.6 [5] (🙋..🙏) person raising hand..folded hands 1F6A3 ; Emoji_Modifier_Base # E1.0 [1] (🚣) person rowing boat 1F6B4..1F6B5 ; Emoji_Modifier_Base # E1.0 [2] (🚴..🚵) person biking..person mountain biking 1F6B6 ; Emoji_Modifier_Base # E0.6 [1] (🚶) person walking 1F6C0 ; Emoji_Modifier_Base # E0.6 [1] (🛀) person taking bath 1F6CC ; Emoji_Modifier_Base # E1.0 [1] (🛌) person in bed 1F90C ; Emoji_Modifier_Base # E13.0 [1] (🤌) pinched fingers 1F90F ; Emoji_Modifier_Base # E12.0 [1] (🤏) pinching hand 1F918 ; Emoji_Modifier_Base # E1.0 [1] (🤘) sign of the horns 1F919..1F91E ; Emoji_Modifier_Base # E3.0 [6] (🤙..🤞) call me hand..crossed fingers 1F91F ; Emoji_Modifier_Base # E5.0 [1] (🤟) love-you gesture 1F926 ; Emoji_Modifier_Base # E3.0 [1] (🤦) person facepalming 1F930 ; Emoji_Modifier_Base # E3.0 [1] (🤰) pregnant woman 1F931..1F932 ; Emoji_Modifier_Base # E5.0 [2] (🤱..🤲) breast-feeding..palms up together 1F933..1F939 ; Emoji_Modifier_Base # E3.0 [7] (🤳..🤹) selfie..person juggling 1F93C..1F93E ; Emoji_Modifier_Base # E3.0 [3] (🤼..🤾) people wrestling..person playing handball 1F977 ; Emoji_Modifier_Base # E13.0 [1] (🥷) ninja 1F9B5..1F9B6 ; Emoji_Modifier_Base # E11.0 [2] (🦵..🦶) leg..foot 1F9B8..1F9B9 ; Emoji_Modifier_Base # E11.0 [2] (🦸..🦹) superhero..supervillain 1F9BB ; Emoji_Modifier_Base # E12.0 [1] (🦻) ear with hearing aid 1F9CD..1F9CF ; Emoji_Modifier_Base # E12.0 [3] (🧍..🧏) person standing..deaf person 1F9D1..1F9DD ; Emoji_Modifier_Base # E5.0 [13] (🧑..🧝) person..elf # Total elements: 122 # ================================================ # All omitted code points have Emoji_Component=No # @missing: 0000..10FFFF ; Emoji_Component ; No 0023 ; Emoji_Component # E0.0 [1] (#️) number sign 002A ; Emoji_Component # E0.0 [1] (*️) asterisk 0030..0039 ; Emoji_Component # E0.0 [10] (0️..9️) digit zero..digit nine 200D ; Emoji_Component # E0.0 [1] (‍) zero width joiner 20E3 ; Emoji_Component # E0.0 [1] (⃣) combining enclosing keycap FE0F ; Emoji_Component # E0.0 [1] () VARIATION SELECTOR-16 1F1E6..1F1FF ; Emoji_Component # E0.0 [26] (🇦..🇿) regional indicator symbol letter a..regional indicator symbol letter z 1F3FB..1F3FF ; Emoji_Component # E1.0 [5] (🏻..🏿) light skin tone..dark skin tone 1F9B0..1F9B3 ; Emoji_Component # E11.0 [4] (🦰..🦳) red hair..white hair E0020..E007F ; Emoji_Component # E0.0 [96] (󠀠..󠁿) tag space..cancel tag # Total elements: 146 # ================================================ # All omitted code points have Extended_Pictographic=No # @missing: 0000..10FFFF ; Extended_Pictographic ; No 00A9 ; Extended_Pictographic# E0.6 [1] (©️) copyright 00AE ; Extended_Pictographic# E0.6 [1] (®️) registered 203C ; Extended_Pictographic# E0.6 [1] (‼️) double exclamation mark 2049 ; Extended_Pictographic# E0.6 [1] (⁉️) exclamation question mark 2122 ; Extended_Pictographic# E0.6 [1] (™️) trade mark 2139 ; Extended_Pictographic# E0.6 [1] (ℹ️) information 2194..2199 ; Extended_Pictographic# E0.6 [6] (↔️..↙️) left-right arrow..down-left arrow 21A9..21AA ; Extended_Pictographic# E0.6 [2] (↩️..↪️) right arrow curving left..left arrow curving right 231A..231B ; Extended_Pictographic# E0.6 [2] (⌚..⌛) watch..hourglass done 2328 ; Extended_Pictographic# E1.0 [1] (⌨️) keyboard 2388 ; Extended_Pictographic# E0.0 [1] (⎈) HELM SYMBOL 23CF ; Extended_Pictographic# E1.0 [1] (⏏️) eject button 23E9..23EC ; Extended_Pictographic# E0.6 [4] (⏩..⏬) fast-forward button..fast down button 23ED..23EE ; Extended_Pictographic# E0.7 [2] (⏭️..⏮️) next track button..last track button 23EF ; Extended_Pictographic# E1.0 [1] (⏯️) play or pause button 23F0 ; Extended_Pictographic# E0.6 [1] (⏰) alarm clock 23F1..23F2 ; Extended_Pictographic# E1.0 [2] (⏱️..⏲️) stopwatch..timer clock 23F3 ; Extended_Pictographic# E0.6 [1] (⏳) hourglass not done 23F8..23FA ; Extended_Pictographic# E0.7 [3] (⏸️..⏺️) pause button..record button 24C2 ; Extended_Pictographic# E0.6 [1] (Ⓜ️) circled M 25AA..25AB ; Extended_Pictographic# E0.6 [2] (▪️..▫️) black small square..white small square 25B6 ; Extended_Pictographic# E0.6 [1] (▶️) play button 25C0 ; Extended_Pictographic# E0.6 [1] (◀️) reverse button 25FB..25FE ; Extended_Pictographic# E0.6 [4] (◻️..◾) white medium square..black medium-small square 2600..2601 ; Extended_Pictographic# E0.6 [2] (☀️..☁️) sun..cloud 2602..2603 ; Extended_Pictographic# E0.7 [2] (☂️..☃️) umbrella..snowman 2604 ; Extended_Pictographic# E1.0 [1] (☄️) comet 2605 ; Extended_Pictographic# E0.0 [1] (★) BLACK STAR 2607..260D ; Extended_Pictographic# E0.0 [7] (☇..☍) LIGHTNING..OPPOSITION 260E ; Extended_Pictographic# E0.6 [1] (☎️) telephone 260F..2610 ; Extended_Pictographic# E0.0 [2] (☏..☐) WHITE TELEPHONE..BALLOT BOX 2611 ; Extended_Pictographic# E0.6 [1] (☑️) check box with check 2612 ; Extended_Pictographic# E0.0 [1] (☒) BALLOT BOX WITH X 2614..2615 ; Extended_Pictographic# E0.6 [2] (☔..☕) umbrella with rain drops..hot beverage 2616..2617 ; Extended_Pictographic# E0.0 [2] (☖..☗) WHITE SHOGI PIECE..BLACK SHOGI PIECE 2618 ; Extended_Pictographic# E1.0 [1] (☘️) shamrock 2619..261C ; Extended_Pictographic# E0.0 [4] (☙..☜) REVERSED ROTATED FLORAL HEART BULLET..WHITE LEFT POINTING INDEX 261D ; Extended_Pictographic# E0.6 [1] (☝️) index pointing up 261E..261F ; Extended_Pictographic# E0.0 [2] (☞..☟) WHITE RIGHT POINTING INDEX..WHITE DOWN POINTING INDEX 2620 ; Extended_Pictographic# E1.0 [1] (☠️) skull and crossbones 2621 ; Extended_Pictographic# E0.0 [1] (☡) CAUTION SIGN 2622..2623 ; Extended_Pictographic# E1.0 [2] (☢️..☣️) radioactive..biohazard 2624..2625 ; Extended_Pictographic# E0.0 [2] (☤..☥) CADUCEUS..ANKH 2626 ; Extended_Pictographic# E1.0 [1] (☦️) orthodox cross 2627..2629 ; Extended_Pictographic# E0.0 [3] (☧..☩) CHI RHO..CROSS OF JERUSALEM 262A ; Extended_Pictographic# E0.7 [1] (☪️) star and crescent 262B..262D ; Extended_Pictographic# E0.0 [3] (☫..☭) FARSI SYMBOL..HAMMER AND SICKLE 262E ; Extended_Pictographic# E1.0 [1] (☮️) peace symbol 262F ; Extended_Pictographic# E0.7 [1] (☯️) yin yang 2630..2637 ; Extended_Pictographic# E0.0 [8] (☰..☷) TRIGRAM FOR HEAVEN..TRIGRAM FOR EARTH 2638..2639 ; Extended_Pictographic# E0.7 [2] (☸️..☹️) wheel of dharma..frowning face 263A ; Extended_Pictographic# E0.6 [1] (☺️) smiling face 263B..263F ; Extended_Pictographic# E0.0 [5] (☻..☿) BLACK SMILING FACE..MERCURY 2640 ; Extended_Pictographic# E4.0 [1] (♀️) female sign 2641 ; Extended_Pictographic# E0.0 [1] (♁) EARTH 2642 ; Extended_Pictographic# E4.0 [1] (♂️) male sign 2643..2647 ; Extended_Pictographic# E0.0 [5] (♃..♇) JUPITER..PLUTO 2648..2653 ; Extended_Pictographic# E0.6 [12] (♈..♓) Aries..Pisces 2654..265E ; Extended_Pictographic# E0.0 [11] (♔..♞) WHITE CHESS KING..BLACK CHESS KNIGHT 265F ; Extended_Pictographic# E11.0 [1] (♟️) chess pawn 2660 ; Extended_Pictographic# E0.6 [1] (♠️) spade suit 2661..2662 ; Extended_Pictographic# E0.0 [2] (♡..♢) WHITE HEART SUIT..WHITE DIAMOND SUIT 2663 ; Extended_Pictographic# E0.6 [1] (♣️) club suit 2664 ; Extended_Pictographic# E0.0 [1] (♤) WHITE SPADE SUIT 2665..2666 ; Extended_Pictographic# E0.6 [2] (♥️..♦️) heart suit..diamond suit 2667 ; Extended_Pictographic# E0.0 [1] (♧) WHITE CLUB SUIT 2668 ; Extended_Pictographic# E0.6 [1] (♨️) hot springs 2669..267A ; Extended_Pictographic# E0.0 [18] (♩..♺) QUARTER NOTE..RECYCLING SYMBOL FOR GENERIC MATERIALS 267B ; Extended_Pictographic# E0.6 [1] (♻️) recycling symbol 267C..267D ; Extended_Pictographic# E0.0 [2] (♼..♽) RECYCLED PAPER SYMBOL..PARTIALLY-RECYCLED PAPER SYMBOL 267E ; Extended_Pictographic# E11.0 [1] (♾️) infinity 267F ; Extended_Pictographic# E0.6 [1] (♿) wheelchair symbol 2680..2685 ; Extended_Pictographic# E0.0 [6] (⚀..⚅) DIE FACE-1..DIE FACE-6 2690..2691 ; Extended_Pictographic# E0.0 [2] (⚐..⚑) WHITE FLAG..BLACK FLAG 2692 ; Extended_Pictographic# E1.0 [1] (⚒️) hammer and pick 2693 ; Extended_Pictographic# E0.6 [1] (⚓) anchor 2694 ; Extended_Pictographic# E1.0 [1] (⚔️) crossed swords 2695 ; Extended_Pictographic# E4.0 [1] (⚕️) medical symbol 2696..2697 ; Extended_Pictographic# E1.0 [2] (⚖️..⚗️) balance scale..alembic 2698 ; Extended_Pictographic# E0.0 [1] (⚘) FLOWER 2699 ; Extended_Pictographic# E1.0 [1] (⚙️) gear 269A ; Extended_Pictographic# E0.0 [1] (⚚) STAFF OF HERMES 269B..269C ; Extended_Pictographic# E1.0 [2] (⚛️..⚜️) atom symbol..fleur-de-lis 269D..269F ; Extended_Pictographic# E0.0 [3] (⚝..⚟) OUTLINED WHITE STAR..THREE LINES CONVERGING LEFT 26A0..26A1 ; Extended_Pictographic# E0.6 [2] (⚠️..⚡) warning..high voltage 26A2..26A6 ; Extended_Pictographic# E0.0 [5] (⚢..⚦) DOUBLED FEMALE SIGN..MALE WITH STROKE SIGN 26A7 ; Extended_Pictographic# E13.0 [1] (⚧️) transgender symbol 26A8..26A9 ; Extended_Pictographic# E0.0 [2] (⚨..⚩) VERTICAL MALE WITH STROKE SIGN..HORIZONTAL MALE WITH STROKE SIGN 26AA..26AB ; Extended_Pictographic# E0.6 [2] (⚪..⚫) white circle..black circle 26AC..26AF ; Extended_Pictographic# E0.0 [4] (⚬..⚯) MEDIUM SMALL WHITE CIRCLE..UNMARRIED PARTNERSHIP SYMBOL 26B0..26B1 ; Extended_Pictographic# E1.0 [2] (⚰️..⚱️) coffin..funeral urn 26B2..26BC ; Extended_Pictographic# E0.0 [11] (⚲..⚼) NEUTER..SESQUIQUADRATE 26BD..26BE ; Extended_Pictographic# E0.6 [2] (⚽..⚾) soccer ball..baseball 26BF..26C3 ; Extended_Pictographic# E0.0 [5] (⚿..⛃) SQUARED KEY..BLACK DRAUGHTS KING 26C4..26C5 ; Extended_Pictographic# E0.6 [2] (⛄..⛅) snowman without snow..sun behind cloud 26C6..26C7 ; Extended_Pictographic# E0.0 [2] (⛆..⛇) RAIN..BLACK SNOWMAN 26C8 ; Extended_Pictographic# E0.7 [1] (⛈️) cloud with lightning and rain 26C9..26CD ; Extended_Pictographic# E0.0 [5] (⛉..⛍) TURNED WHITE SHOGI PIECE..DISABLED CAR 26CE ; Extended_Pictographic# E0.6 [1] (⛎) Ophiuchus 26CF ; Extended_Pictographic# E0.7 [1] (⛏️) pick 26D0 ; Extended_Pictographic# E0.0 [1] (⛐) CAR SLIDING 26D1 ; Extended_Pictographic# E0.7 [1] (⛑️) rescue worker’s helmet 26D2 ; Extended_Pictographic# E0.0 [1] (⛒) CIRCLED CROSSING LANES 26D3 ; Extended_Pictographic# E0.7 [1] (⛓️) chains 26D4 ; Extended_Pictographic# E0.6 [1] (⛔) no entry 26D5..26E8 ; Extended_Pictographic# E0.0 [20] (⛕..⛨) ALTERNATE ONE-WAY LEFT WAY TRAFFIC..BLACK CROSS ON SHIELD 26E9 ; Extended_Pictographic# E0.7 [1] (⛩️) shinto shrine 26EA ; Extended_Pictographic# E0.6 [1] (⛪) church 26EB..26EF ; Extended_Pictographic# E0.0 [5] (⛫..⛯) CASTLE..MAP SYMBOL FOR LIGHTHOUSE 26F0..26F1 ; Extended_Pictographic# E0.7 [2] (⛰️..⛱️) mountain..umbrella on ground 26F2..26F3 ; Extended_Pictographic# E0.6 [2] (⛲..⛳) fountain..flag in hole 26F4 ; Extended_Pictographic# E0.7 [1] (⛴️) ferry 26F5 ; Extended_Pictographic# E0.6 [1] (⛵) sailboat 26F6 ; Extended_Pictographic# E0.0 [1] (⛶) SQUARE FOUR CORNERS 26F7..26F9 ; Extended_Pictographic# E0.7 [3] (⛷️..⛹️) skier..person bouncing ball 26FA ; Extended_Pictographic# E0.6 [1] (⛺) tent 26FB..26FC ; Extended_Pictographic# E0.0 [2] (⛻..⛼) JAPANESE BANK SYMBOL..HEADSTONE GRAVEYARD SYMBOL 26FD ; Extended_Pictographic# E0.6 [1] (⛽) fuel pump 26FE..2701 ; Extended_Pictographic# E0.0 [4] (⛾..✁) CUP ON BLACK SQUARE..UPPER BLADE SCISSORS 2702 ; Extended_Pictographic# E0.6 [1] (✂️) scissors 2703..2704 ; Extended_Pictographic# E0.0 [2] (✃..✄) LOWER BLADE SCISSORS..WHITE SCISSORS 2705 ; Extended_Pictographic# E0.6 [1] (✅) check mark button 2708..270C ; Extended_Pictographic# E0.6 [5] (✈️..✌️) airplane..victory hand 270D ; Extended_Pictographic# E0.7 [1] (✍️) writing hand 270E ; Extended_Pictographic# E0.0 [1] (✎) LOWER RIGHT PENCIL 270F ; Extended_Pictographic# E0.6 [1] (✏️) pencil 2710..2711 ; Extended_Pictographic# E0.0 [2] (✐..✑) UPPER RIGHT PENCIL..WHITE NIB 2712 ; Extended_Pictographic# E0.6 [1] (✒️) black nib 2714 ; Extended_Pictographic# E0.6 [1] (✔️) check mark 2716 ; Extended_Pictographic# E0.6 [1] (✖️) multiply 271D ; Extended_Pictographic# E0.7 [1] (✝️) latin cross 2721 ; Extended_Pictographic# E0.7 [1] (✡️) star of David 2728 ; Extended_Pictographic# E0.6 [1] (✨) sparkles 2733..2734 ; Extended_Pictographic# E0.6 [2] (✳️..✴️) eight-spoked asterisk..eight-pointed star 2744 ; Extended_Pictographic# E0.6 [1] (❄️) snowflake 2747 ; Extended_Pictographic# E0.6 [1] (❇️) sparkle 274C ; Extended_Pictographic# E0.6 [1] (❌) cross mark 274E ; Extended_Pictographic# E0.6 [1] (❎) cross mark button 2753..2755 ; Extended_Pictographic# E0.6 [3] (❓..❕) question mark..white exclamation mark 2757 ; Extended_Pictographic# E0.6 [1] (❗) exclamation mark 2763 ; Extended_Pictographic# E1.0 [1] (❣️) heart exclamation 2764 ; Extended_Pictographic# E0.6 [1] (❤️) red heart 2765..2767 ; Extended_Pictographic# E0.0 [3] (❥..❧) ROTATED HEAVY BLACK HEART BULLET..ROTATED FLORAL HEART BULLET 2795..2797 ; Extended_Pictographic# E0.6 [3] (➕..➗) plus..divide 27A1 ; Extended_Pictographic# E0.6 [1] (➡️) right arrow 27B0 ; Extended_Pictographic# E0.6 [1] (➰) curly loop 27BF ; Extended_Pictographic# E1.0 [1] (➿) double curly loop 2934..2935 ; Extended_Pictographic# E0.6 [2] (⤴️..⤵️) right arrow curving up..right arrow curving down 2B05..2B07 ; Extended_Pictographic# E0.6 [3] (⬅️..⬇️) left arrow..down arrow 2B1B..2B1C ; Extended_Pictographic# E0.6 [2] (⬛..⬜) black large square..white large square 2B50 ; Extended_Pictographic# E0.6 [1] (⭐) star 2B55 ; Extended_Pictographic# E0.6 [1] (⭕) hollow red circle 3030 ; Extended_Pictographic# E0.6 [1] (〰️) wavy dash 303D ; Extended_Pictographic# E0.6 [1] (〽️) part alternation mark 3297 ; Extended_Pictographic# E0.6 [1] (㊗️) Japanese “congratulations” button 3299 ; Extended_Pictographic# E0.6 [1] (㊙️) Japanese “secret” button 1F000..1F003 ; Extended_Pictographic# E0.0 [4] (🀀..🀃) MAHJONG TILE EAST WIND..MAHJONG TILE NORTH WIND 1F004 ; Extended_Pictographic# E0.6 [1] (🀄) mahjong red dragon 1F005..1F0CE ; Extended_Pictographic# E0.0 [202] (🀅..🃎) MAHJONG TILE GREEN DRAGON..PLAYING CARD KING OF DIAMONDS 1F0CF ; Extended_Pictographic# E0.6 [1] (🃏) joker 1F0D0..1F0FF ; Extended_Pictographic# E0.0 [48] (🃐..🃿) .. 1F10D..1F10F ; Extended_Pictographic# E0.0 [3] (🄍..🄏) CIRCLED ZERO WITH SLASH..CIRCLED DOLLAR SIGN WITH OVERLAID BACKSLASH 1F12F ; Extended_Pictographic# E0.0 [1] (🄯) COPYLEFT SYMBOL 1F16C..1F16F ; Extended_Pictographic# E0.0 [4] (🅬..🅯) RAISED MR SIGN..CIRCLED HUMAN FIGURE 1F170..1F171 ; Extended_Pictographic# E0.6 [2] (🅰️..🅱️) A button (blood type)..B button (blood type) 1F17E..1F17F ; Extended_Pictographic# E0.6 [2] (🅾️..🅿️) O button (blood type)..P button 1F18E ; Extended_Pictographic# E0.6 [1] (🆎) AB button (blood type) 1F191..1F19A ; Extended_Pictographic# E0.6 [10] (🆑..🆚) CL button..VS button 1F1AD..1F1E5 ; Extended_Pictographic# E0.0 [57] (🆭..🇥) MASK WORK SYMBOL.. 1F201..1F202 ; Extended_Pictographic# E0.6 [2] (🈁..🈂️) Japanese “here” button..Japanese “service charge” button 1F203..1F20F ; Extended_Pictographic# E0.0 [13] (🈃..🈏) .. 1F21A ; Extended_Pictographic# E0.6 [1] (🈚) Japanese “free of charge” button 1F22F ; Extended_Pictographic# E0.6 [1] (🈯) Japanese “reserved” button 1F232..1F23A ; Extended_Pictographic# E0.6 [9] (🈲..🈺) Japanese “prohibited” button..Japanese “open for business” button 1F23C..1F23F ; Extended_Pictographic# E0.0 [4] (🈼..🈿) .. 1F249..1F24F ; Extended_Pictographic# E0.0 [7] (🉉..🉏) .. 1F250..1F251 ; Extended_Pictographic# E0.6 [2] (🉐..🉑) Japanese “bargain” button..Japanese “acceptable” button 1F252..1F2FF ; Extended_Pictographic# E0.0 [174] (🉒..🋿) .. 1F300..1F30C ; Extended_Pictographic# E0.6 [13] (🌀..🌌) cyclone..milky way 1F30D..1F30E ; Extended_Pictographic# E0.7 [2] (🌍..🌎) globe showing Europe-Africa..globe showing Americas 1F30F ; Extended_Pictographic# E0.6 [1] (🌏) globe showing Asia-Australia 1F310 ; Extended_Pictographic# E1.0 [1] (🌐) globe with meridians 1F311 ; Extended_Pictographic# E0.6 [1] (🌑) new moon 1F312 ; Extended_Pictographic# E1.0 [1] (🌒) waxing crescent moon 1F313..1F315 ; Extended_Pictographic# E0.6 [3] (🌓..🌕) first quarter moon..full moon 1F316..1F318 ; Extended_Pictographic# E1.0 [3] (🌖..🌘) waning gibbous moon..waning crescent moon 1F319 ; Extended_Pictographic# E0.6 [1] (🌙) crescent moon 1F31A ; Extended_Pictographic# E1.0 [1] (🌚) new moon face 1F31B ; Extended_Pictographic# E0.6 [1] (🌛) first quarter moon face 1F31C ; Extended_Pictographic# E0.7 [1] (🌜) last quarter moon face 1F31D..1F31E ; Extended_Pictographic# E1.0 [2] (🌝..🌞) full moon face..sun with face 1F31F..1F320 ; Extended_Pictographic# E0.6 [2] (🌟..🌠) glowing star..shooting star 1F321 ; Extended_Pictographic# E0.7 [1] (🌡️) thermometer 1F322..1F323 ; Extended_Pictographic# E0.0 [2] (🌢..🌣) BLACK DROPLET..WHITE SUN 1F324..1F32C ; Extended_Pictographic# E0.7 [9] (🌤️..🌬️) sun behind small cloud..wind face 1F32D..1F32F ; Extended_Pictographic# E1.0 [3] (🌭..🌯) hot dog..burrito 1F330..1F331 ; Extended_Pictographic# E0.6 [2] (🌰..🌱) chestnut..seedling 1F332..1F333 ; Extended_Pictographic# E1.0 [2] (🌲..🌳) evergreen tree..deciduous tree 1F334..1F335 ; Extended_Pictographic# E0.6 [2] (🌴..🌵) palm tree..cactus 1F336 ; Extended_Pictographic# E0.7 [1] (🌶️) hot pepper 1F337..1F34A ; Extended_Pictographic# E0.6 [20] (🌷..🍊) tulip..tangerine 1F34B ; Extended_Pictographic# E1.0 [1] (🍋) lemon 1F34C..1F34F ; Extended_Pictographic# E0.6 [4] (🍌..🍏) banana..green apple 1F350 ; Extended_Pictographic# E1.0 [1] (🍐) pear 1F351..1F37B ; Extended_Pictographic# E0.6 [43] (🍑..🍻) peach..clinking beer mugs 1F37C ; Extended_Pictographic# E1.0 [1] (🍼) baby bottle 1F37D ; Extended_Pictographic# E0.7 [1] (🍽️) fork and knife with plate 1F37E..1F37F ; Extended_Pictographic# E1.0 [2] (🍾..🍿) bottle with popping cork..popcorn 1F380..1F393 ; Extended_Pictographic# E0.6 [20] (🎀..🎓) ribbon..graduation cap 1F394..1F395 ; Extended_Pictographic# E0.0 [2] (🎔..🎕) HEART WITH TIP ON THE LEFT..BOUQUET OF FLOWERS 1F396..1F397 ; Extended_Pictographic# E0.7 [2] (🎖️..🎗️) military medal..reminder ribbon 1F398 ; Extended_Pictographic# E0.0 [1] (🎘) MUSICAL KEYBOARD WITH JACKS 1F399..1F39B ; Extended_Pictographic# E0.7 [3] (🎙️..🎛️) studio microphone..control knobs 1F39C..1F39D ; Extended_Pictographic# E0.0 [2] (🎜..🎝) BEAMED ASCENDING MUSICAL NOTES..BEAMED DESCENDING MUSICAL NOTES 1F39E..1F39F ; Extended_Pictographic# E0.7 [2] (🎞️..🎟️) film frames..admission tickets 1F3A0..1F3C4 ; Extended_Pictographic# E0.6 [37] (🎠..🏄) carousel horse..person surfing 1F3C5 ; Extended_Pictographic# E1.0 [1] (🏅) sports medal 1F3C6 ; Extended_Pictographic# E0.6 [1] (🏆) trophy 1F3C7 ; Extended_Pictographic# E1.0 [1] (🏇) horse racing 1F3C8 ; Extended_Pictographic# E0.6 [1] (🏈) american football 1F3C9 ; Extended_Pictographic# E1.0 [1] (🏉) rugby football 1F3CA ; Extended_Pictographic# E0.6 [1] (🏊) person swimming 1F3CB..1F3CE ; Extended_Pictographic# E0.7 [4] (🏋️..🏎️) person lifting weights..racing car 1F3CF..1F3D3 ; Extended_Pictographic# E1.0 [5] (🏏..🏓) cricket game..ping pong 1F3D4..1F3DF ; Extended_Pictographic# E0.7 [12] (🏔️..🏟️) snow-capped mountain..stadium 1F3E0..1F3E3 ; Extended_Pictographic# E0.6 [4] (🏠..🏣) house..Japanese post office 1F3E4 ; Extended_Pictographic# E1.0 [1] (🏤) post office 1F3E5..1F3F0 ; Extended_Pictographic# E0.6 [12] (🏥..🏰) hospital..castle 1F3F1..1F3F2 ; Extended_Pictographic# E0.0 [2] (🏱..🏲) WHITE PENNANT..BLACK PENNANT 1F3F3 ; Extended_Pictographic# E0.7 [1] (🏳️) white flag 1F3F4 ; Extended_Pictographic# E1.0 [1] (🏴) black flag 1F3F5 ; Extended_Pictographic# E0.7 [1] (🏵️) rosette 1F3F6 ; Extended_Pictographic# E0.0 [1] (🏶) BLACK ROSETTE 1F3F7 ; Extended_Pictographic# E0.7 [1] (🏷️) label 1F3F8..1F3FA ; Extended_Pictographic# E1.0 [3] (🏸..🏺) badminton..amphora 1F400..1F407 ; Extended_Pictographic# E1.0 [8] (🐀..🐇) rat..rabbit 1F408 ; Extended_Pictographic# E0.7 [1] (🐈) cat 1F409..1F40B ; Extended_Pictographic# E1.0 [3] (🐉..🐋) dragon..whale 1F40C..1F40E ; Extended_Pictographic# E0.6 [3] (🐌..🐎) snail..horse 1F40F..1F410 ; Extended_Pictographic# E1.0 [2] (🐏..🐐) ram..goat 1F411..1F412 ; Extended_Pictographic# E0.6 [2] (🐑..🐒) ewe..monkey 1F413 ; Extended_Pictographic# E1.0 [1] (🐓) rooster 1F414 ; Extended_Pictographic# E0.6 [1] (🐔) chicken 1F415 ; Extended_Pictographic# E0.7 [1] (🐕) dog 1F416 ; Extended_Pictographic# E1.0 [1] (🐖) pig 1F417..1F429 ; Extended_Pictographic# E0.6 [19] (🐗..🐩) boar..poodle 1F42A ; Extended_Pictographic# E1.0 [1] (🐪) camel 1F42B..1F43E ; Extended_Pictographic# E0.6 [20] (🐫..🐾) two-hump camel..paw prints 1F43F ; Extended_Pictographic# E0.7 [1] (🐿️) chipmunk 1F440 ; Extended_Pictographic# E0.6 [1] (👀) eyes 1F441 ; Extended_Pictographic# E0.7 [1] (👁️) eye 1F442..1F464 ; Extended_Pictographic# E0.6 [35] (👂..👤) ear..bust in silhouette 1F465 ; Extended_Pictographic# E1.0 [1] (👥) busts in silhouette 1F466..1F46B ; Extended_Pictographic# E0.6 [6] (👦..👫) boy..woman and man holding hands 1F46C..1F46D ; Extended_Pictographic# E1.0 [2] (👬..👭) men holding hands..women holding hands 1F46E..1F4AC ; Extended_Pictographic# E0.6 [63] (👮..💬) police officer..speech balloon 1F4AD ; Extended_Pictographic# E1.0 [1] (💭) thought balloon 1F4AE..1F4B5 ; Extended_Pictographic# E0.6 [8] (💮..💵) white flower..dollar banknote 1F4B6..1F4B7 ; Extended_Pictographic# E1.0 [2] (💶..💷) euro banknote..pound banknote 1F4B8..1F4EB ; Extended_Pictographic# E0.6 [52] (💸..📫) money with wings..closed mailbox with raised flag 1F4EC..1F4ED ; Extended_Pictographic# E0.7 [2] (📬..📭) open mailbox with raised flag..open mailbox with lowered flag 1F4EE ; Extended_Pictographic# E0.6 [1] (📮) postbox 1F4EF ; Extended_Pictographic# E1.0 [1] (📯) postal horn 1F4F0..1F4F4 ; Extended_Pictographic# E0.6 [5] (📰..📴) newspaper..mobile phone off 1F4F5 ; Extended_Pictographic# E1.0 [1] (📵) no mobile phones 1F4F6..1F4F7 ; Extended_Pictographic# E0.6 [2] (📶..📷) antenna bars..camera 1F4F8 ; Extended_Pictographic# E1.0 [1] (📸) camera with flash 1F4F9..1F4FC ; Extended_Pictographic# E0.6 [4] (📹..📼) video camera..videocassette 1F4FD ; Extended_Pictographic# E0.7 [1] (📽️) film projector 1F4FE ; Extended_Pictographic# E0.0 [1] (📾) PORTABLE STEREO 1F4FF..1F502 ; Extended_Pictographic# E1.0 [4] (📿..🔂) prayer beads..repeat single button 1F503 ; Extended_Pictographic# E0.6 [1] (🔃) clockwise vertical arrows 1F504..1F507 ; Extended_Pictographic# E1.0 [4] (🔄..🔇) counterclockwise arrows button..muted speaker 1F508 ; Extended_Pictographic# E0.7 [1] (🔈) speaker low volume 1F509 ; Extended_Pictographic# E1.0 [1] (🔉) speaker medium volume 1F50A..1F514 ; Extended_Pictographic# E0.6 [11] (🔊..🔔) speaker high volume..bell 1F515 ; Extended_Pictographic# E1.0 [1] (🔕) bell with slash 1F516..1F52B ; Extended_Pictographic# E0.6 [22] (🔖..🔫) bookmark..pistol 1F52C..1F52D ; Extended_Pictographic# E1.0 [2] (🔬..🔭) microscope..telescope 1F52E..1F53D ; Extended_Pictographic# E0.6 [16] (🔮..🔽) crystal ball..downwards button 1F546..1F548 ; Extended_Pictographic# E0.0 [3] (🕆..🕈) WHITE LATIN CROSS..CELTIC CROSS 1F549..1F54A ; Extended_Pictographic# E0.7 [2] (🕉️..🕊️) om..dove 1F54B..1F54E ; Extended_Pictographic# E1.0 [4] (🕋..🕎) kaaba..menorah 1F54F ; Extended_Pictographic# E0.0 [1] (🕏) BOWL OF HYGIEIA 1F550..1F55B ; Extended_Pictographic# E0.6 [12] (🕐..🕛) one o’clock..twelve o’clock 1F55C..1F567 ; Extended_Pictographic# E0.7 [12] (🕜..🕧) one-thirty..twelve-thirty 1F568..1F56E ; Extended_Pictographic# E0.0 [7] (🕨..🕮) RIGHT SPEAKER..BOOK 1F56F..1F570 ; Extended_Pictographic# E0.7 [2] (🕯️..🕰️) candle..mantelpiece clock 1F571..1F572 ; Extended_Pictographic# E0.0 [2] (🕱..🕲) BLACK SKULL AND CROSSBONES..NO PIRACY 1F573..1F579 ; Extended_Pictographic# E0.7 [7] (🕳️..🕹️) hole..joystick 1F57A ; Extended_Pictographic# E3.0 [1] (🕺) man dancing 1F57B..1F586 ; Extended_Pictographic# E0.0 [12] (🕻..🖆) LEFT HAND TELEPHONE RECEIVER..PEN OVER STAMPED ENVELOPE 1F587 ; Extended_Pictographic# E0.7 [1] (🖇️) linked paperclips 1F588..1F589 ; Extended_Pictographic# E0.0 [2] (🖈..🖉) BLACK PUSHPIN..LOWER LEFT PENCIL 1F58A..1F58D ; Extended_Pictographic# E0.7 [4] (🖊️..🖍️) pen..crayon 1F58E..1F58F ; Extended_Pictographic# E0.0 [2] (🖎..🖏) LEFT WRITING HAND..TURNED OK HAND SIGN 1F590 ; Extended_Pictographic# E0.7 [1] (🖐️) hand with fingers splayed 1F591..1F594 ; Extended_Pictographic# E0.0 [4] (🖑..🖔) REVERSED RAISED HAND WITH FINGERS SPLAYED..REVERSED VICTORY HAND 1F595..1F596 ; Extended_Pictographic# E1.0 [2] (🖕..🖖) middle finger..vulcan salute 1F597..1F5A3 ; Extended_Pictographic# E0.0 [13] (🖗..🖣) WHITE DOWN POINTING LEFT HAND INDEX..BLACK DOWN POINTING BACKHAND INDEX 1F5A4 ; Extended_Pictographic# E3.0 [1] (🖤) black heart 1F5A5 ; Extended_Pictographic# E0.7 [1] (🖥️) desktop computer 1F5A6..1F5A7 ; Extended_Pictographic# E0.0 [2] (🖦..🖧) KEYBOARD AND MOUSE..THREE NETWORKED COMPUTERS 1F5A8 ; Extended_Pictographic# E0.7 [1] (🖨️) printer 1F5A9..1F5B0 ; Extended_Pictographic# E0.0 [8] (🖩..🖰) POCKET CALCULATOR..TWO BUTTON MOUSE 1F5B1..1F5B2 ; Extended_Pictographic# E0.7 [2] (🖱️..🖲️) computer mouse..trackball 1F5B3..1F5BB ; Extended_Pictographic# E0.0 [9] (🖳..🖻) OLD PERSONAL COMPUTER..DOCUMENT WITH PICTURE 1F5BC ; Extended_Pictographic# E0.7 [1] (🖼️) framed picture 1F5BD..1F5C1 ; Extended_Pictographic# E0.0 [5] (🖽..🗁) FRAME WITH TILES..OPEN FOLDER 1F5C2..1F5C4 ; Extended_Pictographic# E0.7 [3] (🗂️..🗄️) card index dividers..file cabinet 1F5C5..1F5D0 ; Extended_Pictographic# E0.0 [12] (🗅..🗐) EMPTY NOTE..PAGES 1F5D1..1F5D3 ; Extended_Pictographic# E0.7 [3] (🗑️..🗓️) wastebasket..spiral calendar 1F5D4..1F5DB ; Extended_Pictographic# E0.0 [8] (🗔..🗛) DESKTOP WINDOW..DECREASE FONT SIZE SYMBOL 1F5DC..1F5DE ; Extended_Pictographic# E0.7 [3] (🗜️..🗞️) clamp..rolled-up newspaper 1F5DF..1F5E0 ; Extended_Pictographic# E0.0 [2] (🗟..🗠) PAGE WITH CIRCLED TEXT..STOCK CHART 1F5E1 ; Extended_Pictographic# E0.7 [1] (🗡️) dagger 1F5E2 ; Extended_Pictographic# E0.0 [1] (🗢) LIPS 1F5E3 ; Extended_Pictographic# E0.7 [1] (🗣️) speaking head 1F5E4..1F5E7 ; Extended_Pictographic# E0.0 [4] (🗤..🗧) THREE RAYS ABOVE..THREE RAYS RIGHT 1F5E8 ; Extended_Pictographic# E2.0 [1] (🗨️) left speech bubble 1F5E9..1F5EE ; Extended_Pictographic# E0.0 [6] (🗩..🗮) RIGHT SPEECH BUBBLE..LEFT ANGER BUBBLE 1F5EF ; Extended_Pictographic# E0.7 [1] (🗯️) right anger bubble 1F5F0..1F5F2 ; Extended_Pictographic# E0.0 [3] (🗰..🗲) MOOD BUBBLE..LIGHTNING MOOD 1F5F3 ; Extended_Pictographic# E0.7 [1] (🗳️) ballot box with ballot 1F5F4..1F5F9 ; Extended_Pictographic# E0.0 [6] (🗴..🗹) BALLOT SCRIPT X..BALLOT BOX WITH BOLD CHECK 1F5FA ; Extended_Pictographic# E0.7 [1] (🗺️) world map 1F5FB..1F5FF ; Extended_Pictographic# E0.6 [5] (🗻..🗿) mount fuji..moai 1F600 ; Extended_Pictographic# E1.0 [1] (😀) grinning face 1F601..1F606 ; Extended_Pictographic# E0.6 [6] (😁..😆) beaming face with smiling eyes..grinning squinting face 1F607..1F608 ; Extended_Pictographic# E1.0 [2] (😇..😈) smiling face with halo..smiling face with horns 1F609..1F60D ; Extended_Pictographic# E0.6 [5] (😉..😍) winking face..smiling face with heart-eyes 1F60E ; Extended_Pictographic# E1.0 [1] (😎) smiling face with sunglasses 1F60F ; Extended_Pictographic# E0.6 [1] (😏) smirking face 1F610 ; Extended_Pictographic# E0.7 [1] (😐) neutral face 1F611 ; Extended_Pictographic# E1.0 [1] (😑) expressionless face 1F612..1F614 ; Extended_Pictographic# E0.6 [3] (😒..😔) unamused face..pensive face 1F615 ; Extended_Pictographic# E1.0 [1] (😕) confused face 1F616 ; Extended_Pictographic# E0.6 [1] (😖) confounded face 1F617 ; Extended_Pictographic# E1.0 [1] (😗) kissing face 1F618 ; Extended_Pictographic# E0.6 [1] (😘) face blowing a kiss 1F619 ; Extended_Pictographic# E1.0 [1] (😙) kissing face with smiling eyes 1F61A ; Extended_Pictographic# E0.6 [1] (😚) kissing face with closed eyes 1F61B ; Extended_Pictographic# E1.0 [1] (😛) face with tongue 1F61C..1F61E ; Extended_Pictographic# E0.6 [3] (😜..😞) winking face with tongue..disappointed face 1F61F ; Extended_Pictographic# E1.0 [1] (😟) worried face 1F620..1F625 ; Extended_Pictographic# E0.6 [6] (😠..😥) angry face..sad but relieved face 1F626..1F627 ; Extended_Pictographic# E1.0 [2] (😦..😧) frowning face with open mouth..anguished face 1F628..1F62B ; Extended_Pictographic# E0.6 [4] (😨..😫) fearful face..tired face 1F62C ; Extended_Pictographic# E1.0 [1] (😬) grimacing face 1F62D ; Extended_Pictographic# E0.6 [1] (😭) loudly crying face 1F62E..1F62F ; Extended_Pictographic# E1.0 [2] (😮..😯) face with open mouth..hushed face 1F630..1F633 ; Extended_Pictographic# E0.6 [4] (😰..😳) anxious face with sweat..flushed face 1F634 ; Extended_Pictographic# E1.0 [1] (😴) sleeping face 1F635 ; Extended_Pictographic# E0.6 [1] (😵) dizzy face 1F636 ; Extended_Pictographic# E1.0 [1] (😶) face without mouth 1F637..1F640 ; Extended_Pictographic# E0.6 [10] (😷..🙀) face with medical mask..weary cat 1F641..1F644 ; Extended_Pictographic# E1.0 [4] (🙁..🙄) slightly frowning face..face with rolling eyes 1F645..1F64F ; Extended_Pictographic# E0.6 [11] (🙅..🙏) person gesturing NO..folded hands 1F680 ; Extended_Pictographic# E0.6 [1] (🚀) rocket 1F681..1F682 ; Extended_Pictographic# E1.0 [2] (🚁..🚂) helicopter..locomotive 1F683..1F685 ; Extended_Pictographic# E0.6 [3] (🚃..🚅) railway car..bullet train 1F686 ; Extended_Pictographic# E1.0 [1] (🚆) train 1F687 ; Extended_Pictographic# E0.6 [1] (🚇) metro 1F688 ; Extended_Pictographic# E1.0 [1] (🚈) light rail 1F689 ; Extended_Pictographic# E0.6 [1] (🚉) station 1F68A..1F68B ; Extended_Pictographic# E1.0 [2] (🚊..🚋) tram..tram car 1F68C ; Extended_Pictographic# E0.6 [1] (🚌) bus 1F68D ; Extended_Pictographic# E0.7 [1] (🚍) oncoming bus 1F68E ; Extended_Pictographic# E1.0 [1] (🚎) trolleybus 1F68F ; Extended_Pictographic# E0.6 [1] (🚏) bus stop 1F690 ; Extended_Pictographic# E1.0 [1] (🚐) minibus 1F691..1F693 ; Extended_Pictographic# E0.6 [3] (🚑..🚓) ambulance..police car 1F694 ; Extended_Pictographic# E0.7 [1] (🚔) oncoming police car 1F695 ; Extended_Pictographic# E0.6 [1] (🚕) taxi 1F696 ; Extended_Pictographic# E1.0 [1] (🚖) oncoming taxi 1F697 ; Extended_Pictographic# E0.6 [1] (🚗) automobile 1F698 ; Extended_Pictographic# E0.7 [1] (🚘) oncoming automobile 1F699..1F69A ; Extended_Pictographic# E0.6 [2] (🚙..🚚) sport utility vehicle..delivery truck 1F69B..1F6A1 ; Extended_Pictographic# E1.0 [7] (🚛..🚡) articulated lorry..aerial tramway 1F6A2 ; Extended_Pictographic# E0.6 [1] (🚢) ship 1F6A3 ; Extended_Pictographic# E1.0 [1] (🚣) person rowing boat 1F6A4..1F6A5 ; Extended_Pictographic# E0.6 [2] (🚤..🚥) speedboat..horizontal traffic light 1F6A6 ; Extended_Pictographic# E1.0 [1] (🚦) vertical traffic light 1F6A7..1F6AD ; Extended_Pictographic# E0.6 [7] (🚧..🚭) construction..no smoking 1F6AE..1F6B1 ; Extended_Pictographic# E1.0 [4] (🚮..🚱) litter in bin sign..non-potable water 1F6B2 ; Extended_Pictographic# E0.6 [1] (🚲) bicycle 1F6B3..1F6B5 ; Extended_Pictographic# E1.0 [3] (🚳..🚵) no bicycles..person mountain biking 1F6B6 ; Extended_Pictographic# E0.6 [1] (🚶) person walking 1F6B7..1F6B8 ; Extended_Pictographic# E1.0 [2] (🚷..🚸) no pedestrians..children crossing 1F6B9..1F6BE ; Extended_Pictographic# E0.6 [6] (🚹..🚾) men’s room..water closet 1F6BF ; Extended_Pictographic# E1.0 [1] (🚿) shower 1F6C0 ; Extended_Pictographic# E0.6 [1] (🛀) person taking bath 1F6C1..1F6C5 ; Extended_Pictographic# E1.0 [5] (🛁..🛅) bathtub..left luggage 1F6C6..1F6CA ; Extended_Pictographic# E0.0 [5] (🛆..🛊) TRIANGLE WITH ROUNDED CORNERS..GIRLS SYMBOL 1F6CB ; Extended_Pictographic# E0.7 [1] (🛋️) couch and lamp 1F6CC ; Extended_Pictographic# E1.0 [1] (🛌) person in bed 1F6CD..1F6CF ; Extended_Pictographic# E0.7 [3] (🛍️..🛏️) shopping bags..bed 1F6D0 ; Extended_Pictographic# E1.0 [1] (🛐) place of worship 1F6D1..1F6D2 ; Extended_Pictographic# E3.0 [2] (🛑..🛒) stop sign..shopping cart 1F6D3..1F6D4 ; Extended_Pictographic# E0.0 [2] (🛓..🛔) STUPA..PAGODA 1F6D5 ; Extended_Pictographic# E12.0 [1] (🛕) hindu temple 1F6D6..1F6D7 ; Extended_Pictographic# E13.0 [2] (🛖..🛗) hut..elevator 1F6D8..1F6DF ; Extended_Pictographic# E0.0 [8] (🛘..🛟) .. 1F6E0..1F6E5 ; Extended_Pictographic# E0.7 [6] (🛠️..🛥️) hammer and wrench..motor boat 1F6E6..1F6E8 ; Extended_Pictographic# E0.0 [3] (🛦..🛨) UP-POINTING MILITARY AIRPLANE..UP-POINTING SMALL AIRPLANE 1F6E9 ; Extended_Pictographic# E0.7 [1] (🛩️) small airplane 1F6EA ; Extended_Pictographic# E0.0 [1] (🛪) NORTHEAST-POINTING AIRPLANE 1F6EB..1F6EC ; Extended_Pictographic# E1.0 [2] (🛫..🛬) airplane departure..airplane arrival 1F6ED..1F6EF ; Extended_Pictographic# E0.0 [3] (🛭..🛯) .. 1F6F0 ; Extended_Pictographic# E0.7 [1] (🛰️) satellite 1F6F1..1F6F2 ; Extended_Pictographic# E0.0 [2] (🛱..🛲) ONCOMING FIRE ENGINE..DIESEL LOCOMOTIVE 1F6F3 ; Extended_Pictographic# E0.7 [1] (🛳️) passenger ship 1F6F4..1F6F6 ; Extended_Pictographic# E3.0 [3] (🛴..🛶) kick scooter..canoe 1F6F7..1F6F8 ; Extended_Pictographic# E5.0 [2] (🛷..🛸) sled..flying saucer 1F6F9 ; Extended_Pictographic# E11.0 [1] (🛹) skateboard 1F6FA ; Extended_Pictographic# E12.0 [1] (🛺) auto rickshaw 1F6FB..1F6FC ; Extended_Pictographic# E13.0 [2] (🛻..🛼) pickup truck..roller skate 1F6FD..1F6FF ; Extended_Pictographic# E0.0 [3] (🛽..🛿) .. 1F774..1F77F ; Extended_Pictographic# E0.0 [12] (🝴..🝿) .. 1F7D5..1F7DF ; Extended_Pictographic# E0.0 [11] (🟕..🟟) CIRCLED TRIANGLE.. 1F7E0..1F7EB ; Extended_Pictographic# E12.0 [12] (🟠..🟫) orange circle..brown square 1F7EC..1F7FF ; Extended_Pictographic# E0.0 [20] (🟬..🟿) .. 1F80C..1F80F ; Extended_Pictographic# E0.0 [4] (🠌..🠏) .. 1F848..1F84F ; Extended_Pictographic# E0.0 [8] (🡈..🡏) .. 1F85A..1F85F ; Extended_Pictographic# E0.0 [6] (🡚..🡟) .. 1F888..1F88F ; Extended_Pictographic# E0.0 [8] (🢈..🢏) .. 1F8AE..1F8FF ; Extended_Pictographic# E0.0 [82] (🢮..🣿) .. 1F90C ; Extended_Pictographic# E13.0 [1] (🤌) pinched fingers 1F90D..1F90F ; Extended_Pictographic# E12.0 [3] (🤍..🤏) white heart..pinching hand 1F910..1F918 ; Extended_Pictographic# E1.0 [9] (🤐..🤘) zipper-mouth face..sign of the horns 1F919..1F91E ; Extended_Pictographic# E3.0 [6] (🤙..🤞) call me hand..crossed fingers 1F91F ; Extended_Pictographic# E5.0 [1] (🤟) love-you gesture 1F920..1F927 ; Extended_Pictographic# E3.0 [8] (🤠..🤧) cowboy hat face..sneezing face 1F928..1F92F ; Extended_Pictographic# E5.0 [8] (🤨..🤯) face with raised eyebrow..exploding head 1F930 ; Extended_Pictographic# E3.0 [1] (🤰) pregnant woman 1F931..1F932 ; Extended_Pictographic# E5.0 [2] (🤱..🤲) breast-feeding..palms up together 1F933..1F93A ; Extended_Pictographic# E3.0 [8] (🤳..🤺) selfie..person fencing 1F93C..1F93E ; Extended_Pictographic# E3.0 [3] (🤼..🤾) people wrestling..person playing handball 1F93F ; Extended_Pictographic# E12.0 [1] (🤿) diving mask 1F940..1F945 ; Extended_Pictographic# E3.0 [6] (🥀..🥅) wilted flower..goal net 1F947..1F94B ; Extended_Pictographic# E3.0 [5] (🥇..🥋) 1st place medal..martial arts uniform 1F94C ; Extended_Pictographic# E5.0 [1] (🥌) curling stone 1F94D..1F94F ; Extended_Pictographic# E11.0 [3] (🥍..🥏) lacrosse..flying disc 1F950..1F95E ; Extended_Pictographic# E3.0 [15] (🥐..🥞) croissant..pancakes 1F95F..1F96B ; Extended_Pictographic# E5.0 [13] (🥟..🥫) dumpling..canned food 1F96C..1F970 ; Extended_Pictographic# E11.0 [5] (🥬..🥰) leafy green..smiling face with hearts 1F971 ; Extended_Pictographic# E12.0 [1] (🥱) yawning face 1F972 ; Extended_Pictographic# E13.0 [1] (🥲) smiling face with tear 1F973..1F976 ; Extended_Pictographic# E11.0 [4] (🥳..🥶) partying face..cold face 1F977..1F978 ; Extended_Pictographic# E13.0 [2] (🥷..🥸) ninja..disguised face 1F979 ; Extended_Pictographic# E0.0 [1] (🥹) 1F97A ; Extended_Pictographic# E11.0 [1] (🥺) pleading face 1F97B ; Extended_Pictographic# E12.0 [1] (🥻) sari 1F97C..1F97F ; Extended_Pictographic# E11.0 [4] (🥼..🥿) lab coat..flat shoe 1F980..1F984 ; Extended_Pictographic# E1.0 [5] (🦀..🦄) crab..unicorn 1F985..1F991 ; Extended_Pictographic# E3.0 [13] (🦅..🦑) eagle..squid 1F992..1F997 ; Extended_Pictographic# E5.0 [6] (🦒..🦗) giraffe..cricket 1F998..1F9A2 ; Extended_Pictographic# E11.0 [11] (🦘..🦢) kangaroo..swan 1F9A3..1F9A4 ; Extended_Pictographic# E13.0 [2] (🦣..🦤) mammoth..dodo 1F9A5..1F9AA ; Extended_Pictographic# E12.0 [6] (🦥..🦪) sloth..oyster 1F9AB..1F9AD ; Extended_Pictographic# E13.0 [3] (🦫..🦭) beaver..seal 1F9AE..1F9AF ; Extended_Pictographic# E12.0 [2] (🦮..🦯) guide dog..white cane 1F9B0..1F9B9 ; Extended_Pictographic# E11.0 [10] (🦰..🦹) red hair..supervillain 1F9BA..1F9BF ; Extended_Pictographic# E12.0 [6] (🦺..🦿) safety vest..mechanical leg 1F9C0 ; Extended_Pictographic# E1.0 [1] (🧀) cheese wedge 1F9C1..1F9C2 ; Extended_Pictographic# E11.0 [2] (🧁..🧂) cupcake..salt 1F9C3..1F9CA ; Extended_Pictographic# E12.0 [8] (🧃..🧊) beverage box..ice 1F9CB ; Extended_Pictographic# E13.0 [1] (🧋) bubble tea 1F9CC ; Extended_Pictographic# E0.0 [1] (🧌) 1F9CD..1F9CF ; Extended_Pictographic# E12.0 [3] (🧍..🧏) person standing..deaf person 1F9D0..1F9E6 ; Extended_Pictographic# E5.0 [23] (🧐..🧦) face with monocle..socks 1F9E7..1F9FF ; Extended_Pictographic# E11.0 [25] (🧧..🧿) red envelope..nazar amulet 1FA00..1FA6F ; Extended_Pictographic# E0.0 [112] (🨀..🩯) NEUTRAL CHESS KING.. 1FA70..1FA73 ; Extended_Pictographic# E12.0 [4] (🩰..🩳) ballet shoes..shorts 1FA74 ; Extended_Pictographic# E13.0 [1] (🩴) thong sandal 1FA75..1FA77 ; Extended_Pictographic# E0.0 [3] (🩵..🩷) .. 1FA78..1FA7A ; Extended_Pictographic# E12.0 [3] (🩸..🩺) drop of blood..stethoscope 1FA7B..1FA7F ; Extended_Pictographic# E0.0 [5] (🩻..🩿) .. 1FA80..1FA82 ; Extended_Pictographic# E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Extended_Pictographic# E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA87..1FA8F ; Extended_Pictographic# E0.0 [9] (🪇..🪏) .. 1FA90..1FA95 ; Extended_Pictographic# E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Extended_Pictographic# E13.0 [19] (🪖..🪨) military helmet..rock 1FAA9..1FAAF ; Extended_Pictographic# E0.0 [7] (🪩..🪯) .. 1FAB0..1FAB6 ; Extended_Pictographic# E13.0 [7] (🪰..🪶) fly..feather 1FAB7..1FABF ; Extended_Pictographic# E0.0 [9] (🪷..🪿) .. 1FAC0..1FAC2 ; Extended_Pictographic# E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAC3..1FACF ; Extended_Pictographic# E0.0 [13] (🫃..🫏) .. 1FAD0..1FAD6 ; Extended_Pictographic# E13.0 [7] (🫐..🫖) blueberries..teapot 1FAD7..1FAFF ; Extended_Pictographic# E0.0 [41] (🫗..🫿) .. 1FC00..1FFFD ; Extended_Pictographic# E0.0[1022] (🰀..🿽) .. # Total elements: 3537 #EOF tanuki_emoji-0.9.0/vendor/unicode/emoji-sequences.txt0000644000004100000410000053745314545323276023042 0ustar www-datawww-data# emoji-sequences.txt # Date: 2020-08-31, 01:06:24 GMT # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # Emoji Sequence Data for UTS #51 # Version: 13.1 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # # Format: # code_point(s) ; type_field ; description # comments # Fields: # code_point(s): one or more code points in hex format, separated by spaces # type_field, one of the following: # Basic_Emoji # Emoji_Keycap_Sequence # RGI_Emoji_Flag_Sequence # RGI_Emoji_Tag_Sequence # RGI_Emoji_Modifier_Sequence # The type_field is a convenience for parsing the emoji sequence files, and is not intended to be maintained as a property. # short name: CLDR short name of sequence; characters may be escaped with \x{hex}. # # For the purpose of regular expressions, each of the type fields defines the name of # a binary property of strings. The short name of each property is the same as the long name. # # For the purpose of regular expressions, the property RGI_Emoji is defined as # a binary property of strings corresponding to ED-27 in UTS #51 Unicode Emoji. # That is, it is the union of the above properties plus RGI_Emoji_ZWJ_Sequence, # whose data is in emoji-zwj-sequences.txt. # The short name of RGI_Emoji is the same as the long name. # # Characters and sequences are listed in code point order. Users should be shown a more natural order. # See the CLDR collation order for Emoji. # ================================================ # Basic_Emoji 231A..231B ; Basic_Emoji ; watch # E0.6 [2] (⌚..⌛) 23E9..23EC ; Basic_Emoji ; fast-forward button # E0.6 [4] (⏩..⏬) 23F0 ; Basic_Emoji ; alarm clock # E0.6 [1] (⏰) 23F3 ; Basic_Emoji ; hourglass not done # E0.6 [1] (⏳) 25FD..25FE ; Basic_Emoji ; white medium-small square # E0.6 [2] (◽..◾) 2614..2615 ; Basic_Emoji ; umbrella with rain drops # E0.6 [2] (☔..☕) 2648..2653 ; Basic_Emoji ; Aries # E0.6 [12] (♈..♓) 267F ; Basic_Emoji ; wheelchair symbol # E0.6 [1] (♿) 2693 ; Basic_Emoji ; anchor # E0.6 [1] (⚓) 26A1 ; Basic_Emoji ; high voltage # E0.6 [1] (⚡) 26AA..26AB ; Basic_Emoji ; white circle # E0.6 [2] (⚪..⚫) 26BD..26BE ; Basic_Emoji ; soccer ball # E0.6 [2] (⚽..⚾) 26C4..26C5 ; Basic_Emoji ; snowman without snow # E0.6 [2] (⛄..⛅) 26CE ; Basic_Emoji ; Ophiuchus # E0.6 [1] (⛎) 26D4 ; Basic_Emoji ; no entry # E0.6 [1] (⛔) 26EA ; Basic_Emoji ; church # E0.6 [1] (⛪) 26F2..26F3 ; Basic_Emoji ; fountain # E0.6 [2] (⛲..⛳) 26F5 ; Basic_Emoji ; sailboat # E0.6 [1] (⛵) 26FA ; Basic_Emoji ; tent # E0.6 [1] (⛺) 26FD ; Basic_Emoji ; fuel pump # E0.6 [1] (⛽) 2705 ; Basic_Emoji ; check mark button # E0.6 [1] (✅) 270A..270B ; Basic_Emoji ; raised fist # E0.6 [2] (✊..✋) 2728 ; Basic_Emoji ; sparkles # E0.6 [1] (✨) 274C ; Basic_Emoji ; cross mark # E0.6 [1] (❌) 274E ; Basic_Emoji ; cross mark button # E0.6 [1] (❎) 2753..2755 ; Basic_Emoji ; red question mark # E0.6 [3] (❓..❕) 2757 ; Basic_Emoji ; red exclamation mark # E0.6 [1] (❗) 2795..2797 ; Basic_Emoji ; plus # E0.6 [3] (➕..➗) 27B0 ; Basic_Emoji ; curly loop # E0.6 [1] (➰) 27BF ; Basic_Emoji ; double curly loop # E1.0 [1] (➿) 2B1B..2B1C ; Basic_Emoji ; black large square # E0.6 [2] (⬛..⬜) 2B50 ; Basic_Emoji ; star # E0.6 [1] (⭐) 2B55 ; Basic_Emoji ; hollow red circle # E0.6 [1] (⭕) 1F004 ; Basic_Emoji ; mahjong red dragon # E0.6 [1] (🀄) 1F0CF ; Basic_Emoji ; joker # E0.6 [1] (🃏) 1F18E ; Basic_Emoji ; AB button (blood type) # E0.6 [1] (🆎) 1F191..1F19A ; Basic_Emoji ; CL button # E0.6 [10] (🆑..🆚) 1F201 ; Basic_Emoji ; Japanese “here” button # E0.6 [1] (🈁) 1F21A ; Basic_Emoji ; Japanese “free of charge” button # E0.6 [1] (🈚) 1F22F ; Basic_Emoji ; Japanese “reserved” button # E0.6 [1] (🈯) 1F232..1F236 ; Basic_Emoji ; Japanese “prohibited” button # E0.6 [5] (🈲..🈶) 1F238..1F23A ; Basic_Emoji ; Japanese “application” button # E0.6 [3] (🈸..🈺) 1F250..1F251 ; Basic_Emoji ; Japanese “bargain” button # E0.6 [2] (🉐..🉑) 1F300..1F30C ; Basic_Emoji ; cyclone # E0.6 [13] (🌀..🌌) 1F30D..1F30E ; Basic_Emoji ; globe showing Europe-Africa # E0.7 [2] (🌍..🌎) 1F30F ; Basic_Emoji ; globe showing Asia-Australia # E0.6 [1] (🌏) 1F310 ; Basic_Emoji ; globe with meridians # E1.0 [1] (🌐) 1F311 ; Basic_Emoji ; new moon # E0.6 [1] (🌑) 1F312 ; Basic_Emoji ; waxing crescent moon # E1.0 [1] (🌒) 1F313..1F315 ; Basic_Emoji ; first quarter moon # E0.6 [3] (🌓..🌕) 1F316..1F318 ; Basic_Emoji ; waning gibbous moon # E1.0 [3] (🌖..🌘) 1F319 ; Basic_Emoji ; crescent moon # E0.6 [1] (🌙) 1F31A ; Basic_Emoji ; new moon face # E1.0 [1] (🌚) 1F31B ; Basic_Emoji ; first quarter moon face # E0.6 [1] (🌛) 1F31C ; Basic_Emoji ; last quarter moon face # E0.7 [1] (🌜) 1F31D..1F31E ; Basic_Emoji ; full moon face # E1.0 [2] (🌝..🌞) 1F31F..1F320 ; Basic_Emoji ; glowing star # E0.6 [2] (🌟..🌠) 1F32D..1F32F ; Basic_Emoji ; hot dog # E1.0 [3] (🌭..🌯) 1F330..1F331 ; Basic_Emoji ; chestnut # E0.6 [2] (🌰..🌱) 1F332..1F333 ; Basic_Emoji ; evergreen tree # E1.0 [2] (🌲..🌳) 1F334..1F335 ; Basic_Emoji ; palm tree # E0.6 [2] (🌴..🌵) 1F337..1F34A ; Basic_Emoji ; tulip # E0.6 [20] (🌷..🍊) 1F34B ; Basic_Emoji ; lemon # E1.0 [1] (🍋) 1F34C..1F34F ; Basic_Emoji ; banana # E0.6 [4] (🍌..🍏) 1F350 ; Basic_Emoji ; pear # E1.0 [1] (🍐) 1F351..1F37B ; Basic_Emoji ; peach # E0.6 [43] (🍑..🍻) 1F37C ; Basic_Emoji ; baby bottle # E1.0 [1] (🍼) 1F37E..1F37F ; Basic_Emoji ; bottle with popping cork # E1.0 [2] (🍾..🍿) 1F380..1F393 ; Basic_Emoji ; ribbon # E0.6 [20] (🎀..🎓) 1F3A0..1F3C4 ; Basic_Emoji ; carousel horse # E0.6 [37] (🎠..🏄) 1F3C5 ; Basic_Emoji ; sports medal # E1.0 [1] (🏅) 1F3C6 ; Basic_Emoji ; trophy # E0.6 [1] (🏆) 1F3C7 ; Basic_Emoji ; horse racing # E1.0 [1] (🏇) 1F3C8 ; Basic_Emoji ; american football # E0.6 [1] (🏈) 1F3C9 ; Basic_Emoji ; rugby football # E1.0 [1] (🏉) 1F3CA ; Basic_Emoji ; person swimming # E0.6 [1] (🏊) 1F3CF..1F3D3 ; Basic_Emoji ; cricket game # E1.0 [5] (🏏..🏓) 1F3E0..1F3E3 ; Basic_Emoji ; house # E0.6 [4] (🏠..🏣) 1F3E4 ; Basic_Emoji ; post office # E1.0 [1] (🏤) 1F3E5..1F3F0 ; Basic_Emoji ; hospital # E0.6 [12] (🏥..🏰) 1F3F4 ; Basic_Emoji ; black flag # E1.0 [1] (🏴) 1F3F8..1F407 ; Basic_Emoji ; badminton # E1.0 [16] (🏸..🐇) 1F408 ; Basic_Emoji ; cat # E0.7 [1] (🐈) 1F409..1F40B ; Basic_Emoji ; dragon # E1.0 [3] (🐉..🐋) 1F40C..1F40E ; Basic_Emoji ; snail # E0.6 [3] (🐌..🐎) 1F40F..1F410 ; Basic_Emoji ; ram # E1.0 [2] (🐏..🐐) 1F411..1F412 ; Basic_Emoji ; ewe # E0.6 [2] (🐑..🐒) 1F413 ; Basic_Emoji ; rooster # E1.0 [1] (🐓) 1F414 ; Basic_Emoji ; chicken # E0.6 [1] (🐔) 1F415 ; Basic_Emoji ; dog # E0.7 [1] (🐕) 1F416 ; Basic_Emoji ; pig # E1.0 [1] (🐖) 1F417..1F429 ; Basic_Emoji ; boar # E0.6 [19] (🐗..🐩) 1F42A ; Basic_Emoji ; camel # E1.0 [1] (🐪) 1F42B..1F43E ; Basic_Emoji ; two-hump camel # E0.6 [20] (🐫..🐾) 1F440 ; Basic_Emoji ; eyes # E0.6 [1] (👀) 1F442..1F464 ; Basic_Emoji ; ear # E0.6 [35] (👂..👤) 1F465 ; Basic_Emoji ; busts in silhouette # E1.0 [1] (👥) 1F466..1F46B ; Basic_Emoji ; boy # E0.6 [6] (👦..👫) 1F46C..1F46D ; Basic_Emoji ; men holding hands # E1.0 [2] (👬..👭) 1F46E..1F4AC ; Basic_Emoji ; police officer # E0.6 [63] (👮..💬) 1F4AD ; Basic_Emoji ; thought balloon # E1.0 [1] (💭) 1F4AE..1F4B5 ; Basic_Emoji ; white flower # E0.6 [8] (💮..💵) 1F4B6..1F4B7 ; Basic_Emoji ; euro banknote # E1.0 [2] (💶..💷) 1F4B8..1F4EB ; Basic_Emoji ; money with wings # E0.6 [52] (💸..📫) 1F4EC..1F4ED ; Basic_Emoji ; open mailbox with raised flag # E0.7 [2] (📬..📭) 1F4EE ; Basic_Emoji ; postbox # E0.6 [1] (📮) 1F4EF ; Basic_Emoji ; postal horn # E1.0 [1] (📯) 1F4F0..1F4F4 ; Basic_Emoji ; newspaper # E0.6 [5] (📰..📴) 1F4F5 ; Basic_Emoji ; no mobile phones # E1.0 [1] (📵) 1F4F6..1F4F7 ; Basic_Emoji ; antenna bars # E0.6 [2] (📶..📷) 1F4F8 ; Basic_Emoji ; camera with flash # E1.0 [1] (📸) 1F4F9..1F4FC ; Basic_Emoji ; video camera # E0.6 [4] (📹..📼) 1F4FF..1F502 ; Basic_Emoji ; prayer beads # E1.0 [4] (📿..🔂) 1F503 ; Basic_Emoji ; clockwise vertical arrows # E0.6 [1] (🔃) 1F504..1F507 ; Basic_Emoji ; counterclockwise arrows button # E1.0 [4] (🔄..🔇) 1F508 ; Basic_Emoji ; speaker low volume # E0.7 [1] (🔈) 1F509 ; Basic_Emoji ; speaker medium volume # E1.0 [1] (🔉) 1F50A..1F514 ; Basic_Emoji ; speaker high volume # E0.6 [11] (🔊..🔔) 1F515 ; Basic_Emoji ; bell with slash # E1.0 [1] (🔕) 1F516..1F52B ; Basic_Emoji ; bookmark # E0.6 [22] (🔖..🔫) 1F52C..1F52D ; Basic_Emoji ; microscope # E1.0 [2] (🔬..🔭) 1F52E..1F53D ; Basic_Emoji ; crystal ball # E0.6 [16] (🔮..🔽) 1F54B..1F54E ; Basic_Emoji ; kaaba # E1.0 [4] (🕋..🕎) 1F550..1F55B ; Basic_Emoji ; one o’clock # E0.6 [12] (🕐..🕛) 1F55C..1F567 ; Basic_Emoji ; one-thirty # E0.7 [12] (🕜..🕧) 1F57A ; Basic_Emoji ; man dancing # E3.0 [1] (🕺) 1F595..1F596 ; Basic_Emoji ; middle finger # E1.0 [2] (🖕..🖖) 1F5A4 ; Basic_Emoji ; black heart # E3.0 [1] (🖤) 1F5FB..1F5FF ; Basic_Emoji ; mount fuji # E0.6 [5] (🗻..🗿) 1F600 ; Basic_Emoji ; grinning face # E1.0 [1] (😀) 1F601..1F606 ; Basic_Emoji ; beaming face with smiling eyes # E0.6 [6] (😁..😆) 1F607..1F608 ; Basic_Emoji ; smiling face with halo # E1.0 [2] (😇..😈) 1F609..1F60D ; Basic_Emoji ; winking face # E0.6 [5] (😉..😍) 1F60E ; Basic_Emoji ; smiling face with sunglasses # E1.0 [1] (😎) 1F60F ; Basic_Emoji ; smirking face # E0.6 [1] (😏) 1F610 ; Basic_Emoji ; neutral face # E0.7 [1] (😐) 1F611 ; Basic_Emoji ; expressionless face # E1.0 [1] (😑) 1F612..1F614 ; Basic_Emoji ; unamused face # E0.6 [3] (😒..😔) 1F615 ; Basic_Emoji ; confused face # E1.0 [1] (😕) 1F616 ; Basic_Emoji ; confounded face # E0.6 [1] (😖) 1F617 ; Basic_Emoji ; kissing face # E1.0 [1] (😗) 1F618 ; Basic_Emoji ; face blowing a kiss # E0.6 [1] (😘) 1F619 ; Basic_Emoji ; kissing face with smiling eyes # E1.0 [1] (😙) 1F61A ; Basic_Emoji ; kissing face with closed eyes # E0.6 [1] (😚) 1F61B ; Basic_Emoji ; face with tongue # E1.0 [1] (😛) 1F61C..1F61E ; Basic_Emoji ; winking face with tongue # E0.6 [3] (😜..😞) 1F61F ; Basic_Emoji ; worried face # E1.0 [1] (😟) 1F620..1F625 ; Basic_Emoji ; angry face # E0.6 [6] (😠..😥) 1F626..1F627 ; Basic_Emoji ; frowning face with open mouth # E1.0 [2] (😦..😧) 1F628..1F62B ; Basic_Emoji ; fearful face # E0.6 [4] (😨..😫) 1F62C ; Basic_Emoji ; grimacing face # E1.0 [1] (😬) 1F62D ; Basic_Emoji ; loudly crying face # E0.6 [1] (😭) 1F62E..1F62F ; Basic_Emoji ; face with open mouth # E1.0 [2] (😮..😯) 1F630..1F633 ; Basic_Emoji ; anxious face with sweat # E0.6 [4] (😰..😳) 1F634 ; Basic_Emoji ; sleeping face # E1.0 [1] (😴) 1F635 ; Basic_Emoji ; knocked-out face # E0.6 [1] (😵) 1F636 ; Basic_Emoji ; face without mouth # E1.0 [1] (😶) 1F637..1F640 ; Basic_Emoji ; face with medical mask # E0.6 [10] (😷..🙀) 1F641..1F644 ; Basic_Emoji ; slightly frowning face # E1.0 [4] (🙁..🙄) 1F645..1F64F ; Basic_Emoji ; person gesturing NO # E0.6 [11] (🙅..🙏) 1F680 ; Basic_Emoji ; rocket # E0.6 [1] (🚀) 1F681..1F682 ; Basic_Emoji ; helicopter # E1.0 [2] (🚁..🚂) 1F683..1F685 ; Basic_Emoji ; railway car # E0.6 [3] (🚃..🚅) 1F686 ; Basic_Emoji ; train # E1.0 [1] (🚆) 1F687 ; Basic_Emoji ; metro # E0.6 [1] (🚇) 1F688 ; Basic_Emoji ; light rail # E1.0 [1] (🚈) 1F689 ; Basic_Emoji ; station # E0.6 [1] (🚉) 1F68A..1F68B ; Basic_Emoji ; tram # E1.0 [2] (🚊..🚋) 1F68C ; Basic_Emoji ; bus # E0.6 [1] (🚌) 1F68D ; Basic_Emoji ; oncoming bus # E0.7 [1] (🚍) 1F68E ; Basic_Emoji ; trolleybus # E1.0 [1] (🚎) 1F68F ; Basic_Emoji ; bus stop # E0.6 [1] (🚏) 1F690 ; Basic_Emoji ; minibus # E1.0 [1] (🚐) 1F691..1F693 ; Basic_Emoji ; ambulance # E0.6 [3] (🚑..🚓) 1F694 ; Basic_Emoji ; oncoming police car # E0.7 [1] (🚔) 1F695 ; Basic_Emoji ; taxi # E0.6 [1] (🚕) 1F696 ; Basic_Emoji ; oncoming taxi # E1.0 [1] (🚖) 1F697 ; Basic_Emoji ; automobile # E0.6 [1] (🚗) 1F698 ; Basic_Emoji ; oncoming automobile # E0.7 [1] (🚘) 1F699..1F69A ; Basic_Emoji ; sport utility vehicle # E0.6 [2] (🚙..🚚) 1F69B..1F6A1 ; Basic_Emoji ; articulated lorry # E1.0 [7] (🚛..🚡) 1F6A2 ; Basic_Emoji ; ship # E0.6 [1] (🚢) 1F6A3 ; Basic_Emoji ; person rowing boat # E1.0 [1] (🚣) 1F6A4..1F6A5 ; Basic_Emoji ; speedboat # E0.6 [2] (🚤..🚥) 1F6A6 ; Basic_Emoji ; vertical traffic light # E1.0 [1] (🚦) 1F6A7..1F6AD ; Basic_Emoji ; construction # E0.6 [7] (🚧..🚭) 1F6AE..1F6B1 ; Basic_Emoji ; litter in bin sign # E1.0 [4] (🚮..🚱) 1F6B2 ; Basic_Emoji ; bicycle # E0.6 [1] (🚲) 1F6B3..1F6B5 ; Basic_Emoji ; no bicycles # E1.0 [3] (🚳..🚵) 1F6B6 ; Basic_Emoji ; person walking # E0.6 [1] (🚶) 1F6B7..1F6B8 ; Basic_Emoji ; no pedestrians # E1.0 [2] (🚷..🚸) 1F6B9..1F6BE ; Basic_Emoji ; men’s room # E0.6 [6] (🚹..🚾) 1F6BF ; Basic_Emoji ; shower # E1.0 [1] (🚿) 1F6C0 ; Basic_Emoji ; person taking bath # E0.6 [1] (🛀) 1F6C1..1F6C5 ; Basic_Emoji ; bathtub # E1.0 [5] (🛁..🛅) 1F6CC ; Basic_Emoji ; person in bed # E1.0 [1] (🛌) 1F6D0 ; Basic_Emoji ; place of worship # E1.0 [1] (🛐) 1F6D1..1F6D2 ; Basic_Emoji ; stop sign # E3.0 [2] (🛑..🛒) 1F6D5 ; Basic_Emoji ; hindu temple # E12.0 [1] (🛕) 1F6D6..1F6D7 ; Basic_Emoji ; hut # E13.0 [2] (🛖..🛗) 1F6EB..1F6EC ; Basic_Emoji ; airplane departure # E1.0 [2] (🛫..🛬) 1F6F4..1F6F6 ; Basic_Emoji ; kick scooter # E3.0 [3] (🛴..🛶) 1F6F7..1F6F8 ; Basic_Emoji ; sled # E5.0 [2] (🛷..🛸) 1F6F9 ; Basic_Emoji ; skateboard # E11.0 [1] (🛹) 1F6FA ; Basic_Emoji ; auto rickshaw # E12.0 [1] (🛺) 1F6FB..1F6FC ; Basic_Emoji ; pickup truck # E13.0 [2] (🛻..🛼) 1F7E0..1F7EB ; Basic_Emoji ; orange circle # E12.0 [12] (🟠..🟫) 1F90C ; Basic_Emoji ; pinched fingers # E13.0 [1] (🤌) 1F90D..1F90F ; Basic_Emoji ; white heart # E12.0 [3] (🤍..🤏) 1F910..1F918 ; Basic_Emoji ; zipper-mouth face # E1.0 [9] (🤐..🤘) 1F919..1F91E ; Basic_Emoji ; call me hand # E3.0 [6] (🤙..🤞) 1F91F ; Basic_Emoji ; love-you gesture # E5.0 [1] (🤟) 1F920..1F927 ; Basic_Emoji ; cowboy hat face # E3.0 [8] (🤠..🤧) 1F928..1F92F ; Basic_Emoji ; face with raised eyebrow # E5.0 [8] (🤨..🤯) 1F930 ; Basic_Emoji ; pregnant woman # E3.0 [1] (🤰) 1F931..1F932 ; Basic_Emoji ; breast-feeding # E5.0 [2] (🤱..🤲) 1F933..1F93A ; Basic_Emoji ; selfie # E3.0 [8] (🤳..🤺) 1F93C..1F93E ; Basic_Emoji ; people wrestling # E3.0 [3] (🤼..🤾) 1F93F ; Basic_Emoji ; diving mask # E12.0 [1] (🤿) 1F940..1F945 ; Basic_Emoji ; wilted flower # E3.0 [6] (🥀..🥅) 1F947..1F94B ; Basic_Emoji ; 1st place medal # E3.0 [5] (🥇..🥋) 1F94C ; Basic_Emoji ; curling stone # E5.0 [1] (🥌) 1F94D..1F94F ; Basic_Emoji ; lacrosse # E11.0 [3] (🥍..🥏) 1F950..1F95E ; Basic_Emoji ; croissant # E3.0 [15] (🥐..🥞) 1F95F..1F96B ; Basic_Emoji ; dumpling # E5.0 [13] (🥟..🥫) 1F96C..1F970 ; Basic_Emoji ; leafy green # E11.0 [5] (🥬..🥰) 1F971 ; Basic_Emoji ; yawning face # E12.0 [1] (🥱) 1F972 ; Basic_Emoji ; smiling face with tear # E13.0 [1] (🥲) 1F973..1F976 ; Basic_Emoji ; partying face # E11.0 [4] (🥳..🥶) 1F977..1F978 ; Basic_Emoji ; ninja # E13.0 [2] (🥷..🥸) 1F97A ; Basic_Emoji ; pleading face # E11.0 [1] (🥺) 1F97B ; Basic_Emoji ; sari # E12.0 [1] (🥻) 1F97C..1F97F ; Basic_Emoji ; lab coat # E11.0 [4] (🥼..🥿) 1F980..1F984 ; Basic_Emoji ; crab # E1.0 [5] (🦀..🦄) 1F985..1F991 ; Basic_Emoji ; eagle # E3.0 [13] (🦅..🦑) 1F992..1F997 ; Basic_Emoji ; giraffe # E5.0 [6] (🦒..🦗) 1F998..1F9A2 ; Basic_Emoji ; kangaroo # E11.0 [11] (🦘..🦢) 1F9A3..1F9A4 ; Basic_Emoji ; mammoth # E13.0 [2] (🦣..🦤) 1F9A5..1F9AA ; Basic_Emoji ; sloth # E12.0 [6] (🦥..🦪) 1F9AB..1F9AD ; Basic_Emoji ; beaver # E13.0 [3] (🦫..🦭) 1F9AE..1F9AF ; Basic_Emoji ; guide dog # E12.0 [2] (🦮..🦯) 1F9B0..1F9B9 ; Basic_Emoji ; red hair # E11.0 [10] (🦰..🦹) 1F9BA..1F9BF ; Basic_Emoji ; safety vest # E12.0 [6] (🦺..🦿) 1F9C0 ; Basic_Emoji ; cheese wedge # E1.0 [1] (🧀) 1F9C1..1F9C2 ; Basic_Emoji ; cupcake # E11.0 [2] (🧁..🧂) 1F9C3..1F9CA ; Basic_Emoji ; beverage box # E12.0 [8] (🧃..🧊) 1F9CB ; Basic_Emoji ; bubble tea # E13.0 [1] (🧋) 1F9CD..1F9CF ; Basic_Emoji ; person standing # E12.0 [3] (🧍..🧏) 1F9D0..1F9E6 ; Basic_Emoji ; face with monocle # E5.0 [23] (🧐..🧦) 1F9E7..1F9FF ; Basic_Emoji ; red envelope # E11.0 [25] (🧧..🧿) 1FA70..1FA73 ; Basic_Emoji ; ballet shoes # E12.0 [4] (🩰..🩳) 1FA74 ; Basic_Emoji ; thong sandal # E13.0 [1] (🩴) 1FA78..1FA7A ; Basic_Emoji ; drop of blood # E12.0 [3] (🩸..🩺) 1FA80..1FA82 ; Basic_Emoji ; yo-yo # E12.0 [3] (🪀..🪂) 1FA83..1FA86 ; Basic_Emoji ; boomerang # E13.0 [4] (🪃..🪆) 1FA90..1FA95 ; Basic_Emoji ; ringed planet # E12.0 [6] (🪐..🪕) 1FA96..1FAA8 ; Basic_Emoji ; military helmet # E13.0 [19] (🪖..🪨) 1FAB0..1FAB6 ; Basic_Emoji ; fly # E13.0 [7] (🪰..🪶) 1FAC0..1FAC2 ; Basic_Emoji ; anatomical heart # E13.0 [3] (🫀..🫂) 1FAD0..1FAD6 ; Basic_Emoji ; blueberries # E13.0 [7] (🫐..🫖) 00A9 FE0F ; Basic_Emoji ; copyright # E0.6 [1] (©️) 00AE FE0F ; Basic_Emoji ; registered # E0.6 [1] (®️) 203C FE0F ; Basic_Emoji ; double exclamation mark # E0.6 [1] (‼️) 2049 FE0F ; Basic_Emoji ; exclamation question mark # E0.6 [1] (⁉️) 2122 FE0F ; Basic_Emoji ; trade mark # E0.6 [1] (™️) 2139 FE0F ; Basic_Emoji ; information # E0.6 [1] (ℹ️) 2194 FE0F ; Basic_Emoji ; left-right arrow # E0.6 [1] (↔️) 2195 FE0F ; Basic_Emoji ; up-down arrow # E0.6 [1] (↕️) 2196 FE0F ; Basic_Emoji ; up-left arrow # E0.6 [1] (↖️) 2197 FE0F ; Basic_Emoji ; up-right arrow # E0.6 [1] (↗️) 2198 FE0F ; Basic_Emoji ; down-right arrow # E0.6 [1] (↘️) 2199 FE0F ; Basic_Emoji ; down-left arrow # E0.6 [1] (↙️) 21A9 FE0F ; Basic_Emoji ; right arrow curving left # E0.6 [1] (↩️) 21AA FE0F ; Basic_Emoji ; left arrow curving right # E0.6 [1] (↪️) 2328 FE0F ; Basic_Emoji ; keyboard # E1.0 [1] (⌨️) 23CF FE0F ; Basic_Emoji ; eject button # E1.0 [1] (⏏️) 23ED FE0F ; Basic_Emoji ; next track button # E0.7 [1] (⏭️) 23EE FE0F ; Basic_Emoji ; last track button # E0.7 [1] (⏮️) 23EF FE0F ; Basic_Emoji ; play or pause button # E1.0 [1] (⏯️) 23F1 FE0F ; Basic_Emoji ; stopwatch # E1.0 [1] (⏱️) 23F2 FE0F ; Basic_Emoji ; timer clock # E1.0 [1] (⏲️) 23F8 FE0F ; Basic_Emoji ; pause button # E0.7 [1] (⏸️) 23F9 FE0F ; Basic_Emoji ; stop button # E0.7 [1] (⏹️) 23FA FE0F ; Basic_Emoji ; record button # E0.7 [1] (⏺️) 24C2 FE0F ; Basic_Emoji ; circled M # E0.6 [1] (Ⓜ️) 25AA FE0F ; Basic_Emoji ; black small square # E0.6 [1] (▪️) 25AB FE0F ; Basic_Emoji ; white small square # E0.6 [1] (▫️) 25B6 FE0F ; Basic_Emoji ; play button # E0.6 [1] (▶️) 25C0 FE0F ; Basic_Emoji ; reverse button # E0.6 [1] (◀️) 25FB FE0F ; Basic_Emoji ; white medium square # E0.6 [1] (◻️) 25FC FE0F ; Basic_Emoji ; black medium square # E0.6 [1] (◼️) 2600 FE0F ; Basic_Emoji ; sun # E0.6 [1] (☀️) 2601 FE0F ; Basic_Emoji ; cloud # E0.6 [1] (☁️) 2602 FE0F ; Basic_Emoji ; umbrella # E0.7 [1] (☂️) 2603 FE0F ; Basic_Emoji ; snowman # E0.7 [1] (☃️) 2604 FE0F ; Basic_Emoji ; comet # E1.0 [1] (☄️) 260E FE0F ; Basic_Emoji ; telephone # E0.6 [1] (☎️) 2611 FE0F ; Basic_Emoji ; check box with check # E0.6 [1] (☑️) 2618 FE0F ; Basic_Emoji ; shamrock # E1.0 [1] (☘️) 261D FE0F ; Basic_Emoji ; index pointing up # E0.6 [1] (☝️) 2620 FE0F ; Basic_Emoji ; skull and crossbones # E1.0 [1] (☠️) 2622 FE0F ; Basic_Emoji ; radioactive # E1.0 [1] (☢️) 2623 FE0F ; Basic_Emoji ; biohazard # E1.0 [1] (☣️) 2626 FE0F ; Basic_Emoji ; orthodox cross # E1.0 [1] (☦️) 262A FE0F ; Basic_Emoji ; star and crescent # E0.7 [1] (☪️) 262E FE0F ; Basic_Emoji ; peace symbol # E1.0 [1] (☮️) 262F FE0F ; Basic_Emoji ; yin yang # E0.7 [1] (☯️) 2638 FE0F ; Basic_Emoji ; wheel of dharma # E0.7 [1] (☸️) 2639 FE0F ; Basic_Emoji ; frowning face # E0.7 [1] (☹️) 263A FE0F ; Basic_Emoji ; smiling face # E0.6 [1] (☺️) 2640 FE0F ; Basic_Emoji ; female sign # E4.0 [1] (♀️) 2642 FE0F ; Basic_Emoji ; male sign # E4.0 [1] (♂️) 265F FE0F ; Basic_Emoji ; chess pawn # E11.0 [1] (♟️) 2660 FE0F ; Basic_Emoji ; spade suit # E0.6 [1] (♠️) 2663 FE0F ; Basic_Emoji ; club suit # E0.6 [1] (♣️) 2665 FE0F ; Basic_Emoji ; heart suit # E0.6 [1] (♥️) 2666 FE0F ; Basic_Emoji ; diamond suit # E0.6 [1] (♦️) 2668 FE0F ; Basic_Emoji ; hot springs # E0.6 [1] (♨️) 267B FE0F ; Basic_Emoji ; recycling symbol # E0.6 [1] (♻️) 267E FE0F ; Basic_Emoji ; infinity # E11.0 [1] (♾️) 2692 FE0F ; Basic_Emoji ; hammer and pick # E1.0 [1] (⚒️) 2694 FE0F ; Basic_Emoji ; crossed swords # E1.0 [1] (⚔️) 2695 FE0F ; Basic_Emoji ; medical symbol # E4.0 [1] (⚕️) 2696 FE0F ; Basic_Emoji ; balance scale # E1.0 [1] (⚖️) 2697 FE0F ; Basic_Emoji ; alembic # E1.0 [1] (⚗️) 2699 FE0F ; Basic_Emoji ; gear # E1.0 [1] (⚙️) 269B FE0F ; Basic_Emoji ; atom symbol # E1.0 [1] (⚛️) 269C FE0F ; Basic_Emoji ; fleur-de-lis # E1.0 [1] (⚜️) 26A0 FE0F ; Basic_Emoji ; warning # E0.6 [1] (⚠️) 26A7 FE0F ; Basic_Emoji ; transgender symbol # E13.0 [1] (⚧️) 26B0 FE0F ; Basic_Emoji ; coffin # E1.0 [1] (⚰️) 26B1 FE0F ; Basic_Emoji ; funeral urn # E1.0 [1] (⚱️) 26C8 FE0F ; Basic_Emoji ; cloud with lightning and rain # E0.7 [1] (⛈️) 26CF FE0F ; Basic_Emoji ; pick # E0.7 [1] (⛏️) 26D1 FE0F ; Basic_Emoji ; rescue worker’s helmet # E0.7 [1] (⛑️) 26D3 FE0F ; Basic_Emoji ; chains # E0.7 [1] (⛓️) 26E9 FE0F ; Basic_Emoji ; shinto shrine # E0.7 [1] (⛩️) 26F0 FE0F ; Basic_Emoji ; mountain # E0.7 [1] (⛰️) 26F1 FE0F ; Basic_Emoji ; umbrella on ground # E0.7 [1] (⛱️) 26F4 FE0F ; Basic_Emoji ; ferry # E0.7 [1] (⛴️) 26F7 FE0F ; Basic_Emoji ; skier # E0.7 [1] (⛷️) 26F8 FE0F ; Basic_Emoji ; ice skate # E0.7 [1] (⛸️) 26F9 FE0F ; Basic_Emoji ; person bouncing ball # E0.7 [1] (⛹️) 2702 FE0F ; Basic_Emoji ; scissors # E0.6 [1] (✂️) 2708 FE0F ; Basic_Emoji ; airplane # E0.6 [1] (✈️) 2709 FE0F ; Basic_Emoji ; envelope # E0.6 [1] (✉️) 270C FE0F ; Basic_Emoji ; victory hand # E0.6 [1] (✌️) 270D FE0F ; Basic_Emoji ; writing hand # E0.7 [1] (✍️) 270F FE0F ; Basic_Emoji ; pencil # E0.6 [1] (✏️) 2712 FE0F ; Basic_Emoji ; black nib # E0.6 [1] (✒️) 2714 FE0F ; Basic_Emoji ; check mark # E0.6 [1] (✔️) 2716 FE0F ; Basic_Emoji ; multiply # E0.6 [1] (✖️) 271D FE0F ; Basic_Emoji ; latin cross # E0.7 [1] (✝️) 2721 FE0F ; Basic_Emoji ; star of David # E0.7 [1] (✡️) 2733 FE0F ; Basic_Emoji ; eight-spoked asterisk # E0.6 [1] (✳️) 2734 FE0F ; Basic_Emoji ; eight-pointed star # E0.6 [1] (✴️) 2744 FE0F ; Basic_Emoji ; snowflake # E0.6 [1] (❄️) 2747 FE0F ; Basic_Emoji ; sparkle # E0.6 [1] (❇️) 2763 FE0F ; Basic_Emoji ; heart exclamation # E1.0 [1] (❣️) 2764 FE0F ; Basic_Emoji ; red heart # E0.6 [1] (❤️) 27A1 FE0F ; Basic_Emoji ; right arrow # E0.6 [1] (➡️) 2934 FE0F ; Basic_Emoji ; right arrow curving up # E0.6 [1] (⤴️) 2935 FE0F ; Basic_Emoji ; right arrow curving down # E0.6 [1] (⤵️) 2B05 FE0F ; Basic_Emoji ; left arrow # E0.6 [1] (⬅️) 2B06 FE0F ; Basic_Emoji ; up arrow # E0.6 [1] (⬆️) 2B07 FE0F ; Basic_Emoji ; down arrow # E0.6 [1] (⬇️) 3030 FE0F ; Basic_Emoji ; wavy dash # E0.6 [1] (〰️) 303D FE0F ; Basic_Emoji ; part alternation mark # E0.6 [1] (〽️) 3297 FE0F ; Basic_Emoji ; Japanese “congratulations” button # E0.6 [1] (㊗️) 3299 FE0F ; Basic_Emoji ; Japanese “secret” button # E0.6 [1] (㊙️) 1F170 FE0F ; Basic_Emoji ; A button (blood type) # E0.6 [1] (🅰️) 1F171 FE0F ; Basic_Emoji ; B button (blood type) # E0.6 [1] (🅱️) 1F17E FE0F ; Basic_Emoji ; O button (blood type) # E0.6 [1] (🅾️) 1F17F FE0F ; Basic_Emoji ; P button # E0.6 [1] (🅿️) 1F202 FE0F ; Basic_Emoji ; Japanese “service charge” button # E0.6 [1] (🈂️) 1F237 FE0F ; Basic_Emoji ; Japanese “monthly amount” button # E0.6 [1] (🈷️) 1F321 FE0F ; Basic_Emoji ; thermometer # E0.7 [1] (🌡️) 1F324 FE0F ; Basic_Emoji ; sun behind small cloud # E0.7 [1] (🌤️) 1F325 FE0F ; Basic_Emoji ; sun behind large cloud # E0.7 [1] (🌥️) 1F326 FE0F ; Basic_Emoji ; sun behind rain cloud # E0.7 [1] (🌦️) 1F327 FE0F ; Basic_Emoji ; cloud with rain # E0.7 [1] (🌧️) 1F328 FE0F ; Basic_Emoji ; cloud with snow # E0.7 [1] (🌨️) 1F329 FE0F ; Basic_Emoji ; cloud with lightning # E0.7 [1] (🌩️) 1F32A FE0F ; Basic_Emoji ; tornado # E0.7 [1] (🌪️) 1F32B FE0F ; Basic_Emoji ; fog # E0.7 [1] (🌫️) 1F32C FE0F ; Basic_Emoji ; wind face # E0.7 [1] (🌬️) 1F336 FE0F ; Basic_Emoji ; hot pepper # E0.7 [1] (🌶️) 1F37D FE0F ; Basic_Emoji ; fork and knife with plate # E0.7 [1] (🍽️) 1F396 FE0F ; Basic_Emoji ; military medal # E0.7 [1] (🎖️) 1F397 FE0F ; Basic_Emoji ; reminder ribbon # E0.7 [1] (🎗️) 1F399 FE0F ; Basic_Emoji ; studio microphone # E0.7 [1] (🎙️) 1F39A FE0F ; Basic_Emoji ; level slider # E0.7 [1] (🎚️) 1F39B FE0F ; Basic_Emoji ; control knobs # E0.7 [1] (🎛️) 1F39E FE0F ; Basic_Emoji ; film frames # E0.7 [1] (🎞️) 1F39F FE0F ; Basic_Emoji ; admission tickets # E0.7 [1] (🎟️) 1F3CB FE0F ; Basic_Emoji ; person lifting weights # E0.7 [1] (🏋️) 1F3CC FE0F ; Basic_Emoji ; person golfing # E0.7 [1] (🏌️) 1F3CD FE0F ; Basic_Emoji ; motorcycle # E0.7 [1] (🏍️) 1F3CE FE0F ; Basic_Emoji ; racing car # E0.7 [1] (🏎️) 1F3D4 FE0F ; Basic_Emoji ; snow-capped mountain # E0.7 [1] (🏔️) 1F3D5 FE0F ; Basic_Emoji ; camping # E0.7 [1] (🏕️) 1F3D6 FE0F ; Basic_Emoji ; beach with umbrella # E0.7 [1] (🏖️) 1F3D7 FE0F ; Basic_Emoji ; building construction # E0.7 [1] (🏗️) 1F3D8 FE0F ; Basic_Emoji ; houses # E0.7 [1] (🏘️) 1F3D9 FE0F ; Basic_Emoji ; cityscape # E0.7 [1] (🏙️) 1F3DA FE0F ; Basic_Emoji ; derelict house # E0.7 [1] (🏚️) 1F3DB FE0F ; Basic_Emoji ; classical building # E0.7 [1] (🏛️) 1F3DC FE0F ; Basic_Emoji ; desert # E0.7 [1] (🏜️) 1F3DD FE0F ; Basic_Emoji ; desert island # E0.7 [1] (🏝️) 1F3DE FE0F ; Basic_Emoji ; national park # E0.7 [1] (🏞️) 1F3DF FE0F ; Basic_Emoji ; stadium # E0.7 [1] (🏟️) 1F3F3 FE0F ; Basic_Emoji ; white flag # E0.7 [1] (🏳️) 1F3F5 FE0F ; Basic_Emoji ; rosette # E0.7 [1] (🏵️) 1F3F7 FE0F ; Basic_Emoji ; label # E0.7 [1] (🏷️) 1F43F FE0F ; Basic_Emoji ; chipmunk # E0.7 [1] (🐿️) 1F441 FE0F ; Basic_Emoji ; eye # E0.7 [1] (👁️) 1F4FD FE0F ; Basic_Emoji ; film projector # E0.7 [1] (📽️) 1F549 FE0F ; Basic_Emoji ; om # E0.7 [1] (🕉️) 1F54A FE0F ; Basic_Emoji ; dove # E0.7 [1] (🕊️) 1F56F FE0F ; Basic_Emoji ; candle # E0.7 [1] (🕯️) 1F570 FE0F ; Basic_Emoji ; mantelpiece clock # E0.7 [1] (🕰️) 1F573 FE0F ; Basic_Emoji ; hole # E0.7 [1] (🕳️) 1F574 FE0F ; Basic_Emoji ; person in suit levitating # E0.7 [1] (🕴️) 1F575 FE0F ; Basic_Emoji ; detective # E0.7 [1] (🕵️) 1F576 FE0F ; Basic_Emoji ; sunglasses # E0.7 [1] (🕶️) 1F577 FE0F ; Basic_Emoji ; spider # E0.7 [1] (🕷️) 1F578 FE0F ; Basic_Emoji ; spider web # E0.7 [1] (🕸️) 1F579 FE0F ; Basic_Emoji ; joystick # E0.7 [1] (🕹️) 1F587 FE0F ; Basic_Emoji ; linked paperclips # E0.7 [1] (🖇️) 1F58A FE0F ; Basic_Emoji ; pen # E0.7 [1] (🖊️) 1F58B FE0F ; Basic_Emoji ; fountain pen # E0.7 [1] (🖋️) 1F58C FE0F ; Basic_Emoji ; paintbrush # E0.7 [1] (🖌️) 1F58D FE0F ; Basic_Emoji ; crayon # E0.7 [1] (🖍️) 1F590 FE0F ; Basic_Emoji ; hand with fingers splayed # E0.7 [1] (🖐️) 1F5A5 FE0F ; Basic_Emoji ; desktop computer # E0.7 [1] (🖥️) 1F5A8 FE0F ; Basic_Emoji ; printer # E0.7 [1] (🖨️) 1F5B1 FE0F ; Basic_Emoji ; computer mouse # E0.7 [1] (🖱️) 1F5B2 FE0F ; Basic_Emoji ; trackball # E0.7 [1] (🖲️) 1F5BC FE0F ; Basic_Emoji ; framed picture # E0.7 [1] (🖼️) 1F5C2 FE0F ; Basic_Emoji ; card index dividers # E0.7 [1] (🗂️) 1F5C3 FE0F ; Basic_Emoji ; card file box # E0.7 [1] (🗃️) 1F5C4 FE0F ; Basic_Emoji ; file cabinet # E0.7 [1] (🗄️) 1F5D1 FE0F ; Basic_Emoji ; wastebasket # E0.7 [1] (🗑️) 1F5D2 FE0F ; Basic_Emoji ; spiral notepad # E0.7 [1] (🗒️) 1F5D3 FE0F ; Basic_Emoji ; spiral calendar # E0.7 [1] (🗓️) 1F5DC FE0F ; Basic_Emoji ; clamp # E0.7 [1] (🗜️) 1F5DD FE0F ; Basic_Emoji ; old key # E0.7 [1] (🗝️) 1F5DE FE0F ; Basic_Emoji ; rolled-up newspaper # E0.7 [1] (🗞️) 1F5E1 FE0F ; Basic_Emoji ; dagger # E0.7 [1] (🗡️) 1F5E3 FE0F ; Basic_Emoji ; speaking head # E0.7 [1] (🗣️) 1F5E8 FE0F ; Basic_Emoji ; left speech bubble # E2.0 [1] (🗨️) 1F5EF FE0F ; Basic_Emoji ; right anger bubble # E0.7 [1] (🗯️) 1F5F3 FE0F ; Basic_Emoji ; ballot box with ballot # E0.7 [1] (🗳️) 1F5FA FE0F ; Basic_Emoji ; world map # E0.7 [1] (🗺️) 1F6CB FE0F ; Basic_Emoji ; couch and lamp # E0.7 [1] (🛋️) 1F6CD FE0F ; Basic_Emoji ; shopping bags # E0.7 [1] (🛍️) 1F6CE FE0F ; Basic_Emoji ; bellhop bell # E0.7 [1] (🛎️) 1F6CF FE0F ; Basic_Emoji ; bed # E0.7 [1] (🛏️) 1F6E0 FE0F ; Basic_Emoji ; hammer and wrench # E0.7 [1] (🛠️) 1F6E1 FE0F ; Basic_Emoji ; shield # E0.7 [1] (🛡️) 1F6E2 FE0F ; Basic_Emoji ; oil drum # E0.7 [1] (🛢️) 1F6E3 FE0F ; Basic_Emoji ; motorway # E0.7 [1] (🛣️) 1F6E4 FE0F ; Basic_Emoji ; railway track # E0.7 [1] (🛤️) 1F6E5 FE0F ; Basic_Emoji ; motor boat # E0.7 [1] (🛥️) 1F6E9 FE0F ; Basic_Emoji ; small airplane # E0.7 [1] (🛩️) 1F6F0 FE0F ; Basic_Emoji ; satellite # E0.7 [1] (🛰️) 1F6F3 FE0F ; Basic_Emoji ; passenger ship # E0.7 [1] (🛳️) # Total elements: 1329 # ================================================ # Emoji_Keycap_Sequence 0023 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: \x{23} # E0.6 [1] (#️⃣) 002A FE0F 20E3; Emoji_Keycap_Sequence ; keycap: * # E2.0 [1] (*️⃣) 0030 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 0 # E0.6 [1] (0️⃣) 0031 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 1 # E0.6 [1] (1️⃣) 0032 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 2 # E0.6 [1] (2️⃣) 0033 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 3 # E0.6 [1] (3️⃣) 0034 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 4 # E0.6 [1] (4️⃣) 0035 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 5 # E0.6 [1] (5️⃣) 0036 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 6 # E0.6 [1] (6️⃣) 0037 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 7 # E0.6 [1] (7️⃣) 0038 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 8 # E0.6 [1] (8️⃣) 0039 FE0F 20E3; Emoji_Keycap_Sequence ; keycap: 9 # E0.6 [1] (9️⃣) # Total elements: 12 # ================================================ # RGI_Emoji_Flag_Sequence: This list does not include deprecated or macroregion flags, except for UN and EU. # See Annex B of TR51 for more information. 1F1E6 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Ascension Island # E2.0 [1] (🇦🇨) 1F1E6 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Andorra # E2.0 [1] (🇦🇩) 1F1E6 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: United Arab Emirates # E2.0 [1] (🇦🇪) 1F1E6 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: Afghanistan # E2.0 [1] (🇦🇫) 1F1E6 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Antigua & Barbuda # E2.0 [1] (🇦🇬) 1F1E6 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Anguilla # E2.0 [1] (🇦🇮) 1F1E6 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Albania # E2.0 [1] (🇦🇱) 1F1E6 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Armenia # E2.0 [1] (🇦🇲) 1F1E6 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Angola # E2.0 [1] (🇦🇴) 1F1E6 1F1F6 ; RGI_Emoji_Flag_Sequence ; flag: Antarctica # E2.0 [1] (🇦🇶) 1F1E6 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Argentina # E2.0 [1] (🇦🇷) 1F1E6 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: American Samoa # E2.0 [1] (🇦🇸) 1F1E6 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Austria # E2.0 [1] (🇦🇹) 1F1E6 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Australia # E2.0 [1] (🇦🇺) 1F1E6 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Aruba # E2.0 [1] (🇦🇼) 1F1E6 1F1FD ; RGI_Emoji_Flag_Sequence ; flag: Åland Islands # E2.0 [1] (🇦🇽) 1F1E6 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Azerbaijan # E2.0 [1] (🇦🇿) 1F1E7 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Bosnia & Herzegovina # E2.0 [1] (🇧🇦) 1F1E7 1F1E7 ; RGI_Emoji_Flag_Sequence ; flag: Barbados # E2.0 [1] (🇧🇧) 1F1E7 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Bangladesh # E2.0 [1] (🇧🇩) 1F1E7 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Belgium # E2.0 [1] (🇧🇪) 1F1E7 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: Burkina Faso # E2.0 [1] (🇧🇫) 1F1E7 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Bulgaria # E2.0 [1] (🇧🇬) 1F1E7 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Bahrain # E2.0 [1] (🇧🇭) 1F1E7 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Burundi # E2.0 [1] (🇧🇮) 1F1E7 1F1EF ; RGI_Emoji_Flag_Sequence ; flag: Benin # E2.0 [1] (🇧🇯) 1F1E7 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: St. Barthélemy # E2.0 [1] (🇧🇱) 1F1E7 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Bermuda # E2.0 [1] (🇧🇲) 1F1E7 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Brunei # E2.0 [1] (🇧🇳) 1F1E7 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Bolivia # E2.0 [1] (🇧🇴) 1F1E7 1F1F6 ; RGI_Emoji_Flag_Sequence ; flag: Caribbean Netherlands # E2.0 [1] (🇧🇶) 1F1E7 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Brazil # E2.0 [1] (🇧🇷) 1F1E7 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Bahamas # E2.0 [1] (🇧🇸) 1F1E7 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Bhutan # E2.0 [1] (🇧🇹) 1F1E7 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: Bouvet Island # E2.0 [1] (🇧🇻) 1F1E7 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Botswana # E2.0 [1] (🇧🇼) 1F1E7 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Belarus # E2.0 [1] (🇧🇾) 1F1E7 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Belize # E2.0 [1] (🇧🇿) 1F1E8 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Canada # E2.0 [1] (🇨🇦) 1F1E8 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Cocos (Keeling) Islands # E2.0 [1] (🇨🇨) 1F1E8 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Congo - Kinshasa # E2.0 [1] (🇨🇩) 1F1E8 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: Central African Republic # E2.0 [1] (🇨🇫) 1F1E8 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Congo - Brazzaville # E2.0 [1] (🇨🇬) 1F1E8 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Switzerland # E2.0 [1] (🇨🇭) 1F1E8 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Côte d’Ivoire # E2.0 [1] (🇨🇮) 1F1E8 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Cook Islands # E2.0 [1] (🇨🇰) 1F1E8 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Chile # E2.0 [1] (🇨🇱) 1F1E8 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Cameroon # E2.0 [1] (🇨🇲) 1F1E8 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: China # E0.6 [1] (🇨🇳) 1F1E8 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Colombia # E2.0 [1] (🇨🇴) 1F1E8 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: Clipperton Island # E2.0 [1] (🇨🇵) 1F1E8 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Costa Rica # E2.0 [1] (🇨🇷) 1F1E8 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Cuba # E2.0 [1] (🇨🇺) 1F1E8 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: Cape Verde # E2.0 [1] (🇨🇻) 1F1E8 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Curaçao # E2.0 [1] (🇨🇼) 1F1E8 1F1FD ; RGI_Emoji_Flag_Sequence ; flag: Christmas Island # E2.0 [1] (🇨🇽) 1F1E8 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Cyprus # E2.0 [1] (🇨🇾) 1F1E8 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Czechia # E2.0 [1] (🇨🇿) 1F1E9 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Germany # E0.6 [1] (🇩🇪) 1F1E9 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Diego Garcia # E2.0 [1] (🇩🇬) 1F1E9 1F1EF ; RGI_Emoji_Flag_Sequence ; flag: Djibouti # E2.0 [1] (🇩🇯) 1F1E9 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Denmark # E2.0 [1] (🇩🇰) 1F1E9 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Dominica # E2.0 [1] (🇩🇲) 1F1E9 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Dominican Republic # E2.0 [1] (🇩🇴) 1F1E9 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Algeria # E2.0 [1] (🇩🇿) 1F1EA 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Ceuta & Melilla # E2.0 [1] (🇪🇦) 1F1EA 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Ecuador # E2.0 [1] (🇪🇨) 1F1EA 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Estonia # E2.0 [1] (🇪🇪) 1F1EA 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Egypt # E2.0 [1] (🇪🇬) 1F1EA 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Western Sahara # E2.0 [1] (🇪🇭) 1F1EA 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Eritrea # E2.0 [1] (🇪🇷) 1F1EA 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Spain # E0.6 [1] (🇪🇸) 1F1EA 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Ethiopia # E2.0 [1] (🇪🇹) 1F1EA 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: European Union # E2.0 [1] (🇪🇺) 1F1EB 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Finland # E2.0 [1] (🇫🇮) 1F1EB 1F1EF ; RGI_Emoji_Flag_Sequence ; flag: Fiji # E2.0 [1] (🇫🇯) 1F1EB 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Falkland Islands # E2.0 [1] (🇫🇰) 1F1EB 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Micronesia # E2.0 [1] (🇫🇲) 1F1EB 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Faroe Islands # E2.0 [1] (🇫🇴) 1F1EB 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: France # E0.6 [1] (🇫🇷) 1F1EC 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Gabon # E2.0 [1] (🇬🇦) 1F1EC 1F1E7 ; RGI_Emoji_Flag_Sequence ; flag: United Kingdom # E0.6 [1] (🇬🇧) 1F1EC 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Grenada # E2.0 [1] (🇬🇩) 1F1EC 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Georgia # E2.0 [1] (🇬🇪) 1F1EC 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: French Guiana # E2.0 [1] (🇬🇫) 1F1EC 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Guernsey # E2.0 [1] (🇬🇬) 1F1EC 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Ghana # E2.0 [1] (🇬🇭) 1F1EC 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Gibraltar # E2.0 [1] (🇬🇮) 1F1EC 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Greenland # E2.0 [1] (🇬🇱) 1F1EC 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Gambia # E2.0 [1] (🇬🇲) 1F1EC 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Guinea # E2.0 [1] (🇬🇳) 1F1EC 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: Guadeloupe # E2.0 [1] (🇬🇵) 1F1EC 1F1F6 ; RGI_Emoji_Flag_Sequence ; flag: Equatorial Guinea # E2.0 [1] (🇬🇶) 1F1EC 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Greece # E2.0 [1] (🇬🇷) 1F1EC 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: South Georgia & South Sandwich Islands # E2.0 [1] (🇬🇸) 1F1EC 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Guatemala # E2.0 [1] (🇬🇹) 1F1EC 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Guam # E2.0 [1] (🇬🇺) 1F1EC 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Guinea-Bissau # E2.0 [1] (🇬🇼) 1F1EC 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Guyana # E2.0 [1] (🇬🇾) 1F1ED 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Hong Kong SAR China # E2.0 [1] (🇭🇰) 1F1ED 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Heard & McDonald Islands # E2.0 [1] (🇭🇲) 1F1ED 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Honduras # E2.0 [1] (🇭🇳) 1F1ED 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Croatia # E2.0 [1] (🇭🇷) 1F1ED 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Haiti # E2.0 [1] (🇭🇹) 1F1ED 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Hungary # E2.0 [1] (🇭🇺) 1F1EE 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Canary Islands # E2.0 [1] (🇮🇨) 1F1EE 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Indonesia # E2.0 [1] (🇮🇩) 1F1EE 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Ireland # E2.0 [1] (🇮🇪) 1F1EE 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Israel # E2.0 [1] (🇮🇱) 1F1EE 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Isle of Man # E2.0 [1] (🇮🇲) 1F1EE 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: India # E2.0 [1] (🇮🇳) 1F1EE 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: British Indian Ocean Territory # E2.0 [1] (🇮🇴) 1F1EE 1F1F6 ; RGI_Emoji_Flag_Sequence ; flag: Iraq # E2.0 [1] (🇮🇶) 1F1EE 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Iran # E2.0 [1] (🇮🇷) 1F1EE 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Iceland # E2.0 [1] (🇮🇸) 1F1EE 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Italy # E0.6 [1] (🇮🇹) 1F1EF 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Jersey # E2.0 [1] (🇯🇪) 1F1EF 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Jamaica # E2.0 [1] (🇯🇲) 1F1EF 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Jordan # E2.0 [1] (🇯🇴) 1F1EF 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: Japan # E0.6 [1] (🇯🇵) 1F1F0 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Kenya # E2.0 [1] (🇰🇪) 1F1F0 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Kyrgyzstan # E2.0 [1] (🇰🇬) 1F1F0 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Cambodia # E2.0 [1] (🇰🇭) 1F1F0 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Kiribati # E2.0 [1] (🇰🇮) 1F1F0 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Comoros # E2.0 [1] (🇰🇲) 1F1F0 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: St. Kitts & Nevis # E2.0 [1] (🇰🇳) 1F1F0 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: North Korea # E2.0 [1] (🇰🇵) 1F1F0 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: South Korea # E0.6 [1] (🇰🇷) 1F1F0 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Kuwait # E2.0 [1] (🇰🇼) 1F1F0 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Cayman Islands # E2.0 [1] (🇰🇾) 1F1F0 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Kazakhstan # E2.0 [1] (🇰🇿) 1F1F1 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Laos # E2.0 [1] (🇱🇦) 1F1F1 1F1E7 ; RGI_Emoji_Flag_Sequence ; flag: Lebanon # E2.0 [1] (🇱🇧) 1F1F1 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: St. Lucia # E2.0 [1] (🇱🇨) 1F1F1 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Liechtenstein # E2.0 [1] (🇱🇮) 1F1F1 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Sri Lanka # E2.0 [1] (🇱🇰) 1F1F1 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Liberia # E2.0 [1] (🇱🇷) 1F1F1 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Lesotho # E2.0 [1] (🇱🇸) 1F1F1 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Lithuania # E2.0 [1] (🇱🇹) 1F1F1 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Luxembourg # E2.0 [1] (🇱🇺) 1F1F1 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: Latvia # E2.0 [1] (🇱🇻) 1F1F1 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Libya # E2.0 [1] (🇱🇾) 1F1F2 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Morocco # E2.0 [1] (🇲🇦) 1F1F2 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Monaco # E2.0 [1] (🇲🇨) 1F1F2 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Moldova # E2.0 [1] (🇲🇩) 1F1F2 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Montenegro # E2.0 [1] (🇲🇪) 1F1F2 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: St. Martin # E2.0 [1] (🇲🇫) 1F1F2 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Madagascar # E2.0 [1] (🇲🇬) 1F1F2 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Marshall Islands # E2.0 [1] (🇲🇭) 1F1F2 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: North Macedonia # E2.0 [1] (🇲🇰) 1F1F2 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Mali # E2.0 [1] (🇲🇱) 1F1F2 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Myanmar (Burma) # E2.0 [1] (🇲🇲) 1F1F2 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Mongolia # E2.0 [1] (🇲🇳) 1F1F2 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Macao SAR China # E2.0 [1] (🇲🇴) 1F1F2 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: Northern Mariana Islands # E2.0 [1] (🇲🇵) 1F1F2 1F1F6 ; RGI_Emoji_Flag_Sequence ; flag: Martinique # E2.0 [1] (🇲🇶) 1F1F2 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Mauritania # E2.0 [1] (🇲🇷) 1F1F2 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Montserrat # E2.0 [1] (🇲🇸) 1F1F2 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Malta # E2.0 [1] (🇲🇹) 1F1F2 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Mauritius # E2.0 [1] (🇲🇺) 1F1F2 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: Maldives # E2.0 [1] (🇲🇻) 1F1F2 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Malawi # E2.0 [1] (🇲🇼) 1F1F2 1F1FD ; RGI_Emoji_Flag_Sequence ; flag: Mexico # E2.0 [1] (🇲🇽) 1F1F2 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Malaysia # E2.0 [1] (🇲🇾) 1F1F2 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Mozambique # E2.0 [1] (🇲🇿) 1F1F3 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Namibia # E2.0 [1] (🇳🇦) 1F1F3 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: New Caledonia # E2.0 [1] (🇳🇨) 1F1F3 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Niger # E2.0 [1] (🇳🇪) 1F1F3 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: Norfolk Island # E2.0 [1] (🇳🇫) 1F1F3 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Nigeria # E2.0 [1] (🇳🇬) 1F1F3 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Nicaragua # E2.0 [1] (🇳🇮) 1F1F3 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Netherlands # E2.0 [1] (🇳🇱) 1F1F3 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Norway # E2.0 [1] (🇳🇴) 1F1F3 1F1F5 ; RGI_Emoji_Flag_Sequence ; flag: Nepal # E2.0 [1] (🇳🇵) 1F1F3 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Nauru # E2.0 [1] (🇳🇷) 1F1F3 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Niue # E2.0 [1] (🇳🇺) 1F1F3 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: New Zealand # E2.0 [1] (🇳🇿) 1F1F4 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Oman # E2.0 [1] (🇴🇲) 1F1F5 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Panama # E2.0 [1] (🇵🇦) 1F1F5 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Peru # E2.0 [1] (🇵🇪) 1F1F5 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: French Polynesia # E2.0 [1] (🇵🇫) 1F1F5 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Papua New Guinea # E2.0 [1] (🇵🇬) 1F1F5 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Philippines # E2.0 [1] (🇵🇭) 1F1F5 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Pakistan # E2.0 [1] (🇵🇰) 1F1F5 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Poland # E2.0 [1] (🇵🇱) 1F1F5 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: St. Pierre & Miquelon # E2.0 [1] (🇵🇲) 1F1F5 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Pitcairn Islands # E2.0 [1] (🇵🇳) 1F1F5 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Puerto Rico # E2.0 [1] (🇵🇷) 1F1F5 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Palestinian Territories # E2.0 [1] (🇵🇸) 1F1F5 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Portugal # E2.0 [1] (🇵🇹) 1F1F5 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Palau # E2.0 [1] (🇵🇼) 1F1F5 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Paraguay # E2.0 [1] (🇵🇾) 1F1F6 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Qatar # E2.0 [1] (🇶🇦) 1F1F7 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Réunion # E2.0 [1] (🇷🇪) 1F1F7 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Romania # E2.0 [1] (🇷🇴) 1F1F7 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Serbia # E2.0 [1] (🇷🇸) 1F1F7 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Russia # E0.6 [1] (🇷🇺) 1F1F7 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Rwanda # E2.0 [1] (🇷🇼) 1F1F8 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Saudi Arabia # E2.0 [1] (🇸🇦) 1F1F8 1F1E7 ; RGI_Emoji_Flag_Sequence ; flag: Solomon Islands # E2.0 [1] (🇸🇧) 1F1F8 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Seychelles # E2.0 [1] (🇸🇨) 1F1F8 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Sudan # E2.0 [1] (🇸🇩) 1F1F8 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Sweden # E2.0 [1] (🇸🇪) 1F1F8 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Singapore # E2.0 [1] (🇸🇬) 1F1F8 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: St. Helena # E2.0 [1] (🇸🇭) 1F1F8 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: Slovenia # E2.0 [1] (🇸🇮) 1F1F8 1F1EF ; RGI_Emoji_Flag_Sequence ; flag: Svalbard & Jan Mayen # E2.0 [1] (🇸🇯) 1F1F8 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Slovakia # E2.0 [1] (🇸🇰) 1F1F8 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Sierra Leone # E2.0 [1] (🇸🇱) 1F1F8 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: San Marino # E2.0 [1] (🇸🇲) 1F1F8 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Senegal # E2.0 [1] (🇸🇳) 1F1F8 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Somalia # E2.0 [1] (🇸🇴) 1F1F8 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Suriname # E2.0 [1] (🇸🇷) 1F1F8 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: South Sudan # E2.0 [1] (🇸🇸) 1F1F8 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: São Tomé & Príncipe # E2.0 [1] (🇸🇹) 1F1F8 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: El Salvador # E2.0 [1] (🇸🇻) 1F1F8 1F1FD ; RGI_Emoji_Flag_Sequence ; flag: Sint Maarten # E2.0 [1] (🇸🇽) 1F1F8 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Syria # E2.0 [1] (🇸🇾) 1F1F8 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Eswatini # E2.0 [1] (🇸🇿) 1F1F9 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Tristan da Cunha # E2.0 [1] (🇹🇦) 1F1F9 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: Turks & Caicos Islands # E2.0 [1] (🇹🇨) 1F1F9 1F1E9 ; RGI_Emoji_Flag_Sequence ; flag: Chad # E2.0 [1] (🇹🇩) 1F1F9 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: French Southern Territories # E2.0 [1] (🇹🇫) 1F1F9 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Togo # E2.0 [1] (🇹🇬) 1F1F9 1F1ED ; RGI_Emoji_Flag_Sequence ; flag: Thailand # E2.0 [1] (🇹🇭) 1F1F9 1F1EF ; RGI_Emoji_Flag_Sequence ; flag: Tajikistan # E2.0 [1] (🇹🇯) 1F1F9 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Tokelau # E2.0 [1] (🇹🇰) 1F1F9 1F1F1 ; RGI_Emoji_Flag_Sequence ; flag: Timor-Leste # E2.0 [1] (🇹🇱) 1F1F9 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Turkmenistan # E2.0 [1] (🇹🇲) 1F1F9 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Tunisia # E2.0 [1] (🇹🇳) 1F1F9 1F1F4 ; RGI_Emoji_Flag_Sequence ; flag: Tonga # E2.0 [1] (🇹🇴) 1F1F9 1F1F7 ; RGI_Emoji_Flag_Sequence ; flag: Turkey # E2.0 [1] (🇹🇷) 1F1F9 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Trinidad & Tobago # E2.0 [1] (🇹🇹) 1F1F9 1F1FB ; RGI_Emoji_Flag_Sequence ; flag: Tuvalu # E2.0 [1] (🇹🇻) 1F1F9 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Taiwan # E2.0 [1] (🇹🇼) 1F1F9 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Tanzania # E2.0 [1] (🇹🇿) 1F1FA 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Ukraine # E2.0 [1] (🇺🇦) 1F1FA 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: Uganda # E2.0 [1] (🇺🇬) 1F1FA 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: U.S. Outlying Islands # E2.0 [1] (🇺🇲) 1F1FA 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: United Nations # E4.0 [1] (🇺🇳) 1F1FA 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: United States # E0.6 [1] (🇺🇸) 1F1FA 1F1FE ; RGI_Emoji_Flag_Sequence ; flag: Uruguay # E2.0 [1] (🇺🇾) 1F1FA 1F1FF ; RGI_Emoji_Flag_Sequence ; flag: Uzbekistan # E2.0 [1] (🇺🇿) 1F1FB 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: Vatican City # E2.0 [1] (🇻🇦) 1F1FB 1F1E8 ; RGI_Emoji_Flag_Sequence ; flag: St. Vincent & Grenadines # E2.0 [1] (🇻🇨) 1F1FB 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Venezuela # E2.0 [1] (🇻🇪) 1F1FB 1F1EC ; RGI_Emoji_Flag_Sequence ; flag: British Virgin Islands # E2.0 [1] (🇻🇬) 1F1FB 1F1EE ; RGI_Emoji_Flag_Sequence ; flag: U.S. Virgin Islands # E2.0 [1] (🇻🇮) 1F1FB 1F1F3 ; RGI_Emoji_Flag_Sequence ; flag: Vietnam # E2.0 [1] (🇻🇳) 1F1FB 1F1FA ; RGI_Emoji_Flag_Sequence ; flag: Vanuatu # E2.0 [1] (🇻🇺) 1F1FC 1F1EB ; RGI_Emoji_Flag_Sequence ; flag: Wallis & Futuna # E2.0 [1] (🇼🇫) 1F1FC 1F1F8 ; RGI_Emoji_Flag_Sequence ; flag: Samoa # E2.0 [1] (🇼🇸) 1F1FD 1F1F0 ; RGI_Emoji_Flag_Sequence ; flag: Kosovo # E2.0 [1] (🇽🇰) 1F1FE 1F1EA ; RGI_Emoji_Flag_Sequence ; flag: Yemen # E2.0 [1] (🇾🇪) 1F1FE 1F1F9 ; RGI_Emoji_Flag_Sequence ; flag: Mayotte # E2.0 [1] (🇾🇹) 1F1FF 1F1E6 ; RGI_Emoji_Flag_Sequence ; flag: South Africa # E2.0 [1] (🇿🇦) 1F1FF 1F1F2 ; RGI_Emoji_Flag_Sequence ; flag: Zambia # E2.0 [1] (🇿🇲) 1F1FF 1F1FC ; RGI_Emoji_Flag_Sequence ; flag: Zimbabwe # E2.0 [1] (🇿🇼) # Total elements: 258 # ================================================ # RGI_Emoji_Tag_Sequence: See Annex C of TR51 for more information. 1F3F4 E0067 E0062 E0065 E006E E0067 E007F; RGI_Emoji_Tag_Sequence; flag: England # E5.0 [1] (🏴󠁧󠁢󠁥󠁮󠁧󠁿) 1F3F4 E0067 E0062 E0073 E0063 E0074 E007F; RGI_Emoji_Tag_Sequence; flag: Scotland # E5.0 [1] (🏴󠁧󠁢󠁳󠁣󠁴󠁿) 1F3F4 E0067 E0062 E0077 E006C E0073 E007F; RGI_Emoji_Tag_Sequence; flag: Wales # E5.0 [1] (🏴󠁧󠁢󠁷󠁬󠁳󠁿) # Total elements: 3 # ================================================ # RGI_Emoji_Modifier_Sequence 261D 1F3FB ; RGI_Emoji_Modifier_Sequence ; index pointing up: light skin tone # E1.0 [1] (☝🏻) 261D 1F3FC ; RGI_Emoji_Modifier_Sequence ; index pointing up: medium-light skin tone # E1.0 [1] (☝🏼) 261D 1F3FD ; RGI_Emoji_Modifier_Sequence ; index pointing up: medium skin tone # E1.0 [1] (☝🏽) 261D 1F3FE ; RGI_Emoji_Modifier_Sequence ; index pointing up: medium-dark skin tone # E1.0 [1] (☝🏾) 261D 1F3FF ; RGI_Emoji_Modifier_Sequence ; index pointing up: dark skin tone # E1.0 [1] (☝🏿) 26F9 1F3FB ; RGI_Emoji_Modifier_Sequence ; person bouncing ball: light skin tone # E2.0 [1] (⛹🏻) 26F9 1F3FC ; RGI_Emoji_Modifier_Sequence ; person bouncing ball: medium-light skin tone # E2.0 [1] (⛹🏼) 26F9 1F3FD ; RGI_Emoji_Modifier_Sequence ; person bouncing ball: medium skin tone # E2.0 [1] (⛹🏽) 26F9 1F3FE ; RGI_Emoji_Modifier_Sequence ; person bouncing ball: medium-dark skin tone # E2.0 [1] (⛹🏾) 26F9 1F3FF ; RGI_Emoji_Modifier_Sequence ; person bouncing ball: dark skin tone # E2.0 [1] (⛹🏿) 270A 1F3FB ; RGI_Emoji_Modifier_Sequence ; raised fist: light skin tone # E1.0 [1] (✊🏻) 270A 1F3FC ; RGI_Emoji_Modifier_Sequence ; raised fist: medium-light skin tone # E1.0 [1] (✊🏼) 270A 1F3FD ; RGI_Emoji_Modifier_Sequence ; raised fist: medium skin tone # E1.0 [1] (✊🏽) 270A 1F3FE ; RGI_Emoji_Modifier_Sequence ; raised fist: medium-dark skin tone # E1.0 [1] (✊🏾) 270A 1F3FF ; RGI_Emoji_Modifier_Sequence ; raised fist: dark skin tone # E1.0 [1] (✊🏿) 270B 1F3FB ; RGI_Emoji_Modifier_Sequence ; raised hand: light skin tone # E1.0 [1] (✋🏻) 270B 1F3FC ; RGI_Emoji_Modifier_Sequence ; raised hand: medium-light skin tone # E1.0 [1] (✋🏼) 270B 1F3FD ; RGI_Emoji_Modifier_Sequence ; raised hand: medium skin tone # E1.0 [1] (✋🏽) 270B 1F3FE ; RGI_Emoji_Modifier_Sequence ; raised hand: medium-dark skin tone # E1.0 [1] (✋🏾) 270B 1F3FF ; RGI_Emoji_Modifier_Sequence ; raised hand: dark skin tone # E1.0 [1] (✋🏿) 270C 1F3FB ; RGI_Emoji_Modifier_Sequence ; victory hand: light skin tone # E1.0 [1] (✌🏻) 270C 1F3FC ; RGI_Emoji_Modifier_Sequence ; victory hand: medium-light skin tone # E1.0 [1] (✌🏼) 270C 1F3FD ; RGI_Emoji_Modifier_Sequence ; victory hand: medium skin tone # E1.0 [1] (✌🏽) 270C 1F3FE ; RGI_Emoji_Modifier_Sequence ; victory hand: medium-dark skin tone # E1.0 [1] (✌🏾) 270C 1F3FF ; RGI_Emoji_Modifier_Sequence ; victory hand: dark skin tone # E1.0 [1] (✌🏿) 270D 1F3FB ; RGI_Emoji_Modifier_Sequence ; writing hand: light skin tone # E1.0 [1] (✍🏻) 270D 1F3FC ; RGI_Emoji_Modifier_Sequence ; writing hand: medium-light skin tone # E1.0 [1] (✍🏼) 270D 1F3FD ; RGI_Emoji_Modifier_Sequence ; writing hand: medium skin tone # E1.0 [1] (✍🏽) 270D 1F3FE ; RGI_Emoji_Modifier_Sequence ; writing hand: medium-dark skin tone # E1.0 [1] (✍🏾) 270D 1F3FF ; RGI_Emoji_Modifier_Sequence ; writing hand: dark skin tone # E1.0 [1] (✍🏿) 1F385 1F3FB ; RGI_Emoji_Modifier_Sequence ; Santa Claus: light skin tone # E1.0 [1] (🎅🏻) 1F385 1F3FC ; RGI_Emoji_Modifier_Sequence ; Santa Claus: medium-light skin tone # E1.0 [1] (🎅🏼) 1F385 1F3FD ; RGI_Emoji_Modifier_Sequence ; Santa Claus: medium skin tone # E1.0 [1] (🎅🏽) 1F385 1F3FE ; RGI_Emoji_Modifier_Sequence ; Santa Claus: medium-dark skin tone # E1.0 [1] (🎅🏾) 1F385 1F3FF ; RGI_Emoji_Modifier_Sequence ; Santa Claus: dark skin tone # E1.0 [1] (🎅🏿) 1F3C2 1F3FB ; RGI_Emoji_Modifier_Sequence ; snowboarder: light skin tone # E1.0 [1] (🏂🏻) 1F3C2 1F3FC ; RGI_Emoji_Modifier_Sequence ; snowboarder: medium-light skin tone # E1.0 [1] (🏂🏼) 1F3C2 1F3FD ; RGI_Emoji_Modifier_Sequence ; snowboarder: medium skin tone # E1.0 [1] (🏂🏽) 1F3C2 1F3FE ; RGI_Emoji_Modifier_Sequence ; snowboarder: medium-dark skin tone # E1.0 [1] (🏂🏾) 1F3C2 1F3FF ; RGI_Emoji_Modifier_Sequence ; snowboarder: dark skin tone # E1.0 [1] (🏂🏿) 1F3C3 1F3FB ; RGI_Emoji_Modifier_Sequence ; person running: light skin tone # E1.0 [1] (🏃🏻) 1F3C3 1F3FC ; RGI_Emoji_Modifier_Sequence ; person running: medium-light skin tone # E1.0 [1] (🏃🏼) 1F3C3 1F3FD ; RGI_Emoji_Modifier_Sequence ; person running: medium skin tone # E1.0 [1] (🏃🏽) 1F3C3 1F3FE ; RGI_Emoji_Modifier_Sequence ; person running: medium-dark skin tone # E1.0 [1] (🏃🏾) 1F3C3 1F3FF ; RGI_Emoji_Modifier_Sequence ; person running: dark skin tone # E1.0 [1] (🏃🏿) 1F3C4 1F3FB ; RGI_Emoji_Modifier_Sequence ; person surfing: light skin tone # E1.0 [1] (🏄🏻) 1F3C4 1F3FC ; RGI_Emoji_Modifier_Sequence ; person surfing: medium-light skin tone # E1.0 [1] (🏄🏼) 1F3C4 1F3FD ; RGI_Emoji_Modifier_Sequence ; person surfing: medium skin tone # E1.0 [1] (🏄🏽) 1F3C4 1F3FE ; RGI_Emoji_Modifier_Sequence ; person surfing: medium-dark skin tone # E1.0 [1] (🏄🏾) 1F3C4 1F3FF ; RGI_Emoji_Modifier_Sequence ; person surfing: dark skin tone # E1.0 [1] (🏄🏿) 1F3C7 1F3FB ; RGI_Emoji_Modifier_Sequence ; horse racing: light skin tone # E1.0 [1] (🏇🏻) 1F3C7 1F3FC ; RGI_Emoji_Modifier_Sequence ; horse racing: medium-light skin tone # E1.0 [1] (🏇🏼) 1F3C7 1F3FD ; RGI_Emoji_Modifier_Sequence ; horse racing: medium skin tone # E1.0 [1] (🏇🏽) 1F3C7 1F3FE ; RGI_Emoji_Modifier_Sequence ; horse racing: medium-dark skin tone # E1.0 [1] (🏇🏾) 1F3C7 1F3FF ; RGI_Emoji_Modifier_Sequence ; horse racing: dark skin tone # E1.0 [1] (🏇🏿) 1F3CA 1F3FB ; RGI_Emoji_Modifier_Sequence ; person swimming: light skin tone # E1.0 [1] (🏊🏻) 1F3CA 1F3FC ; RGI_Emoji_Modifier_Sequence ; person swimming: medium-light skin tone # E1.0 [1] (🏊🏼) 1F3CA 1F3FD ; RGI_Emoji_Modifier_Sequence ; person swimming: medium skin tone # E1.0 [1] (🏊🏽) 1F3CA 1F3FE ; RGI_Emoji_Modifier_Sequence ; person swimming: medium-dark skin tone # E1.0 [1] (🏊🏾) 1F3CA 1F3FF ; RGI_Emoji_Modifier_Sequence ; person swimming: dark skin tone # E1.0 [1] (🏊🏿) 1F3CB 1F3FB ; RGI_Emoji_Modifier_Sequence ; person lifting weights: light skin tone # E2.0 [1] (🏋🏻) 1F3CB 1F3FC ; RGI_Emoji_Modifier_Sequence ; person lifting weights: medium-light skin tone # E2.0 [1] (🏋🏼) 1F3CB 1F3FD ; RGI_Emoji_Modifier_Sequence ; person lifting weights: medium skin tone # E2.0 [1] (🏋🏽) 1F3CB 1F3FE ; RGI_Emoji_Modifier_Sequence ; person lifting weights: medium-dark skin tone # E2.0 [1] (🏋🏾) 1F3CB 1F3FF ; RGI_Emoji_Modifier_Sequence ; person lifting weights: dark skin tone # E2.0 [1] (🏋🏿) 1F3CC 1F3FB ; RGI_Emoji_Modifier_Sequence ; person golfing: light skin tone # E4.0 [1] (🏌🏻) 1F3CC 1F3FC ; RGI_Emoji_Modifier_Sequence ; person golfing: medium-light skin tone # E4.0 [1] (🏌🏼) 1F3CC 1F3FD ; RGI_Emoji_Modifier_Sequence ; person golfing: medium skin tone # E4.0 [1] (🏌🏽) 1F3CC 1F3FE ; RGI_Emoji_Modifier_Sequence ; person golfing: medium-dark skin tone # E4.0 [1] (🏌🏾) 1F3CC 1F3FF ; RGI_Emoji_Modifier_Sequence ; person golfing: dark skin tone # E4.0 [1] (🏌🏿) 1F442 1F3FB ; RGI_Emoji_Modifier_Sequence ; ear: light skin tone # E1.0 [1] (👂🏻) 1F442 1F3FC ; RGI_Emoji_Modifier_Sequence ; ear: medium-light skin tone # E1.0 [1] (👂🏼) 1F442 1F3FD ; RGI_Emoji_Modifier_Sequence ; ear: medium skin tone # E1.0 [1] (👂🏽) 1F442 1F3FE ; RGI_Emoji_Modifier_Sequence ; ear: medium-dark skin tone # E1.0 [1] (👂🏾) 1F442 1F3FF ; RGI_Emoji_Modifier_Sequence ; ear: dark skin tone # E1.0 [1] (👂🏿) 1F443 1F3FB ; RGI_Emoji_Modifier_Sequence ; nose: light skin tone # E1.0 [1] (👃🏻) 1F443 1F3FC ; RGI_Emoji_Modifier_Sequence ; nose: medium-light skin tone # E1.0 [1] (👃🏼) 1F443 1F3FD ; RGI_Emoji_Modifier_Sequence ; nose: medium skin tone # E1.0 [1] (👃🏽) 1F443 1F3FE ; RGI_Emoji_Modifier_Sequence ; nose: medium-dark skin tone # E1.0 [1] (👃🏾) 1F443 1F3FF ; RGI_Emoji_Modifier_Sequence ; nose: dark skin tone # E1.0 [1] (👃🏿) 1F446 1F3FB ; RGI_Emoji_Modifier_Sequence ; backhand index pointing up: light skin tone # E1.0 [1] (👆🏻) 1F446 1F3FC ; RGI_Emoji_Modifier_Sequence ; backhand index pointing up: medium-light skin tone # E1.0 [1] (👆🏼) 1F446 1F3FD ; RGI_Emoji_Modifier_Sequence ; backhand index pointing up: medium skin tone # E1.0 [1] (👆🏽) 1F446 1F3FE ; RGI_Emoji_Modifier_Sequence ; backhand index pointing up: medium-dark skin tone # E1.0 [1] (👆🏾) 1F446 1F3FF ; RGI_Emoji_Modifier_Sequence ; backhand index pointing up: dark skin tone # E1.0 [1] (👆🏿) 1F447 1F3FB ; RGI_Emoji_Modifier_Sequence ; backhand index pointing down: light skin tone # E1.0 [1] (👇🏻) 1F447 1F3FC ; RGI_Emoji_Modifier_Sequence ; backhand index pointing down: medium-light skin tone # E1.0 [1] (👇🏼) 1F447 1F3FD ; RGI_Emoji_Modifier_Sequence ; backhand index pointing down: medium skin tone # E1.0 [1] (👇🏽) 1F447 1F3FE ; RGI_Emoji_Modifier_Sequence ; backhand index pointing down: medium-dark skin tone # E1.0 [1] (👇🏾) 1F447 1F3FF ; RGI_Emoji_Modifier_Sequence ; backhand index pointing down: dark skin tone # E1.0 [1] (👇🏿) 1F448 1F3FB ; RGI_Emoji_Modifier_Sequence ; backhand index pointing left: light skin tone # E1.0 [1] (👈🏻) 1F448 1F3FC ; RGI_Emoji_Modifier_Sequence ; backhand index pointing left: medium-light skin tone # E1.0 [1] (👈🏼) 1F448 1F3FD ; RGI_Emoji_Modifier_Sequence ; backhand index pointing left: medium skin tone # E1.0 [1] (👈🏽) 1F448 1F3FE ; RGI_Emoji_Modifier_Sequence ; backhand index pointing left: medium-dark skin tone # E1.0 [1] (👈🏾) 1F448 1F3FF ; RGI_Emoji_Modifier_Sequence ; backhand index pointing left: dark skin tone # E1.0 [1] (👈🏿) 1F449 1F3FB ; RGI_Emoji_Modifier_Sequence ; backhand index pointing right: light skin tone # E1.0 [1] (👉🏻) 1F449 1F3FC ; RGI_Emoji_Modifier_Sequence ; backhand index pointing right: medium-light skin tone # E1.0 [1] (👉🏼) 1F449 1F3FD ; RGI_Emoji_Modifier_Sequence ; backhand index pointing right: medium skin tone # E1.0 [1] (👉🏽) 1F449 1F3FE ; RGI_Emoji_Modifier_Sequence ; backhand index pointing right: medium-dark skin tone # E1.0 [1] (👉🏾) 1F449 1F3FF ; RGI_Emoji_Modifier_Sequence ; backhand index pointing right: dark skin tone # E1.0 [1] (👉🏿) 1F44A 1F3FB ; RGI_Emoji_Modifier_Sequence ; oncoming fist: light skin tone # E1.0 [1] (👊🏻) 1F44A 1F3FC ; RGI_Emoji_Modifier_Sequence ; oncoming fist: medium-light skin tone # E1.0 [1] (👊🏼) 1F44A 1F3FD ; RGI_Emoji_Modifier_Sequence ; oncoming fist: medium skin tone # E1.0 [1] (👊🏽) 1F44A 1F3FE ; RGI_Emoji_Modifier_Sequence ; oncoming fist: medium-dark skin tone # E1.0 [1] (👊🏾) 1F44A 1F3FF ; RGI_Emoji_Modifier_Sequence ; oncoming fist: dark skin tone # E1.0 [1] (👊🏿) 1F44B 1F3FB ; RGI_Emoji_Modifier_Sequence ; waving hand: light skin tone # E1.0 [1] (👋🏻) 1F44B 1F3FC ; RGI_Emoji_Modifier_Sequence ; waving hand: medium-light skin tone # E1.0 [1] (👋🏼) 1F44B 1F3FD ; RGI_Emoji_Modifier_Sequence ; waving hand: medium skin tone # E1.0 [1] (👋🏽) 1F44B 1F3FE ; RGI_Emoji_Modifier_Sequence ; waving hand: medium-dark skin tone # E1.0 [1] (👋🏾) 1F44B 1F3FF ; RGI_Emoji_Modifier_Sequence ; waving hand: dark skin tone # E1.0 [1] (👋🏿) 1F44C 1F3FB ; RGI_Emoji_Modifier_Sequence ; OK hand: light skin tone # E1.0 [1] (👌🏻) 1F44C 1F3FC ; RGI_Emoji_Modifier_Sequence ; OK hand: medium-light skin tone # E1.0 [1] (👌🏼) 1F44C 1F3FD ; RGI_Emoji_Modifier_Sequence ; OK hand: medium skin tone # E1.0 [1] (👌🏽) 1F44C 1F3FE ; RGI_Emoji_Modifier_Sequence ; OK hand: medium-dark skin tone # E1.0 [1] (👌🏾) 1F44C 1F3FF ; RGI_Emoji_Modifier_Sequence ; OK hand: dark skin tone # E1.0 [1] (👌🏿) 1F44D 1F3FB ; RGI_Emoji_Modifier_Sequence ; thumbs up: light skin tone # E1.0 [1] (👍🏻) 1F44D 1F3FC ; RGI_Emoji_Modifier_Sequence ; thumbs up: medium-light skin tone # E1.0 [1] (👍🏼) 1F44D 1F3FD ; RGI_Emoji_Modifier_Sequence ; thumbs up: medium skin tone # E1.0 [1] (👍🏽) 1F44D 1F3FE ; RGI_Emoji_Modifier_Sequence ; thumbs up: medium-dark skin tone # E1.0 [1] (👍🏾) 1F44D 1F3FF ; RGI_Emoji_Modifier_Sequence ; thumbs up: dark skin tone # E1.0 [1] (👍🏿) 1F44E 1F3FB ; RGI_Emoji_Modifier_Sequence ; thumbs down: light skin tone # E1.0 [1] (👎🏻) 1F44E 1F3FC ; RGI_Emoji_Modifier_Sequence ; thumbs down: medium-light skin tone # E1.0 [1] (👎🏼) 1F44E 1F3FD ; RGI_Emoji_Modifier_Sequence ; thumbs down: medium skin tone # E1.0 [1] (👎🏽) 1F44E 1F3FE ; RGI_Emoji_Modifier_Sequence ; thumbs down: medium-dark skin tone # E1.0 [1] (👎🏾) 1F44E 1F3FF ; RGI_Emoji_Modifier_Sequence ; thumbs down: dark skin tone # E1.0 [1] (👎🏿) 1F44F 1F3FB ; RGI_Emoji_Modifier_Sequence ; clapping hands: light skin tone # E1.0 [1] (👏🏻) 1F44F 1F3FC ; RGI_Emoji_Modifier_Sequence ; clapping hands: medium-light skin tone # E1.0 [1] (👏🏼) 1F44F 1F3FD ; RGI_Emoji_Modifier_Sequence ; clapping hands: medium skin tone # E1.0 [1] (👏🏽) 1F44F 1F3FE ; RGI_Emoji_Modifier_Sequence ; clapping hands: medium-dark skin tone # E1.0 [1] (👏🏾) 1F44F 1F3FF ; RGI_Emoji_Modifier_Sequence ; clapping hands: dark skin tone # E1.0 [1] (👏🏿) 1F450 1F3FB ; RGI_Emoji_Modifier_Sequence ; open hands: light skin tone # E1.0 [1] (👐🏻) 1F450 1F3FC ; RGI_Emoji_Modifier_Sequence ; open hands: medium-light skin tone # E1.0 [1] (👐🏼) 1F450 1F3FD ; RGI_Emoji_Modifier_Sequence ; open hands: medium skin tone # E1.0 [1] (👐🏽) 1F450 1F3FE ; RGI_Emoji_Modifier_Sequence ; open hands: medium-dark skin tone # E1.0 [1] (👐🏾) 1F450 1F3FF ; RGI_Emoji_Modifier_Sequence ; open hands: dark skin tone # E1.0 [1] (👐🏿) 1F466 1F3FB ; RGI_Emoji_Modifier_Sequence ; boy: light skin tone # E1.0 [1] (👦🏻) 1F466 1F3FC ; RGI_Emoji_Modifier_Sequence ; boy: medium-light skin tone # E1.0 [1] (👦🏼) 1F466 1F3FD ; RGI_Emoji_Modifier_Sequence ; boy: medium skin tone # E1.0 [1] (👦🏽) 1F466 1F3FE ; RGI_Emoji_Modifier_Sequence ; boy: medium-dark skin tone # E1.0 [1] (👦🏾) 1F466 1F3FF ; RGI_Emoji_Modifier_Sequence ; boy: dark skin tone # E1.0 [1] (👦🏿) 1F467 1F3FB ; RGI_Emoji_Modifier_Sequence ; girl: light skin tone # E1.0 [1] (👧🏻) 1F467 1F3FC ; RGI_Emoji_Modifier_Sequence ; girl: medium-light skin tone # E1.0 [1] (👧🏼) 1F467 1F3FD ; RGI_Emoji_Modifier_Sequence ; girl: medium skin tone # E1.0 [1] (👧🏽) 1F467 1F3FE ; RGI_Emoji_Modifier_Sequence ; girl: medium-dark skin tone # E1.0 [1] (👧🏾) 1F467 1F3FF ; RGI_Emoji_Modifier_Sequence ; girl: dark skin tone # E1.0 [1] (👧🏿) 1F468 1F3FB ; RGI_Emoji_Modifier_Sequence ; man: light skin tone # E1.0 [1] (👨🏻) 1F468 1F3FC ; RGI_Emoji_Modifier_Sequence ; man: medium-light skin tone # E1.0 [1] (👨🏼) 1F468 1F3FD ; RGI_Emoji_Modifier_Sequence ; man: medium skin tone # E1.0 [1] (👨🏽) 1F468 1F3FE ; RGI_Emoji_Modifier_Sequence ; man: medium-dark skin tone # E1.0 [1] (👨🏾) 1F468 1F3FF ; RGI_Emoji_Modifier_Sequence ; man: dark skin tone # E1.0 [1] (👨🏿) 1F469 1F3FB ; RGI_Emoji_Modifier_Sequence ; woman: light skin tone # E1.0 [1] (👩🏻) 1F469 1F3FC ; RGI_Emoji_Modifier_Sequence ; woman: medium-light skin tone # E1.0 [1] (👩🏼) 1F469 1F3FD ; RGI_Emoji_Modifier_Sequence ; woman: medium skin tone # E1.0 [1] (👩🏽) 1F469 1F3FE ; RGI_Emoji_Modifier_Sequence ; woman: medium-dark skin tone # E1.0 [1] (👩🏾) 1F469 1F3FF ; RGI_Emoji_Modifier_Sequence ; woman: dark skin tone # E1.0 [1] (👩🏿) 1F46B 1F3FB ; RGI_Emoji_Modifier_Sequence ; woman and man holding hands: light skin tone # E12.0 [1] (👫🏻) 1F46B 1F3FC ; RGI_Emoji_Modifier_Sequence ; woman and man holding hands: medium-light skin tone # E12.0 [1] (👫🏼) 1F46B 1F3FD ; RGI_Emoji_Modifier_Sequence ; woman and man holding hands: medium skin tone # E12.0 [1] (👫🏽) 1F46B 1F3FE ; RGI_Emoji_Modifier_Sequence ; woman and man holding hands: medium-dark skin tone # E12.0 [1] (👫🏾) 1F46B 1F3FF ; RGI_Emoji_Modifier_Sequence ; woman and man holding hands: dark skin tone # E12.0 [1] (👫🏿) 1F46C 1F3FB ; RGI_Emoji_Modifier_Sequence ; men holding hands: light skin tone # E12.0 [1] (👬🏻) 1F46C 1F3FC ; RGI_Emoji_Modifier_Sequence ; men holding hands: medium-light skin tone # E12.0 [1] (👬🏼) 1F46C 1F3FD ; RGI_Emoji_Modifier_Sequence ; men holding hands: medium skin tone # E12.0 [1] (👬🏽) 1F46C 1F3FE ; RGI_Emoji_Modifier_Sequence ; men holding hands: medium-dark skin tone # E12.0 [1] (👬🏾) 1F46C 1F3FF ; RGI_Emoji_Modifier_Sequence ; men holding hands: dark skin tone # E12.0 [1] (👬🏿) 1F46D 1F3FB ; RGI_Emoji_Modifier_Sequence ; women holding hands: light skin tone # E12.0 [1] (👭🏻) 1F46D 1F3FC ; RGI_Emoji_Modifier_Sequence ; women holding hands: medium-light skin tone # E12.0 [1] (👭🏼) 1F46D 1F3FD ; RGI_Emoji_Modifier_Sequence ; women holding hands: medium skin tone # E12.0 [1] (👭🏽) 1F46D 1F3FE ; RGI_Emoji_Modifier_Sequence ; women holding hands: medium-dark skin tone # E12.0 [1] (👭🏾) 1F46D 1F3FF ; RGI_Emoji_Modifier_Sequence ; women holding hands: dark skin tone # E12.0 [1] (👭🏿) 1F46E 1F3FB ; RGI_Emoji_Modifier_Sequence ; police officer: light skin tone # E1.0 [1] (👮🏻) 1F46E 1F3FC ; RGI_Emoji_Modifier_Sequence ; police officer: medium-light skin tone # E1.0 [1] (👮🏼) 1F46E 1F3FD ; RGI_Emoji_Modifier_Sequence ; police officer: medium skin tone # E1.0 [1] (👮🏽) 1F46E 1F3FE ; RGI_Emoji_Modifier_Sequence ; police officer: medium-dark skin tone # E1.0 [1] (👮🏾) 1F46E 1F3FF ; RGI_Emoji_Modifier_Sequence ; police officer: dark skin tone # E1.0 [1] (👮🏿) 1F470 1F3FB ; RGI_Emoji_Modifier_Sequence ; person with veil: light skin tone # E1.0 [1] (👰🏻) 1F470 1F3FC ; RGI_Emoji_Modifier_Sequence ; person with veil: medium-light skin tone # E1.0 [1] (👰🏼) 1F470 1F3FD ; RGI_Emoji_Modifier_Sequence ; person with veil: medium skin tone # E1.0 [1] (👰🏽) 1F470 1F3FE ; RGI_Emoji_Modifier_Sequence ; person with veil: medium-dark skin tone # E1.0 [1] (👰🏾) 1F470 1F3FF ; RGI_Emoji_Modifier_Sequence ; person with veil: dark skin tone # E1.0 [1] (👰🏿) 1F471 1F3FB ; RGI_Emoji_Modifier_Sequence ; person: light skin tone, blond hair # E1.0 [1] (👱🏻) 1F471 1F3FC ; RGI_Emoji_Modifier_Sequence ; person: medium-light skin tone, blond hair # E1.0 [1] (👱🏼) 1F471 1F3FD ; RGI_Emoji_Modifier_Sequence ; person: medium skin tone, blond hair # E1.0 [1] (👱🏽) 1F471 1F3FE ; RGI_Emoji_Modifier_Sequence ; person: medium-dark skin tone, blond hair # E1.0 [1] (👱🏾) 1F471 1F3FF ; RGI_Emoji_Modifier_Sequence ; person: dark skin tone, blond hair # E1.0 [1] (👱🏿) 1F472 1F3FB ; RGI_Emoji_Modifier_Sequence ; person with skullcap: light skin tone # E1.0 [1] (👲🏻) 1F472 1F3FC ; RGI_Emoji_Modifier_Sequence ; person with skullcap: medium-light skin tone # E1.0 [1] (👲🏼) 1F472 1F3FD ; RGI_Emoji_Modifier_Sequence ; person with skullcap: medium skin tone # E1.0 [1] (👲🏽) 1F472 1F3FE ; RGI_Emoji_Modifier_Sequence ; person with skullcap: medium-dark skin tone # E1.0 [1] (👲🏾) 1F472 1F3FF ; RGI_Emoji_Modifier_Sequence ; person with skullcap: dark skin tone # E1.0 [1] (👲🏿) 1F473 1F3FB ; RGI_Emoji_Modifier_Sequence ; person wearing turban: light skin tone # E1.0 [1] (👳🏻) 1F473 1F3FC ; RGI_Emoji_Modifier_Sequence ; person wearing turban: medium-light skin tone # E1.0 [1] (👳🏼) 1F473 1F3FD ; RGI_Emoji_Modifier_Sequence ; person wearing turban: medium skin tone # E1.0 [1] (👳🏽) 1F473 1F3FE ; RGI_Emoji_Modifier_Sequence ; person wearing turban: medium-dark skin tone # E1.0 [1] (👳🏾) 1F473 1F3FF ; RGI_Emoji_Modifier_Sequence ; person wearing turban: dark skin tone # E1.0 [1] (👳🏿) 1F474 1F3FB ; RGI_Emoji_Modifier_Sequence ; old man: light skin tone # E1.0 [1] (👴🏻) 1F474 1F3FC ; RGI_Emoji_Modifier_Sequence ; old man: medium-light skin tone # E1.0 [1] (👴🏼) 1F474 1F3FD ; RGI_Emoji_Modifier_Sequence ; old man: medium skin tone # E1.0 [1] (👴🏽) 1F474 1F3FE ; RGI_Emoji_Modifier_Sequence ; old man: medium-dark skin tone # E1.0 [1] (👴🏾) 1F474 1F3FF ; RGI_Emoji_Modifier_Sequence ; old man: dark skin tone # E1.0 [1] (👴🏿) 1F475 1F3FB ; RGI_Emoji_Modifier_Sequence ; old woman: light skin tone # E1.0 [1] (👵🏻) 1F475 1F3FC ; RGI_Emoji_Modifier_Sequence ; old woman: medium-light skin tone # E1.0 [1] (👵🏼) 1F475 1F3FD ; RGI_Emoji_Modifier_Sequence ; old woman: medium skin tone # E1.0 [1] (👵🏽) 1F475 1F3FE ; RGI_Emoji_Modifier_Sequence ; old woman: medium-dark skin tone # E1.0 [1] (👵🏾) 1F475 1F3FF ; RGI_Emoji_Modifier_Sequence ; old woman: dark skin tone # E1.0 [1] (👵🏿) 1F476 1F3FB ; RGI_Emoji_Modifier_Sequence ; baby: light skin tone # E1.0 [1] (👶🏻) 1F476 1F3FC ; RGI_Emoji_Modifier_Sequence ; baby: medium-light skin tone # E1.0 [1] (👶🏼) 1F476 1F3FD ; RGI_Emoji_Modifier_Sequence ; baby: medium skin tone # E1.0 [1] (👶🏽) 1F476 1F3FE ; RGI_Emoji_Modifier_Sequence ; baby: medium-dark skin tone # E1.0 [1] (👶🏾) 1F476 1F3FF ; RGI_Emoji_Modifier_Sequence ; baby: dark skin tone # E1.0 [1] (👶🏿) 1F477 1F3FB ; RGI_Emoji_Modifier_Sequence ; construction worker: light skin tone # E1.0 [1] (👷🏻) 1F477 1F3FC ; RGI_Emoji_Modifier_Sequence ; construction worker: medium-light skin tone # E1.0 [1] (👷🏼) 1F477 1F3FD ; RGI_Emoji_Modifier_Sequence ; construction worker: medium skin tone # E1.0 [1] (👷🏽) 1F477 1F3FE ; RGI_Emoji_Modifier_Sequence ; construction worker: medium-dark skin tone # E1.0 [1] (👷🏾) 1F477 1F3FF ; RGI_Emoji_Modifier_Sequence ; construction worker: dark skin tone # E1.0 [1] (👷🏿) 1F478 1F3FB ; RGI_Emoji_Modifier_Sequence ; princess: light skin tone # E1.0 [1] (👸🏻) 1F478 1F3FC ; RGI_Emoji_Modifier_Sequence ; princess: medium-light skin tone # E1.0 [1] (👸🏼) 1F478 1F3FD ; RGI_Emoji_Modifier_Sequence ; princess: medium skin tone # E1.0 [1] (👸🏽) 1F478 1F3FE ; RGI_Emoji_Modifier_Sequence ; princess: medium-dark skin tone # E1.0 [1] (👸🏾) 1F478 1F3FF ; RGI_Emoji_Modifier_Sequence ; princess: dark skin tone # E1.0 [1] (👸🏿) 1F47C 1F3FB ; RGI_Emoji_Modifier_Sequence ; baby angel: light skin tone # E1.0 [1] (👼🏻) 1F47C 1F3FC ; RGI_Emoji_Modifier_Sequence ; baby angel: medium-light skin tone # E1.0 [1] (👼🏼) 1F47C 1F3FD ; RGI_Emoji_Modifier_Sequence ; baby angel: medium skin tone # E1.0 [1] (👼🏽) 1F47C 1F3FE ; RGI_Emoji_Modifier_Sequence ; baby angel: medium-dark skin tone # E1.0 [1] (👼🏾) 1F47C 1F3FF ; RGI_Emoji_Modifier_Sequence ; baby angel: dark skin tone # E1.0 [1] (👼🏿) 1F481 1F3FB ; RGI_Emoji_Modifier_Sequence ; person tipping hand: light skin tone # E1.0 [1] (💁🏻) 1F481 1F3FC ; RGI_Emoji_Modifier_Sequence ; person tipping hand: medium-light skin tone # E1.0 [1] (💁🏼) 1F481 1F3FD ; RGI_Emoji_Modifier_Sequence ; person tipping hand: medium skin tone # E1.0 [1] (💁🏽) 1F481 1F3FE ; RGI_Emoji_Modifier_Sequence ; person tipping hand: medium-dark skin tone # E1.0 [1] (💁🏾) 1F481 1F3FF ; RGI_Emoji_Modifier_Sequence ; person tipping hand: dark skin tone # E1.0 [1] (💁🏿) 1F482 1F3FB ; RGI_Emoji_Modifier_Sequence ; guard: light skin tone # E1.0 [1] (💂🏻) 1F482 1F3FC ; RGI_Emoji_Modifier_Sequence ; guard: medium-light skin tone # E1.0 [1] (💂🏼) 1F482 1F3FD ; RGI_Emoji_Modifier_Sequence ; guard: medium skin tone # E1.0 [1] (💂🏽) 1F482 1F3FE ; RGI_Emoji_Modifier_Sequence ; guard: medium-dark skin tone # E1.0 [1] (💂🏾) 1F482 1F3FF ; RGI_Emoji_Modifier_Sequence ; guard: dark skin tone # E1.0 [1] (💂🏿) 1F483 1F3FB ; RGI_Emoji_Modifier_Sequence ; woman dancing: light skin tone # E1.0 [1] (💃🏻) 1F483 1F3FC ; RGI_Emoji_Modifier_Sequence ; woman dancing: medium-light skin tone # E1.0 [1] (💃🏼) 1F483 1F3FD ; RGI_Emoji_Modifier_Sequence ; woman dancing: medium skin tone # E1.0 [1] (💃🏽) 1F483 1F3FE ; RGI_Emoji_Modifier_Sequence ; woman dancing: medium-dark skin tone # E1.0 [1] (💃🏾) 1F483 1F3FF ; RGI_Emoji_Modifier_Sequence ; woman dancing: dark skin tone # E1.0 [1] (💃🏿) 1F485 1F3FB ; RGI_Emoji_Modifier_Sequence ; nail polish: light skin tone # E1.0 [1] (💅🏻) 1F485 1F3FC ; RGI_Emoji_Modifier_Sequence ; nail polish: medium-light skin tone # E1.0 [1] (💅🏼) 1F485 1F3FD ; RGI_Emoji_Modifier_Sequence ; nail polish: medium skin tone # E1.0 [1] (💅🏽) 1F485 1F3FE ; RGI_Emoji_Modifier_Sequence ; nail polish: medium-dark skin tone # E1.0 [1] (💅🏾) 1F485 1F3FF ; RGI_Emoji_Modifier_Sequence ; nail polish: dark skin tone # E1.0 [1] (💅🏿) 1F486 1F3FB ; RGI_Emoji_Modifier_Sequence ; person getting massage: light skin tone # E1.0 [1] (💆🏻) 1F486 1F3FC ; RGI_Emoji_Modifier_Sequence ; person getting massage: medium-light skin tone # E1.0 [1] (💆🏼) 1F486 1F3FD ; RGI_Emoji_Modifier_Sequence ; person getting massage: medium skin tone # E1.0 [1] (💆🏽) 1F486 1F3FE ; RGI_Emoji_Modifier_Sequence ; person getting massage: medium-dark skin tone # E1.0 [1] (💆🏾) 1F486 1F3FF ; RGI_Emoji_Modifier_Sequence ; person getting massage: dark skin tone # E1.0 [1] (💆🏿) 1F487 1F3FB ; RGI_Emoji_Modifier_Sequence ; person getting haircut: light skin tone # E1.0 [1] (💇🏻) 1F487 1F3FC ; RGI_Emoji_Modifier_Sequence ; person getting haircut: medium-light skin tone # E1.0 [1] (💇🏼) 1F487 1F3FD ; RGI_Emoji_Modifier_Sequence ; person getting haircut: medium skin tone # E1.0 [1] (💇🏽) 1F487 1F3FE ; RGI_Emoji_Modifier_Sequence ; person getting haircut: medium-dark skin tone # E1.0 [1] (💇🏾) 1F487 1F3FF ; RGI_Emoji_Modifier_Sequence ; person getting haircut: dark skin tone # E1.0 [1] (💇🏿) 1F48F 1F3FB ; RGI_Emoji_Modifier_Sequence ; kiss: light skin tone # E13.1 [1] (💏🏻) 1F48F 1F3FC ; RGI_Emoji_Modifier_Sequence ; kiss: medium-light skin tone # E13.1 [1] (💏🏼) 1F48F 1F3FD ; RGI_Emoji_Modifier_Sequence ; kiss: medium skin tone # E13.1 [1] (💏🏽) 1F48F 1F3FE ; RGI_Emoji_Modifier_Sequence ; kiss: medium-dark skin tone # E13.1 [1] (💏🏾) 1F48F 1F3FF ; RGI_Emoji_Modifier_Sequence ; kiss: dark skin tone # E13.1 [1] (💏🏿) 1F491 1F3FB ; RGI_Emoji_Modifier_Sequence ; couple with heart: light skin tone # E13.1 [1] (💑🏻) 1F491 1F3FC ; RGI_Emoji_Modifier_Sequence ; couple with heart: medium-light skin tone # E13.1 [1] (💑🏼) 1F491 1F3FD ; RGI_Emoji_Modifier_Sequence ; couple with heart: medium skin tone # E13.1 [1] (💑🏽) 1F491 1F3FE ; RGI_Emoji_Modifier_Sequence ; couple with heart: medium-dark skin tone # E13.1 [1] (💑🏾) 1F491 1F3FF ; RGI_Emoji_Modifier_Sequence ; couple with heart: dark skin tone # E13.1 [1] (💑🏿) 1F4AA 1F3FB ; RGI_Emoji_Modifier_Sequence ; flexed biceps: light skin tone # E1.0 [1] (💪🏻) 1F4AA 1F3FC ; RGI_Emoji_Modifier_Sequence ; flexed biceps: medium-light skin tone # E1.0 [1] (💪🏼) 1F4AA 1F3FD ; RGI_Emoji_Modifier_Sequence ; flexed biceps: medium skin tone # E1.0 [1] (💪🏽) 1F4AA 1F3FE ; RGI_Emoji_Modifier_Sequence ; flexed biceps: medium-dark skin tone # E1.0 [1] (💪🏾) 1F4AA 1F3FF ; RGI_Emoji_Modifier_Sequence ; flexed biceps: dark skin tone # E1.0 [1] (💪🏿) 1F574 1F3FB ; RGI_Emoji_Modifier_Sequence ; person in suit levitating: light skin tone # E4.0 [1] (🕴🏻) 1F574 1F3FC ; RGI_Emoji_Modifier_Sequence ; person in suit levitating: medium-light skin tone # E4.0 [1] (🕴🏼) 1F574 1F3FD ; RGI_Emoji_Modifier_Sequence ; person in suit levitating: medium skin tone # E4.0 [1] (🕴🏽) 1F574 1F3FE ; RGI_Emoji_Modifier_Sequence ; person in suit levitating: medium-dark skin tone # E4.0 [1] (🕴🏾) 1F574 1F3FF ; RGI_Emoji_Modifier_Sequence ; person in suit levitating: dark skin tone # E4.0 [1] (🕴🏿) 1F575 1F3FB ; RGI_Emoji_Modifier_Sequence ; detective: light skin tone # E2.0 [1] (🕵🏻) 1F575 1F3FC ; RGI_Emoji_Modifier_Sequence ; detective: medium-light skin tone # E2.0 [1] (🕵🏼) 1F575 1F3FD ; RGI_Emoji_Modifier_Sequence ; detective: medium skin tone # E2.0 [1] (🕵🏽) 1F575 1F3FE ; RGI_Emoji_Modifier_Sequence ; detective: medium-dark skin tone # E2.0 [1] (🕵🏾) 1F575 1F3FF ; RGI_Emoji_Modifier_Sequence ; detective: dark skin tone # E2.0 [1] (🕵🏿) 1F57A 1F3FB ; RGI_Emoji_Modifier_Sequence ; man dancing: light skin tone # E3.0 [1] (🕺🏻) 1F57A 1F3FC ; RGI_Emoji_Modifier_Sequence ; man dancing: medium-light skin tone # E3.0 [1] (🕺🏼) 1F57A 1F3FD ; RGI_Emoji_Modifier_Sequence ; man dancing: medium skin tone # E3.0 [1] (🕺🏽) 1F57A 1F3FE ; RGI_Emoji_Modifier_Sequence ; man dancing: medium-dark skin tone # E3.0 [1] (🕺🏾) 1F57A 1F3FF ; RGI_Emoji_Modifier_Sequence ; man dancing: dark skin tone # E3.0 [1] (🕺🏿) 1F590 1F3FB ; RGI_Emoji_Modifier_Sequence ; hand with fingers splayed: light skin tone # E1.0 [1] (🖐🏻) 1F590 1F3FC ; RGI_Emoji_Modifier_Sequence ; hand with fingers splayed: medium-light skin tone # E1.0 [1] (🖐🏼) 1F590 1F3FD ; RGI_Emoji_Modifier_Sequence ; hand with fingers splayed: medium skin tone # E1.0 [1] (🖐🏽) 1F590 1F3FE ; RGI_Emoji_Modifier_Sequence ; hand with fingers splayed: medium-dark skin tone # E1.0 [1] (🖐🏾) 1F590 1F3FF ; RGI_Emoji_Modifier_Sequence ; hand with fingers splayed: dark skin tone # E1.0 [1] (🖐🏿) 1F595 1F3FB ; RGI_Emoji_Modifier_Sequence ; middle finger: light skin tone # E1.0 [1] (🖕🏻) 1F595 1F3FC ; RGI_Emoji_Modifier_Sequence ; middle finger: medium-light skin tone # E1.0 [1] (🖕🏼) 1F595 1F3FD ; RGI_Emoji_Modifier_Sequence ; middle finger: medium skin tone # E1.0 [1] (🖕🏽) 1F595 1F3FE ; RGI_Emoji_Modifier_Sequence ; middle finger: medium-dark skin tone # E1.0 [1] (🖕🏾) 1F595 1F3FF ; RGI_Emoji_Modifier_Sequence ; middle finger: dark skin tone # E1.0 [1] (🖕🏿) 1F596 1F3FB ; RGI_Emoji_Modifier_Sequence ; vulcan salute: light skin tone # E1.0 [1] (🖖🏻) 1F596 1F3FC ; RGI_Emoji_Modifier_Sequence ; vulcan salute: medium-light skin tone # E1.0 [1] (🖖🏼) 1F596 1F3FD ; RGI_Emoji_Modifier_Sequence ; vulcan salute: medium skin tone # E1.0 [1] (🖖🏽) 1F596 1F3FE ; RGI_Emoji_Modifier_Sequence ; vulcan salute: medium-dark skin tone # E1.0 [1] (🖖🏾) 1F596 1F3FF ; RGI_Emoji_Modifier_Sequence ; vulcan salute: dark skin tone # E1.0 [1] (🖖🏿) 1F645 1F3FB ; RGI_Emoji_Modifier_Sequence ; person gesturing NO: light skin tone # E1.0 [1] (🙅🏻) 1F645 1F3FC ; RGI_Emoji_Modifier_Sequence ; person gesturing NO: medium-light skin tone # E1.0 [1] (🙅🏼) 1F645 1F3FD ; RGI_Emoji_Modifier_Sequence ; person gesturing NO: medium skin tone # E1.0 [1] (🙅🏽) 1F645 1F3FE ; RGI_Emoji_Modifier_Sequence ; person gesturing NO: medium-dark skin tone # E1.0 [1] (🙅🏾) 1F645 1F3FF ; RGI_Emoji_Modifier_Sequence ; person gesturing NO: dark skin tone # E1.0 [1] (🙅🏿) 1F646 1F3FB ; RGI_Emoji_Modifier_Sequence ; person gesturing OK: light skin tone # E1.0 [1] (🙆🏻) 1F646 1F3FC ; RGI_Emoji_Modifier_Sequence ; person gesturing OK: medium-light skin tone # E1.0 [1] (🙆🏼) 1F646 1F3FD ; RGI_Emoji_Modifier_Sequence ; person gesturing OK: medium skin tone # E1.0 [1] (🙆🏽) 1F646 1F3FE ; RGI_Emoji_Modifier_Sequence ; person gesturing OK: medium-dark skin tone # E1.0 [1] (🙆🏾) 1F646 1F3FF ; RGI_Emoji_Modifier_Sequence ; person gesturing OK: dark skin tone # E1.0 [1] (🙆🏿) 1F647 1F3FB ; RGI_Emoji_Modifier_Sequence ; person bowing: light skin tone # E1.0 [1] (🙇🏻) 1F647 1F3FC ; RGI_Emoji_Modifier_Sequence ; person bowing: medium-light skin tone # E1.0 [1] (🙇🏼) 1F647 1F3FD ; RGI_Emoji_Modifier_Sequence ; person bowing: medium skin tone # E1.0 [1] (🙇🏽) 1F647 1F3FE ; RGI_Emoji_Modifier_Sequence ; person bowing: medium-dark skin tone # E1.0 [1] (🙇🏾) 1F647 1F3FF ; RGI_Emoji_Modifier_Sequence ; person bowing: dark skin tone # E1.0 [1] (🙇🏿) 1F64B 1F3FB ; RGI_Emoji_Modifier_Sequence ; person raising hand: light skin tone # E1.0 [1] (🙋🏻) 1F64B 1F3FC ; RGI_Emoji_Modifier_Sequence ; person raising hand: medium-light skin tone # E1.0 [1] (🙋🏼) 1F64B 1F3FD ; RGI_Emoji_Modifier_Sequence ; person raising hand: medium skin tone # E1.0 [1] (🙋🏽) 1F64B 1F3FE ; RGI_Emoji_Modifier_Sequence ; person raising hand: medium-dark skin tone # E1.0 [1] (🙋🏾) 1F64B 1F3FF ; RGI_Emoji_Modifier_Sequence ; person raising hand: dark skin tone # E1.0 [1] (🙋🏿) 1F64C 1F3FB ; RGI_Emoji_Modifier_Sequence ; raising hands: light skin tone # E1.0 [1] (🙌🏻) 1F64C 1F3FC ; RGI_Emoji_Modifier_Sequence ; raising hands: medium-light skin tone # E1.0 [1] (🙌🏼) 1F64C 1F3FD ; RGI_Emoji_Modifier_Sequence ; raising hands: medium skin tone # E1.0 [1] (🙌🏽) 1F64C 1F3FE ; RGI_Emoji_Modifier_Sequence ; raising hands: medium-dark skin tone # E1.0 [1] (🙌🏾) 1F64C 1F3FF ; RGI_Emoji_Modifier_Sequence ; raising hands: dark skin tone # E1.0 [1] (🙌🏿) 1F64D 1F3FB ; RGI_Emoji_Modifier_Sequence ; person frowning: light skin tone # E1.0 [1] (🙍🏻) 1F64D 1F3FC ; RGI_Emoji_Modifier_Sequence ; person frowning: medium-light skin tone # E1.0 [1] (🙍🏼) 1F64D 1F3FD ; RGI_Emoji_Modifier_Sequence ; person frowning: medium skin tone # E1.0 [1] (🙍🏽) 1F64D 1F3FE ; RGI_Emoji_Modifier_Sequence ; person frowning: medium-dark skin tone # E1.0 [1] (🙍🏾) 1F64D 1F3FF ; RGI_Emoji_Modifier_Sequence ; person frowning: dark skin tone # E1.0 [1] (🙍🏿) 1F64E 1F3FB ; RGI_Emoji_Modifier_Sequence ; person pouting: light skin tone # E1.0 [1] (🙎🏻) 1F64E 1F3FC ; RGI_Emoji_Modifier_Sequence ; person pouting: medium-light skin tone # E1.0 [1] (🙎🏼) 1F64E 1F3FD ; RGI_Emoji_Modifier_Sequence ; person pouting: medium skin tone # E1.0 [1] (🙎🏽) 1F64E 1F3FE ; RGI_Emoji_Modifier_Sequence ; person pouting: medium-dark skin tone # E1.0 [1] (🙎🏾) 1F64E 1F3FF ; RGI_Emoji_Modifier_Sequence ; person pouting: dark skin tone # E1.0 [1] (🙎🏿) 1F64F 1F3FB ; RGI_Emoji_Modifier_Sequence ; folded hands: light skin tone # E1.0 [1] (🙏🏻) 1F64F 1F3FC ; RGI_Emoji_Modifier_Sequence ; folded hands: medium-light skin tone # E1.0 [1] (🙏🏼) 1F64F 1F3FD ; RGI_Emoji_Modifier_Sequence ; folded hands: medium skin tone # E1.0 [1] (🙏🏽) 1F64F 1F3FE ; RGI_Emoji_Modifier_Sequence ; folded hands: medium-dark skin tone # E1.0 [1] (🙏🏾) 1F64F 1F3FF ; RGI_Emoji_Modifier_Sequence ; folded hands: dark skin tone # E1.0 [1] (🙏🏿) 1F6A3 1F3FB ; RGI_Emoji_Modifier_Sequence ; person rowing boat: light skin tone # E1.0 [1] (🚣🏻) 1F6A3 1F3FC ; RGI_Emoji_Modifier_Sequence ; person rowing boat: medium-light skin tone # E1.0 [1] (🚣🏼) 1F6A3 1F3FD ; RGI_Emoji_Modifier_Sequence ; person rowing boat: medium skin tone # E1.0 [1] (🚣🏽) 1F6A3 1F3FE ; RGI_Emoji_Modifier_Sequence ; person rowing boat: medium-dark skin tone # E1.0 [1] (🚣🏾) 1F6A3 1F3FF ; RGI_Emoji_Modifier_Sequence ; person rowing boat: dark skin tone # E1.0 [1] (🚣🏿) 1F6B4 1F3FB ; RGI_Emoji_Modifier_Sequence ; person biking: light skin tone # E1.0 [1] (🚴🏻) 1F6B4 1F3FC ; RGI_Emoji_Modifier_Sequence ; person biking: medium-light skin tone # E1.0 [1] (🚴🏼) 1F6B4 1F3FD ; RGI_Emoji_Modifier_Sequence ; person biking: medium skin tone # E1.0 [1] (🚴🏽) 1F6B4 1F3FE ; RGI_Emoji_Modifier_Sequence ; person biking: medium-dark skin tone # E1.0 [1] (🚴🏾) 1F6B4 1F3FF ; RGI_Emoji_Modifier_Sequence ; person biking: dark skin tone # E1.0 [1] (🚴🏿) 1F6B5 1F3FB ; RGI_Emoji_Modifier_Sequence ; person mountain biking: light skin tone # E1.0 [1] (🚵🏻) 1F6B5 1F3FC ; RGI_Emoji_Modifier_Sequence ; person mountain biking: medium-light skin tone # E1.0 [1] (🚵🏼) 1F6B5 1F3FD ; RGI_Emoji_Modifier_Sequence ; person mountain biking: medium skin tone # E1.0 [1] (🚵🏽) 1F6B5 1F3FE ; RGI_Emoji_Modifier_Sequence ; person mountain biking: medium-dark skin tone # E1.0 [1] (🚵🏾) 1F6B5 1F3FF ; RGI_Emoji_Modifier_Sequence ; person mountain biking: dark skin tone # E1.0 [1] (🚵🏿) 1F6B6 1F3FB ; RGI_Emoji_Modifier_Sequence ; person walking: light skin tone # E1.0 [1] (🚶🏻) 1F6B6 1F3FC ; RGI_Emoji_Modifier_Sequence ; person walking: medium-light skin tone # E1.0 [1] (🚶🏼) 1F6B6 1F3FD ; RGI_Emoji_Modifier_Sequence ; person walking: medium skin tone # E1.0 [1] (🚶🏽) 1F6B6 1F3FE ; RGI_Emoji_Modifier_Sequence ; person walking: medium-dark skin tone # E1.0 [1] (🚶🏾) 1F6B6 1F3FF ; RGI_Emoji_Modifier_Sequence ; person walking: dark skin tone # E1.0 [1] (🚶🏿) 1F6C0 1F3FB ; RGI_Emoji_Modifier_Sequence ; person taking bath: light skin tone # E1.0 [1] (🛀🏻) 1F6C0 1F3FC ; RGI_Emoji_Modifier_Sequence ; person taking bath: medium-light skin tone # E1.0 [1] (🛀🏼) 1F6C0 1F3FD ; RGI_Emoji_Modifier_Sequence ; person taking bath: medium skin tone # E1.0 [1] (🛀🏽) 1F6C0 1F3FE ; RGI_Emoji_Modifier_Sequence ; person taking bath: medium-dark skin tone # E1.0 [1] (🛀🏾) 1F6C0 1F3FF ; RGI_Emoji_Modifier_Sequence ; person taking bath: dark skin tone # E1.0 [1] (🛀🏿) 1F6CC 1F3FB ; RGI_Emoji_Modifier_Sequence ; person in bed: light skin tone # E4.0 [1] (🛌🏻) 1F6CC 1F3FC ; RGI_Emoji_Modifier_Sequence ; person in bed: medium-light skin tone # E4.0 [1] (🛌🏼) 1F6CC 1F3FD ; RGI_Emoji_Modifier_Sequence ; person in bed: medium skin tone # E4.0 [1] (🛌🏽) 1F6CC 1F3FE ; RGI_Emoji_Modifier_Sequence ; person in bed: medium-dark skin tone # E4.0 [1] (🛌🏾) 1F6CC 1F3FF ; RGI_Emoji_Modifier_Sequence ; person in bed: dark skin tone # E4.0 [1] (🛌🏿) 1F90C 1F3FB ; RGI_Emoji_Modifier_Sequence ; pinched fingers: light skin tone # E13.0 [1] (🤌🏻) 1F90C 1F3FC ; RGI_Emoji_Modifier_Sequence ; pinched fingers: medium-light skin tone # E13.0 [1] (🤌🏼) 1F90C 1F3FD ; RGI_Emoji_Modifier_Sequence ; pinched fingers: medium skin tone # E13.0 [1] (🤌🏽) 1F90C 1F3FE ; RGI_Emoji_Modifier_Sequence ; pinched fingers: medium-dark skin tone # E13.0 [1] (🤌🏾) 1F90C 1F3FF ; RGI_Emoji_Modifier_Sequence ; pinched fingers: dark skin tone # E13.0 [1] (🤌🏿) 1F90F 1F3FB ; RGI_Emoji_Modifier_Sequence ; pinching hand: light skin tone # E12.0 [1] (🤏🏻) 1F90F 1F3FC ; RGI_Emoji_Modifier_Sequence ; pinching hand: medium-light skin tone # E12.0 [1] (🤏🏼) 1F90F 1F3FD ; RGI_Emoji_Modifier_Sequence ; pinching hand: medium skin tone # E12.0 [1] (🤏🏽) 1F90F 1F3FE ; RGI_Emoji_Modifier_Sequence ; pinching hand: medium-dark skin tone # E12.0 [1] (🤏🏾) 1F90F 1F3FF ; RGI_Emoji_Modifier_Sequence ; pinching hand: dark skin tone # E12.0 [1] (🤏🏿) 1F918 1F3FB ; RGI_Emoji_Modifier_Sequence ; sign of the horns: light skin tone # E1.0 [1] (🤘🏻) 1F918 1F3FC ; RGI_Emoji_Modifier_Sequence ; sign of the horns: medium-light skin tone # E1.0 [1] (🤘🏼) 1F918 1F3FD ; RGI_Emoji_Modifier_Sequence ; sign of the horns: medium skin tone # E1.0 [1] (🤘🏽) 1F918 1F3FE ; RGI_Emoji_Modifier_Sequence ; sign of the horns: medium-dark skin tone # E1.0 [1] (🤘🏾) 1F918 1F3FF ; RGI_Emoji_Modifier_Sequence ; sign of the horns: dark skin tone # E1.0 [1] (🤘🏿) 1F919 1F3FB ; RGI_Emoji_Modifier_Sequence ; call me hand: light skin tone # E3.0 [1] (🤙🏻) 1F919 1F3FC ; RGI_Emoji_Modifier_Sequence ; call me hand: medium-light skin tone # E3.0 [1] (🤙🏼) 1F919 1F3FD ; RGI_Emoji_Modifier_Sequence ; call me hand: medium skin tone # E3.0 [1] (🤙🏽) 1F919 1F3FE ; RGI_Emoji_Modifier_Sequence ; call me hand: medium-dark skin tone # E3.0 [1] (🤙🏾) 1F919 1F3FF ; RGI_Emoji_Modifier_Sequence ; call me hand: dark skin tone # E3.0 [1] (🤙🏿) 1F91A 1F3FB ; RGI_Emoji_Modifier_Sequence ; raised back of hand: light skin tone # E3.0 [1] (🤚🏻) 1F91A 1F3FC ; RGI_Emoji_Modifier_Sequence ; raised back of hand: medium-light skin tone # E3.0 [1] (🤚🏼) 1F91A 1F3FD ; RGI_Emoji_Modifier_Sequence ; raised back of hand: medium skin tone # E3.0 [1] (🤚🏽) 1F91A 1F3FE ; RGI_Emoji_Modifier_Sequence ; raised back of hand: medium-dark skin tone # E3.0 [1] (🤚🏾) 1F91A 1F3FF ; RGI_Emoji_Modifier_Sequence ; raised back of hand: dark skin tone # E3.0 [1] (🤚🏿) 1F91B 1F3FB ; RGI_Emoji_Modifier_Sequence ; left-facing fist: light skin tone # E3.0 [1] (🤛🏻) 1F91B 1F3FC ; RGI_Emoji_Modifier_Sequence ; left-facing fist: medium-light skin tone # E3.0 [1] (🤛🏼) 1F91B 1F3FD ; RGI_Emoji_Modifier_Sequence ; left-facing fist: medium skin tone # E3.0 [1] (🤛🏽) 1F91B 1F3FE ; RGI_Emoji_Modifier_Sequence ; left-facing fist: medium-dark skin tone # E3.0 [1] (🤛🏾) 1F91B 1F3FF ; RGI_Emoji_Modifier_Sequence ; left-facing fist: dark skin tone # E3.0 [1] (🤛🏿) 1F91C 1F3FB ; RGI_Emoji_Modifier_Sequence ; right-facing fist: light skin tone # E3.0 [1] (🤜🏻) 1F91C 1F3FC ; RGI_Emoji_Modifier_Sequence ; right-facing fist: medium-light skin tone # E3.0 [1] (🤜🏼) 1F91C 1F3FD ; RGI_Emoji_Modifier_Sequence ; right-facing fist: medium skin tone # E3.0 [1] (🤜🏽) 1F91C 1F3FE ; RGI_Emoji_Modifier_Sequence ; right-facing fist: medium-dark skin tone # E3.0 [1] (🤜🏾) 1F91C 1F3FF ; RGI_Emoji_Modifier_Sequence ; right-facing fist: dark skin tone # E3.0 [1] (🤜🏿) 1F91E 1F3FB ; RGI_Emoji_Modifier_Sequence ; crossed fingers: light skin tone # E3.0 [1] (🤞🏻) 1F91E 1F3FC ; RGI_Emoji_Modifier_Sequence ; crossed fingers: medium-light skin tone # E3.0 [1] (🤞🏼) 1F91E 1F3FD ; RGI_Emoji_Modifier_Sequence ; crossed fingers: medium skin tone # E3.0 [1] (🤞🏽) 1F91E 1F3FE ; RGI_Emoji_Modifier_Sequence ; crossed fingers: medium-dark skin tone # E3.0 [1] (🤞🏾) 1F91E 1F3FF ; RGI_Emoji_Modifier_Sequence ; crossed fingers: dark skin tone # E3.0 [1] (🤞🏿) 1F91F 1F3FB ; RGI_Emoji_Modifier_Sequence ; love-you gesture: light skin tone # E5.0 [1] (🤟🏻) 1F91F 1F3FC ; RGI_Emoji_Modifier_Sequence ; love-you gesture: medium-light skin tone # E5.0 [1] (🤟🏼) 1F91F 1F3FD ; RGI_Emoji_Modifier_Sequence ; love-you gesture: medium skin tone # E5.0 [1] (🤟🏽) 1F91F 1F3FE ; RGI_Emoji_Modifier_Sequence ; love-you gesture: medium-dark skin tone # E5.0 [1] (🤟🏾) 1F91F 1F3FF ; RGI_Emoji_Modifier_Sequence ; love-you gesture: dark skin tone # E5.0 [1] (🤟🏿) 1F926 1F3FB ; RGI_Emoji_Modifier_Sequence ; person facepalming: light skin tone # E3.0 [1] (🤦🏻) 1F926 1F3FC ; RGI_Emoji_Modifier_Sequence ; person facepalming: medium-light skin tone # E3.0 [1] (🤦🏼) 1F926 1F3FD ; RGI_Emoji_Modifier_Sequence ; person facepalming: medium skin tone # E3.0 [1] (🤦🏽) 1F926 1F3FE ; RGI_Emoji_Modifier_Sequence ; person facepalming: medium-dark skin tone # E3.0 [1] (🤦🏾) 1F926 1F3FF ; RGI_Emoji_Modifier_Sequence ; person facepalming: dark skin tone # E3.0 [1] (🤦🏿) 1F930 1F3FB ; RGI_Emoji_Modifier_Sequence ; pregnant woman: light skin tone # E3.0 [1] (🤰🏻) 1F930 1F3FC ; RGI_Emoji_Modifier_Sequence ; pregnant woman: medium-light skin tone # E3.0 [1] (🤰🏼) 1F930 1F3FD ; RGI_Emoji_Modifier_Sequence ; pregnant woman: medium skin tone # E3.0 [1] (🤰🏽) 1F930 1F3FE ; RGI_Emoji_Modifier_Sequence ; pregnant woman: medium-dark skin tone # E3.0 [1] (🤰🏾) 1F930 1F3FF ; RGI_Emoji_Modifier_Sequence ; pregnant woman: dark skin tone # E3.0 [1] (🤰🏿) 1F931 1F3FB ; RGI_Emoji_Modifier_Sequence ; breast-feeding: light skin tone # E5.0 [1] (🤱🏻) 1F931 1F3FC ; RGI_Emoji_Modifier_Sequence ; breast-feeding: medium-light skin tone # E5.0 [1] (🤱🏼) 1F931 1F3FD ; RGI_Emoji_Modifier_Sequence ; breast-feeding: medium skin tone # E5.0 [1] (🤱🏽) 1F931 1F3FE ; RGI_Emoji_Modifier_Sequence ; breast-feeding: medium-dark skin tone # E5.0 [1] (🤱🏾) 1F931 1F3FF ; RGI_Emoji_Modifier_Sequence ; breast-feeding: dark skin tone # E5.0 [1] (🤱🏿) 1F932 1F3FB ; RGI_Emoji_Modifier_Sequence ; palms up together: light skin tone # E5.0 [1] (🤲🏻) 1F932 1F3FC ; RGI_Emoji_Modifier_Sequence ; palms up together: medium-light skin tone # E5.0 [1] (🤲🏼) 1F932 1F3FD ; RGI_Emoji_Modifier_Sequence ; palms up together: medium skin tone # E5.0 [1] (🤲🏽) 1F932 1F3FE ; RGI_Emoji_Modifier_Sequence ; palms up together: medium-dark skin tone # E5.0 [1] (🤲🏾) 1F932 1F3FF ; RGI_Emoji_Modifier_Sequence ; palms up together: dark skin tone # E5.0 [1] (🤲🏿) 1F933 1F3FB ; RGI_Emoji_Modifier_Sequence ; selfie: light skin tone # E3.0 [1] (🤳🏻) 1F933 1F3FC ; RGI_Emoji_Modifier_Sequence ; selfie: medium-light skin tone # E3.0 [1] (🤳🏼) 1F933 1F3FD ; RGI_Emoji_Modifier_Sequence ; selfie: medium skin tone # E3.0 [1] (🤳🏽) 1F933 1F3FE ; RGI_Emoji_Modifier_Sequence ; selfie: medium-dark skin tone # E3.0 [1] (🤳🏾) 1F933 1F3FF ; RGI_Emoji_Modifier_Sequence ; selfie: dark skin tone # E3.0 [1] (🤳🏿) 1F934 1F3FB ; RGI_Emoji_Modifier_Sequence ; prince: light skin tone # E3.0 [1] (🤴🏻) 1F934 1F3FC ; RGI_Emoji_Modifier_Sequence ; prince: medium-light skin tone # E3.0 [1] (🤴🏼) 1F934 1F3FD ; RGI_Emoji_Modifier_Sequence ; prince: medium skin tone # E3.0 [1] (🤴🏽) 1F934 1F3FE ; RGI_Emoji_Modifier_Sequence ; prince: medium-dark skin tone # E3.0 [1] (🤴🏾) 1F934 1F3FF ; RGI_Emoji_Modifier_Sequence ; prince: dark skin tone # E3.0 [1] (🤴🏿) 1F935 1F3FB ; RGI_Emoji_Modifier_Sequence ; person in tuxedo: light skin tone # E3.0 [1] (🤵🏻) 1F935 1F3FC ; RGI_Emoji_Modifier_Sequence ; person in tuxedo: medium-light skin tone # E3.0 [1] (🤵🏼) 1F935 1F3FD ; RGI_Emoji_Modifier_Sequence ; person in tuxedo: medium skin tone # E3.0 [1] (🤵🏽) 1F935 1F3FE ; RGI_Emoji_Modifier_Sequence ; person in tuxedo: medium-dark skin tone # E3.0 [1] (🤵🏾) 1F935 1F3FF ; RGI_Emoji_Modifier_Sequence ; person in tuxedo: dark skin tone # E3.0 [1] (🤵🏿) 1F936 1F3FB ; RGI_Emoji_Modifier_Sequence ; Mrs. Claus: light skin tone # E3.0 [1] (🤶🏻) 1F936 1F3FC ; RGI_Emoji_Modifier_Sequence ; Mrs. Claus: medium-light skin tone # E3.0 [1] (🤶🏼) 1F936 1F3FD ; RGI_Emoji_Modifier_Sequence ; Mrs. Claus: medium skin tone # E3.0 [1] (🤶🏽) 1F936 1F3FE ; RGI_Emoji_Modifier_Sequence ; Mrs. Claus: medium-dark skin tone # E3.0 [1] (🤶🏾) 1F936 1F3FF ; RGI_Emoji_Modifier_Sequence ; Mrs. Claus: dark skin tone # E3.0 [1] (🤶🏿) 1F937 1F3FB ; RGI_Emoji_Modifier_Sequence ; person shrugging: light skin tone # E3.0 [1] (🤷🏻) 1F937 1F3FC ; RGI_Emoji_Modifier_Sequence ; person shrugging: medium-light skin tone # E3.0 [1] (🤷🏼) 1F937 1F3FD ; RGI_Emoji_Modifier_Sequence ; person shrugging: medium skin tone # E3.0 [1] (🤷🏽) 1F937 1F3FE ; RGI_Emoji_Modifier_Sequence ; person shrugging: medium-dark skin tone # E3.0 [1] (🤷🏾) 1F937 1F3FF ; RGI_Emoji_Modifier_Sequence ; person shrugging: dark skin tone # E3.0 [1] (🤷🏿) 1F938 1F3FB ; RGI_Emoji_Modifier_Sequence ; person cartwheeling: light skin tone # E3.0 [1] (🤸🏻) 1F938 1F3FC ; RGI_Emoji_Modifier_Sequence ; person cartwheeling: medium-light skin tone # E3.0 [1] (🤸🏼) 1F938 1F3FD ; RGI_Emoji_Modifier_Sequence ; person cartwheeling: medium skin tone # E3.0 [1] (🤸🏽) 1F938 1F3FE ; RGI_Emoji_Modifier_Sequence ; person cartwheeling: medium-dark skin tone # E3.0 [1] (🤸🏾) 1F938 1F3FF ; RGI_Emoji_Modifier_Sequence ; person cartwheeling: dark skin tone # E3.0 [1] (🤸🏿) 1F939 1F3FB ; RGI_Emoji_Modifier_Sequence ; person juggling: light skin tone # E3.0 [1] (🤹🏻) 1F939 1F3FC ; RGI_Emoji_Modifier_Sequence ; person juggling: medium-light skin tone # E3.0 [1] (🤹🏼) 1F939 1F3FD ; RGI_Emoji_Modifier_Sequence ; person juggling: medium skin tone # E3.0 [1] (🤹🏽) 1F939 1F3FE ; RGI_Emoji_Modifier_Sequence ; person juggling: medium-dark skin tone # E3.0 [1] (🤹🏾) 1F939 1F3FF ; RGI_Emoji_Modifier_Sequence ; person juggling: dark skin tone # E3.0 [1] (🤹🏿) 1F93D 1F3FB ; RGI_Emoji_Modifier_Sequence ; person playing water polo: light skin tone # E3.0 [1] (🤽🏻) 1F93D 1F3FC ; RGI_Emoji_Modifier_Sequence ; person playing water polo: medium-light skin tone # E3.0 [1] (🤽🏼) 1F93D 1F3FD ; RGI_Emoji_Modifier_Sequence ; person playing water polo: medium skin tone # E3.0 [1] (🤽🏽) 1F93D 1F3FE ; RGI_Emoji_Modifier_Sequence ; person playing water polo: medium-dark skin tone # E3.0 [1] (🤽🏾) 1F93D 1F3FF ; RGI_Emoji_Modifier_Sequence ; person playing water polo: dark skin tone # E3.0 [1] (🤽🏿) 1F93E 1F3FB ; RGI_Emoji_Modifier_Sequence ; person playing handball: light skin tone # E3.0 [1] (🤾🏻) 1F93E 1F3FC ; RGI_Emoji_Modifier_Sequence ; person playing handball: medium-light skin tone # E3.0 [1] (🤾🏼) 1F93E 1F3FD ; RGI_Emoji_Modifier_Sequence ; person playing handball: medium skin tone # E3.0 [1] (🤾🏽) 1F93E 1F3FE ; RGI_Emoji_Modifier_Sequence ; person playing handball: medium-dark skin tone # E3.0 [1] (🤾🏾) 1F93E 1F3FF ; RGI_Emoji_Modifier_Sequence ; person playing handball: dark skin tone # E3.0 [1] (🤾🏿) 1F977 1F3FB ; RGI_Emoji_Modifier_Sequence ; ninja: light skin tone # E13.0 [1] (🥷🏻) 1F977 1F3FC ; RGI_Emoji_Modifier_Sequence ; ninja: medium-light skin tone # E13.0 [1] (🥷🏼) 1F977 1F3FD ; RGI_Emoji_Modifier_Sequence ; ninja: medium skin tone # E13.0 [1] (🥷🏽) 1F977 1F3FE ; RGI_Emoji_Modifier_Sequence ; ninja: medium-dark skin tone # E13.0 [1] (🥷🏾) 1F977 1F3FF ; RGI_Emoji_Modifier_Sequence ; ninja: dark skin tone # E13.0 [1] (🥷🏿) 1F9B5 1F3FB ; RGI_Emoji_Modifier_Sequence ; leg: light skin tone # E11.0 [1] (🦵🏻) 1F9B5 1F3FC ; RGI_Emoji_Modifier_Sequence ; leg: medium-light skin tone # E11.0 [1] (🦵🏼) 1F9B5 1F3FD ; RGI_Emoji_Modifier_Sequence ; leg: medium skin tone # E11.0 [1] (🦵🏽) 1F9B5 1F3FE ; RGI_Emoji_Modifier_Sequence ; leg: medium-dark skin tone # E11.0 [1] (🦵🏾) 1F9B5 1F3FF ; RGI_Emoji_Modifier_Sequence ; leg: dark skin tone # E11.0 [1] (🦵🏿) 1F9B6 1F3FB ; RGI_Emoji_Modifier_Sequence ; foot: light skin tone # E11.0 [1] (🦶🏻) 1F9B6 1F3FC ; RGI_Emoji_Modifier_Sequence ; foot: medium-light skin tone # E11.0 [1] (🦶🏼) 1F9B6 1F3FD ; RGI_Emoji_Modifier_Sequence ; foot: medium skin tone # E11.0 [1] (🦶🏽) 1F9B6 1F3FE ; RGI_Emoji_Modifier_Sequence ; foot: medium-dark skin tone # E11.0 [1] (🦶🏾) 1F9B6 1F3FF ; RGI_Emoji_Modifier_Sequence ; foot: dark skin tone # E11.0 [1] (🦶🏿) 1F9B8 1F3FB ; RGI_Emoji_Modifier_Sequence ; superhero: light skin tone # E11.0 [1] (🦸🏻) 1F9B8 1F3FC ; RGI_Emoji_Modifier_Sequence ; superhero: medium-light skin tone # E11.0 [1] (🦸🏼) 1F9B8 1F3FD ; RGI_Emoji_Modifier_Sequence ; superhero: medium skin tone # E11.0 [1] (🦸🏽) 1F9B8 1F3FE ; RGI_Emoji_Modifier_Sequence ; superhero: medium-dark skin tone # E11.0 [1] (🦸🏾) 1F9B8 1F3FF ; RGI_Emoji_Modifier_Sequence ; superhero: dark skin tone # E11.0 [1] (🦸🏿) 1F9B9 1F3FB ; RGI_Emoji_Modifier_Sequence ; supervillain: light skin tone # E11.0 [1] (🦹🏻) 1F9B9 1F3FC ; RGI_Emoji_Modifier_Sequence ; supervillain: medium-light skin tone # E11.0 [1] (🦹🏼) 1F9B9 1F3FD ; RGI_Emoji_Modifier_Sequence ; supervillain: medium skin tone # E11.0 [1] (🦹🏽) 1F9B9 1F3FE ; RGI_Emoji_Modifier_Sequence ; supervillain: medium-dark skin tone # E11.0 [1] (🦹🏾) 1F9B9 1F3FF ; RGI_Emoji_Modifier_Sequence ; supervillain: dark skin tone # E11.0 [1] (🦹🏿) 1F9BB 1F3FB ; RGI_Emoji_Modifier_Sequence ; ear with hearing aid: light skin tone # E12.0 [1] (🦻🏻) 1F9BB 1F3FC ; RGI_Emoji_Modifier_Sequence ; ear with hearing aid: medium-light skin tone # E12.0 [1] (🦻🏼) 1F9BB 1F3FD ; RGI_Emoji_Modifier_Sequence ; ear with hearing aid: medium skin tone # E12.0 [1] (🦻🏽) 1F9BB 1F3FE ; RGI_Emoji_Modifier_Sequence ; ear with hearing aid: medium-dark skin tone # E12.0 [1] (🦻🏾) 1F9BB 1F3FF ; RGI_Emoji_Modifier_Sequence ; ear with hearing aid: dark skin tone # E12.0 [1] (🦻🏿) 1F9CD 1F3FB ; RGI_Emoji_Modifier_Sequence ; person standing: light skin tone # E12.0 [1] (🧍🏻) 1F9CD 1F3FC ; RGI_Emoji_Modifier_Sequence ; person standing: medium-light skin tone # E12.0 [1] (🧍🏼) 1F9CD 1F3FD ; RGI_Emoji_Modifier_Sequence ; person standing: medium skin tone # E12.0 [1] (🧍🏽) 1F9CD 1F3FE ; RGI_Emoji_Modifier_Sequence ; person standing: medium-dark skin tone # E12.0 [1] (🧍🏾) 1F9CD 1F3FF ; RGI_Emoji_Modifier_Sequence ; person standing: dark skin tone # E12.0 [1] (🧍🏿) 1F9CE 1F3FB ; RGI_Emoji_Modifier_Sequence ; person kneeling: light skin tone # E12.0 [1] (🧎🏻) 1F9CE 1F3FC ; RGI_Emoji_Modifier_Sequence ; person kneeling: medium-light skin tone # E12.0 [1] (🧎🏼) 1F9CE 1F3FD ; RGI_Emoji_Modifier_Sequence ; person kneeling: medium skin tone # E12.0 [1] (🧎🏽) 1F9CE 1F3FE ; RGI_Emoji_Modifier_Sequence ; person kneeling: medium-dark skin tone # E12.0 [1] (🧎🏾) 1F9CE 1F3FF ; RGI_Emoji_Modifier_Sequence ; person kneeling: dark skin tone # E12.0 [1] (🧎🏿) 1F9CF 1F3FB ; RGI_Emoji_Modifier_Sequence ; deaf person: light skin tone # E12.0 [1] (🧏🏻) 1F9CF 1F3FC ; RGI_Emoji_Modifier_Sequence ; deaf person: medium-light skin tone # E12.0 [1] (🧏🏼) 1F9CF 1F3FD ; RGI_Emoji_Modifier_Sequence ; deaf person: medium skin tone # E12.0 [1] (🧏🏽) 1F9CF 1F3FE ; RGI_Emoji_Modifier_Sequence ; deaf person: medium-dark skin tone # E12.0 [1] (🧏🏾) 1F9CF 1F3FF ; RGI_Emoji_Modifier_Sequence ; deaf person: dark skin tone # E12.0 [1] (🧏🏿) 1F9D1 1F3FB ; RGI_Emoji_Modifier_Sequence ; person: light skin tone # E5.0 [1] (🧑🏻) 1F9D1 1F3FC ; RGI_Emoji_Modifier_Sequence ; person: medium-light skin tone # E5.0 [1] (🧑🏼) 1F9D1 1F3FD ; RGI_Emoji_Modifier_Sequence ; person: medium skin tone # E5.0 [1] (🧑🏽) 1F9D1 1F3FE ; RGI_Emoji_Modifier_Sequence ; person: medium-dark skin tone # E5.0 [1] (🧑🏾) 1F9D1 1F3FF ; RGI_Emoji_Modifier_Sequence ; person: dark skin tone # E5.0 [1] (🧑🏿) 1F9D2 1F3FB ; RGI_Emoji_Modifier_Sequence ; child: light skin tone # E5.0 [1] (🧒🏻) 1F9D2 1F3FC ; RGI_Emoji_Modifier_Sequence ; child: medium-light skin tone # E5.0 [1] (🧒🏼) 1F9D2 1F3FD ; RGI_Emoji_Modifier_Sequence ; child: medium skin tone # E5.0 [1] (🧒🏽) 1F9D2 1F3FE ; RGI_Emoji_Modifier_Sequence ; child: medium-dark skin tone # E5.0 [1] (🧒🏾) 1F9D2 1F3FF ; RGI_Emoji_Modifier_Sequence ; child: dark skin tone # E5.0 [1] (🧒🏿) 1F9D3 1F3FB ; RGI_Emoji_Modifier_Sequence ; older person: light skin tone # E5.0 [1] (🧓🏻) 1F9D3 1F3FC ; RGI_Emoji_Modifier_Sequence ; older person: medium-light skin tone # E5.0 [1] (🧓🏼) 1F9D3 1F3FD ; RGI_Emoji_Modifier_Sequence ; older person: medium skin tone # E5.0 [1] (🧓🏽) 1F9D3 1F3FE ; RGI_Emoji_Modifier_Sequence ; older person: medium-dark skin tone # E5.0 [1] (🧓🏾) 1F9D3 1F3FF ; RGI_Emoji_Modifier_Sequence ; older person: dark skin tone # E5.0 [1] (🧓🏿) 1F9D4 1F3FB ; RGI_Emoji_Modifier_Sequence ; person: light skin tone, beard # E5.0 [1] (🧔🏻) 1F9D4 1F3FC ; RGI_Emoji_Modifier_Sequence ; person: medium-light skin tone, beard # E5.0 [1] (🧔🏼) 1F9D4 1F3FD ; RGI_Emoji_Modifier_Sequence ; person: medium skin tone, beard # E5.0 [1] (🧔🏽) 1F9D4 1F3FE ; RGI_Emoji_Modifier_Sequence ; person: medium-dark skin tone, beard # E5.0 [1] (🧔🏾) 1F9D4 1F3FF ; RGI_Emoji_Modifier_Sequence ; person: dark skin tone, beard # E5.0 [1] (🧔🏿) 1F9D5 1F3FB ; RGI_Emoji_Modifier_Sequence ; woman with headscarf: light skin tone # E5.0 [1] (🧕🏻) 1F9D5 1F3FC ; RGI_Emoji_Modifier_Sequence ; woman with headscarf: medium-light skin tone # E5.0 [1] (🧕🏼) 1F9D5 1F3FD ; RGI_Emoji_Modifier_Sequence ; woman with headscarf: medium skin tone # E5.0 [1] (🧕🏽) 1F9D5 1F3FE ; RGI_Emoji_Modifier_Sequence ; woman with headscarf: medium-dark skin tone # E5.0 [1] (🧕🏾) 1F9D5 1F3FF ; RGI_Emoji_Modifier_Sequence ; woman with headscarf: dark skin tone # E5.0 [1] (🧕🏿) 1F9D6 1F3FB ; RGI_Emoji_Modifier_Sequence ; person in steamy room: light skin tone # E5.0 [1] (🧖🏻) 1F9D6 1F3FC ; RGI_Emoji_Modifier_Sequence ; person in steamy room: medium-light skin tone # E5.0 [1] (🧖🏼) 1F9D6 1F3FD ; RGI_Emoji_Modifier_Sequence ; person in steamy room: medium skin tone # E5.0 [1] (🧖🏽) 1F9D6 1F3FE ; RGI_Emoji_Modifier_Sequence ; person in steamy room: medium-dark skin tone # E5.0 [1] (🧖🏾) 1F9D6 1F3FF ; RGI_Emoji_Modifier_Sequence ; person in steamy room: dark skin tone # E5.0 [1] (🧖🏿) 1F9D7 1F3FB ; RGI_Emoji_Modifier_Sequence ; person climbing: light skin tone # E5.0 [1] (🧗🏻) 1F9D7 1F3FC ; RGI_Emoji_Modifier_Sequence ; person climbing: medium-light skin tone # E5.0 [1] (🧗🏼) 1F9D7 1F3FD ; RGI_Emoji_Modifier_Sequence ; person climbing: medium skin tone # E5.0 [1] (🧗🏽) 1F9D7 1F3FE ; RGI_Emoji_Modifier_Sequence ; person climbing: medium-dark skin tone # E5.0 [1] (🧗🏾) 1F9D7 1F3FF ; RGI_Emoji_Modifier_Sequence ; person climbing: dark skin tone # E5.0 [1] (🧗🏿) 1F9D8 1F3FB ; RGI_Emoji_Modifier_Sequence ; person in lotus position: light skin tone # E5.0 [1] (🧘🏻) 1F9D8 1F3FC ; RGI_Emoji_Modifier_Sequence ; person in lotus position: medium-light skin tone # E5.0 [1] (🧘🏼) 1F9D8 1F3FD ; RGI_Emoji_Modifier_Sequence ; person in lotus position: medium skin tone # E5.0 [1] (🧘🏽) 1F9D8 1F3FE ; RGI_Emoji_Modifier_Sequence ; person in lotus position: medium-dark skin tone # E5.0 [1] (🧘🏾) 1F9D8 1F3FF ; RGI_Emoji_Modifier_Sequence ; person in lotus position: dark skin tone # E5.0 [1] (🧘🏿) 1F9D9 1F3FB ; RGI_Emoji_Modifier_Sequence ; mage: light skin tone # E5.0 [1] (🧙🏻) 1F9D9 1F3FC ; RGI_Emoji_Modifier_Sequence ; mage: medium-light skin tone # E5.0 [1] (🧙🏼) 1F9D9 1F3FD ; RGI_Emoji_Modifier_Sequence ; mage: medium skin tone # E5.0 [1] (🧙🏽) 1F9D9 1F3FE ; RGI_Emoji_Modifier_Sequence ; mage: medium-dark skin tone # E5.0 [1] (🧙🏾) 1F9D9 1F3FF ; RGI_Emoji_Modifier_Sequence ; mage: dark skin tone # E5.0 [1] (🧙🏿) 1F9DA 1F3FB ; RGI_Emoji_Modifier_Sequence ; fairy: light skin tone # E5.0 [1] (🧚🏻) 1F9DA 1F3FC ; RGI_Emoji_Modifier_Sequence ; fairy: medium-light skin tone # E5.0 [1] (🧚🏼) 1F9DA 1F3FD ; RGI_Emoji_Modifier_Sequence ; fairy: medium skin tone # E5.0 [1] (🧚🏽) 1F9DA 1F3FE ; RGI_Emoji_Modifier_Sequence ; fairy: medium-dark skin tone # E5.0 [1] (🧚🏾) 1F9DA 1F3FF ; RGI_Emoji_Modifier_Sequence ; fairy: dark skin tone # E5.0 [1] (🧚🏿) 1F9DB 1F3FB ; RGI_Emoji_Modifier_Sequence ; vampire: light skin tone # E5.0 [1] (🧛🏻) 1F9DB 1F3FC ; RGI_Emoji_Modifier_Sequence ; vampire: medium-light skin tone # E5.0 [1] (🧛🏼) 1F9DB 1F3FD ; RGI_Emoji_Modifier_Sequence ; vampire: medium skin tone # E5.0 [1] (🧛🏽) 1F9DB 1F3FE ; RGI_Emoji_Modifier_Sequence ; vampire: medium-dark skin tone # E5.0 [1] (🧛🏾) 1F9DB 1F3FF ; RGI_Emoji_Modifier_Sequence ; vampire: dark skin tone # E5.0 [1] (🧛🏿) 1F9DC 1F3FB ; RGI_Emoji_Modifier_Sequence ; merperson: light skin tone # E5.0 [1] (🧜🏻) 1F9DC 1F3FC ; RGI_Emoji_Modifier_Sequence ; merperson: medium-light skin tone # E5.0 [1] (🧜🏼) 1F9DC 1F3FD ; RGI_Emoji_Modifier_Sequence ; merperson: medium skin tone # E5.0 [1] (🧜🏽) 1F9DC 1F3FE ; RGI_Emoji_Modifier_Sequence ; merperson: medium-dark skin tone # E5.0 [1] (🧜🏾) 1F9DC 1F3FF ; RGI_Emoji_Modifier_Sequence ; merperson: dark skin tone # E5.0 [1] (🧜🏿) 1F9DD 1F3FB ; RGI_Emoji_Modifier_Sequence ; elf: light skin tone # E5.0 [1] (🧝🏻) 1F9DD 1F3FC ; RGI_Emoji_Modifier_Sequence ; elf: medium-light skin tone # E5.0 [1] (🧝🏼) 1F9DD 1F3FD ; RGI_Emoji_Modifier_Sequence ; elf: medium skin tone # E5.0 [1] (🧝🏽) 1F9DD 1F3FE ; RGI_Emoji_Modifier_Sequence ; elf: medium-dark skin tone # E5.0 [1] (🧝🏾) 1F9DD 1F3FF ; RGI_Emoji_Modifier_Sequence ; elf: dark skin tone # E5.0 [1] (🧝🏿) # Total elements: 590 #EOF tanuki_emoji-0.9.0/vendor/unicode/ReadMe.txt0000644000004100000410000000107314545323276021063 0ustar www-datawww-data# Unicode Emoji # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html This directory contains data files for Unicode Emoji, Version 13.1 Public/emoji/13.1/ emoji-sequences.txt emoji-zwj-sequences.txt emoji-test.txt The following related files are found in the UCD for Version 13.0 Public/13.0.0/ucd/emoji/ emoji-data.txt emoji-variation-sequences.txt For documentation, see UTS #51 Unicode Emoji, Version 13.0 tanuki_emoji-0.9.0/vendor/unicode/emoji-test.txt0000644000004100000410000214401314545323276022012 0ustar www-datawww-data# emoji-test.txt # Date: 2020-09-12, 22:19:50 GMT # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # Emoji Keyboard/Display Test Data for UTS #51 # Version: 13.1 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # # This file provides data for testing which emoji forms should be in keyboards and which should also be displayed/processed. # Format: code points; status # emoji name # Code points — list of one or more hex code points, separated by spaces # Status # component — an Emoji_Component, # excluding Regional_Indicators, ASCII, and non-Emoji. # fully-qualified — a fully-qualified emoji (see ED-18 in UTS #51), # excluding Emoji_Component # minimally-qualified — a minimally-qualified emoji (see ED-18a in UTS #51) # unqualified — a unqualified emoji (See ED-19 in UTS #51) # Notes: # • This includes the emoji components that need emoji presentation (skin tone and hair) # when isolated, but omits the components that need not have an emoji # presentation when isolated. # • The RGI set is covered by the listed fully-qualified emoji. # • The listed minimally-qualified and unqualified cover all cases where an # element of the RGI set is missing one or more emoji presentation selectors. # • The file is in CLDR order, not codepoint order. This is recommended (but not required!) for keyboard palettes. # • The groups and subgroups are illustrative. See the Emoji Order chart for more information. # group: Smileys & Emotion # subgroup: face-smiling 1F600 ; fully-qualified # 😀 E1.0 grinning face 1F603 ; fully-qualified # 😃 E0.6 grinning face with big eyes 1F604 ; fully-qualified # 😄 E0.6 grinning face with smiling eyes 1F601 ; fully-qualified # 😁 E0.6 beaming face with smiling eyes 1F606 ; fully-qualified # 😆 E0.6 grinning squinting face 1F605 ; fully-qualified # 😅 E0.6 grinning face with sweat 1F923 ; fully-qualified # 🤣 E3.0 rolling on the floor laughing 1F602 ; fully-qualified # 😂 E0.6 face with tears of joy 1F642 ; fully-qualified # 🙂 E1.0 slightly smiling face 1F643 ; fully-qualified # 🙃 E1.0 upside-down face 1F609 ; fully-qualified # 😉 E0.6 winking face 1F60A ; fully-qualified # 😊 E0.6 smiling face with smiling eyes 1F607 ; fully-qualified # 😇 E1.0 smiling face with halo # subgroup: face-affection 1F970 ; fully-qualified # 🥰 E11.0 smiling face with hearts 1F60D ; fully-qualified # 😍 E0.6 smiling face with heart-eyes 1F929 ; fully-qualified # 🤩 E5.0 star-struck 1F618 ; fully-qualified # 😘 E0.6 face blowing a kiss 1F617 ; fully-qualified # 😗 E1.0 kissing face 263A FE0F ; fully-qualified # ☺️ E0.6 smiling face 263A ; unqualified # ☺ E0.6 smiling face 1F61A ; fully-qualified # 😚 E0.6 kissing face with closed eyes 1F619 ; fully-qualified # 😙 E1.0 kissing face with smiling eyes 1F972 ; fully-qualified # 🥲 E13.0 smiling face with tear # subgroup: face-tongue 1F60B ; fully-qualified # 😋 E0.6 face savoring food 1F61B ; fully-qualified # 😛 E1.0 face with tongue 1F61C ; fully-qualified # 😜 E0.6 winking face with tongue 1F92A ; fully-qualified # 🤪 E5.0 zany face 1F61D ; fully-qualified # 😝 E0.6 squinting face with tongue 1F911 ; fully-qualified # 🤑 E1.0 money-mouth face # subgroup: face-hand 1F917 ; fully-qualified # 🤗 E1.0 hugging face 1F92D ; fully-qualified # 🤭 E5.0 face with hand over mouth 1F92B ; fully-qualified # 🤫 E5.0 shushing face 1F914 ; fully-qualified # 🤔 E1.0 thinking face # subgroup: face-neutral-skeptical 1F910 ; fully-qualified # 🤐 E1.0 zipper-mouth face 1F928 ; fully-qualified # 🤨 E5.0 face with raised eyebrow 1F610 ; fully-qualified # 😐 E0.7 neutral face 1F611 ; fully-qualified # 😑 E1.0 expressionless face 1F636 ; fully-qualified # 😶 E1.0 face without mouth 1F636 200D 1F32B FE0F ; fully-qualified # 😶‍🌫️ E13.1 face in clouds 1F636 200D 1F32B ; minimally-qualified # 😶‍🌫 E13.1 face in clouds 1F60F ; fully-qualified # 😏 E0.6 smirking face 1F612 ; fully-qualified # 😒 E0.6 unamused face 1F644 ; fully-qualified # 🙄 E1.0 face with rolling eyes 1F62C ; fully-qualified # 😬 E1.0 grimacing face 1F62E 200D 1F4A8 ; fully-qualified # 😮‍💨 E13.1 face exhaling 1F925 ; fully-qualified # 🤥 E3.0 lying face # subgroup: face-sleepy 1F60C ; fully-qualified # 😌 E0.6 relieved face 1F614 ; fully-qualified # 😔 E0.6 pensive face 1F62A ; fully-qualified # 😪 E0.6 sleepy face 1F924 ; fully-qualified # 🤤 E3.0 drooling face 1F634 ; fully-qualified # 😴 E1.0 sleeping face # subgroup: face-unwell 1F637 ; fully-qualified # 😷 E0.6 face with medical mask 1F912 ; fully-qualified # 🤒 E1.0 face with thermometer 1F915 ; fully-qualified # 🤕 E1.0 face with head-bandage 1F922 ; fully-qualified # 🤢 E3.0 nauseated face 1F92E ; fully-qualified # 🤮 E5.0 face vomiting 1F927 ; fully-qualified # 🤧 E3.0 sneezing face 1F975 ; fully-qualified # 🥵 E11.0 hot face 1F976 ; fully-qualified # 🥶 E11.0 cold face 1F974 ; fully-qualified # 🥴 E11.0 woozy face 1F635 ; fully-qualified # 😵 E0.6 knocked-out face 1F635 200D 1F4AB ; fully-qualified # 😵‍💫 E13.1 face with spiral eyes 1F92F ; fully-qualified # 🤯 E5.0 exploding head # subgroup: face-hat 1F920 ; fully-qualified # 🤠 E3.0 cowboy hat face 1F973 ; fully-qualified # 🥳 E11.0 partying face 1F978 ; fully-qualified # 🥸 E13.0 disguised face # subgroup: face-glasses 1F60E ; fully-qualified # 😎 E1.0 smiling face with sunglasses 1F913 ; fully-qualified # 🤓 E1.0 nerd face 1F9D0 ; fully-qualified # 🧐 E5.0 face with monocle # subgroup: face-concerned 1F615 ; fully-qualified # 😕 E1.0 confused face 1F61F ; fully-qualified # 😟 E1.0 worried face 1F641 ; fully-qualified # 🙁 E1.0 slightly frowning face 2639 FE0F ; fully-qualified # ☹️ E0.7 frowning face 2639 ; unqualified # ☹ E0.7 frowning face 1F62E ; fully-qualified # 😮 E1.0 face with open mouth 1F62F ; fully-qualified # 😯 E1.0 hushed face 1F632 ; fully-qualified # 😲 E0.6 astonished face 1F633 ; fully-qualified # 😳 E0.6 flushed face 1F97A ; fully-qualified # 🥺 E11.0 pleading face 1F626 ; fully-qualified # 😦 E1.0 frowning face with open mouth 1F627 ; fully-qualified # 😧 E1.0 anguished face 1F628 ; fully-qualified # 😨 E0.6 fearful face 1F630 ; fully-qualified # 😰 E0.6 anxious face with sweat 1F625 ; fully-qualified # 😥 E0.6 sad but relieved face 1F622 ; fully-qualified # 😢 E0.6 crying face 1F62D ; fully-qualified # 😭 E0.6 loudly crying face 1F631 ; fully-qualified # 😱 E0.6 face screaming in fear 1F616 ; fully-qualified # 😖 E0.6 confounded face 1F623 ; fully-qualified # 😣 E0.6 persevering face 1F61E ; fully-qualified # 😞 E0.6 disappointed face 1F613 ; fully-qualified # 😓 E0.6 downcast face with sweat 1F629 ; fully-qualified # 😩 E0.6 weary face 1F62B ; fully-qualified # 😫 E0.6 tired face 1F971 ; fully-qualified # 🥱 E12.0 yawning face # subgroup: face-negative 1F624 ; fully-qualified # 😤 E0.6 face with steam from nose 1F621 ; fully-qualified # 😡 E0.6 pouting face 1F620 ; fully-qualified # 😠 E0.6 angry face 1F92C ; fully-qualified # 🤬 E5.0 face with symbols on mouth 1F608 ; fully-qualified # 😈 E1.0 smiling face with horns 1F47F ; fully-qualified # 👿 E0.6 angry face with horns 1F480 ; fully-qualified # 💀 E0.6 skull 2620 FE0F ; fully-qualified # ☠️ E1.0 skull and crossbones 2620 ; unqualified # ☠ E1.0 skull and crossbones # subgroup: face-costume 1F4A9 ; fully-qualified # 💩 E0.6 pile of poo 1F921 ; fully-qualified # 🤡 E3.0 clown face 1F479 ; fully-qualified # 👹 E0.6 ogre 1F47A ; fully-qualified # 👺 E0.6 goblin 1F47B ; fully-qualified # 👻 E0.6 ghost 1F47D ; fully-qualified # 👽 E0.6 alien 1F47E ; fully-qualified # 👾 E0.6 alien monster 1F916 ; fully-qualified # 🤖 E1.0 robot # subgroup: cat-face 1F63A ; fully-qualified # 😺 E0.6 grinning cat 1F638 ; fully-qualified # 😸 E0.6 grinning cat with smiling eyes 1F639 ; fully-qualified # 😹 E0.6 cat with tears of joy 1F63B ; fully-qualified # 😻 E0.6 smiling cat with heart-eyes 1F63C ; fully-qualified # 😼 E0.6 cat with wry smile 1F63D ; fully-qualified # 😽 E0.6 kissing cat 1F640 ; fully-qualified # 🙀 E0.6 weary cat 1F63F ; fully-qualified # 😿 E0.6 crying cat 1F63E ; fully-qualified # 😾 E0.6 pouting cat # subgroup: monkey-face 1F648 ; fully-qualified # 🙈 E0.6 see-no-evil monkey 1F649 ; fully-qualified # 🙉 E0.6 hear-no-evil monkey 1F64A ; fully-qualified # 🙊 E0.6 speak-no-evil monkey # subgroup: emotion 1F48B ; fully-qualified # 💋 E0.6 kiss mark 1F48C ; fully-qualified # 💌 E0.6 love letter 1F498 ; fully-qualified # 💘 E0.6 heart with arrow 1F49D ; fully-qualified # 💝 E0.6 heart with ribbon 1F496 ; fully-qualified # 💖 E0.6 sparkling heart 1F497 ; fully-qualified # 💗 E0.6 growing heart 1F493 ; fully-qualified # 💓 E0.6 beating heart 1F49E ; fully-qualified # 💞 E0.6 revolving hearts 1F495 ; fully-qualified # 💕 E0.6 two hearts 1F49F ; fully-qualified # 💟 E0.6 heart decoration 2763 FE0F ; fully-qualified # ❣️ E1.0 heart exclamation 2763 ; unqualified # ❣ E1.0 heart exclamation 1F494 ; fully-qualified # 💔 E0.6 broken heart 2764 FE0F 200D 1F525 ; fully-qualified # ❤️‍🔥 E13.1 heart on fire 2764 200D 1F525 ; unqualified # ❤‍🔥 E13.1 heart on fire 2764 FE0F 200D 1FA79 ; fully-qualified # ❤️‍🩹 E13.1 mending heart 2764 200D 1FA79 ; unqualified # ❤‍🩹 E13.1 mending heart 2764 FE0F ; fully-qualified # ❤️ E0.6 red heart 2764 ; unqualified # ❤ E0.6 red heart 1F9E1 ; fully-qualified # 🧡 E5.0 orange heart 1F49B ; fully-qualified # 💛 E0.6 yellow heart 1F49A ; fully-qualified # 💚 E0.6 green heart 1F499 ; fully-qualified # 💙 E0.6 blue heart 1F49C ; fully-qualified # 💜 E0.6 purple heart 1F90E ; fully-qualified # 🤎 E12.0 brown heart 1F5A4 ; fully-qualified # 🖤 E3.0 black heart 1F90D ; fully-qualified # 🤍 E12.0 white heart 1F4AF ; fully-qualified # 💯 E0.6 hundred points 1F4A2 ; fully-qualified # 💢 E0.6 anger symbol 1F4A5 ; fully-qualified # 💥 E0.6 collision 1F4AB ; fully-qualified # 💫 E0.6 dizzy 1F4A6 ; fully-qualified # 💦 E0.6 sweat droplets 1F4A8 ; fully-qualified # 💨 E0.6 dashing away 1F573 FE0F ; fully-qualified # 🕳️ E0.7 hole 1F573 ; unqualified # 🕳 E0.7 hole 1F4A3 ; fully-qualified # 💣 E0.6 bomb 1F4AC ; fully-qualified # 💬 E0.6 speech balloon 1F441 FE0F 200D 1F5E8 FE0F ; fully-qualified # 👁️‍🗨️ E2.0 eye in speech bubble 1F441 200D 1F5E8 FE0F ; unqualified # 👁‍🗨️ E2.0 eye in speech bubble 1F441 FE0F 200D 1F5E8 ; unqualified # 👁️‍🗨 E2.0 eye in speech bubble 1F441 200D 1F5E8 ; unqualified # 👁‍🗨 E2.0 eye in speech bubble 1F5E8 FE0F ; fully-qualified # 🗨️ E2.0 left speech bubble 1F5E8 ; unqualified # 🗨 E2.0 left speech bubble 1F5EF FE0F ; fully-qualified # 🗯️ E0.7 right anger bubble 1F5EF ; unqualified # 🗯 E0.7 right anger bubble 1F4AD ; fully-qualified # 💭 E1.0 thought balloon 1F4A4 ; fully-qualified # 💤 E0.6 zzz # Smileys & Emotion subtotal: 170 # Smileys & Emotion subtotal: 170 w/o modifiers # group: People & Body # subgroup: hand-fingers-open 1F44B ; fully-qualified # 👋 E0.6 waving hand 1F44B 1F3FB ; fully-qualified # 👋🏻 E1.0 waving hand: light skin tone 1F44B 1F3FC ; fully-qualified # 👋🏼 E1.0 waving hand: medium-light skin tone 1F44B 1F3FD ; fully-qualified # 👋🏽 E1.0 waving hand: medium skin tone 1F44B 1F3FE ; fully-qualified # 👋🏾 E1.0 waving hand: medium-dark skin tone 1F44B 1F3FF ; fully-qualified # 👋🏿 E1.0 waving hand: dark skin tone 1F91A ; fully-qualified # 🤚 E3.0 raised back of hand 1F91A 1F3FB ; fully-qualified # 🤚🏻 E3.0 raised back of hand: light skin tone 1F91A 1F3FC ; fully-qualified # 🤚🏼 E3.0 raised back of hand: medium-light skin tone 1F91A 1F3FD ; fully-qualified # 🤚🏽 E3.0 raised back of hand: medium skin tone 1F91A 1F3FE ; fully-qualified # 🤚🏾 E3.0 raised back of hand: medium-dark skin tone 1F91A 1F3FF ; fully-qualified # 🤚🏿 E3.0 raised back of hand: dark skin tone 1F590 FE0F ; fully-qualified # 🖐️ E0.7 hand with fingers splayed 1F590 ; unqualified # 🖐 E0.7 hand with fingers splayed 1F590 1F3FB ; fully-qualified # 🖐🏻 E1.0 hand with fingers splayed: light skin tone 1F590 1F3FC ; fully-qualified # 🖐🏼 E1.0 hand with fingers splayed: medium-light skin tone 1F590 1F3FD ; fully-qualified # 🖐🏽 E1.0 hand with fingers splayed: medium skin tone 1F590 1F3FE ; fully-qualified # 🖐🏾 E1.0 hand with fingers splayed: medium-dark skin tone 1F590 1F3FF ; fully-qualified # 🖐🏿 E1.0 hand with fingers splayed: dark skin tone 270B ; fully-qualified # ✋ E0.6 raised hand 270B 1F3FB ; fully-qualified # ✋🏻 E1.0 raised hand: light skin tone 270B 1F3FC ; fully-qualified # ✋🏼 E1.0 raised hand: medium-light skin tone 270B 1F3FD ; fully-qualified # ✋🏽 E1.0 raised hand: medium skin tone 270B 1F3FE ; fully-qualified # ✋🏾 E1.0 raised hand: medium-dark skin tone 270B 1F3FF ; fully-qualified # ✋🏿 E1.0 raised hand: dark skin tone 1F596 ; fully-qualified # 🖖 E1.0 vulcan salute 1F596 1F3FB ; fully-qualified # 🖖🏻 E1.0 vulcan salute: light skin tone 1F596 1F3FC ; fully-qualified # 🖖🏼 E1.0 vulcan salute: medium-light skin tone 1F596 1F3FD ; fully-qualified # 🖖🏽 E1.0 vulcan salute: medium skin tone 1F596 1F3FE ; fully-qualified # 🖖🏾 E1.0 vulcan salute: medium-dark skin tone 1F596 1F3FF ; fully-qualified # 🖖🏿 E1.0 vulcan salute: dark skin tone # subgroup: hand-fingers-partial 1F44C ; fully-qualified # 👌 E0.6 OK hand 1F44C 1F3FB ; fully-qualified # 👌🏻 E1.0 OK hand: light skin tone 1F44C 1F3FC ; fully-qualified # 👌🏼 E1.0 OK hand: medium-light skin tone 1F44C 1F3FD ; fully-qualified # 👌🏽 E1.0 OK hand: medium skin tone 1F44C 1F3FE ; fully-qualified # 👌🏾 E1.0 OK hand: medium-dark skin tone 1F44C 1F3FF ; fully-qualified # 👌🏿 E1.0 OK hand: dark skin tone 1F90C ; fully-qualified # 🤌 E13.0 pinched fingers 1F90C 1F3FB ; fully-qualified # 🤌🏻 E13.0 pinched fingers: light skin tone 1F90C 1F3FC ; fully-qualified # 🤌🏼 E13.0 pinched fingers: medium-light skin tone 1F90C 1F3FD ; fully-qualified # 🤌🏽 E13.0 pinched fingers: medium skin tone 1F90C 1F3FE ; fully-qualified # 🤌🏾 E13.0 pinched fingers: medium-dark skin tone 1F90C 1F3FF ; fully-qualified # 🤌🏿 E13.0 pinched fingers: dark skin tone 1F90F ; fully-qualified # 🤏 E12.0 pinching hand 1F90F 1F3FB ; fully-qualified # 🤏🏻 E12.0 pinching hand: light skin tone 1F90F 1F3FC ; fully-qualified # 🤏🏼 E12.0 pinching hand: medium-light skin tone 1F90F 1F3FD ; fully-qualified # 🤏🏽 E12.0 pinching hand: medium skin tone 1F90F 1F3FE ; fully-qualified # 🤏🏾 E12.0 pinching hand: medium-dark skin tone 1F90F 1F3FF ; fully-qualified # 🤏🏿 E12.0 pinching hand: dark skin tone 270C FE0F ; fully-qualified # ✌️ E0.6 victory hand 270C ; unqualified # ✌ E0.6 victory hand 270C 1F3FB ; fully-qualified # ✌🏻 E1.0 victory hand: light skin tone 270C 1F3FC ; fully-qualified # ✌🏼 E1.0 victory hand: medium-light skin tone 270C 1F3FD ; fully-qualified # ✌🏽 E1.0 victory hand: medium skin tone 270C 1F3FE ; fully-qualified # ✌🏾 E1.0 victory hand: medium-dark skin tone 270C 1F3FF ; fully-qualified # ✌🏿 E1.0 victory hand: dark skin tone 1F91E ; fully-qualified # 🤞 E3.0 crossed fingers 1F91E 1F3FB ; fully-qualified # 🤞🏻 E3.0 crossed fingers: light skin tone 1F91E 1F3FC ; fully-qualified # 🤞🏼 E3.0 crossed fingers: medium-light skin tone 1F91E 1F3FD ; fully-qualified # 🤞🏽 E3.0 crossed fingers: medium skin tone 1F91E 1F3FE ; fully-qualified # 🤞🏾 E3.0 crossed fingers: medium-dark skin tone 1F91E 1F3FF ; fully-qualified # 🤞🏿 E3.0 crossed fingers: dark skin tone 1F91F ; fully-qualified # 🤟 E5.0 love-you gesture 1F91F 1F3FB ; fully-qualified # 🤟🏻 E5.0 love-you gesture: light skin tone 1F91F 1F3FC ; fully-qualified # 🤟🏼 E5.0 love-you gesture: medium-light skin tone 1F91F 1F3FD ; fully-qualified # 🤟🏽 E5.0 love-you gesture: medium skin tone 1F91F 1F3FE ; fully-qualified # 🤟🏾 E5.0 love-you gesture: medium-dark skin tone 1F91F 1F3FF ; fully-qualified # 🤟🏿 E5.0 love-you gesture: dark skin tone 1F918 ; fully-qualified # 🤘 E1.0 sign of the horns 1F918 1F3FB ; fully-qualified # 🤘🏻 E1.0 sign of the horns: light skin tone 1F918 1F3FC ; fully-qualified # 🤘🏼 E1.0 sign of the horns: medium-light skin tone 1F918 1F3FD ; fully-qualified # 🤘🏽 E1.0 sign of the horns: medium skin tone 1F918 1F3FE ; fully-qualified # 🤘🏾 E1.0 sign of the horns: medium-dark skin tone 1F918 1F3FF ; fully-qualified # 🤘🏿 E1.0 sign of the horns: dark skin tone 1F919 ; fully-qualified # 🤙 E3.0 call me hand 1F919 1F3FB ; fully-qualified # 🤙🏻 E3.0 call me hand: light skin tone 1F919 1F3FC ; fully-qualified # 🤙🏼 E3.0 call me hand: medium-light skin tone 1F919 1F3FD ; fully-qualified # 🤙🏽 E3.0 call me hand: medium skin tone 1F919 1F3FE ; fully-qualified # 🤙🏾 E3.0 call me hand: medium-dark skin tone 1F919 1F3FF ; fully-qualified # 🤙🏿 E3.0 call me hand: dark skin tone # subgroup: hand-single-finger 1F448 ; fully-qualified # 👈 E0.6 backhand index pointing left 1F448 1F3FB ; fully-qualified # 👈🏻 E1.0 backhand index pointing left: light skin tone 1F448 1F3FC ; fully-qualified # 👈🏼 E1.0 backhand index pointing left: medium-light skin tone 1F448 1F3FD ; fully-qualified # 👈🏽 E1.0 backhand index pointing left: medium skin tone 1F448 1F3FE ; fully-qualified # 👈🏾 E1.0 backhand index pointing left: medium-dark skin tone 1F448 1F3FF ; fully-qualified # 👈🏿 E1.0 backhand index pointing left: dark skin tone 1F449 ; fully-qualified # 👉 E0.6 backhand index pointing right 1F449 1F3FB ; fully-qualified # 👉🏻 E1.0 backhand index pointing right: light skin tone 1F449 1F3FC ; fully-qualified # 👉🏼 E1.0 backhand index pointing right: medium-light skin tone 1F449 1F3FD ; fully-qualified # 👉🏽 E1.0 backhand index pointing right: medium skin tone 1F449 1F3FE ; fully-qualified # 👉🏾 E1.0 backhand index pointing right: medium-dark skin tone 1F449 1F3FF ; fully-qualified # 👉🏿 E1.0 backhand index pointing right: dark skin tone 1F446 ; fully-qualified # 👆 E0.6 backhand index pointing up 1F446 1F3FB ; fully-qualified # 👆🏻 E1.0 backhand index pointing up: light skin tone 1F446 1F3FC ; fully-qualified # 👆🏼 E1.0 backhand index pointing up: medium-light skin tone 1F446 1F3FD ; fully-qualified # 👆🏽 E1.0 backhand index pointing up: medium skin tone 1F446 1F3FE ; fully-qualified # 👆🏾 E1.0 backhand index pointing up: medium-dark skin tone 1F446 1F3FF ; fully-qualified # 👆🏿 E1.0 backhand index pointing up: dark skin tone 1F595 ; fully-qualified # 🖕 E1.0 middle finger 1F595 1F3FB ; fully-qualified # 🖕🏻 E1.0 middle finger: light skin tone 1F595 1F3FC ; fully-qualified # 🖕🏼 E1.0 middle finger: medium-light skin tone 1F595 1F3FD ; fully-qualified # 🖕🏽 E1.0 middle finger: medium skin tone 1F595 1F3FE ; fully-qualified # 🖕🏾 E1.0 middle finger: medium-dark skin tone 1F595 1F3FF ; fully-qualified # 🖕🏿 E1.0 middle finger: dark skin tone 1F447 ; fully-qualified # 👇 E0.6 backhand index pointing down 1F447 1F3FB ; fully-qualified # 👇🏻 E1.0 backhand index pointing down: light skin tone 1F447 1F3FC ; fully-qualified # 👇🏼 E1.0 backhand index pointing down: medium-light skin tone 1F447 1F3FD ; fully-qualified # 👇🏽 E1.0 backhand index pointing down: medium skin tone 1F447 1F3FE ; fully-qualified # 👇🏾 E1.0 backhand index pointing down: medium-dark skin tone 1F447 1F3FF ; fully-qualified # 👇🏿 E1.0 backhand index pointing down: dark skin tone 261D FE0F ; fully-qualified # ☝️ E0.6 index pointing up 261D ; unqualified # ☝ E0.6 index pointing up 261D 1F3FB ; fully-qualified # ☝🏻 E1.0 index pointing up: light skin tone 261D 1F3FC ; fully-qualified # ☝🏼 E1.0 index pointing up: medium-light skin tone 261D 1F3FD ; fully-qualified # ☝🏽 E1.0 index pointing up: medium skin tone 261D 1F3FE ; fully-qualified # ☝🏾 E1.0 index pointing up: medium-dark skin tone 261D 1F3FF ; fully-qualified # ☝🏿 E1.0 index pointing up: dark skin tone # subgroup: hand-fingers-closed 1F44D ; fully-qualified # 👍 E0.6 thumbs up 1F44D 1F3FB ; fully-qualified # 👍🏻 E1.0 thumbs up: light skin tone 1F44D 1F3FC ; fully-qualified # 👍🏼 E1.0 thumbs up: medium-light skin tone 1F44D 1F3FD ; fully-qualified # 👍🏽 E1.0 thumbs up: medium skin tone 1F44D 1F3FE ; fully-qualified # 👍🏾 E1.0 thumbs up: medium-dark skin tone 1F44D 1F3FF ; fully-qualified # 👍🏿 E1.0 thumbs up: dark skin tone 1F44E ; fully-qualified # 👎 E0.6 thumbs down 1F44E 1F3FB ; fully-qualified # 👎🏻 E1.0 thumbs down: light skin tone 1F44E 1F3FC ; fully-qualified # 👎🏼 E1.0 thumbs down: medium-light skin tone 1F44E 1F3FD ; fully-qualified # 👎🏽 E1.0 thumbs down: medium skin tone 1F44E 1F3FE ; fully-qualified # 👎🏾 E1.0 thumbs down: medium-dark skin tone 1F44E 1F3FF ; fully-qualified # 👎🏿 E1.0 thumbs down: dark skin tone 270A ; fully-qualified # ✊ E0.6 raised fist 270A 1F3FB ; fully-qualified # ✊🏻 E1.0 raised fist: light skin tone 270A 1F3FC ; fully-qualified # ✊🏼 E1.0 raised fist: medium-light skin tone 270A 1F3FD ; fully-qualified # ✊🏽 E1.0 raised fist: medium skin tone 270A 1F3FE ; fully-qualified # ✊🏾 E1.0 raised fist: medium-dark skin tone 270A 1F3FF ; fully-qualified # ✊🏿 E1.0 raised fist: dark skin tone 1F44A ; fully-qualified # 👊 E0.6 oncoming fist 1F44A 1F3FB ; fully-qualified # 👊🏻 E1.0 oncoming fist: light skin tone 1F44A 1F3FC ; fully-qualified # 👊🏼 E1.0 oncoming fist: medium-light skin tone 1F44A 1F3FD ; fully-qualified # 👊🏽 E1.0 oncoming fist: medium skin tone 1F44A 1F3FE ; fully-qualified # 👊🏾 E1.0 oncoming fist: medium-dark skin tone 1F44A 1F3FF ; fully-qualified # 👊🏿 E1.0 oncoming fist: dark skin tone 1F91B ; fully-qualified # 🤛 E3.0 left-facing fist 1F91B 1F3FB ; fully-qualified # 🤛🏻 E3.0 left-facing fist: light skin tone 1F91B 1F3FC ; fully-qualified # 🤛🏼 E3.0 left-facing fist: medium-light skin tone 1F91B 1F3FD ; fully-qualified # 🤛🏽 E3.0 left-facing fist: medium skin tone 1F91B 1F3FE ; fully-qualified # 🤛🏾 E3.0 left-facing fist: medium-dark skin tone 1F91B 1F3FF ; fully-qualified # 🤛🏿 E3.0 left-facing fist: dark skin tone 1F91C ; fully-qualified # 🤜 E3.0 right-facing fist 1F91C 1F3FB ; fully-qualified # 🤜🏻 E3.0 right-facing fist: light skin tone 1F91C 1F3FC ; fully-qualified # 🤜🏼 E3.0 right-facing fist: medium-light skin tone 1F91C 1F3FD ; fully-qualified # 🤜🏽 E3.0 right-facing fist: medium skin tone 1F91C 1F3FE ; fully-qualified # 🤜🏾 E3.0 right-facing fist: medium-dark skin tone 1F91C 1F3FF ; fully-qualified # 🤜🏿 E3.0 right-facing fist: dark skin tone # subgroup: hands 1F44F ; fully-qualified # 👏 E0.6 clapping hands 1F44F 1F3FB ; fully-qualified # 👏🏻 E1.0 clapping hands: light skin tone 1F44F 1F3FC ; fully-qualified # 👏🏼 E1.0 clapping hands: medium-light skin tone 1F44F 1F3FD ; fully-qualified # 👏🏽 E1.0 clapping hands: medium skin tone 1F44F 1F3FE ; fully-qualified # 👏🏾 E1.0 clapping hands: medium-dark skin tone 1F44F 1F3FF ; fully-qualified # 👏🏿 E1.0 clapping hands: dark skin tone 1F64C ; fully-qualified # 🙌 E0.6 raising hands 1F64C 1F3FB ; fully-qualified # 🙌🏻 E1.0 raising hands: light skin tone 1F64C 1F3FC ; fully-qualified # 🙌🏼 E1.0 raising hands: medium-light skin tone 1F64C 1F3FD ; fully-qualified # 🙌🏽 E1.0 raising hands: medium skin tone 1F64C 1F3FE ; fully-qualified # 🙌🏾 E1.0 raising hands: medium-dark skin tone 1F64C 1F3FF ; fully-qualified # 🙌🏿 E1.0 raising hands: dark skin tone 1F450 ; fully-qualified # 👐 E0.6 open hands 1F450 1F3FB ; fully-qualified # 👐🏻 E1.0 open hands: light skin tone 1F450 1F3FC ; fully-qualified # 👐🏼 E1.0 open hands: medium-light skin tone 1F450 1F3FD ; fully-qualified # 👐🏽 E1.0 open hands: medium skin tone 1F450 1F3FE ; fully-qualified # 👐🏾 E1.0 open hands: medium-dark skin tone 1F450 1F3FF ; fully-qualified # 👐🏿 E1.0 open hands: dark skin tone 1F932 ; fully-qualified # 🤲 E5.0 palms up together 1F932 1F3FB ; fully-qualified # 🤲🏻 E5.0 palms up together: light skin tone 1F932 1F3FC ; fully-qualified # 🤲🏼 E5.0 palms up together: medium-light skin tone 1F932 1F3FD ; fully-qualified # 🤲🏽 E5.0 palms up together: medium skin tone 1F932 1F3FE ; fully-qualified # 🤲🏾 E5.0 palms up together: medium-dark skin tone 1F932 1F3FF ; fully-qualified # 🤲🏿 E5.0 palms up together: dark skin tone 1F91D ; fully-qualified # 🤝 E3.0 handshake 1F64F ; fully-qualified # 🙏 E0.6 folded hands 1F64F 1F3FB ; fully-qualified # 🙏🏻 E1.0 folded hands: light skin tone 1F64F 1F3FC ; fully-qualified # 🙏🏼 E1.0 folded hands: medium-light skin tone 1F64F 1F3FD ; fully-qualified # 🙏🏽 E1.0 folded hands: medium skin tone 1F64F 1F3FE ; fully-qualified # 🙏🏾 E1.0 folded hands: medium-dark skin tone 1F64F 1F3FF ; fully-qualified # 🙏🏿 E1.0 folded hands: dark skin tone # subgroup: hand-prop 270D FE0F ; fully-qualified # ✍️ E0.7 writing hand 270D ; unqualified # ✍ E0.7 writing hand 270D 1F3FB ; fully-qualified # ✍🏻 E1.0 writing hand: light skin tone 270D 1F3FC ; fully-qualified # ✍🏼 E1.0 writing hand: medium-light skin tone 270D 1F3FD ; fully-qualified # ✍🏽 E1.0 writing hand: medium skin tone 270D 1F3FE ; fully-qualified # ✍🏾 E1.0 writing hand: medium-dark skin tone 270D 1F3FF ; fully-qualified # ✍🏿 E1.0 writing hand: dark skin tone 1F485 ; fully-qualified # 💅 E0.6 nail polish 1F485 1F3FB ; fully-qualified # 💅🏻 E1.0 nail polish: light skin tone 1F485 1F3FC ; fully-qualified # 💅🏼 E1.0 nail polish: medium-light skin tone 1F485 1F3FD ; fully-qualified # 💅🏽 E1.0 nail polish: medium skin tone 1F485 1F3FE ; fully-qualified # 💅🏾 E1.0 nail polish: medium-dark skin tone 1F485 1F3FF ; fully-qualified # 💅🏿 E1.0 nail polish: dark skin tone 1F933 ; fully-qualified # 🤳 E3.0 selfie 1F933 1F3FB ; fully-qualified # 🤳🏻 E3.0 selfie: light skin tone 1F933 1F3FC ; fully-qualified # 🤳🏼 E3.0 selfie: medium-light skin tone 1F933 1F3FD ; fully-qualified # 🤳🏽 E3.0 selfie: medium skin tone 1F933 1F3FE ; fully-qualified # 🤳🏾 E3.0 selfie: medium-dark skin tone 1F933 1F3FF ; fully-qualified # 🤳🏿 E3.0 selfie: dark skin tone # subgroup: body-parts 1F4AA ; fully-qualified # 💪 E0.6 flexed biceps 1F4AA 1F3FB ; fully-qualified # 💪🏻 E1.0 flexed biceps: light skin tone 1F4AA 1F3FC ; fully-qualified # 💪🏼 E1.0 flexed biceps: medium-light skin tone 1F4AA 1F3FD ; fully-qualified # 💪🏽 E1.0 flexed biceps: medium skin tone 1F4AA 1F3FE ; fully-qualified # 💪🏾 E1.0 flexed biceps: medium-dark skin tone 1F4AA 1F3FF ; fully-qualified # 💪🏿 E1.0 flexed biceps: dark skin tone 1F9BE ; fully-qualified # 🦾 E12.0 mechanical arm 1F9BF ; fully-qualified # 🦿 E12.0 mechanical leg 1F9B5 ; fully-qualified # 🦵 E11.0 leg 1F9B5 1F3FB ; fully-qualified # 🦵🏻 E11.0 leg: light skin tone 1F9B5 1F3FC ; fully-qualified # 🦵🏼 E11.0 leg: medium-light skin tone 1F9B5 1F3FD ; fully-qualified # 🦵🏽 E11.0 leg: medium skin tone 1F9B5 1F3FE ; fully-qualified # 🦵🏾 E11.0 leg: medium-dark skin tone 1F9B5 1F3FF ; fully-qualified # 🦵🏿 E11.0 leg: dark skin tone 1F9B6 ; fully-qualified # 🦶 E11.0 foot 1F9B6 1F3FB ; fully-qualified # 🦶🏻 E11.0 foot: light skin tone 1F9B6 1F3FC ; fully-qualified # 🦶🏼 E11.0 foot: medium-light skin tone 1F9B6 1F3FD ; fully-qualified # 🦶🏽 E11.0 foot: medium skin tone 1F9B6 1F3FE ; fully-qualified # 🦶🏾 E11.0 foot: medium-dark skin tone 1F9B6 1F3FF ; fully-qualified # 🦶🏿 E11.0 foot: dark skin tone 1F442 ; fully-qualified # 👂 E0.6 ear 1F442 1F3FB ; fully-qualified # 👂🏻 E1.0 ear: light skin tone 1F442 1F3FC ; fully-qualified # 👂🏼 E1.0 ear: medium-light skin tone 1F442 1F3FD ; fully-qualified # 👂🏽 E1.0 ear: medium skin tone 1F442 1F3FE ; fully-qualified # 👂🏾 E1.0 ear: medium-dark skin tone 1F442 1F3FF ; fully-qualified # 👂🏿 E1.0 ear: dark skin tone 1F9BB ; fully-qualified # 🦻 E12.0 ear with hearing aid 1F9BB 1F3FB ; fully-qualified # 🦻🏻 E12.0 ear with hearing aid: light skin tone 1F9BB 1F3FC ; fully-qualified # 🦻🏼 E12.0 ear with hearing aid: medium-light skin tone 1F9BB 1F3FD ; fully-qualified # 🦻🏽 E12.0 ear with hearing aid: medium skin tone 1F9BB 1F3FE ; fully-qualified # 🦻🏾 E12.0 ear with hearing aid: medium-dark skin tone 1F9BB 1F3FF ; fully-qualified # 🦻🏿 E12.0 ear with hearing aid: dark skin tone 1F443 ; fully-qualified # 👃 E0.6 nose 1F443 1F3FB ; fully-qualified # 👃🏻 E1.0 nose: light skin tone 1F443 1F3FC ; fully-qualified # 👃🏼 E1.0 nose: medium-light skin tone 1F443 1F3FD ; fully-qualified # 👃🏽 E1.0 nose: medium skin tone 1F443 1F3FE ; fully-qualified # 👃🏾 E1.0 nose: medium-dark skin tone 1F443 1F3FF ; fully-qualified # 👃🏿 E1.0 nose: dark skin tone 1F9E0 ; fully-qualified # 🧠 E5.0 brain 1FAC0 ; fully-qualified # 🫀 E13.0 anatomical heart 1FAC1 ; fully-qualified # 🫁 E13.0 lungs 1F9B7 ; fully-qualified # 🦷 E11.0 tooth 1F9B4 ; fully-qualified # 🦴 E11.0 bone 1F440 ; fully-qualified # 👀 E0.6 eyes 1F441 FE0F ; fully-qualified # 👁️ E0.7 eye 1F441 ; unqualified # 👁 E0.7 eye 1F445 ; fully-qualified # 👅 E0.6 tongue 1F444 ; fully-qualified # 👄 E0.6 mouth # subgroup: person 1F476 ; fully-qualified # 👶 E0.6 baby 1F476 1F3FB ; fully-qualified # 👶🏻 E1.0 baby: light skin tone 1F476 1F3FC ; fully-qualified # 👶🏼 E1.0 baby: medium-light skin tone 1F476 1F3FD ; fully-qualified # 👶🏽 E1.0 baby: medium skin tone 1F476 1F3FE ; fully-qualified # 👶🏾 E1.0 baby: medium-dark skin tone 1F476 1F3FF ; fully-qualified # 👶🏿 E1.0 baby: dark skin tone 1F9D2 ; fully-qualified # 🧒 E5.0 child 1F9D2 1F3FB ; fully-qualified # 🧒🏻 E5.0 child: light skin tone 1F9D2 1F3FC ; fully-qualified # 🧒🏼 E5.0 child: medium-light skin tone 1F9D2 1F3FD ; fully-qualified # 🧒🏽 E5.0 child: medium skin tone 1F9D2 1F3FE ; fully-qualified # 🧒🏾 E5.0 child: medium-dark skin tone 1F9D2 1F3FF ; fully-qualified # 🧒🏿 E5.0 child: dark skin tone 1F466 ; fully-qualified # 👦 E0.6 boy 1F466 1F3FB ; fully-qualified # 👦🏻 E1.0 boy: light skin tone 1F466 1F3FC ; fully-qualified # 👦🏼 E1.0 boy: medium-light skin tone 1F466 1F3FD ; fully-qualified # 👦🏽 E1.0 boy: medium skin tone 1F466 1F3FE ; fully-qualified # 👦🏾 E1.0 boy: medium-dark skin tone 1F466 1F3FF ; fully-qualified # 👦🏿 E1.0 boy: dark skin tone 1F467 ; fully-qualified # 👧 E0.6 girl 1F467 1F3FB ; fully-qualified # 👧🏻 E1.0 girl: light skin tone 1F467 1F3FC ; fully-qualified # 👧🏼 E1.0 girl: medium-light skin tone 1F467 1F3FD ; fully-qualified # 👧🏽 E1.0 girl: medium skin tone 1F467 1F3FE ; fully-qualified # 👧🏾 E1.0 girl: medium-dark skin tone 1F467 1F3FF ; fully-qualified # 👧🏿 E1.0 girl: dark skin tone 1F9D1 ; fully-qualified # 🧑 E5.0 person 1F9D1 1F3FB ; fully-qualified # 🧑🏻 E5.0 person: light skin tone 1F9D1 1F3FC ; fully-qualified # 🧑🏼 E5.0 person: medium-light skin tone 1F9D1 1F3FD ; fully-qualified # 🧑🏽 E5.0 person: medium skin tone 1F9D1 1F3FE ; fully-qualified # 🧑🏾 E5.0 person: medium-dark skin tone 1F9D1 1F3FF ; fully-qualified # 🧑🏿 E5.0 person: dark skin tone 1F471 ; fully-qualified # 👱 E0.6 person: blond hair 1F471 1F3FB ; fully-qualified # 👱🏻 E1.0 person: light skin tone, blond hair 1F471 1F3FC ; fully-qualified # 👱🏼 E1.0 person: medium-light skin tone, blond hair 1F471 1F3FD ; fully-qualified # 👱🏽 E1.0 person: medium skin tone, blond hair 1F471 1F3FE ; fully-qualified # 👱🏾 E1.0 person: medium-dark skin tone, blond hair 1F471 1F3FF ; fully-qualified # 👱🏿 E1.0 person: dark skin tone, blond hair 1F468 ; fully-qualified # 👨 E0.6 man 1F468 1F3FB ; fully-qualified # 👨🏻 E1.0 man: light skin tone 1F468 1F3FC ; fully-qualified # 👨🏼 E1.0 man: medium-light skin tone 1F468 1F3FD ; fully-qualified # 👨🏽 E1.0 man: medium skin tone 1F468 1F3FE ; fully-qualified # 👨🏾 E1.0 man: medium-dark skin tone 1F468 1F3FF ; fully-qualified # 👨🏿 E1.0 man: dark skin tone 1F9D4 ; fully-qualified # 🧔 E5.0 person: beard 1F9D4 1F3FB ; fully-qualified # 🧔🏻 E5.0 person: light skin tone, beard 1F9D4 1F3FC ; fully-qualified # 🧔🏼 E5.0 person: medium-light skin tone, beard 1F9D4 1F3FD ; fully-qualified # 🧔🏽 E5.0 person: medium skin tone, beard 1F9D4 1F3FE ; fully-qualified # 🧔🏾 E5.0 person: medium-dark skin tone, beard 1F9D4 1F3FF ; fully-qualified # 🧔🏿 E5.0 person: dark skin tone, beard 1F9D4 200D 2642 FE0F ; fully-qualified # 🧔‍♂️ E13.1 man: beard 1F9D4 200D 2642 ; minimally-qualified # 🧔‍♂ E13.1 man: beard 1F9D4 1F3FB 200D 2642 FE0F ; fully-qualified # 🧔🏻‍♂️ E13.1 man: light skin tone, beard 1F9D4 1F3FB 200D 2642 ; minimally-qualified # 🧔🏻‍♂ E13.1 man: light skin tone, beard 1F9D4 1F3FC 200D 2642 FE0F ; fully-qualified # 🧔🏼‍♂️ E13.1 man: medium-light skin tone, beard 1F9D4 1F3FC 200D 2642 ; minimally-qualified # 🧔🏼‍♂ E13.1 man: medium-light skin tone, beard 1F9D4 1F3FD 200D 2642 FE0F ; fully-qualified # 🧔🏽‍♂️ E13.1 man: medium skin tone, beard 1F9D4 1F3FD 200D 2642 ; minimally-qualified # 🧔🏽‍♂ E13.1 man: medium skin tone, beard 1F9D4 1F3FE 200D 2642 FE0F ; fully-qualified # 🧔🏾‍♂️ E13.1 man: medium-dark skin tone, beard 1F9D4 1F3FE 200D 2642 ; minimally-qualified # 🧔🏾‍♂ E13.1 man: medium-dark skin tone, beard 1F9D4 1F3FF 200D 2642 FE0F ; fully-qualified # 🧔🏿‍♂️ E13.1 man: dark skin tone, beard 1F9D4 1F3FF 200D 2642 ; minimally-qualified # 🧔🏿‍♂ E13.1 man: dark skin tone, beard 1F9D4 200D 2640 FE0F ; fully-qualified # 🧔‍♀️ E13.1 woman: beard 1F9D4 200D 2640 ; minimally-qualified # 🧔‍♀ E13.1 woman: beard 1F9D4 1F3FB 200D 2640 FE0F ; fully-qualified # 🧔🏻‍♀️ E13.1 woman: light skin tone, beard 1F9D4 1F3FB 200D 2640 ; minimally-qualified # 🧔🏻‍♀ E13.1 woman: light skin tone, beard 1F9D4 1F3FC 200D 2640 FE0F ; fully-qualified # 🧔🏼‍♀️ E13.1 woman: medium-light skin tone, beard 1F9D4 1F3FC 200D 2640 ; minimally-qualified # 🧔🏼‍♀ E13.1 woman: medium-light skin tone, beard 1F9D4 1F3FD 200D 2640 FE0F ; fully-qualified # 🧔🏽‍♀️ E13.1 woman: medium skin tone, beard 1F9D4 1F3FD 200D 2640 ; minimally-qualified # 🧔🏽‍♀ E13.1 woman: medium skin tone, beard 1F9D4 1F3FE 200D 2640 FE0F ; fully-qualified # 🧔🏾‍♀️ E13.1 woman: medium-dark skin tone, beard 1F9D4 1F3FE 200D 2640 ; minimally-qualified # 🧔🏾‍♀ E13.1 woman: medium-dark skin tone, beard 1F9D4 1F3FF 200D 2640 FE0F ; fully-qualified # 🧔🏿‍♀️ E13.1 woman: dark skin tone, beard 1F9D4 1F3FF 200D 2640 ; minimally-qualified # 🧔🏿‍♀ E13.1 woman: dark skin tone, beard 1F468 200D 1F9B0 ; fully-qualified # 👨‍🦰 E11.0 man: red hair 1F468 1F3FB 200D 1F9B0 ; fully-qualified # 👨🏻‍🦰 E11.0 man: light skin tone, red hair 1F468 1F3FC 200D 1F9B0 ; fully-qualified # 👨🏼‍🦰 E11.0 man: medium-light skin tone, red hair 1F468 1F3FD 200D 1F9B0 ; fully-qualified # 👨🏽‍🦰 E11.0 man: medium skin tone, red hair 1F468 1F3FE 200D 1F9B0 ; fully-qualified # 👨🏾‍🦰 E11.0 man: medium-dark skin tone, red hair 1F468 1F3FF 200D 1F9B0 ; fully-qualified # 👨🏿‍🦰 E11.0 man: dark skin tone, red hair 1F468 200D 1F9B1 ; fully-qualified # 👨‍🦱 E11.0 man: curly hair 1F468 1F3FB 200D 1F9B1 ; fully-qualified # 👨🏻‍🦱 E11.0 man: light skin tone, curly hair 1F468 1F3FC 200D 1F9B1 ; fully-qualified # 👨🏼‍🦱 E11.0 man: medium-light skin tone, curly hair 1F468 1F3FD 200D 1F9B1 ; fully-qualified # 👨🏽‍🦱 E11.0 man: medium skin tone, curly hair 1F468 1F3FE 200D 1F9B1 ; fully-qualified # 👨🏾‍🦱 E11.0 man: medium-dark skin tone, curly hair 1F468 1F3FF 200D 1F9B1 ; fully-qualified # 👨🏿‍🦱 E11.0 man: dark skin tone, curly hair 1F468 200D 1F9B3 ; fully-qualified # 👨‍🦳 E11.0 man: white hair 1F468 1F3FB 200D 1F9B3 ; fully-qualified # 👨🏻‍🦳 E11.0 man: light skin tone, white hair 1F468 1F3FC 200D 1F9B3 ; fully-qualified # 👨🏼‍🦳 E11.0 man: medium-light skin tone, white hair 1F468 1F3FD 200D 1F9B3 ; fully-qualified # 👨🏽‍🦳 E11.0 man: medium skin tone, white hair 1F468 1F3FE 200D 1F9B3 ; fully-qualified # 👨🏾‍🦳 E11.0 man: medium-dark skin tone, white hair 1F468 1F3FF 200D 1F9B3 ; fully-qualified # 👨🏿‍🦳 E11.0 man: dark skin tone, white hair 1F468 200D 1F9B2 ; fully-qualified # 👨‍🦲 E11.0 man: bald 1F468 1F3FB 200D 1F9B2 ; fully-qualified # 👨🏻‍🦲 E11.0 man: light skin tone, bald 1F468 1F3FC 200D 1F9B2 ; fully-qualified # 👨🏼‍🦲 E11.0 man: medium-light skin tone, bald 1F468 1F3FD 200D 1F9B2 ; fully-qualified # 👨🏽‍🦲 E11.0 man: medium skin tone, bald 1F468 1F3FE 200D 1F9B2 ; fully-qualified # 👨🏾‍🦲 E11.0 man: medium-dark skin tone, bald 1F468 1F3FF 200D 1F9B2 ; fully-qualified # 👨🏿‍🦲 E11.0 man: dark skin tone, bald 1F469 ; fully-qualified # 👩 E0.6 woman 1F469 1F3FB ; fully-qualified # 👩🏻 E1.0 woman: light skin tone 1F469 1F3FC ; fully-qualified # 👩🏼 E1.0 woman: medium-light skin tone 1F469 1F3FD ; fully-qualified # 👩🏽 E1.0 woman: medium skin tone 1F469 1F3FE ; fully-qualified # 👩🏾 E1.0 woman: medium-dark skin tone 1F469 1F3FF ; fully-qualified # 👩🏿 E1.0 woman: dark skin tone 1F469 200D 1F9B0 ; fully-qualified # 👩‍🦰 E11.0 woman: red hair 1F469 1F3FB 200D 1F9B0 ; fully-qualified # 👩🏻‍🦰 E11.0 woman: light skin tone, red hair 1F469 1F3FC 200D 1F9B0 ; fully-qualified # 👩🏼‍🦰 E11.0 woman: medium-light skin tone, red hair 1F469 1F3FD 200D 1F9B0 ; fully-qualified # 👩🏽‍🦰 E11.0 woman: medium skin tone, red hair 1F469 1F3FE 200D 1F9B0 ; fully-qualified # 👩🏾‍🦰 E11.0 woman: medium-dark skin tone, red hair 1F469 1F3FF 200D 1F9B0 ; fully-qualified # 👩🏿‍🦰 E11.0 woman: dark skin tone, red hair 1F9D1 200D 1F9B0 ; fully-qualified # 🧑‍🦰 E12.1 person: red hair 1F9D1 1F3FB 200D 1F9B0 ; fully-qualified # 🧑🏻‍🦰 E12.1 person: light skin tone, red hair 1F9D1 1F3FC 200D 1F9B0 ; fully-qualified # 🧑🏼‍🦰 E12.1 person: medium-light skin tone, red hair 1F9D1 1F3FD 200D 1F9B0 ; fully-qualified # 🧑🏽‍🦰 E12.1 person: medium skin tone, red hair 1F9D1 1F3FE 200D 1F9B0 ; fully-qualified # 🧑🏾‍🦰 E12.1 person: medium-dark skin tone, red hair 1F9D1 1F3FF 200D 1F9B0 ; fully-qualified # 🧑🏿‍🦰 E12.1 person: dark skin tone, red hair 1F469 200D 1F9B1 ; fully-qualified # 👩‍🦱 E11.0 woman: curly hair 1F469 1F3FB 200D 1F9B1 ; fully-qualified # 👩🏻‍🦱 E11.0 woman: light skin tone, curly hair 1F469 1F3FC 200D 1F9B1 ; fully-qualified # 👩🏼‍🦱 E11.0 woman: medium-light skin tone, curly hair 1F469 1F3FD 200D 1F9B1 ; fully-qualified # 👩🏽‍🦱 E11.0 woman: medium skin tone, curly hair 1F469 1F3FE 200D 1F9B1 ; fully-qualified # 👩🏾‍🦱 E11.0 woman: medium-dark skin tone, curly hair 1F469 1F3FF 200D 1F9B1 ; fully-qualified # 👩🏿‍🦱 E11.0 woman: dark skin tone, curly hair 1F9D1 200D 1F9B1 ; fully-qualified # 🧑‍🦱 E12.1 person: curly hair 1F9D1 1F3FB 200D 1F9B1 ; fully-qualified # 🧑🏻‍🦱 E12.1 person: light skin tone, curly hair 1F9D1 1F3FC 200D 1F9B1 ; fully-qualified # 🧑🏼‍🦱 E12.1 person: medium-light skin tone, curly hair 1F9D1 1F3FD 200D 1F9B1 ; fully-qualified # 🧑🏽‍🦱 E12.1 person: medium skin tone, curly hair 1F9D1 1F3FE 200D 1F9B1 ; fully-qualified # 🧑🏾‍🦱 E12.1 person: medium-dark skin tone, curly hair 1F9D1 1F3FF 200D 1F9B1 ; fully-qualified # 🧑🏿‍🦱 E12.1 person: dark skin tone, curly hair 1F469 200D 1F9B3 ; fully-qualified # 👩‍🦳 E11.0 woman: white hair 1F469 1F3FB 200D 1F9B3 ; fully-qualified # 👩🏻‍🦳 E11.0 woman: light skin tone, white hair 1F469 1F3FC 200D 1F9B3 ; fully-qualified # 👩🏼‍🦳 E11.0 woman: medium-light skin tone, white hair 1F469 1F3FD 200D 1F9B3 ; fully-qualified # 👩🏽‍🦳 E11.0 woman: medium skin tone, white hair 1F469 1F3FE 200D 1F9B3 ; fully-qualified # 👩🏾‍🦳 E11.0 woman: medium-dark skin tone, white hair 1F469 1F3FF 200D 1F9B3 ; fully-qualified # 👩🏿‍🦳 E11.0 woman: dark skin tone, white hair 1F9D1 200D 1F9B3 ; fully-qualified # 🧑‍🦳 E12.1 person: white hair 1F9D1 1F3FB 200D 1F9B3 ; fully-qualified # 🧑🏻‍🦳 E12.1 person: light skin tone, white hair 1F9D1 1F3FC 200D 1F9B3 ; fully-qualified # 🧑🏼‍🦳 E12.1 person: medium-light skin tone, white hair 1F9D1 1F3FD 200D 1F9B3 ; fully-qualified # 🧑🏽‍🦳 E12.1 person: medium skin tone, white hair 1F9D1 1F3FE 200D 1F9B3 ; fully-qualified # 🧑🏾‍🦳 E12.1 person: medium-dark skin tone, white hair 1F9D1 1F3FF 200D 1F9B3 ; fully-qualified # 🧑🏿‍🦳 E12.1 person: dark skin tone, white hair 1F469 200D 1F9B2 ; fully-qualified # 👩‍🦲 E11.0 woman: bald 1F469 1F3FB 200D 1F9B2 ; fully-qualified # 👩🏻‍🦲 E11.0 woman: light skin tone, bald 1F469 1F3FC 200D 1F9B2 ; fully-qualified # 👩🏼‍🦲 E11.0 woman: medium-light skin tone, bald 1F469 1F3FD 200D 1F9B2 ; fully-qualified # 👩🏽‍🦲 E11.0 woman: medium skin tone, bald 1F469 1F3FE 200D 1F9B2 ; fully-qualified # 👩🏾‍🦲 E11.0 woman: medium-dark skin tone, bald 1F469 1F3FF 200D 1F9B2 ; fully-qualified # 👩🏿‍🦲 E11.0 woman: dark skin tone, bald 1F9D1 200D 1F9B2 ; fully-qualified # 🧑‍🦲 E12.1 person: bald 1F9D1 1F3FB 200D 1F9B2 ; fully-qualified # 🧑🏻‍🦲 E12.1 person: light skin tone, bald 1F9D1 1F3FC 200D 1F9B2 ; fully-qualified # 🧑🏼‍🦲 E12.1 person: medium-light skin tone, bald 1F9D1 1F3FD 200D 1F9B2 ; fully-qualified # 🧑🏽‍🦲 E12.1 person: medium skin tone, bald 1F9D1 1F3FE 200D 1F9B2 ; fully-qualified # 🧑🏾‍🦲 E12.1 person: medium-dark skin tone, bald 1F9D1 1F3FF 200D 1F9B2 ; fully-qualified # 🧑🏿‍🦲 E12.1 person: dark skin tone, bald 1F471 200D 2640 FE0F ; fully-qualified # 👱‍♀️ E4.0 woman: blond hair 1F471 200D 2640 ; minimally-qualified # 👱‍♀ E4.0 woman: blond hair 1F471 1F3FB 200D 2640 FE0F ; fully-qualified # 👱🏻‍♀️ E4.0 woman: light skin tone, blond hair 1F471 1F3FB 200D 2640 ; minimally-qualified # 👱🏻‍♀ E4.0 woman: light skin tone, blond hair 1F471 1F3FC 200D 2640 FE0F ; fully-qualified # 👱🏼‍♀️ E4.0 woman: medium-light skin tone, blond hair 1F471 1F3FC 200D 2640 ; minimally-qualified # 👱🏼‍♀ E4.0 woman: medium-light skin tone, blond hair 1F471 1F3FD 200D 2640 FE0F ; fully-qualified # 👱🏽‍♀️ E4.0 woman: medium skin tone, blond hair 1F471 1F3FD 200D 2640 ; minimally-qualified # 👱🏽‍♀ E4.0 woman: medium skin tone, blond hair 1F471 1F3FE 200D 2640 FE0F ; fully-qualified # 👱🏾‍♀️ E4.0 woman: medium-dark skin tone, blond hair 1F471 1F3FE 200D 2640 ; minimally-qualified # 👱🏾‍♀ E4.0 woman: medium-dark skin tone, blond hair 1F471 1F3FF 200D 2640 FE0F ; fully-qualified # 👱🏿‍♀️ E4.0 woman: dark skin tone, blond hair 1F471 1F3FF 200D 2640 ; minimally-qualified # 👱🏿‍♀ E4.0 woman: dark skin tone, blond hair 1F471 200D 2642 FE0F ; fully-qualified # 👱‍♂️ E4.0 man: blond hair 1F471 200D 2642 ; minimally-qualified # 👱‍♂ E4.0 man: blond hair 1F471 1F3FB 200D 2642 FE0F ; fully-qualified # 👱🏻‍♂️ E4.0 man: light skin tone, blond hair 1F471 1F3FB 200D 2642 ; minimally-qualified # 👱🏻‍♂ E4.0 man: light skin tone, blond hair 1F471 1F3FC 200D 2642 FE0F ; fully-qualified # 👱🏼‍♂️ E4.0 man: medium-light skin tone, blond hair 1F471 1F3FC 200D 2642 ; minimally-qualified # 👱🏼‍♂ E4.0 man: medium-light skin tone, blond hair 1F471 1F3FD 200D 2642 FE0F ; fully-qualified # 👱🏽‍♂️ E4.0 man: medium skin tone, blond hair 1F471 1F3FD 200D 2642 ; minimally-qualified # 👱🏽‍♂ E4.0 man: medium skin tone, blond hair 1F471 1F3FE 200D 2642 FE0F ; fully-qualified # 👱🏾‍♂️ E4.0 man: medium-dark skin tone, blond hair 1F471 1F3FE 200D 2642 ; minimally-qualified # 👱🏾‍♂ E4.0 man: medium-dark skin tone, blond hair 1F471 1F3FF 200D 2642 FE0F ; fully-qualified # 👱🏿‍♂️ E4.0 man: dark skin tone, blond hair 1F471 1F3FF 200D 2642 ; minimally-qualified # 👱🏿‍♂ E4.0 man: dark skin tone, blond hair 1F9D3 ; fully-qualified # 🧓 E5.0 older person 1F9D3 1F3FB ; fully-qualified # 🧓🏻 E5.0 older person: light skin tone 1F9D3 1F3FC ; fully-qualified # 🧓🏼 E5.0 older person: medium-light skin tone 1F9D3 1F3FD ; fully-qualified # 🧓🏽 E5.0 older person: medium skin tone 1F9D3 1F3FE ; fully-qualified # 🧓🏾 E5.0 older person: medium-dark skin tone 1F9D3 1F3FF ; fully-qualified # 🧓🏿 E5.0 older person: dark skin tone 1F474 ; fully-qualified # 👴 E0.6 old man 1F474 1F3FB ; fully-qualified # 👴🏻 E1.0 old man: light skin tone 1F474 1F3FC ; fully-qualified # 👴🏼 E1.0 old man: medium-light skin tone 1F474 1F3FD ; fully-qualified # 👴🏽 E1.0 old man: medium skin tone 1F474 1F3FE ; fully-qualified # 👴🏾 E1.0 old man: medium-dark skin tone 1F474 1F3FF ; fully-qualified # 👴🏿 E1.0 old man: dark skin tone 1F475 ; fully-qualified # 👵 E0.6 old woman 1F475 1F3FB ; fully-qualified # 👵🏻 E1.0 old woman: light skin tone 1F475 1F3FC ; fully-qualified # 👵🏼 E1.0 old woman: medium-light skin tone 1F475 1F3FD ; fully-qualified # 👵🏽 E1.0 old woman: medium skin tone 1F475 1F3FE ; fully-qualified # 👵🏾 E1.0 old woman: medium-dark skin tone 1F475 1F3FF ; fully-qualified # 👵🏿 E1.0 old woman: dark skin tone # subgroup: person-gesture 1F64D ; fully-qualified # 🙍 E0.6 person frowning 1F64D 1F3FB ; fully-qualified # 🙍🏻 E1.0 person frowning: light skin tone 1F64D 1F3FC ; fully-qualified # 🙍🏼 E1.0 person frowning: medium-light skin tone 1F64D 1F3FD ; fully-qualified # 🙍🏽 E1.0 person frowning: medium skin tone 1F64D 1F3FE ; fully-qualified # 🙍🏾 E1.0 person frowning: medium-dark skin tone 1F64D 1F3FF ; fully-qualified # 🙍🏿 E1.0 person frowning: dark skin tone 1F64D 200D 2642 FE0F ; fully-qualified # 🙍‍♂️ E4.0 man frowning 1F64D 200D 2642 ; minimally-qualified # 🙍‍♂ E4.0 man frowning 1F64D 1F3FB 200D 2642 FE0F ; fully-qualified # 🙍🏻‍♂️ E4.0 man frowning: light skin tone 1F64D 1F3FB 200D 2642 ; minimally-qualified # 🙍🏻‍♂ E4.0 man frowning: light skin tone 1F64D 1F3FC 200D 2642 FE0F ; fully-qualified # 🙍🏼‍♂️ E4.0 man frowning: medium-light skin tone 1F64D 1F3FC 200D 2642 ; minimally-qualified # 🙍🏼‍♂ E4.0 man frowning: medium-light skin tone 1F64D 1F3FD 200D 2642 FE0F ; fully-qualified # 🙍🏽‍♂️ E4.0 man frowning: medium skin tone 1F64D 1F3FD 200D 2642 ; minimally-qualified # 🙍🏽‍♂ E4.0 man frowning: medium skin tone 1F64D 1F3FE 200D 2642 FE0F ; fully-qualified # 🙍🏾‍♂️ E4.0 man frowning: medium-dark skin tone 1F64D 1F3FE 200D 2642 ; minimally-qualified # 🙍🏾‍♂ E4.0 man frowning: medium-dark skin tone 1F64D 1F3FF 200D 2642 FE0F ; fully-qualified # 🙍🏿‍♂️ E4.0 man frowning: dark skin tone 1F64D 1F3FF 200D 2642 ; minimally-qualified # 🙍🏿‍♂ E4.0 man frowning: dark skin tone 1F64D 200D 2640 FE0F ; fully-qualified # 🙍‍♀️ E4.0 woman frowning 1F64D 200D 2640 ; minimally-qualified # 🙍‍♀ E4.0 woman frowning 1F64D 1F3FB 200D 2640 FE0F ; fully-qualified # 🙍🏻‍♀️ E4.0 woman frowning: light skin tone 1F64D 1F3FB 200D 2640 ; minimally-qualified # 🙍🏻‍♀ E4.0 woman frowning: light skin tone 1F64D 1F3FC 200D 2640 FE0F ; fully-qualified # 🙍🏼‍♀️ E4.0 woman frowning: medium-light skin tone 1F64D 1F3FC 200D 2640 ; minimally-qualified # 🙍🏼‍♀ E4.0 woman frowning: medium-light skin tone 1F64D 1F3FD 200D 2640 FE0F ; fully-qualified # 🙍🏽‍♀️ E4.0 woman frowning: medium skin tone 1F64D 1F3FD 200D 2640 ; minimally-qualified # 🙍🏽‍♀ E4.0 woman frowning: medium skin tone 1F64D 1F3FE 200D 2640 FE0F ; fully-qualified # 🙍🏾‍♀️ E4.0 woman frowning: medium-dark skin tone 1F64D 1F3FE 200D 2640 ; minimally-qualified # 🙍🏾‍♀ E4.0 woman frowning: medium-dark skin tone 1F64D 1F3FF 200D 2640 FE0F ; fully-qualified # 🙍🏿‍♀️ E4.0 woman frowning: dark skin tone 1F64D 1F3FF 200D 2640 ; minimally-qualified # 🙍🏿‍♀ E4.0 woman frowning: dark skin tone 1F64E ; fully-qualified # 🙎 E0.6 person pouting 1F64E 1F3FB ; fully-qualified # 🙎🏻 E1.0 person pouting: light skin tone 1F64E 1F3FC ; fully-qualified # 🙎🏼 E1.0 person pouting: medium-light skin tone 1F64E 1F3FD ; fully-qualified # 🙎🏽 E1.0 person pouting: medium skin tone 1F64E 1F3FE ; fully-qualified # 🙎🏾 E1.0 person pouting: medium-dark skin tone 1F64E 1F3FF ; fully-qualified # 🙎🏿 E1.0 person pouting: dark skin tone 1F64E 200D 2642 FE0F ; fully-qualified # 🙎‍♂️ E4.0 man pouting 1F64E 200D 2642 ; minimally-qualified # 🙎‍♂ E4.0 man pouting 1F64E 1F3FB 200D 2642 FE0F ; fully-qualified # 🙎🏻‍♂️ E4.0 man pouting: light skin tone 1F64E 1F3FB 200D 2642 ; minimally-qualified # 🙎🏻‍♂ E4.0 man pouting: light skin tone 1F64E 1F3FC 200D 2642 FE0F ; fully-qualified # 🙎🏼‍♂️ E4.0 man pouting: medium-light skin tone 1F64E 1F3FC 200D 2642 ; minimally-qualified # 🙎🏼‍♂ E4.0 man pouting: medium-light skin tone 1F64E 1F3FD 200D 2642 FE0F ; fully-qualified # 🙎🏽‍♂️ E4.0 man pouting: medium skin tone 1F64E 1F3FD 200D 2642 ; minimally-qualified # 🙎🏽‍♂ E4.0 man pouting: medium skin tone 1F64E 1F3FE 200D 2642 FE0F ; fully-qualified # 🙎🏾‍♂️ E4.0 man pouting: medium-dark skin tone 1F64E 1F3FE 200D 2642 ; minimally-qualified # 🙎🏾‍♂ E4.0 man pouting: medium-dark skin tone 1F64E 1F3FF 200D 2642 FE0F ; fully-qualified # 🙎🏿‍♂️ E4.0 man pouting: dark skin tone 1F64E 1F3FF 200D 2642 ; minimally-qualified # 🙎🏿‍♂ E4.0 man pouting: dark skin tone 1F64E 200D 2640 FE0F ; fully-qualified # 🙎‍♀️ E4.0 woman pouting 1F64E 200D 2640 ; minimally-qualified # 🙎‍♀ E4.0 woman pouting 1F64E 1F3FB 200D 2640 FE0F ; fully-qualified # 🙎🏻‍♀️ E4.0 woman pouting: light skin tone 1F64E 1F3FB 200D 2640 ; minimally-qualified # 🙎🏻‍♀ E4.0 woman pouting: light skin tone 1F64E 1F3FC 200D 2640 FE0F ; fully-qualified # 🙎🏼‍♀️ E4.0 woman pouting: medium-light skin tone 1F64E 1F3FC 200D 2640 ; minimally-qualified # 🙎🏼‍♀ E4.0 woman pouting: medium-light skin tone 1F64E 1F3FD 200D 2640 FE0F ; fully-qualified # 🙎🏽‍♀️ E4.0 woman pouting: medium skin tone 1F64E 1F3FD 200D 2640 ; minimally-qualified # 🙎🏽‍♀ E4.0 woman pouting: medium skin tone 1F64E 1F3FE 200D 2640 FE0F ; fully-qualified # 🙎🏾‍♀️ E4.0 woman pouting: medium-dark skin tone 1F64E 1F3FE 200D 2640 ; minimally-qualified # 🙎🏾‍♀ E4.0 woman pouting: medium-dark skin tone 1F64E 1F3FF 200D 2640 FE0F ; fully-qualified # 🙎🏿‍♀️ E4.0 woman pouting: dark skin tone 1F64E 1F3FF 200D 2640 ; minimally-qualified # 🙎🏿‍♀ E4.0 woman pouting: dark skin tone 1F645 ; fully-qualified # 🙅 E0.6 person gesturing NO 1F645 1F3FB ; fully-qualified # 🙅🏻 E1.0 person gesturing NO: light skin tone 1F645 1F3FC ; fully-qualified # 🙅🏼 E1.0 person gesturing NO: medium-light skin tone 1F645 1F3FD ; fully-qualified # 🙅🏽 E1.0 person gesturing NO: medium skin tone 1F645 1F3FE ; fully-qualified # 🙅🏾 E1.0 person gesturing NO: medium-dark skin tone 1F645 1F3FF ; fully-qualified # 🙅🏿 E1.0 person gesturing NO: dark skin tone 1F645 200D 2642 FE0F ; fully-qualified # 🙅‍♂️ E4.0 man gesturing NO 1F645 200D 2642 ; minimally-qualified # 🙅‍♂ E4.0 man gesturing NO 1F645 1F3FB 200D 2642 FE0F ; fully-qualified # 🙅🏻‍♂️ E4.0 man gesturing NO: light skin tone 1F645 1F3FB 200D 2642 ; minimally-qualified # 🙅🏻‍♂ E4.0 man gesturing NO: light skin tone 1F645 1F3FC 200D 2642 FE0F ; fully-qualified # 🙅🏼‍♂️ E4.0 man gesturing NO: medium-light skin tone 1F645 1F3FC 200D 2642 ; minimally-qualified # 🙅🏼‍♂ E4.0 man gesturing NO: medium-light skin tone 1F645 1F3FD 200D 2642 FE0F ; fully-qualified # 🙅🏽‍♂️ E4.0 man gesturing NO: medium skin tone 1F645 1F3FD 200D 2642 ; minimally-qualified # 🙅🏽‍♂ E4.0 man gesturing NO: medium skin tone 1F645 1F3FE 200D 2642 FE0F ; fully-qualified # 🙅🏾‍♂️ E4.0 man gesturing NO: medium-dark skin tone 1F645 1F3FE 200D 2642 ; minimally-qualified # 🙅🏾‍♂ E4.0 man gesturing NO: medium-dark skin tone 1F645 1F3FF 200D 2642 FE0F ; fully-qualified # 🙅🏿‍♂️ E4.0 man gesturing NO: dark skin tone 1F645 1F3FF 200D 2642 ; minimally-qualified # 🙅🏿‍♂ E4.0 man gesturing NO: dark skin tone 1F645 200D 2640 FE0F ; fully-qualified # 🙅‍♀️ E4.0 woman gesturing NO 1F645 200D 2640 ; minimally-qualified # 🙅‍♀ E4.0 woman gesturing NO 1F645 1F3FB 200D 2640 FE0F ; fully-qualified # 🙅🏻‍♀️ E4.0 woman gesturing NO: light skin tone 1F645 1F3FB 200D 2640 ; minimally-qualified # 🙅🏻‍♀ E4.0 woman gesturing NO: light skin tone 1F645 1F3FC 200D 2640 FE0F ; fully-qualified # 🙅🏼‍♀️ E4.0 woman gesturing NO: medium-light skin tone 1F645 1F3FC 200D 2640 ; minimally-qualified # 🙅🏼‍♀ E4.0 woman gesturing NO: medium-light skin tone 1F645 1F3FD 200D 2640 FE0F ; fully-qualified # 🙅🏽‍♀️ E4.0 woman gesturing NO: medium skin tone 1F645 1F3FD 200D 2640 ; minimally-qualified # 🙅🏽‍♀ E4.0 woman gesturing NO: medium skin tone 1F645 1F3FE 200D 2640 FE0F ; fully-qualified # 🙅🏾‍♀️ E4.0 woman gesturing NO: medium-dark skin tone 1F645 1F3FE 200D 2640 ; minimally-qualified # 🙅🏾‍♀ E4.0 woman gesturing NO: medium-dark skin tone 1F645 1F3FF 200D 2640 FE0F ; fully-qualified # 🙅🏿‍♀️ E4.0 woman gesturing NO: dark skin tone 1F645 1F3FF 200D 2640 ; minimally-qualified # 🙅🏿‍♀ E4.0 woman gesturing NO: dark skin tone 1F646 ; fully-qualified # 🙆 E0.6 person gesturing OK 1F646 1F3FB ; fully-qualified # 🙆🏻 E1.0 person gesturing OK: light skin tone 1F646 1F3FC ; fully-qualified # 🙆🏼 E1.0 person gesturing OK: medium-light skin tone 1F646 1F3FD ; fully-qualified # 🙆🏽 E1.0 person gesturing OK: medium skin tone 1F646 1F3FE ; fully-qualified # 🙆🏾 E1.0 person gesturing OK: medium-dark skin tone 1F646 1F3FF ; fully-qualified # 🙆🏿 E1.0 person gesturing OK: dark skin tone 1F646 200D 2642 FE0F ; fully-qualified # 🙆‍♂️ E4.0 man gesturing OK 1F646 200D 2642 ; minimally-qualified # 🙆‍♂ E4.0 man gesturing OK 1F646 1F3FB 200D 2642 FE0F ; fully-qualified # 🙆🏻‍♂️ E4.0 man gesturing OK: light skin tone 1F646 1F3FB 200D 2642 ; minimally-qualified # 🙆🏻‍♂ E4.0 man gesturing OK: light skin tone 1F646 1F3FC 200D 2642 FE0F ; fully-qualified # 🙆🏼‍♂️ E4.0 man gesturing OK: medium-light skin tone 1F646 1F3FC 200D 2642 ; minimally-qualified # 🙆🏼‍♂ E4.0 man gesturing OK: medium-light skin tone 1F646 1F3FD 200D 2642 FE0F ; fully-qualified # 🙆🏽‍♂️ E4.0 man gesturing OK: medium skin tone 1F646 1F3FD 200D 2642 ; minimally-qualified # 🙆🏽‍♂ E4.0 man gesturing OK: medium skin tone 1F646 1F3FE 200D 2642 FE0F ; fully-qualified # 🙆🏾‍♂️ E4.0 man gesturing OK: medium-dark skin tone 1F646 1F3FE 200D 2642 ; minimally-qualified # 🙆🏾‍♂ E4.0 man gesturing OK: medium-dark skin tone 1F646 1F3FF 200D 2642 FE0F ; fully-qualified # 🙆🏿‍♂️ E4.0 man gesturing OK: dark skin tone 1F646 1F3FF 200D 2642 ; minimally-qualified # 🙆🏿‍♂ E4.0 man gesturing OK: dark skin tone 1F646 200D 2640 FE0F ; fully-qualified # 🙆‍♀️ E4.0 woman gesturing OK 1F646 200D 2640 ; minimally-qualified # 🙆‍♀ E4.0 woman gesturing OK 1F646 1F3FB 200D 2640 FE0F ; fully-qualified # 🙆🏻‍♀️ E4.0 woman gesturing OK: light skin tone 1F646 1F3FB 200D 2640 ; minimally-qualified # 🙆🏻‍♀ E4.0 woman gesturing OK: light skin tone 1F646 1F3FC 200D 2640 FE0F ; fully-qualified # 🙆🏼‍♀️ E4.0 woman gesturing OK: medium-light skin tone 1F646 1F3FC 200D 2640 ; minimally-qualified # 🙆🏼‍♀ E4.0 woman gesturing OK: medium-light skin tone 1F646 1F3FD 200D 2640 FE0F ; fully-qualified # 🙆🏽‍♀️ E4.0 woman gesturing OK: medium skin tone 1F646 1F3FD 200D 2640 ; minimally-qualified # 🙆🏽‍♀ E4.0 woman gesturing OK: medium skin tone 1F646 1F3FE 200D 2640 FE0F ; fully-qualified # 🙆🏾‍♀️ E4.0 woman gesturing OK: medium-dark skin tone 1F646 1F3FE 200D 2640 ; minimally-qualified # 🙆🏾‍♀ E4.0 woman gesturing OK: medium-dark skin tone 1F646 1F3FF 200D 2640 FE0F ; fully-qualified # 🙆🏿‍♀️ E4.0 woman gesturing OK: dark skin tone 1F646 1F3FF 200D 2640 ; minimally-qualified # 🙆🏿‍♀ E4.0 woman gesturing OK: dark skin tone 1F481 ; fully-qualified # 💁 E0.6 person tipping hand 1F481 1F3FB ; fully-qualified # 💁🏻 E1.0 person tipping hand: light skin tone 1F481 1F3FC ; fully-qualified # 💁🏼 E1.0 person tipping hand: medium-light skin tone 1F481 1F3FD ; fully-qualified # 💁🏽 E1.0 person tipping hand: medium skin tone 1F481 1F3FE ; fully-qualified # 💁🏾 E1.0 person tipping hand: medium-dark skin tone 1F481 1F3FF ; fully-qualified # 💁🏿 E1.0 person tipping hand: dark skin tone 1F481 200D 2642 FE0F ; fully-qualified # 💁‍♂️ E4.0 man tipping hand 1F481 200D 2642 ; minimally-qualified # 💁‍♂ E4.0 man tipping hand 1F481 1F3FB 200D 2642 FE0F ; fully-qualified # 💁🏻‍♂️ E4.0 man tipping hand: light skin tone 1F481 1F3FB 200D 2642 ; minimally-qualified # 💁🏻‍♂ E4.0 man tipping hand: light skin tone 1F481 1F3FC 200D 2642 FE0F ; fully-qualified # 💁🏼‍♂️ E4.0 man tipping hand: medium-light skin tone 1F481 1F3FC 200D 2642 ; minimally-qualified # 💁🏼‍♂ E4.0 man tipping hand: medium-light skin tone 1F481 1F3FD 200D 2642 FE0F ; fully-qualified # 💁🏽‍♂️ E4.0 man tipping hand: medium skin tone 1F481 1F3FD 200D 2642 ; minimally-qualified # 💁🏽‍♂ E4.0 man tipping hand: medium skin tone 1F481 1F3FE 200D 2642 FE0F ; fully-qualified # 💁🏾‍♂️ E4.0 man tipping hand: medium-dark skin tone 1F481 1F3FE 200D 2642 ; minimally-qualified # 💁🏾‍♂ E4.0 man tipping hand: medium-dark skin tone 1F481 1F3FF 200D 2642 FE0F ; fully-qualified # 💁🏿‍♂️ E4.0 man tipping hand: dark skin tone 1F481 1F3FF 200D 2642 ; minimally-qualified # 💁🏿‍♂ E4.0 man tipping hand: dark skin tone 1F481 200D 2640 FE0F ; fully-qualified # 💁‍♀️ E4.0 woman tipping hand 1F481 200D 2640 ; minimally-qualified # 💁‍♀ E4.0 woman tipping hand 1F481 1F3FB 200D 2640 FE0F ; fully-qualified # 💁🏻‍♀️ E4.0 woman tipping hand: light skin tone 1F481 1F3FB 200D 2640 ; minimally-qualified # 💁🏻‍♀ E4.0 woman tipping hand: light skin tone 1F481 1F3FC 200D 2640 FE0F ; fully-qualified # 💁🏼‍♀️ E4.0 woman tipping hand: medium-light skin tone 1F481 1F3FC 200D 2640 ; minimally-qualified # 💁🏼‍♀ E4.0 woman tipping hand: medium-light skin tone 1F481 1F3FD 200D 2640 FE0F ; fully-qualified # 💁🏽‍♀️ E4.0 woman tipping hand: medium skin tone 1F481 1F3FD 200D 2640 ; minimally-qualified # 💁🏽‍♀ E4.0 woman tipping hand: medium skin tone 1F481 1F3FE 200D 2640 FE0F ; fully-qualified # 💁🏾‍♀️ E4.0 woman tipping hand: medium-dark skin tone 1F481 1F3FE 200D 2640 ; minimally-qualified # 💁🏾‍♀ E4.0 woman tipping hand: medium-dark skin tone 1F481 1F3FF 200D 2640 FE0F ; fully-qualified # 💁🏿‍♀️ E4.0 woman tipping hand: dark skin tone 1F481 1F3FF 200D 2640 ; minimally-qualified # 💁🏿‍♀ E4.0 woman tipping hand: dark skin tone 1F64B ; fully-qualified # 🙋 E0.6 person raising hand 1F64B 1F3FB ; fully-qualified # 🙋🏻 E1.0 person raising hand: light skin tone 1F64B 1F3FC ; fully-qualified # 🙋🏼 E1.0 person raising hand: medium-light skin tone 1F64B 1F3FD ; fully-qualified # 🙋🏽 E1.0 person raising hand: medium skin tone 1F64B 1F3FE ; fully-qualified # 🙋🏾 E1.0 person raising hand: medium-dark skin tone 1F64B 1F3FF ; fully-qualified # 🙋🏿 E1.0 person raising hand: dark skin tone 1F64B 200D 2642 FE0F ; fully-qualified # 🙋‍♂️ E4.0 man raising hand 1F64B 200D 2642 ; minimally-qualified # 🙋‍♂ E4.0 man raising hand 1F64B 1F3FB 200D 2642 FE0F ; fully-qualified # 🙋🏻‍♂️ E4.0 man raising hand: light skin tone 1F64B 1F3FB 200D 2642 ; minimally-qualified # 🙋🏻‍♂ E4.0 man raising hand: light skin tone 1F64B 1F3FC 200D 2642 FE0F ; fully-qualified # 🙋🏼‍♂️ E4.0 man raising hand: medium-light skin tone 1F64B 1F3FC 200D 2642 ; minimally-qualified # 🙋🏼‍♂ E4.0 man raising hand: medium-light skin tone 1F64B 1F3FD 200D 2642 FE0F ; fully-qualified # 🙋🏽‍♂️ E4.0 man raising hand: medium skin tone 1F64B 1F3FD 200D 2642 ; minimally-qualified # 🙋🏽‍♂ E4.0 man raising hand: medium skin tone 1F64B 1F3FE 200D 2642 FE0F ; fully-qualified # 🙋🏾‍♂️ E4.0 man raising hand: medium-dark skin tone 1F64B 1F3FE 200D 2642 ; minimally-qualified # 🙋🏾‍♂ E4.0 man raising hand: medium-dark skin tone 1F64B 1F3FF 200D 2642 FE0F ; fully-qualified # 🙋🏿‍♂️ E4.0 man raising hand: dark skin tone 1F64B 1F3FF 200D 2642 ; minimally-qualified # 🙋🏿‍♂ E4.0 man raising hand: dark skin tone 1F64B 200D 2640 FE0F ; fully-qualified # 🙋‍♀️ E4.0 woman raising hand 1F64B 200D 2640 ; minimally-qualified # 🙋‍♀ E4.0 woman raising hand 1F64B 1F3FB 200D 2640 FE0F ; fully-qualified # 🙋🏻‍♀️ E4.0 woman raising hand: light skin tone 1F64B 1F3FB 200D 2640 ; minimally-qualified # 🙋🏻‍♀ E4.0 woman raising hand: light skin tone 1F64B 1F3FC 200D 2640 FE0F ; fully-qualified # 🙋🏼‍♀️ E4.0 woman raising hand: medium-light skin tone 1F64B 1F3FC 200D 2640 ; minimally-qualified # 🙋🏼‍♀ E4.0 woman raising hand: medium-light skin tone 1F64B 1F3FD 200D 2640 FE0F ; fully-qualified # 🙋🏽‍♀️ E4.0 woman raising hand: medium skin tone 1F64B 1F3FD 200D 2640 ; minimally-qualified # 🙋🏽‍♀ E4.0 woman raising hand: medium skin tone 1F64B 1F3FE 200D 2640 FE0F ; fully-qualified # 🙋🏾‍♀️ E4.0 woman raising hand: medium-dark skin tone 1F64B 1F3FE 200D 2640 ; minimally-qualified # 🙋🏾‍♀ E4.0 woman raising hand: medium-dark skin tone 1F64B 1F3FF 200D 2640 FE0F ; fully-qualified # 🙋🏿‍♀️ E4.0 woman raising hand: dark skin tone 1F64B 1F3FF 200D 2640 ; minimally-qualified # 🙋🏿‍♀ E4.0 woman raising hand: dark skin tone 1F9CF ; fully-qualified # 🧏 E12.0 deaf person 1F9CF 1F3FB ; fully-qualified # 🧏🏻 E12.0 deaf person: light skin tone 1F9CF 1F3FC ; fully-qualified # 🧏🏼 E12.0 deaf person: medium-light skin tone 1F9CF 1F3FD ; fully-qualified # 🧏🏽 E12.0 deaf person: medium skin tone 1F9CF 1F3FE ; fully-qualified # 🧏🏾 E12.0 deaf person: medium-dark skin tone 1F9CF 1F3FF ; fully-qualified # 🧏🏿 E12.0 deaf person: dark skin tone 1F9CF 200D 2642 FE0F ; fully-qualified # 🧏‍♂️ E12.0 deaf man 1F9CF 200D 2642 ; minimally-qualified # 🧏‍♂ E12.0 deaf man 1F9CF 1F3FB 200D 2642 FE0F ; fully-qualified # 🧏🏻‍♂️ E12.0 deaf man: light skin tone 1F9CF 1F3FB 200D 2642 ; minimally-qualified # 🧏🏻‍♂ E12.0 deaf man: light skin tone 1F9CF 1F3FC 200D 2642 FE0F ; fully-qualified # 🧏🏼‍♂️ E12.0 deaf man: medium-light skin tone 1F9CF 1F3FC 200D 2642 ; minimally-qualified # 🧏🏼‍♂ E12.0 deaf man: medium-light skin tone 1F9CF 1F3FD 200D 2642 FE0F ; fully-qualified # 🧏🏽‍♂️ E12.0 deaf man: medium skin tone 1F9CF 1F3FD 200D 2642 ; minimally-qualified # 🧏🏽‍♂ E12.0 deaf man: medium skin tone 1F9CF 1F3FE 200D 2642 FE0F ; fully-qualified # 🧏🏾‍♂️ E12.0 deaf man: medium-dark skin tone 1F9CF 1F3FE 200D 2642 ; minimally-qualified # 🧏🏾‍♂ E12.0 deaf man: medium-dark skin tone 1F9CF 1F3FF 200D 2642 FE0F ; fully-qualified # 🧏🏿‍♂️ E12.0 deaf man: dark skin tone 1F9CF 1F3FF 200D 2642 ; minimally-qualified # 🧏🏿‍♂ E12.0 deaf man: dark skin tone 1F9CF 200D 2640 FE0F ; fully-qualified # 🧏‍♀️ E12.0 deaf woman 1F9CF 200D 2640 ; minimally-qualified # 🧏‍♀ E12.0 deaf woman 1F9CF 1F3FB 200D 2640 FE0F ; fully-qualified # 🧏🏻‍♀️ E12.0 deaf woman: light skin tone 1F9CF 1F3FB 200D 2640 ; minimally-qualified # 🧏🏻‍♀ E12.0 deaf woman: light skin tone 1F9CF 1F3FC 200D 2640 FE0F ; fully-qualified # 🧏🏼‍♀️ E12.0 deaf woman: medium-light skin tone 1F9CF 1F3FC 200D 2640 ; minimally-qualified # 🧏🏼‍♀ E12.0 deaf woman: medium-light skin tone 1F9CF 1F3FD 200D 2640 FE0F ; fully-qualified # 🧏🏽‍♀️ E12.0 deaf woman: medium skin tone 1F9CF 1F3FD 200D 2640 ; minimally-qualified # 🧏🏽‍♀ E12.0 deaf woman: medium skin tone 1F9CF 1F3FE 200D 2640 FE0F ; fully-qualified # 🧏🏾‍♀️ E12.0 deaf woman: medium-dark skin tone 1F9CF 1F3FE 200D 2640 ; minimally-qualified # 🧏🏾‍♀ E12.0 deaf woman: medium-dark skin tone 1F9CF 1F3FF 200D 2640 FE0F ; fully-qualified # 🧏🏿‍♀️ E12.0 deaf woman: dark skin tone 1F9CF 1F3FF 200D 2640 ; minimally-qualified # 🧏🏿‍♀ E12.0 deaf woman: dark skin tone 1F647 ; fully-qualified # 🙇 E0.6 person bowing 1F647 1F3FB ; fully-qualified # 🙇🏻 E1.0 person bowing: light skin tone 1F647 1F3FC ; fully-qualified # 🙇🏼 E1.0 person bowing: medium-light skin tone 1F647 1F3FD ; fully-qualified # 🙇🏽 E1.0 person bowing: medium skin tone 1F647 1F3FE ; fully-qualified # 🙇🏾 E1.0 person bowing: medium-dark skin tone 1F647 1F3FF ; fully-qualified # 🙇🏿 E1.0 person bowing: dark skin tone 1F647 200D 2642 FE0F ; fully-qualified # 🙇‍♂️ E4.0 man bowing 1F647 200D 2642 ; minimally-qualified # 🙇‍♂ E4.0 man bowing 1F647 1F3FB 200D 2642 FE0F ; fully-qualified # 🙇🏻‍♂️ E4.0 man bowing: light skin tone 1F647 1F3FB 200D 2642 ; minimally-qualified # 🙇🏻‍♂ E4.0 man bowing: light skin tone 1F647 1F3FC 200D 2642 FE0F ; fully-qualified # 🙇🏼‍♂️ E4.0 man bowing: medium-light skin tone 1F647 1F3FC 200D 2642 ; minimally-qualified # 🙇🏼‍♂ E4.0 man bowing: medium-light skin tone 1F647 1F3FD 200D 2642 FE0F ; fully-qualified # 🙇🏽‍♂️ E4.0 man bowing: medium skin tone 1F647 1F3FD 200D 2642 ; minimally-qualified # 🙇🏽‍♂ E4.0 man bowing: medium skin tone 1F647 1F3FE 200D 2642 FE0F ; fully-qualified # 🙇🏾‍♂️ E4.0 man bowing: medium-dark skin tone 1F647 1F3FE 200D 2642 ; minimally-qualified # 🙇🏾‍♂ E4.0 man bowing: medium-dark skin tone 1F647 1F3FF 200D 2642 FE0F ; fully-qualified # 🙇🏿‍♂️ E4.0 man bowing: dark skin tone 1F647 1F3FF 200D 2642 ; minimally-qualified # 🙇🏿‍♂ E4.0 man bowing: dark skin tone 1F647 200D 2640 FE0F ; fully-qualified # 🙇‍♀️ E4.0 woman bowing 1F647 200D 2640 ; minimally-qualified # 🙇‍♀ E4.0 woman bowing 1F647 1F3FB 200D 2640 FE0F ; fully-qualified # 🙇🏻‍♀️ E4.0 woman bowing: light skin tone 1F647 1F3FB 200D 2640 ; minimally-qualified # 🙇🏻‍♀ E4.0 woman bowing: light skin tone 1F647 1F3FC 200D 2640 FE0F ; fully-qualified # 🙇🏼‍♀️ E4.0 woman bowing: medium-light skin tone 1F647 1F3FC 200D 2640 ; minimally-qualified # 🙇🏼‍♀ E4.0 woman bowing: medium-light skin tone 1F647 1F3FD 200D 2640 FE0F ; fully-qualified # 🙇🏽‍♀️ E4.0 woman bowing: medium skin tone 1F647 1F3FD 200D 2640 ; minimally-qualified # 🙇🏽‍♀ E4.0 woman bowing: medium skin tone 1F647 1F3FE 200D 2640 FE0F ; fully-qualified # 🙇🏾‍♀️ E4.0 woman bowing: medium-dark skin tone 1F647 1F3FE 200D 2640 ; minimally-qualified # 🙇🏾‍♀ E4.0 woman bowing: medium-dark skin tone 1F647 1F3FF 200D 2640 FE0F ; fully-qualified # 🙇🏿‍♀️ E4.0 woman bowing: dark skin tone 1F647 1F3FF 200D 2640 ; minimally-qualified # 🙇🏿‍♀ E4.0 woman bowing: dark skin tone 1F926 ; fully-qualified # 🤦 E3.0 person facepalming 1F926 1F3FB ; fully-qualified # 🤦🏻 E3.0 person facepalming: light skin tone 1F926 1F3FC ; fully-qualified # 🤦🏼 E3.0 person facepalming: medium-light skin tone 1F926 1F3FD ; fully-qualified # 🤦🏽 E3.0 person facepalming: medium skin tone 1F926 1F3FE ; fully-qualified # 🤦🏾 E3.0 person facepalming: medium-dark skin tone 1F926 1F3FF ; fully-qualified # 🤦🏿 E3.0 person facepalming: dark skin tone 1F926 200D 2642 FE0F ; fully-qualified # 🤦‍♂️ E4.0 man facepalming 1F926 200D 2642 ; minimally-qualified # 🤦‍♂ E4.0 man facepalming 1F926 1F3FB 200D 2642 FE0F ; fully-qualified # 🤦🏻‍♂️ E4.0 man facepalming: light skin tone 1F926 1F3FB 200D 2642 ; minimally-qualified # 🤦🏻‍♂ E4.0 man facepalming: light skin tone 1F926 1F3FC 200D 2642 FE0F ; fully-qualified # 🤦🏼‍♂️ E4.0 man facepalming: medium-light skin tone 1F926 1F3FC 200D 2642 ; minimally-qualified # 🤦🏼‍♂ E4.0 man facepalming: medium-light skin tone 1F926 1F3FD 200D 2642 FE0F ; fully-qualified # 🤦🏽‍♂️ E4.0 man facepalming: medium skin tone 1F926 1F3FD 200D 2642 ; minimally-qualified # 🤦🏽‍♂ E4.0 man facepalming: medium skin tone 1F926 1F3FE 200D 2642 FE0F ; fully-qualified # 🤦🏾‍♂️ E4.0 man facepalming: medium-dark skin tone 1F926 1F3FE 200D 2642 ; minimally-qualified # 🤦🏾‍♂ E4.0 man facepalming: medium-dark skin tone 1F926 1F3FF 200D 2642 FE0F ; fully-qualified # 🤦🏿‍♂️ E4.0 man facepalming: dark skin tone 1F926 1F3FF 200D 2642 ; minimally-qualified # 🤦🏿‍♂ E4.0 man facepalming: dark skin tone 1F926 200D 2640 FE0F ; fully-qualified # 🤦‍♀️ E4.0 woman facepalming 1F926 200D 2640 ; minimally-qualified # 🤦‍♀ E4.0 woman facepalming 1F926 1F3FB 200D 2640 FE0F ; fully-qualified # 🤦🏻‍♀️ E4.0 woman facepalming: light skin tone 1F926 1F3FB 200D 2640 ; minimally-qualified # 🤦🏻‍♀ E4.0 woman facepalming: light skin tone 1F926 1F3FC 200D 2640 FE0F ; fully-qualified # 🤦🏼‍♀️ E4.0 woman facepalming: medium-light skin tone 1F926 1F3FC 200D 2640 ; minimally-qualified # 🤦🏼‍♀ E4.0 woman facepalming: medium-light skin tone 1F926 1F3FD 200D 2640 FE0F ; fully-qualified # 🤦🏽‍♀️ E4.0 woman facepalming: medium skin tone 1F926 1F3FD 200D 2640 ; minimally-qualified # 🤦🏽‍♀ E4.0 woman facepalming: medium skin tone 1F926 1F3FE 200D 2640 FE0F ; fully-qualified # 🤦🏾‍♀️ E4.0 woman facepalming: medium-dark skin tone 1F926 1F3FE 200D 2640 ; minimally-qualified # 🤦🏾‍♀ E4.0 woman facepalming: medium-dark skin tone 1F926 1F3FF 200D 2640 FE0F ; fully-qualified # 🤦🏿‍♀️ E4.0 woman facepalming: dark skin tone 1F926 1F3FF 200D 2640 ; minimally-qualified # 🤦🏿‍♀ E4.0 woman facepalming: dark skin tone 1F937 ; fully-qualified # 🤷 E3.0 person shrugging 1F937 1F3FB ; fully-qualified # 🤷🏻 E3.0 person shrugging: light skin tone 1F937 1F3FC ; fully-qualified # 🤷🏼 E3.0 person shrugging: medium-light skin tone 1F937 1F3FD ; fully-qualified # 🤷🏽 E3.0 person shrugging: medium skin tone 1F937 1F3FE ; fully-qualified # 🤷🏾 E3.0 person shrugging: medium-dark skin tone 1F937 1F3FF ; fully-qualified # 🤷🏿 E3.0 person shrugging: dark skin tone 1F937 200D 2642 FE0F ; fully-qualified # 🤷‍♂️ E4.0 man shrugging 1F937 200D 2642 ; minimally-qualified # 🤷‍♂ E4.0 man shrugging 1F937 1F3FB 200D 2642 FE0F ; fully-qualified # 🤷🏻‍♂️ E4.0 man shrugging: light skin tone 1F937 1F3FB 200D 2642 ; minimally-qualified # 🤷🏻‍♂ E4.0 man shrugging: light skin tone 1F937 1F3FC 200D 2642 FE0F ; fully-qualified # 🤷🏼‍♂️ E4.0 man shrugging: medium-light skin tone 1F937 1F3FC 200D 2642 ; minimally-qualified # 🤷🏼‍♂ E4.0 man shrugging: medium-light skin tone 1F937 1F3FD 200D 2642 FE0F ; fully-qualified # 🤷🏽‍♂️ E4.0 man shrugging: medium skin tone 1F937 1F3FD 200D 2642 ; minimally-qualified # 🤷🏽‍♂ E4.0 man shrugging: medium skin tone 1F937 1F3FE 200D 2642 FE0F ; fully-qualified # 🤷🏾‍♂️ E4.0 man shrugging: medium-dark skin tone 1F937 1F3FE 200D 2642 ; minimally-qualified # 🤷🏾‍♂ E4.0 man shrugging: medium-dark skin tone 1F937 1F3FF 200D 2642 FE0F ; fully-qualified # 🤷🏿‍♂️ E4.0 man shrugging: dark skin tone 1F937 1F3FF 200D 2642 ; minimally-qualified # 🤷🏿‍♂ E4.0 man shrugging: dark skin tone 1F937 200D 2640 FE0F ; fully-qualified # 🤷‍♀️ E4.0 woman shrugging 1F937 200D 2640 ; minimally-qualified # 🤷‍♀ E4.0 woman shrugging 1F937 1F3FB 200D 2640 FE0F ; fully-qualified # 🤷🏻‍♀️ E4.0 woman shrugging: light skin tone 1F937 1F3FB 200D 2640 ; minimally-qualified # 🤷🏻‍♀ E4.0 woman shrugging: light skin tone 1F937 1F3FC 200D 2640 FE0F ; fully-qualified # 🤷🏼‍♀️ E4.0 woman shrugging: medium-light skin tone 1F937 1F3FC 200D 2640 ; minimally-qualified # 🤷🏼‍♀ E4.0 woman shrugging: medium-light skin tone 1F937 1F3FD 200D 2640 FE0F ; fully-qualified # 🤷🏽‍♀️ E4.0 woman shrugging: medium skin tone 1F937 1F3FD 200D 2640 ; minimally-qualified # 🤷🏽‍♀ E4.0 woman shrugging: medium skin tone 1F937 1F3FE 200D 2640 FE0F ; fully-qualified # 🤷🏾‍♀️ E4.0 woman shrugging: medium-dark skin tone 1F937 1F3FE 200D 2640 ; minimally-qualified # 🤷🏾‍♀ E4.0 woman shrugging: medium-dark skin tone 1F937 1F3FF 200D 2640 FE0F ; fully-qualified # 🤷🏿‍♀️ E4.0 woman shrugging: dark skin tone 1F937 1F3FF 200D 2640 ; minimally-qualified # 🤷🏿‍♀ E4.0 woman shrugging: dark skin tone # subgroup: person-role 1F9D1 200D 2695 FE0F ; fully-qualified # 🧑‍⚕️ E12.1 health worker 1F9D1 200D 2695 ; minimally-qualified # 🧑‍⚕ E12.1 health worker 1F9D1 1F3FB 200D 2695 FE0F ; fully-qualified # 🧑🏻‍⚕️ E12.1 health worker: light skin tone 1F9D1 1F3FB 200D 2695 ; minimally-qualified # 🧑🏻‍⚕ E12.1 health worker: light skin tone 1F9D1 1F3FC 200D 2695 FE0F ; fully-qualified # 🧑🏼‍⚕️ E12.1 health worker: medium-light skin tone 1F9D1 1F3FC 200D 2695 ; minimally-qualified # 🧑🏼‍⚕ E12.1 health worker: medium-light skin tone 1F9D1 1F3FD 200D 2695 FE0F ; fully-qualified # 🧑🏽‍⚕️ E12.1 health worker: medium skin tone 1F9D1 1F3FD 200D 2695 ; minimally-qualified # 🧑🏽‍⚕ E12.1 health worker: medium skin tone 1F9D1 1F3FE 200D 2695 FE0F ; fully-qualified # 🧑🏾‍⚕️ E12.1 health worker: medium-dark skin tone 1F9D1 1F3FE 200D 2695 ; minimally-qualified # 🧑🏾‍⚕ E12.1 health worker: medium-dark skin tone 1F9D1 1F3FF 200D 2695 FE0F ; fully-qualified # 🧑🏿‍⚕️ E12.1 health worker: dark skin tone 1F9D1 1F3FF 200D 2695 ; minimally-qualified # 🧑🏿‍⚕ E12.1 health worker: dark skin tone 1F468 200D 2695 FE0F ; fully-qualified # 👨‍⚕️ E4.0 man health worker 1F468 200D 2695 ; minimally-qualified # 👨‍⚕ E4.0 man health worker 1F468 1F3FB 200D 2695 FE0F ; fully-qualified # 👨🏻‍⚕️ E4.0 man health worker: light skin tone 1F468 1F3FB 200D 2695 ; minimally-qualified # 👨🏻‍⚕ E4.0 man health worker: light skin tone 1F468 1F3FC 200D 2695 FE0F ; fully-qualified # 👨🏼‍⚕️ E4.0 man health worker: medium-light skin tone 1F468 1F3FC 200D 2695 ; minimally-qualified # 👨🏼‍⚕ E4.0 man health worker: medium-light skin tone 1F468 1F3FD 200D 2695 FE0F ; fully-qualified # 👨🏽‍⚕️ E4.0 man health worker: medium skin tone 1F468 1F3FD 200D 2695 ; minimally-qualified # 👨🏽‍⚕ E4.0 man health worker: medium skin tone 1F468 1F3FE 200D 2695 FE0F ; fully-qualified # 👨🏾‍⚕️ E4.0 man health worker: medium-dark skin tone 1F468 1F3FE 200D 2695 ; minimally-qualified # 👨🏾‍⚕ E4.0 man health worker: medium-dark skin tone 1F468 1F3FF 200D 2695 FE0F ; fully-qualified # 👨🏿‍⚕️ E4.0 man health worker: dark skin tone 1F468 1F3FF 200D 2695 ; minimally-qualified # 👨🏿‍⚕ E4.0 man health worker: dark skin tone 1F469 200D 2695 FE0F ; fully-qualified # 👩‍⚕️ E4.0 woman health worker 1F469 200D 2695 ; minimally-qualified # 👩‍⚕ E4.0 woman health worker 1F469 1F3FB 200D 2695 FE0F ; fully-qualified # 👩🏻‍⚕️ E4.0 woman health worker: light skin tone 1F469 1F3FB 200D 2695 ; minimally-qualified # 👩🏻‍⚕ E4.0 woman health worker: light skin tone 1F469 1F3FC 200D 2695 FE0F ; fully-qualified # 👩🏼‍⚕️ E4.0 woman health worker: medium-light skin tone 1F469 1F3FC 200D 2695 ; minimally-qualified # 👩🏼‍⚕ E4.0 woman health worker: medium-light skin tone 1F469 1F3FD 200D 2695 FE0F ; fully-qualified # 👩🏽‍⚕️ E4.0 woman health worker: medium skin tone 1F469 1F3FD 200D 2695 ; minimally-qualified # 👩🏽‍⚕ E4.0 woman health worker: medium skin tone 1F469 1F3FE 200D 2695 FE0F ; fully-qualified # 👩🏾‍⚕️ E4.0 woman health worker: medium-dark skin tone 1F469 1F3FE 200D 2695 ; minimally-qualified # 👩🏾‍⚕ E4.0 woman health worker: medium-dark skin tone 1F469 1F3FF 200D 2695 FE0F ; fully-qualified # 👩🏿‍⚕️ E4.0 woman health worker: dark skin tone 1F469 1F3FF 200D 2695 ; minimally-qualified # 👩🏿‍⚕ E4.0 woman health worker: dark skin tone 1F9D1 200D 1F393 ; fully-qualified # 🧑‍🎓 E12.1 student 1F9D1 1F3FB 200D 1F393 ; fully-qualified # 🧑🏻‍🎓 E12.1 student: light skin tone 1F9D1 1F3FC 200D 1F393 ; fully-qualified # 🧑🏼‍🎓 E12.1 student: medium-light skin tone 1F9D1 1F3FD 200D 1F393 ; fully-qualified # 🧑🏽‍🎓 E12.1 student: medium skin tone 1F9D1 1F3FE 200D 1F393 ; fully-qualified # 🧑🏾‍🎓 E12.1 student: medium-dark skin tone 1F9D1 1F3FF 200D 1F393 ; fully-qualified # 🧑🏿‍🎓 E12.1 student: dark skin tone 1F468 200D 1F393 ; fully-qualified # 👨‍🎓 E4.0 man student 1F468 1F3FB 200D 1F393 ; fully-qualified # 👨🏻‍🎓 E4.0 man student: light skin tone 1F468 1F3FC 200D 1F393 ; fully-qualified # 👨🏼‍🎓 E4.0 man student: medium-light skin tone 1F468 1F3FD 200D 1F393 ; fully-qualified # 👨🏽‍🎓 E4.0 man student: medium skin tone 1F468 1F3FE 200D 1F393 ; fully-qualified # 👨🏾‍🎓 E4.0 man student: medium-dark skin tone 1F468 1F3FF 200D 1F393 ; fully-qualified # 👨🏿‍🎓 E4.0 man student: dark skin tone 1F469 200D 1F393 ; fully-qualified # 👩‍🎓 E4.0 woman student 1F469 1F3FB 200D 1F393 ; fully-qualified # 👩🏻‍🎓 E4.0 woman student: light skin tone 1F469 1F3FC 200D 1F393 ; fully-qualified # 👩🏼‍🎓 E4.0 woman student: medium-light skin tone 1F469 1F3FD 200D 1F393 ; fully-qualified # 👩🏽‍🎓 E4.0 woman student: medium skin tone 1F469 1F3FE 200D 1F393 ; fully-qualified # 👩🏾‍🎓 E4.0 woman student: medium-dark skin tone 1F469 1F3FF 200D 1F393 ; fully-qualified # 👩🏿‍🎓 E4.0 woman student: dark skin tone 1F9D1 200D 1F3EB ; fully-qualified # 🧑‍🏫 E12.1 teacher 1F9D1 1F3FB 200D 1F3EB ; fully-qualified # 🧑🏻‍🏫 E12.1 teacher: light skin tone 1F9D1 1F3FC 200D 1F3EB ; fully-qualified # 🧑🏼‍🏫 E12.1 teacher: medium-light skin tone 1F9D1 1F3FD 200D 1F3EB ; fully-qualified # 🧑🏽‍🏫 E12.1 teacher: medium skin tone 1F9D1 1F3FE 200D 1F3EB ; fully-qualified # 🧑🏾‍🏫 E12.1 teacher: medium-dark skin tone 1F9D1 1F3FF 200D 1F3EB ; fully-qualified # 🧑🏿‍🏫 E12.1 teacher: dark skin tone 1F468 200D 1F3EB ; fully-qualified # 👨‍🏫 E4.0 man teacher 1F468 1F3FB 200D 1F3EB ; fully-qualified # 👨🏻‍🏫 E4.0 man teacher: light skin tone 1F468 1F3FC 200D 1F3EB ; fully-qualified # 👨🏼‍🏫 E4.0 man teacher: medium-light skin tone 1F468 1F3FD 200D 1F3EB ; fully-qualified # 👨🏽‍🏫 E4.0 man teacher: medium skin tone 1F468 1F3FE 200D 1F3EB ; fully-qualified # 👨🏾‍🏫 E4.0 man teacher: medium-dark skin tone 1F468 1F3FF 200D 1F3EB ; fully-qualified # 👨🏿‍🏫 E4.0 man teacher: dark skin tone 1F469 200D 1F3EB ; fully-qualified # 👩‍🏫 E4.0 woman teacher 1F469 1F3FB 200D 1F3EB ; fully-qualified # 👩🏻‍🏫 E4.0 woman teacher: light skin tone 1F469 1F3FC 200D 1F3EB ; fully-qualified # 👩🏼‍🏫 E4.0 woman teacher: medium-light skin tone 1F469 1F3FD 200D 1F3EB ; fully-qualified # 👩🏽‍🏫 E4.0 woman teacher: medium skin tone 1F469 1F3FE 200D 1F3EB ; fully-qualified # 👩🏾‍🏫 E4.0 woman teacher: medium-dark skin tone 1F469 1F3FF 200D 1F3EB ; fully-qualified # 👩🏿‍🏫 E4.0 woman teacher: dark skin tone 1F9D1 200D 2696 FE0F ; fully-qualified # 🧑‍⚖️ E12.1 judge 1F9D1 200D 2696 ; minimally-qualified # 🧑‍⚖ E12.1 judge 1F9D1 1F3FB 200D 2696 FE0F ; fully-qualified # 🧑🏻‍⚖️ E12.1 judge: light skin tone 1F9D1 1F3FB 200D 2696 ; minimally-qualified # 🧑🏻‍⚖ E12.1 judge: light skin tone 1F9D1 1F3FC 200D 2696 FE0F ; fully-qualified # 🧑🏼‍⚖️ E12.1 judge: medium-light skin tone 1F9D1 1F3FC 200D 2696 ; minimally-qualified # 🧑🏼‍⚖ E12.1 judge: medium-light skin tone 1F9D1 1F3FD 200D 2696 FE0F ; fully-qualified # 🧑🏽‍⚖️ E12.1 judge: medium skin tone 1F9D1 1F3FD 200D 2696 ; minimally-qualified # 🧑🏽‍⚖ E12.1 judge: medium skin tone 1F9D1 1F3FE 200D 2696 FE0F ; fully-qualified # 🧑🏾‍⚖️ E12.1 judge: medium-dark skin tone 1F9D1 1F3FE 200D 2696 ; minimally-qualified # 🧑🏾‍⚖ E12.1 judge: medium-dark skin tone 1F9D1 1F3FF 200D 2696 FE0F ; fully-qualified # 🧑🏿‍⚖️ E12.1 judge: dark skin tone 1F9D1 1F3FF 200D 2696 ; minimally-qualified # 🧑🏿‍⚖ E12.1 judge: dark skin tone 1F468 200D 2696 FE0F ; fully-qualified # 👨‍⚖️ E4.0 man judge 1F468 200D 2696 ; minimally-qualified # 👨‍⚖ E4.0 man judge 1F468 1F3FB 200D 2696 FE0F ; fully-qualified # 👨🏻‍⚖️ E4.0 man judge: light skin tone 1F468 1F3FB 200D 2696 ; minimally-qualified # 👨🏻‍⚖ E4.0 man judge: light skin tone 1F468 1F3FC 200D 2696 FE0F ; fully-qualified # 👨🏼‍⚖️ E4.0 man judge: medium-light skin tone 1F468 1F3FC 200D 2696 ; minimally-qualified # 👨🏼‍⚖ E4.0 man judge: medium-light skin tone 1F468 1F3FD 200D 2696 FE0F ; fully-qualified # 👨🏽‍⚖️ E4.0 man judge: medium skin tone 1F468 1F3FD 200D 2696 ; minimally-qualified # 👨🏽‍⚖ E4.0 man judge: medium skin tone 1F468 1F3FE 200D 2696 FE0F ; fully-qualified # 👨🏾‍⚖️ E4.0 man judge: medium-dark skin tone 1F468 1F3FE 200D 2696 ; minimally-qualified # 👨🏾‍⚖ E4.0 man judge: medium-dark skin tone 1F468 1F3FF 200D 2696 FE0F ; fully-qualified # 👨🏿‍⚖️ E4.0 man judge: dark skin tone 1F468 1F3FF 200D 2696 ; minimally-qualified # 👨🏿‍⚖ E4.0 man judge: dark skin tone 1F469 200D 2696 FE0F ; fully-qualified # 👩‍⚖️ E4.0 woman judge 1F469 200D 2696 ; minimally-qualified # 👩‍⚖ E4.0 woman judge 1F469 1F3FB 200D 2696 FE0F ; fully-qualified # 👩🏻‍⚖️ E4.0 woman judge: light skin tone 1F469 1F3FB 200D 2696 ; minimally-qualified # 👩🏻‍⚖ E4.0 woman judge: light skin tone 1F469 1F3FC 200D 2696 FE0F ; fully-qualified # 👩🏼‍⚖️ E4.0 woman judge: medium-light skin tone 1F469 1F3FC 200D 2696 ; minimally-qualified # 👩🏼‍⚖ E4.0 woman judge: medium-light skin tone 1F469 1F3FD 200D 2696 FE0F ; fully-qualified # 👩🏽‍⚖️ E4.0 woman judge: medium skin tone 1F469 1F3FD 200D 2696 ; minimally-qualified # 👩🏽‍⚖ E4.0 woman judge: medium skin tone 1F469 1F3FE 200D 2696 FE0F ; fully-qualified # 👩🏾‍⚖️ E4.0 woman judge: medium-dark skin tone 1F469 1F3FE 200D 2696 ; minimally-qualified # 👩🏾‍⚖ E4.0 woman judge: medium-dark skin tone 1F469 1F3FF 200D 2696 FE0F ; fully-qualified # 👩🏿‍⚖️ E4.0 woman judge: dark skin tone 1F469 1F3FF 200D 2696 ; minimally-qualified # 👩🏿‍⚖ E4.0 woman judge: dark skin tone 1F9D1 200D 1F33E ; fully-qualified # 🧑‍🌾 E12.1 farmer 1F9D1 1F3FB 200D 1F33E ; fully-qualified # 🧑🏻‍🌾 E12.1 farmer: light skin tone 1F9D1 1F3FC 200D 1F33E ; fully-qualified # 🧑🏼‍🌾 E12.1 farmer: medium-light skin tone 1F9D1 1F3FD 200D 1F33E ; fully-qualified # 🧑🏽‍🌾 E12.1 farmer: medium skin tone 1F9D1 1F3FE 200D 1F33E ; fully-qualified # 🧑🏾‍🌾 E12.1 farmer: medium-dark skin tone 1F9D1 1F3FF 200D 1F33E ; fully-qualified # 🧑🏿‍🌾 E12.1 farmer: dark skin tone 1F468 200D 1F33E ; fully-qualified # 👨‍🌾 E4.0 man farmer 1F468 1F3FB 200D 1F33E ; fully-qualified # 👨🏻‍🌾 E4.0 man farmer: light skin tone 1F468 1F3FC 200D 1F33E ; fully-qualified # 👨🏼‍🌾 E4.0 man farmer: medium-light skin tone 1F468 1F3FD 200D 1F33E ; fully-qualified # 👨🏽‍🌾 E4.0 man farmer: medium skin tone 1F468 1F3FE 200D 1F33E ; fully-qualified # 👨🏾‍🌾 E4.0 man farmer: medium-dark skin tone 1F468 1F3FF 200D 1F33E ; fully-qualified # 👨🏿‍🌾 E4.0 man farmer: dark skin tone 1F469 200D 1F33E ; fully-qualified # 👩‍🌾 E4.0 woman farmer 1F469 1F3FB 200D 1F33E ; fully-qualified # 👩🏻‍🌾 E4.0 woman farmer: light skin tone 1F469 1F3FC 200D 1F33E ; fully-qualified # 👩🏼‍🌾 E4.0 woman farmer: medium-light skin tone 1F469 1F3FD 200D 1F33E ; fully-qualified # 👩🏽‍🌾 E4.0 woman farmer: medium skin tone 1F469 1F3FE 200D 1F33E ; fully-qualified # 👩🏾‍🌾 E4.0 woman farmer: medium-dark skin tone 1F469 1F3FF 200D 1F33E ; fully-qualified # 👩🏿‍🌾 E4.0 woman farmer: dark skin tone 1F9D1 200D 1F373 ; fully-qualified # 🧑‍🍳 E12.1 cook 1F9D1 1F3FB 200D 1F373 ; fully-qualified # 🧑🏻‍🍳 E12.1 cook: light skin tone 1F9D1 1F3FC 200D 1F373 ; fully-qualified # 🧑🏼‍🍳 E12.1 cook: medium-light skin tone 1F9D1 1F3FD 200D 1F373 ; fully-qualified # 🧑🏽‍🍳 E12.1 cook: medium skin tone 1F9D1 1F3FE 200D 1F373 ; fully-qualified # 🧑🏾‍🍳 E12.1 cook: medium-dark skin tone 1F9D1 1F3FF 200D 1F373 ; fully-qualified # 🧑🏿‍🍳 E12.1 cook: dark skin tone 1F468 200D 1F373 ; fully-qualified # 👨‍🍳 E4.0 man cook 1F468 1F3FB 200D 1F373 ; fully-qualified # 👨🏻‍🍳 E4.0 man cook: light skin tone 1F468 1F3FC 200D 1F373 ; fully-qualified # 👨🏼‍🍳 E4.0 man cook: medium-light skin tone 1F468 1F3FD 200D 1F373 ; fully-qualified # 👨🏽‍🍳 E4.0 man cook: medium skin tone 1F468 1F3FE 200D 1F373 ; fully-qualified # 👨🏾‍🍳 E4.0 man cook: medium-dark skin tone 1F468 1F3FF 200D 1F373 ; fully-qualified # 👨🏿‍🍳 E4.0 man cook: dark skin tone 1F469 200D 1F373 ; fully-qualified # 👩‍🍳 E4.0 woman cook 1F469 1F3FB 200D 1F373 ; fully-qualified # 👩🏻‍🍳 E4.0 woman cook: light skin tone 1F469 1F3FC 200D 1F373 ; fully-qualified # 👩🏼‍🍳 E4.0 woman cook: medium-light skin tone 1F469 1F3FD 200D 1F373 ; fully-qualified # 👩🏽‍🍳 E4.0 woman cook: medium skin tone 1F469 1F3FE 200D 1F373 ; fully-qualified # 👩🏾‍🍳 E4.0 woman cook: medium-dark skin tone 1F469 1F3FF 200D 1F373 ; fully-qualified # 👩🏿‍🍳 E4.0 woman cook: dark skin tone 1F9D1 200D 1F527 ; fully-qualified # 🧑‍🔧 E12.1 mechanic 1F9D1 1F3FB 200D 1F527 ; fully-qualified # 🧑🏻‍🔧 E12.1 mechanic: light skin tone 1F9D1 1F3FC 200D 1F527 ; fully-qualified # 🧑🏼‍🔧 E12.1 mechanic: medium-light skin tone 1F9D1 1F3FD 200D 1F527 ; fully-qualified # 🧑🏽‍🔧 E12.1 mechanic: medium skin tone 1F9D1 1F3FE 200D 1F527 ; fully-qualified # 🧑🏾‍🔧 E12.1 mechanic: medium-dark skin tone 1F9D1 1F3FF 200D 1F527 ; fully-qualified # 🧑🏿‍🔧 E12.1 mechanic: dark skin tone 1F468 200D 1F527 ; fully-qualified # 👨‍🔧 E4.0 man mechanic 1F468 1F3FB 200D 1F527 ; fully-qualified # 👨🏻‍🔧 E4.0 man mechanic: light skin tone 1F468 1F3FC 200D 1F527 ; fully-qualified # 👨🏼‍🔧 E4.0 man mechanic: medium-light skin tone 1F468 1F3FD 200D 1F527 ; fully-qualified # 👨🏽‍🔧 E4.0 man mechanic: medium skin tone 1F468 1F3FE 200D 1F527 ; fully-qualified # 👨🏾‍🔧 E4.0 man mechanic: medium-dark skin tone 1F468 1F3FF 200D 1F527 ; fully-qualified # 👨🏿‍🔧 E4.0 man mechanic: dark skin tone 1F469 200D 1F527 ; fully-qualified # 👩‍🔧 E4.0 woman mechanic 1F469 1F3FB 200D 1F527 ; fully-qualified # 👩🏻‍🔧 E4.0 woman mechanic: light skin tone 1F469 1F3FC 200D 1F527 ; fully-qualified # 👩🏼‍🔧 E4.0 woman mechanic: medium-light skin tone 1F469 1F3FD 200D 1F527 ; fully-qualified # 👩🏽‍🔧 E4.0 woman mechanic: medium skin tone 1F469 1F3FE 200D 1F527 ; fully-qualified # 👩🏾‍🔧 E4.0 woman mechanic: medium-dark skin tone 1F469 1F3FF 200D 1F527 ; fully-qualified # 👩🏿‍🔧 E4.0 woman mechanic: dark skin tone 1F9D1 200D 1F3ED ; fully-qualified # 🧑‍🏭 E12.1 factory worker 1F9D1 1F3FB 200D 1F3ED ; fully-qualified # 🧑🏻‍🏭 E12.1 factory worker: light skin tone 1F9D1 1F3FC 200D 1F3ED ; fully-qualified # 🧑🏼‍🏭 E12.1 factory worker: medium-light skin tone 1F9D1 1F3FD 200D 1F3ED ; fully-qualified # 🧑🏽‍🏭 E12.1 factory worker: medium skin tone 1F9D1 1F3FE 200D 1F3ED ; fully-qualified # 🧑🏾‍🏭 E12.1 factory worker: medium-dark skin tone 1F9D1 1F3FF 200D 1F3ED ; fully-qualified # 🧑🏿‍🏭 E12.1 factory worker: dark skin tone 1F468 200D 1F3ED ; fully-qualified # 👨‍🏭 E4.0 man factory worker 1F468 1F3FB 200D 1F3ED ; fully-qualified # 👨🏻‍🏭 E4.0 man factory worker: light skin tone 1F468 1F3FC 200D 1F3ED ; fully-qualified # 👨🏼‍🏭 E4.0 man factory worker: medium-light skin tone 1F468 1F3FD 200D 1F3ED ; fully-qualified # 👨🏽‍🏭 E4.0 man factory worker: medium skin tone 1F468 1F3FE 200D 1F3ED ; fully-qualified # 👨🏾‍🏭 E4.0 man factory worker: medium-dark skin tone 1F468 1F3FF 200D 1F3ED ; fully-qualified # 👨🏿‍🏭 E4.0 man factory worker: dark skin tone 1F469 200D 1F3ED ; fully-qualified # 👩‍🏭 E4.0 woman factory worker 1F469 1F3FB 200D 1F3ED ; fully-qualified # 👩🏻‍🏭 E4.0 woman factory worker: light skin tone 1F469 1F3FC 200D 1F3ED ; fully-qualified # 👩🏼‍🏭 E4.0 woman factory worker: medium-light skin tone 1F469 1F3FD 200D 1F3ED ; fully-qualified # 👩🏽‍🏭 E4.0 woman factory worker: medium skin tone 1F469 1F3FE 200D 1F3ED ; fully-qualified # 👩🏾‍🏭 E4.0 woman factory worker: medium-dark skin tone 1F469 1F3FF 200D 1F3ED ; fully-qualified # 👩🏿‍🏭 E4.0 woman factory worker: dark skin tone 1F9D1 200D 1F4BC ; fully-qualified # 🧑‍💼 E12.1 office worker 1F9D1 1F3FB 200D 1F4BC ; fully-qualified # 🧑🏻‍💼 E12.1 office worker: light skin tone 1F9D1 1F3FC 200D 1F4BC ; fully-qualified # 🧑🏼‍💼 E12.1 office worker: medium-light skin tone 1F9D1 1F3FD 200D 1F4BC ; fully-qualified # 🧑🏽‍💼 E12.1 office worker: medium skin tone 1F9D1 1F3FE 200D 1F4BC ; fully-qualified # 🧑🏾‍💼 E12.1 office worker: medium-dark skin tone 1F9D1 1F3FF 200D 1F4BC ; fully-qualified # 🧑🏿‍💼 E12.1 office worker: dark skin tone 1F468 200D 1F4BC ; fully-qualified # 👨‍💼 E4.0 man office worker 1F468 1F3FB 200D 1F4BC ; fully-qualified # 👨🏻‍💼 E4.0 man office worker: light skin tone 1F468 1F3FC 200D 1F4BC ; fully-qualified # 👨🏼‍💼 E4.0 man office worker: medium-light skin tone 1F468 1F3FD 200D 1F4BC ; fully-qualified # 👨🏽‍💼 E4.0 man office worker: medium skin tone 1F468 1F3FE 200D 1F4BC ; fully-qualified # 👨🏾‍💼 E4.0 man office worker: medium-dark skin tone 1F468 1F3FF 200D 1F4BC ; fully-qualified # 👨🏿‍💼 E4.0 man office worker: dark skin tone 1F469 200D 1F4BC ; fully-qualified # 👩‍💼 E4.0 woman office worker 1F469 1F3FB 200D 1F4BC ; fully-qualified # 👩🏻‍💼 E4.0 woman office worker: light skin tone 1F469 1F3FC 200D 1F4BC ; fully-qualified # 👩🏼‍💼 E4.0 woman office worker: medium-light skin tone 1F469 1F3FD 200D 1F4BC ; fully-qualified # 👩🏽‍💼 E4.0 woman office worker: medium skin tone 1F469 1F3FE 200D 1F4BC ; fully-qualified # 👩🏾‍💼 E4.0 woman office worker: medium-dark skin tone 1F469 1F3FF 200D 1F4BC ; fully-qualified # 👩🏿‍💼 E4.0 woman office worker: dark skin tone 1F9D1 200D 1F52C ; fully-qualified # 🧑‍🔬 E12.1 scientist 1F9D1 1F3FB 200D 1F52C ; fully-qualified # 🧑🏻‍🔬 E12.1 scientist: light skin tone 1F9D1 1F3FC 200D 1F52C ; fully-qualified # 🧑🏼‍🔬 E12.1 scientist: medium-light skin tone 1F9D1 1F3FD 200D 1F52C ; fully-qualified # 🧑🏽‍🔬 E12.1 scientist: medium skin tone 1F9D1 1F3FE 200D 1F52C ; fully-qualified # 🧑🏾‍🔬 E12.1 scientist: medium-dark skin tone 1F9D1 1F3FF 200D 1F52C ; fully-qualified # 🧑🏿‍🔬 E12.1 scientist: dark skin tone 1F468 200D 1F52C ; fully-qualified # 👨‍🔬 E4.0 man scientist 1F468 1F3FB 200D 1F52C ; fully-qualified # 👨🏻‍🔬 E4.0 man scientist: light skin tone 1F468 1F3FC 200D 1F52C ; fully-qualified # 👨🏼‍🔬 E4.0 man scientist: medium-light skin tone 1F468 1F3FD 200D 1F52C ; fully-qualified # 👨🏽‍🔬 E4.0 man scientist: medium skin tone 1F468 1F3FE 200D 1F52C ; fully-qualified # 👨🏾‍🔬 E4.0 man scientist: medium-dark skin tone 1F468 1F3FF 200D 1F52C ; fully-qualified # 👨🏿‍🔬 E4.0 man scientist: dark skin tone 1F469 200D 1F52C ; fully-qualified # 👩‍🔬 E4.0 woman scientist 1F469 1F3FB 200D 1F52C ; fully-qualified # 👩🏻‍🔬 E4.0 woman scientist: light skin tone 1F469 1F3FC 200D 1F52C ; fully-qualified # 👩🏼‍🔬 E4.0 woman scientist: medium-light skin tone 1F469 1F3FD 200D 1F52C ; fully-qualified # 👩🏽‍🔬 E4.0 woman scientist: medium skin tone 1F469 1F3FE 200D 1F52C ; fully-qualified # 👩🏾‍🔬 E4.0 woman scientist: medium-dark skin tone 1F469 1F3FF 200D 1F52C ; fully-qualified # 👩🏿‍🔬 E4.0 woman scientist: dark skin tone 1F9D1 200D 1F4BB ; fully-qualified # 🧑‍💻 E12.1 technologist 1F9D1 1F3FB 200D 1F4BB ; fully-qualified # 🧑🏻‍💻 E12.1 technologist: light skin tone 1F9D1 1F3FC 200D 1F4BB ; fully-qualified # 🧑🏼‍💻 E12.1 technologist: medium-light skin tone 1F9D1 1F3FD 200D 1F4BB ; fully-qualified # 🧑🏽‍💻 E12.1 technologist: medium skin tone 1F9D1 1F3FE 200D 1F4BB ; fully-qualified # 🧑🏾‍💻 E12.1 technologist: medium-dark skin tone 1F9D1 1F3FF 200D 1F4BB ; fully-qualified # 🧑🏿‍💻 E12.1 technologist: dark skin tone 1F468 200D 1F4BB ; fully-qualified # 👨‍💻 E4.0 man technologist 1F468 1F3FB 200D 1F4BB ; fully-qualified # 👨🏻‍💻 E4.0 man technologist: light skin tone 1F468 1F3FC 200D 1F4BB ; fully-qualified # 👨🏼‍💻 E4.0 man technologist: medium-light skin tone 1F468 1F3FD 200D 1F4BB ; fully-qualified # 👨🏽‍💻 E4.0 man technologist: medium skin tone 1F468 1F3FE 200D 1F4BB ; fully-qualified # 👨🏾‍💻 E4.0 man technologist: medium-dark skin tone 1F468 1F3FF 200D 1F4BB ; fully-qualified # 👨🏿‍💻 E4.0 man technologist: dark skin tone 1F469 200D 1F4BB ; fully-qualified # 👩‍💻 E4.0 woman technologist 1F469 1F3FB 200D 1F4BB ; fully-qualified # 👩🏻‍💻 E4.0 woman technologist: light skin tone 1F469 1F3FC 200D 1F4BB ; fully-qualified # 👩🏼‍💻 E4.0 woman technologist: medium-light skin tone 1F469 1F3FD 200D 1F4BB ; fully-qualified # 👩🏽‍💻 E4.0 woman technologist: medium skin tone 1F469 1F3FE 200D 1F4BB ; fully-qualified # 👩🏾‍💻 E4.0 woman technologist: medium-dark skin tone 1F469 1F3FF 200D 1F4BB ; fully-qualified # 👩🏿‍💻 E4.0 woman technologist: dark skin tone 1F9D1 200D 1F3A4 ; fully-qualified # 🧑‍🎤 E12.1 singer 1F9D1 1F3FB 200D 1F3A4 ; fully-qualified # 🧑🏻‍🎤 E12.1 singer: light skin tone 1F9D1 1F3FC 200D 1F3A4 ; fully-qualified # 🧑🏼‍🎤 E12.1 singer: medium-light skin tone 1F9D1 1F3FD 200D 1F3A4 ; fully-qualified # 🧑🏽‍🎤 E12.1 singer: medium skin tone 1F9D1 1F3FE 200D 1F3A4 ; fully-qualified # 🧑🏾‍🎤 E12.1 singer: medium-dark skin tone 1F9D1 1F3FF 200D 1F3A4 ; fully-qualified # 🧑🏿‍🎤 E12.1 singer: dark skin tone 1F468 200D 1F3A4 ; fully-qualified # 👨‍🎤 E4.0 man singer 1F468 1F3FB 200D 1F3A4 ; fully-qualified # 👨🏻‍🎤 E4.0 man singer: light skin tone 1F468 1F3FC 200D 1F3A4 ; fully-qualified # 👨🏼‍🎤 E4.0 man singer: medium-light skin tone 1F468 1F3FD 200D 1F3A4 ; fully-qualified # 👨🏽‍🎤 E4.0 man singer: medium skin tone 1F468 1F3FE 200D 1F3A4 ; fully-qualified # 👨🏾‍🎤 E4.0 man singer: medium-dark skin tone 1F468 1F3FF 200D 1F3A4 ; fully-qualified # 👨🏿‍🎤 E4.0 man singer: dark skin tone 1F469 200D 1F3A4 ; fully-qualified # 👩‍🎤 E4.0 woman singer 1F469 1F3FB 200D 1F3A4 ; fully-qualified # 👩🏻‍🎤 E4.0 woman singer: light skin tone 1F469 1F3FC 200D 1F3A4 ; fully-qualified # 👩🏼‍🎤 E4.0 woman singer: medium-light skin tone 1F469 1F3FD 200D 1F3A4 ; fully-qualified # 👩🏽‍🎤 E4.0 woman singer: medium skin tone 1F469 1F3FE 200D 1F3A4 ; fully-qualified # 👩🏾‍🎤 E4.0 woman singer: medium-dark skin tone 1F469 1F3FF 200D 1F3A4 ; fully-qualified # 👩🏿‍🎤 E4.0 woman singer: dark skin tone 1F9D1 200D 1F3A8 ; fully-qualified # 🧑‍🎨 E12.1 artist 1F9D1 1F3FB 200D 1F3A8 ; fully-qualified # 🧑🏻‍🎨 E12.1 artist: light skin tone 1F9D1 1F3FC 200D 1F3A8 ; fully-qualified # 🧑🏼‍🎨 E12.1 artist: medium-light skin tone 1F9D1 1F3FD 200D 1F3A8 ; fully-qualified # 🧑🏽‍🎨 E12.1 artist: medium skin tone 1F9D1 1F3FE 200D 1F3A8 ; fully-qualified # 🧑🏾‍🎨 E12.1 artist: medium-dark skin tone 1F9D1 1F3FF 200D 1F3A8 ; fully-qualified # 🧑🏿‍🎨 E12.1 artist: dark skin tone 1F468 200D 1F3A8 ; fully-qualified # 👨‍🎨 E4.0 man artist 1F468 1F3FB 200D 1F3A8 ; fully-qualified # 👨🏻‍🎨 E4.0 man artist: light skin tone 1F468 1F3FC 200D 1F3A8 ; fully-qualified # 👨🏼‍🎨 E4.0 man artist: medium-light skin tone 1F468 1F3FD 200D 1F3A8 ; fully-qualified # 👨🏽‍🎨 E4.0 man artist: medium skin tone 1F468 1F3FE 200D 1F3A8 ; fully-qualified # 👨🏾‍🎨 E4.0 man artist: medium-dark skin tone 1F468 1F3FF 200D 1F3A8 ; fully-qualified # 👨🏿‍🎨 E4.0 man artist: dark skin tone 1F469 200D 1F3A8 ; fully-qualified # 👩‍🎨 E4.0 woman artist 1F469 1F3FB 200D 1F3A8 ; fully-qualified # 👩🏻‍🎨 E4.0 woman artist: light skin tone 1F469 1F3FC 200D 1F3A8 ; fully-qualified # 👩🏼‍🎨 E4.0 woman artist: medium-light skin tone 1F469 1F3FD 200D 1F3A8 ; fully-qualified # 👩🏽‍🎨 E4.0 woman artist: medium skin tone 1F469 1F3FE 200D 1F3A8 ; fully-qualified # 👩🏾‍🎨 E4.0 woman artist: medium-dark skin tone 1F469 1F3FF 200D 1F3A8 ; fully-qualified # 👩🏿‍🎨 E4.0 woman artist: dark skin tone 1F9D1 200D 2708 FE0F ; fully-qualified # 🧑‍✈️ E12.1 pilot 1F9D1 200D 2708 ; minimally-qualified # 🧑‍✈ E12.1 pilot 1F9D1 1F3FB 200D 2708 FE0F ; fully-qualified # 🧑🏻‍✈️ E12.1 pilot: light skin tone 1F9D1 1F3FB 200D 2708 ; minimally-qualified # 🧑🏻‍✈ E12.1 pilot: light skin tone 1F9D1 1F3FC 200D 2708 FE0F ; fully-qualified # 🧑🏼‍✈️ E12.1 pilot: medium-light skin tone 1F9D1 1F3FC 200D 2708 ; minimally-qualified # 🧑🏼‍✈ E12.1 pilot: medium-light skin tone 1F9D1 1F3FD 200D 2708 FE0F ; fully-qualified # 🧑🏽‍✈️ E12.1 pilot: medium skin tone 1F9D1 1F3FD 200D 2708 ; minimally-qualified # 🧑🏽‍✈ E12.1 pilot: medium skin tone 1F9D1 1F3FE 200D 2708 FE0F ; fully-qualified # 🧑🏾‍✈️ E12.1 pilot: medium-dark skin tone 1F9D1 1F3FE 200D 2708 ; minimally-qualified # 🧑🏾‍✈ E12.1 pilot: medium-dark skin tone 1F9D1 1F3FF 200D 2708 FE0F ; fully-qualified # 🧑🏿‍✈️ E12.1 pilot: dark skin tone 1F9D1 1F3FF 200D 2708 ; minimally-qualified # 🧑🏿‍✈ E12.1 pilot: dark skin tone 1F468 200D 2708 FE0F ; fully-qualified # 👨‍✈️ E4.0 man pilot 1F468 200D 2708 ; minimally-qualified # 👨‍✈ E4.0 man pilot 1F468 1F3FB 200D 2708 FE0F ; fully-qualified # 👨🏻‍✈️ E4.0 man pilot: light skin tone 1F468 1F3FB 200D 2708 ; minimally-qualified # 👨🏻‍✈ E4.0 man pilot: light skin tone 1F468 1F3FC 200D 2708 FE0F ; fully-qualified # 👨🏼‍✈️ E4.0 man pilot: medium-light skin tone 1F468 1F3FC 200D 2708 ; minimally-qualified # 👨🏼‍✈ E4.0 man pilot: medium-light skin tone 1F468 1F3FD 200D 2708 FE0F ; fully-qualified # 👨🏽‍✈️ E4.0 man pilot: medium skin tone 1F468 1F3FD 200D 2708 ; minimally-qualified # 👨🏽‍✈ E4.0 man pilot: medium skin tone 1F468 1F3FE 200D 2708 FE0F ; fully-qualified # 👨🏾‍✈️ E4.0 man pilot: medium-dark skin tone 1F468 1F3FE 200D 2708 ; minimally-qualified # 👨🏾‍✈ E4.0 man pilot: medium-dark skin tone 1F468 1F3FF 200D 2708 FE0F ; fully-qualified # 👨🏿‍✈️ E4.0 man pilot: dark skin tone 1F468 1F3FF 200D 2708 ; minimally-qualified # 👨🏿‍✈ E4.0 man pilot: dark skin tone 1F469 200D 2708 FE0F ; fully-qualified # 👩‍✈️ E4.0 woman pilot 1F469 200D 2708 ; minimally-qualified # 👩‍✈ E4.0 woman pilot 1F469 1F3FB 200D 2708 FE0F ; fully-qualified # 👩🏻‍✈️ E4.0 woman pilot: light skin tone 1F469 1F3FB 200D 2708 ; minimally-qualified # 👩🏻‍✈ E4.0 woman pilot: light skin tone 1F469 1F3FC 200D 2708 FE0F ; fully-qualified # 👩🏼‍✈️ E4.0 woman pilot: medium-light skin tone 1F469 1F3FC 200D 2708 ; minimally-qualified # 👩🏼‍✈ E4.0 woman pilot: medium-light skin tone 1F469 1F3FD 200D 2708 FE0F ; fully-qualified # 👩🏽‍✈️ E4.0 woman pilot: medium skin tone 1F469 1F3FD 200D 2708 ; minimally-qualified # 👩🏽‍✈ E4.0 woman pilot: medium skin tone 1F469 1F3FE 200D 2708 FE0F ; fully-qualified # 👩🏾‍✈️ E4.0 woman pilot: medium-dark skin tone 1F469 1F3FE 200D 2708 ; minimally-qualified # 👩🏾‍✈ E4.0 woman pilot: medium-dark skin tone 1F469 1F3FF 200D 2708 FE0F ; fully-qualified # 👩🏿‍✈️ E4.0 woman pilot: dark skin tone 1F469 1F3FF 200D 2708 ; minimally-qualified # 👩🏿‍✈ E4.0 woman pilot: dark skin tone 1F9D1 200D 1F680 ; fully-qualified # 🧑‍🚀 E12.1 astronaut 1F9D1 1F3FB 200D 1F680 ; fully-qualified # 🧑🏻‍🚀 E12.1 astronaut: light skin tone 1F9D1 1F3FC 200D 1F680 ; fully-qualified # 🧑🏼‍🚀 E12.1 astronaut: medium-light skin tone 1F9D1 1F3FD 200D 1F680 ; fully-qualified # 🧑🏽‍🚀 E12.1 astronaut: medium skin tone 1F9D1 1F3FE 200D 1F680 ; fully-qualified # 🧑🏾‍🚀 E12.1 astronaut: medium-dark skin tone 1F9D1 1F3FF 200D 1F680 ; fully-qualified # 🧑🏿‍🚀 E12.1 astronaut: dark skin tone 1F468 200D 1F680 ; fully-qualified # 👨‍🚀 E4.0 man astronaut 1F468 1F3FB 200D 1F680 ; fully-qualified # 👨🏻‍🚀 E4.0 man astronaut: light skin tone 1F468 1F3FC 200D 1F680 ; fully-qualified # 👨🏼‍🚀 E4.0 man astronaut: medium-light skin tone 1F468 1F3FD 200D 1F680 ; fully-qualified # 👨🏽‍🚀 E4.0 man astronaut: medium skin tone 1F468 1F3FE 200D 1F680 ; fully-qualified # 👨🏾‍🚀 E4.0 man astronaut: medium-dark skin tone 1F468 1F3FF 200D 1F680 ; fully-qualified # 👨🏿‍🚀 E4.0 man astronaut: dark skin tone 1F469 200D 1F680 ; fully-qualified # 👩‍🚀 E4.0 woman astronaut 1F469 1F3FB 200D 1F680 ; fully-qualified # 👩🏻‍🚀 E4.0 woman astronaut: light skin tone 1F469 1F3FC 200D 1F680 ; fully-qualified # 👩🏼‍🚀 E4.0 woman astronaut: medium-light skin tone 1F469 1F3FD 200D 1F680 ; fully-qualified # 👩🏽‍🚀 E4.0 woman astronaut: medium skin tone 1F469 1F3FE 200D 1F680 ; fully-qualified # 👩🏾‍🚀 E4.0 woman astronaut: medium-dark skin tone 1F469 1F3FF 200D 1F680 ; fully-qualified # 👩🏿‍🚀 E4.0 woman astronaut: dark skin tone 1F9D1 200D 1F692 ; fully-qualified # 🧑‍🚒 E12.1 firefighter 1F9D1 1F3FB 200D 1F692 ; fully-qualified # 🧑🏻‍🚒 E12.1 firefighter: light skin tone 1F9D1 1F3FC 200D 1F692 ; fully-qualified # 🧑🏼‍🚒 E12.1 firefighter: medium-light skin tone 1F9D1 1F3FD 200D 1F692 ; fully-qualified # 🧑🏽‍🚒 E12.1 firefighter: medium skin tone 1F9D1 1F3FE 200D 1F692 ; fully-qualified # 🧑🏾‍🚒 E12.1 firefighter: medium-dark skin tone 1F9D1 1F3FF 200D 1F692 ; fully-qualified # 🧑🏿‍🚒 E12.1 firefighter: dark skin tone 1F468 200D 1F692 ; fully-qualified # 👨‍🚒 E4.0 man firefighter 1F468 1F3FB 200D 1F692 ; fully-qualified # 👨🏻‍🚒 E4.0 man firefighter: light skin tone 1F468 1F3FC 200D 1F692 ; fully-qualified # 👨🏼‍🚒 E4.0 man firefighter: medium-light skin tone 1F468 1F3FD 200D 1F692 ; fully-qualified # 👨🏽‍🚒 E4.0 man firefighter: medium skin tone 1F468 1F3FE 200D 1F692 ; fully-qualified # 👨🏾‍🚒 E4.0 man firefighter: medium-dark skin tone 1F468 1F3FF 200D 1F692 ; fully-qualified # 👨🏿‍🚒 E4.0 man firefighter: dark skin tone 1F469 200D 1F692 ; fully-qualified # 👩‍🚒 E4.0 woman firefighter 1F469 1F3FB 200D 1F692 ; fully-qualified # 👩🏻‍🚒 E4.0 woman firefighter: light skin tone 1F469 1F3FC 200D 1F692 ; fully-qualified # 👩🏼‍🚒 E4.0 woman firefighter: medium-light skin tone 1F469 1F3FD 200D 1F692 ; fully-qualified # 👩🏽‍🚒 E4.0 woman firefighter: medium skin tone 1F469 1F3FE 200D 1F692 ; fully-qualified # 👩🏾‍🚒 E4.0 woman firefighter: medium-dark skin tone 1F469 1F3FF 200D 1F692 ; fully-qualified # 👩🏿‍🚒 E4.0 woman firefighter: dark skin tone 1F46E ; fully-qualified # 👮 E0.6 police officer 1F46E 1F3FB ; fully-qualified # 👮🏻 E1.0 police officer: light skin tone 1F46E 1F3FC ; fully-qualified # 👮🏼 E1.0 police officer: medium-light skin tone 1F46E 1F3FD ; fully-qualified # 👮🏽 E1.0 police officer: medium skin tone 1F46E 1F3FE ; fully-qualified # 👮🏾 E1.0 police officer: medium-dark skin tone 1F46E 1F3FF ; fully-qualified # 👮🏿 E1.0 police officer: dark skin tone 1F46E 200D 2642 FE0F ; fully-qualified # 👮‍♂️ E4.0 man police officer 1F46E 200D 2642 ; minimally-qualified # 👮‍♂ E4.0 man police officer 1F46E 1F3FB 200D 2642 FE0F ; fully-qualified # 👮🏻‍♂️ E4.0 man police officer: light skin tone 1F46E 1F3FB 200D 2642 ; minimally-qualified # 👮🏻‍♂ E4.0 man police officer: light skin tone 1F46E 1F3FC 200D 2642 FE0F ; fully-qualified # 👮🏼‍♂️ E4.0 man police officer: medium-light skin tone 1F46E 1F3FC 200D 2642 ; minimally-qualified # 👮🏼‍♂ E4.0 man police officer: medium-light skin tone 1F46E 1F3FD 200D 2642 FE0F ; fully-qualified # 👮🏽‍♂️ E4.0 man police officer: medium skin tone 1F46E 1F3FD 200D 2642 ; minimally-qualified # 👮🏽‍♂ E4.0 man police officer: medium skin tone 1F46E 1F3FE 200D 2642 FE0F ; fully-qualified # 👮🏾‍♂️ E4.0 man police officer: medium-dark skin tone 1F46E 1F3FE 200D 2642 ; minimally-qualified # 👮🏾‍♂ E4.0 man police officer: medium-dark skin tone 1F46E 1F3FF 200D 2642 FE0F ; fully-qualified # 👮🏿‍♂️ E4.0 man police officer: dark skin tone 1F46E 1F3FF 200D 2642 ; minimally-qualified # 👮🏿‍♂ E4.0 man police officer: dark skin tone 1F46E 200D 2640 FE0F ; fully-qualified # 👮‍♀️ E4.0 woman police officer 1F46E 200D 2640 ; minimally-qualified # 👮‍♀ E4.0 woman police officer 1F46E 1F3FB 200D 2640 FE0F ; fully-qualified # 👮🏻‍♀️ E4.0 woman police officer: light skin tone 1F46E 1F3FB 200D 2640 ; minimally-qualified # 👮🏻‍♀ E4.0 woman police officer: light skin tone 1F46E 1F3FC 200D 2640 FE0F ; fully-qualified # 👮🏼‍♀️ E4.0 woman police officer: medium-light skin tone 1F46E 1F3FC 200D 2640 ; minimally-qualified # 👮🏼‍♀ E4.0 woman police officer: medium-light skin tone 1F46E 1F3FD 200D 2640 FE0F ; fully-qualified # 👮🏽‍♀️ E4.0 woman police officer: medium skin tone 1F46E 1F3FD 200D 2640 ; minimally-qualified # 👮🏽‍♀ E4.0 woman police officer: medium skin tone 1F46E 1F3FE 200D 2640 FE0F ; fully-qualified # 👮🏾‍♀️ E4.0 woman police officer: medium-dark skin tone 1F46E 1F3FE 200D 2640 ; minimally-qualified # 👮🏾‍♀ E4.0 woman police officer: medium-dark skin tone 1F46E 1F3FF 200D 2640 FE0F ; fully-qualified # 👮🏿‍♀️ E4.0 woman police officer: dark skin tone 1F46E 1F3FF 200D 2640 ; minimally-qualified # 👮🏿‍♀ E4.0 woman police officer: dark skin tone 1F575 FE0F ; fully-qualified # 🕵️ E0.7 detective 1F575 ; unqualified # 🕵 E0.7 detective 1F575 1F3FB ; fully-qualified # 🕵🏻 E2.0 detective: light skin tone 1F575 1F3FC ; fully-qualified # 🕵🏼 E2.0 detective: medium-light skin tone 1F575 1F3FD ; fully-qualified # 🕵🏽 E2.0 detective: medium skin tone 1F575 1F3FE ; fully-qualified # 🕵🏾 E2.0 detective: medium-dark skin tone 1F575 1F3FF ; fully-qualified # 🕵🏿 E2.0 detective: dark skin tone 1F575 FE0F 200D 2642 FE0F ; fully-qualified # 🕵️‍♂️ E4.0 man detective 1F575 200D 2642 FE0F ; unqualified # 🕵‍♂️ E4.0 man detective 1F575 FE0F 200D 2642 ; unqualified # 🕵️‍♂ E4.0 man detective 1F575 200D 2642 ; unqualified # 🕵‍♂ E4.0 man detective 1F575 1F3FB 200D 2642 FE0F ; fully-qualified # 🕵🏻‍♂️ E4.0 man detective: light skin tone 1F575 1F3FB 200D 2642 ; minimally-qualified # 🕵🏻‍♂ E4.0 man detective: light skin tone 1F575 1F3FC 200D 2642 FE0F ; fully-qualified # 🕵🏼‍♂️ E4.0 man detective: medium-light skin tone 1F575 1F3FC 200D 2642 ; minimally-qualified # 🕵🏼‍♂ E4.0 man detective: medium-light skin tone 1F575 1F3FD 200D 2642 FE0F ; fully-qualified # 🕵🏽‍♂️ E4.0 man detective: medium skin tone 1F575 1F3FD 200D 2642 ; minimally-qualified # 🕵🏽‍♂ E4.0 man detective: medium skin tone 1F575 1F3FE 200D 2642 FE0F ; fully-qualified # 🕵🏾‍♂️ E4.0 man detective: medium-dark skin tone 1F575 1F3FE 200D 2642 ; minimally-qualified # 🕵🏾‍♂ E4.0 man detective: medium-dark skin tone 1F575 1F3FF 200D 2642 FE0F ; fully-qualified # 🕵🏿‍♂️ E4.0 man detective: dark skin tone 1F575 1F3FF 200D 2642 ; minimally-qualified # 🕵🏿‍♂ E4.0 man detective: dark skin tone 1F575 FE0F 200D 2640 FE0F ; fully-qualified # 🕵️‍♀️ E4.0 woman detective 1F575 200D 2640 FE0F ; unqualified # 🕵‍♀️ E4.0 woman detective 1F575 FE0F 200D 2640 ; unqualified # 🕵️‍♀ E4.0 woman detective 1F575 200D 2640 ; unqualified # 🕵‍♀ E4.0 woman detective 1F575 1F3FB 200D 2640 FE0F ; fully-qualified # 🕵🏻‍♀️ E4.0 woman detective: light skin tone 1F575 1F3FB 200D 2640 ; minimally-qualified # 🕵🏻‍♀ E4.0 woman detective: light skin tone 1F575 1F3FC 200D 2640 FE0F ; fully-qualified # 🕵🏼‍♀️ E4.0 woman detective: medium-light skin tone 1F575 1F3FC 200D 2640 ; minimally-qualified # 🕵🏼‍♀ E4.0 woman detective: medium-light skin tone 1F575 1F3FD 200D 2640 FE0F ; fully-qualified # 🕵🏽‍♀️ E4.0 woman detective: medium skin tone 1F575 1F3FD 200D 2640 ; minimally-qualified # 🕵🏽‍♀ E4.0 woman detective: medium skin tone 1F575 1F3FE 200D 2640 FE0F ; fully-qualified # 🕵🏾‍♀️ E4.0 woman detective: medium-dark skin tone 1F575 1F3FE 200D 2640 ; minimally-qualified # 🕵🏾‍♀ E4.0 woman detective: medium-dark skin tone 1F575 1F3FF 200D 2640 FE0F ; fully-qualified # 🕵🏿‍♀️ E4.0 woman detective: dark skin tone 1F575 1F3FF 200D 2640 ; minimally-qualified # 🕵🏿‍♀ E4.0 woman detective: dark skin tone 1F482 ; fully-qualified # 💂 E0.6 guard 1F482 1F3FB ; fully-qualified # 💂🏻 E1.0 guard: light skin tone 1F482 1F3FC ; fully-qualified # 💂🏼 E1.0 guard: medium-light skin tone 1F482 1F3FD ; fully-qualified # 💂🏽 E1.0 guard: medium skin tone 1F482 1F3FE ; fully-qualified # 💂🏾 E1.0 guard: medium-dark skin tone 1F482 1F3FF ; fully-qualified # 💂🏿 E1.0 guard: dark skin tone 1F482 200D 2642 FE0F ; fully-qualified # 💂‍♂️ E4.0 man guard 1F482 200D 2642 ; minimally-qualified # 💂‍♂ E4.0 man guard 1F482 1F3FB 200D 2642 FE0F ; fully-qualified # 💂🏻‍♂️ E4.0 man guard: light skin tone 1F482 1F3FB 200D 2642 ; minimally-qualified # 💂🏻‍♂ E4.0 man guard: light skin tone 1F482 1F3FC 200D 2642 FE0F ; fully-qualified # 💂🏼‍♂️ E4.0 man guard: medium-light skin tone 1F482 1F3FC 200D 2642 ; minimally-qualified # 💂🏼‍♂ E4.0 man guard: medium-light skin tone 1F482 1F3FD 200D 2642 FE0F ; fully-qualified # 💂🏽‍♂️ E4.0 man guard: medium skin tone 1F482 1F3FD 200D 2642 ; minimally-qualified # 💂🏽‍♂ E4.0 man guard: medium skin tone 1F482 1F3FE 200D 2642 FE0F ; fully-qualified # 💂🏾‍♂️ E4.0 man guard: medium-dark skin tone 1F482 1F3FE 200D 2642 ; minimally-qualified # 💂🏾‍♂ E4.0 man guard: medium-dark skin tone 1F482 1F3FF 200D 2642 FE0F ; fully-qualified # 💂🏿‍♂️ E4.0 man guard: dark skin tone 1F482 1F3FF 200D 2642 ; minimally-qualified # 💂🏿‍♂ E4.0 man guard: dark skin tone 1F482 200D 2640 FE0F ; fully-qualified # 💂‍♀️ E4.0 woman guard 1F482 200D 2640 ; minimally-qualified # 💂‍♀ E4.0 woman guard 1F482 1F3FB 200D 2640 FE0F ; fully-qualified # 💂🏻‍♀️ E4.0 woman guard: light skin tone 1F482 1F3FB 200D 2640 ; minimally-qualified # 💂🏻‍♀ E4.0 woman guard: light skin tone 1F482 1F3FC 200D 2640 FE0F ; fully-qualified # 💂🏼‍♀️ E4.0 woman guard: medium-light skin tone 1F482 1F3FC 200D 2640 ; minimally-qualified # 💂🏼‍♀ E4.0 woman guard: medium-light skin tone 1F482 1F3FD 200D 2640 FE0F ; fully-qualified # 💂🏽‍♀️ E4.0 woman guard: medium skin tone 1F482 1F3FD 200D 2640 ; minimally-qualified # 💂🏽‍♀ E4.0 woman guard: medium skin tone 1F482 1F3FE 200D 2640 FE0F ; fully-qualified # 💂🏾‍♀️ E4.0 woman guard: medium-dark skin tone 1F482 1F3FE 200D 2640 ; minimally-qualified # 💂🏾‍♀ E4.0 woman guard: medium-dark skin tone 1F482 1F3FF 200D 2640 FE0F ; fully-qualified # 💂🏿‍♀️ E4.0 woman guard: dark skin tone 1F482 1F3FF 200D 2640 ; minimally-qualified # 💂🏿‍♀ E4.0 woman guard: dark skin tone 1F977 ; fully-qualified # 🥷 E13.0 ninja 1F977 1F3FB ; fully-qualified # 🥷🏻 E13.0 ninja: light skin tone 1F977 1F3FC ; fully-qualified # 🥷🏼 E13.0 ninja: medium-light skin tone 1F977 1F3FD ; fully-qualified # 🥷🏽 E13.0 ninja: medium skin tone 1F977 1F3FE ; fully-qualified # 🥷🏾 E13.0 ninja: medium-dark skin tone 1F977 1F3FF ; fully-qualified # 🥷🏿 E13.0 ninja: dark skin tone 1F477 ; fully-qualified # 👷 E0.6 construction worker 1F477 1F3FB ; fully-qualified # 👷🏻 E1.0 construction worker: light skin tone 1F477 1F3FC ; fully-qualified # 👷🏼 E1.0 construction worker: medium-light skin tone 1F477 1F3FD ; fully-qualified # 👷🏽 E1.0 construction worker: medium skin tone 1F477 1F3FE ; fully-qualified # 👷🏾 E1.0 construction worker: medium-dark skin tone 1F477 1F3FF ; fully-qualified # 👷🏿 E1.0 construction worker: dark skin tone 1F477 200D 2642 FE0F ; fully-qualified # 👷‍♂️ E4.0 man construction worker 1F477 200D 2642 ; minimally-qualified # 👷‍♂ E4.0 man construction worker 1F477 1F3FB 200D 2642 FE0F ; fully-qualified # 👷🏻‍♂️ E4.0 man construction worker: light skin tone 1F477 1F3FB 200D 2642 ; minimally-qualified # 👷🏻‍♂ E4.0 man construction worker: light skin tone 1F477 1F3FC 200D 2642 FE0F ; fully-qualified # 👷🏼‍♂️ E4.0 man construction worker: medium-light skin tone 1F477 1F3FC 200D 2642 ; minimally-qualified # 👷🏼‍♂ E4.0 man construction worker: medium-light skin tone 1F477 1F3FD 200D 2642 FE0F ; fully-qualified # 👷🏽‍♂️ E4.0 man construction worker: medium skin tone 1F477 1F3FD 200D 2642 ; minimally-qualified # 👷🏽‍♂ E4.0 man construction worker: medium skin tone 1F477 1F3FE 200D 2642 FE0F ; fully-qualified # 👷🏾‍♂️ E4.0 man construction worker: medium-dark skin tone 1F477 1F3FE 200D 2642 ; minimally-qualified # 👷🏾‍♂ E4.0 man construction worker: medium-dark skin tone 1F477 1F3FF 200D 2642 FE0F ; fully-qualified # 👷🏿‍♂️ E4.0 man construction worker: dark skin tone 1F477 1F3FF 200D 2642 ; minimally-qualified # 👷🏿‍♂ E4.0 man construction worker: dark skin tone 1F477 200D 2640 FE0F ; fully-qualified # 👷‍♀️ E4.0 woman construction worker 1F477 200D 2640 ; minimally-qualified # 👷‍♀ E4.0 woman construction worker 1F477 1F3FB 200D 2640 FE0F ; fully-qualified # 👷🏻‍♀️ E4.0 woman construction worker: light skin tone 1F477 1F3FB 200D 2640 ; minimally-qualified # 👷🏻‍♀ E4.0 woman construction worker: light skin tone 1F477 1F3FC 200D 2640 FE0F ; fully-qualified # 👷🏼‍♀️ E4.0 woman construction worker: medium-light skin tone 1F477 1F3FC 200D 2640 ; minimally-qualified # 👷🏼‍♀ E4.0 woman construction worker: medium-light skin tone 1F477 1F3FD 200D 2640 FE0F ; fully-qualified # 👷🏽‍♀️ E4.0 woman construction worker: medium skin tone 1F477 1F3FD 200D 2640 ; minimally-qualified # 👷🏽‍♀ E4.0 woman construction worker: medium skin tone 1F477 1F3FE 200D 2640 FE0F ; fully-qualified # 👷🏾‍♀️ E4.0 woman construction worker: medium-dark skin tone 1F477 1F3FE 200D 2640 ; minimally-qualified # 👷🏾‍♀ E4.0 woman construction worker: medium-dark skin tone 1F477 1F3FF 200D 2640 FE0F ; fully-qualified # 👷🏿‍♀️ E4.0 woman construction worker: dark skin tone 1F477 1F3FF 200D 2640 ; minimally-qualified # 👷🏿‍♀ E4.0 woman construction worker: dark skin tone 1F934 ; fully-qualified # 🤴 E3.0 prince 1F934 1F3FB ; fully-qualified # 🤴🏻 E3.0 prince: light skin tone 1F934 1F3FC ; fully-qualified # 🤴🏼 E3.0 prince: medium-light skin tone 1F934 1F3FD ; fully-qualified # 🤴🏽 E3.0 prince: medium skin tone 1F934 1F3FE ; fully-qualified # 🤴🏾 E3.0 prince: medium-dark skin tone 1F934 1F3FF ; fully-qualified # 🤴🏿 E3.0 prince: dark skin tone 1F478 ; fully-qualified # 👸 E0.6 princess 1F478 1F3FB ; fully-qualified # 👸🏻 E1.0 princess: light skin tone 1F478 1F3FC ; fully-qualified # 👸🏼 E1.0 princess: medium-light skin tone 1F478 1F3FD ; fully-qualified # 👸🏽 E1.0 princess: medium skin tone 1F478 1F3FE ; fully-qualified # 👸🏾 E1.0 princess: medium-dark skin tone 1F478 1F3FF ; fully-qualified # 👸🏿 E1.0 princess: dark skin tone 1F473 ; fully-qualified # 👳 E0.6 person wearing turban 1F473 1F3FB ; fully-qualified # 👳🏻 E1.0 person wearing turban: light skin tone 1F473 1F3FC ; fully-qualified # 👳🏼 E1.0 person wearing turban: medium-light skin tone 1F473 1F3FD ; fully-qualified # 👳🏽 E1.0 person wearing turban: medium skin tone 1F473 1F3FE ; fully-qualified # 👳🏾 E1.0 person wearing turban: medium-dark skin tone 1F473 1F3FF ; fully-qualified # 👳🏿 E1.0 person wearing turban: dark skin tone 1F473 200D 2642 FE0F ; fully-qualified # 👳‍♂️ E4.0 man wearing turban 1F473 200D 2642 ; minimally-qualified # 👳‍♂ E4.0 man wearing turban 1F473 1F3FB 200D 2642 FE0F ; fully-qualified # 👳🏻‍♂️ E4.0 man wearing turban: light skin tone 1F473 1F3FB 200D 2642 ; minimally-qualified # 👳🏻‍♂ E4.0 man wearing turban: light skin tone 1F473 1F3FC 200D 2642 FE0F ; fully-qualified # 👳🏼‍♂️ E4.0 man wearing turban: medium-light skin tone 1F473 1F3FC 200D 2642 ; minimally-qualified # 👳🏼‍♂ E4.0 man wearing turban: medium-light skin tone 1F473 1F3FD 200D 2642 FE0F ; fully-qualified # 👳🏽‍♂️ E4.0 man wearing turban: medium skin tone 1F473 1F3FD 200D 2642 ; minimally-qualified # 👳🏽‍♂ E4.0 man wearing turban: medium skin tone 1F473 1F3FE 200D 2642 FE0F ; fully-qualified # 👳🏾‍♂️ E4.0 man wearing turban: medium-dark skin tone 1F473 1F3FE 200D 2642 ; minimally-qualified # 👳🏾‍♂ E4.0 man wearing turban: medium-dark skin tone 1F473 1F3FF 200D 2642 FE0F ; fully-qualified # 👳🏿‍♂️ E4.0 man wearing turban: dark skin tone 1F473 1F3FF 200D 2642 ; minimally-qualified # 👳🏿‍♂ E4.0 man wearing turban: dark skin tone 1F473 200D 2640 FE0F ; fully-qualified # 👳‍♀️ E4.0 woman wearing turban 1F473 200D 2640 ; minimally-qualified # 👳‍♀ E4.0 woman wearing turban 1F473 1F3FB 200D 2640 FE0F ; fully-qualified # 👳🏻‍♀️ E4.0 woman wearing turban: light skin tone 1F473 1F3FB 200D 2640 ; minimally-qualified # 👳🏻‍♀ E4.0 woman wearing turban: light skin tone 1F473 1F3FC 200D 2640 FE0F ; fully-qualified # 👳🏼‍♀️ E4.0 woman wearing turban: medium-light skin tone 1F473 1F3FC 200D 2640 ; minimally-qualified # 👳🏼‍♀ E4.0 woman wearing turban: medium-light skin tone 1F473 1F3FD 200D 2640 FE0F ; fully-qualified # 👳🏽‍♀️ E4.0 woman wearing turban: medium skin tone 1F473 1F3FD 200D 2640 ; minimally-qualified # 👳🏽‍♀ E4.0 woman wearing turban: medium skin tone 1F473 1F3FE 200D 2640 FE0F ; fully-qualified # 👳🏾‍♀️ E4.0 woman wearing turban: medium-dark skin tone 1F473 1F3FE 200D 2640 ; minimally-qualified # 👳🏾‍♀ E4.0 woman wearing turban: medium-dark skin tone 1F473 1F3FF 200D 2640 FE0F ; fully-qualified # 👳🏿‍♀️ E4.0 woman wearing turban: dark skin tone 1F473 1F3FF 200D 2640 ; minimally-qualified # 👳🏿‍♀ E4.0 woman wearing turban: dark skin tone 1F472 ; fully-qualified # 👲 E0.6 person with skullcap 1F472 1F3FB ; fully-qualified # 👲🏻 E1.0 person with skullcap: light skin tone 1F472 1F3FC ; fully-qualified # 👲🏼 E1.0 person with skullcap: medium-light skin tone 1F472 1F3FD ; fully-qualified # 👲🏽 E1.0 person with skullcap: medium skin tone 1F472 1F3FE ; fully-qualified # 👲🏾 E1.0 person with skullcap: medium-dark skin tone 1F472 1F3FF ; fully-qualified # 👲🏿 E1.0 person with skullcap: dark skin tone 1F9D5 ; fully-qualified # 🧕 E5.0 woman with headscarf 1F9D5 1F3FB ; fully-qualified # 🧕🏻 E5.0 woman with headscarf: light skin tone 1F9D5 1F3FC ; fully-qualified # 🧕🏼 E5.0 woman with headscarf: medium-light skin tone 1F9D5 1F3FD ; fully-qualified # 🧕🏽 E5.0 woman with headscarf: medium skin tone 1F9D5 1F3FE ; fully-qualified # 🧕🏾 E5.0 woman with headscarf: medium-dark skin tone 1F9D5 1F3FF ; fully-qualified # 🧕🏿 E5.0 woman with headscarf: dark skin tone 1F935 ; fully-qualified # 🤵 E3.0 person in tuxedo 1F935 1F3FB ; fully-qualified # 🤵🏻 E3.0 person in tuxedo: light skin tone 1F935 1F3FC ; fully-qualified # 🤵🏼 E3.0 person in tuxedo: medium-light skin tone 1F935 1F3FD ; fully-qualified # 🤵🏽 E3.0 person in tuxedo: medium skin tone 1F935 1F3FE ; fully-qualified # 🤵🏾 E3.0 person in tuxedo: medium-dark skin tone 1F935 1F3FF ; fully-qualified # 🤵🏿 E3.0 person in tuxedo: dark skin tone 1F935 200D 2642 FE0F ; fully-qualified # 🤵‍♂️ E13.0 man in tuxedo 1F935 200D 2642 ; minimally-qualified # 🤵‍♂ E13.0 man in tuxedo 1F935 1F3FB 200D 2642 FE0F ; fully-qualified # 🤵🏻‍♂️ E13.0 man in tuxedo: light skin tone 1F935 1F3FB 200D 2642 ; minimally-qualified # 🤵🏻‍♂ E13.0 man in tuxedo: light skin tone 1F935 1F3FC 200D 2642 FE0F ; fully-qualified # 🤵🏼‍♂️ E13.0 man in tuxedo: medium-light skin tone 1F935 1F3FC 200D 2642 ; minimally-qualified # 🤵🏼‍♂ E13.0 man in tuxedo: medium-light skin tone 1F935 1F3FD 200D 2642 FE0F ; fully-qualified # 🤵🏽‍♂️ E13.0 man in tuxedo: medium skin tone 1F935 1F3FD 200D 2642 ; minimally-qualified # 🤵🏽‍♂ E13.0 man in tuxedo: medium skin tone 1F935 1F3FE 200D 2642 FE0F ; fully-qualified # 🤵🏾‍♂️ E13.0 man in tuxedo: medium-dark skin tone 1F935 1F3FE 200D 2642 ; minimally-qualified # 🤵🏾‍♂ E13.0 man in tuxedo: medium-dark skin tone 1F935 1F3FF 200D 2642 FE0F ; fully-qualified # 🤵🏿‍♂️ E13.0 man in tuxedo: dark skin tone 1F935 1F3FF 200D 2642 ; minimally-qualified # 🤵🏿‍♂ E13.0 man in tuxedo: dark skin tone 1F935 200D 2640 FE0F ; fully-qualified # 🤵‍♀️ E13.0 woman in tuxedo 1F935 200D 2640 ; minimally-qualified # 🤵‍♀ E13.0 woman in tuxedo 1F935 1F3FB 200D 2640 FE0F ; fully-qualified # 🤵🏻‍♀️ E13.0 woman in tuxedo: light skin tone 1F935 1F3FB 200D 2640 ; minimally-qualified # 🤵🏻‍♀ E13.0 woman in tuxedo: light skin tone 1F935 1F3FC 200D 2640 FE0F ; fully-qualified # 🤵🏼‍♀️ E13.0 woman in tuxedo: medium-light skin tone 1F935 1F3FC 200D 2640 ; minimally-qualified # 🤵🏼‍♀ E13.0 woman in tuxedo: medium-light skin tone 1F935 1F3FD 200D 2640 FE0F ; fully-qualified # 🤵🏽‍♀️ E13.0 woman in tuxedo: medium skin tone 1F935 1F3FD 200D 2640 ; minimally-qualified # 🤵🏽‍♀ E13.0 woman in tuxedo: medium skin tone 1F935 1F3FE 200D 2640 FE0F ; fully-qualified # 🤵🏾‍♀️ E13.0 woman in tuxedo: medium-dark skin tone 1F935 1F3FE 200D 2640 ; minimally-qualified # 🤵🏾‍♀ E13.0 woman in tuxedo: medium-dark skin tone 1F935 1F3FF 200D 2640 FE0F ; fully-qualified # 🤵🏿‍♀️ E13.0 woman in tuxedo: dark skin tone 1F935 1F3FF 200D 2640 ; minimally-qualified # 🤵🏿‍♀ E13.0 woman in tuxedo: dark skin tone 1F470 ; fully-qualified # 👰 E0.6 person with veil 1F470 1F3FB ; fully-qualified # 👰🏻 E1.0 person with veil: light skin tone 1F470 1F3FC ; fully-qualified # 👰🏼 E1.0 person with veil: medium-light skin tone 1F470 1F3FD ; fully-qualified # 👰🏽 E1.0 person with veil: medium skin tone 1F470 1F3FE ; fully-qualified # 👰🏾 E1.0 person with veil: medium-dark skin tone 1F470 1F3FF ; fully-qualified # 👰🏿 E1.0 person with veil: dark skin tone 1F470 200D 2642 FE0F ; fully-qualified # 👰‍♂️ E13.0 man with veil 1F470 200D 2642 ; minimally-qualified # 👰‍♂ E13.0 man with veil 1F470 1F3FB 200D 2642 FE0F ; fully-qualified # 👰🏻‍♂️ E13.0 man with veil: light skin tone 1F470 1F3FB 200D 2642 ; minimally-qualified # 👰🏻‍♂ E13.0 man with veil: light skin tone 1F470 1F3FC 200D 2642 FE0F ; fully-qualified # 👰🏼‍♂️ E13.0 man with veil: medium-light skin tone 1F470 1F3FC 200D 2642 ; minimally-qualified # 👰🏼‍♂ E13.0 man with veil: medium-light skin tone 1F470 1F3FD 200D 2642 FE0F ; fully-qualified # 👰🏽‍♂️ E13.0 man with veil: medium skin tone 1F470 1F3FD 200D 2642 ; minimally-qualified # 👰🏽‍♂ E13.0 man with veil: medium skin tone 1F470 1F3FE 200D 2642 FE0F ; fully-qualified # 👰🏾‍♂️ E13.0 man with veil: medium-dark skin tone 1F470 1F3FE 200D 2642 ; minimally-qualified # 👰🏾‍♂ E13.0 man with veil: medium-dark skin tone 1F470 1F3FF 200D 2642 FE0F ; fully-qualified # 👰🏿‍♂️ E13.0 man with veil: dark skin tone 1F470 1F3FF 200D 2642 ; minimally-qualified # 👰🏿‍♂ E13.0 man with veil: dark skin tone 1F470 200D 2640 FE0F ; fully-qualified # 👰‍♀️ E13.0 woman with veil 1F470 200D 2640 ; minimally-qualified # 👰‍♀ E13.0 woman with veil 1F470 1F3FB 200D 2640 FE0F ; fully-qualified # 👰🏻‍♀️ E13.0 woman with veil: light skin tone 1F470 1F3FB 200D 2640 ; minimally-qualified # 👰🏻‍♀ E13.0 woman with veil: light skin tone 1F470 1F3FC 200D 2640 FE0F ; fully-qualified # 👰🏼‍♀️ E13.0 woman with veil: medium-light skin tone 1F470 1F3FC 200D 2640 ; minimally-qualified # 👰🏼‍♀ E13.0 woman with veil: medium-light skin tone 1F470 1F3FD 200D 2640 FE0F ; fully-qualified # 👰🏽‍♀️ E13.0 woman with veil: medium skin tone 1F470 1F3FD 200D 2640 ; minimally-qualified # 👰🏽‍♀ E13.0 woman with veil: medium skin tone 1F470 1F3FE 200D 2640 FE0F ; fully-qualified # 👰🏾‍♀️ E13.0 woman with veil: medium-dark skin tone 1F470 1F3FE 200D 2640 ; minimally-qualified # 👰🏾‍♀ E13.0 woman with veil: medium-dark skin tone 1F470 1F3FF 200D 2640 FE0F ; fully-qualified # 👰🏿‍♀️ E13.0 woman with veil: dark skin tone 1F470 1F3FF 200D 2640 ; minimally-qualified # 👰🏿‍♀ E13.0 woman with veil: dark skin tone 1F930 ; fully-qualified # 🤰 E3.0 pregnant woman 1F930 1F3FB ; fully-qualified # 🤰🏻 E3.0 pregnant woman: light skin tone 1F930 1F3FC ; fully-qualified # 🤰🏼 E3.0 pregnant woman: medium-light skin tone 1F930 1F3FD ; fully-qualified # 🤰🏽 E3.0 pregnant woman: medium skin tone 1F930 1F3FE ; fully-qualified # 🤰🏾 E3.0 pregnant woman: medium-dark skin tone 1F930 1F3FF ; fully-qualified # 🤰🏿 E3.0 pregnant woman: dark skin tone 1F931 ; fully-qualified # 🤱 E5.0 breast-feeding 1F931 1F3FB ; fully-qualified # 🤱🏻 E5.0 breast-feeding: light skin tone 1F931 1F3FC ; fully-qualified # 🤱🏼 E5.0 breast-feeding: medium-light skin tone 1F931 1F3FD ; fully-qualified # 🤱🏽 E5.0 breast-feeding: medium skin tone 1F931 1F3FE ; fully-qualified # 🤱🏾 E5.0 breast-feeding: medium-dark skin tone 1F931 1F3FF ; fully-qualified # 🤱🏿 E5.0 breast-feeding: dark skin tone 1F469 200D 1F37C ; fully-qualified # 👩‍🍼 E13.0 woman feeding baby 1F469 1F3FB 200D 1F37C ; fully-qualified # 👩🏻‍🍼 E13.0 woman feeding baby: light skin tone 1F469 1F3FC 200D 1F37C ; fully-qualified # 👩🏼‍🍼 E13.0 woman feeding baby: medium-light skin tone 1F469 1F3FD 200D 1F37C ; fully-qualified # 👩🏽‍🍼 E13.0 woman feeding baby: medium skin tone 1F469 1F3FE 200D 1F37C ; fully-qualified # 👩🏾‍🍼 E13.0 woman feeding baby: medium-dark skin tone 1F469 1F3FF 200D 1F37C ; fully-qualified # 👩🏿‍🍼 E13.0 woman feeding baby: dark skin tone 1F468 200D 1F37C ; fully-qualified # 👨‍🍼 E13.0 man feeding baby 1F468 1F3FB 200D 1F37C ; fully-qualified # 👨🏻‍🍼 E13.0 man feeding baby: light skin tone 1F468 1F3FC 200D 1F37C ; fully-qualified # 👨🏼‍🍼 E13.0 man feeding baby: medium-light skin tone 1F468 1F3FD 200D 1F37C ; fully-qualified # 👨🏽‍🍼 E13.0 man feeding baby: medium skin tone 1F468 1F3FE 200D 1F37C ; fully-qualified # 👨🏾‍🍼 E13.0 man feeding baby: medium-dark skin tone 1F468 1F3FF 200D 1F37C ; fully-qualified # 👨🏿‍🍼 E13.0 man feeding baby: dark skin tone 1F9D1 200D 1F37C ; fully-qualified # 🧑‍🍼 E13.0 person feeding baby 1F9D1 1F3FB 200D 1F37C ; fully-qualified # 🧑🏻‍🍼 E13.0 person feeding baby: light skin tone 1F9D1 1F3FC 200D 1F37C ; fully-qualified # 🧑🏼‍🍼 E13.0 person feeding baby: medium-light skin tone 1F9D1 1F3FD 200D 1F37C ; fully-qualified # 🧑🏽‍🍼 E13.0 person feeding baby: medium skin tone 1F9D1 1F3FE 200D 1F37C ; fully-qualified # 🧑🏾‍🍼 E13.0 person feeding baby: medium-dark skin tone 1F9D1 1F3FF 200D 1F37C ; fully-qualified # 🧑🏿‍🍼 E13.0 person feeding baby: dark skin tone # subgroup: person-fantasy 1F47C ; fully-qualified # 👼 E0.6 baby angel 1F47C 1F3FB ; fully-qualified # 👼🏻 E1.0 baby angel: light skin tone 1F47C 1F3FC ; fully-qualified # 👼🏼 E1.0 baby angel: medium-light skin tone 1F47C 1F3FD ; fully-qualified # 👼🏽 E1.0 baby angel: medium skin tone 1F47C 1F3FE ; fully-qualified # 👼🏾 E1.0 baby angel: medium-dark skin tone 1F47C 1F3FF ; fully-qualified # 👼🏿 E1.0 baby angel: dark skin tone 1F385 ; fully-qualified # 🎅 E0.6 Santa Claus 1F385 1F3FB ; fully-qualified # 🎅🏻 E1.0 Santa Claus: light skin tone 1F385 1F3FC ; fully-qualified # 🎅🏼 E1.0 Santa Claus: medium-light skin tone 1F385 1F3FD ; fully-qualified # 🎅🏽 E1.0 Santa Claus: medium skin tone 1F385 1F3FE ; fully-qualified # 🎅🏾 E1.0 Santa Claus: medium-dark skin tone 1F385 1F3FF ; fully-qualified # 🎅🏿 E1.0 Santa Claus: dark skin tone 1F936 ; fully-qualified # 🤶 E3.0 Mrs. Claus 1F936 1F3FB ; fully-qualified # 🤶🏻 E3.0 Mrs. Claus: light skin tone 1F936 1F3FC ; fully-qualified # 🤶🏼 E3.0 Mrs. Claus: medium-light skin tone 1F936 1F3FD ; fully-qualified # 🤶🏽 E3.0 Mrs. Claus: medium skin tone 1F936 1F3FE ; fully-qualified # 🤶🏾 E3.0 Mrs. Claus: medium-dark skin tone 1F936 1F3FF ; fully-qualified # 🤶🏿 E3.0 Mrs. Claus: dark skin tone 1F9D1 200D 1F384 ; fully-qualified # 🧑‍🎄 E13.0 mx claus 1F9D1 1F3FB 200D 1F384 ; fully-qualified # 🧑🏻‍🎄 E13.0 mx claus: light skin tone 1F9D1 1F3FC 200D 1F384 ; fully-qualified # 🧑🏼‍🎄 E13.0 mx claus: medium-light skin tone 1F9D1 1F3FD 200D 1F384 ; fully-qualified # 🧑🏽‍🎄 E13.0 mx claus: medium skin tone 1F9D1 1F3FE 200D 1F384 ; fully-qualified # 🧑🏾‍🎄 E13.0 mx claus: medium-dark skin tone 1F9D1 1F3FF 200D 1F384 ; fully-qualified # 🧑🏿‍🎄 E13.0 mx claus: dark skin tone 1F9B8 ; fully-qualified # 🦸 E11.0 superhero 1F9B8 1F3FB ; fully-qualified # 🦸🏻 E11.0 superhero: light skin tone 1F9B8 1F3FC ; fully-qualified # 🦸🏼 E11.0 superhero: medium-light skin tone 1F9B8 1F3FD ; fully-qualified # 🦸🏽 E11.0 superhero: medium skin tone 1F9B8 1F3FE ; fully-qualified # 🦸🏾 E11.0 superhero: medium-dark skin tone 1F9B8 1F3FF ; fully-qualified # 🦸🏿 E11.0 superhero: dark skin tone 1F9B8 200D 2642 FE0F ; fully-qualified # 🦸‍♂️ E11.0 man superhero 1F9B8 200D 2642 ; minimally-qualified # 🦸‍♂ E11.0 man superhero 1F9B8 1F3FB 200D 2642 FE0F ; fully-qualified # 🦸🏻‍♂️ E11.0 man superhero: light skin tone 1F9B8 1F3FB 200D 2642 ; minimally-qualified # 🦸🏻‍♂ E11.0 man superhero: light skin tone 1F9B8 1F3FC 200D 2642 FE0F ; fully-qualified # 🦸🏼‍♂️ E11.0 man superhero: medium-light skin tone 1F9B8 1F3FC 200D 2642 ; minimally-qualified # 🦸🏼‍♂ E11.0 man superhero: medium-light skin tone 1F9B8 1F3FD 200D 2642 FE0F ; fully-qualified # 🦸🏽‍♂️ E11.0 man superhero: medium skin tone 1F9B8 1F3FD 200D 2642 ; minimally-qualified # 🦸🏽‍♂ E11.0 man superhero: medium skin tone 1F9B8 1F3FE 200D 2642 FE0F ; fully-qualified # 🦸🏾‍♂️ E11.0 man superhero: medium-dark skin tone 1F9B8 1F3FE 200D 2642 ; minimally-qualified # 🦸🏾‍♂ E11.0 man superhero: medium-dark skin tone 1F9B8 1F3FF 200D 2642 FE0F ; fully-qualified # 🦸🏿‍♂️ E11.0 man superhero: dark skin tone 1F9B8 1F3FF 200D 2642 ; minimally-qualified # 🦸🏿‍♂ E11.0 man superhero: dark skin tone 1F9B8 200D 2640 FE0F ; fully-qualified # 🦸‍♀️ E11.0 woman superhero 1F9B8 200D 2640 ; minimally-qualified # 🦸‍♀ E11.0 woman superhero 1F9B8 1F3FB 200D 2640 FE0F ; fully-qualified # 🦸🏻‍♀️ E11.0 woman superhero: light skin tone 1F9B8 1F3FB 200D 2640 ; minimally-qualified # 🦸🏻‍♀ E11.0 woman superhero: light skin tone 1F9B8 1F3FC 200D 2640 FE0F ; fully-qualified # 🦸🏼‍♀️ E11.0 woman superhero: medium-light skin tone 1F9B8 1F3FC 200D 2640 ; minimally-qualified # 🦸🏼‍♀ E11.0 woman superhero: medium-light skin tone 1F9B8 1F3FD 200D 2640 FE0F ; fully-qualified # 🦸🏽‍♀️ E11.0 woman superhero: medium skin tone 1F9B8 1F3FD 200D 2640 ; minimally-qualified # 🦸🏽‍♀ E11.0 woman superhero: medium skin tone 1F9B8 1F3FE 200D 2640 FE0F ; fully-qualified # 🦸🏾‍♀️ E11.0 woman superhero: medium-dark skin tone 1F9B8 1F3FE 200D 2640 ; minimally-qualified # 🦸🏾‍♀ E11.0 woman superhero: medium-dark skin tone 1F9B8 1F3FF 200D 2640 FE0F ; fully-qualified # 🦸🏿‍♀️ E11.0 woman superhero: dark skin tone 1F9B8 1F3FF 200D 2640 ; minimally-qualified # 🦸🏿‍♀ E11.0 woman superhero: dark skin tone 1F9B9 ; fully-qualified # 🦹 E11.0 supervillain 1F9B9 1F3FB ; fully-qualified # 🦹🏻 E11.0 supervillain: light skin tone 1F9B9 1F3FC ; fully-qualified # 🦹🏼 E11.0 supervillain: medium-light skin tone 1F9B9 1F3FD ; fully-qualified # 🦹🏽 E11.0 supervillain: medium skin tone 1F9B9 1F3FE ; fully-qualified # 🦹🏾 E11.0 supervillain: medium-dark skin tone 1F9B9 1F3FF ; fully-qualified # 🦹🏿 E11.0 supervillain: dark skin tone 1F9B9 200D 2642 FE0F ; fully-qualified # 🦹‍♂️ E11.0 man supervillain 1F9B9 200D 2642 ; minimally-qualified # 🦹‍♂ E11.0 man supervillain 1F9B9 1F3FB 200D 2642 FE0F ; fully-qualified # 🦹🏻‍♂️ E11.0 man supervillain: light skin tone 1F9B9 1F3FB 200D 2642 ; minimally-qualified # 🦹🏻‍♂ E11.0 man supervillain: light skin tone 1F9B9 1F3FC 200D 2642 FE0F ; fully-qualified # 🦹🏼‍♂️ E11.0 man supervillain: medium-light skin tone 1F9B9 1F3FC 200D 2642 ; minimally-qualified # 🦹🏼‍♂ E11.0 man supervillain: medium-light skin tone 1F9B9 1F3FD 200D 2642 FE0F ; fully-qualified # 🦹🏽‍♂️ E11.0 man supervillain: medium skin tone 1F9B9 1F3FD 200D 2642 ; minimally-qualified # 🦹🏽‍♂ E11.0 man supervillain: medium skin tone 1F9B9 1F3FE 200D 2642 FE0F ; fully-qualified # 🦹🏾‍♂️ E11.0 man supervillain: medium-dark skin tone 1F9B9 1F3FE 200D 2642 ; minimally-qualified # 🦹🏾‍♂ E11.0 man supervillain: medium-dark skin tone 1F9B9 1F3FF 200D 2642 FE0F ; fully-qualified # 🦹🏿‍♂️ E11.0 man supervillain: dark skin tone 1F9B9 1F3FF 200D 2642 ; minimally-qualified # 🦹🏿‍♂ E11.0 man supervillain: dark skin tone 1F9B9 200D 2640 FE0F ; fully-qualified # 🦹‍♀️ E11.0 woman supervillain 1F9B9 200D 2640 ; minimally-qualified # 🦹‍♀ E11.0 woman supervillain 1F9B9 1F3FB 200D 2640 FE0F ; fully-qualified # 🦹🏻‍♀️ E11.0 woman supervillain: light skin tone 1F9B9 1F3FB 200D 2640 ; minimally-qualified # 🦹🏻‍♀ E11.0 woman supervillain: light skin tone 1F9B9 1F3FC 200D 2640 FE0F ; fully-qualified # 🦹🏼‍♀️ E11.0 woman supervillain: medium-light skin tone 1F9B9 1F3FC 200D 2640 ; minimally-qualified # 🦹🏼‍♀ E11.0 woman supervillain: medium-light skin tone 1F9B9 1F3FD 200D 2640 FE0F ; fully-qualified # 🦹🏽‍♀️ E11.0 woman supervillain: medium skin tone 1F9B9 1F3FD 200D 2640 ; minimally-qualified # 🦹🏽‍♀ E11.0 woman supervillain: medium skin tone 1F9B9 1F3FE 200D 2640 FE0F ; fully-qualified # 🦹🏾‍♀️ E11.0 woman supervillain: medium-dark skin tone 1F9B9 1F3FE 200D 2640 ; minimally-qualified # 🦹🏾‍♀ E11.0 woman supervillain: medium-dark skin tone 1F9B9 1F3FF 200D 2640 FE0F ; fully-qualified # 🦹🏿‍♀️ E11.0 woman supervillain: dark skin tone 1F9B9 1F3FF 200D 2640 ; minimally-qualified # 🦹🏿‍♀ E11.0 woman supervillain: dark skin tone 1F9D9 ; fully-qualified # 🧙 E5.0 mage 1F9D9 1F3FB ; fully-qualified # 🧙🏻 E5.0 mage: light skin tone 1F9D9 1F3FC ; fully-qualified # 🧙🏼 E5.0 mage: medium-light skin tone 1F9D9 1F3FD ; fully-qualified # 🧙🏽 E5.0 mage: medium skin tone 1F9D9 1F3FE ; fully-qualified # 🧙🏾 E5.0 mage: medium-dark skin tone 1F9D9 1F3FF ; fully-qualified # 🧙🏿 E5.0 mage: dark skin tone 1F9D9 200D 2642 FE0F ; fully-qualified # 🧙‍♂️ E5.0 man mage 1F9D9 200D 2642 ; minimally-qualified # 🧙‍♂ E5.0 man mage 1F9D9 1F3FB 200D 2642 FE0F ; fully-qualified # 🧙🏻‍♂️ E5.0 man mage: light skin tone 1F9D9 1F3FB 200D 2642 ; minimally-qualified # 🧙🏻‍♂ E5.0 man mage: light skin tone 1F9D9 1F3FC 200D 2642 FE0F ; fully-qualified # 🧙🏼‍♂️ E5.0 man mage: medium-light skin tone 1F9D9 1F3FC 200D 2642 ; minimally-qualified # 🧙🏼‍♂ E5.0 man mage: medium-light skin tone 1F9D9 1F3FD 200D 2642 FE0F ; fully-qualified # 🧙🏽‍♂️ E5.0 man mage: medium skin tone 1F9D9 1F3FD 200D 2642 ; minimally-qualified # 🧙🏽‍♂ E5.0 man mage: medium skin tone 1F9D9 1F3FE 200D 2642 FE0F ; fully-qualified # 🧙🏾‍♂️ E5.0 man mage: medium-dark skin tone 1F9D9 1F3FE 200D 2642 ; minimally-qualified # 🧙🏾‍♂ E5.0 man mage: medium-dark skin tone 1F9D9 1F3FF 200D 2642 FE0F ; fully-qualified # 🧙🏿‍♂️ E5.0 man mage: dark skin tone 1F9D9 1F3FF 200D 2642 ; minimally-qualified # 🧙🏿‍♂ E5.0 man mage: dark skin tone 1F9D9 200D 2640 FE0F ; fully-qualified # 🧙‍♀️ E5.0 woman mage 1F9D9 200D 2640 ; minimally-qualified # 🧙‍♀ E5.0 woman mage 1F9D9 1F3FB 200D 2640 FE0F ; fully-qualified # 🧙🏻‍♀️ E5.0 woman mage: light skin tone 1F9D9 1F3FB 200D 2640 ; minimally-qualified # 🧙🏻‍♀ E5.0 woman mage: light skin tone 1F9D9 1F3FC 200D 2640 FE0F ; fully-qualified # 🧙🏼‍♀️ E5.0 woman mage: medium-light skin tone 1F9D9 1F3FC 200D 2640 ; minimally-qualified # 🧙🏼‍♀ E5.0 woman mage: medium-light skin tone 1F9D9 1F3FD 200D 2640 FE0F ; fully-qualified # 🧙🏽‍♀️ E5.0 woman mage: medium skin tone 1F9D9 1F3FD 200D 2640 ; minimally-qualified # 🧙🏽‍♀ E5.0 woman mage: medium skin tone 1F9D9 1F3FE 200D 2640 FE0F ; fully-qualified # 🧙🏾‍♀️ E5.0 woman mage: medium-dark skin tone 1F9D9 1F3FE 200D 2640 ; minimally-qualified # 🧙🏾‍♀ E5.0 woman mage: medium-dark skin tone 1F9D9 1F3FF 200D 2640 FE0F ; fully-qualified # 🧙🏿‍♀️ E5.0 woman mage: dark skin tone 1F9D9 1F3FF 200D 2640 ; minimally-qualified # 🧙🏿‍♀ E5.0 woman mage: dark skin tone 1F9DA ; fully-qualified # 🧚 E5.0 fairy 1F9DA 1F3FB ; fully-qualified # 🧚🏻 E5.0 fairy: light skin tone 1F9DA 1F3FC ; fully-qualified # 🧚🏼 E5.0 fairy: medium-light skin tone 1F9DA 1F3FD ; fully-qualified # 🧚🏽 E5.0 fairy: medium skin tone 1F9DA 1F3FE ; fully-qualified # 🧚🏾 E5.0 fairy: medium-dark skin tone 1F9DA 1F3FF ; fully-qualified # 🧚🏿 E5.0 fairy: dark skin tone 1F9DA 200D 2642 FE0F ; fully-qualified # 🧚‍♂️ E5.0 man fairy 1F9DA 200D 2642 ; minimally-qualified # 🧚‍♂ E5.0 man fairy 1F9DA 1F3FB 200D 2642 FE0F ; fully-qualified # 🧚🏻‍♂️ E5.0 man fairy: light skin tone 1F9DA 1F3FB 200D 2642 ; minimally-qualified # 🧚🏻‍♂ E5.0 man fairy: light skin tone 1F9DA 1F3FC 200D 2642 FE0F ; fully-qualified # 🧚🏼‍♂️ E5.0 man fairy: medium-light skin tone 1F9DA 1F3FC 200D 2642 ; minimally-qualified # 🧚🏼‍♂ E5.0 man fairy: medium-light skin tone 1F9DA 1F3FD 200D 2642 FE0F ; fully-qualified # 🧚🏽‍♂️ E5.0 man fairy: medium skin tone 1F9DA 1F3FD 200D 2642 ; minimally-qualified # 🧚🏽‍♂ E5.0 man fairy: medium skin tone 1F9DA 1F3FE 200D 2642 FE0F ; fully-qualified # 🧚🏾‍♂️ E5.0 man fairy: medium-dark skin tone 1F9DA 1F3FE 200D 2642 ; minimally-qualified # 🧚🏾‍♂ E5.0 man fairy: medium-dark skin tone 1F9DA 1F3FF 200D 2642 FE0F ; fully-qualified # 🧚🏿‍♂️ E5.0 man fairy: dark skin tone 1F9DA 1F3FF 200D 2642 ; minimally-qualified # 🧚🏿‍♂ E5.0 man fairy: dark skin tone 1F9DA 200D 2640 FE0F ; fully-qualified # 🧚‍♀️ E5.0 woman fairy 1F9DA 200D 2640 ; minimally-qualified # 🧚‍♀ E5.0 woman fairy 1F9DA 1F3FB 200D 2640 FE0F ; fully-qualified # 🧚🏻‍♀️ E5.0 woman fairy: light skin tone 1F9DA 1F3FB 200D 2640 ; minimally-qualified # 🧚🏻‍♀ E5.0 woman fairy: light skin tone 1F9DA 1F3FC 200D 2640 FE0F ; fully-qualified # 🧚🏼‍♀️ E5.0 woman fairy: medium-light skin tone 1F9DA 1F3FC 200D 2640 ; minimally-qualified # 🧚🏼‍♀ E5.0 woman fairy: medium-light skin tone 1F9DA 1F3FD 200D 2640 FE0F ; fully-qualified # 🧚🏽‍♀️ E5.0 woman fairy: medium skin tone 1F9DA 1F3FD 200D 2640 ; minimally-qualified # 🧚🏽‍♀ E5.0 woman fairy: medium skin tone 1F9DA 1F3FE 200D 2640 FE0F ; fully-qualified # 🧚🏾‍♀️ E5.0 woman fairy: medium-dark skin tone 1F9DA 1F3FE 200D 2640 ; minimally-qualified # 🧚🏾‍♀ E5.0 woman fairy: medium-dark skin tone 1F9DA 1F3FF 200D 2640 FE0F ; fully-qualified # 🧚🏿‍♀️ E5.0 woman fairy: dark skin tone 1F9DA 1F3FF 200D 2640 ; minimally-qualified # 🧚🏿‍♀ E5.0 woman fairy: dark skin tone 1F9DB ; fully-qualified # 🧛 E5.0 vampire 1F9DB 1F3FB ; fully-qualified # 🧛🏻 E5.0 vampire: light skin tone 1F9DB 1F3FC ; fully-qualified # 🧛🏼 E5.0 vampire: medium-light skin tone 1F9DB 1F3FD ; fully-qualified # 🧛🏽 E5.0 vampire: medium skin tone 1F9DB 1F3FE ; fully-qualified # 🧛🏾 E5.0 vampire: medium-dark skin tone 1F9DB 1F3FF ; fully-qualified # 🧛🏿 E5.0 vampire: dark skin tone 1F9DB 200D 2642 FE0F ; fully-qualified # 🧛‍♂️ E5.0 man vampire 1F9DB 200D 2642 ; minimally-qualified # 🧛‍♂ E5.0 man vampire 1F9DB 1F3FB 200D 2642 FE0F ; fully-qualified # 🧛🏻‍♂️ E5.0 man vampire: light skin tone 1F9DB 1F3FB 200D 2642 ; minimally-qualified # 🧛🏻‍♂ E5.0 man vampire: light skin tone 1F9DB 1F3FC 200D 2642 FE0F ; fully-qualified # 🧛🏼‍♂️ E5.0 man vampire: medium-light skin tone 1F9DB 1F3FC 200D 2642 ; minimally-qualified # 🧛🏼‍♂ E5.0 man vampire: medium-light skin tone 1F9DB 1F3FD 200D 2642 FE0F ; fully-qualified # 🧛🏽‍♂️ E5.0 man vampire: medium skin tone 1F9DB 1F3FD 200D 2642 ; minimally-qualified # 🧛🏽‍♂ E5.0 man vampire: medium skin tone 1F9DB 1F3FE 200D 2642 FE0F ; fully-qualified # 🧛🏾‍♂️ E5.0 man vampire: medium-dark skin tone 1F9DB 1F3FE 200D 2642 ; minimally-qualified # 🧛🏾‍♂ E5.0 man vampire: medium-dark skin tone 1F9DB 1F3FF 200D 2642 FE0F ; fully-qualified # 🧛🏿‍♂️ E5.0 man vampire: dark skin tone 1F9DB 1F3FF 200D 2642 ; minimally-qualified # 🧛🏿‍♂ E5.0 man vampire: dark skin tone 1F9DB 200D 2640 FE0F ; fully-qualified # 🧛‍♀️ E5.0 woman vampire 1F9DB 200D 2640 ; minimally-qualified # 🧛‍♀ E5.0 woman vampire 1F9DB 1F3FB 200D 2640 FE0F ; fully-qualified # 🧛🏻‍♀️ E5.0 woman vampire: light skin tone 1F9DB 1F3FB 200D 2640 ; minimally-qualified # 🧛🏻‍♀ E5.0 woman vampire: light skin tone 1F9DB 1F3FC 200D 2640 FE0F ; fully-qualified # 🧛🏼‍♀️ E5.0 woman vampire: medium-light skin tone 1F9DB 1F3FC 200D 2640 ; minimally-qualified # 🧛🏼‍♀ E5.0 woman vampire: medium-light skin tone 1F9DB 1F3FD 200D 2640 FE0F ; fully-qualified # 🧛🏽‍♀️ E5.0 woman vampire: medium skin tone 1F9DB 1F3FD 200D 2640 ; minimally-qualified # 🧛🏽‍♀ E5.0 woman vampire: medium skin tone 1F9DB 1F3FE 200D 2640 FE0F ; fully-qualified # 🧛🏾‍♀️ E5.0 woman vampire: medium-dark skin tone 1F9DB 1F3FE 200D 2640 ; minimally-qualified # 🧛🏾‍♀ E5.0 woman vampire: medium-dark skin tone 1F9DB 1F3FF 200D 2640 FE0F ; fully-qualified # 🧛🏿‍♀️ E5.0 woman vampire: dark skin tone 1F9DB 1F3FF 200D 2640 ; minimally-qualified # 🧛🏿‍♀ E5.0 woman vampire: dark skin tone 1F9DC ; fully-qualified # 🧜 E5.0 merperson 1F9DC 1F3FB ; fully-qualified # 🧜🏻 E5.0 merperson: light skin tone 1F9DC 1F3FC ; fully-qualified # 🧜🏼 E5.0 merperson: medium-light skin tone 1F9DC 1F3FD ; fully-qualified # 🧜🏽 E5.0 merperson: medium skin tone 1F9DC 1F3FE ; fully-qualified # 🧜🏾 E5.0 merperson: medium-dark skin tone 1F9DC 1F3FF ; fully-qualified # 🧜🏿 E5.0 merperson: dark skin tone 1F9DC 200D 2642 FE0F ; fully-qualified # 🧜‍♂️ E5.0 merman 1F9DC 200D 2642 ; minimally-qualified # 🧜‍♂ E5.0 merman 1F9DC 1F3FB 200D 2642 FE0F ; fully-qualified # 🧜🏻‍♂️ E5.0 merman: light skin tone 1F9DC 1F3FB 200D 2642 ; minimally-qualified # 🧜🏻‍♂ E5.0 merman: light skin tone 1F9DC 1F3FC 200D 2642 FE0F ; fully-qualified # 🧜🏼‍♂️ E5.0 merman: medium-light skin tone 1F9DC 1F3FC 200D 2642 ; minimally-qualified # 🧜🏼‍♂ E5.0 merman: medium-light skin tone 1F9DC 1F3FD 200D 2642 FE0F ; fully-qualified # 🧜🏽‍♂️ E5.0 merman: medium skin tone 1F9DC 1F3FD 200D 2642 ; minimally-qualified # 🧜🏽‍♂ E5.0 merman: medium skin tone 1F9DC 1F3FE 200D 2642 FE0F ; fully-qualified # 🧜🏾‍♂️ E5.0 merman: medium-dark skin tone 1F9DC 1F3FE 200D 2642 ; minimally-qualified # 🧜🏾‍♂ E5.0 merman: medium-dark skin tone 1F9DC 1F3FF 200D 2642 FE0F ; fully-qualified # 🧜🏿‍♂️ E5.0 merman: dark skin tone 1F9DC 1F3FF 200D 2642 ; minimally-qualified # 🧜🏿‍♂ E5.0 merman: dark skin tone 1F9DC 200D 2640 FE0F ; fully-qualified # 🧜‍♀️ E5.0 mermaid 1F9DC 200D 2640 ; minimally-qualified # 🧜‍♀ E5.0 mermaid 1F9DC 1F3FB 200D 2640 FE0F ; fully-qualified # 🧜🏻‍♀️ E5.0 mermaid: light skin tone 1F9DC 1F3FB 200D 2640 ; minimally-qualified # 🧜🏻‍♀ E5.0 mermaid: light skin tone 1F9DC 1F3FC 200D 2640 FE0F ; fully-qualified # 🧜🏼‍♀️ E5.0 mermaid: medium-light skin tone 1F9DC 1F3FC 200D 2640 ; minimally-qualified # 🧜🏼‍♀ E5.0 mermaid: medium-light skin tone 1F9DC 1F3FD 200D 2640 FE0F ; fully-qualified # 🧜🏽‍♀️ E5.0 mermaid: medium skin tone 1F9DC 1F3FD 200D 2640 ; minimally-qualified # 🧜🏽‍♀ E5.0 mermaid: medium skin tone 1F9DC 1F3FE 200D 2640 FE0F ; fully-qualified # 🧜🏾‍♀️ E5.0 mermaid: medium-dark skin tone 1F9DC 1F3FE 200D 2640 ; minimally-qualified # 🧜🏾‍♀ E5.0 mermaid: medium-dark skin tone 1F9DC 1F3FF 200D 2640 FE0F ; fully-qualified # 🧜🏿‍♀️ E5.0 mermaid: dark skin tone 1F9DC 1F3FF 200D 2640 ; minimally-qualified # 🧜🏿‍♀ E5.0 mermaid: dark skin tone 1F9DD ; fully-qualified # 🧝 E5.0 elf 1F9DD 1F3FB ; fully-qualified # 🧝🏻 E5.0 elf: light skin tone 1F9DD 1F3FC ; fully-qualified # 🧝🏼 E5.0 elf: medium-light skin tone 1F9DD 1F3FD ; fully-qualified # 🧝🏽 E5.0 elf: medium skin tone 1F9DD 1F3FE ; fully-qualified # 🧝🏾 E5.0 elf: medium-dark skin tone 1F9DD 1F3FF ; fully-qualified # 🧝🏿 E5.0 elf: dark skin tone 1F9DD 200D 2642 FE0F ; fully-qualified # 🧝‍♂️ E5.0 man elf 1F9DD 200D 2642 ; minimally-qualified # 🧝‍♂ E5.0 man elf 1F9DD 1F3FB 200D 2642 FE0F ; fully-qualified # 🧝🏻‍♂️ E5.0 man elf: light skin tone 1F9DD 1F3FB 200D 2642 ; minimally-qualified # 🧝🏻‍♂ E5.0 man elf: light skin tone 1F9DD 1F3FC 200D 2642 FE0F ; fully-qualified # 🧝🏼‍♂️ E5.0 man elf: medium-light skin tone 1F9DD 1F3FC 200D 2642 ; minimally-qualified # 🧝🏼‍♂ E5.0 man elf: medium-light skin tone 1F9DD 1F3FD 200D 2642 FE0F ; fully-qualified # 🧝🏽‍♂️ E5.0 man elf: medium skin tone 1F9DD 1F3FD 200D 2642 ; minimally-qualified # 🧝🏽‍♂ E5.0 man elf: medium skin tone 1F9DD 1F3FE 200D 2642 FE0F ; fully-qualified # 🧝🏾‍♂️ E5.0 man elf: medium-dark skin tone 1F9DD 1F3FE 200D 2642 ; minimally-qualified # 🧝🏾‍♂ E5.0 man elf: medium-dark skin tone 1F9DD 1F3FF 200D 2642 FE0F ; fully-qualified # 🧝🏿‍♂️ E5.0 man elf: dark skin tone 1F9DD 1F3FF 200D 2642 ; minimally-qualified # 🧝🏿‍♂ E5.0 man elf: dark skin tone 1F9DD 200D 2640 FE0F ; fully-qualified # 🧝‍♀️ E5.0 woman elf 1F9DD 200D 2640 ; minimally-qualified # 🧝‍♀ E5.0 woman elf 1F9DD 1F3FB 200D 2640 FE0F ; fully-qualified # 🧝🏻‍♀️ E5.0 woman elf: light skin tone 1F9DD 1F3FB 200D 2640 ; minimally-qualified # 🧝🏻‍♀ E5.0 woman elf: light skin tone 1F9DD 1F3FC 200D 2640 FE0F ; fully-qualified # 🧝🏼‍♀️ E5.0 woman elf: medium-light skin tone 1F9DD 1F3FC 200D 2640 ; minimally-qualified # 🧝🏼‍♀ E5.0 woman elf: medium-light skin tone 1F9DD 1F3FD 200D 2640 FE0F ; fully-qualified # 🧝🏽‍♀️ E5.0 woman elf: medium skin tone 1F9DD 1F3FD 200D 2640 ; minimally-qualified # 🧝🏽‍♀ E5.0 woman elf: medium skin tone 1F9DD 1F3FE 200D 2640 FE0F ; fully-qualified # 🧝🏾‍♀️ E5.0 woman elf: medium-dark skin tone 1F9DD 1F3FE 200D 2640 ; minimally-qualified # 🧝🏾‍♀ E5.0 woman elf: medium-dark skin tone 1F9DD 1F3FF 200D 2640 FE0F ; fully-qualified # 🧝🏿‍♀️ E5.0 woman elf: dark skin tone 1F9DD 1F3FF 200D 2640 ; minimally-qualified # 🧝🏿‍♀ E5.0 woman elf: dark skin tone 1F9DE ; fully-qualified # 🧞 E5.0 genie 1F9DE 200D 2642 FE0F ; fully-qualified # 🧞‍♂️ E5.0 man genie 1F9DE 200D 2642 ; minimally-qualified # 🧞‍♂ E5.0 man genie 1F9DE 200D 2640 FE0F ; fully-qualified # 🧞‍♀️ E5.0 woman genie 1F9DE 200D 2640 ; minimally-qualified # 🧞‍♀ E5.0 woman genie 1F9DF ; fully-qualified # 🧟 E5.0 zombie 1F9DF 200D 2642 FE0F ; fully-qualified # 🧟‍♂️ E5.0 man zombie 1F9DF 200D 2642 ; minimally-qualified # 🧟‍♂ E5.0 man zombie 1F9DF 200D 2640 FE0F ; fully-qualified # 🧟‍♀️ E5.0 woman zombie 1F9DF 200D 2640 ; minimally-qualified # 🧟‍♀ E5.0 woman zombie # subgroup: person-activity 1F486 ; fully-qualified # 💆 E0.6 person getting massage 1F486 1F3FB ; fully-qualified # 💆🏻 E1.0 person getting massage: light skin tone 1F486 1F3FC ; fully-qualified # 💆🏼 E1.0 person getting massage: medium-light skin tone 1F486 1F3FD ; fully-qualified # 💆🏽 E1.0 person getting massage: medium skin tone 1F486 1F3FE ; fully-qualified # 💆🏾 E1.0 person getting massage: medium-dark skin tone 1F486 1F3FF ; fully-qualified # 💆🏿 E1.0 person getting massage: dark skin tone 1F486 200D 2642 FE0F ; fully-qualified # 💆‍♂️ E4.0 man getting massage 1F486 200D 2642 ; minimally-qualified # 💆‍♂ E4.0 man getting massage 1F486 1F3FB 200D 2642 FE0F ; fully-qualified # 💆🏻‍♂️ E4.0 man getting massage: light skin tone 1F486 1F3FB 200D 2642 ; minimally-qualified # 💆🏻‍♂ E4.0 man getting massage: light skin tone 1F486 1F3FC 200D 2642 FE0F ; fully-qualified # 💆🏼‍♂️ E4.0 man getting massage: medium-light skin tone 1F486 1F3FC 200D 2642 ; minimally-qualified # 💆🏼‍♂ E4.0 man getting massage: medium-light skin tone 1F486 1F3FD 200D 2642 FE0F ; fully-qualified # 💆🏽‍♂️ E4.0 man getting massage: medium skin tone 1F486 1F3FD 200D 2642 ; minimally-qualified # 💆🏽‍♂ E4.0 man getting massage: medium skin tone 1F486 1F3FE 200D 2642 FE0F ; fully-qualified # 💆🏾‍♂️ E4.0 man getting massage: medium-dark skin tone 1F486 1F3FE 200D 2642 ; minimally-qualified # 💆🏾‍♂ E4.0 man getting massage: medium-dark skin tone 1F486 1F3FF 200D 2642 FE0F ; fully-qualified # 💆🏿‍♂️ E4.0 man getting massage: dark skin tone 1F486 1F3FF 200D 2642 ; minimally-qualified # 💆🏿‍♂ E4.0 man getting massage: dark skin tone 1F486 200D 2640 FE0F ; fully-qualified # 💆‍♀️ E4.0 woman getting massage 1F486 200D 2640 ; minimally-qualified # 💆‍♀ E4.0 woman getting massage 1F486 1F3FB 200D 2640 FE0F ; fully-qualified # 💆🏻‍♀️ E4.0 woman getting massage: light skin tone 1F486 1F3FB 200D 2640 ; minimally-qualified # 💆🏻‍♀ E4.0 woman getting massage: light skin tone 1F486 1F3FC 200D 2640 FE0F ; fully-qualified # 💆🏼‍♀️ E4.0 woman getting massage: medium-light skin tone 1F486 1F3FC 200D 2640 ; minimally-qualified # 💆🏼‍♀ E4.0 woman getting massage: medium-light skin tone 1F486 1F3FD 200D 2640 FE0F ; fully-qualified # 💆🏽‍♀️ E4.0 woman getting massage: medium skin tone 1F486 1F3FD 200D 2640 ; minimally-qualified # 💆🏽‍♀ E4.0 woman getting massage: medium skin tone 1F486 1F3FE 200D 2640 FE0F ; fully-qualified # 💆🏾‍♀️ E4.0 woman getting massage: medium-dark skin tone 1F486 1F3FE 200D 2640 ; minimally-qualified # 💆🏾‍♀ E4.0 woman getting massage: medium-dark skin tone 1F486 1F3FF 200D 2640 FE0F ; fully-qualified # 💆🏿‍♀️ E4.0 woman getting massage: dark skin tone 1F486 1F3FF 200D 2640 ; minimally-qualified # 💆🏿‍♀ E4.0 woman getting massage: dark skin tone 1F487 ; fully-qualified # 💇 E0.6 person getting haircut 1F487 1F3FB ; fully-qualified # 💇🏻 E1.0 person getting haircut: light skin tone 1F487 1F3FC ; fully-qualified # 💇🏼 E1.0 person getting haircut: medium-light skin tone 1F487 1F3FD ; fully-qualified # 💇🏽 E1.0 person getting haircut: medium skin tone 1F487 1F3FE ; fully-qualified # 💇🏾 E1.0 person getting haircut: medium-dark skin tone 1F487 1F3FF ; fully-qualified # 💇🏿 E1.0 person getting haircut: dark skin tone 1F487 200D 2642 FE0F ; fully-qualified # 💇‍♂️ E4.0 man getting haircut 1F487 200D 2642 ; minimally-qualified # 💇‍♂ E4.0 man getting haircut 1F487 1F3FB 200D 2642 FE0F ; fully-qualified # 💇🏻‍♂️ E4.0 man getting haircut: light skin tone 1F487 1F3FB 200D 2642 ; minimally-qualified # 💇🏻‍♂ E4.0 man getting haircut: light skin tone 1F487 1F3FC 200D 2642 FE0F ; fully-qualified # 💇🏼‍♂️ E4.0 man getting haircut: medium-light skin tone 1F487 1F3FC 200D 2642 ; minimally-qualified # 💇🏼‍♂ E4.0 man getting haircut: medium-light skin tone 1F487 1F3FD 200D 2642 FE0F ; fully-qualified # 💇🏽‍♂️ E4.0 man getting haircut: medium skin tone 1F487 1F3FD 200D 2642 ; minimally-qualified # 💇🏽‍♂ E4.0 man getting haircut: medium skin tone 1F487 1F3FE 200D 2642 FE0F ; fully-qualified # 💇🏾‍♂️ E4.0 man getting haircut: medium-dark skin tone 1F487 1F3FE 200D 2642 ; minimally-qualified # 💇🏾‍♂ E4.0 man getting haircut: medium-dark skin tone 1F487 1F3FF 200D 2642 FE0F ; fully-qualified # 💇🏿‍♂️ E4.0 man getting haircut: dark skin tone 1F487 1F3FF 200D 2642 ; minimally-qualified # 💇🏿‍♂ E4.0 man getting haircut: dark skin tone 1F487 200D 2640 FE0F ; fully-qualified # 💇‍♀️ E4.0 woman getting haircut 1F487 200D 2640 ; minimally-qualified # 💇‍♀ E4.0 woman getting haircut 1F487 1F3FB 200D 2640 FE0F ; fully-qualified # 💇🏻‍♀️ E4.0 woman getting haircut: light skin tone 1F487 1F3FB 200D 2640 ; minimally-qualified # 💇🏻‍♀ E4.0 woman getting haircut: light skin tone 1F487 1F3FC 200D 2640 FE0F ; fully-qualified # 💇🏼‍♀️ E4.0 woman getting haircut: medium-light skin tone 1F487 1F3FC 200D 2640 ; minimally-qualified # 💇🏼‍♀ E4.0 woman getting haircut: medium-light skin tone 1F487 1F3FD 200D 2640 FE0F ; fully-qualified # 💇🏽‍♀️ E4.0 woman getting haircut: medium skin tone 1F487 1F3FD 200D 2640 ; minimally-qualified # 💇🏽‍♀ E4.0 woman getting haircut: medium skin tone 1F487 1F3FE 200D 2640 FE0F ; fully-qualified # 💇🏾‍♀️ E4.0 woman getting haircut: medium-dark skin tone 1F487 1F3FE 200D 2640 ; minimally-qualified # 💇🏾‍♀ E4.0 woman getting haircut: medium-dark skin tone 1F487 1F3FF 200D 2640 FE0F ; fully-qualified # 💇🏿‍♀️ E4.0 woman getting haircut: dark skin tone 1F487 1F3FF 200D 2640 ; minimally-qualified # 💇🏿‍♀ E4.0 woman getting haircut: dark skin tone 1F6B6 ; fully-qualified # 🚶 E0.6 person walking 1F6B6 1F3FB ; fully-qualified # 🚶🏻 E1.0 person walking: light skin tone 1F6B6 1F3FC ; fully-qualified # 🚶🏼 E1.0 person walking: medium-light skin tone 1F6B6 1F3FD ; fully-qualified # 🚶🏽 E1.0 person walking: medium skin tone 1F6B6 1F3FE ; fully-qualified # 🚶🏾 E1.0 person walking: medium-dark skin tone 1F6B6 1F3FF ; fully-qualified # 🚶🏿 E1.0 person walking: dark skin tone 1F6B6 200D 2642 FE0F ; fully-qualified # 🚶‍♂️ E4.0 man walking 1F6B6 200D 2642 ; minimally-qualified # 🚶‍♂ E4.0 man walking 1F6B6 1F3FB 200D 2642 FE0F ; fully-qualified # 🚶🏻‍♂️ E4.0 man walking: light skin tone 1F6B6 1F3FB 200D 2642 ; minimally-qualified # 🚶🏻‍♂ E4.0 man walking: light skin tone 1F6B6 1F3FC 200D 2642 FE0F ; fully-qualified # 🚶🏼‍♂️ E4.0 man walking: medium-light skin tone 1F6B6 1F3FC 200D 2642 ; minimally-qualified # 🚶🏼‍♂ E4.0 man walking: medium-light skin tone 1F6B6 1F3FD 200D 2642 FE0F ; fully-qualified # 🚶🏽‍♂️ E4.0 man walking: medium skin tone 1F6B6 1F3FD 200D 2642 ; minimally-qualified # 🚶🏽‍♂ E4.0 man walking: medium skin tone 1F6B6 1F3FE 200D 2642 FE0F ; fully-qualified # 🚶🏾‍♂️ E4.0 man walking: medium-dark skin tone 1F6B6 1F3FE 200D 2642 ; minimally-qualified # 🚶🏾‍♂ E4.0 man walking: medium-dark skin tone 1F6B6 1F3FF 200D 2642 FE0F ; fully-qualified # 🚶🏿‍♂️ E4.0 man walking: dark skin tone 1F6B6 1F3FF 200D 2642 ; minimally-qualified # 🚶🏿‍♂ E4.0 man walking: dark skin tone 1F6B6 200D 2640 FE0F ; fully-qualified # 🚶‍♀️ E4.0 woman walking 1F6B6 200D 2640 ; minimally-qualified # 🚶‍♀ E4.0 woman walking 1F6B6 1F3FB 200D 2640 FE0F ; fully-qualified # 🚶🏻‍♀️ E4.0 woman walking: light skin tone 1F6B6 1F3FB 200D 2640 ; minimally-qualified # 🚶🏻‍♀ E4.0 woman walking: light skin tone 1F6B6 1F3FC 200D 2640 FE0F ; fully-qualified # 🚶🏼‍♀️ E4.0 woman walking: medium-light skin tone 1F6B6 1F3FC 200D 2640 ; minimally-qualified # 🚶🏼‍♀ E4.0 woman walking: medium-light skin tone 1F6B6 1F3FD 200D 2640 FE0F ; fully-qualified # 🚶🏽‍♀️ E4.0 woman walking: medium skin tone 1F6B6 1F3FD 200D 2640 ; minimally-qualified # 🚶🏽‍♀ E4.0 woman walking: medium skin tone 1F6B6 1F3FE 200D 2640 FE0F ; fully-qualified # 🚶🏾‍♀️ E4.0 woman walking: medium-dark skin tone 1F6B6 1F3FE 200D 2640 ; minimally-qualified # 🚶🏾‍♀ E4.0 woman walking: medium-dark skin tone 1F6B6 1F3FF 200D 2640 FE0F ; fully-qualified # 🚶🏿‍♀️ E4.0 woman walking: dark skin tone 1F6B6 1F3FF 200D 2640 ; minimally-qualified # 🚶🏿‍♀ E4.0 woman walking: dark skin tone 1F9CD ; fully-qualified # 🧍 E12.0 person standing 1F9CD 1F3FB ; fully-qualified # 🧍🏻 E12.0 person standing: light skin tone 1F9CD 1F3FC ; fully-qualified # 🧍🏼 E12.0 person standing: medium-light skin tone 1F9CD 1F3FD ; fully-qualified # 🧍🏽 E12.0 person standing: medium skin tone 1F9CD 1F3FE ; fully-qualified # 🧍🏾 E12.0 person standing: medium-dark skin tone 1F9CD 1F3FF ; fully-qualified # 🧍🏿 E12.0 person standing: dark skin tone 1F9CD 200D 2642 FE0F ; fully-qualified # 🧍‍♂️ E12.0 man standing 1F9CD 200D 2642 ; minimally-qualified # 🧍‍♂ E12.0 man standing 1F9CD 1F3FB 200D 2642 FE0F ; fully-qualified # 🧍🏻‍♂️ E12.0 man standing: light skin tone 1F9CD 1F3FB 200D 2642 ; minimally-qualified # 🧍🏻‍♂ E12.0 man standing: light skin tone 1F9CD 1F3FC 200D 2642 FE0F ; fully-qualified # 🧍🏼‍♂️ E12.0 man standing: medium-light skin tone 1F9CD 1F3FC 200D 2642 ; minimally-qualified # 🧍🏼‍♂ E12.0 man standing: medium-light skin tone 1F9CD 1F3FD 200D 2642 FE0F ; fully-qualified # 🧍🏽‍♂️ E12.0 man standing: medium skin tone 1F9CD 1F3FD 200D 2642 ; minimally-qualified # 🧍🏽‍♂ E12.0 man standing: medium skin tone 1F9CD 1F3FE 200D 2642 FE0F ; fully-qualified # 🧍🏾‍♂️ E12.0 man standing: medium-dark skin tone 1F9CD 1F3FE 200D 2642 ; minimally-qualified # 🧍🏾‍♂ E12.0 man standing: medium-dark skin tone 1F9CD 1F3FF 200D 2642 FE0F ; fully-qualified # 🧍🏿‍♂️ E12.0 man standing: dark skin tone 1F9CD 1F3FF 200D 2642 ; minimally-qualified # 🧍🏿‍♂ E12.0 man standing: dark skin tone 1F9CD 200D 2640 FE0F ; fully-qualified # 🧍‍♀️ E12.0 woman standing 1F9CD 200D 2640 ; minimally-qualified # 🧍‍♀ E12.0 woman standing 1F9CD 1F3FB 200D 2640 FE0F ; fully-qualified # 🧍🏻‍♀️ E12.0 woman standing: light skin tone 1F9CD 1F3FB 200D 2640 ; minimally-qualified # 🧍🏻‍♀ E12.0 woman standing: light skin tone 1F9CD 1F3FC 200D 2640 FE0F ; fully-qualified # 🧍🏼‍♀️ E12.0 woman standing: medium-light skin tone 1F9CD 1F3FC 200D 2640 ; minimally-qualified # 🧍🏼‍♀ E12.0 woman standing: medium-light skin tone 1F9CD 1F3FD 200D 2640 FE0F ; fully-qualified # 🧍🏽‍♀️ E12.0 woman standing: medium skin tone 1F9CD 1F3FD 200D 2640 ; minimally-qualified # 🧍🏽‍♀ E12.0 woman standing: medium skin tone 1F9CD 1F3FE 200D 2640 FE0F ; fully-qualified # 🧍🏾‍♀️ E12.0 woman standing: medium-dark skin tone 1F9CD 1F3FE 200D 2640 ; minimally-qualified # 🧍🏾‍♀ E12.0 woman standing: medium-dark skin tone 1F9CD 1F3FF 200D 2640 FE0F ; fully-qualified # 🧍🏿‍♀️ E12.0 woman standing: dark skin tone 1F9CD 1F3FF 200D 2640 ; minimally-qualified # 🧍🏿‍♀ E12.0 woman standing: dark skin tone 1F9CE ; fully-qualified # 🧎 E12.0 person kneeling 1F9CE 1F3FB ; fully-qualified # 🧎🏻 E12.0 person kneeling: light skin tone 1F9CE 1F3FC ; fully-qualified # 🧎🏼 E12.0 person kneeling: medium-light skin tone 1F9CE 1F3FD ; fully-qualified # 🧎🏽 E12.0 person kneeling: medium skin tone 1F9CE 1F3FE ; fully-qualified # 🧎🏾 E12.0 person kneeling: medium-dark skin tone 1F9CE 1F3FF ; fully-qualified # 🧎🏿 E12.0 person kneeling: dark skin tone 1F9CE 200D 2642 FE0F ; fully-qualified # 🧎‍♂️ E12.0 man kneeling 1F9CE 200D 2642 ; minimally-qualified # 🧎‍♂ E12.0 man kneeling 1F9CE 1F3FB 200D 2642 FE0F ; fully-qualified # 🧎🏻‍♂️ E12.0 man kneeling: light skin tone 1F9CE 1F3FB 200D 2642 ; minimally-qualified # 🧎🏻‍♂ E12.0 man kneeling: light skin tone 1F9CE 1F3FC 200D 2642 FE0F ; fully-qualified # 🧎🏼‍♂️ E12.0 man kneeling: medium-light skin tone 1F9CE 1F3FC 200D 2642 ; minimally-qualified # 🧎🏼‍♂ E12.0 man kneeling: medium-light skin tone 1F9CE 1F3FD 200D 2642 FE0F ; fully-qualified # 🧎🏽‍♂️ E12.0 man kneeling: medium skin tone 1F9CE 1F3FD 200D 2642 ; minimally-qualified # 🧎🏽‍♂ E12.0 man kneeling: medium skin tone 1F9CE 1F3FE 200D 2642 FE0F ; fully-qualified # 🧎🏾‍♂️ E12.0 man kneeling: medium-dark skin tone 1F9CE 1F3FE 200D 2642 ; minimally-qualified # 🧎🏾‍♂ E12.0 man kneeling: medium-dark skin tone 1F9CE 1F3FF 200D 2642 FE0F ; fully-qualified # 🧎🏿‍♂️ E12.0 man kneeling: dark skin tone 1F9CE 1F3FF 200D 2642 ; minimally-qualified # 🧎🏿‍♂ E12.0 man kneeling: dark skin tone 1F9CE 200D 2640 FE0F ; fully-qualified # 🧎‍♀️ E12.0 woman kneeling 1F9CE 200D 2640 ; minimally-qualified # 🧎‍♀ E12.0 woman kneeling 1F9CE 1F3FB 200D 2640 FE0F ; fully-qualified # 🧎🏻‍♀️ E12.0 woman kneeling: light skin tone 1F9CE 1F3FB 200D 2640 ; minimally-qualified # 🧎🏻‍♀ E12.0 woman kneeling: light skin tone 1F9CE 1F3FC 200D 2640 FE0F ; fully-qualified # 🧎🏼‍♀️ E12.0 woman kneeling: medium-light skin tone 1F9CE 1F3FC 200D 2640 ; minimally-qualified # 🧎🏼‍♀ E12.0 woman kneeling: medium-light skin tone 1F9CE 1F3FD 200D 2640 FE0F ; fully-qualified # 🧎🏽‍♀️ E12.0 woman kneeling: medium skin tone 1F9CE 1F3FD 200D 2640 ; minimally-qualified # 🧎🏽‍♀ E12.0 woman kneeling: medium skin tone 1F9CE 1F3FE 200D 2640 FE0F ; fully-qualified # 🧎🏾‍♀️ E12.0 woman kneeling: medium-dark skin tone 1F9CE 1F3FE 200D 2640 ; minimally-qualified # 🧎🏾‍♀ E12.0 woman kneeling: medium-dark skin tone 1F9CE 1F3FF 200D 2640 FE0F ; fully-qualified # 🧎🏿‍♀️ E12.0 woman kneeling: dark skin tone 1F9CE 1F3FF 200D 2640 ; minimally-qualified # 🧎🏿‍♀ E12.0 woman kneeling: dark skin tone 1F9D1 200D 1F9AF ; fully-qualified # 🧑‍🦯 E12.1 person with white cane 1F9D1 1F3FB 200D 1F9AF ; fully-qualified # 🧑🏻‍🦯 E12.1 person with white cane: light skin tone 1F9D1 1F3FC 200D 1F9AF ; fully-qualified # 🧑🏼‍🦯 E12.1 person with white cane: medium-light skin tone 1F9D1 1F3FD 200D 1F9AF ; fully-qualified # 🧑🏽‍🦯 E12.1 person with white cane: medium skin tone 1F9D1 1F3FE 200D 1F9AF ; fully-qualified # 🧑🏾‍🦯 E12.1 person with white cane: medium-dark skin tone 1F9D1 1F3FF 200D 1F9AF ; fully-qualified # 🧑🏿‍🦯 E12.1 person with white cane: dark skin tone 1F468 200D 1F9AF ; fully-qualified # 👨‍🦯 E12.0 man with white cane 1F468 1F3FB 200D 1F9AF ; fully-qualified # 👨🏻‍🦯 E12.0 man with white cane: light skin tone 1F468 1F3FC 200D 1F9AF ; fully-qualified # 👨🏼‍🦯 E12.0 man with white cane: medium-light skin tone 1F468 1F3FD 200D 1F9AF ; fully-qualified # 👨🏽‍🦯 E12.0 man with white cane: medium skin tone 1F468 1F3FE 200D 1F9AF ; fully-qualified # 👨🏾‍🦯 E12.0 man with white cane: medium-dark skin tone 1F468 1F3FF 200D 1F9AF ; fully-qualified # 👨🏿‍🦯 E12.0 man with white cane: dark skin tone 1F469 200D 1F9AF ; fully-qualified # 👩‍🦯 E12.0 woman with white cane 1F469 1F3FB 200D 1F9AF ; fully-qualified # 👩🏻‍🦯 E12.0 woman with white cane: light skin tone 1F469 1F3FC 200D 1F9AF ; fully-qualified # 👩🏼‍🦯 E12.0 woman with white cane: medium-light skin tone 1F469 1F3FD 200D 1F9AF ; fully-qualified # 👩🏽‍🦯 E12.0 woman with white cane: medium skin tone 1F469 1F3FE 200D 1F9AF ; fully-qualified # 👩🏾‍🦯 E12.0 woman with white cane: medium-dark skin tone 1F469 1F3FF 200D 1F9AF ; fully-qualified # 👩🏿‍🦯 E12.0 woman with white cane: dark skin tone 1F9D1 200D 1F9BC ; fully-qualified # 🧑‍🦼 E12.1 person in motorized wheelchair 1F9D1 1F3FB 200D 1F9BC ; fully-qualified # 🧑🏻‍🦼 E12.1 person in motorized wheelchair: light skin tone 1F9D1 1F3FC 200D 1F9BC ; fully-qualified # 🧑🏼‍🦼 E12.1 person in motorized wheelchair: medium-light skin tone 1F9D1 1F3FD 200D 1F9BC ; fully-qualified # 🧑🏽‍🦼 E12.1 person in motorized wheelchair: medium skin tone 1F9D1 1F3FE 200D 1F9BC ; fully-qualified # 🧑🏾‍🦼 E12.1 person in motorized wheelchair: medium-dark skin tone 1F9D1 1F3FF 200D 1F9BC ; fully-qualified # 🧑🏿‍🦼 E12.1 person in motorized wheelchair: dark skin tone 1F468 200D 1F9BC ; fully-qualified # 👨‍🦼 E12.0 man in motorized wheelchair 1F468 1F3FB 200D 1F9BC ; fully-qualified # 👨🏻‍🦼 E12.0 man in motorized wheelchair: light skin tone 1F468 1F3FC 200D 1F9BC ; fully-qualified # 👨🏼‍🦼 E12.0 man in motorized wheelchair: medium-light skin tone 1F468 1F3FD 200D 1F9BC ; fully-qualified # 👨🏽‍🦼 E12.0 man in motorized wheelchair: medium skin tone 1F468 1F3FE 200D 1F9BC ; fully-qualified # 👨🏾‍🦼 E12.0 man in motorized wheelchair: medium-dark skin tone 1F468 1F3FF 200D 1F9BC ; fully-qualified # 👨🏿‍🦼 E12.0 man in motorized wheelchair: dark skin tone 1F469 200D 1F9BC ; fully-qualified # 👩‍🦼 E12.0 woman in motorized wheelchair 1F469 1F3FB 200D 1F9BC ; fully-qualified # 👩🏻‍🦼 E12.0 woman in motorized wheelchair: light skin tone 1F469 1F3FC 200D 1F9BC ; fully-qualified # 👩🏼‍🦼 E12.0 woman in motorized wheelchair: medium-light skin tone 1F469 1F3FD 200D 1F9BC ; fully-qualified # 👩🏽‍🦼 E12.0 woman in motorized wheelchair: medium skin tone 1F469 1F3FE 200D 1F9BC ; fully-qualified # 👩🏾‍🦼 E12.0 woman in motorized wheelchair: medium-dark skin tone 1F469 1F3FF 200D 1F9BC ; fully-qualified # 👩🏿‍🦼 E12.0 woman in motorized wheelchair: dark skin tone 1F9D1 200D 1F9BD ; fully-qualified # 🧑‍🦽 E12.1 person in manual wheelchair 1F9D1 1F3FB 200D 1F9BD ; fully-qualified # 🧑🏻‍🦽 E12.1 person in manual wheelchair: light skin tone 1F9D1 1F3FC 200D 1F9BD ; fully-qualified # 🧑🏼‍🦽 E12.1 person in manual wheelchair: medium-light skin tone 1F9D1 1F3FD 200D 1F9BD ; fully-qualified # 🧑🏽‍🦽 E12.1 person in manual wheelchair: medium skin tone 1F9D1 1F3FE 200D 1F9BD ; fully-qualified # 🧑🏾‍🦽 E12.1 person in manual wheelchair: medium-dark skin tone 1F9D1 1F3FF 200D 1F9BD ; fully-qualified # 🧑🏿‍🦽 E12.1 person in manual wheelchair: dark skin tone 1F468 200D 1F9BD ; fully-qualified # 👨‍🦽 E12.0 man in manual wheelchair 1F468 1F3FB 200D 1F9BD ; fully-qualified # 👨🏻‍🦽 E12.0 man in manual wheelchair: light skin tone 1F468 1F3FC 200D 1F9BD ; fully-qualified # 👨🏼‍🦽 E12.0 man in manual wheelchair: medium-light skin tone 1F468 1F3FD 200D 1F9BD ; fully-qualified # 👨🏽‍🦽 E12.0 man in manual wheelchair: medium skin tone 1F468 1F3FE 200D 1F9BD ; fully-qualified # 👨🏾‍🦽 E12.0 man in manual wheelchair: medium-dark skin tone 1F468 1F3FF 200D 1F9BD ; fully-qualified # 👨🏿‍🦽 E12.0 man in manual wheelchair: dark skin tone 1F469 200D 1F9BD ; fully-qualified # 👩‍🦽 E12.0 woman in manual wheelchair 1F469 1F3FB 200D 1F9BD ; fully-qualified # 👩🏻‍🦽 E12.0 woman in manual wheelchair: light skin tone 1F469 1F3FC 200D 1F9BD ; fully-qualified # 👩🏼‍🦽 E12.0 woman in manual wheelchair: medium-light skin tone 1F469 1F3FD 200D 1F9BD ; fully-qualified # 👩🏽‍🦽 E12.0 woman in manual wheelchair: medium skin tone 1F469 1F3FE 200D 1F9BD ; fully-qualified # 👩🏾‍🦽 E12.0 woman in manual wheelchair: medium-dark skin tone 1F469 1F3FF 200D 1F9BD ; fully-qualified # 👩🏿‍🦽 E12.0 woman in manual wheelchair: dark skin tone 1F3C3 ; fully-qualified # 🏃 E0.6 person running 1F3C3 1F3FB ; fully-qualified # 🏃🏻 E1.0 person running: light skin tone 1F3C3 1F3FC ; fully-qualified # 🏃🏼 E1.0 person running: medium-light skin tone 1F3C3 1F3FD ; fully-qualified # 🏃🏽 E1.0 person running: medium skin tone 1F3C3 1F3FE ; fully-qualified # 🏃🏾 E1.0 person running: medium-dark skin tone 1F3C3 1F3FF ; fully-qualified # 🏃🏿 E1.0 person running: dark skin tone 1F3C3 200D 2642 FE0F ; fully-qualified # 🏃‍♂️ E4.0 man running 1F3C3 200D 2642 ; minimally-qualified # 🏃‍♂ E4.0 man running 1F3C3 1F3FB 200D 2642 FE0F ; fully-qualified # 🏃🏻‍♂️ E4.0 man running: light skin tone 1F3C3 1F3FB 200D 2642 ; minimally-qualified # 🏃🏻‍♂ E4.0 man running: light skin tone 1F3C3 1F3FC 200D 2642 FE0F ; fully-qualified # 🏃🏼‍♂️ E4.0 man running: medium-light skin tone 1F3C3 1F3FC 200D 2642 ; minimally-qualified # 🏃🏼‍♂ E4.0 man running: medium-light skin tone 1F3C3 1F3FD 200D 2642 FE0F ; fully-qualified # 🏃🏽‍♂️ E4.0 man running: medium skin tone 1F3C3 1F3FD 200D 2642 ; minimally-qualified # 🏃🏽‍♂ E4.0 man running: medium skin tone 1F3C3 1F3FE 200D 2642 FE0F ; fully-qualified # 🏃🏾‍♂️ E4.0 man running: medium-dark skin tone 1F3C3 1F3FE 200D 2642 ; minimally-qualified # 🏃🏾‍♂ E4.0 man running: medium-dark skin tone 1F3C3 1F3FF 200D 2642 FE0F ; fully-qualified # 🏃🏿‍♂️ E4.0 man running: dark skin tone 1F3C3 1F3FF 200D 2642 ; minimally-qualified # 🏃🏿‍♂ E4.0 man running: dark skin tone 1F3C3 200D 2640 FE0F ; fully-qualified # 🏃‍♀️ E4.0 woman running 1F3C3 200D 2640 ; minimally-qualified # 🏃‍♀ E4.0 woman running 1F3C3 1F3FB 200D 2640 FE0F ; fully-qualified # 🏃🏻‍♀️ E4.0 woman running: light skin tone 1F3C3 1F3FB 200D 2640 ; minimally-qualified # 🏃🏻‍♀ E4.0 woman running: light skin tone 1F3C3 1F3FC 200D 2640 FE0F ; fully-qualified # 🏃🏼‍♀️ E4.0 woman running: medium-light skin tone 1F3C3 1F3FC 200D 2640 ; minimally-qualified # 🏃🏼‍♀ E4.0 woman running: medium-light skin tone 1F3C3 1F3FD 200D 2640 FE0F ; fully-qualified # 🏃🏽‍♀️ E4.0 woman running: medium skin tone 1F3C3 1F3FD 200D 2640 ; minimally-qualified # 🏃🏽‍♀ E4.0 woman running: medium skin tone 1F3C3 1F3FE 200D 2640 FE0F ; fully-qualified # 🏃🏾‍♀️ E4.0 woman running: medium-dark skin tone 1F3C3 1F3FE 200D 2640 ; minimally-qualified # 🏃🏾‍♀ E4.0 woman running: medium-dark skin tone 1F3C3 1F3FF 200D 2640 FE0F ; fully-qualified # 🏃🏿‍♀️ E4.0 woman running: dark skin tone 1F3C3 1F3FF 200D 2640 ; minimally-qualified # 🏃🏿‍♀ E4.0 woman running: dark skin tone 1F483 ; fully-qualified # 💃 E0.6 woman dancing 1F483 1F3FB ; fully-qualified # 💃🏻 E1.0 woman dancing: light skin tone 1F483 1F3FC ; fully-qualified # 💃🏼 E1.0 woman dancing: medium-light skin tone 1F483 1F3FD ; fully-qualified # 💃🏽 E1.0 woman dancing: medium skin tone 1F483 1F3FE ; fully-qualified # 💃🏾 E1.0 woman dancing: medium-dark skin tone 1F483 1F3FF ; fully-qualified # 💃🏿 E1.0 woman dancing: dark skin tone 1F57A ; fully-qualified # 🕺 E3.0 man dancing 1F57A 1F3FB ; fully-qualified # 🕺🏻 E3.0 man dancing: light skin tone 1F57A 1F3FC ; fully-qualified # 🕺🏼 E3.0 man dancing: medium-light skin tone 1F57A 1F3FD ; fully-qualified # 🕺🏽 E3.0 man dancing: medium skin tone 1F57A 1F3FE ; fully-qualified # 🕺🏾 E3.0 man dancing: medium-dark skin tone 1F57A 1F3FF ; fully-qualified # 🕺🏿 E3.0 man dancing: dark skin tone 1F574 FE0F ; fully-qualified # 🕴️ E0.7 person in suit levitating 1F574 ; unqualified # 🕴 E0.7 person in suit levitating 1F574 1F3FB ; fully-qualified # 🕴🏻 E4.0 person in suit levitating: light skin tone 1F574 1F3FC ; fully-qualified # 🕴🏼 E4.0 person in suit levitating: medium-light skin tone 1F574 1F3FD ; fully-qualified # 🕴🏽 E4.0 person in suit levitating: medium skin tone 1F574 1F3FE ; fully-qualified # 🕴🏾 E4.0 person in suit levitating: medium-dark skin tone 1F574 1F3FF ; fully-qualified # 🕴🏿 E4.0 person in suit levitating: dark skin tone 1F46F ; fully-qualified # 👯 E0.6 people with bunny ears 1F46F 200D 2642 FE0F ; fully-qualified # 👯‍♂️ E4.0 men with bunny ears 1F46F 200D 2642 ; minimally-qualified # 👯‍♂ E4.0 men with bunny ears 1F46F 200D 2640 FE0F ; fully-qualified # 👯‍♀️ E4.0 women with bunny ears 1F46F 200D 2640 ; minimally-qualified # 👯‍♀ E4.0 women with bunny ears 1F9D6 ; fully-qualified # 🧖 E5.0 person in steamy room 1F9D6 1F3FB ; fully-qualified # 🧖🏻 E5.0 person in steamy room: light skin tone 1F9D6 1F3FC ; fully-qualified # 🧖🏼 E5.0 person in steamy room: medium-light skin tone 1F9D6 1F3FD ; fully-qualified # 🧖🏽 E5.0 person in steamy room: medium skin tone 1F9D6 1F3FE ; fully-qualified # 🧖🏾 E5.0 person in steamy room: medium-dark skin tone 1F9D6 1F3FF ; fully-qualified # 🧖🏿 E5.0 person in steamy room: dark skin tone 1F9D6 200D 2642 FE0F ; fully-qualified # 🧖‍♂️ E5.0 man in steamy room 1F9D6 200D 2642 ; minimally-qualified # 🧖‍♂ E5.0 man in steamy room 1F9D6 1F3FB 200D 2642 FE0F ; fully-qualified # 🧖🏻‍♂️ E5.0 man in steamy room: light skin tone 1F9D6 1F3FB 200D 2642 ; minimally-qualified # 🧖🏻‍♂ E5.0 man in steamy room: light skin tone 1F9D6 1F3FC 200D 2642 FE0F ; fully-qualified # 🧖🏼‍♂️ E5.0 man in steamy room: medium-light skin tone 1F9D6 1F3FC 200D 2642 ; minimally-qualified # 🧖🏼‍♂ E5.0 man in steamy room: medium-light skin tone 1F9D6 1F3FD 200D 2642 FE0F ; fully-qualified # 🧖🏽‍♂️ E5.0 man in steamy room: medium skin tone 1F9D6 1F3FD 200D 2642 ; minimally-qualified # 🧖🏽‍♂ E5.0 man in steamy room: medium skin tone 1F9D6 1F3FE 200D 2642 FE0F ; fully-qualified # 🧖🏾‍♂️ E5.0 man in steamy room: medium-dark skin tone 1F9D6 1F3FE 200D 2642 ; minimally-qualified # 🧖🏾‍♂ E5.0 man in steamy room: medium-dark skin tone 1F9D6 1F3FF 200D 2642 FE0F ; fully-qualified # 🧖🏿‍♂️ E5.0 man in steamy room: dark skin tone 1F9D6 1F3FF 200D 2642 ; minimally-qualified # 🧖🏿‍♂ E5.0 man in steamy room: dark skin tone 1F9D6 200D 2640 FE0F ; fully-qualified # 🧖‍♀️ E5.0 woman in steamy room 1F9D6 200D 2640 ; minimally-qualified # 🧖‍♀ E5.0 woman in steamy room 1F9D6 1F3FB 200D 2640 FE0F ; fully-qualified # 🧖🏻‍♀️ E5.0 woman in steamy room: light skin tone 1F9D6 1F3FB 200D 2640 ; minimally-qualified # 🧖🏻‍♀ E5.0 woman in steamy room: light skin tone 1F9D6 1F3FC 200D 2640 FE0F ; fully-qualified # 🧖🏼‍♀️ E5.0 woman in steamy room: medium-light skin tone 1F9D6 1F3FC 200D 2640 ; minimally-qualified # 🧖🏼‍♀ E5.0 woman in steamy room: medium-light skin tone 1F9D6 1F3FD 200D 2640 FE0F ; fully-qualified # 🧖🏽‍♀️ E5.0 woman in steamy room: medium skin tone 1F9D6 1F3FD 200D 2640 ; minimally-qualified # 🧖🏽‍♀ E5.0 woman in steamy room: medium skin tone 1F9D6 1F3FE 200D 2640 FE0F ; fully-qualified # 🧖🏾‍♀️ E5.0 woman in steamy room: medium-dark skin tone 1F9D6 1F3FE 200D 2640 ; minimally-qualified # 🧖🏾‍♀ E5.0 woman in steamy room: medium-dark skin tone 1F9D6 1F3FF 200D 2640 FE0F ; fully-qualified # 🧖🏿‍♀️ E5.0 woman in steamy room: dark skin tone 1F9D6 1F3FF 200D 2640 ; minimally-qualified # 🧖🏿‍♀ E5.0 woman in steamy room: dark skin tone 1F9D7 ; fully-qualified # 🧗 E5.0 person climbing 1F9D7 1F3FB ; fully-qualified # 🧗🏻 E5.0 person climbing: light skin tone 1F9D7 1F3FC ; fully-qualified # 🧗🏼 E5.0 person climbing: medium-light skin tone 1F9D7 1F3FD ; fully-qualified # 🧗🏽 E5.0 person climbing: medium skin tone 1F9D7 1F3FE ; fully-qualified # 🧗🏾 E5.0 person climbing: medium-dark skin tone 1F9D7 1F3FF ; fully-qualified # 🧗🏿 E5.0 person climbing: dark skin tone 1F9D7 200D 2642 FE0F ; fully-qualified # 🧗‍♂️ E5.0 man climbing 1F9D7 200D 2642 ; minimally-qualified # 🧗‍♂ E5.0 man climbing 1F9D7 1F3FB 200D 2642 FE0F ; fully-qualified # 🧗🏻‍♂️ E5.0 man climbing: light skin tone 1F9D7 1F3FB 200D 2642 ; minimally-qualified # 🧗🏻‍♂ E5.0 man climbing: light skin tone 1F9D7 1F3FC 200D 2642 FE0F ; fully-qualified # 🧗🏼‍♂️ E5.0 man climbing: medium-light skin tone 1F9D7 1F3FC 200D 2642 ; minimally-qualified # 🧗🏼‍♂ E5.0 man climbing: medium-light skin tone 1F9D7 1F3FD 200D 2642 FE0F ; fully-qualified # 🧗🏽‍♂️ E5.0 man climbing: medium skin tone 1F9D7 1F3FD 200D 2642 ; minimally-qualified # 🧗🏽‍♂ E5.0 man climbing: medium skin tone 1F9D7 1F3FE 200D 2642 FE0F ; fully-qualified # 🧗🏾‍♂️ E5.0 man climbing: medium-dark skin tone 1F9D7 1F3FE 200D 2642 ; minimally-qualified # 🧗🏾‍♂ E5.0 man climbing: medium-dark skin tone 1F9D7 1F3FF 200D 2642 FE0F ; fully-qualified # 🧗🏿‍♂️ E5.0 man climbing: dark skin tone 1F9D7 1F3FF 200D 2642 ; minimally-qualified # 🧗🏿‍♂ E5.0 man climbing: dark skin tone 1F9D7 200D 2640 FE0F ; fully-qualified # 🧗‍♀️ E5.0 woman climbing 1F9D7 200D 2640 ; minimally-qualified # 🧗‍♀ E5.0 woman climbing 1F9D7 1F3FB 200D 2640 FE0F ; fully-qualified # 🧗🏻‍♀️ E5.0 woman climbing: light skin tone 1F9D7 1F3FB 200D 2640 ; minimally-qualified # 🧗🏻‍♀ E5.0 woman climbing: light skin tone 1F9D7 1F3FC 200D 2640 FE0F ; fully-qualified # 🧗🏼‍♀️ E5.0 woman climbing: medium-light skin tone 1F9D7 1F3FC 200D 2640 ; minimally-qualified # 🧗🏼‍♀ E5.0 woman climbing: medium-light skin tone 1F9D7 1F3FD 200D 2640 FE0F ; fully-qualified # 🧗🏽‍♀️ E5.0 woman climbing: medium skin tone 1F9D7 1F3FD 200D 2640 ; minimally-qualified # 🧗🏽‍♀ E5.0 woman climbing: medium skin tone 1F9D7 1F3FE 200D 2640 FE0F ; fully-qualified # 🧗🏾‍♀️ E5.0 woman climbing: medium-dark skin tone 1F9D7 1F3FE 200D 2640 ; minimally-qualified # 🧗🏾‍♀ E5.0 woman climbing: medium-dark skin tone 1F9D7 1F3FF 200D 2640 FE0F ; fully-qualified # 🧗🏿‍♀️ E5.0 woman climbing: dark skin tone 1F9D7 1F3FF 200D 2640 ; minimally-qualified # 🧗🏿‍♀ E5.0 woman climbing: dark skin tone # subgroup: person-sport 1F93A ; fully-qualified # 🤺 E3.0 person fencing 1F3C7 ; fully-qualified # 🏇 E1.0 horse racing 1F3C7 1F3FB ; fully-qualified # 🏇🏻 E1.0 horse racing: light skin tone 1F3C7 1F3FC ; fully-qualified # 🏇🏼 E1.0 horse racing: medium-light skin tone 1F3C7 1F3FD ; fully-qualified # 🏇🏽 E1.0 horse racing: medium skin tone 1F3C7 1F3FE ; fully-qualified # 🏇🏾 E1.0 horse racing: medium-dark skin tone 1F3C7 1F3FF ; fully-qualified # 🏇🏿 E1.0 horse racing: dark skin tone 26F7 FE0F ; fully-qualified # ⛷️ E0.7 skier 26F7 ; unqualified # ⛷ E0.7 skier 1F3C2 ; fully-qualified # 🏂 E0.6 snowboarder 1F3C2 1F3FB ; fully-qualified # 🏂🏻 E1.0 snowboarder: light skin tone 1F3C2 1F3FC ; fully-qualified # 🏂🏼 E1.0 snowboarder: medium-light skin tone 1F3C2 1F3FD ; fully-qualified # 🏂🏽 E1.0 snowboarder: medium skin tone 1F3C2 1F3FE ; fully-qualified # 🏂🏾 E1.0 snowboarder: medium-dark skin tone 1F3C2 1F3FF ; fully-qualified # 🏂🏿 E1.0 snowboarder: dark skin tone 1F3CC FE0F ; fully-qualified # 🏌️ E0.7 person golfing 1F3CC ; unqualified # 🏌 E0.7 person golfing 1F3CC 1F3FB ; fully-qualified # 🏌🏻 E4.0 person golfing: light skin tone 1F3CC 1F3FC ; fully-qualified # 🏌🏼 E4.0 person golfing: medium-light skin tone 1F3CC 1F3FD ; fully-qualified # 🏌🏽 E4.0 person golfing: medium skin tone 1F3CC 1F3FE ; fully-qualified # 🏌🏾 E4.0 person golfing: medium-dark skin tone 1F3CC 1F3FF ; fully-qualified # 🏌🏿 E4.0 person golfing: dark skin tone 1F3CC FE0F 200D 2642 FE0F ; fully-qualified # 🏌️‍♂️ E4.0 man golfing 1F3CC 200D 2642 FE0F ; unqualified # 🏌‍♂️ E4.0 man golfing 1F3CC FE0F 200D 2642 ; unqualified # 🏌️‍♂ E4.0 man golfing 1F3CC 200D 2642 ; unqualified # 🏌‍♂ E4.0 man golfing 1F3CC 1F3FB 200D 2642 FE0F ; fully-qualified # 🏌🏻‍♂️ E4.0 man golfing: light skin tone 1F3CC 1F3FB 200D 2642 ; minimally-qualified # 🏌🏻‍♂ E4.0 man golfing: light skin tone 1F3CC 1F3FC 200D 2642 FE0F ; fully-qualified # 🏌🏼‍♂️ E4.0 man golfing: medium-light skin tone 1F3CC 1F3FC 200D 2642 ; minimally-qualified # 🏌🏼‍♂ E4.0 man golfing: medium-light skin tone 1F3CC 1F3FD 200D 2642 FE0F ; fully-qualified # 🏌🏽‍♂️ E4.0 man golfing: medium skin tone 1F3CC 1F3FD 200D 2642 ; minimally-qualified # 🏌🏽‍♂ E4.0 man golfing: medium skin tone 1F3CC 1F3FE 200D 2642 FE0F ; fully-qualified # 🏌🏾‍♂️ E4.0 man golfing: medium-dark skin tone 1F3CC 1F3FE 200D 2642 ; minimally-qualified # 🏌🏾‍♂ E4.0 man golfing: medium-dark skin tone 1F3CC 1F3FF 200D 2642 FE0F ; fully-qualified # 🏌🏿‍♂️ E4.0 man golfing: dark skin tone 1F3CC 1F3FF 200D 2642 ; minimally-qualified # 🏌🏿‍♂ E4.0 man golfing: dark skin tone 1F3CC FE0F 200D 2640 FE0F ; fully-qualified # 🏌️‍♀️ E4.0 woman golfing 1F3CC 200D 2640 FE0F ; unqualified # 🏌‍♀️ E4.0 woman golfing 1F3CC FE0F 200D 2640 ; unqualified # 🏌️‍♀ E4.0 woman golfing 1F3CC 200D 2640 ; unqualified # 🏌‍♀ E4.0 woman golfing 1F3CC 1F3FB 200D 2640 FE0F ; fully-qualified # 🏌🏻‍♀️ E4.0 woman golfing: light skin tone 1F3CC 1F3FB 200D 2640 ; minimally-qualified # 🏌🏻‍♀ E4.0 woman golfing: light skin tone 1F3CC 1F3FC 200D 2640 FE0F ; fully-qualified # 🏌🏼‍♀️ E4.0 woman golfing: medium-light skin tone 1F3CC 1F3FC 200D 2640 ; minimally-qualified # 🏌🏼‍♀ E4.0 woman golfing: medium-light skin tone 1F3CC 1F3FD 200D 2640 FE0F ; fully-qualified # 🏌🏽‍♀️ E4.0 woman golfing: medium skin tone 1F3CC 1F3FD 200D 2640 ; minimally-qualified # 🏌🏽‍♀ E4.0 woman golfing: medium skin tone 1F3CC 1F3FE 200D 2640 FE0F ; fully-qualified # 🏌🏾‍♀️ E4.0 woman golfing: medium-dark skin tone 1F3CC 1F3FE 200D 2640 ; minimally-qualified # 🏌🏾‍♀ E4.0 woman golfing: medium-dark skin tone 1F3CC 1F3FF 200D 2640 FE0F ; fully-qualified # 🏌🏿‍♀️ E4.0 woman golfing: dark skin tone 1F3CC 1F3FF 200D 2640 ; minimally-qualified # 🏌🏿‍♀ E4.0 woman golfing: dark skin tone 1F3C4 ; fully-qualified # 🏄 E0.6 person surfing 1F3C4 1F3FB ; fully-qualified # 🏄🏻 E1.0 person surfing: light skin tone 1F3C4 1F3FC ; fully-qualified # 🏄🏼 E1.0 person surfing: medium-light skin tone 1F3C4 1F3FD ; fully-qualified # 🏄🏽 E1.0 person surfing: medium skin tone 1F3C4 1F3FE ; fully-qualified # 🏄🏾 E1.0 person surfing: medium-dark skin tone 1F3C4 1F3FF ; fully-qualified # 🏄🏿 E1.0 person surfing: dark skin tone 1F3C4 200D 2642 FE0F ; fully-qualified # 🏄‍♂️ E4.0 man surfing 1F3C4 200D 2642 ; minimally-qualified # 🏄‍♂ E4.0 man surfing 1F3C4 1F3FB 200D 2642 FE0F ; fully-qualified # 🏄🏻‍♂️ E4.0 man surfing: light skin tone 1F3C4 1F3FB 200D 2642 ; minimally-qualified # 🏄🏻‍♂ E4.0 man surfing: light skin tone 1F3C4 1F3FC 200D 2642 FE0F ; fully-qualified # 🏄🏼‍♂️ E4.0 man surfing: medium-light skin tone 1F3C4 1F3FC 200D 2642 ; minimally-qualified # 🏄🏼‍♂ E4.0 man surfing: medium-light skin tone 1F3C4 1F3FD 200D 2642 FE0F ; fully-qualified # 🏄🏽‍♂️ E4.0 man surfing: medium skin tone 1F3C4 1F3FD 200D 2642 ; minimally-qualified # 🏄🏽‍♂ E4.0 man surfing: medium skin tone 1F3C4 1F3FE 200D 2642 FE0F ; fully-qualified # 🏄🏾‍♂️ E4.0 man surfing: medium-dark skin tone 1F3C4 1F3FE 200D 2642 ; minimally-qualified # 🏄🏾‍♂ E4.0 man surfing: medium-dark skin tone 1F3C4 1F3FF 200D 2642 FE0F ; fully-qualified # 🏄🏿‍♂️ E4.0 man surfing: dark skin tone 1F3C4 1F3FF 200D 2642 ; minimally-qualified # 🏄🏿‍♂ E4.0 man surfing: dark skin tone 1F3C4 200D 2640 FE0F ; fully-qualified # 🏄‍♀️ E4.0 woman surfing 1F3C4 200D 2640 ; minimally-qualified # 🏄‍♀ E4.0 woman surfing 1F3C4 1F3FB 200D 2640 FE0F ; fully-qualified # 🏄🏻‍♀️ E4.0 woman surfing: light skin tone 1F3C4 1F3FB 200D 2640 ; minimally-qualified # 🏄🏻‍♀ E4.0 woman surfing: light skin tone 1F3C4 1F3FC 200D 2640 FE0F ; fully-qualified # 🏄🏼‍♀️ E4.0 woman surfing: medium-light skin tone 1F3C4 1F3FC 200D 2640 ; minimally-qualified # 🏄🏼‍♀ E4.0 woman surfing: medium-light skin tone 1F3C4 1F3FD 200D 2640 FE0F ; fully-qualified # 🏄🏽‍♀️ E4.0 woman surfing: medium skin tone 1F3C4 1F3FD 200D 2640 ; minimally-qualified # 🏄🏽‍♀ E4.0 woman surfing: medium skin tone 1F3C4 1F3FE 200D 2640 FE0F ; fully-qualified # 🏄🏾‍♀️ E4.0 woman surfing: medium-dark skin tone 1F3C4 1F3FE 200D 2640 ; minimally-qualified # 🏄🏾‍♀ E4.0 woman surfing: medium-dark skin tone 1F3C4 1F3FF 200D 2640 FE0F ; fully-qualified # 🏄🏿‍♀️ E4.0 woman surfing: dark skin tone 1F3C4 1F3FF 200D 2640 ; minimally-qualified # 🏄🏿‍♀ E4.0 woman surfing: dark skin tone 1F6A3 ; fully-qualified # 🚣 E1.0 person rowing boat 1F6A3 1F3FB ; fully-qualified # 🚣🏻 E1.0 person rowing boat: light skin tone 1F6A3 1F3FC ; fully-qualified # 🚣🏼 E1.0 person rowing boat: medium-light skin tone 1F6A3 1F3FD ; fully-qualified # 🚣🏽 E1.0 person rowing boat: medium skin tone 1F6A3 1F3FE ; fully-qualified # 🚣🏾 E1.0 person rowing boat: medium-dark skin tone 1F6A3 1F3FF ; fully-qualified # 🚣🏿 E1.0 person rowing boat: dark skin tone 1F6A3 200D 2642 FE0F ; fully-qualified # 🚣‍♂️ E4.0 man rowing boat 1F6A3 200D 2642 ; minimally-qualified # 🚣‍♂ E4.0 man rowing boat 1F6A3 1F3FB 200D 2642 FE0F ; fully-qualified # 🚣🏻‍♂️ E4.0 man rowing boat: light skin tone 1F6A3 1F3FB 200D 2642 ; minimally-qualified # 🚣🏻‍♂ E4.0 man rowing boat: light skin tone 1F6A3 1F3FC 200D 2642 FE0F ; fully-qualified # 🚣🏼‍♂️ E4.0 man rowing boat: medium-light skin tone 1F6A3 1F3FC 200D 2642 ; minimally-qualified # 🚣🏼‍♂ E4.0 man rowing boat: medium-light skin tone 1F6A3 1F3FD 200D 2642 FE0F ; fully-qualified # 🚣🏽‍♂️ E4.0 man rowing boat: medium skin tone 1F6A3 1F3FD 200D 2642 ; minimally-qualified # 🚣🏽‍♂ E4.0 man rowing boat: medium skin tone 1F6A3 1F3FE 200D 2642 FE0F ; fully-qualified # 🚣🏾‍♂️ E4.0 man rowing boat: medium-dark skin tone 1F6A3 1F3FE 200D 2642 ; minimally-qualified # 🚣🏾‍♂ E4.0 man rowing boat: medium-dark skin tone 1F6A3 1F3FF 200D 2642 FE0F ; fully-qualified # 🚣🏿‍♂️ E4.0 man rowing boat: dark skin tone 1F6A3 1F3FF 200D 2642 ; minimally-qualified # 🚣🏿‍♂ E4.0 man rowing boat: dark skin tone 1F6A3 200D 2640 FE0F ; fully-qualified # 🚣‍♀️ E4.0 woman rowing boat 1F6A3 200D 2640 ; minimally-qualified # 🚣‍♀ E4.0 woman rowing boat 1F6A3 1F3FB 200D 2640 FE0F ; fully-qualified # 🚣🏻‍♀️ E4.0 woman rowing boat: light skin tone 1F6A3 1F3FB 200D 2640 ; minimally-qualified # 🚣🏻‍♀ E4.0 woman rowing boat: light skin tone 1F6A3 1F3FC 200D 2640 FE0F ; fully-qualified # 🚣🏼‍♀️ E4.0 woman rowing boat: medium-light skin tone 1F6A3 1F3FC 200D 2640 ; minimally-qualified # 🚣🏼‍♀ E4.0 woman rowing boat: medium-light skin tone 1F6A3 1F3FD 200D 2640 FE0F ; fully-qualified # 🚣🏽‍♀️ E4.0 woman rowing boat: medium skin tone 1F6A3 1F3FD 200D 2640 ; minimally-qualified # 🚣🏽‍♀ E4.0 woman rowing boat: medium skin tone 1F6A3 1F3FE 200D 2640 FE0F ; fully-qualified # 🚣🏾‍♀️ E4.0 woman rowing boat: medium-dark skin tone 1F6A3 1F3FE 200D 2640 ; minimally-qualified # 🚣🏾‍♀ E4.0 woman rowing boat: medium-dark skin tone 1F6A3 1F3FF 200D 2640 FE0F ; fully-qualified # 🚣🏿‍♀️ E4.0 woman rowing boat: dark skin tone 1F6A3 1F3FF 200D 2640 ; minimally-qualified # 🚣🏿‍♀ E4.0 woman rowing boat: dark skin tone 1F3CA ; fully-qualified # 🏊 E0.6 person swimming 1F3CA 1F3FB ; fully-qualified # 🏊🏻 E1.0 person swimming: light skin tone 1F3CA 1F3FC ; fully-qualified # 🏊🏼 E1.0 person swimming: medium-light skin tone 1F3CA 1F3FD ; fully-qualified # 🏊🏽 E1.0 person swimming: medium skin tone 1F3CA 1F3FE ; fully-qualified # 🏊🏾 E1.0 person swimming: medium-dark skin tone 1F3CA 1F3FF ; fully-qualified # 🏊🏿 E1.0 person swimming: dark skin tone 1F3CA 200D 2642 FE0F ; fully-qualified # 🏊‍♂️ E4.0 man swimming 1F3CA 200D 2642 ; minimally-qualified # 🏊‍♂ E4.0 man swimming 1F3CA 1F3FB 200D 2642 FE0F ; fully-qualified # 🏊🏻‍♂️ E4.0 man swimming: light skin tone 1F3CA 1F3FB 200D 2642 ; minimally-qualified # 🏊🏻‍♂ E4.0 man swimming: light skin tone 1F3CA 1F3FC 200D 2642 FE0F ; fully-qualified # 🏊🏼‍♂️ E4.0 man swimming: medium-light skin tone 1F3CA 1F3FC 200D 2642 ; minimally-qualified # 🏊🏼‍♂ E4.0 man swimming: medium-light skin tone 1F3CA 1F3FD 200D 2642 FE0F ; fully-qualified # 🏊🏽‍♂️ E4.0 man swimming: medium skin tone 1F3CA 1F3FD 200D 2642 ; minimally-qualified # 🏊🏽‍♂ E4.0 man swimming: medium skin tone 1F3CA 1F3FE 200D 2642 FE0F ; fully-qualified # 🏊🏾‍♂️ E4.0 man swimming: medium-dark skin tone 1F3CA 1F3FE 200D 2642 ; minimally-qualified # 🏊🏾‍♂ E4.0 man swimming: medium-dark skin tone 1F3CA 1F3FF 200D 2642 FE0F ; fully-qualified # 🏊🏿‍♂️ E4.0 man swimming: dark skin tone 1F3CA 1F3FF 200D 2642 ; minimally-qualified # 🏊🏿‍♂ E4.0 man swimming: dark skin tone 1F3CA 200D 2640 FE0F ; fully-qualified # 🏊‍♀️ E4.0 woman swimming 1F3CA 200D 2640 ; minimally-qualified # 🏊‍♀ E4.0 woman swimming 1F3CA 1F3FB 200D 2640 FE0F ; fully-qualified # 🏊🏻‍♀️ E4.0 woman swimming: light skin tone 1F3CA 1F3FB 200D 2640 ; minimally-qualified # 🏊🏻‍♀ E4.0 woman swimming: light skin tone 1F3CA 1F3FC 200D 2640 FE0F ; fully-qualified # 🏊🏼‍♀️ E4.0 woman swimming: medium-light skin tone 1F3CA 1F3FC 200D 2640 ; minimally-qualified # 🏊🏼‍♀ E4.0 woman swimming: medium-light skin tone 1F3CA 1F3FD 200D 2640 FE0F ; fully-qualified # 🏊🏽‍♀️ E4.0 woman swimming: medium skin tone 1F3CA 1F3FD 200D 2640 ; minimally-qualified # 🏊🏽‍♀ E4.0 woman swimming: medium skin tone 1F3CA 1F3FE 200D 2640 FE0F ; fully-qualified # 🏊🏾‍♀️ E4.0 woman swimming: medium-dark skin tone 1F3CA 1F3FE 200D 2640 ; minimally-qualified # 🏊🏾‍♀ E4.0 woman swimming: medium-dark skin tone 1F3CA 1F3FF 200D 2640 FE0F ; fully-qualified # 🏊🏿‍♀️ E4.0 woman swimming: dark skin tone 1F3CA 1F3FF 200D 2640 ; minimally-qualified # 🏊🏿‍♀ E4.0 woman swimming: dark skin tone 26F9 FE0F ; fully-qualified # ⛹️ E0.7 person bouncing ball 26F9 ; unqualified # ⛹ E0.7 person bouncing ball 26F9 1F3FB ; fully-qualified # ⛹🏻 E2.0 person bouncing ball: light skin tone 26F9 1F3FC ; fully-qualified # ⛹🏼 E2.0 person bouncing ball: medium-light skin tone 26F9 1F3FD ; fully-qualified # ⛹🏽 E2.0 person bouncing ball: medium skin tone 26F9 1F3FE ; fully-qualified # ⛹🏾 E2.0 person bouncing ball: medium-dark skin tone 26F9 1F3FF ; fully-qualified # ⛹🏿 E2.0 person bouncing ball: dark skin tone 26F9 FE0F 200D 2642 FE0F ; fully-qualified # ⛹️‍♂️ E4.0 man bouncing ball 26F9 200D 2642 FE0F ; unqualified # ⛹‍♂️ E4.0 man bouncing ball 26F9 FE0F 200D 2642 ; unqualified # ⛹️‍♂ E4.0 man bouncing ball 26F9 200D 2642 ; unqualified # ⛹‍♂ E4.0 man bouncing ball 26F9 1F3FB 200D 2642 FE0F ; fully-qualified # ⛹🏻‍♂️ E4.0 man bouncing ball: light skin tone 26F9 1F3FB 200D 2642 ; minimally-qualified # ⛹🏻‍♂ E4.0 man bouncing ball: light skin tone 26F9 1F3FC 200D 2642 FE0F ; fully-qualified # ⛹🏼‍♂️ E4.0 man bouncing ball: medium-light skin tone 26F9 1F3FC 200D 2642 ; minimally-qualified # ⛹🏼‍♂ E4.0 man bouncing ball: medium-light skin tone 26F9 1F3FD 200D 2642 FE0F ; fully-qualified # ⛹🏽‍♂️ E4.0 man bouncing ball: medium skin tone 26F9 1F3FD 200D 2642 ; minimally-qualified # ⛹🏽‍♂ E4.0 man bouncing ball: medium skin tone 26F9 1F3FE 200D 2642 FE0F ; fully-qualified # ⛹🏾‍♂️ E4.0 man bouncing ball: medium-dark skin tone 26F9 1F3FE 200D 2642 ; minimally-qualified # ⛹🏾‍♂ E4.0 man bouncing ball: medium-dark skin tone 26F9 1F3FF 200D 2642 FE0F ; fully-qualified # ⛹🏿‍♂️ E4.0 man bouncing ball: dark skin tone 26F9 1F3FF 200D 2642 ; minimally-qualified # ⛹🏿‍♂ E4.0 man bouncing ball: dark skin tone 26F9 FE0F 200D 2640 FE0F ; fully-qualified # ⛹️‍♀️ E4.0 woman bouncing ball 26F9 200D 2640 FE0F ; unqualified # ⛹‍♀️ E4.0 woman bouncing ball 26F9 FE0F 200D 2640 ; unqualified # ⛹️‍♀ E4.0 woman bouncing ball 26F9 200D 2640 ; unqualified # ⛹‍♀ E4.0 woman bouncing ball 26F9 1F3FB 200D 2640 FE0F ; fully-qualified # ⛹🏻‍♀️ E4.0 woman bouncing ball: light skin tone 26F9 1F3FB 200D 2640 ; minimally-qualified # ⛹🏻‍♀ E4.0 woman bouncing ball: light skin tone 26F9 1F3FC 200D 2640 FE0F ; fully-qualified # ⛹🏼‍♀️ E4.0 woman bouncing ball: medium-light skin tone 26F9 1F3FC 200D 2640 ; minimally-qualified # ⛹🏼‍♀ E4.0 woman bouncing ball: medium-light skin tone 26F9 1F3FD 200D 2640 FE0F ; fully-qualified # ⛹🏽‍♀️ E4.0 woman bouncing ball: medium skin tone 26F9 1F3FD 200D 2640 ; minimally-qualified # ⛹🏽‍♀ E4.0 woman bouncing ball: medium skin tone 26F9 1F3FE 200D 2640 FE0F ; fully-qualified # ⛹🏾‍♀️ E4.0 woman bouncing ball: medium-dark skin tone 26F9 1F3FE 200D 2640 ; minimally-qualified # ⛹🏾‍♀ E4.0 woman bouncing ball: medium-dark skin tone 26F9 1F3FF 200D 2640 FE0F ; fully-qualified # ⛹🏿‍♀️ E4.0 woman bouncing ball: dark skin tone 26F9 1F3FF 200D 2640 ; minimally-qualified # ⛹🏿‍♀ E4.0 woman bouncing ball: dark skin tone 1F3CB FE0F ; fully-qualified # 🏋️ E0.7 person lifting weights 1F3CB ; unqualified # 🏋 E0.7 person lifting weights 1F3CB 1F3FB ; fully-qualified # 🏋🏻 E2.0 person lifting weights: light skin tone 1F3CB 1F3FC ; fully-qualified # 🏋🏼 E2.0 person lifting weights: medium-light skin tone 1F3CB 1F3FD ; fully-qualified # 🏋🏽 E2.0 person lifting weights: medium skin tone 1F3CB 1F3FE ; fully-qualified # 🏋🏾 E2.0 person lifting weights: medium-dark skin tone 1F3CB 1F3FF ; fully-qualified # 🏋🏿 E2.0 person lifting weights: dark skin tone 1F3CB FE0F 200D 2642 FE0F ; fully-qualified # 🏋️‍♂️ E4.0 man lifting weights 1F3CB 200D 2642 FE0F ; unqualified # 🏋‍♂️ E4.0 man lifting weights 1F3CB FE0F 200D 2642 ; unqualified # 🏋️‍♂ E4.0 man lifting weights 1F3CB 200D 2642 ; unqualified # 🏋‍♂ E4.0 man lifting weights 1F3CB 1F3FB 200D 2642 FE0F ; fully-qualified # 🏋🏻‍♂️ E4.0 man lifting weights: light skin tone 1F3CB 1F3FB 200D 2642 ; minimally-qualified # 🏋🏻‍♂ E4.0 man lifting weights: light skin tone 1F3CB 1F3FC 200D 2642 FE0F ; fully-qualified # 🏋🏼‍♂️ E4.0 man lifting weights: medium-light skin tone 1F3CB 1F3FC 200D 2642 ; minimally-qualified # 🏋🏼‍♂ E4.0 man lifting weights: medium-light skin tone 1F3CB 1F3FD 200D 2642 FE0F ; fully-qualified # 🏋🏽‍♂️ E4.0 man lifting weights: medium skin tone 1F3CB 1F3FD 200D 2642 ; minimally-qualified # 🏋🏽‍♂ E4.0 man lifting weights: medium skin tone 1F3CB 1F3FE 200D 2642 FE0F ; fully-qualified # 🏋🏾‍♂️ E4.0 man lifting weights: medium-dark skin tone 1F3CB 1F3FE 200D 2642 ; minimally-qualified # 🏋🏾‍♂ E4.0 man lifting weights: medium-dark skin tone 1F3CB 1F3FF 200D 2642 FE0F ; fully-qualified # 🏋🏿‍♂️ E4.0 man lifting weights: dark skin tone 1F3CB 1F3FF 200D 2642 ; minimally-qualified # 🏋🏿‍♂ E4.0 man lifting weights: dark skin tone 1F3CB FE0F 200D 2640 FE0F ; fully-qualified # 🏋️‍♀️ E4.0 woman lifting weights 1F3CB 200D 2640 FE0F ; unqualified # 🏋‍♀️ E4.0 woman lifting weights 1F3CB FE0F 200D 2640 ; unqualified # 🏋️‍♀ E4.0 woman lifting weights 1F3CB 200D 2640 ; unqualified # 🏋‍♀ E4.0 woman lifting weights 1F3CB 1F3FB 200D 2640 FE0F ; fully-qualified # 🏋🏻‍♀️ E4.0 woman lifting weights: light skin tone 1F3CB 1F3FB 200D 2640 ; minimally-qualified # 🏋🏻‍♀ E4.0 woman lifting weights: light skin tone 1F3CB 1F3FC 200D 2640 FE0F ; fully-qualified # 🏋🏼‍♀️ E4.0 woman lifting weights: medium-light skin tone 1F3CB 1F3FC 200D 2640 ; minimally-qualified # 🏋🏼‍♀ E4.0 woman lifting weights: medium-light skin tone 1F3CB 1F3FD 200D 2640 FE0F ; fully-qualified # 🏋🏽‍♀️ E4.0 woman lifting weights: medium skin tone 1F3CB 1F3FD 200D 2640 ; minimally-qualified # 🏋🏽‍♀ E4.0 woman lifting weights: medium skin tone 1F3CB 1F3FE 200D 2640 FE0F ; fully-qualified # 🏋🏾‍♀️ E4.0 woman lifting weights: medium-dark skin tone 1F3CB 1F3FE 200D 2640 ; minimally-qualified # 🏋🏾‍♀ E4.0 woman lifting weights: medium-dark skin tone 1F3CB 1F3FF 200D 2640 FE0F ; fully-qualified # 🏋🏿‍♀️ E4.0 woman lifting weights: dark skin tone 1F3CB 1F3FF 200D 2640 ; minimally-qualified # 🏋🏿‍♀ E4.0 woman lifting weights: dark skin tone 1F6B4 ; fully-qualified # 🚴 E1.0 person biking 1F6B4 1F3FB ; fully-qualified # 🚴🏻 E1.0 person biking: light skin tone 1F6B4 1F3FC ; fully-qualified # 🚴🏼 E1.0 person biking: medium-light skin tone 1F6B4 1F3FD ; fully-qualified # 🚴🏽 E1.0 person biking: medium skin tone 1F6B4 1F3FE ; fully-qualified # 🚴🏾 E1.0 person biking: medium-dark skin tone 1F6B4 1F3FF ; fully-qualified # 🚴🏿 E1.0 person biking: dark skin tone 1F6B4 200D 2642 FE0F ; fully-qualified # 🚴‍♂️ E4.0 man biking 1F6B4 200D 2642 ; minimally-qualified # 🚴‍♂ E4.0 man biking 1F6B4 1F3FB 200D 2642 FE0F ; fully-qualified # 🚴🏻‍♂️ E4.0 man biking: light skin tone 1F6B4 1F3FB 200D 2642 ; minimally-qualified # 🚴🏻‍♂ E4.0 man biking: light skin tone 1F6B4 1F3FC 200D 2642 FE0F ; fully-qualified # 🚴🏼‍♂️ E4.0 man biking: medium-light skin tone 1F6B4 1F3FC 200D 2642 ; minimally-qualified # 🚴🏼‍♂ E4.0 man biking: medium-light skin tone 1F6B4 1F3FD 200D 2642 FE0F ; fully-qualified # 🚴🏽‍♂️ E4.0 man biking: medium skin tone 1F6B4 1F3FD 200D 2642 ; minimally-qualified # 🚴🏽‍♂ E4.0 man biking: medium skin tone 1F6B4 1F3FE 200D 2642 FE0F ; fully-qualified # 🚴🏾‍♂️ E4.0 man biking: medium-dark skin tone 1F6B4 1F3FE 200D 2642 ; minimally-qualified # 🚴🏾‍♂ E4.0 man biking: medium-dark skin tone 1F6B4 1F3FF 200D 2642 FE0F ; fully-qualified # 🚴🏿‍♂️ E4.0 man biking: dark skin tone 1F6B4 1F3FF 200D 2642 ; minimally-qualified # 🚴🏿‍♂ E4.0 man biking: dark skin tone 1F6B4 200D 2640 FE0F ; fully-qualified # 🚴‍♀️ E4.0 woman biking 1F6B4 200D 2640 ; minimally-qualified # 🚴‍♀ E4.0 woman biking 1F6B4 1F3FB 200D 2640 FE0F ; fully-qualified # 🚴🏻‍♀️ E4.0 woman biking: light skin tone 1F6B4 1F3FB 200D 2640 ; minimally-qualified # 🚴🏻‍♀ E4.0 woman biking: light skin tone 1F6B4 1F3FC 200D 2640 FE0F ; fully-qualified # 🚴🏼‍♀️ E4.0 woman biking: medium-light skin tone 1F6B4 1F3FC 200D 2640 ; minimally-qualified # 🚴🏼‍♀ E4.0 woman biking: medium-light skin tone 1F6B4 1F3FD 200D 2640 FE0F ; fully-qualified # 🚴🏽‍♀️ E4.0 woman biking: medium skin tone 1F6B4 1F3FD 200D 2640 ; minimally-qualified # 🚴🏽‍♀ E4.0 woman biking: medium skin tone 1F6B4 1F3FE 200D 2640 FE0F ; fully-qualified # 🚴🏾‍♀️ E4.0 woman biking: medium-dark skin tone 1F6B4 1F3FE 200D 2640 ; minimally-qualified # 🚴🏾‍♀ E4.0 woman biking: medium-dark skin tone 1F6B4 1F3FF 200D 2640 FE0F ; fully-qualified # 🚴🏿‍♀️ E4.0 woman biking: dark skin tone 1F6B4 1F3FF 200D 2640 ; minimally-qualified # 🚴🏿‍♀ E4.0 woman biking: dark skin tone 1F6B5 ; fully-qualified # 🚵 E1.0 person mountain biking 1F6B5 1F3FB ; fully-qualified # 🚵🏻 E1.0 person mountain biking: light skin tone 1F6B5 1F3FC ; fully-qualified # 🚵🏼 E1.0 person mountain biking: medium-light skin tone 1F6B5 1F3FD ; fully-qualified # 🚵🏽 E1.0 person mountain biking: medium skin tone 1F6B5 1F3FE ; fully-qualified # 🚵🏾 E1.0 person mountain biking: medium-dark skin tone 1F6B5 1F3FF ; fully-qualified # 🚵🏿 E1.0 person mountain biking: dark skin tone 1F6B5 200D 2642 FE0F ; fully-qualified # 🚵‍♂️ E4.0 man mountain biking 1F6B5 200D 2642 ; minimally-qualified # 🚵‍♂ E4.0 man mountain biking 1F6B5 1F3FB 200D 2642 FE0F ; fully-qualified # 🚵🏻‍♂️ E4.0 man mountain biking: light skin tone 1F6B5 1F3FB 200D 2642 ; minimally-qualified # 🚵🏻‍♂ E4.0 man mountain biking: light skin tone 1F6B5 1F3FC 200D 2642 FE0F ; fully-qualified # 🚵🏼‍♂️ E4.0 man mountain biking: medium-light skin tone 1F6B5 1F3FC 200D 2642 ; minimally-qualified # 🚵🏼‍♂ E4.0 man mountain biking: medium-light skin tone 1F6B5 1F3FD 200D 2642 FE0F ; fully-qualified # 🚵🏽‍♂️ E4.0 man mountain biking: medium skin tone 1F6B5 1F3FD 200D 2642 ; minimally-qualified # 🚵🏽‍♂ E4.0 man mountain biking: medium skin tone 1F6B5 1F3FE 200D 2642 FE0F ; fully-qualified # 🚵🏾‍♂️ E4.0 man mountain biking: medium-dark skin tone 1F6B5 1F3FE 200D 2642 ; minimally-qualified # 🚵🏾‍♂ E4.0 man mountain biking: medium-dark skin tone 1F6B5 1F3FF 200D 2642 FE0F ; fully-qualified # 🚵🏿‍♂️ E4.0 man mountain biking: dark skin tone 1F6B5 1F3FF 200D 2642 ; minimally-qualified # 🚵🏿‍♂ E4.0 man mountain biking: dark skin tone 1F6B5 200D 2640 FE0F ; fully-qualified # 🚵‍♀️ E4.0 woman mountain biking 1F6B5 200D 2640 ; minimally-qualified # 🚵‍♀ E4.0 woman mountain biking 1F6B5 1F3FB 200D 2640 FE0F ; fully-qualified # 🚵🏻‍♀️ E4.0 woman mountain biking: light skin tone 1F6B5 1F3FB 200D 2640 ; minimally-qualified # 🚵🏻‍♀ E4.0 woman mountain biking: light skin tone 1F6B5 1F3FC 200D 2640 FE0F ; fully-qualified # 🚵🏼‍♀️ E4.0 woman mountain biking: medium-light skin tone 1F6B5 1F3FC 200D 2640 ; minimally-qualified # 🚵🏼‍♀ E4.0 woman mountain biking: medium-light skin tone 1F6B5 1F3FD 200D 2640 FE0F ; fully-qualified # 🚵🏽‍♀️ E4.0 woman mountain biking: medium skin tone 1F6B5 1F3FD 200D 2640 ; minimally-qualified # 🚵🏽‍♀ E4.0 woman mountain biking: medium skin tone 1F6B5 1F3FE 200D 2640 FE0F ; fully-qualified # 🚵🏾‍♀️ E4.0 woman mountain biking: medium-dark skin tone 1F6B5 1F3FE 200D 2640 ; minimally-qualified # 🚵🏾‍♀ E4.0 woman mountain biking: medium-dark skin tone 1F6B5 1F3FF 200D 2640 FE0F ; fully-qualified # 🚵🏿‍♀️ E4.0 woman mountain biking: dark skin tone 1F6B5 1F3FF 200D 2640 ; minimally-qualified # 🚵🏿‍♀ E4.0 woman mountain biking: dark skin tone 1F938 ; fully-qualified # 🤸 E3.0 person cartwheeling 1F938 1F3FB ; fully-qualified # 🤸🏻 E3.0 person cartwheeling: light skin tone 1F938 1F3FC ; fully-qualified # 🤸🏼 E3.0 person cartwheeling: medium-light skin tone 1F938 1F3FD ; fully-qualified # 🤸🏽 E3.0 person cartwheeling: medium skin tone 1F938 1F3FE ; fully-qualified # 🤸🏾 E3.0 person cartwheeling: medium-dark skin tone 1F938 1F3FF ; fully-qualified # 🤸🏿 E3.0 person cartwheeling: dark skin tone 1F938 200D 2642 FE0F ; fully-qualified # 🤸‍♂️ E4.0 man cartwheeling 1F938 200D 2642 ; minimally-qualified # 🤸‍♂ E4.0 man cartwheeling 1F938 1F3FB 200D 2642 FE0F ; fully-qualified # 🤸🏻‍♂️ E4.0 man cartwheeling: light skin tone 1F938 1F3FB 200D 2642 ; minimally-qualified # 🤸🏻‍♂ E4.0 man cartwheeling: light skin tone 1F938 1F3FC 200D 2642 FE0F ; fully-qualified # 🤸🏼‍♂️ E4.0 man cartwheeling: medium-light skin tone 1F938 1F3FC 200D 2642 ; minimally-qualified # 🤸🏼‍♂ E4.0 man cartwheeling: medium-light skin tone 1F938 1F3FD 200D 2642 FE0F ; fully-qualified # 🤸🏽‍♂️ E4.0 man cartwheeling: medium skin tone 1F938 1F3FD 200D 2642 ; minimally-qualified # 🤸🏽‍♂ E4.0 man cartwheeling: medium skin tone 1F938 1F3FE 200D 2642 FE0F ; fully-qualified # 🤸🏾‍♂️ E4.0 man cartwheeling: medium-dark skin tone 1F938 1F3FE 200D 2642 ; minimally-qualified # 🤸🏾‍♂ E4.0 man cartwheeling: medium-dark skin tone 1F938 1F3FF 200D 2642 FE0F ; fully-qualified # 🤸🏿‍♂️ E4.0 man cartwheeling: dark skin tone 1F938 1F3FF 200D 2642 ; minimally-qualified # 🤸🏿‍♂ E4.0 man cartwheeling: dark skin tone 1F938 200D 2640 FE0F ; fully-qualified # 🤸‍♀️ E4.0 woman cartwheeling 1F938 200D 2640 ; minimally-qualified # 🤸‍♀ E4.0 woman cartwheeling 1F938 1F3FB 200D 2640 FE0F ; fully-qualified # 🤸🏻‍♀️ E4.0 woman cartwheeling: light skin tone 1F938 1F3FB 200D 2640 ; minimally-qualified # 🤸🏻‍♀ E4.0 woman cartwheeling: light skin tone 1F938 1F3FC 200D 2640 FE0F ; fully-qualified # 🤸🏼‍♀️ E4.0 woman cartwheeling: medium-light skin tone 1F938 1F3FC 200D 2640 ; minimally-qualified # 🤸🏼‍♀ E4.0 woman cartwheeling: medium-light skin tone 1F938 1F3FD 200D 2640 FE0F ; fully-qualified # 🤸🏽‍♀️ E4.0 woman cartwheeling: medium skin tone 1F938 1F3FD 200D 2640 ; minimally-qualified # 🤸🏽‍♀ E4.0 woman cartwheeling: medium skin tone 1F938 1F3FE 200D 2640 FE0F ; fully-qualified # 🤸🏾‍♀️ E4.0 woman cartwheeling: medium-dark skin tone 1F938 1F3FE 200D 2640 ; minimally-qualified # 🤸🏾‍♀ E4.0 woman cartwheeling: medium-dark skin tone 1F938 1F3FF 200D 2640 FE0F ; fully-qualified # 🤸🏿‍♀️ E4.0 woman cartwheeling: dark skin tone 1F938 1F3FF 200D 2640 ; minimally-qualified # 🤸🏿‍♀ E4.0 woman cartwheeling: dark skin tone 1F93C ; fully-qualified # 🤼 E3.0 people wrestling 1F93C 200D 2642 FE0F ; fully-qualified # 🤼‍♂️ E4.0 men wrestling 1F93C 200D 2642 ; minimally-qualified # 🤼‍♂ E4.0 men wrestling 1F93C 200D 2640 FE0F ; fully-qualified # 🤼‍♀️ E4.0 women wrestling 1F93C 200D 2640 ; minimally-qualified # 🤼‍♀ E4.0 women wrestling 1F93D ; fully-qualified # 🤽 E3.0 person playing water polo 1F93D 1F3FB ; fully-qualified # 🤽🏻 E3.0 person playing water polo: light skin tone 1F93D 1F3FC ; fully-qualified # 🤽🏼 E3.0 person playing water polo: medium-light skin tone 1F93D 1F3FD ; fully-qualified # 🤽🏽 E3.0 person playing water polo: medium skin tone 1F93D 1F3FE ; fully-qualified # 🤽🏾 E3.0 person playing water polo: medium-dark skin tone 1F93D 1F3FF ; fully-qualified # 🤽🏿 E3.0 person playing water polo: dark skin tone 1F93D 200D 2642 FE0F ; fully-qualified # 🤽‍♂️ E4.0 man playing water polo 1F93D 200D 2642 ; minimally-qualified # 🤽‍♂ E4.0 man playing water polo 1F93D 1F3FB 200D 2642 FE0F ; fully-qualified # 🤽🏻‍♂️ E4.0 man playing water polo: light skin tone 1F93D 1F3FB 200D 2642 ; minimally-qualified # 🤽🏻‍♂ E4.0 man playing water polo: light skin tone 1F93D 1F3FC 200D 2642 FE0F ; fully-qualified # 🤽🏼‍♂️ E4.0 man playing water polo: medium-light skin tone 1F93D 1F3FC 200D 2642 ; minimally-qualified # 🤽🏼‍♂ E4.0 man playing water polo: medium-light skin tone 1F93D 1F3FD 200D 2642 FE0F ; fully-qualified # 🤽🏽‍♂️ E4.0 man playing water polo: medium skin tone 1F93D 1F3FD 200D 2642 ; minimally-qualified # 🤽🏽‍♂ E4.0 man playing water polo: medium skin tone 1F93D 1F3FE 200D 2642 FE0F ; fully-qualified # 🤽🏾‍♂️ E4.0 man playing water polo: medium-dark skin tone 1F93D 1F3FE 200D 2642 ; minimally-qualified # 🤽🏾‍♂ E4.0 man playing water polo: medium-dark skin tone 1F93D 1F3FF 200D 2642 FE0F ; fully-qualified # 🤽🏿‍♂️ E4.0 man playing water polo: dark skin tone 1F93D 1F3FF 200D 2642 ; minimally-qualified # 🤽🏿‍♂ E4.0 man playing water polo: dark skin tone 1F93D 200D 2640 FE0F ; fully-qualified # 🤽‍♀️ E4.0 woman playing water polo 1F93D 200D 2640 ; minimally-qualified # 🤽‍♀ E4.0 woman playing water polo 1F93D 1F3FB 200D 2640 FE0F ; fully-qualified # 🤽🏻‍♀️ E4.0 woman playing water polo: light skin tone 1F93D 1F3FB 200D 2640 ; minimally-qualified # 🤽🏻‍♀ E4.0 woman playing water polo: light skin tone 1F93D 1F3FC 200D 2640 FE0F ; fully-qualified # 🤽🏼‍♀️ E4.0 woman playing water polo: medium-light skin tone 1F93D 1F3FC 200D 2640 ; minimally-qualified # 🤽🏼‍♀ E4.0 woman playing water polo: medium-light skin tone 1F93D 1F3FD 200D 2640 FE0F ; fully-qualified # 🤽🏽‍♀️ E4.0 woman playing water polo: medium skin tone 1F93D 1F3FD 200D 2640 ; minimally-qualified # 🤽🏽‍♀ E4.0 woman playing water polo: medium skin tone 1F93D 1F3FE 200D 2640 FE0F ; fully-qualified # 🤽🏾‍♀️ E4.0 woman playing water polo: medium-dark skin tone 1F93D 1F3FE 200D 2640 ; minimally-qualified # 🤽🏾‍♀ E4.0 woman playing water polo: medium-dark skin tone 1F93D 1F3FF 200D 2640 FE0F ; fully-qualified # 🤽🏿‍♀️ E4.0 woman playing water polo: dark skin tone 1F93D 1F3FF 200D 2640 ; minimally-qualified # 🤽🏿‍♀ E4.0 woman playing water polo: dark skin tone 1F93E ; fully-qualified # 🤾 E3.0 person playing handball 1F93E 1F3FB ; fully-qualified # 🤾🏻 E3.0 person playing handball: light skin tone 1F93E 1F3FC ; fully-qualified # 🤾🏼 E3.0 person playing handball: medium-light skin tone 1F93E 1F3FD ; fully-qualified # 🤾🏽 E3.0 person playing handball: medium skin tone 1F93E 1F3FE ; fully-qualified # 🤾🏾 E3.0 person playing handball: medium-dark skin tone 1F93E 1F3FF ; fully-qualified # 🤾🏿 E3.0 person playing handball: dark skin tone 1F93E 200D 2642 FE0F ; fully-qualified # 🤾‍♂️ E4.0 man playing handball 1F93E 200D 2642 ; minimally-qualified # 🤾‍♂ E4.0 man playing handball 1F93E 1F3FB 200D 2642 FE0F ; fully-qualified # 🤾🏻‍♂️ E4.0 man playing handball: light skin tone 1F93E 1F3FB 200D 2642 ; minimally-qualified # 🤾🏻‍♂ E4.0 man playing handball: light skin tone 1F93E 1F3FC 200D 2642 FE0F ; fully-qualified # 🤾🏼‍♂️ E4.0 man playing handball: medium-light skin tone 1F93E 1F3FC 200D 2642 ; minimally-qualified # 🤾🏼‍♂ E4.0 man playing handball: medium-light skin tone 1F93E 1F3FD 200D 2642 FE0F ; fully-qualified # 🤾🏽‍♂️ E4.0 man playing handball: medium skin tone 1F93E 1F3FD 200D 2642 ; minimally-qualified # 🤾🏽‍♂ E4.0 man playing handball: medium skin tone 1F93E 1F3FE 200D 2642 FE0F ; fully-qualified # 🤾🏾‍♂️ E4.0 man playing handball: medium-dark skin tone 1F93E 1F3FE 200D 2642 ; minimally-qualified # 🤾🏾‍♂ E4.0 man playing handball: medium-dark skin tone 1F93E 1F3FF 200D 2642 FE0F ; fully-qualified # 🤾🏿‍♂️ E4.0 man playing handball: dark skin tone 1F93E 1F3FF 200D 2642 ; minimally-qualified # 🤾🏿‍♂ E4.0 man playing handball: dark skin tone 1F93E 200D 2640 FE0F ; fully-qualified # 🤾‍♀️ E4.0 woman playing handball 1F93E 200D 2640 ; minimally-qualified # 🤾‍♀ E4.0 woman playing handball 1F93E 1F3FB 200D 2640 FE0F ; fully-qualified # 🤾🏻‍♀️ E4.0 woman playing handball: light skin tone 1F93E 1F3FB 200D 2640 ; minimally-qualified # 🤾🏻‍♀ E4.0 woman playing handball: light skin tone 1F93E 1F3FC 200D 2640 FE0F ; fully-qualified # 🤾🏼‍♀️ E4.0 woman playing handball: medium-light skin tone 1F93E 1F3FC 200D 2640 ; minimally-qualified # 🤾🏼‍♀ E4.0 woman playing handball: medium-light skin tone 1F93E 1F3FD 200D 2640 FE0F ; fully-qualified # 🤾🏽‍♀️ E4.0 woman playing handball: medium skin tone 1F93E 1F3FD 200D 2640 ; minimally-qualified # 🤾🏽‍♀ E4.0 woman playing handball: medium skin tone 1F93E 1F3FE 200D 2640 FE0F ; fully-qualified # 🤾🏾‍♀️ E4.0 woman playing handball: medium-dark skin tone 1F93E 1F3FE 200D 2640 ; minimally-qualified # 🤾🏾‍♀ E4.0 woman playing handball: medium-dark skin tone 1F93E 1F3FF 200D 2640 FE0F ; fully-qualified # 🤾🏿‍♀️ E4.0 woman playing handball: dark skin tone 1F93E 1F3FF 200D 2640 ; minimally-qualified # 🤾🏿‍♀ E4.0 woman playing handball: dark skin tone 1F939 ; fully-qualified # 🤹 E3.0 person juggling 1F939 1F3FB ; fully-qualified # 🤹🏻 E3.0 person juggling: light skin tone 1F939 1F3FC ; fully-qualified # 🤹🏼 E3.0 person juggling: medium-light skin tone 1F939 1F3FD ; fully-qualified # 🤹🏽 E3.0 person juggling: medium skin tone 1F939 1F3FE ; fully-qualified # 🤹🏾 E3.0 person juggling: medium-dark skin tone 1F939 1F3FF ; fully-qualified # 🤹🏿 E3.0 person juggling: dark skin tone 1F939 200D 2642 FE0F ; fully-qualified # 🤹‍♂️ E4.0 man juggling 1F939 200D 2642 ; minimally-qualified # 🤹‍♂ E4.0 man juggling 1F939 1F3FB 200D 2642 FE0F ; fully-qualified # 🤹🏻‍♂️ E4.0 man juggling: light skin tone 1F939 1F3FB 200D 2642 ; minimally-qualified # 🤹🏻‍♂ E4.0 man juggling: light skin tone 1F939 1F3FC 200D 2642 FE0F ; fully-qualified # 🤹🏼‍♂️ E4.0 man juggling: medium-light skin tone 1F939 1F3FC 200D 2642 ; minimally-qualified # 🤹🏼‍♂ E4.0 man juggling: medium-light skin tone 1F939 1F3FD 200D 2642 FE0F ; fully-qualified # 🤹🏽‍♂️ E4.0 man juggling: medium skin tone 1F939 1F3FD 200D 2642 ; minimally-qualified # 🤹🏽‍♂ E4.0 man juggling: medium skin tone 1F939 1F3FE 200D 2642 FE0F ; fully-qualified # 🤹🏾‍♂️ E4.0 man juggling: medium-dark skin tone 1F939 1F3FE 200D 2642 ; minimally-qualified # 🤹🏾‍♂ E4.0 man juggling: medium-dark skin tone 1F939 1F3FF 200D 2642 FE0F ; fully-qualified # 🤹🏿‍♂️ E4.0 man juggling: dark skin tone 1F939 1F3FF 200D 2642 ; minimally-qualified # 🤹🏿‍♂ E4.0 man juggling: dark skin tone 1F939 200D 2640 FE0F ; fully-qualified # 🤹‍♀️ E4.0 woman juggling 1F939 200D 2640 ; minimally-qualified # 🤹‍♀ E4.0 woman juggling 1F939 1F3FB 200D 2640 FE0F ; fully-qualified # 🤹🏻‍♀️ E4.0 woman juggling: light skin tone 1F939 1F3FB 200D 2640 ; minimally-qualified # 🤹🏻‍♀ E4.0 woman juggling: light skin tone 1F939 1F3FC 200D 2640 FE0F ; fully-qualified # 🤹🏼‍♀️ E4.0 woman juggling: medium-light skin tone 1F939 1F3FC 200D 2640 ; minimally-qualified # 🤹🏼‍♀ E4.0 woman juggling: medium-light skin tone 1F939 1F3FD 200D 2640 FE0F ; fully-qualified # 🤹🏽‍♀️ E4.0 woman juggling: medium skin tone 1F939 1F3FD 200D 2640 ; minimally-qualified # 🤹🏽‍♀ E4.0 woman juggling: medium skin tone 1F939 1F3FE 200D 2640 FE0F ; fully-qualified # 🤹🏾‍♀️ E4.0 woman juggling: medium-dark skin tone 1F939 1F3FE 200D 2640 ; minimally-qualified # 🤹🏾‍♀ E4.0 woman juggling: medium-dark skin tone 1F939 1F3FF 200D 2640 FE0F ; fully-qualified # 🤹🏿‍♀️ E4.0 woman juggling: dark skin tone 1F939 1F3FF 200D 2640 ; minimally-qualified # 🤹🏿‍♀ E4.0 woman juggling: dark skin tone # subgroup: person-resting 1F9D8 ; fully-qualified # 🧘 E5.0 person in lotus position 1F9D8 1F3FB ; fully-qualified # 🧘🏻 E5.0 person in lotus position: light skin tone 1F9D8 1F3FC ; fully-qualified # 🧘🏼 E5.0 person in lotus position: medium-light skin tone 1F9D8 1F3FD ; fully-qualified # 🧘🏽 E5.0 person in lotus position: medium skin tone 1F9D8 1F3FE ; fully-qualified # 🧘🏾 E5.0 person in lotus position: medium-dark skin tone 1F9D8 1F3FF ; fully-qualified # 🧘🏿 E5.0 person in lotus position: dark skin tone 1F9D8 200D 2642 FE0F ; fully-qualified # 🧘‍♂️ E5.0 man in lotus position 1F9D8 200D 2642 ; minimally-qualified # 🧘‍♂ E5.0 man in lotus position 1F9D8 1F3FB 200D 2642 FE0F ; fully-qualified # 🧘🏻‍♂️ E5.0 man in lotus position: light skin tone 1F9D8 1F3FB 200D 2642 ; minimally-qualified # 🧘🏻‍♂ E5.0 man in lotus position: light skin tone 1F9D8 1F3FC 200D 2642 FE0F ; fully-qualified # 🧘🏼‍♂️ E5.0 man in lotus position: medium-light skin tone 1F9D8 1F3FC 200D 2642 ; minimally-qualified # 🧘🏼‍♂ E5.0 man in lotus position: medium-light skin tone 1F9D8 1F3FD 200D 2642 FE0F ; fully-qualified # 🧘🏽‍♂️ E5.0 man in lotus position: medium skin tone 1F9D8 1F3FD 200D 2642 ; minimally-qualified # 🧘🏽‍♂ E5.0 man in lotus position: medium skin tone 1F9D8 1F3FE 200D 2642 FE0F ; fully-qualified # 🧘🏾‍♂️ E5.0 man in lotus position: medium-dark skin tone 1F9D8 1F3FE 200D 2642 ; minimally-qualified # 🧘🏾‍♂ E5.0 man in lotus position: medium-dark skin tone 1F9D8 1F3FF 200D 2642 FE0F ; fully-qualified # 🧘🏿‍♂️ E5.0 man in lotus position: dark skin tone 1F9D8 1F3FF 200D 2642 ; minimally-qualified # 🧘🏿‍♂ E5.0 man in lotus position: dark skin tone 1F9D8 200D 2640 FE0F ; fully-qualified # 🧘‍♀️ E5.0 woman in lotus position 1F9D8 200D 2640 ; minimally-qualified # 🧘‍♀ E5.0 woman in lotus position 1F9D8 1F3FB 200D 2640 FE0F ; fully-qualified # 🧘🏻‍♀️ E5.0 woman in lotus position: light skin tone 1F9D8 1F3FB 200D 2640 ; minimally-qualified # 🧘🏻‍♀ E5.0 woman in lotus position: light skin tone 1F9D8 1F3FC 200D 2640 FE0F ; fully-qualified # 🧘🏼‍♀️ E5.0 woman in lotus position: medium-light skin tone 1F9D8 1F3FC 200D 2640 ; minimally-qualified # 🧘🏼‍♀ E5.0 woman in lotus position: medium-light skin tone 1F9D8 1F3FD 200D 2640 FE0F ; fully-qualified # 🧘🏽‍♀️ E5.0 woman in lotus position: medium skin tone 1F9D8 1F3FD 200D 2640 ; minimally-qualified # 🧘🏽‍♀ E5.0 woman in lotus position: medium skin tone 1F9D8 1F3FE 200D 2640 FE0F ; fully-qualified # 🧘🏾‍♀️ E5.0 woman in lotus position: medium-dark skin tone 1F9D8 1F3FE 200D 2640 ; minimally-qualified # 🧘🏾‍♀ E5.0 woman in lotus position: medium-dark skin tone 1F9D8 1F3FF 200D 2640 FE0F ; fully-qualified # 🧘🏿‍♀️ E5.0 woman in lotus position: dark skin tone 1F9D8 1F3FF 200D 2640 ; minimally-qualified # 🧘🏿‍♀ E5.0 woman in lotus position: dark skin tone 1F6C0 ; fully-qualified # 🛀 E0.6 person taking bath 1F6C0 1F3FB ; fully-qualified # 🛀🏻 E1.0 person taking bath: light skin tone 1F6C0 1F3FC ; fully-qualified # 🛀🏼 E1.0 person taking bath: medium-light skin tone 1F6C0 1F3FD ; fully-qualified # 🛀🏽 E1.0 person taking bath: medium skin tone 1F6C0 1F3FE ; fully-qualified # 🛀🏾 E1.0 person taking bath: medium-dark skin tone 1F6C0 1F3FF ; fully-qualified # 🛀🏿 E1.0 person taking bath: dark skin tone 1F6CC ; fully-qualified # 🛌 E1.0 person in bed 1F6CC 1F3FB ; fully-qualified # 🛌🏻 E4.0 person in bed: light skin tone 1F6CC 1F3FC ; fully-qualified # 🛌🏼 E4.0 person in bed: medium-light skin tone 1F6CC 1F3FD ; fully-qualified # 🛌🏽 E4.0 person in bed: medium skin tone 1F6CC 1F3FE ; fully-qualified # 🛌🏾 E4.0 person in bed: medium-dark skin tone 1F6CC 1F3FF ; fully-qualified # 🛌🏿 E4.0 person in bed: dark skin tone # subgroup: family 1F9D1 200D 1F91D 200D 1F9D1 ; fully-qualified # 🧑‍🤝‍🧑 E12.0 people holding hands 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏻‍🤝‍🧑🏻 E12.0 people holding hands: light skin tone 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏻‍🤝‍🧑🏼 E12.1 people holding hands: light skin tone, medium-light skin tone 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏻‍🤝‍🧑🏽 E12.1 people holding hands: light skin tone, medium skin tone 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏻‍🤝‍🧑🏾 E12.1 people holding hands: light skin tone, medium-dark skin tone 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏻‍🤝‍🧑🏿 E12.1 people holding hands: light skin tone, dark skin tone 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏼‍🤝‍🧑🏻 E12.0 people holding hands: medium-light skin tone, light skin tone 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏼‍🤝‍🧑🏼 E12.0 people holding hands: medium-light skin tone 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏼‍🤝‍🧑🏽 E12.1 people holding hands: medium-light skin tone, medium skin tone 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏼‍🤝‍🧑🏾 E12.1 people holding hands: medium-light skin tone, medium-dark skin tone 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏼‍🤝‍🧑🏿 E12.1 people holding hands: medium-light skin tone, dark skin tone 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏽‍🤝‍🧑🏻 E12.0 people holding hands: medium skin tone, light skin tone 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏽‍🤝‍🧑🏼 E12.0 people holding hands: medium skin tone, medium-light skin tone 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏽‍🤝‍🧑🏽 E12.0 people holding hands: medium skin tone 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏽‍🤝‍🧑🏾 E12.1 people holding hands: medium skin tone, medium-dark skin tone 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏽‍🤝‍🧑🏿 E12.1 people holding hands: medium skin tone, dark skin tone 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏾‍🤝‍🧑🏻 E12.0 people holding hands: medium-dark skin tone, light skin tone 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏾‍🤝‍🧑🏼 E12.0 people holding hands: medium-dark skin tone, medium-light skin tone 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏾‍🤝‍🧑🏽 E12.0 people holding hands: medium-dark skin tone, medium skin tone 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏾‍🤝‍🧑🏾 E12.0 people holding hands: medium-dark skin tone 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏾‍🤝‍🧑🏿 E12.1 people holding hands: medium-dark skin tone, dark skin tone 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏿‍🤝‍🧑🏻 E12.0 people holding hands: dark skin tone, light skin tone 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏿‍🤝‍🧑🏼 E12.0 people holding hands: dark skin tone, medium-light skin tone 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏿‍🤝‍🧑🏽 E12.0 people holding hands: dark skin tone, medium skin tone 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏿‍🤝‍🧑🏾 E12.0 people holding hands: dark skin tone, medium-dark skin tone 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏿‍🤝‍🧑🏿 E12.0 people holding hands: dark skin tone 1F46D ; fully-qualified # 👭 E1.0 women holding hands 1F46D 1F3FB ; fully-qualified # 👭🏻 E12.0 women holding hands: light skin tone 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FC ; fully-qualified # 👩🏻‍🤝‍👩🏼 E12.1 women holding hands: light skin tone, medium-light skin tone 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FD ; fully-qualified # 👩🏻‍🤝‍👩🏽 E12.1 women holding hands: light skin tone, medium skin tone 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FE ; fully-qualified # 👩🏻‍🤝‍👩🏾 E12.1 women holding hands: light skin tone, medium-dark skin tone 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FF ; fully-qualified # 👩🏻‍🤝‍👩🏿 E12.1 women holding hands: light skin tone, dark skin tone 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FB ; fully-qualified # 👩🏼‍🤝‍👩🏻 E12.0 women holding hands: medium-light skin tone, light skin tone 1F46D 1F3FC ; fully-qualified # 👭🏼 E12.0 women holding hands: medium-light skin tone 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FD ; fully-qualified # 👩🏼‍🤝‍👩🏽 E12.1 women holding hands: medium-light skin tone, medium skin tone 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FE ; fully-qualified # 👩🏼‍🤝‍👩🏾 E12.1 women holding hands: medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FF ; fully-qualified # 👩🏼‍🤝‍👩🏿 E12.1 women holding hands: medium-light skin tone, dark skin tone 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FB ; fully-qualified # 👩🏽‍🤝‍👩🏻 E12.0 women holding hands: medium skin tone, light skin tone 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FC ; fully-qualified # 👩🏽‍🤝‍👩🏼 E12.0 women holding hands: medium skin tone, medium-light skin tone 1F46D 1F3FD ; fully-qualified # 👭🏽 E12.0 women holding hands: medium skin tone 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FE ; fully-qualified # 👩🏽‍🤝‍👩🏾 E12.1 women holding hands: medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FF ; fully-qualified # 👩🏽‍🤝‍👩🏿 E12.1 women holding hands: medium skin tone, dark skin tone 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FB ; fully-qualified # 👩🏾‍🤝‍👩🏻 E12.0 women holding hands: medium-dark skin tone, light skin tone 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FC ; fully-qualified # 👩🏾‍🤝‍👩🏼 E12.0 women holding hands: medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FD ; fully-qualified # 👩🏾‍🤝‍👩🏽 E12.0 women holding hands: medium-dark skin tone, medium skin tone 1F46D 1F3FE ; fully-qualified # 👭🏾 E12.0 women holding hands: medium-dark skin tone 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FF ; fully-qualified # 👩🏾‍🤝‍👩🏿 E12.1 women holding hands: medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FB ; fully-qualified # 👩🏿‍🤝‍👩🏻 E12.0 women holding hands: dark skin tone, light skin tone 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FC ; fully-qualified # 👩🏿‍🤝‍👩🏼 E12.0 women holding hands: dark skin tone, medium-light skin tone 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FD ; fully-qualified # 👩🏿‍🤝‍👩🏽 E12.0 women holding hands: dark skin tone, medium skin tone 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FE ; fully-qualified # 👩🏿‍🤝‍👩🏾 E12.0 women holding hands: dark skin tone, medium-dark skin tone 1F46D 1F3FF ; fully-qualified # 👭🏿 E12.0 women holding hands: dark skin tone 1F46B ; fully-qualified # 👫 E0.6 woman and man holding hands 1F46B 1F3FB ; fully-qualified # 👫🏻 E12.0 woman and man holding hands: light skin tone 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👩🏻‍🤝‍👨🏼 E12.0 woman and man holding hands: light skin tone, medium-light skin tone 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👩🏻‍🤝‍👨🏽 E12.0 woman and man holding hands: light skin tone, medium skin tone 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👩🏻‍🤝‍👨🏾 E12.0 woman and man holding hands: light skin tone, medium-dark skin tone 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👩🏻‍🤝‍👨🏿 E12.0 woman and man holding hands: light skin tone, dark skin tone 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👩🏼‍🤝‍👨🏻 E12.0 woman and man holding hands: medium-light skin tone, light skin tone 1F46B 1F3FC ; fully-qualified # 👫🏼 E12.0 woman and man holding hands: medium-light skin tone 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👩🏼‍🤝‍👨🏽 E12.0 woman and man holding hands: medium-light skin tone, medium skin tone 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👩🏼‍🤝‍👨🏾 E12.0 woman and man holding hands: medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👩🏼‍🤝‍👨🏿 E12.0 woman and man holding hands: medium-light skin tone, dark skin tone 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👩🏽‍🤝‍👨🏻 E12.0 woman and man holding hands: medium skin tone, light skin tone 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👩🏽‍🤝‍👨🏼 E12.0 woman and man holding hands: medium skin tone, medium-light skin tone 1F46B 1F3FD ; fully-qualified # 👫🏽 E12.0 woman and man holding hands: medium skin tone 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👩🏽‍🤝‍👨🏾 E12.0 woman and man holding hands: medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👩🏽‍🤝‍👨🏿 E12.0 woman and man holding hands: medium skin tone, dark skin tone 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👩🏾‍🤝‍👨🏻 E12.0 woman and man holding hands: medium-dark skin tone, light skin tone 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👩🏾‍🤝‍👨🏼 E12.0 woman and man holding hands: medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👩🏾‍🤝‍👨🏽 E12.0 woman and man holding hands: medium-dark skin tone, medium skin tone 1F46B 1F3FE ; fully-qualified # 👫🏾 E12.0 woman and man holding hands: medium-dark skin tone 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👩🏾‍🤝‍👨🏿 E12.0 woman and man holding hands: medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👩🏿‍🤝‍👨🏻 E12.0 woman and man holding hands: dark skin tone, light skin tone 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👩🏿‍🤝‍👨🏼 E12.0 woman and man holding hands: dark skin tone, medium-light skin tone 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👩🏿‍🤝‍👨🏽 E12.0 woman and man holding hands: dark skin tone, medium skin tone 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👩🏿‍🤝‍👨🏾 E12.0 woman and man holding hands: dark skin tone, medium-dark skin tone 1F46B 1F3FF ; fully-qualified # 👫🏿 E12.0 woman and man holding hands: dark skin tone 1F46C ; fully-qualified # 👬 E1.0 men holding hands 1F46C 1F3FB ; fully-qualified # 👬🏻 E12.0 men holding hands: light skin tone 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👨🏻‍🤝‍👨🏼 E12.1 men holding hands: light skin tone, medium-light skin tone 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👨🏻‍🤝‍👨🏽 E12.1 men holding hands: light skin tone, medium skin tone 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👨🏻‍🤝‍👨🏾 E12.1 men holding hands: light skin tone, medium-dark skin tone 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👨🏻‍🤝‍👨🏿 E12.1 men holding hands: light skin tone, dark skin tone 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👨🏼‍🤝‍👨🏻 E12.0 men holding hands: medium-light skin tone, light skin tone 1F46C 1F3FC ; fully-qualified # 👬🏼 E12.0 men holding hands: medium-light skin tone 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👨🏼‍🤝‍👨🏽 E12.1 men holding hands: medium-light skin tone, medium skin tone 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👨🏼‍🤝‍👨🏾 E12.1 men holding hands: medium-light skin tone, medium-dark skin tone 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👨🏼‍🤝‍👨🏿 E12.1 men holding hands: medium-light skin tone, dark skin tone 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👨🏽‍🤝‍👨🏻 E12.0 men holding hands: medium skin tone, light skin tone 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👨🏽‍🤝‍👨🏼 E12.0 men holding hands: medium skin tone, medium-light skin tone 1F46C 1F3FD ; fully-qualified # 👬🏽 E12.0 men holding hands: medium skin tone 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👨🏽‍🤝‍👨🏾 E12.1 men holding hands: medium skin tone, medium-dark skin tone 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👨🏽‍🤝‍👨🏿 E12.1 men holding hands: medium skin tone, dark skin tone 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👨🏾‍🤝‍👨🏻 E12.0 men holding hands: medium-dark skin tone, light skin tone 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👨🏾‍🤝‍👨🏼 E12.0 men holding hands: medium-dark skin tone, medium-light skin tone 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👨🏾‍🤝‍👨🏽 E12.0 men holding hands: medium-dark skin tone, medium skin tone 1F46C 1F3FE ; fully-qualified # 👬🏾 E12.0 men holding hands: medium-dark skin tone 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FF ; fully-qualified # 👨🏾‍🤝‍👨🏿 E12.1 men holding hands: medium-dark skin tone, dark skin tone 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FB ; fully-qualified # 👨🏿‍🤝‍👨🏻 E12.0 men holding hands: dark skin tone, light skin tone 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FC ; fully-qualified # 👨🏿‍🤝‍👨🏼 E12.0 men holding hands: dark skin tone, medium-light skin tone 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FD ; fully-qualified # 👨🏿‍🤝‍👨🏽 E12.0 men holding hands: dark skin tone, medium skin tone 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FE ; fully-qualified # 👨🏿‍🤝‍👨🏾 E12.0 men holding hands: dark skin tone, medium-dark skin tone 1F46C 1F3FF ; fully-qualified # 👬🏿 E12.0 men holding hands: dark skin tone 1F48F ; fully-qualified # 💏 E0.6 kiss 1F48F 1F3FB ; fully-qualified # 💏🏻 E13.1 kiss: light skin tone 1F48F 1F3FC ; fully-qualified # 💏🏼 E13.1 kiss: medium-light skin tone 1F48F 1F3FD ; fully-qualified # 💏🏽 E13.1 kiss: medium skin tone 1F48F 1F3FE ; fully-qualified # 💏🏾 E13.1 kiss: medium-dark skin tone 1F48F 1F3FF ; fully-qualified # 💏🏿 E13.1 kiss: dark skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏻‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, light skin tone, medium-light skin tone 1F9D1 1F3FB 200D 2764 200D 1F48B 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏻‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, light skin tone, medium-light skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏻‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, light skin tone, medium skin tone 1F9D1 1F3FB 200D 2764 200D 1F48B 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏻‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, light skin tone, medium skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏻‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, light skin tone, medium-dark skin tone 1F9D1 1F3FB 200D 2764 200D 1F48B 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏻‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, light skin tone, medium-dark skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏻‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, light skin tone, dark skin tone 1F9D1 1F3FB 200D 2764 200D 1F48B 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏻‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, light skin tone, dark skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏼‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium-light skin tone, light skin tone 1F9D1 1F3FC 200D 2764 200D 1F48B 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏼‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium-light skin tone, light skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏼‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, medium-light skin tone, medium skin tone 1F9D1 1F3FC 200D 2764 200D 1F48B 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏼‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, medium-light skin tone, medium skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏼‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, medium-light skin tone, medium-dark skin tone 1F9D1 1F3FC 200D 2764 200D 1F48B 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏼‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, medium-light skin tone, medium-dark skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏼‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium-light skin tone, dark skin tone 1F9D1 1F3FC 200D 2764 200D 1F48B 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏼‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium-light skin tone, dark skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏽‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium skin tone, light skin tone 1F9D1 1F3FD 200D 2764 200D 1F48B 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏽‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium skin tone, light skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏽‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, medium skin tone, medium-light skin tone 1F9D1 1F3FD 200D 2764 200D 1F48B 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏽‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, medium skin tone, medium-light skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏽‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, medium skin tone, medium-dark skin tone 1F9D1 1F3FD 200D 2764 200D 1F48B 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏽‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, medium skin tone, medium-dark skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏽‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium skin tone, dark skin tone 1F9D1 1F3FD 200D 2764 200D 1F48B 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏽‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium skin tone, dark skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏾‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium-dark skin tone, light skin tone 1F9D1 1F3FE 200D 2764 200D 1F48B 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏾‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium-dark skin tone, light skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏾‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, medium-dark skin tone, medium-light skin tone 1F9D1 1F3FE 200D 2764 200D 1F48B 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏾‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, medium-dark skin tone, medium-light skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏾‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, medium-dark skin tone, medium skin tone 1F9D1 1F3FE 200D 2764 200D 1F48B 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏾‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, medium-dark skin tone, medium skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏾‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium-dark skin tone, dark skin tone 1F9D1 1F3FE 200D 2764 200D 1F48B 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏾‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium-dark skin tone, dark skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏿‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, dark skin tone, light skin tone 1F9D1 1F3FF 200D 2764 200D 1F48B 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏿‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, dark skin tone, light skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏿‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, dark skin tone, medium-light skin tone 1F9D1 1F3FF 200D 2764 200D 1F48B 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏿‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, dark skin tone, medium-light skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏿‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, dark skin tone, medium skin tone 1F9D1 1F3FF 200D 2764 200D 1F48B 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏿‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, dark skin tone, medium skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏿‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, dark skin tone, medium-dark skin tone 1F9D1 1F3FF 200D 2764 200D 1F48B 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏿‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, dark skin tone, medium-dark skin tone 1F469 200D 2764 FE0F 200D 1F48B 200D 1F468 ; fully-qualified # 👩‍❤️‍💋‍👨 E2.0 kiss: woman, man 1F469 200D 2764 200D 1F48B 200D 1F468 ; minimally-qualified # 👩‍❤‍💋‍👨 E2.0 kiss: woman, man 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👩🏻‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, light skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👩🏻‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👩🏻‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👩🏻‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👩🏻‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👩🏻‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👩🏻‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👩🏻‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👩🏻‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, light skin tone, dark skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👩🏻‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, light skin tone, dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👩🏼‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👩🏼‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👩🏼‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium-light skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👩🏼‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium-light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👩🏼‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👩🏼‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👩🏼‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👩🏼‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👩🏼‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium-light skin tone, dark skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👩🏼‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium-light skin tone, dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👩🏽‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👩🏽‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👩🏽‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👩🏽‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👩🏽‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👩🏽‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👩🏽‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👩🏽‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👩🏽‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium skin tone, dark skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👩🏽‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium skin tone, dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👩🏾‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👩🏾‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👩🏾‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👩🏾‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👩🏾‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👩🏾‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👩🏾‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium-dark skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👩🏾‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium-dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👩🏾‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium-dark skin tone, dark skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👩🏾‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👩🏿‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👩🏿‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👩🏿‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👩🏿‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👩🏿‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👩🏿‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👩🏿‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👩🏿‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👩🏿‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, dark skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👩🏿‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, dark skin tone 1F468 200D 2764 FE0F 200D 1F48B 200D 1F468 ; fully-qualified # 👨‍❤️‍💋‍👨 E2.0 kiss: man, man 1F468 200D 2764 200D 1F48B 200D 1F468 ; minimally-qualified # 👨‍❤‍💋‍👨 E2.0 kiss: man, man 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👨🏻‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, light skin tone 1F468 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👨🏻‍❤‍💋‍👨🏻 E13.1 kiss: man, man, light skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👨🏻‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, light skin tone, medium-light skin tone 1F468 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👨🏻‍❤‍💋‍👨🏼 E13.1 kiss: man, man, light skin tone, medium-light skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👨🏻‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, light skin tone, medium skin tone 1F468 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👨🏻‍❤‍💋‍👨🏽 E13.1 kiss: man, man, light skin tone, medium skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👨🏻‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, light skin tone, medium-dark skin tone 1F468 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👨🏻‍❤‍💋‍👨🏾 E13.1 kiss: man, man, light skin tone, medium-dark skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👨🏻‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, light skin tone, dark skin tone 1F468 1F3FB 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👨🏻‍❤‍💋‍👨🏿 E13.1 kiss: man, man, light skin tone, dark skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👨🏼‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium-light skin tone, light skin tone 1F468 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👨🏼‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium-light skin tone, light skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👨🏼‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium-light skin tone 1F468 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👨🏼‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium-light skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👨🏼‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium-light skin tone, medium skin tone 1F468 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👨🏼‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium-light skin tone, medium skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👨🏼‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium-light skin tone, medium-dark skin tone 1F468 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👨🏼‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium-light skin tone, medium-dark skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👨🏼‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium-light skin tone, dark skin tone 1F468 1F3FC 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👨🏼‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium-light skin tone, dark skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👨🏽‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium skin tone, light skin tone 1F468 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👨🏽‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium skin tone, light skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👨🏽‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium skin tone, medium-light skin tone 1F468 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👨🏽‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium skin tone, medium-light skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👨🏽‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium skin tone 1F468 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👨🏽‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👨🏽‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium skin tone, medium-dark skin tone 1F468 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👨🏽‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium skin tone, medium-dark skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👨🏽‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium skin tone, dark skin tone 1F468 1F3FD 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👨🏽‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium skin tone, dark skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👨🏾‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium-dark skin tone, light skin tone 1F468 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👨🏾‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium-dark skin tone, light skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👨🏾‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium-dark skin tone, medium-light skin tone 1F468 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👨🏾‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium-dark skin tone, medium-light skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👨🏾‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium-dark skin tone, medium skin tone 1F468 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👨🏾‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium-dark skin tone, medium skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👨🏾‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium-dark skin tone 1F468 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👨🏾‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium-dark skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👨🏾‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium-dark skin tone, dark skin tone 1F468 1F3FE 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👨🏾‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium-dark skin tone, dark skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB ; fully-qualified # 👨🏿‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, dark skin tone, light skin tone 1F468 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FB ; minimally-qualified # 👨🏿‍❤‍💋‍👨🏻 E13.1 kiss: man, man, dark skin tone, light skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC ; fully-qualified # 👨🏿‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, dark skin tone, medium-light skin tone 1F468 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FC ; minimally-qualified # 👨🏿‍❤‍💋‍👨🏼 E13.1 kiss: man, man, dark skin tone, medium-light skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD ; fully-qualified # 👨🏿‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, dark skin tone, medium skin tone 1F468 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FD ; minimally-qualified # 👨🏿‍❤‍💋‍👨🏽 E13.1 kiss: man, man, dark skin tone, medium skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE ; fully-qualified # 👨🏿‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, dark skin tone, medium-dark skin tone 1F468 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FE ; minimally-qualified # 👨🏿‍❤‍💋‍👨🏾 E13.1 kiss: man, man, dark skin tone, medium-dark skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF ; fully-qualified # 👨🏿‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, dark skin tone 1F468 1F3FF 200D 2764 200D 1F48B 200D 1F468 1F3FF ; minimally-qualified # 👨🏿‍❤‍💋‍👨🏿 E13.1 kiss: man, man, dark skin tone 1F469 200D 2764 FE0F 200D 1F48B 200D 1F469 ; fully-qualified # 👩‍❤️‍💋‍👩 E2.0 kiss: woman, woman 1F469 200D 2764 200D 1F48B 200D 1F469 ; minimally-qualified # 👩‍❤‍💋‍👩 E2.0 kiss: woman, woman 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB ; fully-qualified # 👩🏻‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, light skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F469 1F3FB ; minimally-qualified # 👩🏻‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC ; fully-qualified # 👩🏻‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F469 1F3FC ; minimally-qualified # 👩🏻‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD ; fully-qualified # 👩🏻‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F469 1F3FD ; minimally-qualified # 👩🏻‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE ; fully-qualified # 👩🏻‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F469 1F3FE ; minimally-qualified # 👩🏻‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF ; fully-qualified # 👩🏻‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, light skin tone, dark skin tone 1F469 1F3FB 200D 2764 200D 1F48B 200D 1F469 1F3FF ; minimally-qualified # 👩🏻‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, light skin tone, dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB ; fully-qualified # 👩🏼‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F469 1F3FB ; minimally-qualified # 👩🏼‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC ; fully-qualified # 👩🏼‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-light skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F469 1F3FC ; minimally-qualified # 👩🏼‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD ; fully-qualified # 👩🏼‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F469 1F3FD ; minimally-qualified # 👩🏼‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE ; fully-qualified # 👩🏼‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F469 1F3FE ; minimally-qualified # 👩🏼‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF ; fully-qualified # 👩🏼‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-light skin tone, dark skin tone 1F469 1F3FC 200D 2764 200D 1F48B 200D 1F469 1F3FF ; minimally-qualified # 👩🏼‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-light skin tone, dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB ; fully-qualified # 👩🏽‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F469 1F3FB ; minimally-qualified # 👩🏽‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC ; fully-qualified # 👩🏽‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F469 1F3FC ; minimally-qualified # 👩🏽‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD ; fully-qualified # 👩🏽‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F469 1F3FD ; minimally-qualified # 👩🏽‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE ; fully-qualified # 👩🏽‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F469 1F3FE ; minimally-qualified # 👩🏽‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF ; fully-qualified # 👩🏽‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium skin tone, dark skin tone 1F469 1F3FD 200D 2764 200D 1F48B 200D 1F469 1F3FF ; minimally-qualified # 👩🏽‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium skin tone, dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB ; fully-qualified # 👩🏾‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F469 1F3FB ; minimally-qualified # 👩🏾‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC ; fully-qualified # 👩🏾‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F469 1F3FC ; minimally-qualified # 👩🏾‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD ; fully-qualified # 👩🏾‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F469 1F3FD ; minimally-qualified # 👩🏾‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE ; fully-qualified # 👩🏾‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-dark skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F469 1F3FE ; minimally-qualified # 👩🏾‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF ; fully-qualified # 👩🏾‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-dark skin tone, dark skin tone 1F469 1F3FE 200D 2764 200D 1F48B 200D 1F469 1F3FF ; minimally-qualified # 👩🏾‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB ; fully-qualified # 👩🏿‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F469 1F3FB ; minimally-qualified # 👩🏿‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC ; fully-qualified # 👩🏿‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F469 1F3FC ; minimally-qualified # 👩🏿‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD ; fully-qualified # 👩🏿‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F469 1F3FD ; minimally-qualified # 👩🏿‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE ; fully-qualified # 👩🏿‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F469 1F3FE ; minimally-qualified # 👩🏿‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF ; fully-qualified # 👩🏿‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, dark skin tone 1F469 1F3FF 200D 2764 200D 1F48B 200D 1F469 1F3FF ; minimally-qualified # 👩🏿‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, dark skin tone 1F491 ; fully-qualified # 💑 E0.6 couple with heart 1F491 1F3FB ; fully-qualified # 💑🏻 E13.1 couple with heart: light skin tone 1F491 1F3FC ; fully-qualified # 💑🏼 E13.1 couple with heart: medium-light skin tone 1F491 1F3FD ; fully-qualified # 💑🏽 E13.1 couple with heart: medium skin tone 1F491 1F3FE ; fully-qualified # 💑🏾 E13.1 couple with heart: medium-dark skin tone 1F491 1F3FF ; fully-qualified # 💑🏿 E13.1 couple with heart: dark skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏻‍❤️‍🧑🏼 E13.1 couple with heart: person, person, light skin tone, medium-light skin tone 1F9D1 1F3FB 200D 2764 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏻‍❤‍🧑🏼 E13.1 couple with heart: person, person, light skin tone, medium-light skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏻‍❤️‍🧑🏽 E13.1 couple with heart: person, person, light skin tone, medium skin tone 1F9D1 1F3FB 200D 2764 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏻‍❤‍🧑🏽 E13.1 couple with heart: person, person, light skin tone, medium skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏻‍❤️‍🧑🏾 E13.1 couple with heart: person, person, light skin tone, medium-dark skin tone 1F9D1 1F3FB 200D 2764 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏻‍❤‍🧑🏾 E13.1 couple with heart: person, person, light skin tone, medium-dark skin tone 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏻‍❤️‍🧑🏿 E13.1 couple with heart: person, person, light skin tone, dark skin tone 1F9D1 1F3FB 200D 2764 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏻‍❤‍🧑🏿 E13.1 couple with heart: person, person, light skin tone, dark skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏼‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium-light skin tone, light skin tone 1F9D1 1F3FC 200D 2764 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏼‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium-light skin tone, light skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏼‍❤️‍🧑🏽 E13.1 couple with heart: person, person, medium-light skin tone, medium skin tone 1F9D1 1F3FC 200D 2764 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏼‍❤‍🧑🏽 E13.1 couple with heart: person, person, medium-light skin tone, medium skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏼‍❤️‍🧑🏾 E13.1 couple with heart: person, person, medium-light skin tone, medium-dark skin tone 1F9D1 1F3FC 200D 2764 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏼‍❤‍🧑🏾 E13.1 couple with heart: person, person, medium-light skin tone, medium-dark skin tone 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏼‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium-light skin tone, dark skin tone 1F9D1 1F3FC 200D 2764 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏼‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium-light skin tone, dark skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏽‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium skin tone, light skin tone 1F9D1 1F3FD 200D 2764 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏽‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium skin tone, light skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏽‍❤️‍🧑🏼 E13.1 couple with heart: person, person, medium skin tone, medium-light skin tone 1F9D1 1F3FD 200D 2764 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏽‍❤‍🧑🏼 E13.1 couple with heart: person, person, medium skin tone, medium-light skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏽‍❤️‍🧑🏾 E13.1 couple with heart: person, person, medium skin tone, medium-dark skin tone 1F9D1 1F3FD 200D 2764 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏽‍❤‍🧑🏾 E13.1 couple with heart: person, person, medium skin tone, medium-dark skin tone 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏽‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium skin tone, dark skin tone 1F9D1 1F3FD 200D 2764 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏽‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium skin tone, dark skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏾‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium-dark skin tone, light skin tone 1F9D1 1F3FE 200D 2764 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏾‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium-dark skin tone, light skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏾‍❤️‍🧑🏼 E13.1 couple with heart: person, person, medium-dark skin tone, medium-light skin tone 1F9D1 1F3FE 200D 2764 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏾‍❤‍🧑🏼 E13.1 couple with heart: person, person, medium-dark skin tone, medium-light skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏾‍❤️‍🧑🏽 E13.1 couple with heart: person, person, medium-dark skin tone, medium skin tone 1F9D1 1F3FE 200D 2764 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏾‍❤‍🧑🏽 E13.1 couple with heart: person, person, medium-dark skin tone, medium skin tone 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FF ; fully-qualified # 🧑🏾‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium-dark skin tone, dark skin tone 1F9D1 1F3FE 200D 2764 200D 1F9D1 1F3FF ; minimally-qualified # 🧑🏾‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium-dark skin tone, dark skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FB ; fully-qualified # 🧑🏿‍❤️‍🧑🏻 E13.1 couple with heart: person, person, dark skin tone, light skin tone 1F9D1 1F3FF 200D 2764 200D 1F9D1 1F3FB ; minimally-qualified # 🧑🏿‍❤‍🧑🏻 E13.1 couple with heart: person, person, dark skin tone, light skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FC ; fully-qualified # 🧑🏿‍❤️‍🧑🏼 E13.1 couple with heart: person, person, dark skin tone, medium-light skin tone 1F9D1 1F3FF 200D 2764 200D 1F9D1 1F3FC ; minimally-qualified # 🧑🏿‍❤‍🧑🏼 E13.1 couple with heart: person, person, dark skin tone, medium-light skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FD ; fully-qualified # 🧑🏿‍❤️‍🧑🏽 E13.1 couple with heart: person, person, dark skin tone, medium skin tone 1F9D1 1F3FF 200D 2764 200D 1F9D1 1F3FD ; minimally-qualified # 🧑🏿‍❤‍🧑🏽 E13.1 couple with heart: person, person, dark skin tone, medium skin tone 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FE ; fully-qualified # 🧑🏿‍❤️‍🧑🏾 E13.1 couple with heart: person, person, dark skin tone, medium-dark skin tone 1F9D1 1F3FF 200D 2764 200D 1F9D1 1F3FE ; minimally-qualified # 🧑🏿‍❤‍🧑🏾 E13.1 couple with heart: person, person, dark skin tone, medium-dark skin tone 1F469 200D 2764 FE0F 200D 1F468 ; fully-qualified # 👩‍❤️‍👨 E2.0 couple with heart: woman, man 1F469 200D 2764 200D 1F468 ; minimally-qualified # 👩‍❤‍👨 E2.0 couple with heart: woman, man 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👩🏻‍❤️‍👨🏻 E13.1 couple with heart: woman, man, light skin tone 1F469 1F3FB 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👩🏻‍❤‍👨🏻 E13.1 couple with heart: woman, man, light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👩🏻‍❤️‍👨🏼 E13.1 couple with heart: woman, man, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👩🏻‍❤‍👨🏼 E13.1 couple with heart: woman, man, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👩🏻‍❤️‍👨🏽 E13.1 couple with heart: woman, man, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👩🏻‍❤‍👨🏽 E13.1 couple with heart: woman, man, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👩🏻‍❤️‍👨🏾 E13.1 couple with heart: woman, man, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👩🏻‍❤‍👨🏾 E13.1 couple with heart: woman, man, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👩🏻‍❤️‍👨🏿 E13.1 couple with heart: woman, man, light skin tone, dark skin tone 1F469 1F3FB 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👩🏻‍❤‍👨🏿 E13.1 couple with heart: woman, man, light skin tone, dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👩🏼‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👩🏼‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👩🏼‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium-light skin tone 1F469 1F3FC 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👩🏼‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium-light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👩🏼‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👩🏼‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👩🏼‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👩🏼‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👩🏼‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium-light skin tone, dark skin tone 1F469 1F3FC 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👩🏼‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium-light skin tone, dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👩🏽‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👩🏽‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👩🏽‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👩🏽‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👩🏽‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium skin tone 1F469 1F3FD 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👩🏽‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👩🏽‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👩🏽‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👩🏽‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium skin tone, dark skin tone 1F469 1F3FD 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👩🏽‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium skin tone, dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👩🏾‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👩🏾‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👩🏾‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👩🏾‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👩🏾‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👩🏾‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👩🏾‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium-dark skin tone 1F469 1F3FE 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👩🏾‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium-dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👩🏾‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium-dark skin tone, dark skin tone 1F469 1F3FE 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👩🏾‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👩🏿‍❤️‍👨🏻 E13.1 couple with heart: woman, man, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👩🏿‍❤‍👨🏻 E13.1 couple with heart: woman, man, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👩🏿‍❤️‍👨🏼 E13.1 couple with heart: woman, man, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👩🏿‍❤‍👨🏼 E13.1 couple with heart: woman, man, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👩🏿‍❤️‍👨🏽 E13.1 couple with heart: woman, man, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👩🏿‍❤‍👨🏽 E13.1 couple with heart: woman, man, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👩🏿‍❤️‍👨🏾 E13.1 couple with heart: woman, man, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👩🏿‍❤‍👨🏾 E13.1 couple with heart: woman, man, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👩🏿‍❤️‍👨🏿 E13.1 couple with heart: woman, man, dark skin tone 1F469 1F3FF 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👩🏿‍❤‍👨🏿 E13.1 couple with heart: woman, man, dark skin tone 1F468 200D 2764 FE0F 200D 1F468 ; fully-qualified # 👨‍❤️‍👨 E2.0 couple with heart: man, man 1F468 200D 2764 200D 1F468 ; minimally-qualified # 👨‍❤‍👨 E2.0 couple with heart: man, man 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👨🏻‍❤️‍👨🏻 E13.1 couple with heart: man, man, light skin tone 1F468 1F3FB 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👨🏻‍❤‍👨🏻 E13.1 couple with heart: man, man, light skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👨🏻‍❤️‍👨🏼 E13.1 couple with heart: man, man, light skin tone, medium-light skin tone 1F468 1F3FB 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👨🏻‍❤‍👨🏼 E13.1 couple with heart: man, man, light skin tone, medium-light skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👨🏻‍❤️‍👨🏽 E13.1 couple with heart: man, man, light skin tone, medium skin tone 1F468 1F3FB 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👨🏻‍❤‍👨🏽 E13.1 couple with heart: man, man, light skin tone, medium skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👨🏻‍❤️‍👨🏾 E13.1 couple with heart: man, man, light skin tone, medium-dark skin tone 1F468 1F3FB 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👨🏻‍❤‍👨🏾 E13.1 couple with heart: man, man, light skin tone, medium-dark skin tone 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👨🏻‍❤️‍👨🏿 E13.1 couple with heart: man, man, light skin tone, dark skin tone 1F468 1F3FB 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👨🏻‍❤‍👨🏿 E13.1 couple with heart: man, man, light skin tone, dark skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👨🏼‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium-light skin tone, light skin tone 1F468 1F3FC 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👨🏼‍❤‍👨🏻 E13.1 couple with heart: man, man, medium-light skin tone, light skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👨🏼‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium-light skin tone 1F468 1F3FC 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👨🏼‍❤‍👨🏼 E13.1 couple with heart: man, man, medium-light skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👨🏼‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium-light skin tone, medium skin tone 1F468 1F3FC 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👨🏼‍❤‍👨🏽 E13.1 couple with heart: man, man, medium-light skin tone, medium skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👨🏼‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium-light skin tone, medium-dark skin tone 1F468 1F3FC 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👨🏼‍❤‍👨🏾 E13.1 couple with heart: man, man, medium-light skin tone, medium-dark skin tone 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👨🏼‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium-light skin tone, dark skin tone 1F468 1F3FC 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👨🏼‍❤‍👨🏿 E13.1 couple with heart: man, man, medium-light skin tone, dark skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👨🏽‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium skin tone, light skin tone 1F468 1F3FD 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👨🏽‍❤‍👨🏻 E13.1 couple with heart: man, man, medium skin tone, light skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👨🏽‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium skin tone, medium-light skin tone 1F468 1F3FD 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👨🏽‍❤‍👨🏼 E13.1 couple with heart: man, man, medium skin tone, medium-light skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👨🏽‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium skin tone 1F468 1F3FD 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👨🏽‍❤‍👨🏽 E13.1 couple with heart: man, man, medium skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👨🏽‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium skin tone, medium-dark skin tone 1F468 1F3FD 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👨🏽‍❤‍👨🏾 E13.1 couple with heart: man, man, medium skin tone, medium-dark skin tone 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👨🏽‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium skin tone, dark skin tone 1F468 1F3FD 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👨🏽‍❤‍👨🏿 E13.1 couple with heart: man, man, medium skin tone, dark skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👨🏾‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium-dark skin tone, light skin tone 1F468 1F3FE 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👨🏾‍❤‍👨🏻 E13.1 couple with heart: man, man, medium-dark skin tone, light skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👨🏾‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium-dark skin tone, medium-light skin tone 1F468 1F3FE 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👨🏾‍❤‍👨🏼 E13.1 couple with heart: man, man, medium-dark skin tone, medium-light skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👨🏾‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium-dark skin tone, medium skin tone 1F468 1F3FE 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👨🏾‍❤‍👨🏽 E13.1 couple with heart: man, man, medium-dark skin tone, medium skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👨🏾‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium-dark skin tone 1F468 1F3FE 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👨🏾‍❤‍👨🏾 E13.1 couple with heart: man, man, medium-dark skin tone 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👨🏾‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium-dark skin tone, dark skin tone 1F468 1F3FE 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👨🏾‍❤‍👨🏿 E13.1 couple with heart: man, man, medium-dark skin tone, dark skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FB ; fully-qualified # 👨🏿‍❤️‍👨🏻 E13.1 couple with heart: man, man, dark skin tone, light skin tone 1F468 1F3FF 200D 2764 200D 1F468 1F3FB ; minimally-qualified # 👨🏿‍❤‍👨🏻 E13.1 couple with heart: man, man, dark skin tone, light skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FC ; fully-qualified # 👨🏿‍❤️‍👨🏼 E13.1 couple with heart: man, man, dark skin tone, medium-light skin tone 1F468 1F3FF 200D 2764 200D 1F468 1F3FC ; minimally-qualified # 👨🏿‍❤‍👨🏼 E13.1 couple with heart: man, man, dark skin tone, medium-light skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FD ; fully-qualified # 👨🏿‍❤️‍👨🏽 E13.1 couple with heart: man, man, dark skin tone, medium skin tone 1F468 1F3FF 200D 2764 200D 1F468 1F3FD ; minimally-qualified # 👨🏿‍❤‍👨🏽 E13.1 couple with heart: man, man, dark skin tone, medium skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FE ; fully-qualified # 👨🏿‍❤️‍👨🏾 E13.1 couple with heart: man, man, dark skin tone, medium-dark skin tone 1F468 1F3FF 200D 2764 200D 1F468 1F3FE ; minimally-qualified # 👨🏿‍❤‍👨🏾 E13.1 couple with heart: man, man, dark skin tone, medium-dark skin tone 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FF ; fully-qualified # 👨🏿‍❤️‍👨🏿 E13.1 couple with heart: man, man, dark skin tone 1F468 1F3FF 200D 2764 200D 1F468 1F3FF ; minimally-qualified # 👨🏿‍❤‍👨🏿 E13.1 couple with heart: man, man, dark skin tone 1F469 200D 2764 FE0F 200D 1F469 ; fully-qualified # 👩‍❤️‍👩 E2.0 couple with heart: woman, woman 1F469 200D 2764 200D 1F469 ; minimally-qualified # 👩‍❤‍👩 E2.0 couple with heart: woman, woman 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FB ; fully-qualified # 👩🏻‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, light skin tone 1F469 1F3FB 200D 2764 200D 1F469 1F3FB ; minimally-qualified # 👩🏻‍❤‍👩🏻 E13.1 couple with heart: woman, woman, light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FC ; fully-qualified # 👩🏻‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 200D 1F469 1F3FC ; minimally-qualified # 👩🏻‍❤‍👩🏼 E13.1 couple with heart: woman, woman, light skin tone, medium-light skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FD ; fully-qualified # 👩🏻‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 200D 1F469 1F3FD ; minimally-qualified # 👩🏻‍❤‍👩🏽 E13.1 couple with heart: woman, woman, light skin tone, medium skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FE ; fully-qualified # 👩🏻‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏻‍❤‍👩🏾 E13.1 couple with heart: woman, woman, light skin tone, medium-dark skin tone 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏻‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, light skin tone, dark skin tone 1F469 1F3FB 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏻‍❤‍👩🏿 E13.1 couple with heart: woman, woman, light skin tone, dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FB ; fully-qualified # 👩🏼‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 200D 1F469 1F3FB ; minimally-qualified # 👩🏼‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium-light skin tone, light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FC ; fully-qualified # 👩🏼‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium-light skin tone 1F469 1F3FC 200D 2764 200D 1F469 1F3FC ; minimally-qualified # 👩🏼‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium-light skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FD ; fully-qualified # 👩🏼‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 200D 1F469 1F3FD ; minimally-qualified # 👩🏼‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium-light skin tone, medium skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FE ; fully-qualified # 👩🏼‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏼‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏼‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium-light skin tone, dark skin tone 1F469 1F3FC 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏼‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium-light skin tone, dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FB ; fully-qualified # 👩🏽‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 200D 1F469 1F3FB ; minimally-qualified # 👩🏽‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium skin tone, light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FC ; fully-qualified # 👩🏽‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 200D 1F469 1F3FC ; minimally-qualified # 👩🏽‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium skin tone, medium-light skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FD ; fully-qualified # 👩🏽‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium skin tone 1F469 1F3FD 200D 2764 200D 1F469 1F3FD ; minimally-qualified # 👩🏽‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FE ; fully-qualified # 👩🏽‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏽‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium skin tone, medium-dark skin tone 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏽‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium skin tone, dark skin tone 1F469 1F3FD 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏽‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium skin tone, dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FB ; fully-qualified # 👩🏾‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 200D 1F469 1F3FB ; minimally-qualified # 👩🏾‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium-dark skin tone, light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FC ; fully-qualified # 👩🏾‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 200D 1F469 1F3FC ; minimally-qualified # 👩🏾‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FD ; fully-qualified # 👩🏾‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 200D 1F469 1F3FD ; minimally-qualified # 👩🏾‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FE ; fully-qualified # 👩🏾‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium-dark skin tone 1F469 1F3FE 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏾‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium-dark skin tone 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏾‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium-dark skin tone, dark skin tone 1F469 1F3FE 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏾‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium-dark skin tone, dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FB ; fully-qualified # 👩🏿‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FB ; minimally-qualified # 👩🏿‍❤‍👩🏻 E13.1 couple with heart: woman, woman, dark skin tone, light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FC ; fully-qualified # 👩🏿‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FC ; minimally-qualified # 👩🏿‍❤‍👩🏼 E13.1 couple with heart: woman, woman, dark skin tone, medium-light skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FD ; fully-qualified # 👩🏿‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FD ; minimally-qualified # 👩🏿‍❤‍👩🏽 E13.1 couple with heart: woman, woman, dark skin tone, medium skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FE ; fully-qualified # 👩🏿‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏿‍❤‍👩🏾 E13.1 couple with heart: woman, woman, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏿‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏿‍❤‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone 1F46A ; fully-qualified # 👪 E0.6 family 1F468 200D 1F469 200D 1F466 ; fully-qualified # 👨‍👩‍👦 E2.0 family: man, woman, boy 1F468 200D 1F469 200D 1F467 ; fully-qualified # 👨‍👩‍👧 E2.0 family: man, woman, girl 1F468 200D 1F469 200D 1F467 200D 1F466 ; fully-qualified # 👨‍👩‍👧‍👦 E2.0 family: man, woman, girl, boy 1F468 200D 1F469 200D 1F466 200D 1F466 ; fully-qualified # 👨‍👩‍👦‍👦 E2.0 family: man, woman, boy, boy 1F468 200D 1F469 200D 1F467 200D 1F467 ; fully-qualified # 👨‍👩‍👧‍👧 E2.0 family: man, woman, girl, girl 1F468 200D 1F468 200D 1F466 ; fully-qualified # 👨‍👨‍👦 E2.0 family: man, man, boy 1F468 200D 1F468 200D 1F467 ; fully-qualified # 👨‍👨‍👧 E2.0 family: man, man, girl 1F468 200D 1F468 200D 1F467 200D 1F466 ; fully-qualified # 👨‍👨‍👧‍👦 E2.0 family: man, man, girl, boy 1F468 200D 1F468 200D 1F466 200D 1F466 ; fully-qualified # 👨‍👨‍👦‍👦 E2.0 family: man, man, boy, boy 1F468 200D 1F468 200D 1F467 200D 1F467 ; fully-qualified # 👨‍👨‍👧‍👧 E2.0 family: man, man, girl, girl 1F469 200D 1F469 200D 1F466 ; fully-qualified # 👩‍👩‍👦 E2.0 family: woman, woman, boy 1F469 200D 1F469 200D 1F467 ; fully-qualified # 👩‍👩‍👧 E2.0 family: woman, woman, girl 1F469 200D 1F469 200D 1F467 200D 1F466 ; fully-qualified # 👩‍👩‍👧‍👦 E2.0 family: woman, woman, girl, boy 1F469 200D 1F469 200D 1F466 200D 1F466 ; fully-qualified # 👩‍👩‍👦‍👦 E2.0 family: woman, woman, boy, boy 1F469 200D 1F469 200D 1F467 200D 1F467 ; fully-qualified # 👩‍👩‍👧‍👧 E2.0 family: woman, woman, girl, girl 1F468 200D 1F466 ; fully-qualified # 👨‍👦 E4.0 family: man, boy 1F468 200D 1F466 200D 1F466 ; fully-qualified # 👨‍👦‍👦 E4.0 family: man, boy, boy 1F468 200D 1F467 ; fully-qualified # 👨‍👧 E4.0 family: man, girl 1F468 200D 1F467 200D 1F466 ; fully-qualified # 👨‍👧‍👦 E4.0 family: man, girl, boy 1F468 200D 1F467 200D 1F467 ; fully-qualified # 👨‍👧‍👧 E4.0 family: man, girl, girl 1F469 200D 1F466 ; fully-qualified # 👩‍👦 E4.0 family: woman, boy 1F469 200D 1F466 200D 1F466 ; fully-qualified # 👩‍👦‍👦 E4.0 family: woman, boy, boy 1F469 200D 1F467 ; fully-qualified # 👩‍👧 E4.0 family: woman, girl 1F469 200D 1F467 200D 1F466 ; fully-qualified # 👩‍👧‍👦 E4.0 family: woman, girl, boy 1F469 200D 1F467 200D 1F467 ; fully-qualified # 👩‍👧‍👧 E4.0 family: woman, girl, girl # subgroup: person-symbol 1F5E3 FE0F ; fully-qualified # 🗣️ E0.7 speaking head 1F5E3 ; unqualified # 🗣 E0.7 speaking head 1F464 ; fully-qualified # 👤 E0.6 bust in silhouette 1F465 ; fully-qualified # 👥 E1.0 busts in silhouette 1FAC2 ; fully-qualified # 🫂 E13.0 people hugging 1F463 ; fully-qualified # 👣 E0.6 footprints # People & Body subtotal: 2899 # People & Body subtotal: 494 w/o modifiers # group: Component # subgroup: skin-tone 1F3FB ; component # 🏻 E1.0 light skin tone 1F3FC ; component # 🏼 E1.0 medium-light skin tone 1F3FD ; component # 🏽 E1.0 medium skin tone 1F3FE ; component # 🏾 E1.0 medium-dark skin tone 1F3FF ; component # 🏿 E1.0 dark skin tone # subgroup: hair-style 1F9B0 ; component # 🦰 E11.0 red hair 1F9B1 ; component # 🦱 E11.0 curly hair 1F9B3 ; component # 🦳 E11.0 white hair 1F9B2 ; component # 🦲 E11.0 bald # Component subtotal: 9 # Component subtotal: 4 w/o modifiers # group: Animals & Nature # subgroup: animal-mammal 1F435 ; fully-qualified # 🐵 E0.6 monkey face 1F412 ; fully-qualified # 🐒 E0.6 monkey 1F98D ; fully-qualified # 🦍 E3.0 gorilla 1F9A7 ; fully-qualified # 🦧 E12.0 orangutan 1F436 ; fully-qualified # 🐶 E0.6 dog face 1F415 ; fully-qualified # 🐕 E0.7 dog 1F9AE ; fully-qualified # 🦮 E12.0 guide dog 1F415 200D 1F9BA ; fully-qualified # 🐕‍🦺 E12.0 service dog 1F429 ; fully-qualified # 🐩 E0.6 poodle 1F43A ; fully-qualified # 🐺 E0.6 wolf 1F98A ; fully-qualified # 🦊 E3.0 fox 1F99D ; fully-qualified # 🦝 E11.0 raccoon 1F431 ; fully-qualified # 🐱 E0.6 cat face 1F408 ; fully-qualified # 🐈 E0.7 cat 1F408 200D 2B1B ; fully-qualified # 🐈‍⬛ E13.0 black cat 1F981 ; fully-qualified # 🦁 E1.0 lion 1F42F ; fully-qualified # 🐯 E0.6 tiger face 1F405 ; fully-qualified # 🐅 E1.0 tiger 1F406 ; fully-qualified # 🐆 E1.0 leopard 1F434 ; fully-qualified # 🐴 E0.6 horse face 1F40E ; fully-qualified # 🐎 E0.6 horse 1F984 ; fully-qualified # 🦄 E1.0 unicorn 1F993 ; fully-qualified # 🦓 E5.0 zebra 1F98C ; fully-qualified # 🦌 E3.0 deer 1F9AC ; fully-qualified # 🦬 E13.0 bison 1F42E ; fully-qualified # 🐮 E0.6 cow face 1F402 ; fully-qualified # 🐂 E1.0 ox 1F403 ; fully-qualified # 🐃 E1.0 water buffalo 1F404 ; fully-qualified # 🐄 E1.0 cow 1F437 ; fully-qualified # 🐷 E0.6 pig face 1F416 ; fully-qualified # 🐖 E1.0 pig 1F417 ; fully-qualified # 🐗 E0.6 boar 1F43D ; fully-qualified # 🐽 E0.6 pig nose 1F40F ; fully-qualified # 🐏 E1.0 ram 1F411 ; fully-qualified # 🐑 E0.6 ewe 1F410 ; fully-qualified # 🐐 E1.0 goat 1F42A ; fully-qualified # 🐪 E1.0 camel 1F42B ; fully-qualified # 🐫 E0.6 two-hump camel 1F999 ; fully-qualified # 🦙 E11.0 llama 1F992 ; fully-qualified # 🦒 E5.0 giraffe 1F418 ; fully-qualified # 🐘 E0.6 elephant 1F9A3 ; fully-qualified # 🦣 E13.0 mammoth 1F98F ; fully-qualified # 🦏 E3.0 rhinoceros 1F99B ; fully-qualified # 🦛 E11.0 hippopotamus 1F42D ; fully-qualified # 🐭 E0.6 mouse face 1F401 ; fully-qualified # 🐁 E1.0 mouse 1F400 ; fully-qualified # 🐀 E1.0 rat 1F439 ; fully-qualified # 🐹 E0.6 hamster 1F430 ; fully-qualified # 🐰 E0.6 rabbit face 1F407 ; fully-qualified # 🐇 E1.0 rabbit 1F43F FE0F ; fully-qualified # 🐿️ E0.7 chipmunk 1F43F ; unqualified # 🐿 E0.7 chipmunk 1F9AB ; fully-qualified # 🦫 E13.0 beaver 1F994 ; fully-qualified # 🦔 E5.0 hedgehog 1F987 ; fully-qualified # 🦇 E3.0 bat 1F43B ; fully-qualified # 🐻 E0.6 bear 1F43B 200D 2744 FE0F ; fully-qualified # 🐻‍❄️ E13.0 polar bear 1F43B 200D 2744 ; minimally-qualified # 🐻‍❄ E13.0 polar bear 1F428 ; fully-qualified # 🐨 E0.6 koala 1F43C ; fully-qualified # 🐼 E0.6 panda 1F9A5 ; fully-qualified # 🦥 E12.0 sloth 1F9A6 ; fully-qualified # 🦦 E12.0 otter 1F9A8 ; fully-qualified # 🦨 E12.0 skunk 1F998 ; fully-qualified # 🦘 E11.0 kangaroo 1F9A1 ; fully-qualified # 🦡 E11.0 badger 1F43E ; fully-qualified # 🐾 E0.6 paw prints # subgroup: animal-bird 1F983 ; fully-qualified # 🦃 E1.0 turkey 1F414 ; fully-qualified # 🐔 E0.6 chicken 1F413 ; fully-qualified # 🐓 E1.0 rooster 1F423 ; fully-qualified # 🐣 E0.6 hatching chick 1F424 ; fully-qualified # 🐤 E0.6 baby chick 1F425 ; fully-qualified # 🐥 E0.6 front-facing baby chick 1F426 ; fully-qualified # 🐦 E0.6 bird 1F427 ; fully-qualified # 🐧 E0.6 penguin 1F54A FE0F ; fully-qualified # 🕊️ E0.7 dove 1F54A ; unqualified # 🕊 E0.7 dove 1F985 ; fully-qualified # 🦅 E3.0 eagle 1F986 ; fully-qualified # 🦆 E3.0 duck 1F9A2 ; fully-qualified # 🦢 E11.0 swan 1F989 ; fully-qualified # 🦉 E3.0 owl 1F9A4 ; fully-qualified # 🦤 E13.0 dodo 1FAB6 ; fully-qualified # 🪶 E13.0 feather 1F9A9 ; fully-qualified # 🦩 E12.0 flamingo 1F99A ; fully-qualified # 🦚 E11.0 peacock 1F99C ; fully-qualified # 🦜 E11.0 parrot # subgroup: animal-amphibian 1F438 ; fully-qualified # 🐸 E0.6 frog # subgroup: animal-reptile 1F40A ; fully-qualified # 🐊 E1.0 crocodile 1F422 ; fully-qualified # 🐢 E0.6 turtle 1F98E ; fully-qualified # 🦎 E3.0 lizard 1F40D ; fully-qualified # 🐍 E0.6 snake 1F432 ; fully-qualified # 🐲 E0.6 dragon face 1F409 ; fully-qualified # 🐉 E1.0 dragon 1F995 ; fully-qualified # 🦕 E5.0 sauropod 1F996 ; fully-qualified # 🦖 E5.0 T-Rex # subgroup: animal-marine 1F433 ; fully-qualified # 🐳 E0.6 spouting whale 1F40B ; fully-qualified # 🐋 E1.0 whale 1F42C ; fully-qualified # 🐬 E0.6 dolphin 1F9AD ; fully-qualified # 🦭 E13.0 seal 1F41F ; fully-qualified # 🐟 E0.6 fish 1F420 ; fully-qualified # 🐠 E0.6 tropical fish 1F421 ; fully-qualified # 🐡 E0.6 blowfish 1F988 ; fully-qualified # 🦈 E3.0 shark 1F419 ; fully-qualified # 🐙 E0.6 octopus 1F41A ; fully-qualified # 🐚 E0.6 spiral shell # subgroup: animal-bug 1F40C ; fully-qualified # 🐌 E0.6 snail 1F98B ; fully-qualified # 🦋 E3.0 butterfly 1F41B ; fully-qualified # 🐛 E0.6 bug 1F41C ; fully-qualified # 🐜 E0.6 ant 1F41D ; fully-qualified # 🐝 E0.6 honeybee 1FAB2 ; fully-qualified # 🪲 E13.0 beetle 1F41E ; fully-qualified # 🐞 E0.6 lady beetle 1F997 ; fully-qualified # 🦗 E5.0 cricket 1FAB3 ; fully-qualified # 🪳 E13.0 cockroach 1F577 FE0F ; fully-qualified # 🕷️ E0.7 spider 1F577 ; unqualified # 🕷 E0.7 spider 1F578 FE0F ; fully-qualified # 🕸️ E0.7 spider web 1F578 ; unqualified # 🕸 E0.7 spider web 1F982 ; fully-qualified # 🦂 E1.0 scorpion 1F99F ; fully-qualified # 🦟 E11.0 mosquito 1FAB0 ; fully-qualified # 🪰 E13.0 fly 1FAB1 ; fully-qualified # 🪱 E13.0 worm 1F9A0 ; fully-qualified # 🦠 E11.0 microbe # subgroup: plant-flower 1F490 ; fully-qualified # 💐 E0.6 bouquet 1F338 ; fully-qualified # 🌸 E0.6 cherry blossom 1F4AE ; fully-qualified # 💮 E0.6 white flower 1F3F5 FE0F ; fully-qualified # 🏵️ E0.7 rosette 1F3F5 ; unqualified # 🏵 E0.7 rosette 1F339 ; fully-qualified # 🌹 E0.6 rose 1F940 ; fully-qualified # 🥀 E3.0 wilted flower 1F33A ; fully-qualified # 🌺 E0.6 hibiscus 1F33B ; fully-qualified # 🌻 E0.6 sunflower 1F33C ; fully-qualified # 🌼 E0.6 blossom 1F337 ; fully-qualified # 🌷 E0.6 tulip # subgroup: plant-other 1F331 ; fully-qualified # 🌱 E0.6 seedling 1FAB4 ; fully-qualified # 🪴 E13.0 potted plant 1F332 ; fully-qualified # 🌲 E1.0 evergreen tree 1F333 ; fully-qualified # 🌳 E1.0 deciduous tree 1F334 ; fully-qualified # 🌴 E0.6 palm tree 1F335 ; fully-qualified # 🌵 E0.6 cactus 1F33E ; fully-qualified # 🌾 E0.6 sheaf of rice 1F33F ; fully-qualified # 🌿 E0.6 herb 2618 FE0F ; fully-qualified # ☘️ E1.0 shamrock 2618 ; unqualified # ☘ E1.0 shamrock 1F340 ; fully-qualified # 🍀 E0.6 four leaf clover 1F341 ; fully-qualified # 🍁 E0.6 maple leaf 1F342 ; fully-qualified # 🍂 E0.6 fallen leaf 1F343 ; fully-qualified # 🍃 E0.6 leaf fluttering in wind # Animals & Nature subtotal: 147 # Animals & Nature subtotal: 147 w/o modifiers # group: Food & Drink # subgroup: food-fruit 1F347 ; fully-qualified # 🍇 E0.6 grapes 1F348 ; fully-qualified # 🍈 E0.6 melon 1F349 ; fully-qualified # 🍉 E0.6 watermelon 1F34A ; fully-qualified # 🍊 E0.6 tangerine 1F34B ; fully-qualified # 🍋 E1.0 lemon 1F34C ; fully-qualified # 🍌 E0.6 banana 1F34D ; fully-qualified # 🍍 E0.6 pineapple 1F96D ; fully-qualified # 🥭 E11.0 mango 1F34E ; fully-qualified # 🍎 E0.6 red apple 1F34F ; fully-qualified # 🍏 E0.6 green apple 1F350 ; fully-qualified # 🍐 E1.0 pear 1F351 ; fully-qualified # 🍑 E0.6 peach 1F352 ; fully-qualified # 🍒 E0.6 cherries 1F353 ; fully-qualified # 🍓 E0.6 strawberry 1FAD0 ; fully-qualified # 🫐 E13.0 blueberries 1F95D ; fully-qualified # 🥝 E3.0 kiwi fruit 1F345 ; fully-qualified # 🍅 E0.6 tomato 1FAD2 ; fully-qualified # 🫒 E13.0 olive 1F965 ; fully-qualified # 🥥 E5.0 coconut # subgroup: food-vegetable 1F951 ; fully-qualified # 🥑 E3.0 avocado 1F346 ; fully-qualified # 🍆 E0.6 eggplant 1F954 ; fully-qualified # 🥔 E3.0 potato 1F955 ; fully-qualified # 🥕 E3.0 carrot 1F33D ; fully-qualified # 🌽 E0.6 ear of corn 1F336 FE0F ; fully-qualified # 🌶️ E0.7 hot pepper 1F336 ; unqualified # 🌶 E0.7 hot pepper 1FAD1 ; fully-qualified # 🫑 E13.0 bell pepper 1F952 ; fully-qualified # 🥒 E3.0 cucumber 1F96C ; fully-qualified # 🥬 E11.0 leafy green 1F966 ; fully-qualified # 🥦 E5.0 broccoli 1F9C4 ; fully-qualified # 🧄 E12.0 garlic 1F9C5 ; fully-qualified # 🧅 E12.0 onion 1F344 ; fully-qualified # 🍄 E0.6 mushroom 1F95C ; fully-qualified # 🥜 E3.0 peanuts 1F330 ; fully-qualified # 🌰 E0.6 chestnut # subgroup: food-prepared 1F35E ; fully-qualified # 🍞 E0.6 bread 1F950 ; fully-qualified # 🥐 E3.0 croissant 1F956 ; fully-qualified # 🥖 E3.0 baguette bread 1FAD3 ; fully-qualified # 🫓 E13.0 flatbread 1F968 ; fully-qualified # 🥨 E5.0 pretzel 1F96F ; fully-qualified # 🥯 E11.0 bagel 1F95E ; fully-qualified # 🥞 E3.0 pancakes 1F9C7 ; fully-qualified # 🧇 E12.0 waffle 1F9C0 ; fully-qualified # 🧀 E1.0 cheese wedge 1F356 ; fully-qualified # 🍖 E0.6 meat on bone 1F357 ; fully-qualified # 🍗 E0.6 poultry leg 1F969 ; fully-qualified # 🥩 E5.0 cut of meat 1F953 ; fully-qualified # 🥓 E3.0 bacon 1F354 ; fully-qualified # 🍔 E0.6 hamburger 1F35F ; fully-qualified # 🍟 E0.6 french fries 1F355 ; fully-qualified # 🍕 E0.6 pizza 1F32D ; fully-qualified # 🌭 E1.0 hot dog 1F96A ; fully-qualified # 🥪 E5.0 sandwich 1F32E ; fully-qualified # 🌮 E1.0 taco 1F32F ; fully-qualified # 🌯 E1.0 burrito 1FAD4 ; fully-qualified # 🫔 E13.0 tamale 1F959 ; fully-qualified # 🥙 E3.0 stuffed flatbread 1F9C6 ; fully-qualified # 🧆 E12.0 falafel 1F95A ; fully-qualified # 🥚 E3.0 egg 1F373 ; fully-qualified # 🍳 E0.6 cooking 1F958 ; fully-qualified # 🥘 E3.0 shallow pan of food 1F372 ; fully-qualified # 🍲 E0.6 pot of food 1FAD5 ; fully-qualified # 🫕 E13.0 fondue 1F963 ; fully-qualified # 🥣 E5.0 bowl with spoon 1F957 ; fully-qualified # 🥗 E3.0 green salad 1F37F ; fully-qualified # 🍿 E1.0 popcorn 1F9C8 ; fully-qualified # 🧈 E12.0 butter 1F9C2 ; fully-qualified # 🧂 E11.0 salt 1F96B ; fully-qualified # 🥫 E5.0 canned food # subgroup: food-asian 1F371 ; fully-qualified # 🍱 E0.6 bento box 1F358 ; fully-qualified # 🍘 E0.6 rice cracker 1F359 ; fully-qualified # 🍙 E0.6 rice ball 1F35A ; fully-qualified # 🍚 E0.6 cooked rice 1F35B ; fully-qualified # 🍛 E0.6 curry rice 1F35C ; fully-qualified # 🍜 E0.6 steaming bowl 1F35D ; fully-qualified # 🍝 E0.6 spaghetti 1F360 ; fully-qualified # 🍠 E0.6 roasted sweet potato 1F362 ; fully-qualified # 🍢 E0.6 oden 1F363 ; fully-qualified # 🍣 E0.6 sushi 1F364 ; fully-qualified # 🍤 E0.6 fried shrimp 1F365 ; fully-qualified # 🍥 E0.6 fish cake with swirl 1F96E ; fully-qualified # 🥮 E11.0 moon cake 1F361 ; fully-qualified # 🍡 E0.6 dango 1F95F ; fully-qualified # 🥟 E5.0 dumpling 1F960 ; fully-qualified # 🥠 E5.0 fortune cookie 1F961 ; fully-qualified # 🥡 E5.0 takeout box # subgroup: food-marine 1F980 ; fully-qualified # 🦀 E1.0 crab 1F99E ; fully-qualified # 🦞 E11.0 lobster 1F990 ; fully-qualified # 🦐 E3.0 shrimp 1F991 ; fully-qualified # 🦑 E3.0 squid 1F9AA ; fully-qualified # 🦪 E12.0 oyster # subgroup: food-sweet 1F366 ; fully-qualified # 🍦 E0.6 soft ice cream 1F367 ; fully-qualified # 🍧 E0.6 shaved ice 1F368 ; fully-qualified # 🍨 E0.6 ice cream 1F369 ; fully-qualified # 🍩 E0.6 doughnut 1F36A ; fully-qualified # 🍪 E0.6 cookie 1F382 ; fully-qualified # 🎂 E0.6 birthday cake 1F370 ; fully-qualified # 🍰 E0.6 shortcake 1F9C1 ; fully-qualified # 🧁 E11.0 cupcake 1F967 ; fully-qualified # 🥧 E5.0 pie 1F36B ; fully-qualified # 🍫 E0.6 chocolate bar 1F36C ; fully-qualified # 🍬 E0.6 candy 1F36D ; fully-qualified # 🍭 E0.6 lollipop 1F36E ; fully-qualified # 🍮 E0.6 custard 1F36F ; fully-qualified # 🍯 E0.6 honey pot # subgroup: drink 1F37C ; fully-qualified # 🍼 E1.0 baby bottle 1F95B ; fully-qualified # 🥛 E3.0 glass of milk 2615 ; fully-qualified # ☕ E0.6 hot beverage 1FAD6 ; fully-qualified # 🫖 E13.0 teapot 1F375 ; fully-qualified # 🍵 E0.6 teacup without handle 1F376 ; fully-qualified # 🍶 E0.6 sake 1F37E ; fully-qualified # 🍾 E1.0 bottle with popping cork 1F377 ; fully-qualified # 🍷 E0.6 wine glass 1F378 ; fully-qualified # 🍸 E0.6 cocktail glass 1F379 ; fully-qualified # 🍹 E0.6 tropical drink 1F37A ; fully-qualified # 🍺 E0.6 beer mug 1F37B ; fully-qualified # 🍻 E0.6 clinking beer mugs 1F942 ; fully-qualified # 🥂 E3.0 clinking glasses 1F943 ; fully-qualified # 🥃 E3.0 tumbler glass 1F964 ; fully-qualified # 🥤 E5.0 cup with straw 1F9CB ; fully-qualified # 🧋 E13.0 bubble tea 1F9C3 ; fully-qualified # 🧃 E12.0 beverage box 1F9C9 ; fully-qualified # 🧉 E12.0 mate 1F9CA ; fully-qualified # 🧊 E12.0 ice # subgroup: dishware 1F962 ; fully-qualified # 🥢 E5.0 chopsticks 1F37D FE0F ; fully-qualified # 🍽️ E0.7 fork and knife with plate 1F37D ; unqualified # 🍽 E0.7 fork and knife with plate 1F374 ; fully-qualified # 🍴 E0.6 fork and knife 1F944 ; fully-qualified # 🥄 E3.0 spoon 1F52A ; fully-qualified # 🔪 E0.6 kitchen knife 1F3FA ; fully-qualified # 🏺 E1.0 amphora # Food & Drink subtotal: 131 # Food & Drink subtotal: 131 w/o modifiers # group: Travel & Places # subgroup: place-map 1F30D ; fully-qualified # 🌍 E0.7 globe showing Europe-Africa 1F30E ; fully-qualified # 🌎 E0.7 globe showing Americas 1F30F ; fully-qualified # 🌏 E0.6 globe showing Asia-Australia 1F310 ; fully-qualified # 🌐 E1.0 globe with meridians 1F5FA FE0F ; fully-qualified # 🗺️ E0.7 world map 1F5FA ; unqualified # 🗺 E0.7 world map 1F5FE ; fully-qualified # 🗾 E0.6 map of Japan 1F9ED ; fully-qualified # 🧭 E11.0 compass # subgroup: place-geographic 1F3D4 FE0F ; fully-qualified # 🏔️ E0.7 snow-capped mountain 1F3D4 ; unqualified # 🏔 E0.7 snow-capped mountain 26F0 FE0F ; fully-qualified # ⛰️ E0.7 mountain 26F0 ; unqualified # ⛰ E0.7 mountain 1F30B ; fully-qualified # 🌋 E0.6 volcano 1F5FB ; fully-qualified # 🗻 E0.6 mount fuji 1F3D5 FE0F ; fully-qualified # 🏕️ E0.7 camping 1F3D5 ; unqualified # 🏕 E0.7 camping 1F3D6 FE0F ; fully-qualified # 🏖️ E0.7 beach with umbrella 1F3D6 ; unqualified # 🏖 E0.7 beach with umbrella 1F3DC FE0F ; fully-qualified # 🏜️ E0.7 desert 1F3DC ; unqualified # 🏜 E0.7 desert 1F3DD FE0F ; fully-qualified # 🏝️ E0.7 desert island 1F3DD ; unqualified # 🏝 E0.7 desert island 1F3DE FE0F ; fully-qualified # 🏞️ E0.7 national park 1F3DE ; unqualified # 🏞 E0.7 national park # subgroup: place-building 1F3DF FE0F ; fully-qualified # 🏟️ E0.7 stadium 1F3DF ; unqualified # 🏟 E0.7 stadium 1F3DB FE0F ; fully-qualified # 🏛️ E0.7 classical building 1F3DB ; unqualified # 🏛 E0.7 classical building 1F3D7 FE0F ; fully-qualified # 🏗️ E0.7 building construction 1F3D7 ; unqualified # 🏗 E0.7 building construction 1F9F1 ; fully-qualified # 🧱 E11.0 brick 1FAA8 ; fully-qualified # 🪨 E13.0 rock 1FAB5 ; fully-qualified # 🪵 E13.0 wood 1F6D6 ; fully-qualified # 🛖 E13.0 hut 1F3D8 FE0F ; fully-qualified # 🏘️ E0.7 houses 1F3D8 ; unqualified # 🏘 E0.7 houses 1F3DA FE0F ; fully-qualified # 🏚️ E0.7 derelict house 1F3DA ; unqualified # 🏚 E0.7 derelict house 1F3E0 ; fully-qualified # 🏠 E0.6 house 1F3E1 ; fully-qualified # 🏡 E0.6 house with garden 1F3E2 ; fully-qualified # 🏢 E0.6 office building 1F3E3 ; fully-qualified # 🏣 E0.6 Japanese post office 1F3E4 ; fully-qualified # 🏤 E1.0 post office 1F3E5 ; fully-qualified # 🏥 E0.6 hospital 1F3E6 ; fully-qualified # 🏦 E0.6 bank 1F3E8 ; fully-qualified # 🏨 E0.6 hotel 1F3E9 ; fully-qualified # 🏩 E0.6 love hotel 1F3EA ; fully-qualified # 🏪 E0.6 convenience store 1F3EB ; fully-qualified # 🏫 E0.6 school 1F3EC ; fully-qualified # 🏬 E0.6 department store 1F3ED ; fully-qualified # 🏭 E0.6 factory 1F3EF ; fully-qualified # 🏯 E0.6 Japanese castle 1F3F0 ; fully-qualified # 🏰 E0.6 castle 1F492 ; fully-qualified # 💒 E0.6 wedding 1F5FC ; fully-qualified # 🗼 E0.6 Tokyo tower 1F5FD ; fully-qualified # 🗽 E0.6 Statue of Liberty # subgroup: place-religious 26EA ; fully-qualified # ⛪ E0.6 church 1F54C ; fully-qualified # 🕌 E1.0 mosque 1F6D5 ; fully-qualified # 🛕 E12.0 hindu temple 1F54D ; fully-qualified # 🕍 E1.0 synagogue 26E9 FE0F ; fully-qualified # ⛩️ E0.7 shinto shrine 26E9 ; unqualified # ⛩ E0.7 shinto shrine 1F54B ; fully-qualified # 🕋 E1.0 kaaba # subgroup: place-other 26F2 ; fully-qualified # ⛲ E0.6 fountain 26FA ; fully-qualified # ⛺ E0.6 tent 1F301 ; fully-qualified # 🌁 E0.6 foggy 1F303 ; fully-qualified # 🌃 E0.6 night with stars 1F3D9 FE0F ; fully-qualified # 🏙️ E0.7 cityscape 1F3D9 ; unqualified # 🏙 E0.7 cityscape 1F304 ; fully-qualified # 🌄 E0.6 sunrise over mountains 1F305 ; fully-qualified # 🌅 E0.6 sunrise 1F306 ; fully-qualified # 🌆 E0.6 cityscape at dusk 1F307 ; fully-qualified # 🌇 E0.6 sunset 1F309 ; fully-qualified # 🌉 E0.6 bridge at night 2668 FE0F ; fully-qualified # ♨️ E0.6 hot springs 2668 ; unqualified # ♨ E0.6 hot springs 1F3A0 ; fully-qualified # 🎠 E0.6 carousel horse 1F3A1 ; fully-qualified # 🎡 E0.6 ferris wheel 1F3A2 ; fully-qualified # 🎢 E0.6 roller coaster 1F488 ; fully-qualified # 💈 E0.6 barber pole 1F3AA ; fully-qualified # 🎪 E0.6 circus tent # subgroup: transport-ground 1F682 ; fully-qualified # 🚂 E1.0 locomotive 1F683 ; fully-qualified # 🚃 E0.6 railway car 1F684 ; fully-qualified # 🚄 E0.6 high-speed train 1F685 ; fully-qualified # 🚅 E0.6 bullet train 1F686 ; fully-qualified # 🚆 E1.0 train 1F687 ; fully-qualified # 🚇 E0.6 metro 1F688 ; fully-qualified # 🚈 E1.0 light rail 1F689 ; fully-qualified # 🚉 E0.6 station 1F68A ; fully-qualified # 🚊 E1.0 tram 1F69D ; fully-qualified # 🚝 E1.0 monorail 1F69E ; fully-qualified # 🚞 E1.0 mountain railway 1F68B ; fully-qualified # 🚋 E1.0 tram car 1F68C ; fully-qualified # 🚌 E0.6 bus 1F68D ; fully-qualified # 🚍 E0.7 oncoming bus 1F68E ; fully-qualified # 🚎 E1.0 trolleybus 1F690 ; fully-qualified # 🚐 E1.0 minibus 1F691 ; fully-qualified # 🚑 E0.6 ambulance 1F692 ; fully-qualified # 🚒 E0.6 fire engine 1F693 ; fully-qualified # 🚓 E0.6 police car 1F694 ; fully-qualified # 🚔 E0.7 oncoming police car 1F695 ; fully-qualified # 🚕 E0.6 taxi 1F696 ; fully-qualified # 🚖 E1.0 oncoming taxi 1F697 ; fully-qualified # 🚗 E0.6 automobile 1F698 ; fully-qualified # 🚘 E0.7 oncoming automobile 1F699 ; fully-qualified # 🚙 E0.6 sport utility vehicle 1F6FB ; fully-qualified # 🛻 E13.0 pickup truck 1F69A ; fully-qualified # 🚚 E0.6 delivery truck 1F69B ; fully-qualified # 🚛 E1.0 articulated lorry 1F69C ; fully-qualified # 🚜 E1.0 tractor 1F3CE FE0F ; fully-qualified # 🏎️ E0.7 racing car 1F3CE ; unqualified # 🏎 E0.7 racing car 1F3CD FE0F ; fully-qualified # 🏍️ E0.7 motorcycle 1F3CD ; unqualified # 🏍 E0.7 motorcycle 1F6F5 ; fully-qualified # 🛵 E3.0 motor scooter 1F9BD ; fully-qualified # 🦽 E12.0 manual wheelchair 1F9BC ; fully-qualified # 🦼 E12.0 motorized wheelchair 1F6FA ; fully-qualified # 🛺 E12.0 auto rickshaw 1F6B2 ; fully-qualified # 🚲 E0.6 bicycle 1F6F4 ; fully-qualified # 🛴 E3.0 kick scooter 1F6F9 ; fully-qualified # 🛹 E11.0 skateboard 1F6FC ; fully-qualified # 🛼 E13.0 roller skate 1F68F ; fully-qualified # 🚏 E0.6 bus stop 1F6E3 FE0F ; fully-qualified # 🛣️ E0.7 motorway 1F6E3 ; unqualified # 🛣 E0.7 motorway 1F6E4 FE0F ; fully-qualified # 🛤️ E0.7 railway track 1F6E4 ; unqualified # 🛤 E0.7 railway track 1F6E2 FE0F ; fully-qualified # 🛢️ E0.7 oil drum 1F6E2 ; unqualified # 🛢 E0.7 oil drum 26FD ; fully-qualified # ⛽ E0.6 fuel pump 1F6A8 ; fully-qualified # 🚨 E0.6 police car light 1F6A5 ; fully-qualified # 🚥 E0.6 horizontal traffic light 1F6A6 ; fully-qualified # 🚦 E1.0 vertical traffic light 1F6D1 ; fully-qualified # 🛑 E3.0 stop sign 1F6A7 ; fully-qualified # 🚧 E0.6 construction # subgroup: transport-water 2693 ; fully-qualified # ⚓ E0.6 anchor 26F5 ; fully-qualified # ⛵ E0.6 sailboat 1F6F6 ; fully-qualified # 🛶 E3.0 canoe 1F6A4 ; fully-qualified # 🚤 E0.6 speedboat 1F6F3 FE0F ; fully-qualified # 🛳️ E0.7 passenger ship 1F6F3 ; unqualified # 🛳 E0.7 passenger ship 26F4 FE0F ; fully-qualified # ⛴️ E0.7 ferry 26F4 ; unqualified # ⛴ E0.7 ferry 1F6E5 FE0F ; fully-qualified # 🛥️ E0.7 motor boat 1F6E5 ; unqualified # 🛥 E0.7 motor boat 1F6A2 ; fully-qualified # 🚢 E0.6 ship # subgroup: transport-air 2708 FE0F ; fully-qualified # ✈️ E0.6 airplane 2708 ; unqualified # ✈ E0.6 airplane 1F6E9 FE0F ; fully-qualified # 🛩️ E0.7 small airplane 1F6E9 ; unqualified # 🛩 E0.7 small airplane 1F6EB ; fully-qualified # 🛫 E1.0 airplane departure 1F6EC ; fully-qualified # 🛬 E1.0 airplane arrival 1FA82 ; fully-qualified # 🪂 E12.0 parachute 1F4BA ; fully-qualified # 💺 E0.6 seat 1F681 ; fully-qualified # 🚁 E1.0 helicopter 1F69F ; fully-qualified # 🚟 E1.0 suspension railway 1F6A0 ; fully-qualified # 🚠 E1.0 mountain cableway 1F6A1 ; fully-qualified # 🚡 E1.0 aerial tramway 1F6F0 FE0F ; fully-qualified # 🛰️ E0.7 satellite 1F6F0 ; unqualified # 🛰 E0.7 satellite 1F680 ; fully-qualified # 🚀 E0.6 rocket 1F6F8 ; fully-qualified # 🛸 E5.0 flying saucer # subgroup: hotel 1F6CE FE0F ; fully-qualified # 🛎️ E0.7 bellhop bell 1F6CE ; unqualified # 🛎 E0.7 bellhop bell 1F9F3 ; fully-qualified # 🧳 E11.0 luggage # subgroup: time 231B ; fully-qualified # ⌛ E0.6 hourglass done 23F3 ; fully-qualified # ⏳ E0.6 hourglass not done 231A ; fully-qualified # ⌚ E0.6 watch 23F0 ; fully-qualified # ⏰ E0.6 alarm clock 23F1 FE0F ; fully-qualified # ⏱️ E1.0 stopwatch 23F1 ; unqualified # ⏱ E1.0 stopwatch 23F2 FE0F ; fully-qualified # ⏲️ E1.0 timer clock 23F2 ; unqualified # ⏲ E1.0 timer clock 1F570 FE0F ; fully-qualified # 🕰️ E0.7 mantelpiece clock 1F570 ; unqualified # 🕰 E0.7 mantelpiece clock 1F55B ; fully-qualified # 🕛 E0.6 twelve o’clock 1F567 ; fully-qualified # 🕧 E0.7 twelve-thirty 1F550 ; fully-qualified # 🕐 E0.6 one o’clock 1F55C ; fully-qualified # 🕜 E0.7 one-thirty 1F551 ; fully-qualified # 🕑 E0.6 two o’clock 1F55D ; fully-qualified # 🕝 E0.7 two-thirty 1F552 ; fully-qualified # 🕒 E0.6 three o’clock 1F55E ; fully-qualified # 🕞 E0.7 three-thirty 1F553 ; fully-qualified # 🕓 E0.6 four o’clock 1F55F ; fully-qualified # 🕟 E0.7 four-thirty 1F554 ; fully-qualified # 🕔 E0.6 five o’clock 1F560 ; fully-qualified # 🕠 E0.7 five-thirty 1F555 ; fully-qualified # 🕕 E0.6 six o’clock 1F561 ; fully-qualified # 🕡 E0.7 six-thirty 1F556 ; fully-qualified # 🕖 E0.6 seven o’clock 1F562 ; fully-qualified # 🕢 E0.7 seven-thirty 1F557 ; fully-qualified # 🕗 E0.6 eight o’clock 1F563 ; fully-qualified # 🕣 E0.7 eight-thirty 1F558 ; fully-qualified # 🕘 E0.6 nine o’clock 1F564 ; fully-qualified # 🕤 E0.7 nine-thirty 1F559 ; fully-qualified # 🕙 E0.6 ten o’clock 1F565 ; fully-qualified # 🕥 E0.7 ten-thirty 1F55A ; fully-qualified # 🕚 E0.6 eleven o’clock 1F566 ; fully-qualified # 🕦 E0.7 eleven-thirty # subgroup: sky & weather 1F311 ; fully-qualified # 🌑 E0.6 new moon 1F312 ; fully-qualified # 🌒 E1.0 waxing crescent moon 1F313 ; fully-qualified # 🌓 E0.6 first quarter moon 1F314 ; fully-qualified # 🌔 E0.6 waxing gibbous moon 1F315 ; fully-qualified # 🌕 E0.6 full moon 1F316 ; fully-qualified # 🌖 E1.0 waning gibbous moon 1F317 ; fully-qualified # 🌗 E1.0 last quarter moon 1F318 ; fully-qualified # 🌘 E1.0 waning crescent moon 1F319 ; fully-qualified # 🌙 E0.6 crescent moon 1F31A ; fully-qualified # 🌚 E1.0 new moon face 1F31B ; fully-qualified # 🌛 E0.6 first quarter moon face 1F31C ; fully-qualified # 🌜 E0.7 last quarter moon face 1F321 FE0F ; fully-qualified # 🌡️ E0.7 thermometer 1F321 ; unqualified # 🌡 E0.7 thermometer 2600 FE0F ; fully-qualified # ☀️ E0.6 sun 2600 ; unqualified # ☀ E0.6 sun 1F31D ; fully-qualified # 🌝 E1.0 full moon face 1F31E ; fully-qualified # 🌞 E1.0 sun with face 1FA90 ; fully-qualified # 🪐 E12.0 ringed planet 2B50 ; fully-qualified # ⭐ E0.6 star 1F31F ; fully-qualified # 🌟 E0.6 glowing star 1F320 ; fully-qualified # 🌠 E0.6 shooting star 1F30C ; fully-qualified # 🌌 E0.6 milky way 2601 FE0F ; fully-qualified # ☁️ E0.6 cloud 2601 ; unqualified # ☁ E0.6 cloud 26C5 ; fully-qualified # ⛅ E0.6 sun behind cloud 26C8 FE0F ; fully-qualified # ⛈️ E0.7 cloud with lightning and rain 26C8 ; unqualified # ⛈ E0.7 cloud with lightning and rain 1F324 FE0F ; fully-qualified # 🌤️ E0.7 sun behind small cloud 1F324 ; unqualified # 🌤 E0.7 sun behind small cloud 1F325 FE0F ; fully-qualified # 🌥️ E0.7 sun behind large cloud 1F325 ; unqualified # 🌥 E0.7 sun behind large cloud 1F326 FE0F ; fully-qualified # 🌦️ E0.7 sun behind rain cloud 1F326 ; unqualified # 🌦 E0.7 sun behind rain cloud 1F327 FE0F ; fully-qualified # 🌧️ E0.7 cloud with rain 1F327 ; unqualified # 🌧 E0.7 cloud with rain 1F328 FE0F ; fully-qualified # 🌨️ E0.7 cloud with snow 1F328 ; unqualified # 🌨 E0.7 cloud with snow 1F329 FE0F ; fully-qualified # 🌩️ E0.7 cloud with lightning 1F329 ; unqualified # 🌩 E0.7 cloud with lightning 1F32A FE0F ; fully-qualified # 🌪️ E0.7 tornado 1F32A ; unqualified # 🌪 E0.7 tornado 1F32B FE0F ; fully-qualified # 🌫️ E0.7 fog 1F32B ; unqualified # 🌫 E0.7 fog 1F32C FE0F ; fully-qualified # 🌬️ E0.7 wind face 1F32C ; unqualified # 🌬 E0.7 wind face 1F300 ; fully-qualified # 🌀 E0.6 cyclone 1F308 ; fully-qualified # 🌈 E0.6 rainbow 1F302 ; fully-qualified # 🌂 E0.6 closed umbrella 2602 FE0F ; fully-qualified # ☂️ E0.7 umbrella 2602 ; unqualified # ☂ E0.7 umbrella 2614 ; fully-qualified # ☔ E0.6 umbrella with rain drops 26F1 FE0F ; fully-qualified # ⛱️ E0.7 umbrella on ground 26F1 ; unqualified # ⛱ E0.7 umbrella on ground 26A1 ; fully-qualified # ⚡ E0.6 high voltage 2744 FE0F ; fully-qualified # ❄️ E0.6 snowflake 2744 ; unqualified # ❄ E0.6 snowflake 2603 FE0F ; fully-qualified # ☃️ E0.7 snowman 2603 ; unqualified # ☃ E0.7 snowman 26C4 ; fully-qualified # ⛄ E0.6 snowman without snow 2604 FE0F ; fully-qualified # ☄️ E1.0 comet 2604 ; unqualified # ☄ E1.0 comet 1F525 ; fully-qualified # 🔥 E0.6 fire 1F4A7 ; fully-qualified # 💧 E0.6 droplet 1F30A ; fully-qualified # 🌊 E0.6 water wave # Travel & Places subtotal: 264 # Travel & Places subtotal: 264 w/o modifiers # group: Activities # subgroup: event 1F383 ; fully-qualified # 🎃 E0.6 jack-o-lantern 1F384 ; fully-qualified # 🎄 E0.6 Christmas tree 1F386 ; fully-qualified # 🎆 E0.6 fireworks 1F387 ; fully-qualified # 🎇 E0.6 sparkler 1F9E8 ; fully-qualified # 🧨 E11.0 firecracker 2728 ; fully-qualified # ✨ E0.6 sparkles 1F388 ; fully-qualified # 🎈 E0.6 balloon 1F389 ; fully-qualified # 🎉 E0.6 party popper 1F38A ; fully-qualified # 🎊 E0.6 confetti ball 1F38B ; fully-qualified # 🎋 E0.6 tanabata tree 1F38D ; fully-qualified # 🎍 E0.6 pine decoration 1F38E ; fully-qualified # 🎎 E0.6 Japanese dolls 1F38F ; fully-qualified # 🎏 E0.6 carp streamer 1F390 ; fully-qualified # 🎐 E0.6 wind chime 1F391 ; fully-qualified # 🎑 E0.6 moon viewing ceremony 1F9E7 ; fully-qualified # 🧧 E11.0 red envelope 1F380 ; fully-qualified # 🎀 E0.6 ribbon 1F381 ; fully-qualified # 🎁 E0.6 wrapped gift 1F397 FE0F ; fully-qualified # 🎗️ E0.7 reminder ribbon 1F397 ; unqualified # 🎗 E0.7 reminder ribbon 1F39F FE0F ; fully-qualified # 🎟️ E0.7 admission tickets 1F39F ; unqualified # 🎟 E0.7 admission tickets 1F3AB ; fully-qualified # 🎫 E0.6 ticket # subgroup: award-medal 1F396 FE0F ; fully-qualified # 🎖️ E0.7 military medal 1F396 ; unqualified # 🎖 E0.7 military medal 1F3C6 ; fully-qualified # 🏆 E0.6 trophy 1F3C5 ; fully-qualified # 🏅 E1.0 sports medal 1F947 ; fully-qualified # 🥇 E3.0 1st place medal 1F948 ; fully-qualified # 🥈 E3.0 2nd place medal 1F949 ; fully-qualified # 🥉 E3.0 3rd place medal # subgroup: sport 26BD ; fully-qualified # ⚽ E0.6 soccer ball 26BE ; fully-qualified # ⚾ E0.6 baseball 1F94E ; fully-qualified # 🥎 E11.0 softball 1F3C0 ; fully-qualified # 🏀 E0.6 basketball 1F3D0 ; fully-qualified # 🏐 E1.0 volleyball 1F3C8 ; fully-qualified # 🏈 E0.6 american football 1F3C9 ; fully-qualified # 🏉 E1.0 rugby football 1F3BE ; fully-qualified # 🎾 E0.6 tennis 1F94F ; fully-qualified # 🥏 E11.0 flying disc 1F3B3 ; fully-qualified # 🎳 E0.6 bowling 1F3CF ; fully-qualified # 🏏 E1.0 cricket game 1F3D1 ; fully-qualified # 🏑 E1.0 field hockey 1F3D2 ; fully-qualified # 🏒 E1.0 ice hockey 1F94D ; fully-qualified # 🥍 E11.0 lacrosse 1F3D3 ; fully-qualified # 🏓 E1.0 ping pong 1F3F8 ; fully-qualified # 🏸 E1.0 badminton 1F94A ; fully-qualified # 🥊 E3.0 boxing glove 1F94B ; fully-qualified # 🥋 E3.0 martial arts uniform 1F945 ; fully-qualified # 🥅 E3.0 goal net 26F3 ; fully-qualified # ⛳ E0.6 flag in hole 26F8 FE0F ; fully-qualified # ⛸️ E0.7 ice skate 26F8 ; unqualified # ⛸ E0.7 ice skate 1F3A3 ; fully-qualified # 🎣 E0.6 fishing pole 1F93F ; fully-qualified # 🤿 E12.0 diving mask 1F3BD ; fully-qualified # 🎽 E0.6 running shirt 1F3BF ; fully-qualified # 🎿 E0.6 skis 1F6F7 ; fully-qualified # 🛷 E5.0 sled 1F94C ; fully-qualified # 🥌 E5.0 curling stone # subgroup: game 1F3AF ; fully-qualified # 🎯 E0.6 bullseye 1FA80 ; fully-qualified # 🪀 E12.0 yo-yo 1FA81 ; fully-qualified # 🪁 E12.0 kite 1F3B1 ; fully-qualified # 🎱 E0.6 pool 8 ball 1F52E ; fully-qualified # 🔮 E0.6 crystal ball 1FA84 ; fully-qualified # 🪄 E13.0 magic wand 1F9FF ; fully-qualified # 🧿 E11.0 nazar amulet 1F3AE ; fully-qualified # 🎮 E0.6 video game 1F579 FE0F ; fully-qualified # 🕹️ E0.7 joystick 1F579 ; unqualified # 🕹 E0.7 joystick 1F3B0 ; fully-qualified # 🎰 E0.6 slot machine 1F3B2 ; fully-qualified # 🎲 E0.6 game die 1F9E9 ; fully-qualified # 🧩 E11.0 puzzle piece 1F9F8 ; fully-qualified # 🧸 E11.0 teddy bear 1FA85 ; fully-qualified # 🪅 E13.0 piñata 1FA86 ; fully-qualified # 🪆 E13.0 nesting dolls 2660 FE0F ; fully-qualified # ♠️ E0.6 spade suit 2660 ; unqualified # ♠ E0.6 spade suit 2665 FE0F ; fully-qualified # ♥️ E0.6 heart suit 2665 ; unqualified # ♥ E0.6 heart suit 2666 FE0F ; fully-qualified # ♦️ E0.6 diamond suit 2666 ; unqualified # ♦ E0.6 diamond suit 2663 FE0F ; fully-qualified # ♣️ E0.6 club suit 2663 ; unqualified # ♣ E0.6 club suit 265F FE0F ; fully-qualified # ♟️ E11.0 chess pawn 265F ; unqualified # ♟ E11.0 chess pawn 1F0CF ; fully-qualified # 🃏 E0.6 joker 1F004 ; fully-qualified # 🀄 E0.6 mahjong red dragon 1F3B4 ; fully-qualified # 🎴 E0.6 flower playing cards # subgroup: arts & crafts 1F3AD ; fully-qualified # 🎭 E0.6 performing arts 1F5BC FE0F ; fully-qualified # 🖼️ E0.7 framed picture 1F5BC ; unqualified # 🖼 E0.7 framed picture 1F3A8 ; fully-qualified # 🎨 E0.6 artist palette 1F9F5 ; fully-qualified # 🧵 E11.0 thread 1FAA1 ; fully-qualified # 🪡 E13.0 sewing needle 1F9F6 ; fully-qualified # 🧶 E11.0 yarn 1FAA2 ; fully-qualified # 🪢 E13.0 knot # Activities subtotal: 95 # Activities subtotal: 95 w/o modifiers # group: Objects # subgroup: clothing 1F453 ; fully-qualified # 👓 E0.6 glasses 1F576 FE0F ; fully-qualified # 🕶️ E0.7 sunglasses 1F576 ; unqualified # 🕶 E0.7 sunglasses 1F97D ; fully-qualified # 🥽 E11.0 goggles 1F97C ; fully-qualified # 🥼 E11.0 lab coat 1F9BA ; fully-qualified # 🦺 E12.0 safety vest 1F454 ; fully-qualified # 👔 E0.6 necktie 1F455 ; fully-qualified # 👕 E0.6 t-shirt 1F456 ; fully-qualified # 👖 E0.6 jeans 1F9E3 ; fully-qualified # 🧣 E5.0 scarf 1F9E4 ; fully-qualified # 🧤 E5.0 gloves 1F9E5 ; fully-qualified # 🧥 E5.0 coat 1F9E6 ; fully-qualified # 🧦 E5.0 socks 1F457 ; fully-qualified # 👗 E0.6 dress 1F458 ; fully-qualified # 👘 E0.6 kimono 1F97B ; fully-qualified # 🥻 E12.0 sari 1FA71 ; fully-qualified # 🩱 E12.0 one-piece swimsuit 1FA72 ; fully-qualified # 🩲 E12.0 briefs 1FA73 ; fully-qualified # 🩳 E12.0 shorts 1F459 ; fully-qualified # 👙 E0.6 bikini 1F45A ; fully-qualified # 👚 E0.6 woman’s clothes 1F45B ; fully-qualified # 👛 E0.6 purse 1F45C ; fully-qualified # 👜 E0.6 handbag 1F45D ; fully-qualified # 👝 E0.6 clutch bag 1F6CD FE0F ; fully-qualified # 🛍️ E0.7 shopping bags 1F6CD ; unqualified # 🛍 E0.7 shopping bags 1F392 ; fully-qualified # 🎒 E0.6 backpack 1FA74 ; fully-qualified # 🩴 E13.0 thong sandal 1F45E ; fully-qualified # 👞 E0.6 man’s shoe 1F45F ; fully-qualified # 👟 E0.6 running shoe 1F97E ; fully-qualified # 🥾 E11.0 hiking boot 1F97F ; fully-qualified # 🥿 E11.0 flat shoe 1F460 ; fully-qualified # 👠 E0.6 high-heeled shoe 1F461 ; fully-qualified # 👡 E0.6 woman’s sandal 1FA70 ; fully-qualified # 🩰 E12.0 ballet shoes 1F462 ; fully-qualified # 👢 E0.6 woman’s boot 1F451 ; fully-qualified # 👑 E0.6 crown 1F452 ; fully-qualified # 👒 E0.6 woman’s hat 1F3A9 ; fully-qualified # 🎩 E0.6 top hat 1F393 ; fully-qualified # 🎓 E0.6 graduation cap 1F9E2 ; fully-qualified # 🧢 E5.0 billed cap 1FA96 ; fully-qualified # 🪖 E13.0 military helmet 26D1 FE0F ; fully-qualified # ⛑️ E0.7 rescue worker’s helmet 26D1 ; unqualified # ⛑ E0.7 rescue worker’s helmet 1F4FF ; fully-qualified # 📿 E1.0 prayer beads 1F484 ; fully-qualified # 💄 E0.6 lipstick 1F48D ; fully-qualified # 💍 E0.6 ring 1F48E ; fully-qualified # 💎 E0.6 gem stone # subgroup: sound 1F507 ; fully-qualified # 🔇 E1.0 muted speaker 1F508 ; fully-qualified # 🔈 E0.7 speaker low volume 1F509 ; fully-qualified # 🔉 E1.0 speaker medium volume 1F50A ; fully-qualified # 🔊 E0.6 speaker high volume 1F4E2 ; fully-qualified # 📢 E0.6 loudspeaker 1F4E3 ; fully-qualified # 📣 E0.6 megaphone 1F4EF ; fully-qualified # 📯 E1.0 postal horn 1F514 ; fully-qualified # 🔔 E0.6 bell 1F515 ; fully-qualified # 🔕 E1.0 bell with slash # subgroup: music 1F3BC ; fully-qualified # 🎼 E0.6 musical score 1F3B5 ; fully-qualified # 🎵 E0.6 musical note 1F3B6 ; fully-qualified # 🎶 E0.6 musical notes 1F399 FE0F ; fully-qualified # 🎙️ E0.7 studio microphone 1F399 ; unqualified # 🎙 E0.7 studio microphone 1F39A FE0F ; fully-qualified # 🎚️ E0.7 level slider 1F39A ; unqualified # 🎚 E0.7 level slider 1F39B FE0F ; fully-qualified # 🎛️ E0.7 control knobs 1F39B ; unqualified # 🎛 E0.7 control knobs 1F3A4 ; fully-qualified # 🎤 E0.6 microphone 1F3A7 ; fully-qualified # 🎧 E0.6 headphone 1F4FB ; fully-qualified # 📻 E0.6 radio # subgroup: musical-instrument 1F3B7 ; fully-qualified # 🎷 E0.6 saxophone 1FA97 ; fully-qualified # 🪗 E13.0 accordion 1F3B8 ; fully-qualified # 🎸 E0.6 guitar 1F3B9 ; fully-qualified # 🎹 E0.6 musical keyboard 1F3BA ; fully-qualified # 🎺 E0.6 trumpet 1F3BB ; fully-qualified # 🎻 E0.6 violin 1FA95 ; fully-qualified # 🪕 E12.0 banjo 1F941 ; fully-qualified # 🥁 E3.0 drum 1FA98 ; fully-qualified # 🪘 E13.0 long drum # subgroup: phone 1F4F1 ; fully-qualified # 📱 E0.6 mobile phone 1F4F2 ; fully-qualified # 📲 E0.6 mobile phone with arrow 260E FE0F ; fully-qualified # ☎️ E0.6 telephone 260E ; unqualified # ☎ E0.6 telephone 1F4DE ; fully-qualified # 📞 E0.6 telephone receiver 1F4DF ; fully-qualified # 📟 E0.6 pager 1F4E0 ; fully-qualified # 📠 E0.6 fax machine # subgroup: computer 1F50B ; fully-qualified # 🔋 E0.6 battery 1F50C ; fully-qualified # 🔌 E0.6 electric plug 1F4BB ; fully-qualified # 💻 E0.6 laptop 1F5A5 FE0F ; fully-qualified # 🖥️ E0.7 desktop computer 1F5A5 ; unqualified # 🖥 E0.7 desktop computer 1F5A8 FE0F ; fully-qualified # 🖨️ E0.7 printer 1F5A8 ; unqualified # 🖨 E0.7 printer 2328 FE0F ; fully-qualified # ⌨️ E1.0 keyboard 2328 ; unqualified # ⌨ E1.0 keyboard 1F5B1 FE0F ; fully-qualified # 🖱️ E0.7 computer mouse 1F5B1 ; unqualified # 🖱 E0.7 computer mouse 1F5B2 FE0F ; fully-qualified # 🖲️ E0.7 trackball 1F5B2 ; unqualified # 🖲 E0.7 trackball 1F4BD ; fully-qualified # 💽 E0.6 computer disk 1F4BE ; fully-qualified # 💾 E0.6 floppy disk 1F4BF ; fully-qualified # 💿 E0.6 optical disk 1F4C0 ; fully-qualified # 📀 E0.6 dvd 1F9EE ; fully-qualified # 🧮 E11.0 abacus # subgroup: light & video 1F3A5 ; fully-qualified # 🎥 E0.6 movie camera 1F39E FE0F ; fully-qualified # 🎞️ E0.7 film frames 1F39E ; unqualified # 🎞 E0.7 film frames 1F4FD FE0F ; fully-qualified # 📽️ E0.7 film projector 1F4FD ; unqualified # 📽 E0.7 film projector 1F3AC ; fully-qualified # 🎬 E0.6 clapper board 1F4FA ; fully-qualified # 📺 E0.6 television 1F4F7 ; fully-qualified # 📷 E0.6 camera 1F4F8 ; fully-qualified # 📸 E1.0 camera with flash 1F4F9 ; fully-qualified # 📹 E0.6 video camera 1F4FC ; fully-qualified # 📼 E0.6 videocassette 1F50D ; fully-qualified # 🔍 E0.6 magnifying glass tilted left 1F50E ; fully-qualified # 🔎 E0.6 magnifying glass tilted right 1F56F FE0F ; fully-qualified # 🕯️ E0.7 candle 1F56F ; unqualified # 🕯 E0.7 candle 1F4A1 ; fully-qualified # 💡 E0.6 light bulb 1F526 ; fully-qualified # 🔦 E0.6 flashlight 1F3EE ; fully-qualified # 🏮 E0.6 red paper lantern 1FA94 ; fully-qualified # 🪔 E12.0 diya lamp # subgroup: book-paper 1F4D4 ; fully-qualified # 📔 E0.6 notebook with decorative cover 1F4D5 ; fully-qualified # 📕 E0.6 closed book 1F4D6 ; fully-qualified # 📖 E0.6 open book 1F4D7 ; fully-qualified # 📗 E0.6 green book 1F4D8 ; fully-qualified # 📘 E0.6 blue book 1F4D9 ; fully-qualified # 📙 E0.6 orange book 1F4DA ; fully-qualified # 📚 E0.6 books 1F4D3 ; fully-qualified # 📓 E0.6 notebook 1F4D2 ; fully-qualified # 📒 E0.6 ledger 1F4C3 ; fully-qualified # 📃 E0.6 page with curl 1F4DC ; fully-qualified # 📜 E0.6 scroll 1F4C4 ; fully-qualified # 📄 E0.6 page facing up 1F4F0 ; fully-qualified # 📰 E0.6 newspaper 1F5DE FE0F ; fully-qualified # 🗞️ E0.7 rolled-up newspaper 1F5DE ; unqualified # 🗞 E0.7 rolled-up newspaper 1F4D1 ; fully-qualified # 📑 E0.6 bookmark tabs 1F516 ; fully-qualified # 🔖 E0.6 bookmark 1F3F7 FE0F ; fully-qualified # 🏷️ E0.7 label 1F3F7 ; unqualified # 🏷 E0.7 label # subgroup: money 1F4B0 ; fully-qualified # 💰 E0.6 money bag 1FA99 ; fully-qualified # 🪙 E13.0 coin 1F4B4 ; fully-qualified # 💴 E0.6 yen banknote 1F4B5 ; fully-qualified # 💵 E0.6 dollar banknote 1F4B6 ; fully-qualified # 💶 E1.0 euro banknote 1F4B7 ; fully-qualified # 💷 E1.0 pound banknote 1F4B8 ; fully-qualified # 💸 E0.6 money with wings 1F4B3 ; fully-qualified # 💳 E0.6 credit card 1F9FE ; fully-qualified # 🧾 E11.0 receipt 1F4B9 ; fully-qualified # 💹 E0.6 chart increasing with yen # subgroup: mail 2709 FE0F ; fully-qualified # ✉️ E0.6 envelope 2709 ; unqualified # ✉ E0.6 envelope 1F4E7 ; fully-qualified # 📧 E0.6 e-mail 1F4E8 ; fully-qualified # 📨 E0.6 incoming envelope 1F4E9 ; fully-qualified # 📩 E0.6 envelope with arrow 1F4E4 ; fully-qualified # 📤 E0.6 outbox tray 1F4E5 ; fully-qualified # 📥 E0.6 inbox tray 1F4E6 ; fully-qualified # 📦 E0.6 package 1F4EB ; fully-qualified # 📫 E0.6 closed mailbox with raised flag 1F4EA ; fully-qualified # 📪 E0.6 closed mailbox with lowered flag 1F4EC ; fully-qualified # 📬 E0.7 open mailbox with raised flag 1F4ED ; fully-qualified # 📭 E0.7 open mailbox with lowered flag 1F4EE ; fully-qualified # 📮 E0.6 postbox 1F5F3 FE0F ; fully-qualified # 🗳️ E0.7 ballot box with ballot 1F5F3 ; unqualified # 🗳 E0.7 ballot box with ballot # subgroup: writing 270F FE0F ; fully-qualified # ✏️ E0.6 pencil 270F ; unqualified # ✏ E0.6 pencil 2712 FE0F ; fully-qualified # ✒️ E0.6 black nib 2712 ; unqualified # ✒ E0.6 black nib 1F58B FE0F ; fully-qualified # 🖋️ E0.7 fountain pen 1F58B ; unqualified # 🖋 E0.7 fountain pen 1F58A FE0F ; fully-qualified # 🖊️ E0.7 pen 1F58A ; unqualified # 🖊 E0.7 pen 1F58C FE0F ; fully-qualified # 🖌️ E0.7 paintbrush 1F58C ; unqualified # 🖌 E0.7 paintbrush 1F58D FE0F ; fully-qualified # 🖍️ E0.7 crayon 1F58D ; unqualified # 🖍 E0.7 crayon 1F4DD ; fully-qualified # 📝 E0.6 memo # subgroup: office 1F4BC ; fully-qualified # 💼 E0.6 briefcase 1F4C1 ; fully-qualified # 📁 E0.6 file folder 1F4C2 ; fully-qualified # 📂 E0.6 open file folder 1F5C2 FE0F ; fully-qualified # 🗂️ E0.7 card index dividers 1F5C2 ; unqualified # 🗂 E0.7 card index dividers 1F4C5 ; fully-qualified # 📅 E0.6 calendar 1F4C6 ; fully-qualified # 📆 E0.6 tear-off calendar 1F5D2 FE0F ; fully-qualified # 🗒️ E0.7 spiral notepad 1F5D2 ; unqualified # 🗒 E0.7 spiral notepad 1F5D3 FE0F ; fully-qualified # 🗓️ E0.7 spiral calendar 1F5D3 ; unqualified # 🗓 E0.7 spiral calendar 1F4C7 ; fully-qualified # 📇 E0.6 card index 1F4C8 ; fully-qualified # 📈 E0.6 chart increasing 1F4C9 ; fully-qualified # 📉 E0.6 chart decreasing 1F4CA ; fully-qualified # 📊 E0.6 bar chart 1F4CB ; fully-qualified # 📋 E0.6 clipboard 1F4CC ; fully-qualified # 📌 E0.6 pushpin 1F4CD ; fully-qualified # 📍 E0.6 round pushpin 1F4CE ; fully-qualified # 📎 E0.6 paperclip 1F587 FE0F ; fully-qualified # 🖇️ E0.7 linked paperclips 1F587 ; unqualified # 🖇 E0.7 linked paperclips 1F4CF ; fully-qualified # 📏 E0.6 straight ruler 1F4D0 ; fully-qualified # 📐 E0.6 triangular ruler 2702 FE0F ; fully-qualified # ✂️ E0.6 scissors 2702 ; unqualified # ✂ E0.6 scissors 1F5C3 FE0F ; fully-qualified # 🗃️ E0.7 card file box 1F5C3 ; unqualified # 🗃 E0.7 card file box 1F5C4 FE0F ; fully-qualified # 🗄️ E0.7 file cabinet 1F5C4 ; unqualified # 🗄 E0.7 file cabinet 1F5D1 FE0F ; fully-qualified # 🗑️ E0.7 wastebasket 1F5D1 ; unqualified # 🗑 E0.7 wastebasket # subgroup: lock 1F512 ; fully-qualified # 🔒 E0.6 locked 1F513 ; fully-qualified # 🔓 E0.6 unlocked 1F50F ; fully-qualified # 🔏 E0.6 locked with pen 1F510 ; fully-qualified # 🔐 E0.6 locked with key 1F511 ; fully-qualified # 🔑 E0.6 key 1F5DD FE0F ; fully-qualified # 🗝️ E0.7 old key 1F5DD ; unqualified # 🗝 E0.7 old key # subgroup: tool 1F528 ; fully-qualified # 🔨 E0.6 hammer 1FA93 ; fully-qualified # 🪓 E12.0 axe 26CF FE0F ; fully-qualified # ⛏️ E0.7 pick 26CF ; unqualified # ⛏ E0.7 pick 2692 FE0F ; fully-qualified # ⚒️ E1.0 hammer and pick 2692 ; unqualified # ⚒ E1.0 hammer and pick 1F6E0 FE0F ; fully-qualified # 🛠️ E0.7 hammer and wrench 1F6E0 ; unqualified # 🛠 E0.7 hammer and wrench 1F5E1 FE0F ; fully-qualified # 🗡️ E0.7 dagger 1F5E1 ; unqualified # 🗡 E0.7 dagger 2694 FE0F ; fully-qualified # ⚔️ E1.0 crossed swords 2694 ; unqualified # ⚔ E1.0 crossed swords 1F52B ; fully-qualified # 🔫 E0.6 water pistol 1FA83 ; fully-qualified # 🪃 E13.0 boomerang 1F3F9 ; fully-qualified # 🏹 E1.0 bow and arrow 1F6E1 FE0F ; fully-qualified # 🛡️ E0.7 shield 1F6E1 ; unqualified # 🛡 E0.7 shield 1FA9A ; fully-qualified # 🪚 E13.0 carpentry saw 1F527 ; fully-qualified # 🔧 E0.6 wrench 1FA9B ; fully-qualified # 🪛 E13.0 screwdriver 1F529 ; fully-qualified # 🔩 E0.6 nut and bolt 2699 FE0F ; fully-qualified # ⚙️ E1.0 gear 2699 ; unqualified # ⚙ E1.0 gear 1F5DC FE0F ; fully-qualified # 🗜️ E0.7 clamp 1F5DC ; unqualified # 🗜 E0.7 clamp 2696 FE0F ; fully-qualified # ⚖️ E1.0 balance scale 2696 ; unqualified # ⚖ E1.0 balance scale 1F9AF ; fully-qualified # 🦯 E12.0 white cane 1F517 ; fully-qualified # 🔗 E0.6 link 26D3 FE0F ; fully-qualified # ⛓️ E0.7 chains 26D3 ; unqualified # ⛓ E0.7 chains 1FA9D ; fully-qualified # 🪝 E13.0 hook 1F9F0 ; fully-qualified # 🧰 E11.0 toolbox 1F9F2 ; fully-qualified # 🧲 E11.0 magnet 1FA9C ; fully-qualified # 🪜 E13.0 ladder # subgroup: science 2697 FE0F ; fully-qualified # ⚗️ E1.0 alembic 2697 ; unqualified # ⚗ E1.0 alembic 1F9EA ; fully-qualified # 🧪 E11.0 test tube 1F9EB ; fully-qualified # 🧫 E11.0 petri dish 1F9EC ; fully-qualified # 🧬 E11.0 dna 1F52C ; fully-qualified # 🔬 E1.0 microscope 1F52D ; fully-qualified # 🔭 E1.0 telescope 1F4E1 ; fully-qualified # 📡 E0.6 satellite antenna # subgroup: medical 1F489 ; fully-qualified # 💉 E0.6 syringe 1FA78 ; fully-qualified # 🩸 E12.0 drop of blood 1F48A ; fully-qualified # 💊 E0.6 pill 1FA79 ; fully-qualified # 🩹 E12.0 adhesive bandage 1FA7A ; fully-qualified # 🩺 E12.0 stethoscope # subgroup: household 1F6AA ; fully-qualified # 🚪 E0.6 door 1F6D7 ; fully-qualified # 🛗 E13.0 elevator 1FA9E ; fully-qualified # 🪞 E13.0 mirror 1FA9F ; fully-qualified # 🪟 E13.0 window 1F6CF FE0F ; fully-qualified # 🛏️ E0.7 bed 1F6CF ; unqualified # 🛏 E0.7 bed 1F6CB FE0F ; fully-qualified # 🛋️ E0.7 couch and lamp 1F6CB ; unqualified # 🛋 E0.7 couch and lamp 1FA91 ; fully-qualified # 🪑 E12.0 chair 1F6BD ; fully-qualified # 🚽 E0.6 toilet 1FAA0 ; fully-qualified # 🪠 E13.0 plunger 1F6BF ; fully-qualified # 🚿 E1.0 shower 1F6C1 ; fully-qualified # 🛁 E1.0 bathtub 1FAA4 ; fully-qualified # 🪤 E13.0 mouse trap 1FA92 ; fully-qualified # 🪒 E12.0 razor 1F9F4 ; fully-qualified # 🧴 E11.0 lotion bottle 1F9F7 ; fully-qualified # 🧷 E11.0 safety pin 1F9F9 ; fully-qualified # 🧹 E11.0 broom 1F9FA ; fully-qualified # 🧺 E11.0 basket 1F9FB ; fully-qualified # 🧻 E11.0 roll of paper 1FAA3 ; fully-qualified # 🪣 E13.0 bucket 1F9FC ; fully-qualified # 🧼 E11.0 soap 1FAA5 ; fully-qualified # 🪥 E13.0 toothbrush 1F9FD ; fully-qualified # 🧽 E11.0 sponge 1F9EF ; fully-qualified # 🧯 E11.0 fire extinguisher 1F6D2 ; fully-qualified # 🛒 E3.0 shopping cart # subgroup: other-object 1F6AC ; fully-qualified # 🚬 E0.6 cigarette 26B0 FE0F ; fully-qualified # ⚰️ E1.0 coffin 26B0 ; unqualified # ⚰ E1.0 coffin 1FAA6 ; fully-qualified # 🪦 E13.0 headstone 26B1 FE0F ; fully-qualified # ⚱️ E1.0 funeral urn 26B1 ; unqualified # ⚱ E1.0 funeral urn 1F5FF ; fully-qualified # 🗿 E0.6 moai 1FAA7 ; fully-qualified # 🪧 E13.0 placard # Objects subtotal: 299 # Objects subtotal: 299 w/o modifiers # group: Symbols # subgroup: transport-sign 1F3E7 ; fully-qualified # 🏧 E0.6 ATM sign 1F6AE ; fully-qualified # 🚮 E1.0 litter in bin sign 1F6B0 ; fully-qualified # 🚰 E1.0 potable water 267F ; fully-qualified # ♿ E0.6 wheelchair symbol 1F6B9 ; fully-qualified # 🚹 E0.6 men’s room 1F6BA ; fully-qualified # 🚺 E0.6 women’s room 1F6BB ; fully-qualified # 🚻 E0.6 restroom 1F6BC ; fully-qualified # 🚼 E0.6 baby symbol 1F6BE ; fully-qualified # 🚾 E0.6 water closet 1F6C2 ; fully-qualified # 🛂 E1.0 passport control 1F6C3 ; fully-qualified # 🛃 E1.0 customs 1F6C4 ; fully-qualified # 🛄 E1.0 baggage claim 1F6C5 ; fully-qualified # 🛅 E1.0 left luggage # subgroup: warning 26A0 FE0F ; fully-qualified # ⚠️ E0.6 warning 26A0 ; unqualified # ⚠ E0.6 warning 1F6B8 ; fully-qualified # 🚸 E1.0 children crossing 26D4 ; fully-qualified # ⛔ E0.6 no entry 1F6AB ; fully-qualified # 🚫 E0.6 prohibited 1F6B3 ; fully-qualified # 🚳 E1.0 no bicycles 1F6AD ; fully-qualified # 🚭 E0.6 no smoking 1F6AF ; fully-qualified # 🚯 E1.0 no littering 1F6B1 ; fully-qualified # 🚱 E1.0 non-potable water 1F6B7 ; fully-qualified # 🚷 E1.0 no pedestrians 1F4F5 ; fully-qualified # 📵 E1.0 no mobile phones 1F51E ; fully-qualified # 🔞 E0.6 no one under eighteen 2622 FE0F ; fully-qualified # ☢️ E1.0 radioactive 2622 ; unqualified # ☢ E1.0 radioactive 2623 FE0F ; fully-qualified # ☣️ E1.0 biohazard 2623 ; unqualified # ☣ E1.0 biohazard # subgroup: arrow 2B06 FE0F ; fully-qualified # ⬆️ E0.6 up arrow 2B06 ; unqualified # ⬆ E0.6 up arrow 2197 FE0F ; fully-qualified # ↗️ E0.6 up-right arrow 2197 ; unqualified # ↗ E0.6 up-right arrow 27A1 FE0F ; fully-qualified # ➡️ E0.6 right arrow 27A1 ; unqualified # ➡ E0.6 right arrow 2198 FE0F ; fully-qualified # ↘️ E0.6 down-right arrow 2198 ; unqualified # ↘ E0.6 down-right arrow 2B07 FE0F ; fully-qualified # ⬇️ E0.6 down arrow 2B07 ; unqualified # ⬇ E0.6 down arrow 2199 FE0F ; fully-qualified # ↙️ E0.6 down-left arrow 2199 ; unqualified # ↙ E0.6 down-left arrow 2B05 FE0F ; fully-qualified # ⬅️ E0.6 left arrow 2B05 ; unqualified # ⬅ E0.6 left arrow 2196 FE0F ; fully-qualified # ↖️ E0.6 up-left arrow 2196 ; unqualified # ↖ E0.6 up-left arrow 2195 FE0F ; fully-qualified # ↕️ E0.6 up-down arrow 2195 ; unqualified # ↕ E0.6 up-down arrow 2194 FE0F ; fully-qualified # ↔️ E0.6 left-right arrow 2194 ; unqualified # ↔ E0.6 left-right arrow 21A9 FE0F ; fully-qualified # ↩️ E0.6 right arrow curving left 21A9 ; unqualified # ↩ E0.6 right arrow curving left 21AA FE0F ; fully-qualified # ↪️ E0.6 left arrow curving right 21AA ; unqualified # ↪ E0.6 left arrow curving right 2934 FE0F ; fully-qualified # ⤴️ E0.6 right arrow curving up 2934 ; unqualified # ⤴ E0.6 right arrow curving up 2935 FE0F ; fully-qualified # ⤵️ E0.6 right arrow curving down 2935 ; unqualified # ⤵ E0.6 right arrow curving down 1F503 ; fully-qualified # 🔃 E0.6 clockwise vertical arrows 1F504 ; fully-qualified # 🔄 E1.0 counterclockwise arrows button 1F519 ; fully-qualified # 🔙 E0.6 BACK arrow 1F51A ; fully-qualified # 🔚 E0.6 END arrow 1F51B ; fully-qualified # 🔛 E0.6 ON! arrow 1F51C ; fully-qualified # 🔜 E0.6 SOON arrow 1F51D ; fully-qualified # 🔝 E0.6 TOP arrow # subgroup: religion 1F6D0 ; fully-qualified # 🛐 E1.0 place of worship 269B FE0F ; fully-qualified # ⚛️ E1.0 atom symbol 269B ; unqualified # ⚛ E1.0 atom symbol 1F549 FE0F ; fully-qualified # 🕉️ E0.7 om 1F549 ; unqualified # 🕉 E0.7 om 2721 FE0F ; fully-qualified # ✡️ E0.7 star of David 2721 ; unqualified # ✡ E0.7 star of David 2638 FE0F ; fully-qualified # ☸️ E0.7 wheel of dharma 2638 ; unqualified # ☸ E0.7 wheel of dharma 262F FE0F ; fully-qualified # ☯️ E0.7 yin yang 262F ; unqualified # ☯ E0.7 yin yang 271D FE0F ; fully-qualified # ✝️ E0.7 latin cross 271D ; unqualified # ✝ E0.7 latin cross 2626 FE0F ; fully-qualified # ☦️ E1.0 orthodox cross 2626 ; unqualified # ☦ E1.0 orthodox cross 262A FE0F ; fully-qualified # ☪️ E0.7 star and crescent 262A ; unqualified # ☪ E0.7 star and crescent 262E FE0F ; fully-qualified # ☮️ E1.0 peace symbol 262E ; unqualified # ☮ E1.0 peace symbol 1F54E ; fully-qualified # 🕎 E1.0 menorah 1F52F ; fully-qualified # 🔯 E0.6 dotted six-pointed star # subgroup: zodiac 2648 ; fully-qualified # ♈ E0.6 Aries 2649 ; fully-qualified # ♉ E0.6 Taurus 264A ; fully-qualified # ♊ E0.6 Gemini 264B ; fully-qualified # ♋ E0.6 Cancer 264C ; fully-qualified # ♌ E0.6 Leo 264D ; fully-qualified # ♍ E0.6 Virgo 264E ; fully-qualified # ♎ E0.6 Libra 264F ; fully-qualified # ♏ E0.6 Scorpio 2650 ; fully-qualified # ♐ E0.6 Sagittarius 2651 ; fully-qualified # ♑ E0.6 Capricorn 2652 ; fully-qualified # ♒ E0.6 Aquarius 2653 ; fully-qualified # ♓ E0.6 Pisces 26CE ; fully-qualified # ⛎ E0.6 Ophiuchus # subgroup: av-symbol 1F500 ; fully-qualified # 🔀 E1.0 shuffle tracks button 1F501 ; fully-qualified # 🔁 E1.0 repeat button 1F502 ; fully-qualified # 🔂 E1.0 repeat single button 25B6 FE0F ; fully-qualified # ▶️ E0.6 play button 25B6 ; unqualified # ▶ E0.6 play button 23E9 ; fully-qualified # ⏩ E0.6 fast-forward button 23ED FE0F ; fully-qualified # ⏭️ E0.7 next track button 23ED ; unqualified # ⏭ E0.7 next track button 23EF FE0F ; fully-qualified # ⏯️ E1.0 play or pause button 23EF ; unqualified # ⏯ E1.0 play or pause button 25C0 FE0F ; fully-qualified # ◀️ E0.6 reverse button 25C0 ; unqualified # ◀ E0.6 reverse button 23EA ; fully-qualified # ⏪ E0.6 fast reverse button 23EE FE0F ; fully-qualified # ⏮️ E0.7 last track button 23EE ; unqualified # ⏮ E0.7 last track button 1F53C ; fully-qualified # 🔼 E0.6 upwards button 23EB ; fully-qualified # ⏫ E0.6 fast up button 1F53D ; fully-qualified # 🔽 E0.6 downwards button 23EC ; fully-qualified # ⏬ E0.6 fast down button 23F8 FE0F ; fully-qualified # ⏸️ E0.7 pause button 23F8 ; unqualified # ⏸ E0.7 pause button 23F9 FE0F ; fully-qualified # ⏹️ E0.7 stop button 23F9 ; unqualified # ⏹ E0.7 stop button 23FA FE0F ; fully-qualified # ⏺️ E0.7 record button 23FA ; unqualified # ⏺ E0.7 record button 23CF FE0F ; fully-qualified # ⏏️ E1.0 eject button 23CF ; unqualified # ⏏ E1.0 eject button 1F3A6 ; fully-qualified # 🎦 E0.6 cinema 1F505 ; fully-qualified # 🔅 E1.0 dim button 1F506 ; fully-qualified # 🔆 E1.0 bright button 1F4F6 ; fully-qualified # 📶 E0.6 antenna bars 1F4F3 ; fully-qualified # 📳 E0.6 vibration mode 1F4F4 ; fully-qualified # 📴 E0.6 mobile phone off # subgroup: gender 2640 FE0F ; fully-qualified # ♀️ E4.0 female sign 2640 ; unqualified # ♀ E4.0 female sign 2642 FE0F ; fully-qualified # ♂️ E4.0 male sign 2642 ; unqualified # ♂ E4.0 male sign 26A7 FE0F ; fully-qualified # ⚧️ E13.0 transgender symbol 26A7 ; unqualified # ⚧ E13.0 transgender symbol # subgroup: math 2716 FE0F ; fully-qualified # ✖️ E0.6 multiply 2716 ; unqualified # ✖ E0.6 multiply 2795 ; fully-qualified # ➕ E0.6 plus 2796 ; fully-qualified # ➖ E0.6 minus 2797 ; fully-qualified # ➗ E0.6 divide 267E FE0F ; fully-qualified # ♾️ E11.0 infinity 267E ; unqualified # ♾ E11.0 infinity # subgroup: punctuation 203C FE0F ; fully-qualified # ‼️ E0.6 double exclamation mark 203C ; unqualified # ‼ E0.6 double exclamation mark 2049 FE0F ; fully-qualified # ⁉️ E0.6 exclamation question mark 2049 ; unqualified # ⁉ E0.6 exclamation question mark 2753 ; fully-qualified # ❓ E0.6 red question mark 2754 ; fully-qualified # ❔ E0.6 white question mark 2755 ; fully-qualified # ❕ E0.6 white exclamation mark 2757 ; fully-qualified # ❗ E0.6 red exclamation mark 3030 FE0F ; fully-qualified # 〰️ E0.6 wavy dash 3030 ; unqualified # 〰 E0.6 wavy dash # subgroup: currency 1F4B1 ; fully-qualified # 💱 E0.6 currency exchange 1F4B2 ; fully-qualified # 💲 E0.6 heavy dollar sign # subgroup: other-symbol 2695 FE0F ; fully-qualified # ⚕️ E4.0 medical symbol 2695 ; unqualified # ⚕ E4.0 medical symbol 267B FE0F ; fully-qualified # ♻️ E0.6 recycling symbol 267B ; unqualified # ♻ E0.6 recycling symbol 269C FE0F ; fully-qualified # ⚜️ E1.0 fleur-de-lis 269C ; unqualified # ⚜ E1.0 fleur-de-lis 1F531 ; fully-qualified # 🔱 E0.6 trident emblem 1F4DB ; fully-qualified # 📛 E0.6 name badge 1F530 ; fully-qualified # 🔰 E0.6 Japanese symbol for beginner 2B55 ; fully-qualified # ⭕ E0.6 hollow red circle 2705 ; fully-qualified # ✅ E0.6 check mark button 2611 FE0F ; fully-qualified # ☑️ E0.6 check box with check 2611 ; unqualified # ☑ E0.6 check box with check 2714 FE0F ; fully-qualified # ✔️ E0.6 check mark 2714 ; unqualified # ✔ E0.6 check mark 274C ; fully-qualified # ❌ E0.6 cross mark 274E ; fully-qualified # ❎ E0.6 cross mark button 27B0 ; fully-qualified # ➰ E0.6 curly loop 27BF ; fully-qualified # ➿ E1.0 double curly loop 303D FE0F ; fully-qualified # 〽️ E0.6 part alternation mark 303D ; unqualified # 〽 E0.6 part alternation mark 2733 FE0F ; fully-qualified # ✳️ E0.6 eight-spoked asterisk 2733 ; unqualified # ✳ E0.6 eight-spoked asterisk 2734 FE0F ; fully-qualified # ✴️ E0.6 eight-pointed star 2734 ; unqualified # ✴ E0.6 eight-pointed star 2747 FE0F ; fully-qualified # ❇️ E0.6 sparkle 2747 ; unqualified # ❇ E0.6 sparkle 00A9 FE0F ; fully-qualified # ©️ E0.6 copyright 00A9 ; unqualified # © E0.6 copyright 00AE FE0F ; fully-qualified # ®️ E0.6 registered 00AE ; unqualified # ® E0.6 registered 2122 FE0F ; fully-qualified # ™️ E0.6 trade mark 2122 ; unqualified # ™ E0.6 trade mark # subgroup: keycap 0023 FE0F 20E3 ; fully-qualified # #️⃣ E0.6 keycap: # 0023 20E3 ; unqualified # #⃣ E0.6 keycap: # 002A FE0F 20E3 ; fully-qualified # *️⃣ E2.0 keycap: * 002A 20E3 ; unqualified # *⃣ E2.0 keycap: * 0030 FE0F 20E3 ; fully-qualified # 0️⃣ E0.6 keycap: 0 0030 20E3 ; unqualified # 0⃣ E0.6 keycap: 0 0031 FE0F 20E3 ; fully-qualified # 1️⃣ E0.6 keycap: 1 0031 20E3 ; unqualified # 1⃣ E0.6 keycap: 1 0032 FE0F 20E3 ; fully-qualified # 2️⃣ E0.6 keycap: 2 0032 20E3 ; unqualified # 2⃣ E0.6 keycap: 2 0033 FE0F 20E3 ; fully-qualified # 3️⃣ E0.6 keycap: 3 0033 20E3 ; unqualified # 3⃣ E0.6 keycap: 3 0034 FE0F 20E3 ; fully-qualified # 4️⃣ E0.6 keycap: 4 0034 20E3 ; unqualified # 4⃣ E0.6 keycap: 4 0035 FE0F 20E3 ; fully-qualified # 5️⃣ E0.6 keycap: 5 0035 20E3 ; unqualified # 5⃣ E0.6 keycap: 5 0036 FE0F 20E3 ; fully-qualified # 6️⃣ E0.6 keycap: 6 0036 20E3 ; unqualified # 6⃣ E0.6 keycap: 6 0037 FE0F 20E3 ; fully-qualified # 7️⃣ E0.6 keycap: 7 0037 20E3 ; unqualified # 7⃣ E0.6 keycap: 7 0038 FE0F 20E3 ; fully-qualified # 8️⃣ E0.6 keycap: 8 0038 20E3 ; unqualified # 8⃣ E0.6 keycap: 8 0039 FE0F 20E3 ; fully-qualified # 9️⃣ E0.6 keycap: 9 0039 20E3 ; unqualified # 9⃣ E0.6 keycap: 9 1F51F ; fully-qualified # 🔟 E0.6 keycap: 10 # subgroup: alphanum 1F520 ; fully-qualified # 🔠 E0.6 input latin uppercase 1F521 ; fully-qualified # 🔡 E0.6 input latin lowercase 1F522 ; fully-qualified # 🔢 E0.6 input numbers 1F523 ; fully-qualified # 🔣 E0.6 input symbols 1F524 ; fully-qualified # 🔤 E0.6 input latin letters 1F170 FE0F ; fully-qualified # 🅰️ E0.6 A button (blood type) 1F170 ; unqualified # 🅰 E0.6 A button (blood type) 1F18E ; fully-qualified # 🆎 E0.6 AB button (blood type) 1F171 FE0F ; fully-qualified # 🅱️ E0.6 B button (blood type) 1F171 ; unqualified # 🅱 E0.6 B button (blood type) 1F191 ; fully-qualified # 🆑 E0.6 CL button 1F192 ; fully-qualified # 🆒 E0.6 COOL button 1F193 ; fully-qualified # 🆓 E0.6 FREE button 2139 FE0F ; fully-qualified # ℹ️ E0.6 information 2139 ; unqualified # ℹ E0.6 information 1F194 ; fully-qualified # 🆔 E0.6 ID button 24C2 FE0F ; fully-qualified # Ⓜ️ E0.6 circled M 24C2 ; unqualified # Ⓜ E0.6 circled M 1F195 ; fully-qualified # 🆕 E0.6 NEW button 1F196 ; fully-qualified # 🆖 E0.6 NG button 1F17E FE0F ; fully-qualified # 🅾️ E0.6 O button (blood type) 1F17E ; unqualified # 🅾 E0.6 O button (blood type) 1F197 ; fully-qualified # 🆗 E0.6 OK button 1F17F FE0F ; fully-qualified # 🅿️ E0.6 P button 1F17F ; unqualified # 🅿 E0.6 P button 1F198 ; fully-qualified # 🆘 E0.6 SOS button 1F199 ; fully-qualified # 🆙 E0.6 UP! button 1F19A ; fully-qualified # 🆚 E0.6 VS button 1F201 ; fully-qualified # 🈁 E0.6 Japanese “here” button 1F202 FE0F ; fully-qualified # 🈂️ E0.6 Japanese “service charge” button 1F202 ; unqualified # 🈂 E0.6 Japanese “service charge” button 1F237 FE0F ; fully-qualified # 🈷️ E0.6 Japanese “monthly amount” button 1F237 ; unqualified # 🈷 E0.6 Japanese “monthly amount” button 1F236 ; fully-qualified # 🈶 E0.6 Japanese “not free of charge” button 1F22F ; fully-qualified # 🈯 E0.6 Japanese “reserved” button 1F250 ; fully-qualified # 🉐 E0.6 Japanese “bargain” button 1F239 ; fully-qualified # 🈹 E0.6 Japanese “discount” button 1F21A ; fully-qualified # 🈚 E0.6 Japanese “free of charge” button 1F232 ; fully-qualified # 🈲 E0.6 Japanese “prohibited” button 1F251 ; fully-qualified # 🉑 E0.6 Japanese “acceptable” button 1F238 ; fully-qualified # 🈸 E0.6 Japanese “application” button 1F234 ; fully-qualified # 🈴 E0.6 Japanese “passing grade” button 1F233 ; fully-qualified # 🈳 E0.6 Japanese “vacancy” button 3297 FE0F ; fully-qualified # ㊗️ E0.6 Japanese “congratulations” button 3297 ; unqualified # ㊗ E0.6 Japanese “congratulations” button 3299 FE0F ; fully-qualified # ㊙️ E0.6 Japanese “secret” button 3299 ; unqualified # ㊙ E0.6 Japanese “secret” button 1F23A ; fully-qualified # 🈺 E0.6 Japanese “open for business” button 1F235 ; fully-qualified # 🈵 E0.6 Japanese “no vacancy” button # subgroup: geometric 1F534 ; fully-qualified # 🔴 E0.6 red circle 1F7E0 ; fully-qualified # 🟠 E12.0 orange circle 1F7E1 ; fully-qualified # 🟡 E12.0 yellow circle 1F7E2 ; fully-qualified # 🟢 E12.0 green circle 1F535 ; fully-qualified # 🔵 E0.6 blue circle 1F7E3 ; fully-qualified # 🟣 E12.0 purple circle 1F7E4 ; fully-qualified # 🟤 E12.0 brown circle 26AB ; fully-qualified # ⚫ E0.6 black circle 26AA ; fully-qualified # ⚪ E0.6 white circle 1F7E5 ; fully-qualified # 🟥 E12.0 red square 1F7E7 ; fully-qualified # 🟧 E12.0 orange square 1F7E8 ; fully-qualified # 🟨 E12.0 yellow square 1F7E9 ; fully-qualified # 🟩 E12.0 green square 1F7E6 ; fully-qualified # 🟦 E12.0 blue square 1F7EA ; fully-qualified # 🟪 E12.0 purple square 1F7EB ; fully-qualified # 🟫 E12.0 brown square 2B1B ; fully-qualified # ⬛ E0.6 black large square 2B1C ; fully-qualified # ⬜ E0.6 white large square 25FC FE0F ; fully-qualified # ◼️ E0.6 black medium square 25FC ; unqualified # ◼ E0.6 black medium square 25FB FE0F ; fully-qualified # ◻️ E0.6 white medium square 25FB ; unqualified # ◻ E0.6 white medium square 25FE ; fully-qualified # ◾ E0.6 black medium-small square 25FD ; fully-qualified # ◽ E0.6 white medium-small square 25AA FE0F ; fully-qualified # ▪️ E0.6 black small square 25AA ; unqualified # ▪ E0.6 black small square 25AB FE0F ; fully-qualified # ▫️ E0.6 white small square 25AB ; unqualified # ▫ E0.6 white small square 1F536 ; fully-qualified # 🔶 E0.6 large orange diamond 1F537 ; fully-qualified # 🔷 E0.6 large blue diamond 1F538 ; fully-qualified # 🔸 E0.6 small orange diamond 1F539 ; fully-qualified # 🔹 E0.6 small blue diamond 1F53A ; fully-qualified # 🔺 E0.6 red triangle pointed up 1F53B ; fully-qualified # 🔻 E0.6 red triangle pointed down 1F4A0 ; fully-qualified # 💠 E0.6 diamond with a dot 1F518 ; fully-qualified # 🔘 E0.6 radio button 1F533 ; fully-qualified # 🔳 E0.6 white square button 1F532 ; fully-qualified # 🔲 E0.6 black square button # Symbols subtotal: 301 # Symbols subtotal: 301 w/o modifiers # group: Flags # subgroup: flag 1F3C1 ; fully-qualified # 🏁 E0.6 chequered flag 1F6A9 ; fully-qualified # 🚩 E0.6 triangular flag 1F38C ; fully-qualified # 🎌 E0.6 crossed flags 1F3F4 ; fully-qualified # 🏴 E1.0 black flag 1F3F3 FE0F ; fully-qualified # 🏳️ E0.7 white flag 1F3F3 ; unqualified # 🏳 E0.7 white flag 1F3F3 FE0F 200D 1F308 ; fully-qualified # 🏳️‍🌈 E4.0 rainbow flag 1F3F3 200D 1F308 ; unqualified # 🏳‍🌈 E4.0 rainbow flag 1F3F3 FE0F 200D 26A7 FE0F ; fully-qualified # 🏳️‍⚧️ E13.0 transgender flag 1F3F3 200D 26A7 FE0F ; unqualified # 🏳‍⚧️ E13.0 transgender flag 1F3F3 FE0F 200D 26A7 ; unqualified # 🏳️‍⚧ E13.0 transgender flag 1F3F3 200D 26A7 ; unqualified # 🏳‍⚧ E13.0 transgender flag 1F3F4 200D 2620 FE0F ; fully-qualified # 🏴‍☠️ E11.0 pirate flag 1F3F4 200D 2620 ; minimally-qualified # 🏴‍☠ E11.0 pirate flag # subgroup: country-flag 1F1E6 1F1E8 ; fully-qualified # 🇦🇨 E2.0 flag: Ascension Island 1F1E6 1F1E9 ; fully-qualified # 🇦🇩 E2.0 flag: Andorra 1F1E6 1F1EA ; fully-qualified # 🇦🇪 E2.0 flag: United Arab Emirates 1F1E6 1F1EB ; fully-qualified # 🇦🇫 E2.0 flag: Afghanistan 1F1E6 1F1EC ; fully-qualified # 🇦🇬 E2.0 flag: Antigua & Barbuda 1F1E6 1F1EE ; fully-qualified # 🇦🇮 E2.0 flag: Anguilla 1F1E6 1F1F1 ; fully-qualified # 🇦🇱 E2.0 flag: Albania 1F1E6 1F1F2 ; fully-qualified # 🇦🇲 E2.0 flag: Armenia 1F1E6 1F1F4 ; fully-qualified # 🇦🇴 E2.0 flag: Angola 1F1E6 1F1F6 ; fully-qualified # 🇦🇶 E2.0 flag: Antarctica 1F1E6 1F1F7 ; fully-qualified # 🇦🇷 E2.0 flag: Argentina 1F1E6 1F1F8 ; fully-qualified # 🇦🇸 E2.0 flag: American Samoa 1F1E6 1F1F9 ; fully-qualified # 🇦🇹 E2.0 flag: Austria 1F1E6 1F1FA ; fully-qualified # 🇦🇺 E2.0 flag: Australia 1F1E6 1F1FC ; fully-qualified # 🇦🇼 E2.0 flag: Aruba 1F1E6 1F1FD ; fully-qualified # 🇦🇽 E2.0 flag: Åland Islands 1F1E6 1F1FF ; fully-qualified # 🇦🇿 E2.0 flag: Azerbaijan 1F1E7 1F1E6 ; fully-qualified # 🇧🇦 E2.0 flag: Bosnia & Herzegovina 1F1E7 1F1E7 ; fully-qualified # 🇧🇧 E2.0 flag: Barbados 1F1E7 1F1E9 ; fully-qualified # 🇧🇩 E2.0 flag: Bangladesh 1F1E7 1F1EA ; fully-qualified # 🇧🇪 E2.0 flag: Belgium 1F1E7 1F1EB ; fully-qualified # 🇧🇫 E2.0 flag: Burkina Faso 1F1E7 1F1EC ; fully-qualified # 🇧🇬 E2.0 flag: Bulgaria 1F1E7 1F1ED ; fully-qualified # 🇧🇭 E2.0 flag: Bahrain 1F1E7 1F1EE ; fully-qualified # 🇧🇮 E2.0 flag: Burundi 1F1E7 1F1EF ; fully-qualified # 🇧🇯 E2.0 flag: Benin 1F1E7 1F1F1 ; fully-qualified # 🇧🇱 E2.0 flag: St. Barthélemy 1F1E7 1F1F2 ; fully-qualified # 🇧🇲 E2.0 flag: Bermuda 1F1E7 1F1F3 ; fully-qualified # 🇧🇳 E2.0 flag: Brunei 1F1E7 1F1F4 ; fully-qualified # 🇧🇴 E2.0 flag: Bolivia 1F1E7 1F1F6 ; fully-qualified # 🇧🇶 E2.0 flag: Caribbean Netherlands 1F1E7 1F1F7 ; fully-qualified # 🇧🇷 E2.0 flag: Brazil 1F1E7 1F1F8 ; fully-qualified # 🇧🇸 E2.0 flag: Bahamas 1F1E7 1F1F9 ; fully-qualified # 🇧🇹 E2.0 flag: Bhutan 1F1E7 1F1FB ; fully-qualified # 🇧🇻 E2.0 flag: Bouvet Island 1F1E7 1F1FC ; fully-qualified # 🇧🇼 E2.0 flag: Botswana 1F1E7 1F1FE ; fully-qualified # 🇧🇾 E2.0 flag: Belarus 1F1E7 1F1FF ; fully-qualified # 🇧🇿 E2.0 flag: Belize 1F1E8 1F1E6 ; fully-qualified # 🇨🇦 E2.0 flag: Canada 1F1E8 1F1E8 ; fully-qualified # 🇨🇨 E2.0 flag: Cocos (Keeling) Islands 1F1E8 1F1E9 ; fully-qualified # 🇨🇩 E2.0 flag: Congo - Kinshasa 1F1E8 1F1EB ; fully-qualified # 🇨🇫 E2.0 flag: Central African Republic 1F1E8 1F1EC ; fully-qualified # 🇨🇬 E2.0 flag: Congo - Brazzaville 1F1E8 1F1ED ; fully-qualified # 🇨🇭 E2.0 flag: Switzerland 1F1E8 1F1EE ; fully-qualified # 🇨🇮 E2.0 flag: Côte d’Ivoire 1F1E8 1F1F0 ; fully-qualified # 🇨🇰 E2.0 flag: Cook Islands 1F1E8 1F1F1 ; fully-qualified # 🇨🇱 E2.0 flag: Chile 1F1E8 1F1F2 ; fully-qualified # 🇨🇲 E2.0 flag: Cameroon 1F1E8 1F1F3 ; fully-qualified # 🇨🇳 E0.6 flag: China 1F1E8 1F1F4 ; fully-qualified # 🇨🇴 E2.0 flag: Colombia 1F1E8 1F1F5 ; fully-qualified # 🇨🇵 E2.0 flag: Clipperton Island 1F1E8 1F1F7 ; fully-qualified # 🇨🇷 E2.0 flag: Costa Rica 1F1E8 1F1FA ; fully-qualified # 🇨🇺 E2.0 flag: Cuba 1F1E8 1F1FB ; fully-qualified # 🇨🇻 E2.0 flag: Cape Verde 1F1E8 1F1FC ; fully-qualified # 🇨🇼 E2.0 flag: Curaçao 1F1E8 1F1FD ; fully-qualified # 🇨🇽 E2.0 flag: Christmas Island 1F1E8 1F1FE ; fully-qualified # 🇨🇾 E2.0 flag: Cyprus 1F1E8 1F1FF ; fully-qualified # 🇨🇿 E2.0 flag: Czechia 1F1E9 1F1EA ; fully-qualified # 🇩🇪 E0.6 flag: Germany 1F1E9 1F1EC ; fully-qualified # 🇩🇬 E2.0 flag: Diego Garcia 1F1E9 1F1EF ; fully-qualified # 🇩🇯 E2.0 flag: Djibouti 1F1E9 1F1F0 ; fully-qualified # 🇩🇰 E2.0 flag: Denmark 1F1E9 1F1F2 ; fully-qualified # 🇩🇲 E2.0 flag: Dominica 1F1E9 1F1F4 ; fully-qualified # 🇩🇴 E2.0 flag: Dominican Republic 1F1E9 1F1FF ; fully-qualified # 🇩🇿 E2.0 flag: Algeria 1F1EA 1F1E6 ; fully-qualified # 🇪🇦 E2.0 flag: Ceuta & Melilla 1F1EA 1F1E8 ; fully-qualified # 🇪🇨 E2.0 flag: Ecuador 1F1EA 1F1EA ; fully-qualified # 🇪🇪 E2.0 flag: Estonia 1F1EA 1F1EC ; fully-qualified # 🇪🇬 E2.0 flag: Egypt 1F1EA 1F1ED ; fully-qualified # 🇪🇭 E2.0 flag: Western Sahara 1F1EA 1F1F7 ; fully-qualified # 🇪🇷 E2.0 flag: Eritrea 1F1EA 1F1F8 ; fully-qualified # 🇪🇸 E0.6 flag: Spain 1F1EA 1F1F9 ; fully-qualified # 🇪🇹 E2.0 flag: Ethiopia 1F1EA 1F1FA ; fully-qualified # 🇪🇺 E2.0 flag: European Union 1F1EB 1F1EE ; fully-qualified # 🇫🇮 E2.0 flag: Finland 1F1EB 1F1EF ; fully-qualified # 🇫🇯 E2.0 flag: Fiji 1F1EB 1F1F0 ; fully-qualified # 🇫🇰 E2.0 flag: Falkland Islands 1F1EB 1F1F2 ; fully-qualified # 🇫🇲 E2.0 flag: Micronesia 1F1EB 1F1F4 ; fully-qualified # 🇫🇴 E2.0 flag: Faroe Islands 1F1EB 1F1F7 ; fully-qualified # 🇫🇷 E0.6 flag: France 1F1EC 1F1E6 ; fully-qualified # 🇬🇦 E2.0 flag: Gabon 1F1EC 1F1E7 ; fully-qualified # 🇬🇧 E0.6 flag: United Kingdom 1F1EC 1F1E9 ; fully-qualified # 🇬🇩 E2.0 flag: Grenada 1F1EC 1F1EA ; fully-qualified # 🇬🇪 E2.0 flag: Georgia 1F1EC 1F1EB ; fully-qualified # 🇬🇫 E2.0 flag: French Guiana 1F1EC 1F1EC ; fully-qualified # 🇬🇬 E2.0 flag: Guernsey 1F1EC 1F1ED ; fully-qualified # 🇬🇭 E2.0 flag: Ghana 1F1EC 1F1EE ; fully-qualified # 🇬🇮 E2.0 flag: Gibraltar 1F1EC 1F1F1 ; fully-qualified # 🇬🇱 E2.0 flag: Greenland 1F1EC 1F1F2 ; fully-qualified # 🇬🇲 E2.0 flag: Gambia 1F1EC 1F1F3 ; fully-qualified # 🇬🇳 E2.0 flag: Guinea 1F1EC 1F1F5 ; fully-qualified # 🇬🇵 E2.0 flag: Guadeloupe 1F1EC 1F1F6 ; fully-qualified # 🇬🇶 E2.0 flag: Equatorial Guinea 1F1EC 1F1F7 ; fully-qualified # 🇬🇷 E2.0 flag: Greece 1F1EC 1F1F8 ; fully-qualified # 🇬🇸 E2.0 flag: South Georgia & South Sandwich Islands 1F1EC 1F1F9 ; fully-qualified # 🇬🇹 E2.0 flag: Guatemala 1F1EC 1F1FA ; fully-qualified # 🇬🇺 E2.0 flag: Guam 1F1EC 1F1FC ; fully-qualified # 🇬🇼 E2.0 flag: Guinea-Bissau 1F1EC 1F1FE ; fully-qualified # 🇬🇾 E2.0 flag: Guyana 1F1ED 1F1F0 ; fully-qualified # 🇭🇰 E2.0 flag: Hong Kong SAR China 1F1ED 1F1F2 ; fully-qualified # 🇭🇲 E2.0 flag: Heard & McDonald Islands 1F1ED 1F1F3 ; fully-qualified # 🇭🇳 E2.0 flag: Honduras 1F1ED 1F1F7 ; fully-qualified # 🇭🇷 E2.0 flag: Croatia 1F1ED 1F1F9 ; fully-qualified # 🇭🇹 E2.0 flag: Haiti 1F1ED 1F1FA ; fully-qualified # 🇭🇺 E2.0 flag: Hungary 1F1EE 1F1E8 ; fully-qualified # 🇮🇨 E2.0 flag: Canary Islands 1F1EE 1F1E9 ; fully-qualified # 🇮🇩 E2.0 flag: Indonesia 1F1EE 1F1EA ; fully-qualified # 🇮🇪 E2.0 flag: Ireland 1F1EE 1F1F1 ; fully-qualified # 🇮🇱 E2.0 flag: Israel 1F1EE 1F1F2 ; fully-qualified # 🇮🇲 E2.0 flag: Isle of Man 1F1EE 1F1F3 ; fully-qualified # 🇮🇳 E2.0 flag: India 1F1EE 1F1F4 ; fully-qualified # 🇮🇴 E2.0 flag: British Indian Ocean Territory 1F1EE 1F1F6 ; fully-qualified # 🇮🇶 E2.0 flag: Iraq 1F1EE 1F1F7 ; fully-qualified # 🇮🇷 E2.0 flag: Iran 1F1EE 1F1F8 ; fully-qualified # 🇮🇸 E2.0 flag: Iceland 1F1EE 1F1F9 ; fully-qualified # 🇮🇹 E0.6 flag: Italy 1F1EF 1F1EA ; fully-qualified # 🇯🇪 E2.0 flag: Jersey 1F1EF 1F1F2 ; fully-qualified # 🇯🇲 E2.0 flag: Jamaica 1F1EF 1F1F4 ; fully-qualified # 🇯🇴 E2.0 flag: Jordan 1F1EF 1F1F5 ; fully-qualified # 🇯🇵 E0.6 flag: Japan 1F1F0 1F1EA ; fully-qualified # 🇰🇪 E2.0 flag: Kenya 1F1F0 1F1EC ; fully-qualified # 🇰🇬 E2.0 flag: Kyrgyzstan 1F1F0 1F1ED ; fully-qualified # 🇰🇭 E2.0 flag: Cambodia 1F1F0 1F1EE ; fully-qualified # 🇰🇮 E2.0 flag: Kiribati 1F1F0 1F1F2 ; fully-qualified # 🇰🇲 E2.0 flag: Comoros 1F1F0 1F1F3 ; fully-qualified # 🇰🇳 E2.0 flag: St. Kitts & Nevis 1F1F0 1F1F5 ; fully-qualified # 🇰🇵 E2.0 flag: North Korea 1F1F0 1F1F7 ; fully-qualified # 🇰🇷 E0.6 flag: South Korea 1F1F0 1F1FC ; fully-qualified # 🇰🇼 E2.0 flag: Kuwait 1F1F0 1F1FE ; fully-qualified # 🇰🇾 E2.0 flag: Cayman Islands 1F1F0 1F1FF ; fully-qualified # 🇰🇿 E2.0 flag: Kazakhstan 1F1F1 1F1E6 ; fully-qualified # 🇱🇦 E2.0 flag: Laos 1F1F1 1F1E7 ; fully-qualified # 🇱🇧 E2.0 flag: Lebanon 1F1F1 1F1E8 ; fully-qualified # 🇱🇨 E2.0 flag: St. Lucia 1F1F1 1F1EE ; fully-qualified # 🇱🇮 E2.0 flag: Liechtenstein 1F1F1 1F1F0 ; fully-qualified # 🇱🇰 E2.0 flag: Sri Lanka 1F1F1 1F1F7 ; fully-qualified # 🇱🇷 E2.0 flag: Liberia 1F1F1 1F1F8 ; fully-qualified # 🇱🇸 E2.0 flag: Lesotho 1F1F1 1F1F9 ; fully-qualified # 🇱🇹 E2.0 flag: Lithuania 1F1F1 1F1FA ; fully-qualified # 🇱🇺 E2.0 flag: Luxembourg 1F1F1 1F1FB ; fully-qualified # 🇱🇻 E2.0 flag: Latvia 1F1F1 1F1FE ; fully-qualified # 🇱🇾 E2.0 flag: Libya 1F1F2 1F1E6 ; fully-qualified # 🇲🇦 E2.0 flag: Morocco 1F1F2 1F1E8 ; fully-qualified # 🇲🇨 E2.0 flag: Monaco 1F1F2 1F1E9 ; fully-qualified # 🇲🇩 E2.0 flag: Moldova 1F1F2 1F1EA ; fully-qualified # 🇲🇪 E2.0 flag: Montenegro 1F1F2 1F1EB ; fully-qualified # 🇲🇫 E2.0 flag: St. Martin 1F1F2 1F1EC ; fully-qualified # 🇲🇬 E2.0 flag: Madagascar 1F1F2 1F1ED ; fully-qualified # 🇲🇭 E2.0 flag: Marshall Islands 1F1F2 1F1F0 ; fully-qualified # 🇲🇰 E2.0 flag: North Macedonia 1F1F2 1F1F1 ; fully-qualified # 🇲🇱 E2.0 flag: Mali 1F1F2 1F1F2 ; fully-qualified # 🇲🇲 E2.0 flag: Myanmar (Burma) 1F1F2 1F1F3 ; fully-qualified # 🇲🇳 E2.0 flag: Mongolia 1F1F2 1F1F4 ; fully-qualified # 🇲🇴 E2.0 flag: Macao SAR China 1F1F2 1F1F5 ; fully-qualified # 🇲🇵 E2.0 flag: Northern Mariana Islands 1F1F2 1F1F6 ; fully-qualified # 🇲🇶 E2.0 flag: Martinique 1F1F2 1F1F7 ; fully-qualified # 🇲🇷 E2.0 flag: Mauritania 1F1F2 1F1F8 ; fully-qualified # 🇲🇸 E2.0 flag: Montserrat 1F1F2 1F1F9 ; fully-qualified # 🇲🇹 E2.0 flag: Malta 1F1F2 1F1FA ; fully-qualified # 🇲🇺 E2.0 flag: Mauritius 1F1F2 1F1FB ; fully-qualified # 🇲🇻 E2.0 flag: Maldives 1F1F2 1F1FC ; fully-qualified # 🇲🇼 E2.0 flag: Malawi 1F1F2 1F1FD ; fully-qualified # 🇲🇽 E2.0 flag: Mexico 1F1F2 1F1FE ; fully-qualified # 🇲🇾 E2.0 flag: Malaysia 1F1F2 1F1FF ; fully-qualified # 🇲🇿 E2.0 flag: Mozambique 1F1F3 1F1E6 ; fully-qualified # 🇳🇦 E2.0 flag: Namibia 1F1F3 1F1E8 ; fully-qualified # 🇳🇨 E2.0 flag: New Caledonia 1F1F3 1F1EA ; fully-qualified # 🇳🇪 E2.0 flag: Niger 1F1F3 1F1EB ; fully-qualified # 🇳🇫 E2.0 flag: Norfolk Island 1F1F3 1F1EC ; fully-qualified # 🇳🇬 E2.0 flag: Nigeria 1F1F3 1F1EE ; fully-qualified # 🇳🇮 E2.0 flag: Nicaragua 1F1F3 1F1F1 ; fully-qualified # 🇳🇱 E2.0 flag: Netherlands 1F1F3 1F1F4 ; fully-qualified # 🇳🇴 E2.0 flag: Norway 1F1F3 1F1F5 ; fully-qualified # 🇳🇵 E2.0 flag: Nepal 1F1F3 1F1F7 ; fully-qualified # 🇳🇷 E2.0 flag: Nauru 1F1F3 1F1FA ; fully-qualified # 🇳🇺 E2.0 flag: Niue 1F1F3 1F1FF ; fully-qualified # 🇳🇿 E2.0 flag: New Zealand 1F1F4 1F1F2 ; fully-qualified # 🇴🇲 E2.0 flag: Oman 1F1F5 1F1E6 ; fully-qualified # 🇵🇦 E2.0 flag: Panama 1F1F5 1F1EA ; fully-qualified # 🇵🇪 E2.0 flag: Peru 1F1F5 1F1EB ; fully-qualified # 🇵🇫 E2.0 flag: French Polynesia 1F1F5 1F1EC ; fully-qualified # 🇵🇬 E2.0 flag: Papua New Guinea 1F1F5 1F1ED ; fully-qualified # 🇵🇭 E2.0 flag: Philippines 1F1F5 1F1F0 ; fully-qualified # 🇵🇰 E2.0 flag: Pakistan 1F1F5 1F1F1 ; fully-qualified # 🇵🇱 E2.0 flag: Poland 1F1F5 1F1F2 ; fully-qualified # 🇵🇲 E2.0 flag: St. Pierre & Miquelon 1F1F5 1F1F3 ; fully-qualified # 🇵🇳 E2.0 flag: Pitcairn Islands 1F1F5 1F1F7 ; fully-qualified # 🇵🇷 E2.0 flag: Puerto Rico 1F1F5 1F1F8 ; fully-qualified # 🇵🇸 E2.0 flag: Palestinian Territories 1F1F5 1F1F9 ; fully-qualified # 🇵🇹 E2.0 flag: Portugal 1F1F5 1F1FC ; fully-qualified # 🇵🇼 E2.0 flag: Palau 1F1F5 1F1FE ; fully-qualified # 🇵🇾 E2.0 flag: Paraguay 1F1F6 1F1E6 ; fully-qualified # 🇶🇦 E2.0 flag: Qatar 1F1F7 1F1EA ; fully-qualified # 🇷🇪 E2.0 flag: Réunion 1F1F7 1F1F4 ; fully-qualified # 🇷🇴 E2.0 flag: Romania 1F1F7 1F1F8 ; fully-qualified # 🇷🇸 E2.0 flag: Serbia 1F1F7 1F1FA ; fully-qualified # 🇷🇺 E0.6 flag: Russia 1F1F7 1F1FC ; fully-qualified # 🇷🇼 E2.0 flag: Rwanda 1F1F8 1F1E6 ; fully-qualified # 🇸🇦 E2.0 flag: Saudi Arabia 1F1F8 1F1E7 ; fully-qualified # 🇸🇧 E2.0 flag: Solomon Islands 1F1F8 1F1E8 ; fully-qualified # 🇸🇨 E2.0 flag: Seychelles 1F1F8 1F1E9 ; fully-qualified # 🇸🇩 E2.0 flag: Sudan 1F1F8 1F1EA ; fully-qualified # 🇸🇪 E2.0 flag: Sweden 1F1F8 1F1EC ; fully-qualified # 🇸🇬 E2.0 flag: Singapore 1F1F8 1F1ED ; fully-qualified # 🇸🇭 E2.0 flag: St. Helena 1F1F8 1F1EE ; fully-qualified # 🇸🇮 E2.0 flag: Slovenia 1F1F8 1F1EF ; fully-qualified # 🇸🇯 E2.0 flag: Svalbard & Jan Mayen 1F1F8 1F1F0 ; fully-qualified # 🇸🇰 E2.0 flag: Slovakia 1F1F8 1F1F1 ; fully-qualified # 🇸🇱 E2.0 flag: Sierra Leone 1F1F8 1F1F2 ; fully-qualified # 🇸🇲 E2.0 flag: San Marino 1F1F8 1F1F3 ; fully-qualified # 🇸🇳 E2.0 flag: Senegal 1F1F8 1F1F4 ; fully-qualified # 🇸🇴 E2.0 flag: Somalia 1F1F8 1F1F7 ; fully-qualified # 🇸🇷 E2.0 flag: Suriname 1F1F8 1F1F8 ; fully-qualified # 🇸🇸 E2.0 flag: South Sudan 1F1F8 1F1F9 ; fully-qualified # 🇸🇹 E2.0 flag: São Tomé & Príncipe 1F1F8 1F1FB ; fully-qualified # 🇸🇻 E2.0 flag: El Salvador 1F1F8 1F1FD ; fully-qualified # 🇸🇽 E2.0 flag: Sint Maarten 1F1F8 1F1FE ; fully-qualified # 🇸🇾 E2.0 flag: Syria 1F1F8 1F1FF ; fully-qualified # 🇸🇿 E2.0 flag: Eswatini 1F1F9 1F1E6 ; fully-qualified # 🇹🇦 E2.0 flag: Tristan da Cunha 1F1F9 1F1E8 ; fully-qualified # 🇹🇨 E2.0 flag: Turks & Caicos Islands 1F1F9 1F1E9 ; fully-qualified # 🇹🇩 E2.0 flag: Chad 1F1F9 1F1EB ; fully-qualified # 🇹🇫 E2.0 flag: French Southern Territories 1F1F9 1F1EC ; fully-qualified # 🇹🇬 E2.0 flag: Togo 1F1F9 1F1ED ; fully-qualified # 🇹🇭 E2.0 flag: Thailand 1F1F9 1F1EF ; fully-qualified # 🇹🇯 E2.0 flag: Tajikistan 1F1F9 1F1F0 ; fully-qualified # 🇹🇰 E2.0 flag: Tokelau 1F1F9 1F1F1 ; fully-qualified # 🇹🇱 E2.0 flag: Timor-Leste 1F1F9 1F1F2 ; fully-qualified # 🇹🇲 E2.0 flag: Turkmenistan 1F1F9 1F1F3 ; fully-qualified # 🇹🇳 E2.0 flag: Tunisia 1F1F9 1F1F4 ; fully-qualified # 🇹🇴 E2.0 flag: Tonga 1F1F9 1F1F7 ; fully-qualified # 🇹🇷 E2.0 flag: Turkey 1F1F9 1F1F9 ; fully-qualified # 🇹🇹 E2.0 flag: Trinidad & Tobago 1F1F9 1F1FB ; fully-qualified # 🇹🇻 E2.0 flag: Tuvalu 1F1F9 1F1FC ; fully-qualified # 🇹🇼 E2.0 flag: Taiwan 1F1F9 1F1FF ; fully-qualified # 🇹🇿 E2.0 flag: Tanzania 1F1FA 1F1E6 ; fully-qualified # 🇺🇦 E2.0 flag: Ukraine 1F1FA 1F1EC ; fully-qualified # 🇺🇬 E2.0 flag: Uganda 1F1FA 1F1F2 ; fully-qualified # 🇺🇲 E2.0 flag: U.S. Outlying Islands 1F1FA 1F1F3 ; fully-qualified # 🇺🇳 E4.0 flag: United Nations 1F1FA 1F1F8 ; fully-qualified # 🇺🇸 E0.6 flag: United States 1F1FA 1F1FE ; fully-qualified # 🇺🇾 E2.0 flag: Uruguay 1F1FA 1F1FF ; fully-qualified # 🇺🇿 E2.0 flag: Uzbekistan 1F1FB 1F1E6 ; fully-qualified # 🇻🇦 E2.0 flag: Vatican City 1F1FB 1F1E8 ; fully-qualified # 🇻🇨 E2.0 flag: St. Vincent & Grenadines 1F1FB 1F1EA ; fully-qualified # 🇻🇪 E2.0 flag: Venezuela 1F1FB 1F1EC ; fully-qualified # 🇻🇬 E2.0 flag: British Virgin Islands 1F1FB 1F1EE ; fully-qualified # 🇻🇮 E2.0 flag: U.S. Virgin Islands 1F1FB 1F1F3 ; fully-qualified # 🇻🇳 E2.0 flag: Vietnam 1F1FB 1F1FA ; fully-qualified # 🇻🇺 E2.0 flag: Vanuatu 1F1FC 1F1EB ; fully-qualified # 🇼🇫 E2.0 flag: Wallis & Futuna 1F1FC 1F1F8 ; fully-qualified # 🇼🇸 E2.0 flag: Samoa 1F1FD 1F1F0 ; fully-qualified # 🇽🇰 E2.0 flag: Kosovo 1F1FE 1F1EA ; fully-qualified # 🇾🇪 E2.0 flag: Yemen 1F1FE 1F1F9 ; fully-qualified # 🇾🇹 E2.0 flag: Mayotte 1F1FF 1F1E6 ; fully-qualified # 🇿🇦 E2.0 flag: South Africa 1F1FF 1F1F2 ; fully-qualified # 🇿🇲 E2.0 flag: Zambia 1F1FF 1F1FC ; fully-qualified # 🇿🇼 E2.0 flag: Zimbabwe # subgroup: subdivision-flag 1F3F4 E0067 E0062 E0065 E006E E0067 E007F ; fully-qualified # 🏴󠁧󠁢󠁥󠁮󠁧󠁿 E5.0 flag: England 1F3F4 E0067 E0062 E0073 E0063 E0074 E007F ; fully-qualified # 🏴󠁧󠁢󠁳󠁣󠁴󠁿 E5.0 flag: Scotland 1F3F4 E0067 E0062 E0077 E006C E0073 E007F ; fully-qualified # 🏴󠁧󠁢󠁷󠁬󠁳󠁿 E5.0 flag: Wales # Flags subtotal: 275 # Flags subtotal: 275 w/o modifiers # Status Counts # fully-qualified : 3512 # minimally-qualified : 817 # unqualified : 252 # component : 9 #EOF tanuki_emoji-0.9.0/vendor/unicode/emoji-variation-sequences.txt0000644000004100000410000010720514545323276025020 0ustar www-datawww-data# emoji-variation-sequences.txt # Date: 2020-01-21, 07:15:05 GMT # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # Emoji Variation Sequences for UTS #51 # Version: 13.0 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # 0023 FE0E ; text style; # (1.1) NUMBER SIGN 0023 FE0F ; emoji style; # (1.1) NUMBER SIGN 002A FE0E ; text style; # (1.1) ASTERISK 002A FE0F ; emoji style; # (1.1) ASTERISK 0030 FE0E ; text style; # (1.1) DIGIT ZERO 0030 FE0F ; emoji style; # (1.1) DIGIT ZERO 0031 FE0E ; text style; # (1.1) DIGIT ONE 0031 FE0F ; emoji style; # (1.1) DIGIT ONE 0032 FE0E ; text style; # (1.1) DIGIT TWO 0032 FE0F ; emoji style; # (1.1) DIGIT TWO 0033 FE0E ; text style; # (1.1) DIGIT THREE 0033 FE0F ; emoji style; # (1.1) DIGIT THREE 0034 FE0E ; text style; # (1.1) DIGIT FOUR 0034 FE0F ; emoji style; # (1.1) DIGIT FOUR 0035 FE0E ; text style; # (1.1) DIGIT FIVE 0035 FE0F ; emoji style; # (1.1) DIGIT FIVE 0036 FE0E ; text style; # (1.1) DIGIT SIX 0036 FE0F ; emoji style; # (1.1) DIGIT SIX 0037 FE0E ; text style; # (1.1) DIGIT SEVEN 0037 FE0F ; emoji style; # (1.1) DIGIT SEVEN 0038 FE0E ; text style; # (1.1) DIGIT EIGHT 0038 FE0F ; emoji style; # (1.1) DIGIT EIGHT 0039 FE0E ; text style; # (1.1) DIGIT NINE 0039 FE0F ; emoji style; # (1.1) DIGIT NINE 00A9 FE0E ; text style; # (1.1) COPYRIGHT SIGN 00A9 FE0F ; emoji style; # (1.1) COPYRIGHT SIGN 00AE FE0E ; text style; # (1.1) REGISTERED SIGN 00AE FE0F ; emoji style; # (1.1) REGISTERED SIGN 203C FE0E ; text style; # (1.1) DOUBLE EXCLAMATION MARK 203C FE0F ; emoji style; # (1.1) DOUBLE EXCLAMATION MARK 2049 FE0E ; text style; # (3.0) EXCLAMATION QUESTION MARK 2049 FE0F ; emoji style; # (3.0) EXCLAMATION QUESTION MARK 2122 FE0E ; text style; # (1.1) TRADE MARK SIGN 2122 FE0F ; emoji style; # (1.1) TRADE MARK SIGN 2139 FE0E ; text style; # (3.0) INFORMATION SOURCE 2139 FE0F ; emoji style; # (3.0) INFORMATION SOURCE 2194 FE0E ; text style; # (1.1) LEFT RIGHT ARROW 2194 FE0F ; emoji style; # (1.1) LEFT RIGHT ARROW 2195 FE0E ; text style; # (1.1) UP DOWN ARROW 2195 FE0F ; emoji style; # (1.1) UP DOWN ARROW 2196 FE0E ; text style; # (1.1) NORTH WEST ARROW 2196 FE0F ; emoji style; # (1.1) NORTH WEST ARROW 2197 FE0E ; text style; # (1.1) NORTH EAST ARROW 2197 FE0F ; emoji style; # (1.1) NORTH EAST ARROW 2198 FE0E ; text style; # (1.1) SOUTH EAST ARROW 2198 FE0F ; emoji style; # (1.1) SOUTH EAST ARROW 2199 FE0E ; text style; # (1.1) SOUTH WEST ARROW 2199 FE0F ; emoji style; # (1.1) SOUTH WEST ARROW 21A9 FE0E ; text style; # (1.1) LEFTWARDS ARROW WITH HOOK 21A9 FE0F ; emoji style; # (1.1) LEFTWARDS ARROW WITH HOOK 21AA FE0E ; text style; # (1.1) RIGHTWARDS ARROW WITH HOOK 21AA FE0F ; emoji style; # (1.1) RIGHTWARDS ARROW WITH HOOK 231A FE0E ; text style; # (1.1) WATCH 231A FE0F ; emoji style; # (1.1) WATCH 231B FE0E ; text style; # (1.1) HOURGLASS 231B FE0F ; emoji style; # (1.1) HOURGLASS 2328 FE0E ; text style; # (1.1) KEYBOARD 2328 FE0F ; emoji style; # (1.1) KEYBOARD 23CF FE0E ; text style; # (4.0) EJECT SYMBOL 23CF FE0F ; emoji style; # (4.0) EJECT SYMBOL 23E9 FE0E ; text style; # (6.0) BLACK RIGHT-POINTING DOUBLE TRIANGLE 23E9 FE0F ; emoji style; # (6.0) BLACK RIGHT-POINTING DOUBLE TRIANGLE 23EA FE0E ; text style; # (6.0) BLACK LEFT-POINTING DOUBLE TRIANGLE 23EA FE0F ; emoji style; # (6.0) BLACK LEFT-POINTING DOUBLE TRIANGLE 23ED FE0E ; text style; # (6.0) BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR 23ED FE0F ; emoji style; # (6.0) BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR 23EE FE0E ; text style; # (6.0) BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR 23EE FE0F ; emoji style; # (6.0) BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR 23EF FE0E ; text style; # (6.0) BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR 23EF FE0F ; emoji style; # (6.0) BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR 23F1 FE0E ; text style; # (6.0) STOPWATCH 23F1 FE0F ; emoji style; # (6.0) STOPWATCH 23F2 FE0E ; text style; # (6.0) TIMER CLOCK 23F2 FE0F ; emoji style; # (6.0) TIMER CLOCK 23F3 FE0E ; text style; # (6.0) HOURGLASS WITH FLOWING SAND 23F3 FE0F ; emoji style; # (6.0) HOURGLASS WITH FLOWING SAND 23F8 FE0E ; text style; # (7.0) DOUBLE VERTICAL BAR 23F8 FE0F ; emoji style; # (7.0) DOUBLE VERTICAL BAR 23F9 FE0E ; text style; # (7.0) BLACK SQUARE FOR STOP 23F9 FE0F ; emoji style; # (7.0) BLACK SQUARE FOR STOP 23FA FE0E ; text style; # (7.0) BLACK CIRCLE FOR RECORD 23FA FE0F ; emoji style; # (7.0) BLACK CIRCLE FOR RECORD 24C2 FE0E ; text style; # (1.1) CIRCLED LATIN CAPITAL LETTER M 24C2 FE0F ; emoji style; # (1.1) CIRCLED LATIN CAPITAL LETTER M 25AA FE0E ; text style; # (1.1) BLACK SMALL SQUARE 25AA FE0F ; emoji style; # (1.1) BLACK SMALL SQUARE 25AB FE0E ; text style; # (1.1) WHITE SMALL SQUARE 25AB FE0F ; emoji style; # (1.1) WHITE SMALL SQUARE 25B6 FE0E ; text style; # (1.1) BLACK RIGHT-POINTING TRIANGLE 25B6 FE0F ; emoji style; # (1.1) BLACK RIGHT-POINTING TRIANGLE 25C0 FE0E ; text style; # (1.1) BLACK LEFT-POINTING TRIANGLE 25C0 FE0F ; emoji style; # (1.1) BLACK LEFT-POINTING TRIANGLE 25FB FE0E ; text style; # (3.2) WHITE MEDIUM SQUARE 25FB FE0F ; emoji style; # (3.2) WHITE MEDIUM SQUARE 25FC FE0E ; text style; # (3.2) BLACK MEDIUM SQUARE 25FC FE0F ; emoji style; # (3.2) BLACK MEDIUM SQUARE 25FD FE0E ; text style; # (3.2) WHITE MEDIUM SMALL SQUARE 25FD FE0F ; emoji style; # (3.2) WHITE MEDIUM SMALL SQUARE 25FE FE0E ; text style; # (3.2) BLACK MEDIUM SMALL SQUARE 25FE FE0F ; emoji style; # (3.2) BLACK MEDIUM SMALL SQUARE 2600 FE0E ; text style; # (1.1) BLACK SUN WITH RAYS 2600 FE0F ; emoji style; # (1.1) BLACK SUN WITH RAYS 2601 FE0E ; text style; # (1.1) CLOUD 2601 FE0F ; emoji style; # (1.1) CLOUD 2602 FE0E ; text style; # (1.1) UMBRELLA 2602 FE0F ; emoji style; # (1.1) UMBRELLA 2603 FE0E ; text style; # (1.1) SNOWMAN 2603 FE0F ; emoji style; # (1.1) SNOWMAN 2604 FE0E ; text style; # (1.1) COMET 2604 FE0F ; emoji style; # (1.1) COMET 260E FE0E ; text style; # (1.1) BLACK TELEPHONE 260E FE0F ; emoji style; # (1.1) BLACK TELEPHONE 2611 FE0E ; text style; # (1.1) BALLOT BOX WITH CHECK 2611 FE0F ; emoji style; # (1.1) BALLOT BOX WITH CHECK 2614 FE0E ; text style; # (4.0) UMBRELLA WITH RAIN DROPS 2614 FE0F ; emoji style; # (4.0) UMBRELLA WITH RAIN DROPS 2615 FE0E ; text style; # (4.0) HOT BEVERAGE 2615 FE0F ; emoji style; # (4.0) HOT BEVERAGE 2618 FE0E ; text style; # (4.1) SHAMROCK 2618 FE0F ; emoji style; # (4.1) SHAMROCK 261D FE0E ; text style; # (1.1) WHITE UP POINTING INDEX 261D FE0F ; emoji style; # (1.1) WHITE UP POINTING INDEX 2620 FE0E ; text style; # (1.1) SKULL AND CROSSBONES 2620 FE0F ; emoji style; # (1.1) SKULL AND CROSSBONES 2622 FE0E ; text style; # (1.1) RADIOACTIVE SIGN 2622 FE0F ; emoji style; # (1.1) RADIOACTIVE SIGN 2623 FE0E ; text style; # (1.1) BIOHAZARD SIGN 2623 FE0F ; emoji style; # (1.1) BIOHAZARD SIGN 2626 FE0E ; text style; # (1.1) ORTHODOX CROSS 2626 FE0F ; emoji style; # (1.1) ORTHODOX CROSS 262A FE0E ; text style; # (1.1) STAR AND CRESCENT 262A FE0F ; emoji style; # (1.1) STAR AND CRESCENT 262E FE0E ; text style; # (1.1) PEACE SYMBOL 262E FE0F ; emoji style; # (1.1) PEACE SYMBOL 262F FE0E ; text style; # (1.1) YIN YANG 262F FE0F ; emoji style; # (1.1) YIN YANG 2638 FE0E ; text style; # (1.1) WHEEL OF DHARMA 2638 FE0F ; emoji style; # (1.1) WHEEL OF DHARMA 2639 FE0E ; text style; # (1.1) WHITE FROWNING FACE 2639 FE0F ; emoji style; # (1.1) WHITE FROWNING FACE 263A FE0E ; text style; # (1.1) WHITE SMILING FACE 263A FE0F ; emoji style; # (1.1) WHITE SMILING FACE 2640 FE0E ; text style; # (1.1) FEMALE SIGN 2640 FE0F ; emoji style; # (1.1) FEMALE SIGN 2642 FE0E ; text style; # (1.1) MALE SIGN 2642 FE0F ; emoji style; # (1.1) MALE SIGN 2648 FE0E ; text style; # (1.1) ARIES 2648 FE0F ; emoji style; # (1.1) ARIES 2649 FE0E ; text style; # (1.1) TAURUS 2649 FE0F ; emoji style; # (1.1) TAURUS 264A FE0E ; text style; # (1.1) GEMINI 264A FE0F ; emoji style; # (1.1) GEMINI 264B FE0E ; text style; # (1.1) CANCER 264B FE0F ; emoji style; # (1.1) CANCER 264C FE0E ; text style; # (1.1) LEO 264C FE0F ; emoji style; # (1.1) LEO 264D FE0E ; text style; # (1.1) VIRGO 264D FE0F ; emoji style; # (1.1) VIRGO 264E FE0E ; text style; # (1.1) LIBRA 264E FE0F ; emoji style; # (1.1) LIBRA 264F FE0E ; text style; # (1.1) SCORPIUS 264F FE0F ; emoji style; # (1.1) SCORPIUS 2650 FE0E ; text style; # (1.1) SAGITTARIUS 2650 FE0F ; emoji style; # (1.1) SAGITTARIUS 2651 FE0E ; text style; # (1.1) CAPRICORN 2651 FE0F ; emoji style; # (1.1) CAPRICORN 2652 FE0E ; text style; # (1.1) AQUARIUS 2652 FE0F ; emoji style; # (1.1) AQUARIUS 2653 FE0E ; text style; # (1.1) PISCES 2653 FE0F ; emoji style; # (1.1) PISCES 265F FE0E ; text style; # (1.1) BLACK CHESS PAWN 265F FE0F ; emoji style; # (1.1) BLACK CHESS PAWN 2660 FE0E ; text style; # (1.1) BLACK SPADE SUIT 2660 FE0F ; emoji style; # (1.1) BLACK SPADE SUIT 2663 FE0E ; text style; # (1.1) BLACK CLUB SUIT 2663 FE0F ; emoji style; # (1.1) BLACK CLUB SUIT 2665 FE0E ; text style; # (1.1) BLACK HEART SUIT 2665 FE0F ; emoji style; # (1.1) BLACK HEART SUIT 2666 FE0E ; text style; # (1.1) BLACK DIAMOND SUIT 2666 FE0F ; emoji style; # (1.1) BLACK DIAMOND SUIT 2668 FE0E ; text style; # (1.1) HOT SPRINGS 2668 FE0F ; emoji style; # (1.1) HOT SPRINGS 267B FE0E ; text style; # (3.2) BLACK UNIVERSAL RECYCLING SYMBOL 267B FE0F ; emoji style; # (3.2) BLACK UNIVERSAL RECYCLING SYMBOL 267E FE0E ; text style; # (4.1) PERMANENT PAPER SIGN 267E FE0F ; emoji style; # (4.1) PERMANENT PAPER SIGN 267F FE0E ; text style; # (4.1) WHEELCHAIR SYMBOL 267F FE0F ; emoji style; # (4.1) WHEELCHAIR SYMBOL 2692 FE0E ; text style; # (4.1) HAMMER AND PICK 2692 FE0F ; emoji style; # (4.1) HAMMER AND PICK 2693 FE0E ; text style; # (4.1) ANCHOR 2693 FE0F ; emoji style; # (4.1) ANCHOR 2694 FE0E ; text style; # (4.1) CROSSED SWORDS 2694 FE0F ; emoji style; # (4.1) CROSSED SWORDS 2695 FE0E ; text style; # (4.1) STAFF OF AESCULAPIUS 2695 FE0F ; emoji style; # (4.1) STAFF OF AESCULAPIUS 2696 FE0E ; text style; # (4.1) SCALES 2696 FE0F ; emoji style; # (4.1) SCALES 2697 FE0E ; text style; # (4.1) ALEMBIC 2697 FE0F ; emoji style; # (4.1) ALEMBIC 2699 FE0E ; text style; # (4.1) GEAR 2699 FE0F ; emoji style; # (4.1) GEAR 269B FE0E ; text style; # (4.1) ATOM SYMBOL 269B FE0F ; emoji style; # (4.1) ATOM SYMBOL 269C FE0E ; text style; # (4.1) FLEUR-DE-LIS 269C FE0F ; emoji style; # (4.1) FLEUR-DE-LIS 26A0 FE0E ; text style; # (4.0) WARNING SIGN 26A0 FE0F ; emoji style; # (4.0) WARNING SIGN 26A1 FE0E ; text style; # (4.0) HIGH VOLTAGE SIGN 26A1 FE0F ; emoji style; # (4.0) HIGH VOLTAGE SIGN 26A7 FE0E ; text style; # (4.1) MALE WITH STROKE AND MALE AND FEMALE SIGN 26A7 FE0F ; emoji style; # (4.1) MALE WITH STROKE AND MALE AND FEMALE SIGN 26AA FE0E ; text style; # (4.1) MEDIUM WHITE CIRCLE 26AA FE0F ; emoji style; # (4.1) MEDIUM WHITE CIRCLE 26AB FE0E ; text style; # (4.1) MEDIUM BLACK CIRCLE 26AB FE0F ; emoji style; # (4.1) MEDIUM BLACK CIRCLE 26B0 FE0E ; text style; # (4.1) COFFIN 26B0 FE0F ; emoji style; # (4.1) COFFIN 26B1 FE0E ; text style; # (4.1) FUNERAL URN 26B1 FE0F ; emoji style; # (4.1) FUNERAL URN 26BD FE0E ; text style; # (5.2) SOCCER BALL 26BD FE0F ; emoji style; # (5.2) SOCCER BALL 26BE FE0E ; text style; # (5.2) BASEBALL 26BE FE0F ; emoji style; # (5.2) BASEBALL 26C4 FE0E ; text style; # (5.2) SNOWMAN WITHOUT SNOW 26C4 FE0F ; emoji style; # (5.2) SNOWMAN WITHOUT SNOW 26C5 FE0E ; text style; # (5.2) SUN BEHIND CLOUD 26C5 FE0F ; emoji style; # (5.2) SUN BEHIND CLOUD 26C8 FE0E ; text style; # (5.2) THUNDER CLOUD AND RAIN 26C8 FE0F ; emoji style; # (5.2) THUNDER CLOUD AND RAIN 26CF FE0E ; text style; # (5.2) PICK 26CF FE0F ; emoji style; # (5.2) PICK 26D1 FE0E ; text style; # (5.2) HELMET WITH WHITE CROSS 26D1 FE0F ; emoji style; # (5.2) HELMET WITH WHITE CROSS 26D3 FE0E ; text style; # (5.2) CHAINS 26D3 FE0F ; emoji style; # (5.2) CHAINS 26D4 FE0E ; text style; # (5.2) NO ENTRY 26D4 FE0F ; emoji style; # (5.2) NO ENTRY 26E9 FE0E ; text style; # (5.2) SHINTO SHRINE 26E9 FE0F ; emoji style; # (5.2) SHINTO SHRINE 26EA FE0E ; text style; # (5.2) CHURCH 26EA FE0F ; emoji style; # (5.2) CHURCH 26F0 FE0E ; text style; # (5.2) MOUNTAIN 26F0 FE0F ; emoji style; # (5.2) MOUNTAIN 26F1 FE0E ; text style; # (5.2) UMBRELLA ON GROUND 26F1 FE0F ; emoji style; # (5.2) UMBRELLA ON GROUND 26F2 FE0E ; text style; # (5.2) FOUNTAIN 26F2 FE0F ; emoji style; # (5.2) FOUNTAIN 26F3 FE0E ; text style; # (5.2) FLAG IN HOLE 26F3 FE0F ; emoji style; # (5.2) FLAG IN HOLE 26F4 FE0E ; text style; # (5.2) FERRY 26F4 FE0F ; emoji style; # (5.2) FERRY 26F5 FE0E ; text style; # (5.2) SAILBOAT 26F5 FE0F ; emoji style; # (5.2) SAILBOAT 26F7 FE0E ; text style; # (5.2) SKIER 26F7 FE0F ; emoji style; # (5.2) SKIER 26F8 FE0E ; text style; # (5.2) ICE SKATE 26F8 FE0F ; emoji style; # (5.2) ICE SKATE 26F9 FE0E ; text style; # (5.2) PERSON WITH BALL 26F9 FE0F ; emoji style; # (5.2) PERSON WITH BALL 26FA FE0E ; text style; # (5.2) TENT 26FA FE0F ; emoji style; # (5.2) TENT 26FD FE0E ; text style; # (5.2) FUEL PUMP 26FD FE0F ; emoji style; # (5.2) FUEL PUMP 2702 FE0E ; text style; # (1.1) BLACK SCISSORS 2702 FE0F ; emoji style; # (1.1) BLACK SCISSORS 2708 FE0E ; text style; # (1.1) AIRPLANE 2708 FE0F ; emoji style; # (1.1) AIRPLANE 2709 FE0E ; text style; # (1.1) ENVELOPE 2709 FE0F ; emoji style; # (1.1) ENVELOPE 270C FE0E ; text style; # (1.1) VICTORY HAND 270C FE0F ; emoji style; # (1.1) VICTORY HAND 270D FE0E ; text style; # (1.1) WRITING HAND 270D FE0F ; emoji style; # (1.1) WRITING HAND 270F FE0E ; text style; # (1.1) PENCIL 270F FE0F ; emoji style; # (1.1) PENCIL 2712 FE0E ; text style; # (1.1) BLACK NIB 2712 FE0F ; emoji style; # (1.1) BLACK NIB 2714 FE0E ; text style; # (1.1) HEAVY CHECK MARK 2714 FE0F ; emoji style; # (1.1) HEAVY CHECK MARK 2716 FE0E ; text style; # (1.1) HEAVY MULTIPLICATION X 2716 FE0F ; emoji style; # (1.1) HEAVY MULTIPLICATION X 271D FE0E ; text style; # (1.1) LATIN CROSS 271D FE0F ; emoji style; # (1.1) LATIN CROSS 2721 FE0E ; text style; # (1.1) STAR OF DAVID 2721 FE0F ; emoji style; # (1.1) STAR OF DAVID 2733 FE0E ; text style; # (1.1) EIGHT SPOKED ASTERISK 2733 FE0F ; emoji style; # (1.1) EIGHT SPOKED ASTERISK 2734 FE0E ; text style; # (1.1) EIGHT POINTED BLACK STAR 2734 FE0F ; emoji style; # (1.1) EIGHT POINTED BLACK STAR 2744 FE0E ; text style; # (1.1) SNOWFLAKE 2744 FE0F ; emoji style; # (1.1) SNOWFLAKE 2747 FE0E ; text style; # (1.1) SPARKLE 2747 FE0F ; emoji style; # (1.1) SPARKLE 2753 FE0E ; text style; # (6.0) BLACK QUESTION MARK ORNAMENT 2753 FE0F ; emoji style; # (6.0) BLACK QUESTION MARK ORNAMENT 2757 FE0E ; text style; # (5.2) HEAVY EXCLAMATION MARK SYMBOL 2757 FE0F ; emoji style; # (5.2) HEAVY EXCLAMATION MARK SYMBOL 2763 FE0E ; text style; # (1.1) HEAVY HEART EXCLAMATION MARK ORNAMENT 2763 FE0F ; emoji style; # (1.1) HEAVY HEART EXCLAMATION MARK ORNAMENT 2764 FE0E ; text style; # (1.1) HEAVY BLACK HEART 2764 FE0F ; emoji style; # (1.1) HEAVY BLACK HEART 27A1 FE0E ; text style; # (1.1) BLACK RIGHTWARDS ARROW 27A1 FE0F ; emoji style; # (1.1) BLACK RIGHTWARDS ARROW 2934 FE0E ; text style; # (3.2) ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS 2934 FE0F ; emoji style; # (3.2) ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS 2935 FE0E ; text style; # (3.2) ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS 2935 FE0F ; emoji style; # (3.2) ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS 2B05 FE0E ; text style; # (4.0) LEFTWARDS BLACK ARROW 2B05 FE0F ; emoji style; # (4.0) LEFTWARDS BLACK ARROW 2B06 FE0E ; text style; # (4.0) UPWARDS BLACK ARROW 2B06 FE0F ; emoji style; # (4.0) UPWARDS BLACK ARROW 2B07 FE0E ; text style; # (4.0) DOWNWARDS BLACK ARROW 2B07 FE0F ; emoji style; # (4.0) DOWNWARDS BLACK ARROW 2B1B FE0E ; text style; # (5.1) BLACK LARGE SQUARE 2B1B FE0F ; emoji style; # (5.1) BLACK LARGE SQUARE 2B1C FE0E ; text style; # (5.1) WHITE LARGE SQUARE 2B1C FE0F ; emoji style; # (5.1) WHITE LARGE SQUARE 2B50 FE0E ; text style; # (5.1) WHITE MEDIUM STAR 2B50 FE0F ; emoji style; # (5.1) WHITE MEDIUM STAR 2B55 FE0E ; text style; # (5.2) HEAVY LARGE CIRCLE 2B55 FE0F ; emoji style; # (5.2) HEAVY LARGE CIRCLE 3030 FE0E ; text style; # (1.1) WAVY DASH 3030 FE0F ; emoji style; # (1.1) WAVY DASH 303D FE0E ; text style; # (3.2) PART ALTERNATION MARK 303D FE0F ; emoji style; # (3.2) PART ALTERNATION MARK 3297 FE0E ; text style; # (1.1) CIRCLED IDEOGRAPH CONGRATULATION 3297 FE0F ; emoji style; # (1.1) CIRCLED IDEOGRAPH CONGRATULATION 3299 FE0E ; text style; # (1.1) CIRCLED IDEOGRAPH SECRET 3299 FE0F ; emoji style; # (1.1) CIRCLED IDEOGRAPH SECRET 1F004 FE0E ; text style; # (5.1) MAHJONG TILE RED DRAGON 1F004 FE0F ; emoji style; # (5.1) MAHJONG TILE RED DRAGON 1F170 FE0E ; text style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER A 1F170 FE0F ; emoji style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER A 1F171 FE0E ; text style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER B 1F171 FE0F ; emoji style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER B 1F17E FE0E ; text style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER O 1F17E FE0F ; emoji style; # (6.0) NEGATIVE SQUARED LATIN CAPITAL LETTER O 1F17F FE0E ; text style; # (5.2) NEGATIVE SQUARED LATIN CAPITAL LETTER P 1F17F FE0F ; emoji style; # (5.2) NEGATIVE SQUARED LATIN CAPITAL LETTER P 1F202 FE0E ; text style; # (6.0) SQUARED KATAKANA SA 1F202 FE0F ; emoji style; # (6.0) SQUARED KATAKANA SA 1F21A FE0E ; text style; # (5.2) SQUARED CJK UNIFIED IDEOGRAPH-7121 1F21A FE0F ; emoji style; # (5.2) SQUARED CJK UNIFIED IDEOGRAPH-7121 1F22F FE0E ; text style; # (5.2) SQUARED CJK UNIFIED IDEOGRAPH-6307 1F22F FE0F ; emoji style; # (5.2) SQUARED CJK UNIFIED IDEOGRAPH-6307 1F237 FE0E ; text style; # (6.0) SQUARED CJK UNIFIED IDEOGRAPH-6708 1F237 FE0F ; emoji style; # (6.0) SQUARED CJK UNIFIED IDEOGRAPH-6708 1F30D FE0E ; text style; # (6.0) EARTH GLOBE EUROPE-AFRICA 1F30D FE0F ; emoji style; # (6.0) EARTH GLOBE EUROPE-AFRICA 1F30E FE0E ; text style; # (6.0) EARTH GLOBE AMERICAS 1F30E FE0F ; emoji style; # (6.0) EARTH GLOBE AMERICAS 1F30F FE0E ; text style; # (6.0) EARTH GLOBE ASIA-AUSTRALIA 1F30F FE0F ; emoji style; # (6.0) EARTH GLOBE ASIA-AUSTRALIA 1F315 FE0E ; text style; # (6.0) FULL MOON SYMBOL 1F315 FE0F ; emoji style; # (6.0) FULL MOON SYMBOL 1F31C FE0E ; text style; # (6.0) LAST QUARTER MOON WITH FACE 1F31C FE0F ; emoji style; # (6.0) LAST QUARTER MOON WITH FACE 1F321 FE0E ; text style; # (7.0) THERMOMETER 1F321 FE0F ; emoji style; # (7.0) THERMOMETER 1F324 FE0E ; text style; # (7.0) WHITE SUN WITH SMALL CLOUD 1F324 FE0F ; emoji style; # (7.0) WHITE SUN WITH SMALL CLOUD 1F325 FE0E ; text style; # (7.0) WHITE SUN BEHIND CLOUD 1F325 FE0F ; emoji style; # (7.0) WHITE SUN BEHIND CLOUD 1F326 FE0E ; text style; # (7.0) WHITE SUN BEHIND CLOUD WITH RAIN 1F326 FE0F ; emoji style; # (7.0) WHITE SUN BEHIND CLOUD WITH RAIN 1F327 FE0E ; text style; # (7.0) CLOUD WITH RAIN 1F327 FE0F ; emoji style; # (7.0) CLOUD WITH RAIN 1F328 FE0E ; text style; # (7.0) CLOUD WITH SNOW 1F328 FE0F ; emoji style; # (7.0) CLOUD WITH SNOW 1F329 FE0E ; text style; # (7.0) CLOUD WITH LIGHTNING 1F329 FE0F ; emoji style; # (7.0) CLOUD WITH LIGHTNING 1F32A FE0E ; text style; # (7.0) CLOUD WITH TORNADO 1F32A FE0F ; emoji style; # (7.0) CLOUD WITH TORNADO 1F32B FE0E ; text style; # (7.0) FOG 1F32B FE0F ; emoji style; # (7.0) FOG 1F32C FE0E ; text style; # (7.0) WIND BLOWING FACE 1F32C FE0F ; emoji style; # (7.0) WIND BLOWING FACE 1F336 FE0E ; text style; # (7.0) HOT PEPPER 1F336 FE0F ; emoji style; # (7.0) HOT PEPPER 1F378 FE0E ; text style; # (6.0) COCKTAIL GLASS 1F378 FE0F ; emoji style; # (6.0) COCKTAIL GLASS 1F37D FE0E ; text style; # (7.0) FORK AND KNIFE WITH PLATE 1F37D FE0F ; emoji style; # (7.0) FORK AND KNIFE WITH PLATE 1F393 FE0E ; text style; # (6.0) GRADUATION CAP 1F393 FE0F ; emoji style; # (6.0) GRADUATION CAP 1F396 FE0E ; text style; # (7.0) MILITARY MEDAL 1F396 FE0F ; emoji style; # (7.0) MILITARY MEDAL 1F397 FE0E ; text style; # (7.0) REMINDER RIBBON 1F397 FE0F ; emoji style; # (7.0) REMINDER RIBBON 1F399 FE0E ; text style; # (7.0) STUDIO MICROPHONE 1F399 FE0F ; emoji style; # (7.0) STUDIO MICROPHONE 1F39A FE0E ; text style; # (7.0) LEVEL SLIDER 1F39A FE0F ; emoji style; # (7.0) LEVEL SLIDER 1F39B FE0E ; text style; # (7.0) CONTROL KNOBS 1F39B FE0F ; emoji style; # (7.0) CONTROL KNOBS 1F39E FE0E ; text style; # (7.0) FILM FRAMES 1F39E FE0F ; emoji style; # (7.0) FILM FRAMES 1F39F FE0E ; text style; # (7.0) ADMISSION TICKETS 1F39F FE0F ; emoji style; # (7.0) ADMISSION TICKETS 1F3A7 FE0E ; text style; # (6.0) HEADPHONE 1F3A7 FE0F ; emoji style; # (6.0) HEADPHONE 1F3AC FE0E ; text style; # (6.0) CLAPPER BOARD 1F3AC FE0F ; emoji style; # (6.0) CLAPPER BOARD 1F3AD FE0E ; text style; # (6.0) PERFORMING ARTS 1F3AD FE0F ; emoji style; # (6.0) PERFORMING ARTS 1F3AE FE0E ; text style; # (6.0) VIDEO GAME 1F3AE FE0F ; emoji style; # (6.0) VIDEO GAME 1F3C2 FE0E ; text style; # (6.0) SNOWBOARDER 1F3C2 FE0F ; emoji style; # (6.0) SNOWBOARDER 1F3C4 FE0E ; text style; # (6.0) SURFER 1F3C4 FE0F ; emoji style; # (6.0) SURFER 1F3C6 FE0E ; text style; # (6.0) TROPHY 1F3C6 FE0F ; emoji style; # (6.0) TROPHY 1F3CA FE0E ; text style; # (6.0) SWIMMER 1F3CA FE0F ; emoji style; # (6.0) SWIMMER 1F3CB FE0E ; text style; # (7.0) WEIGHT LIFTER 1F3CB FE0F ; emoji style; # (7.0) WEIGHT LIFTER 1F3CC FE0E ; text style; # (7.0) GOLFER 1F3CC FE0F ; emoji style; # (7.0) GOLFER 1F3CD FE0E ; text style; # (7.0) RACING MOTORCYCLE 1F3CD FE0F ; emoji style; # (7.0) RACING MOTORCYCLE 1F3CE FE0E ; text style; # (7.0) RACING CAR 1F3CE FE0F ; emoji style; # (7.0) RACING CAR 1F3D4 FE0E ; text style; # (7.0) SNOW CAPPED MOUNTAIN 1F3D4 FE0F ; emoji style; # (7.0) SNOW CAPPED MOUNTAIN 1F3D5 FE0E ; text style; # (7.0) CAMPING 1F3D5 FE0F ; emoji style; # (7.0) CAMPING 1F3D6 FE0E ; text style; # (7.0) BEACH WITH UMBRELLA 1F3D6 FE0F ; emoji style; # (7.0) BEACH WITH UMBRELLA 1F3D7 FE0E ; text style; # (7.0) BUILDING CONSTRUCTION 1F3D7 FE0F ; emoji style; # (7.0) BUILDING CONSTRUCTION 1F3D8 FE0E ; text style; # (7.0) HOUSE BUILDINGS 1F3D8 FE0F ; emoji style; # (7.0) HOUSE BUILDINGS 1F3D9 FE0E ; text style; # (7.0) CITYSCAPE 1F3D9 FE0F ; emoji style; # (7.0) CITYSCAPE 1F3DA FE0E ; text style; # (7.0) DERELICT HOUSE BUILDING 1F3DA FE0F ; emoji style; # (7.0) DERELICT HOUSE BUILDING 1F3DB FE0E ; text style; # (7.0) CLASSICAL BUILDING 1F3DB FE0F ; emoji style; # (7.0) CLASSICAL BUILDING 1F3DC FE0E ; text style; # (7.0) DESERT 1F3DC FE0F ; emoji style; # (7.0) DESERT 1F3DD FE0E ; text style; # (7.0) DESERT ISLAND 1F3DD FE0F ; emoji style; # (7.0) DESERT ISLAND 1F3DE FE0E ; text style; # (7.0) NATIONAL PARK 1F3DE FE0F ; emoji style; # (7.0) NATIONAL PARK 1F3DF FE0E ; text style; # (7.0) STADIUM 1F3DF FE0F ; emoji style; # (7.0) STADIUM 1F3E0 FE0E ; text style; # (6.0) HOUSE BUILDING 1F3E0 FE0F ; emoji style; # (6.0) HOUSE BUILDING 1F3ED FE0E ; text style; # (6.0) FACTORY 1F3ED FE0F ; emoji style; # (6.0) FACTORY 1F3F3 FE0E ; text style; # (7.0) WAVING WHITE FLAG 1F3F3 FE0F ; emoji style; # (7.0) WAVING WHITE FLAG 1F3F5 FE0E ; text style; # (7.0) ROSETTE 1F3F5 FE0F ; emoji style; # (7.0) ROSETTE 1F3F7 FE0E ; text style; # (7.0) LABEL 1F3F7 FE0F ; emoji style; # (7.0) LABEL 1F408 FE0E ; text style; # (6.0) CAT 1F408 FE0F ; emoji style; # (6.0) CAT 1F415 FE0E ; text style; # (6.0) DOG 1F415 FE0F ; emoji style; # (6.0) DOG 1F41F FE0E ; text style; # (6.0) FISH 1F41F FE0F ; emoji style; # (6.0) FISH 1F426 FE0E ; text style; # (6.0) BIRD 1F426 FE0F ; emoji style; # (6.0) BIRD 1F43F FE0E ; text style; # (7.0) CHIPMUNK 1F43F FE0F ; emoji style; # (7.0) CHIPMUNK 1F441 FE0E ; text style; # (7.0) EYE 1F441 FE0F ; emoji style; # (7.0) EYE 1F442 FE0E ; text style; # (6.0) EAR 1F442 FE0F ; emoji style; # (6.0) EAR 1F446 FE0E ; text style; # (6.0) WHITE UP POINTING BACKHAND INDEX 1F446 FE0F ; emoji style; # (6.0) WHITE UP POINTING BACKHAND INDEX 1F447 FE0E ; text style; # (6.0) WHITE DOWN POINTING BACKHAND INDEX 1F447 FE0F ; emoji style; # (6.0) WHITE DOWN POINTING BACKHAND INDEX 1F448 FE0E ; text style; # (6.0) WHITE LEFT POINTING BACKHAND INDEX 1F448 FE0F ; emoji style; # (6.0) WHITE LEFT POINTING BACKHAND INDEX 1F449 FE0E ; text style; # (6.0) WHITE RIGHT POINTING BACKHAND INDEX 1F449 FE0F ; emoji style; # (6.0) WHITE RIGHT POINTING BACKHAND INDEX 1F44D FE0E ; text style; # (6.0) THUMBS UP SIGN 1F44D FE0F ; emoji style; # (6.0) THUMBS UP SIGN 1F44E FE0E ; text style; # (6.0) THUMBS DOWN SIGN 1F44E FE0F ; emoji style; # (6.0) THUMBS DOWN SIGN 1F453 FE0E ; text style; # (6.0) EYEGLASSES 1F453 FE0F ; emoji style; # (6.0) EYEGLASSES 1F46A FE0E ; text style; # (6.0) FAMILY 1F46A FE0F ; emoji style; # (6.0) FAMILY 1F47D FE0E ; text style; # (6.0) EXTRATERRESTRIAL ALIEN 1F47D FE0F ; emoji style; # (6.0) EXTRATERRESTRIAL ALIEN 1F4A3 FE0E ; text style; # (6.0) BOMB 1F4A3 FE0F ; emoji style; # (6.0) BOMB 1F4B0 FE0E ; text style; # (6.0) MONEY BAG 1F4B0 FE0F ; emoji style; # (6.0) MONEY BAG 1F4B3 FE0E ; text style; # (6.0) CREDIT CARD 1F4B3 FE0F ; emoji style; # (6.0) CREDIT CARD 1F4BB FE0E ; text style; # (6.0) PERSONAL COMPUTER 1F4BB FE0F ; emoji style; # (6.0) PERSONAL COMPUTER 1F4BF FE0E ; text style; # (6.0) OPTICAL DISC 1F4BF FE0F ; emoji style; # (6.0) OPTICAL DISC 1F4CB FE0E ; text style; # (6.0) CLIPBOARD 1F4CB FE0F ; emoji style; # (6.0) CLIPBOARD 1F4DA FE0E ; text style; # (6.0) BOOKS 1F4DA FE0F ; emoji style; # (6.0) BOOKS 1F4DF FE0E ; text style; # (6.0) PAGER 1F4DF FE0F ; emoji style; # (6.0) PAGER 1F4E4 FE0E ; text style; # (6.0) OUTBOX TRAY 1F4E4 FE0F ; emoji style; # (6.0) OUTBOX TRAY 1F4E5 FE0E ; text style; # (6.0) INBOX TRAY 1F4E5 FE0F ; emoji style; # (6.0) INBOX TRAY 1F4E6 FE0E ; text style; # (6.0) PACKAGE 1F4E6 FE0F ; emoji style; # (6.0) PACKAGE 1F4EA FE0E ; text style; # (6.0) CLOSED MAILBOX WITH LOWERED FLAG 1F4EA FE0F ; emoji style; # (6.0) CLOSED MAILBOX WITH LOWERED FLAG 1F4EB FE0E ; text style; # (6.0) CLOSED MAILBOX WITH RAISED FLAG 1F4EB FE0F ; emoji style; # (6.0) CLOSED MAILBOX WITH RAISED FLAG 1F4EC FE0E ; text style; # (6.0) OPEN MAILBOX WITH RAISED FLAG 1F4EC FE0F ; emoji style; # (6.0) OPEN MAILBOX WITH RAISED FLAG 1F4ED FE0E ; text style; # (6.0) OPEN MAILBOX WITH LOWERED FLAG 1F4ED FE0F ; emoji style; # (6.0) OPEN MAILBOX WITH LOWERED FLAG 1F4F7 FE0E ; text style; # (6.0) CAMERA 1F4F7 FE0F ; emoji style; # (6.0) CAMERA 1F4F9 FE0E ; text style; # (6.0) VIDEO CAMERA 1F4F9 FE0F ; emoji style; # (6.0) VIDEO CAMERA 1F4FA FE0E ; text style; # (6.0) TELEVISION 1F4FA FE0F ; emoji style; # (6.0) TELEVISION 1F4FB FE0E ; text style; # (6.0) RADIO 1F4FB FE0F ; emoji style; # (6.0) RADIO 1F4FD FE0E ; text style; # (7.0) FILM PROJECTOR 1F4FD FE0F ; emoji style; # (7.0) FILM PROJECTOR 1F508 FE0E ; text style; # (6.0) SPEAKER 1F508 FE0F ; emoji style; # (6.0) SPEAKER 1F50D FE0E ; text style; # (6.0) LEFT-POINTING MAGNIFYING GLASS 1F50D FE0F ; emoji style; # (6.0) LEFT-POINTING MAGNIFYING GLASS 1F512 FE0E ; text style; # (6.0) LOCK 1F512 FE0F ; emoji style; # (6.0) LOCK 1F513 FE0E ; text style; # (6.0) OPEN LOCK 1F513 FE0F ; emoji style; # (6.0) OPEN LOCK 1F549 FE0E ; text style; # (7.0) OM SYMBOL 1F549 FE0F ; emoji style; # (7.0) OM SYMBOL 1F54A FE0E ; text style; # (7.0) DOVE OF PEACE 1F54A FE0F ; emoji style; # (7.0) DOVE OF PEACE 1F550 FE0E ; text style; # (6.0) CLOCK FACE ONE OCLOCK 1F550 FE0F ; emoji style; # (6.0) CLOCK FACE ONE OCLOCK 1F551 FE0E ; text style; # (6.0) CLOCK FACE TWO OCLOCK 1F551 FE0F ; emoji style; # (6.0) CLOCK FACE TWO OCLOCK 1F552 FE0E ; text style; # (6.0) CLOCK FACE THREE OCLOCK 1F552 FE0F ; emoji style; # (6.0) CLOCK FACE THREE OCLOCK 1F553 FE0E ; text style; # (6.0) CLOCK FACE FOUR OCLOCK 1F553 FE0F ; emoji style; # (6.0) CLOCK FACE FOUR OCLOCK 1F554 FE0E ; text style; # (6.0) CLOCK FACE FIVE OCLOCK 1F554 FE0F ; emoji style; # (6.0) CLOCK FACE FIVE OCLOCK 1F555 FE0E ; text style; # (6.0) CLOCK FACE SIX OCLOCK 1F555 FE0F ; emoji style; # (6.0) CLOCK FACE SIX OCLOCK 1F556 FE0E ; text style; # (6.0) CLOCK FACE SEVEN OCLOCK 1F556 FE0F ; emoji style; # (6.0) CLOCK FACE SEVEN OCLOCK 1F557 FE0E ; text style; # (6.0) CLOCK FACE EIGHT OCLOCK 1F557 FE0F ; emoji style; # (6.0) CLOCK FACE EIGHT OCLOCK 1F558 FE0E ; text style; # (6.0) CLOCK FACE NINE OCLOCK 1F558 FE0F ; emoji style; # (6.0) CLOCK FACE NINE OCLOCK 1F559 FE0E ; text style; # (6.0) CLOCK FACE TEN OCLOCK 1F559 FE0F ; emoji style; # (6.0) CLOCK FACE TEN OCLOCK 1F55A FE0E ; text style; # (6.0) CLOCK FACE ELEVEN OCLOCK 1F55A FE0F ; emoji style; # (6.0) CLOCK FACE ELEVEN OCLOCK 1F55B FE0E ; text style; # (6.0) CLOCK FACE TWELVE OCLOCK 1F55B FE0F ; emoji style; # (6.0) CLOCK FACE TWELVE OCLOCK 1F55C FE0E ; text style; # (6.0) CLOCK FACE ONE-THIRTY 1F55C FE0F ; emoji style; # (6.0) CLOCK FACE ONE-THIRTY 1F55D FE0E ; text style; # (6.0) CLOCK FACE TWO-THIRTY 1F55D FE0F ; emoji style; # (6.0) CLOCK FACE TWO-THIRTY 1F55E FE0E ; text style; # (6.0) CLOCK FACE THREE-THIRTY 1F55E FE0F ; emoji style; # (6.0) CLOCK FACE THREE-THIRTY 1F55F FE0E ; text style; # (6.0) CLOCK FACE FOUR-THIRTY 1F55F FE0F ; emoji style; # (6.0) CLOCK FACE FOUR-THIRTY 1F560 FE0E ; text style; # (6.0) CLOCK FACE FIVE-THIRTY 1F560 FE0F ; emoji style; # (6.0) CLOCK FACE FIVE-THIRTY 1F561 FE0E ; text style; # (6.0) CLOCK FACE SIX-THIRTY 1F561 FE0F ; emoji style; # (6.0) CLOCK FACE SIX-THIRTY 1F562 FE0E ; text style; # (6.0) CLOCK FACE SEVEN-THIRTY 1F562 FE0F ; emoji style; # (6.0) CLOCK FACE SEVEN-THIRTY 1F563 FE0E ; text style; # (6.0) CLOCK FACE EIGHT-THIRTY 1F563 FE0F ; emoji style; # (6.0) CLOCK FACE EIGHT-THIRTY 1F564 FE0E ; text style; # (6.0) CLOCK FACE NINE-THIRTY 1F564 FE0F ; emoji style; # (6.0) CLOCK FACE NINE-THIRTY 1F565 FE0E ; text style; # (6.0) CLOCK FACE TEN-THIRTY 1F565 FE0F ; emoji style; # (6.0) CLOCK FACE TEN-THIRTY 1F566 FE0E ; text style; # (6.0) CLOCK FACE ELEVEN-THIRTY 1F566 FE0F ; emoji style; # (6.0) CLOCK FACE ELEVEN-THIRTY 1F567 FE0E ; text style; # (6.0) CLOCK FACE TWELVE-THIRTY 1F567 FE0F ; emoji style; # (6.0) CLOCK FACE TWELVE-THIRTY 1F56F FE0E ; text style; # (7.0) CANDLE 1F56F FE0F ; emoji style; # (7.0) CANDLE 1F570 FE0E ; text style; # (7.0) MANTELPIECE CLOCK 1F570 FE0F ; emoji style; # (7.0) MANTELPIECE CLOCK 1F573 FE0E ; text style; # (7.0) HOLE 1F573 FE0F ; emoji style; # (7.0) HOLE 1F574 FE0E ; text style; # (7.0) MAN IN BUSINESS SUIT LEVITATING 1F574 FE0F ; emoji style; # (7.0) MAN IN BUSINESS SUIT LEVITATING 1F575 FE0E ; text style; # (7.0) SLEUTH OR SPY 1F575 FE0F ; emoji style; # (7.0) SLEUTH OR SPY 1F576 FE0E ; text style; # (7.0) DARK SUNGLASSES 1F576 FE0F ; emoji style; # (7.0) DARK SUNGLASSES 1F577 FE0E ; text style; # (7.0) SPIDER 1F577 FE0F ; emoji style; # (7.0) SPIDER 1F578 FE0E ; text style; # (7.0) SPIDER WEB 1F578 FE0F ; emoji style; # (7.0) SPIDER WEB 1F579 FE0E ; text style; # (7.0) JOYSTICK 1F579 FE0F ; emoji style; # (7.0) JOYSTICK 1F587 FE0E ; text style; # (7.0) LINKED PAPERCLIPS 1F587 FE0F ; emoji style; # (7.0) LINKED PAPERCLIPS 1F58A FE0E ; text style; # (7.0) LOWER LEFT BALLPOINT PEN 1F58A FE0F ; emoji style; # (7.0) LOWER LEFT BALLPOINT PEN 1F58B FE0E ; text style; # (7.0) LOWER LEFT FOUNTAIN PEN 1F58B FE0F ; emoji style; # (7.0) LOWER LEFT FOUNTAIN PEN 1F58C FE0E ; text style; # (7.0) LOWER LEFT PAINTBRUSH 1F58C FE0F ; emoji style; # (7.0) LOWER LEFT PAINTBRUSH 1F58D FE0E ; text style; # (7.0) LOWER LEFT CRAYON 1F58D FE0F ; emoji style; # (7.0) LOWER LEFT CRAYON 1F590 FE0E ; text style; # (7.0) RAISED HAND WITH FINGERS SPLAYED 1F590 FE0F ; emoji style; # (7.0) RAISED HAND WITH FINGERS SPLAYED 1F5A5 FE0E ; text style; # (7.0) DESKTOP COMPUTER 1F5A5 FE0F ; emoji style; # (7.0) DESKTOP COMPUTER 1F5A8 FE0E ; text style; # (7.0) PRINTER 1F5A8 FE0F ; emoji style; # (7.0) PRINTER 1F5B1 FE0E ; text style; # (7.0) THREE BUTTON MOUSE 1F5B1 FE0F ; emoji style; # (7.0) THREE BUTTON MOUSE 1F5B2 FE0E ; text style; # (7.0) TRACKBALL 1F5B2 FE0F ; emoji style; # (7.0) TRACKBALL 1F5BC FE0E ; text style; # (7.0) FRAME WITH PICTURE 1F5BC FE0F ; emoji style; # (7.0) FRAME WITH PICTURE 1F5C2 FE0E ; text style; # (7.0) CARD INDEX DIVIDERS 1F5C2 FE0F ; emoji style; # (7.0) CARD INDEX DIVIDERS 1F5C3 FE0E ; text style; # (7.0) CARD FILE BOX 1F5C3 FE0F ; emoji style; # (7.0) CARD FILE BOX 1F5C4 FE0E ; text style; # (7.0) FILE CABINET 1F5C4 FE0F ; emoji style; # (7.0) FILE CABINET 1F5D1 FE0E ; text style; # (7.0) WASTEBASKET 1F5D1 FE0F ; emoji style; # (7.0) WASTEBASKET 1F5D2 FE0E ; text style; # (7.0) SPIRAL NOTE PAD 1F5D2 FE0F ; emoji style; # (7.0) SPIRAL NOTE PAD 1F5D3 FE0E ; text style; # (7.0) SPIRAL CALENDAR PAD 1F5D3 FE0F ; emoji style; # (7.0) SPIRAL CALENDAR PAD 1F5DC FE0E ; text style; # (7.0) COMPRESSION 1F5DC FE0F ; emoji style; # (7.0) COMPRESSION 1F5DD FE0E ; text style; # (7.0) OLD KEY 1F5DD FE0F ; emoji style; # (7.0) OLD KEY 1F5DE FE0E ; text style; # (7.0) ROLLED-UP NEWSPAPER 1F5DE FE0F ; emoji style; # (7.0) ROLLED-UP NEWSPAPER 1F5E1 FE0E ; text style; # (7.0) DAGGER KNIFE 1F5E1 FE0F ; emoji style; # (7.0) DAGGER KNIFE 1F5E3 FE0E ; text style; # (7.0) SPEAKING HEAD IN SILHOUETTE 1F5E3 FE0F ; emoji style; # (7.0) SPEAKING HEAD IN SILHOUETTE 1F5E8 FE0E ; text style; # (7.0) LEFT SPEECH BUBBLE 1F5E8 FE0F ; emoji style; # (7.0) LEFT SPEECH BUBBLE 1F5EF FE0E ; text style; # (7.0) RIGHT ANGER BUBBLE 1F5EF FE0F ; emoji style; # (7.0) RIGHT ANGER BUBBLE 1F5F3 FE0E ; text style; # (7.0) BALLOT BOX WITH BALLOT 1F5F3 FE0F ; emoji style; # (7.0) BALLOT BOX WITH BALLOT 1F5FA FE0E ; text style; # (7.0) WORLD MAP 1F5FA FE0F ; emoji style; # (7.0) WORLD MAP 1F610 FE0E ; text style; # (6.0) NEUTRAL FACE 1F610 FE0F ; emoji style; # (6.0) NEUTRAL FACE 1F687 FE0E ; text style; # (6.0) METRO 1F687 FE0F ; emoji style; # (6.0) METRO 1F68D FE0E ; text style; # (6.0) ONCOMING BUS 1F68D FE0F ; emoji style; # (6.0) ONCOMING BUS 1F691 FE0E ; text style; # (6.0) AMBULANCE 1F691 FE0F ; emoji style; # (6.0) AMBULANCE 1F694 FE0E ; text style; # (6.0) ONCOMING POLICE CAR 1F694 FE0F ; emoji style; # (6.0) ONCOMING POLICE CAR 1F698 FE0E ; text style; # (6.0) ONCOMING AUTOMOBILE 1F698 FE0F ; emoji style; # (6.0) ONCOMING AUTOMOBILE 1F6AD FE0E ; text style; # (6.0) NO SMOKING SYMBOL 1F6AD FE0F ; emoji style; # (6.0) NO SMOKING SYMBOL 1F6B2 FE0E ; text style; # (6.0) BICYCLE 1F6B2 FE0F ; emoji style; # (6.0) BICYCLE 1F6B9 FE0E ; text style; # (6.0) MENS SYMBOL 1F6B9 FE0F ; emoji style; # (6.0) MENS SYMBOL 1F6BA FE0E ; text style; # (6.0) WOMENS SYMBOL 1F6BA FE0F ; emoji style; # (6.0) WOMENS SYMBOL 1F6BC FE0E ; text style; # (6.0) BABY SYMBOL 1F6BC FE0F ; emoji style; # (6.0) BABY SYMBOL 1F6CB FE0E ; text style; # (7.0) COUCH AND LAMP 1F6CB FE0F ; emoji style; # (7.0) COUCH AND LAMP 1F6CD FE0E ; text style; # (7.0) SHOPPING BAGS 1F6CD FE0F ; emoji style; # (7.0) SHOPPING BAGS 1F6CE FE0E ; text style; # (7.0) BELLHOP BELL 1F6CE FE0F ; emoji style; # (7.0) BELLHOP BELL 1F6CF FE0E ; text style; # (7.0) BED 1F6CF FE0F ; emoji style; # (7.0) BED 1F6E0 FE0E ; text style; # (7.0) HAMMER AND WRENCH 1F6E0 FE0F ; emoji style; # (7.0) HAMMER AND WRENCH 1F6E1 FE0E ; text style; # (7.0) SHIELD 1F6E1 FE0F ; emoji style; # (7.0) SHIELD 1F6E2 FE0E ; text style; # (7.0) OIL DRUM 1F6E2 FE0F ; emoji style; # (7.0) OIL DRUM 1F6E3 FE0E ; text style; # (7.0) MOTORWAY 1F6E3 FE0F ; emoji style; # (7.0) MOTORWAY 1F6E4 FE0E ; text style; # (7.0) RAILWAY TRACK 1F6E4 FE0F ; emoji style; # (7.0) RAILWAY TRACK 1F6E5 FE0E ; text style; # (7.0) MOTOR BOAT 1F6E5 FE0F ; emoji style; # (7.0) MOTOR BOAT 1F6E9 FE0E ; text style; # (7.0) SMALL AIRPLANE 1F6E9 FE0F ; emoji style; # (7.0) SMALL AIRPLANE 1F6F0 FE0E ; text style; # (7.0) SATELLITE 1F6F0 FE0F ; emoji style; # (7.0) SATELLITE 1F6F3 FE0E ; text style; # (7.0) PASSENGER SHIP 1F6F3 FE0F ; emoji style; # (7.0) PASSENGER SHIP #Total sequences: 354 #EOF tanuki_emoji-0.9.0/vendor/unicode/emoji-zwj-sequences.txt0000644000004100000410000067442114545323276023647 0ustar www-datawww-data# emoji-zwj-sequences.txt # Date: 2020-08-30, 17:14:54 GMT # © 2020 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. # For terms of use, see http://www.unicode.org/terms_of_use.html # # Emoji ZWJ Sequences for UTS #51 # Version: 13.1 # # For documentation and usage, see http://www.unicode.org/reports/tr51 # # Format: # code_point(s) ; type_field ; description # comments # Fields: # code_point(s): one or more code points in hex format, separated by spaces # type_field :RGI_Emoji_ZWJ_Sequence # The type_field is a convenience for parsing the emoji sequence files, and is not intended to be maintained as a property. # short name: CLDR short name of sequence; characters may be escaped with \x{hex}. # # For the purpose of regular expressions, the above type field defines the name of # a binary property of strings. The short name of the property is the same as the long name. # # Characters and sequences are listed in code point order. Users should be shown a more natural order. # See the CLDR collation order for Emoji. # ================================================ # RGI_Emoji_ZWJ_Sequence: Family 1F468 200D 2764 FE0F 200D 1F468 ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man # E2.0 [1] (👨‍❤️‍👨) 1F468 200D 2764 FE0F 200D 1F48B 200D 1F468 ; RGI_Emoji_ZWJ_Sequence ; kiss: man, man # E2.0 [1] (👨‍❤️‍💋‍👨) 1F468 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, boy # E4.0 [1] (👨‍👦) 1F468 200D 1F466 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, boy, boy # E4.0 [1] (👨‍👦‍👦) 1F468 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, girl # E4.0 [1] (👨‍👧) 1F468 200D 1F467 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, girl, boy # E4.0 [1] (👨‍👧‍👦) 1F468 200D 1F467 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, girl, girl # E4.0 [1] (👨‍👧‍👧) 1F468 200D 1F468 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, man, boy # E2.0 [1] (👨‍👨‍👦) 1F468 200D 1F468 200D 1F466 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, man, boy, boy # E2.0 [1] (👨‍👨‍👦‍👦) 1F468 200D 1F468 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, man, girl # E2.0 [1] (👨‍👨‍👧) 1F468 200D 1F468 200D 1F467 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, man, girl, boy # E2.0 [1] (👨‍👨‍👧‍👦) 1F468 200D 1F468 200D 1F467 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, man, girl, girl # E2.0 [1] (👨‍👨‍👧‍👧) 1F468 200D 1F469 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, woman, boy # E2.0 [1] (👨‍👩‍👦) 1F468 200D 1F469 200D 1F466 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, woman, boy, boy # E2.0 [1] (👨‍👩‍👦‍👦) 1F468 200D 1F469 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, woman, girl # E2.0 [1] (👨‍👩‍👧) 1F468 200D 1F469 200D 1F467 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: man, woman, girl, boy # E2.0 [1] (👨‍👩‍👧‍👦) 1F468 200D 1F469 200D 1F467 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: man, woman, girl, girl # E2.0 [1] (👨‍👩‍👧‍👧) 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, light skin tone # E13.1 [1] (👨🏻‍❤️‍👨🏻) 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, light skin tone, medium-light skin tone #E13.1[1] (👨🏻‍❤️‍👨🏼) 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, light skin tone, medium skin tone # E13.1 [1] (👨🏻‍❤️‍👨🏽) 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, light skin tone, medium-dark skin tone #E13.1[1] (👨🏻‍❤️‍👨🏾) 1F468 1F3FB 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, light skin tone, dark skin tone # E13.1 [1] (👨🏻‍❤️‍👨🏿) 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: man, man, light skin tone # E13.1 [1] (👨🏻‍❤️‍💋‍👨🏻) 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: man, man, light skin tone, medium-light skin tone #E13.1 [1] (👨🏻‍❤️‍💋‍👨🏼) 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: man, man, light skin tone, medium skin tone # E13.1 [1] (👨🏻‍❤️‍💋‍👨🏽) 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: man, man, light skin tone, medium-dark skin tone # E13.1 [1] (👨🏻‍❤️‍💋‍👨🏾) 1F468 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: man, man, light skin tone, dark skin tone # E13.1 [1] (👨🏻‍❤️‍💋‍👨🏿) 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; men holding hands: light skin tone, medium-light skin tone # E12.1 [1] (👨🏻‍🤝‍👨🏼) 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; men holding hands: light skin tone, medium skin tone # E12.1 [1] (👨🏻‍🤝‍👨🏽) 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; men holding hands: light skin tone, medium-dark skin tone # E12.1 [1] (👨🏻‍🤝‍👨🏾) 1F468 1F3FB 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; men holding hands: light skin tone, dark skin tone # E12.1 [1] (👨🏻‍🤝‍👨🏿) 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-light skin tone, light skin tone #E13.1[1] (👨🏼‍❤️‍👨🏻) 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-light skin tone # E13.1 [1] (👨🏼‍❤️‍👨🏼) 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-light skin tone, medium skin tone #E13.1[1] (👨🏼‍❤️‍👨🏽) 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-light skin tone, medium-dark skin tone #E13.1[1] (👨🏼‍❤️‍👨🏾) 1F468 1F3FC 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-light skin tone, dark skin tone #E13.1[1] (👨🏼‍❤️‍👨🏿) 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-light skin tone, light skin tone #E13.1 [1] (👨🏼‍❤️‍💋‍👨🏻) 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-light skin tone # E13.1 [1] (👨🏼‍❤️‍💋‍👨🏼) 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-light skin tone, medium skin tone #E13.1 [1] (👨🏼‍❤️‍💋‍👨🏽) 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-light skin tone, medium-dark skin tone #E13.1[1] (👨🏼‍❤️‍💋‍👨🏾) 1F468 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-light skin tone, dark skin tone # E13.1 [1] (👨🏼‍❤️‍💋‍👨🏿) 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-light skin tone, light skin tone # E12.0 [1] (👨🏼‍🤝‍👨🏻) 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-light skin tone, medium skin tone # E12.1 [1] (👨🏼‍🤝‍👨🏽) 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-light skin tone, medium-dark skin tone #E12.1 [1] (👨🏼‍🤝‍👨🏾) 1F468 1F3FC 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-light skin tone, dark skin tone # E12.1 [1] (👨🏼‍🤝‍👨🏿) 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium skin tone, light skin tone # E13.1 [1] (👨🏽‍❤️‍👨🏻) 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium skin tone, medium-light skin tone #E13.1[1] (👨🏽‍❤️‍👨🏼) 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium skin tone # E13.1 [1] (👨🏽‍❤️‍👨🏽) 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium skin tone, medium-dark skin tone #E13.1[1] (👨🏽‍❤️‍👨🏾) 1F468 1F3FD 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium skin tone, dark skin tone # E13.1 [1] (👨🏽‍❤️‍👨🏿) 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium skin tone, light skin tone # E13.1 [1] (👨🏽‍❤️‍💋‍👨🏻) 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium skin tone, medium-light skin tone #E13.1 [1] (👨🏽‍❤️‍💋‍👨🏼) 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium skin tone # E13.1 [1] (👨🏽‍❤️‍💋‍👨🏽) 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium skin tone, medium-dark skin tone #E13.1 [1] (👨🏽‍❤️‍💋‍👨🏾) 1F468 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium skin tone, dark skin tone # E13.1 [1] (👨🏽‍❤️‍💋‍👨🏿) 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium skin tone, light skin tone # E12.0 [1] (👨🏽‍🤝‍👨🏻) 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium skin tone, medium-light skin tone # E12.0 [1] (👨🏽‍🤝‍👨🏼) 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium skin tone, medium-dark skin tone # E12.1 [1] (👨🏽‍🤝‍👨🏾) 1F468 1F3FD 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium skin tone, dark skin tone # E12.1 [1] (👨🏽‍🤝‍👨🏿) 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-dark skin tone, light skin tone #E13.1[1] (👨🏾‍❤️‍👨🏻) 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-dark skin tone, medium-light skin tone #E13.1[1] (👨🏾‍❤️‍👨🏼) 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-dark skin tone, medium skin tone #E13.1[1] (👨🏾‍❤️‍👨🏽) 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-dark skin tone # E13.1 [1] (👨🏾‍❤️‍👨🏾) 1F468 1F3FE 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, medium-dark skin tone, dark skin tone #E13.1[1] (👨🏾‍❤️‍👨🏿) 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-dark skin tone, light skin tone # E13.1 [1] (👨🏾‍❤️‍💋‍👨🏻) 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-dark skin tone, medium-light skin tone #E13.1[1] (👨🏾‍❤️‍💋‍👨🏼) 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-dark skin tone, medium skin tone #E13.1 [1] (👨🏾‍❤️‍💋‍👨🏽) 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-dark skin tone # E13.1 [1] (👨🏾‍❤️‍💋‍👨🏾) 1F468 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: man, man, medium-dark skin tone, dark skin tone # E13.1 [1] (👨🏾‍❤️‍💋‍👨🏿) 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-dark skin tone, light skin tone # E12.0 [1] (👨🏾‍🤝‍👨🏻) 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-dark skin tone, medium-light skin tone #E12.0 [1] (👨🏾‍🤝‍👨🏼) 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-dark skin tone, medium skin tone # E12.0 [1] (👨🏾‍🤝‍👨🏽) 1F468 1F3FE 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; men holding hands: medium-dark skin tone, dark skin tone # E12.1 [1] (👨🏾‍🤝‍👨🏿) 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, dark skin tone, light skin tone # E13.1 [1] (👨🏿‍❤️‍👨🏻) 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, dark skin tone, medium-light skin tone #E13.1[1] (👨🏿‍❤️‍👨🏼) 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, dark skin tone, medium skin tone # E13.1 [1] (👨🏿‍❤️‍👨🏽) 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, dark skin tone, medium-dark skin tone #E13.1[1] (👨🏿‍❤️‍👨🏾) 1F468 1F3FF 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: man, man, dark skin tone # E13.1 [1] (👨🏿‍❤️‍👨🏿) 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: man, man, dark skin tone, light skin tone # E13.1 [1] (👨🏿‍❤️‍💋‍👨🏻) 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: man, man, dark skin tone, medium-light skin tone # E13.1 [1] (👨🏿‍❤️‍💋‍👨🏼) 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: man, man, dark skin tone, medium skin tone # E13.1 [1] (👨🏿‍❤️‍💋‍👨🏽) 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: man, man, dark skin tone, medium-dark skin tone # E13.1 [1] (👨🏿‍❤️‍💋‍👨🏾) 1F468 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: man, man, dark skin tone # E13.1 [1] (👨🏿‍❤️‍💋‍👨🏿) 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; men holding hands: dark skin tone, light skin tone # E12.0 [1] (👨🏿‍🤝‍👨🏻) 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; men holding hands: dark skin tone, medium-light skin tone # E12.0 [1] (👨🏿‍🤝‍👨🏼) 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; men holding hands: dark skin tone, medium skin tone # E12.0 [1] (👨🏿‍🤝‍👨🏽) 1F468 1F3FF 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; men holding hands: dark skin tone, medium-dark skin tone # E12.0 [1] (👨🏿‍🤝‍👨🏾) 1F469 200D 2764 FE0F 200D 1F468 ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man # E2.0 [1] (👩‍❤️‍👨) 1F469 200D 2764 FE0F 200D 1F469 ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman # E2.0 [1] (👩‍❤️‍👩) 1F469 200D 2764 FE0F 200D 1F48B 200D 1F468 ; RGI_Emoji_ZWJ_Sequence ; kiss: woman, man # E2.0 [1] (👩‍❤️‍💋‍👨) 1F469 200D 2764 FE0F 200D 1F48B 200D 1F469 ; RGI_Emoji_ZWJ_Sequence ; kiss: woman, woman # E2.0 [1] (👩‍❤️‍💋‍👩) 1F469 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, boy # E4.0 [1] (👩‍👦) 1F469 200D 1F466 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, boy, boy # E4.0 [1] (👩‍👦‍👦) 1F469 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: woman, girl # E4.0 [1] (👩‍👧) 1F469 200D 1F467 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, girl, boy # E4.0 [1] (👩‍👧‍👦) 1F469 200D 1F467 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: woman, girl, girl # E4.0 [1] (👩‍👧‍👧) 1F469 200D 1F469 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, woman, boy # E2.0 [1] (👩‍👩‍👦) 1F469 200D 1F469 200D 1F466 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, woman, boy, boy # E2.0 [1] (👩‍👩‍👦‍👦) 1F469 200D 1F469 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: woman, woman, girl # E2.0 [1] (👩‍👩‍👧) 1F469 200D 1F469 200D 1F467 200D 1F466 ; RGI_Emoji_ZWJ_Sequence ; family: woman, woman, girl, boy # E2.0 [1] (👩‍👩‍👧‍👦) 1F469 200D 1F469 200D 1F467 200D 1F467 ; RGI_Emoji_ZWJ_Sequence ; family: woman, woman, girl, girl # E2.0 [1] (👩‍👩‍👧‍👧) 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, light skin tone # E13.1 [1] (👩🏻‍❤️‍👨🏻) 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, light skin tone, medium-light skin tone #E13.1[1] (👩🏻‍❤️‍👨🏼) 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, light skin tone, medium skin tone #E13.1 [1] (👩🏻‍❤️‍👨🏽) 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, light skin tone, medium-dark skin tone #E13.1[1] (👩🏻‍❤️‍👨🏾) 1F469 1F3FB 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, light skin tone, dark skin tone # E13.1 [1] (👩🏻‍❤️‍👨🏿) 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, light skin tone # E13.1 [1] (👩🏻‍❤️‍👩🏻) 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, light skin tone, medium-light skin tone #E13.1[1] (👩🏻‍❤️‍👩🏼) 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, light skin tone, medium skin tone #E13.1[1] (👩🏻‍❤️‍👩🏽) 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, light skin tone, medium-dark skin tone #E13.1[1] (👩🏻‍❤️‍👩🏾) 1F469 1F3FB 200D 2764 FE0F 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, light skin tone, dark skin tone #E13.1 [1] (👩🏻‍❤️‍👩🏿) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, light skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👨🏻) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, light skin tone, medium-light skin tone #E13.1[1] (👩🏻‍❤️‍💋‍👨🏼) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, light skin tone, medium skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👨🏽) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, light skin tone, medium-dark skin tone #E13.1 [1] (👩🏻‍❤️‍💋‍👨🏾) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, light skin tone, dark skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👨🏿) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, light skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👩🏻) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, light skin tone, medium-light skin tone #E13.1[1] (👩🏻‍❤️‍💋‍👩🏼) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, light skin tone, medium skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👩🏽) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, light skin tone, medium-dark skin tone #E13.1[1] (👩🏻‍❤️‍💋‍👩🏾) 1F469 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, light skin tone, dark skin tone # E13.1 [1] (👩🏻‍❤️‍💋‍👩🏿) 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: light skin tone, medium-light skin tone #E12.0[1] (👩🏻‍🤝‍👨🏼) 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: light skin tone, medium skin tone # E12.0 [1] (👩🏻‍🤝‍👨🏽) 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: light skin tone, medium-dark skin tone #E12.0[1] (👩🏻‍🤝‍👨🏾) 1F469 1F3FB 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: light skin tone, dark skin tone # E12.0 [1] (👩🏻‍🤝‍👨🏿) 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; women holding hands: light skin tone, medium-light skin tone # E12.1 [1] (👩🏻‍🤝‍👩🏼) 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; women holding hands: light skin tone, medium skin tone # E12.1 [1] (👩🏻‍🤝‍👩🏽) 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; women holding hands: light skin tone, medium-dark skin tone # E12.1 [1] (👩🏻‍🤝‍👩🏾) 1F469 1F3FB 200D 1F91D 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; women holding hands: light skin tone, dark skin tone # E12.1 [1] (👩🏻‍🤝‍👩🏿) 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-light skin tone, light skin tone #E13.1[1] (👩🏼‍❤️‍👨🏻) 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-light skin tone # E13.1 [1] (👩🏼‍❤️‍👨🏼) 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-light skin tone, medium skin tone #E13.1[1] (👩🏼‍❤️‍👨🏽) 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-light skin tone, medium-dark skin tone #E13.1[1] (👩🏼‍❤️‍👨🏾) 1F469 1F3FC 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-light skin tone, dark skin tone #E13.1[1] (👩🏼‍❤️‍👨🏿) 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-light skin tone, light skin tone #E13.1[1] (👩🏼‍❤️‍👩🏻) 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-light skin tone # E13.1 [1] (👩🏼‍❤️‍👩🏼) 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-light skin tone, medium skin tone #E13.1[1] (👩🏼‍❤️‍👩🏽) 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone #E13.1[1] (👩🏼‍❤️‍👩🏾) 1F469 1F3FC 200D 2764 FE0F 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-light skin tone, dark skin tone #E13.1[1] (👩🏼‍❤️‍👩🏿) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-light skin tone, light skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👨🏻) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-light skin tone # E13.1 [1] (👩🏼‍❤️‍💋‍👨🏼) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-light skin tone, medium skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👨🏽) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-light skin tone, medium-dark skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👨🏾) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-light skin tone, dark skin tone #E13.1 [1] (👩🏼‍❤️‍💋‍👨🏿) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-light skin tone, light skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👩🏻) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-light skin tone # E13.1 [1] (👩🏼‍❤️‍💋‍👩🏼) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-light skin tone, medium skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👩🏽) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-light skin tone, medium-dark skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👩🏾) 1F469 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-light skin tone, dark skin tone #E13.1[1] (👩🏼‍❤️‍💋‍👩🏿) 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-light skin tone, light skin tone #E12.0[1] (👩🏼‍🤝‍👨🏻) 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-light skin tone, medium skin tone #E12.0[1] (👩🏼‍🤝‍👨🏽) 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-light skin tone, medium-dark skin tone #E12.0[1] (👩🏼‍🤝‍👨🏾) 1F469 1F3FC 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-light skin tone, dark skin tone #E12.0[1] (👩🏼‍🤝‍👨🏿) 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-light skin tone, light skin tone # E12.0 [1] (👩🏼‍🤝‍👩🏻) 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-light skin tone, medium skin tone # E12.1 [1] (👩🏼‍🤝‍👩🏽) 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-light skin tone, medium-dark skin tone #E12.1[1] (👩🏼‍🤝‍👩🏾) 1F469 1F3FC 200D 1F91D 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-light skin tone, dark skin tone # E12.1 [1] (👩🏼‍🤝‍👩🏿) 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium skin tone, light skin tone #E13.1 [1] (👩🏽‍❤️‍👨🏻) 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium skin tone, medium-light skin tone #E13.1[1] (👩🏽‍❤️‍👨🏼) 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium skin tone # E13.1 [1] (👩🏽‍❤️‍👨🏽) 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium skin tone, medium-dark skin tone #E13.1[1] (👩🏽‍❤️‍👨🏾) 1F469 1F3FD 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium skin tone, dark skin tone #E13.1 [1] (👩🏽‍❤️‍👨🏿) 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium skin tone, light skin tone #E13.1[1] (👩🏽‍❤️‍👩🏻) 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium skin tone, medium-light skin tone #E13.1[1] (👩🏽‍❤️‍👩🏼) 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium skin tone # E13.1 [1] (👩🏽‍❤️‍👩🏽) 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium skin tone, medium-dark skin tone #E13.1[1] (👩🏽‍❤️‍👩🏾) 1F469 1F3FD 200D 2764 FE0F 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium skin tone, dark skin tone #E13.1[1] (👩🏽‍❤️‍👩🏿) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium skin tone, light skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👨🏻) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium skin tone, medium-light skin tone #E13.1[1] (👩🏽‍❤️‍💋‍👨🏼) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👨🏽) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium skin tone, medium-dark skin tone #E13.1[1] (👩🏽‍❤️‍💋‍👨🏾) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium skin tone, dark skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👨🏿) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium skin tone, light skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👩🏻) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium skin tone, medium-light skin tone #E13.1[1] (👩🏽‍❤️‍💋‍👩🏼) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👩🏽) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium skin tone, medium-dark skin tone #E13.1[1] (👩🏽‍❤️‍💋‍👩🏾) 1F469 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium skin tone, dark skin tone # E13.1 [1] (👩🏽‍❤️‍💋‍👩🏿) 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium skin tone, light skin tone # E12.0 [1] (👩🏽‍🤝‍👨🏻) 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium skin tone, medium-light skin tone #E12.0[1] (👩🏽‍🤝‍👨🏼) 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium skin tone, medium-dark skin tone #E12.0[1] (👩🏽‍🤝‍👨🏾) 1F469 1F3FD 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium skin tone, dark skin tone # E12.0 [1] (👩🏽‍🤝‍👨🏿) 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium skin tone, light skin tone # E12.0 [1] (👩🏽‍🤝‍👩🏻) 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium skin tone, medium-light skin tone # E12.0 [1] (👩🏽‍🤝‍👩🏼) 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium skin tone, medium-dark skin tone # E12.1 [1] (👩🏽‍🤝‍👩🏾) 1F469 1F3FD 200D 1F91D 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium skin tone, dark skin tone # E12.1 [1] (👩🏽‍🤝‍👩🏿) 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-dark skin tone, light skin tone #E13.1[1] (👩🏾‍❤️‍👨🏻) 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-dark skin tone, medium-light skin tone #E13.1[1] (👩🏾‍❤️‍👨🏼) 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-dark skin tone, medium skin tone #E13.1[1] (👩🏾‍❤️‍👨🏽) 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-dark skin tone # E13.1 [1] (👩🏾‍❤️‍👨🏾) 1F469 1F3FE 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, medium-dark skin tone, dark skin tone #E13.1[1] (👩🏾‍❤️‍👨🏿) 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-dark skin tone, light skin tone #E13.1[1] (👩🏾‍❤️‍👩🏻) 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone #E13.1[1] (👩🏾‍❤️‍👩🏼) 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-dark skin tone, medium skin tone #E13.1[1] (👩🏾‍❤️‍👩🏽) 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-dark skin tone # E13.1 [1] (👩🏾‍❤️‍👩🏾) 1F469 1F3FE 200D 2764 FE0F 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, medium-dark skin tone, dark skin tone #E13.1[1] (👩🏾‍❤️‍👩🏿) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-dark skin tone, light skin tone #E13.1 [1] (👩🏾‍❤️‍💋‍👨🏻) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-dark skin tone, medium-light skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👨🏼) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-dark skin tone, medium skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👨🏽) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-dark skin tone # E13.1 [1] (👩🏾‍❤️‍💋‍👨🏾) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, medium-dark skin tone, dark skin tone #E13.1 [1] (👩🏾‍❤️‍💋‍👨🏿) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-dark skin tone, light skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👩🏻) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-dark skin tone, medium-light skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👩🏼) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-dark skin tone, medium skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👩🏽) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-dark skin tone # E13.1 [1] (👩🏾‍❤️‍💋‍👩🏾) 1F469 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, medium-dark skin tone, dark skin tone #E13.1[1] (👩🏾‍❤️‍💋‍👩🏿) 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-dark skin tone, light skin tone #E12.0[1] (👩🏾‍🤝‍👨🏻) 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-dark skin tone, medium-light skin tone #E12.0[1] (👩🏾‍🤝‍👨🏼) 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-dark skin tone, medium skin tone #E12.0[1] (👩🏾‍🤝‍👨🏽) 1F469 1F3FE 200D 1F91D 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: medium-dark skin tone, dark skin tone #E12.0[1] (👩🏾‍🤝‍👨🏿) 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-dark skin tone, light skin tone # E12.0 [1] (👩🏾‍🤝‍👩🏻) 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-dark skin tone, medium-light skin tone #E12.0[1] (👩🏾‍🤝‍👩🏼) 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-dark skin tone, medium skin tone # E12.0 [1] (👩🏾‍🤝‍👩🏽) 1F469 1F3FE 200D 1F91D 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; women holding hands: medium-dark skin tone, dark skin tone # E12.1 [1] (👩🏾‍🤝‍👩🏿) 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, dark skin tone, light skin tone # E13.1 [1] (👩🏿‍❤️‍👨🏻) 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, dark skin tone, medium-light skin tone #E13.1[1] (👩🏿‍❤️‍👨🏼) 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, dark skin tone, medium skin tone #E13.1 [1] (👩🏿‍❤️‍👨🏽) 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, dark skin tone, medium-dark skin tone #E13.1[1] (👩🏿‍❤️‍👨🏾) 1F469 1F3FF 200D 2764 FE0F 200D 1F468 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, man, dark skin tone # E13.1 [1] (👩🏿‍❤️‍👨🏿) 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, dark skin tone, light skin tone #E13.1 [1] (👩🏿‍❤️‍👩🏻) 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, dark skin tone, medium-light skin tone #E13.1[1] (👩🏿‍❤️‍👩🏼) 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, dark skin tone, medium skin tone #E13.1[1] (👩🏿‍❤️‍👩🏽) 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, dark skin tone, medium-dark skin tone #E13.1[1] (👩🏿‍❤️‍👩🏾) 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: woman, woman, dark skin tone # E13.1 [1] (👩🏿‍❤️‍👩🏿) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, dark skin tone, light skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👨🏻) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, dark skin tone, medium-light skin tone #E13.1 [1] (👩🏿‍❤️‍💋‍👨🏼) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, dark skin tone, medium skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👨🏽) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, dark skin tone, medium-dark skin tone #E13.1 [1] (👩🏿‍❤️‍💋‍👨🏾) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F468 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, man, dark skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👨🏿) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, dark skin tone, light skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👩🏻) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, dark skin tone, medium-light skin tone #E13.1[1] (👩🏿‍❤️‍💋‍👩🏼) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, dark skin tone, medium skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👩🏽) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, dark skin tone, medium-dark skin tone #E13.1[1] (👩🏿‍❤️‍💋‍👩🏾) 1F469 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F469 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: woman, woman, dark skin tone # E13.1 [1] (👩🏿‍❤️‍💋‍👩🏿) 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FB ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: dark skin tone, light skin tone # E12.0 [1] (👩🏿‍🤝‍👨🏻) 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FC ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: dark skin tone, medium-light skin tone #E12.0[1] (👩🏿‍🤝‍👨🏼) 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FD ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: dark skin tone, medium skin tone # E12.0 [1] (👩🏿‍🤝‍👨🏽) 1F469 1F3FF 200D 1F91D 200D 1F468 1F3FE ; RGI_Emoji_ZWJ_Sequence ; woman and man holding hands: dark skin tone, medium-dark skin tone #E12.0[1] (👩🏿‍🤝‍👨🏾) 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FB ; RGI_Emoji_ZWJ_Sequence ; women holding hands: dark skin tone, light skin tone # E12.0 [1] (👩🏿‍🤝‍👩🏻) 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FC ; RGI_Emoji_ZWJ_Sequence ; women holding hands: dark skin tone, medium-light skin tone # E12.0 [1] (👩🏿‍🤝‍👩🏼) 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FD ; RGI_Emoji_ZWJ_Sequence ; women holding hands: dark skin tone, medium skin tone # E12.0 [1] (👩🏿‍🤝‍👩🏽) 1F469 1F3FF 200D 1F91D 200D 1F469 1F3FE ; RGI_Emoji_ZWJ_Sequence ; women holding hands: dark skin tone, medium-dark skin tone # E12.0 [1] (👩🏿‍🤝‍👩🏾) 1F9D1 200D 1F91D 200D 1F9D1 ; RGI_Emoji_ZWJ_Sequence ; people holding hands # E12.0 [1] (🧑‍🤝‍🧑) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: person, person, light skin tone, medium-light skin tone #E13.1[1] (🧑🏻‍❤️‍💋‍🧑🏼) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: person, person, light skin tone, medium skin tone #E13.1 [1] (🧑🏻‍❤️‍💋‍🧑🏽) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: person, person, light skin tone, medium-dark skin tone #E13.1[1] (🧑🏻‍❤️‍💋‍🧑🏾) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: person, person, light skin tone, dark skin tone # E13.1 [1] (🧑🏻‍❤️‍💋‍🧑🏿) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, light skin tone, medium-light skin tone #E13.1[1] (🧑🏻‍❤️‍🧑🏼) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, light skin tone, medium skin tone #E13.1[1] (🧑🏻‍❤️‍🧑🏽) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, light skin tone, medium-dark skin tone #E13.1[1] (🧑🏻‍❤️‍🧑🏾) 1F9D1 1F3FB 200D 2764 FE0F 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, light skin tone, dark skin tone #E13.1[1] (🧑🏻‍❤️‍🧑🏿) 1F9D1 1F3FB 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus: light skin tone # E13.0 [1] (🧑🏻‍🎄) 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; people holding hands: light skin tone # E12.0 [1] (🧑🏻‍🤝‍🧑🏻) 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; people holding hands: light skin tone, medium-light skin tone # E12.1 [1] (🧑🏻‍🤝‍🧑🏼) 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; people holding hands: light skin tone, medium skin tone # E12.1 [1] (🧑🏻‍🤝‍🧑🏽) 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; people holding hands: light skin tone, medium-dark skin tone # E12.1 [1] (🧑🏻‍🤝‍🧑🏾) 1F9D1 1F3FB 200D 1F91D 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; people holding hands: light skin tone, dark skin tone # E12.1 [1] (🧑🏻‍🤝‍🧑🏿) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-light skin tone, light skin tone #E13.1[1] (🧑🏼‍❤️‍💋‍🧑🏻) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-light skin tone, medium skin tone #E13.1[1] (🧑🏼‍❤️‍💋‍🧑🏽) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-light skin tone, medium-dark skin tone #E13.1[1] (🧑🏼‍❤️‍💋‍🧑🏾) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-light skin tone, dark skin tone #E13.1[1] (🧑🏼‍❤️‍💋‍🧑🏿) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-light skin tone, light skin tone #E13.1[1] (🧑🏼‍❤️‍🧑🏻) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-light skin tone, medium skin tone #E13.1[1] (🧑🏼‍❤️‍🧑🏽) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-light skin tone, medium-dark skin tone #E13.1[1] (🧑🏼‍❤️‍🧑🏾) 1F9D1 1F3FC 200D 2764 FE0F 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-light skin tone, dark skin tone #E13.1[1] (🧑🏼‍❤️‍🧑🏿) 1F9D1 1F3FC 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus: medium-light skin tone # E13.0 [1] (🧑🏼‍🎄) 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-light skin tone, light skin tone # E12.0 [1] (🧑🏼‍🤝‍🧑🏻) 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-light skin tone # E12.0 [1] (🧑🏼‍🤝‍🧑🏼) 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-light skin tone, medium skin tone # E12.1 [1] (🧑🏼‍🤝‍🧑🏽) 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-light skin tone, medium-dark skin tone #E12.1[1] (🧑🏼‍🤝‍🧑🏾) 1F9D1 1F3FC 200D 1F91D 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-light skin tone, dark skin tone # E12.1 [1] (🧑🏼‍🤝‍🧑🏿) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium skin tone, light skin tone #E13.1 [1] (🧑🏽‍❤️‍💋‍🧑🏻) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium skin tone, medium-light skin tone #E13.1[1] (🧑🏽‍❤️‍💋‍🧑🏼) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium skin tone, medium-dark skin tone #E13.1[1] (🧑🏽‍❤️‍💋‍🧑🏾) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium skin tone, dark skin tone # E13.1 [1] (🧑🏽‍❤️‍💋‍🧑🏿) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium skin tone, light skin tone #E13.1[1] (🧑🏽‍❤️‍🧑🏻) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium skin tone, medium-light skin tone #E13.1[1] (🧑🏽‍❤️‍🧑🏼) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium skin tone, medium-dark skin tone #E13.1[1] (🧑🏽‍❤️‍🧑🏾) 1F9D1 1F3FD 200D 2764 FE0F 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium skin tone, dark skin tone #E13.1[1] (🧑🏽‍❤️‍🧑🏿) 1F9D1 1F3FD 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus: medium skin tone # E13.0 [1] (🧑🏽‍🎄) 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium skin tone, light skin tone # E12.0 [1] (🧑🏽‍🤝‍🧑🏻) 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium skin tone, medium-light skin tone # E12.0 [1] (🧑🏽‍🤝‍🧑🏼) 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium skin tone # E12.0 [1] (🧑🏽‍🤝‍🧑🏽) 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium skin tone, medium-dark skin tone # E12.1 [1] (🧑🏽‍🤝‍🧑🏾) 1F9D1 1F3FD 200D 1F91D 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium skin tone, dark skin tone # E12.1 [1] (🧑🏽‍🤝‍🧑🏿) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-dark skin tone, light skin tone #E13.1[1] (🧑🏾‍❤️‍💋‍🧑🏻) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-dark skin tone, medium-light skin tone #E13.1[1] (🧑🏾‍❤️‍💋‍🧑🏼) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-dark skin tone, medium skin tone #E13.1[1] (🧑🏾‍❤️‍💋‍🧑🏽) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FF; RGI_Emoji_ZWJ_Sequence; kiss: person, person, medium-dark skin tone, dark skin tone #E13.1[1] (🧑🏾‍❤️‍💋‍🧑🏿) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-dark skin tone, light skin tone #E13.1[1] (🧑🏾‍❤️‍🧑🏻) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-dark skin tone, medium-light skin tone #E13.1[1] (🧑🏾‍❤️‍🧑🏼) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-dark skin tone, medium skin tone #E13.1[1] (🧑🏾‍❤️‍🧑🏽) 1F9D1 1F3FE 200D 2764 FE0F 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, medium-dark skin tone, dark skin tone #E13.1[1] (🧑🏾‍❤️‍🧑🏿) 1F9D1 1F3FE 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus: medium-dark skin tone # E13.0 [1] (🧑🏾‍🎄) 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-dark skin tone, light skin tone # E12.0 [1] (🧑🏾‍🤝‍🧑🏻) 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-dark skin tone, medium-light skin tone #E12.0[1] (🧑🏾‍🤝‍🧑🏼) 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-dark skin tone, medium skin tone # E12.0 [1] (🧑🏾‍🤝‍🧑🏽) 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-dark skin tone # E12.0 [1] (🧑🏾‍🤝‍🧑🏾) 1F9D1 1F3FE 200D 1F91D 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; people holding hands: medium-dark skin tone, dark skin tone # E12.1 [1] (🧑🏾‍🤝‍🧑🏿) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FB; RGI_Emoji_ZWJ_Sequence; kiss: person, person, dark skin tone, light skin tone # E13.1 [1] (🧑🏿‍❤️‍💋‍🧑🏻) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FC; RGI_Emoji_ZWJ_Sequence; kiss: person, person, dark skin tone, medium-light skin tone #E13.1[1] (🧑🏿‍❤️‍💋‍🧑🏼) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FD; RGI_Emoji_ZWJ_Sequence; kiss: person, person, dark skin tone, medium skin tone # E13.1 [1] (🧑🏿‍❤️‍💋‍🧑🏽) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F48B 200D 1F9D1 1F3FE; RGI_Emoji_ZWJ_Sequence; kiss: person, person, dark skin tone, medium-dark skin tone #E13.1[1] (🧑🏿‍❤️‍💋‍🧑🏾) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, dark skin tone, light skin tone #E13.1[1] (🧑🏿‍❤️‍🧑🏻) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, dark skin tone, medium-light skin tone #E13.1[1] (🧑🏿‍❤️‍🧑🏼) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, dark skin tone, medium skin tone #E13.1[1] (🧑🏿‍❤️‍🧑🏽) 1F9D1 1F3FF 200D 2764 FE0F 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; couple with heart: person, person, dark skin tone, medium-dark skin tone #E13.1[1] (🧑🏿‍❤️‍🧑🏾) 1F9D1 1F3FF 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus: dark skin tone # E13.0 [1] (🧑🏿‍🎄) 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FB ; RGI_Emoji_ZWJ_Sequence ; people holding hands: dark skin tone, light skin tone # E12.0 [1] (🧑🏿‍🤝‍🧑🏻) 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FC ; RGI_Emoji_ZWJ_Sequence ; people holding hands: dark skin tone, medium-light skin tone # E12.0 [1] (🧑🏿‍🤝‍🧑🏼) 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FD ; RGI_Emoji_ZWJ_Sequence ; people holding hands: dark skin tone, medium skin tone # E12.0 [1] (🧑🏿‍🤝‍🧑🏽) 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FE ; RGI_Emoji_ZWJ_Sequence ; people holding hands: dark skin tone, medium-dark skin tone # E12.0 [1] (🧑🏿‍🤝‍🧑🏾) 1F9D1 1F3FF 200D 1F91D 200D 1F9D1 1F3FF ; RGI_Emoji_ZWJ_Sequence ; people holding hands: dark skin tone # E12.0 [1] (🧑🏿‍🤝‍🧑🏿) # Total elements: 312 # ================================================ # RGI_Emoji_ZWJ_Sequence: Role 1F468 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker # E4.0 [1] (👨‍⚕️) 1F468 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge # E4.0 [1] (👨‍⚖️) 1F468 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot # E4.0 [1] (👨‍✈️) 1F468 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer # E4.0 [1] (👨‍🌾) 1F468 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook # E4.0 [1] (👨‍🍳) 1F468 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby # E13.0 [1] (👨‍🍼) 1F468 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student # E4.0 [1] (👨‍🎓) 1F468 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer # E4.0 [1] (👨‍🎤) 1F468 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist # E4.0 [1] (👨‍🎨) 1F468 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher # E4.0 [1] (👨‍🏫) 1F468 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker # E4.0 [1] (👨‍🏭) 1F468 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist # E4.0 [1] (👨‍💻) 1F468 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker # E4.0 [1] (👨‍💼) 1F468 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic # E4.0 [1] (👨‍🔧) 1F468 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist # E4.0 [1] (👨‍🔬) 1F468 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut # E4.0 [1] (👨‍🚀) 1F468 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter # E4.0 [1] (👨‍🚒) 1F468 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane # E12.0 [1] (👨‍🦯) 1F468 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair # E12.0 [1] (👨‍🦼) 1F468 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair # E12.0 [1] (👨‍🦽) 1F468 1F3FB 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker: light skin tone # E4.0 [1] (👨🏻‍⚕️) 1F468 1F3FB 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge: light skin tone # E4.0 [1] (👨🏻‍⚖️) 1F468 1F3FB 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot: light skin tone # E4.0 [1] (👨🏻‍✈️) 1F468 1F3FB 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer: light skin tone # E4.0 [1] (👨🏻‍🌾) 1F468 1F3FB 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook: light skin tone # E4.0 [1] (👨🏻‍🍳) 1F468 1F3FB 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby: light skin tone # E13.0 [1] (👨🏻‍🍼) 1F468 1F3FB 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student: light skin tone # E4.0 [1] (👨🏻‍🎓) 1F468 1F3FB 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer: light skin tone # E4.0 [1] (👨🏻‍🎤) 1F468 1F3FB 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist: light skin tone # E4.0 [1] (👨🏻‍🎨) 1F468 1F3FB 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher: light skin tone # E4.0 [1] (👨🏻‍🏫) 1F468 1F3FB 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker: light skin tone # E4.0 [1] (👨🏻‍🏭) 1F468 1F3FB 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist: light skin tone # E4.0 [1] (👨🏻‍💻) 1F468 1F3FB 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker: light skin tone # E4.0 [1] (👨🏻‍💼) 1F468 1F3FB 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic: light skin tone # E4.0 [1] (👨🏻‍🔧) 1F468 1F3FB 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist: light skin tone # E4.0 [1] (👨🏻‍🔬) 1F468 1F3FB 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut: light skin tone # E4.0 [1] (👨🏻‍🚀) 1F468 1F3FB 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter: light skin tone # E4.0 [1] (👨🏻‍🚒) 1F468 1F3FB 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane: light skin tone # E12.0 [1] (👨🏻‍🦯) 1F468 1F3FB 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair: light skin tone # E12.0 [1] (👨🏻‍🦼) 1F468 1F3FB 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair: light skin tone # E12.0 [1] (👨🏻‍🦽) 1F468 1F3FC 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker: medium-light skin tone # E4.0 [1] (👨🏼‍⚕️) 1F468 1F3FC 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge: medium-light skin tone # E4.0 [1] (👨🏼‍⚖️) 1F468 1F3FC 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot: medium-light skin tone # E4.0 [1] (👨🏼‍✈️) 1F468 1F3FC 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer: medium-light skin tone # E4.0 [1] (👨🏼‍🌾) 1F468 1F3FC 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook: medium-light skin tone # E4.0 [1] (👨🏼‍🍳) 1F468 1F3FC 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby: medium-light skin tone # E13.0 [1] (👨🏼‍🍼) 1F468 1F3FC 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student: medium-light skin tone # E4.0 [1] (👨🏼‍🎓) 1F468 1F3FC 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer: medium-light skin tone # E4.0 [1] (👨🏼‍🎤) 1F468 1F3FC 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist: medium-light skin tone # E4.0 [1] (👨🏼‍🎨) 1F468 1F3FC 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher: medium-light skin tone # E4.0 [1] (👨🏼‍🏫) 1F468 1F3FC 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker: medium-light skin tone # E4.0 [1] (👨🏼‍🏭) 1F468 1F3FC 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist: medium-light skin tone # E4.0 [1] (👨🏼‍💻) 1F468 1F3FC 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker: medium-light skin tone # E4.0 [1] (👨🏼‍💼) 1F468 1F3FC 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic: medium-light skin tone # E4.0 [1] (👨🏼‍🔧) 1F468 1F3FC 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist: medium-light skin tone # E4.0 [1] (👨🏼‍🔬) 1F468 1F3FC 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut: medium-light skin tone # E4.0 [1] (👨🏼‍🚀) 1F468 1F3FC 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter: medium-light skin tone # E4.0 [1] (👨🏼‍🚒) 1F468 1F3FC 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane: medium-light skin tone # E12.0 [1] (👨🏼‍🦯) 1F468 1F3FC 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair: medium-light skin tone # E12.0 [1] (👨🏼‍🦼) 1F468 1F3FC 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair: medium-light skin tone # E12.0 [1] (👨🏼‍🦽) 1F468 1F3FD 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker: medium skin tone # E4.0 [1] (👨🏽‍⚕️) 1F468 1F3FD 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge: medium skin tone # E4.0 [1] (👨🏽‍⚖️) 1F468 1F3FD 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot: medium skin tone # E4.0 [1] (👨🏽‍✈️) 1F468 1F3FD 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer: medium skin tone # E4.0 [1] (👨🏽‍🌾) 1F468 1F3FD 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook: medium skin tone # E4.0 [1] (👨🏽‍🍳) 1F468 1F3FD 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby: medium skin tone # E13.0 [1] (👨🏽‍🍼) 1F468 1F3FD 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student: medium skin tone # E4.0 [1] (👨🏽‍🎓) 1F468 1F3FD 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer: medium skin tone # E4.0 [1] (👨🏽‍🎤) 1F468 1F3FD 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist: medium skin tone # E4.0 [1] (👨🏽‍🎨) 1F468 1F3FD 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher: medium skin tone # E4.0 [1] (👨🏽‍🏫) 1F468 1F3FD 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker: medium skin tone # E4.0 [1] (👨🏽‍🏭) 1F468 1F3FD 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist: medium skin tone # E4.0 [1] (👨🏽‍💻) 1F468 1F3FD 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker: medium skin tone # E4.0 [1] (👨🏽‍💼) 1F468 1F3FD 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic: medium skin tone # E4.0 [1] (👨🏽‍🔧) 1F468 1F3FD 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist: medium skin tone # E4.0 [1] (👨🏽‍🔬) 1F468 1F3FD 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut: medium skin tone # E4.0 [1] (👨🏽‍🚀) 1F468 1F3FD 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter: medium skin tone # E4.0 [1] (👨🏽‍🚒) 1F468 1F3FD 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane: medium skin tone # E12.0 [1] (👨🏽‍🦯) 1F468 1F3FD 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair: medium skin tone # E12.0 [1] (👨🏽‍🦼) 1F468 1F3FD 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair: medium skin tone # E12.0 [1] (👨🏽‍🦽) 1F468 1F3FE 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker: medium-dark skin tone # E4.0 [1] (👨🏾‍⚕️) 1F468 1F3FE 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge: medium-dark skin tone # E4.0 [1] (👨🏾‍⚖️) 1F468 1F3FE 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot: medium-dark skin tone # E4.0 [1] (👨🏾‍✈️) 1F468 1F3FE 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer: medium-dark skin tone # E4.0 [1] (👨🏾‍🌾) 1F468 1F3FE 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook: medium-dark skin tone # E4.0 [1] (👨🏾‍🍳) 1F468 1F3FE 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby: medium-dark skin tone # E13.0 [1] (👨🏾‍🍼) 1F468 1F3FE 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student: medium-dark skin tone # E4.0 [1] (👨🏾‍🎓) 1F468 1F3FE 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer: medium-dark skin tone # E4.0 [1] (👨🏾‍🎤) 1F468 1F3FE 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist: medium-dark skin tone # E4.0 [1] (👨🏾‍🎨) 1F468 1F3FE 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher: medium-dark skin tone # E4.0 [1] (👨🏾‍🏫) 1F468 1F3FE 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker: medium-dark skin tone # E4.0 [1] (👨🏾‍🏭) 1F468 1F3FE 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist: medium-dark skin tone # E4.0 [1] (👨🏾‍💻) 1F468 1F3FE 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker: medium-dark skin tone # E4.0 [1] (👨🏾‍💼) 1F468 1F3FE 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic: medium-dark skin tone # E4.0 [1] (👨🏾‍🔧) 1F468 1F3FE 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist: medium-dark skin tone # E4.0 [1] (👨🏾‍🔬) 1F468 1F3FE 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut: medium-dark skin tone # E4.0 [1] (👨🏾‍🚀) 1F468 1F3FE 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter: medium-dark skin tone # E4.0 [1] (👨🏾‍🚒) 1F468 1F3FE 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane: medium-dark skin tone # E12.0 [1] (👨🏾‍🦯) 1F468 1F3FE 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair: medium-dark skin tone # E12.0 [1] (👨🏾‍🦼) 1F468 1F3FE 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair: medium-dark skin tone # E12.0 [1] (👨🏾‍🦽) 1F468 1F3FF 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; man health worker: dark skin tone # E4.0 [1] (👨🏿‍⚕️) 1F468 1F3FF 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; man judge: dark skin tone # E4.0 [1] (👨🏿‍⚖️) 1F468 1F3FF 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pilot: dark skin tone # E4.0 [1] (👨🏿‍✈️) 1F468 1F3FF 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; man farmer: dark skin tone # E4.0 [1] (👨🏿‍🌾) 1F468 1F3FF 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; man cook: dark skin tone # E4.0 [1] (👨🏿‍🍳) 1F468 1F3FF 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; man feeding baby: dark skin tone # E13.0 [1] (👨🏿‍🍼) 1F468 1F3FF 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; man student: dark skin tone # E4.0 [1] (👨🏿‍🎓) 1F468 1F3FF 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; man singer: dark skin tone # E4.0 [1] (👨🏿‍🎤) 1F468 1F3FF 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; man artist: dark skin tone # E4.0 [1] (👨🏿‍🎨) 1F468 1F3FF 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; man teacher: dark skin tone # E4.0 [1] (👨🏿‍🏫) 1F468 1F3FF 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; man factory worker: dark skin tone # E4.0 [1] (👨🏿‍🏭) 1F468 1F3FF 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; man technologist: dark skin tone # E4.0 [1] (👨🏿‍💻) 1F468 1F3FF 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; man office worker: dark skin tone # E4.0 [1] (👨🏿‍💼) 1F468 1F3FF 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; man mechanic: dark skin tone # E4.0 [1] (👨🏿‍🔧) 1F468 1F3FF 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; man scientist: dark skin tone # E4.0 [1] (👨🏿‍🔬) 1F468 1F3FF 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; man astronaut: dark skin tone # E4.0 [1] (👨🏿‍🚀) 1F468 1F3FF 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; man firefighter: dark skin tone # E4.0 [1] (👨🏿‍🚒) 1F468 1F3FF 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; man with white cane: dark skin tone # E12.0 [1] (👨🏿‍🦯) 1F468 1F3FF 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; man in motorized wheelchair: dark skin tone # E12.0 [1] (👨🏿‍🦼) 1F468 1F3FF 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; man in manual wheelchair: dark skin tone # E12.0 [1] (👨🏿‍🦽) 1F469 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker # E4.0 [1] (👩‍⚕️) 1F469 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge # E4.0 [1] (👩‍⚖️) 1F469 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot # E4.0 [1] (👩‍✈️) 1F469 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer # E4.0 [1] (👩‍🌾) 1F469 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook # E4.0 [1] (👩‍🍳) 1F469 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby # E13.0 [1] (👩‍🍼) 1F469 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student # E4.0 [1] (👩‍🎓) 1F469 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer # E4.0 [1] (👩‍🎤) 1F469 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist # E4.0 [1] (👩‍🎨) 1F469 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher # E4.0 [1] (👩‍🏫) 1F469 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker # E4.0 [1] (👩‍🏭) 1F469 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist # E4.0 [1] (👩‍💻) 1F469 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker # E4.0 [1] (👩‍💼) 1F469 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic # E4.0 [1] (👩‍🔧) 1F469 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist # E4.0 [1] (👩‍🔬) 1F469 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut # E4.0 [1] (👩‍🚀) 1F469 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter # E4.0 [1] (👩‍🚒) 1F469 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane # E12.0 [1] (👩‍🦯) 1F469 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair # E12.0 [1] (👩‍🦼) 1F469 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair # E12.0 [1] (👩‍🦽) 1F469 1F3FB 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker: light skin tone # E4.0 [1] (👩🏻‍⚕️) 1F469 1F3FB 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge: light skin tone # E4.0 [1] (👩🏻‍⚖️) 1F469 1F3FB 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot: light skin tone # E4.0 [1] (👩🏻‍✈️) 1F469 1F3FB 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer: light skin tone # E4.0 [1] (👩🏻‍🌾) 1F469 1F3FB 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook: light skin tone # E4.0 [1] (👩🏻‍🍳) 1F469 1F3FB 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby: light skin tone # E13.0 [1] (👩🏻‍🍼) 1F469 1F3FB 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student: light skin tone # E4.0 [1] (👩🏻‍🎓) 1F469 1F3FB 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer: light skin tone # E4.0 [1] (👩🏻‍🎤) 1F469 1F3FB 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist: light skin tone # E4.0 [1] (👩🏻‍🎨) 1F469 1F3FB 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher: light skin tone # E4.0 [1] (👩🏻‍🏫) 1F469 1F3FB 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker: light skin tone # E4.0 [1] (👩🏻‍🏭) 1F469 1F3FB 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist: light skin tone # E4.0 [1] (👩🏻‍💻) 1F469 1F3FB 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker: light skin tone # E4.0 [1] (👩🏻‍💼) 1F469 1F3FB 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic: light skin tone # E4.0 [1] (👩🏻‍🔧) 1F469 1F3FB 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist: light skin tone # E4.0 [1] (👩🏻‍🔬) 1F469 1F3FB 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut: light skin tone # E4.0 [1] (👩🏻‍🚀) 1F469 1F3FB 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter: light skin tone # E4.0 [1] (👩🏻‍🚒) 1F469 1F3FB 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane: light skin tone # E12.0 [1] (👩🏻‍🦯) 1F469 1F3FB 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair: light skin tone # E12.0 [1] (👩🏻‍🦼) 1F469 1F3FB 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair: light skin tone # E12.0 [1] (👩🏻‍🦽) 1F469 1F3FC 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker: medium-light skin tone # E4.0 [1] (👩🏼‍⚕️) 1F469 1F3FC 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge: medium-light skin tone # E4.0 [1] (👩🏼‍⚖️) 1F469 1F3FC 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot: medium-light skin tone # E4.0 [1] (👩🏼‍✈️) 1F469 1F3FC 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer: medium-light skin tone # E4.0 [1] (👩🏼‍🌾) 1F469 1F3FC 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook: medium-light skin tone # E4.0 [1] (👩🏼‍🍳) 1F469 1F3FC 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby: medium-light skin tone # E13.0 [1] (👩🏼‍🍼) 1F469 1F3FC 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student: medium-light skin tone # E4.0 [1] (👩🏼‍🎓) 1F469 1F3FC 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer: medium-light skin tone # E4.0 [1] (👩🏼‍🎤) 1F469 1F3FC 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist: medium-light skin tone # E4.0 [1] (👩🏼‍🎨) 1F469 1F3FC 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher: medium-light skin tone # E4.0 [1] (👩🏼‍🏫) 1F469 1F3FC 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker: medium-light skin tone # E4.0 [1] (👩🏼‍🏭) 1F469 1F3FC 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist: medium-light skin tone # E4.0 [1] (👩🏼‍💻) 1F469 1F3FC 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker: medium-light skin tone # E4.0 [1] (👩🏼‍💼) 1F469 1F3FC 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic: medium-light skin tone # E4.0 [1] (👩🏼‍🔧) 1F469 1F3FC 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist: medium-light skin tone # E4.0 [1] (👩🏼‍🔬) 1F469 1F3FC 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut: medium-light skin tone # E4.0 [1] (👩🏼‍🚀) 1F469 1F3FC 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter: medium-light skin tone # E4.0 [1] (👩🏼‍🚒) 1F469 1F3FC 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane: medium-light skin tone # E12.0 [1] (👩🏼‍🦯) 1F469 1F3FC 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair: medium-light skin tone # E12.0 [1] (👩🏼‍🦼) 1F469 1F3FC 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair: medium-light skin tone # E12.0 [1] (👩🏼‍🦽) 1F469 1F3FD 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker: medium skin tone # E4.0 [1] (👩🏽‍⚕️) 1F469 1F3FD 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge: medium skin tone # E4.0 [1] (👩🏽‍⚖️) 1F469 1F3FD 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot: medium skin tone # E4.0 [1] (👩🏽‍✈️) 1F469 1F3FD 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer: medium skin tone # E4.0 [1] (👩🏽‍🌾) 1F469 1F3FD 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook: medium skin tone # E4.0 [1] (👩🏽‍🍳) 1F469 1F3FD 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby: medium skin tone # E13.0 [1] (👩🏽‍🍼) 1F469 1F3FD 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student: medium skin tone # E4.0 [1] (👩🏽‍🎓) 1F469 1F3FD 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer: medium skin tone # E4.0 [1] (👩🏽‍🎤) 1F469 1F3FD 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist: medium skin tone # E4.0 [1] (👩🏽‍🎨) 1F469 1F3FD 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher: medium skin tone # E4.0 [1] (👩🏽‍🏫) 1F469 1F3FD 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker: medium skin tone # E4.0 [1] (👩🏽‍🏭) 1F469 1F3FD 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist: medium skin tone # E4.0 [1] (👩🏽‍💻) 1F469 1F3FD 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker: medium skin tone # E4.0 [1] (👩🏽‍💼) 1F469 1F3FD 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic: medium skin tone # E4.0 [1] (👩🏽‍🔧) 1F469 1F3FD 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist: medium skin tone # E4.0 [1] (👩🏽‍🔬) 1F469 1F3FD 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut: medium skin tone # E4.0 [1] (👩🏽‍🚀) 1F469 1F3FD 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter: medium skin tone # E4.0 [1] (👩🏽‍🚒) 1F469 1F3FD 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane: medium skin tone # E12.0 [1] (👩🏽‍🦯) 1F469 1F3FD 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair: medium skin tone # E12.0 [1] (👩🏽‍🦼) 1F469 1F3FD 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair: medium skin tone # E12.0 [1] (👩🏽‍🦽) 1F469 1F3FE 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker: medium-dark skin tone # E4.0 [1] (👩🏾‍⚕️) 1F469 1F3FE 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge: medium-dark skin tone # E4.0 [1] (👩🏾‍⚖️) 1F469 1F3FE 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot: medium-dark skin tone # E4.0 [1] (👩🏾‍✈️) 1F469 1F3FE 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer: medium-dark skin tone # E4.0 [1] (👩🏾‍🌾) 1F469 1F3FE 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook: medium-dark skin tone # E4.0 [1] (👩🏾‍🍳) 1F469 1F3FE 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby: medium-dark skin tone # E13.0 [1] (👩🏾‍🍼) 1F469 1F3FE 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student: medium-dark skin tone # E4.0 [1] (👩🏾‍🎓) 1F469 1F3FE 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer: medium-dark skin tone # E4.0 [1] (👩🏾‍🎤) 1F469 1F3FE 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist: medium-dark skin tone # E4.0 [1] (👩🏾‍🎨) 1F469 1F3FE 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher: medium-dark skin tone # E4.0 [1] (👩🏾‍🏫) 1F469 1F3FE 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker: medium-dark skin tone # E4.0 [1] (👩🏾‍🏭) 1F469 1F3FE 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist: medium-dark skin tone # E4.0 [1] (👩🏾‍💻) 1F469 1F3FE 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker: medium-dark skin tone # E4.0 [1] (👩🏾‍💼) 1F469 1F3FE 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic: medium-dark skin tone # E4.0 [1] (👩🏾‍🔧) 1F469 1F3FE 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist: medium-dark skin tone # E4.0 [1] (👩🏾‍🔬) 1F469 1F3FE 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut: medium-dark skin tone # E4.0 [1] (👩🏾‍🚀) 1F469 1F3FE 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter: medium-dark skin tone # E4.0 [1] (👩🏾‍🚒) 1F469 1F3FE 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane: medium-dark skin tone # E12.0 [1] (👩🏾‍🦯) 1F469 1F3FE 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair: medium-dark skin tone # E12.0 [1] (👩🏾‍🦼) 1F469 1F3FE 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair: medium-dark skin tone # E12.0 [1] (👩🏾‍🦽) 1F469 1F3FF 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman health worker: dark skin tone # E4.0 [1] (👩🏿‍⚕️) 1F469 1F3FF 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman judge: dark skin tone # E4.0 [1] (👩🏿‍⚖️) 1F469 1F3FF 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pilot: dark skin tone # E4.0 [1] (👩🏿‍✈️) 1F469 1F3FF 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; woman farmer: dark skin tone # E4.0 [1] (👩🏿‍🌾) 1F469 1F3FF 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; woman cook: dark skin tone # E4.0 [1] (👩🏿‍🍳) 1F469 1F3FF 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; woman feeding baby: dark skin tone # E13.0 [1] (👩🏿‍🍼) 1F469 1F3FF 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; woman student: dark skin tone # E4.0 [1] (👩🏿‍🎓) 1F469 1F3FF 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; woman singer: dark skin tone # E4.0 [1] (👩🏿‍🎤) 1F469 1F3FF 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; woman artist: dark skin tone # E4.0 [1] (👩🏿‍🎨) 1F469 1F3FF 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; woman teacher: dark skin tone # E4.0 [1] (👩🏿‍🏫) 1F469 1F3FF 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; woman factory worker: dark skin tone # E4.0 [1] (👩🏿‍🏭) 1F469 1F3FF 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; woman technologist: dark skin tone # E4.0 [1] (👩🏿‍💻) 1F469 1F3FF 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; woman office worker: dark skin tone # E4.0 [1] (👩🏿‍💼) 1F469 1F3FF 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; woman mechanic: dark skin tone # E4.0 [1] (👩🏿‍🔧) 1F469 1F3FF 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; woman scientist: dark skin tone # E4.0 [1] (👩🏿‍🔬) 1F469 1F3FF 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; woman astronaut: dark skin tone # E4.0 [1] (👩🏿‍🚀) 1F469 1F3FF 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; woman firefighter: dark skin tone # E4.0 [1] (👩🏿‍🚒) 1F469 1F3FF 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; woman with white cane: dark skin tone # E12.0 [1] (👩🏿‍🦯) 1F469 1F3FF 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; woman in motorized wheelchair: dark skin tone # E12.0 [1] (👩🏿‍🦼) 1F469 1F3FF 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; woman in manual wheelchair: dark skin tone # E12.0 [1] (👩🏿‍🦽) 1F9D1 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker # E12.1 [1] (🧑‍⚕️) 1F9D1 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge # E12.1 [1] (🧑‍⚖️) 1F9D1 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot # E12.1 [1] (🧑‍✈️) 1F9D1 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer # E12.1 [1] (🧑‍🌾) 1F9D1 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook # E12.1 [1] (🧑‍🍳) 1F9D1 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby # E13.0 [1] (🧑‍🍼) 1F9D1 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student # E12.1 [1] (🧑‍🎓) 1F9D1 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer # E12.1 [1] (🧑‍🎤) 1F9D1 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist # E12.1 [1] (🧑‍🎨) 1F9D1 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher # E12.1 [1] (🧑‍🏫) 1F9D1 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker # E12.1 [1] (🧑‍🏭) 1F9D1 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist # E12.1 [1] (🧑‍💻) 1F9D1 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker # E12.1 [1] (🧑‍💼) 1F9D1 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic # E12.1 [1] (🧑‍🔧) 1F9D1 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist # E12.1 [1] (🧑‍🔬) 1F9D1 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut # E12.1 [1] (🧑‍🚀) 1F9D1 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter # E12.1 [1] (🧑‍🚒) 1F9D1 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane # E12.1 [1] (🧑‍🦯) 1F9D1 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair # E12.1 [1] (🧑‍🦼) 1F9D1 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair # E12.1 [1] (🧑‍🦽) 1F9D1 1F3FB 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker: light skin tone # E12.1 [1] (🧑🏻‍⚕️) 1F9D1 1F3FB 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge: light skin tone # E12.1 [1] (🧑🏻‍⚖️) 1F9D1 1F3FB 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot: light skin tone # E12.1 [1] (🧑🏻‍✈️) 1F9D1 1F3FB 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer: light skin tone # E12.1 [1] (🧑🏻‍🌾) 1F9D1 1F3FB 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook: light skin tone # E12.1 [1] (🧑🏻‍🍳) 1F9D1 1F3FB 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby: light skin tone # E13.0 [1] (🧑🏻‍🍼) 1F9D1 1F3FB 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student: light skin tone # E12.1 [1] (🧑🏻‍🎓) 1F9D1 1F3FB 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer: light skin tone # E12.1 [1] (🧑🏻‍🎤) 1F9D1 1F3FB 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist: light skin tone # E12.1 [1] (🧑🏻‍🎨) 1F9D1 1F3FB 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher: light skin tone # E12.1 [1] (🧑🏻‍🏫) 1F9D1 1F3FB 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker: light skin tone # E12.1 [1] (🧑🏻‍🏭) 1F9D1 1F3FB 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist: light skin tone # E12.1 [1] (🧑🏻‍💻) 1F9D1 1F3FB 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker: light skin tone # E12.1 [1] (🧑🏻‍💼) 1F9D1 1F3FB 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic: light skin tone # E12.1 [1] (🧑🏻‍🔧) 1F9D1 1F3FB 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist: light skin tone # E12.1 [1] (🧑🏻‍🔬) 1F9D1 1F3FB 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut: light skin tone # E12.1 [1] (🧑🏻‍🚀) 1F9D1 1F3FB 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter: light skin tone # E12.1 [1] (🧑🏻‍🚒) 1F9D1 1F3FB 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane: light skin tone # E12.1 [1] (🧑🏻‍🦯) 1F9D1 1F3FB 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair: light skin tone # E12.1 [1] (🧑🏻‍🦼) 1F9D1 1F3FB 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair: light skin tone # E12.1 [1] (🧑🏻‍🦽) 1F9D1 1F3FC 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker: medium-light skin tone # E12.1 [1] (🧑🏼‍⚕️) 1F9D1 1F3FC 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge: medium-light skin tone # E12.1 [1] (🧑🏼‍⚖️) 1F9D1 1F3FC 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot: medium-light skin tone # E12.1 [1] (🧑🏼‍✈️) 1F9D1 1F3FC 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer: medium-light skin tone # E12.1 [1] (🧑🏼‍🌾) 1F9D1 1F3FC 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook: medium-light skin tone # E12.1 [1] (🧑🏼‍🍳) 1F9D1 1F3FC 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby: medium-light skin tone # E13.0 [1] (🧑🏼‍🍼) 1F9D1 1F3FC 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student: medium-light skin tone # E12.1 [1] (🧑🏼‍🎓) 1F9D1 1F3FC 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer: medium-light skin tone # E12.1 [1] (🧑🏼‍🎤) 1F9D1 1F3FC 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist: medium-light skin tone # E12.1 [1] (🧑🏼‍🎨) 1F9D1 1F3FC 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher: medium-light skin tone # E12.1 [1] (🧑🏼‍🏫) 1F9D1 1F3FC 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker: medium-light skin tone # E12.1 [1] (🧑🏼‍🏭) 1F9D1 1F3FC 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist: medium-light skin tone # E12.1 [1] (🧑🏼‍💻) 1F9D1 1F3FC 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker: medium-light skin tone # E12.1 [1] (🧑🏼‍💼) 1F9D1 1F3FC 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic: medium-light skin tone # E12.1 [1] (🧑🏼‍🔧) 1F9D1 1F3FC 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist: medium-light skin tone # E12.1 [1] (🧑🏼‍🔬) 1F9D1 1F3FC 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut: medium-light skin tone # E12.1 [1] (🧑🏼‍🚀) 1F9D1 1F3FC 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter: medium-light skin tone # E12.1 [1] (🧑🏼‍🚒) 1F9D1 1F3FC 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane: medium-light skin tone # E12.1 [1] (🧑🏼‍🦯) 1F9D1 1F3FC 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair: medium-light skin tone # E12.1 [1] (🧑🏼‍🦼) 1F9D1 1F3FC 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair: medium-light skin tone # E12.1 [1] (🧑🏼‍🦽) 1F9D1 1F3FD 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker: medium skin tone # E12.1 [1] (🧑🏽‍⚕️) 1F9D1 1F3FD 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge: medium skin tone # E12.1 [1] (🧑🏽‍⚖️) 1F9D1 1F3FD 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot: medium skin tone # E12.1 [1] (🧑🏽‍✈️) 1F9D1 1F3FD 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer: medium skin tone # E12.1 [1] (🧑🏽‍🌾) 1F9D1 1F3FD 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook: medium skin tone # E12.1 [1] (🧑🏽‍🍳) 1F9D1 1F3FD 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby: medium skin tone # E13.0 [1] (🧑🏽‍🍼) 1F9D1 1F3FD 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student: medium skin tone # E12.1 [1] (🧑🏽‍🎓) 1F9D1 1F3FD 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer: medium skin tone # E12.1 [1] (🧑🏽‍🎤) 1F9D1 1F3FD 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist: medium skin tone # E12.1 [1] (🧑🏽‍🎨) 1F9D1 1F3FD 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher: medium skin tone # E12.1 [1] (🧑🏽‍🏫) 1F9D1 1F3FD 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker: medium skin tone # E12.1 [1] (🧑🏽‍🏭) 1F9D1 1F3FD 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist: medium skin tone # E12.1 [1] (🧑🏽‍💻) 1F9D1 1F3FD 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker: medium skin tone # E12.1 [1] (🧑🏽‍💼) 1F9D1 1F3FD 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic: medium skin tone # E12.1 [1] (🧑🏽‍🔧) 1F9D1 1F3FD 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist: medium skin tone # E12.1 [1] (🧑🏽‍🔬) 1F9D1 1F3FD 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut: medium skin tone # E12.1 [1] (🧑🏽‍🚀) 1F9D1 1F3FD 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter: medium skin tone # E12.1 [1] (🧑🏽‍🚒) 1F9D1 1F3FD 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane: medium skin tone # E12.1 [1] (🧑🏽‍🦯) 1F9D1 1F3FD 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair: medium skin tone # E12.1 [1] (🧑🏽‍🦼) 1F9D1 1F3FD 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair: medium skin tone # E12.1 [1] (🧑🏽‍🦽) 1F9D1 1F3FE 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker: medium-dark skin tone # E12.1 [1] (🧑🏾‍⚕️) 1F9D1 1F3FE 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge: medium-dark skin tone # E12.1 [1] (🧑🏾‍⚖️) 1F9D1 1F3FE 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot: medium-dark skin tone # E12.1 [1] (🧑🏾‍✈️) 1F9D1 1F3FE 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer: medium-dark skin tone # E12.1 [1] (🧑🏾‍🌾) 1F9D1 1F3FE 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook: medium-dark skin tone # E12.1 [1] (🧑🏾‍🍳) 1F9D1 1F3FE 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby: medium-dark skin tone # E13.0 [1] (🧑🏾‍🍼) 1F9D1 1F3FE 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student: medium-dark skin tone # E12.1 [1] (🧑🏾‍🎓) 1F9D1 1F3FE 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer: medium-dark skin tone # E12.1 [1] (🧑🏾‍🎤) 1F9D1 1F3FE 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist: medium-dark skin tone # E12.1 [1] (🧑🏾‍🎨) 1F9D1 1F3FE 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher: medium-dark skin tone # E12.1 [1] (🧑🏾‍🏫) 1F9D1 1F3FE 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker: medium-dark skin tone # E12.1 [1] (🧑🏾‍🏭) 1F9D1 1F3FE 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist: medium-dark skin tone # E12.1 [1] (🧑🏾‍💻) 1F9D1 1F3FE 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker: medium-dark skin tone # E12.1 [1] (🧑🏾‍💼) 1F9D1 1F3FE 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic: medium-dark skin tone # E12.1 [1] (🧑🏾‍🔧) 1F9D1 1F3FE 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist: medium-dark skin tone # E12.1 [1] (🧑🏾‍🔬) 1F9D1 1F3FE 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut: medium-dark skin tone # E12.1 [1] (🧑🏾‍🚀) 1F9D1 1F3FE 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter: medium-dark skin tone # E12.1 [1] (🧑🏾‍🚒) 1F9D1 1F3FE 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane: medium-dark skin tone # E12.1 [1] (🧑🏾‍🦯) 1F9D1 1F3FE 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair: medium-dark skin tone # E12.1 [1] (🧑🏾‍🦼) 1F9D1 1F3FE 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair: medium-dark skin tone # E12.1 [1] (🧑🏾‍🦽) 1F9D1 1F3FF 200D 2695 FE0F ; RGI_Emoji_ZWJ_Sequence ; health worker: dark skin tone # E12.1 [1] (🧑🏿‍⚕️) 1F9D1 1F3FF 200D 2696 FE0F ; RGI_Emoji_ZWJ_Sequence ; judge: dark skin tone # E12.1 [1] (🧑🏿‍⚖️) 1F9D1 1F3FF 200D 2708 FE0F ; RGI_Emoji_ZWJ_Sequence ; pilot: dark skin tone # E12.1 [1] (🧑🏿‍✈️) 1F9D1 1F3FF 200D 1F33E ; RGI_Emoji_ZWJ_Sequence ; farmer: dark skin tone # E12.1 [1] (🧑🏿‍🌾) 1F9D1 1F3FF 200D 1F373 ; RGI_Emoji_ZWJ_Sequence ; cook: dark skin tone # E12.1 [1] (🧑🏿‍🍳) 1F9D1 1F3FF 200D 1F37C ; RGI_Emoji_ZWJ_Sequence ; person feeding baby: dark skin tone # E13.0 [1] (🧑🏿‍🍼) 1F9D1 1F3FF 200D 1F393 ; RGI_Emoji_ZWJ_Sequence ; student: dark skin tone # E12.1 [1] (🧑🏿‍🎓) 1F9D1 1F3FF 200D 1F3A4 ; RGI_Emoji_ZWJ_Sequence ; singer: dark skin tone # E12.1 [1] (🧑🏿‍🎤) 1F9D1 1F3FF 200D 1F3A8 ; RGI_Emoji_ZWJ_Sequence ; artist: dark skin tone # E12.1 [1] (🧑🏿‍🎨) 1F9D1 1F3FF 200D 1F3EB ; RGI_Emoji_ZWJ_Sequence ; teacher: dark skin tone # E12.1 [1] (🧑🏿‍🏫) 1F9D1 1F3FF 200D 1F3ED ; RGI_Emoji_ZWJ_Sequence ; factory worker: dark skin tone # E12.1 [1] (🧑🏿‍🏭) 1F9D1 1F3FF 200D 1F4BB ; RGI_Emoji_ZWJ_Sequence ; technologist: dark skin tone # E12.1 [1] (🧑🏿‍💻) 1F9D1 1F3FF 200D 1F4BC ; RGI_Emoji_ZWJ_Sequence ; office worker: dark skin tone # E12.1 [1] (🧑🏿‍💼) 1F9D1 1F3FF 200D 1F527 ; RGI_Emoji_ZWJ_Sequence ; mechanic: dark skin tone # E12.1 [1] (🧑🏿‍🔧) 1F9D1 1F3FF 200D 1F52C ; RGI_Emoji_ZWJ_Sequence ; scientist: dark skin tone # E12.1 [1] (🧑🏿‍🔬) 1F9D1 1F3FF 200D 1F680 ; RGI_Emoji_ZWJ_Sequence ; astronaut: dark skin tone # E12.1 [1] (🧑🏿‍🚀) 1F9D1 1F3FF 200D 1F692 ; RGI_Emoji_ZWJ_Sequence ; firefighter: dark skin tone # E12.1 [1] (🧑🏿‍🚒) 1F9D1 1F3FF 200D 1F9AF ; RGI_Emoji_ZWJ_Sequence ; person with white cane: dark skin tone # E12.1 [1] (🧑🏿‍🦯) 1F9D1 1F3FF 200D 1F9BC ; RGI_Emoji_ZWJ_Sequence ; person in motorized wheelchair: dark skin tone # E12.1 [1] (🧑🏿‍🦼) 1F9D1 1F3FF 200D 1F9BD ; RGI_Emoji_ZWJ_Sequence ; person in manual wheelchair: dark skin tone # E12.1 [1] (🧑🏿‍🦽) # Total elements: 360 # ================================================ # RGI_Emoji_ZWJ_Sequence: Gendered 26F9 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball: light skin tone # E4.0 [1] (⛹🏻‍♀️) 26F9 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball: light skin tone # E4.0 [1] (⛹🏻‍♂️) 26F9 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball: medium-light skin tone # E4.0 [1] (⛹🏼‍♀️) 26F9 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball: medium-light skin tone # E4.0 [1] (⛹🏼‍♂️) 26F9 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball: medium skin tone # E4.0 [1] (⛹🏽‍♀️) 26F9 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball: medium skin tone # E4.0 [1] (⛹🏽‍♂️) 26F9 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball: medium-dark skin tone # E4.0 [1] (⛹🏾‍♀️) 26F9 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball: medium-dark skin tone # E4.0 [1] (⛹🏾‍♂️) 26F9 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball: dark skin tone # E4.0 [1] (⛹🏿‍♀️) 26F9 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball: dark skin tone # E4.0 [1] (⛹🏿‍♂️) 26F9 FE0F 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bouncing ball # E4.0 [1] (⛹️‍♀️) 26F9 FE0F 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bouncing ball # E4.0 [1] (⛹️‍♂️) 1F3C3 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running # E4.0 [1] (🏃‍♀️) 1F3C3 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running # E4.0 [1] (🏃‍♂️) 1F3C3 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running: light skin tone # E4.0 [1] (🏃🏻‍♀️) 1F3C3 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running: light skin tone # E4.0 [1] (🏃🏻‍♂️) 1F3C3 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running: medium-light skin tone # E4.0 [1] (🏃🏼‍♀️) 1F3C3 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running: medium-light skin tone # E4.0 [1] (🏃🏼‍♂️) 1F3C3 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running: medium skin tone # E4.0 [1] (🏃🏽‍♀️) 1F3C3 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running: medium skin tone # E4.0 [1] (🏃🏽‍♂️) 1F3C3 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running: medium-dark skin tone # E4.0 [1] (🏃🏾‍♀️) 1F3C3 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running: medium-dark skin tone # E4.0 [1] (🏃🏾‍♂️) 1F3C3 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman running: dark skin tone # E4.0 [1] (🏃🏿‍♀️) 1F3C3 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man running: dark skin tone # E4.0 [1] (🏃🏿‍♂️) 1F3C4 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing # E4.0 [1] (🏄‍♀️) 1F3C4 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing # E4.0 [1] (🏄‍♂️) 1F3C4 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing: light skin tone # E4.0 [1] (🏄🏻‍♀️) 1F3C4 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing: light skin tone # E4.0 [1] (🏄🏻‍♂️) 1F3C4 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing: medium-light skin tone # E4.0 [1] (🏄🏼‍♀️) 1F3C4 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing: medium-light skin tone # E4.0 [1] (🏄🏼‍♂️) 1F3C4 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing: medium skin tone # E4.0 [1] (🏄🏽‍♀️) 1F3C4 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing: medium skin tone # E4.0 [1] (🏄🏽‍♂️) 1F3C4 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing: medium-dark skin tone # E4.0 [1] (🏄🏾‍♀️) 1F3C4 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing: medium-dark skin tone # E4.0 [1] (🏄🏾‍♂️) 1F3C4 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman surfing: dark skin tone # E4.0 [1] (🏄🏿‍♀️) 1F3C4 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man surfing: dark skin tone # E4.0 [1] (🏄🏿‍♂️) 1F3CA 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming # E4.0 [1] (🏊‍♀️) 1F3CA 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming # E4.0 [1] (🏊‍♂️) 1F3CA 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming: light skin tone # E4.0 [1] (🏊🏻‍♀️) 1F3CA 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming: light skin tone # E4.0 [1] (🏊🏻‍♂️) 1F3CA 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming: medium-light skin tone # E4.0 [1] (🏊🏼‍♀️) 1F3CA 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming: medium-light skin tone # E4.0 [1] (🏊🏼‍♂️) 1F3CA 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming: medium skin tone # E4.0 [1] (🏊🏽‍♀️) 1F3CA 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming: medium skin tone # E4.0 [1] (🏊🏽‍♂️) 1F3CA 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming: medium-dark skin tone # E4.0 [1] (🏊🏾‍♀️) 1F3CA 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming: medium-dark skin tone # E4.0 [1] (🏊🏾‍♂️) 1F3CA 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman swimming: dark skin tone # E4.0 [1] (🏊🏿‍♀️) 1F3CA 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man swimming: dark skin tone # E4.0 [1] (🏊🏿‍♂️) 1F3CB 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights: light skin tone # E4.0 [1] (🏋🏻‍♀️) 1F3CB 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights: light skin tone # E4.0 [1] (🏋🏻‍♂️) 1F3CB 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights: medium-light skin tone # E4.0 [1] (🏋🏼‍♀️) 1F3CB 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights: medium-light skin tone # E4.0 [1] (🏋🏼‍♂️) 1F3CB 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights: medium skin tone # E4.0 [1] (🏋🏽‍♀️) 1F3CB 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights: medium skin tone # E4.0 [1] (🏋🏽‍♂️) 1F3CB 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights: medium-dark skin tone # E4.0 [1] (🏋🏾‍♀️) 1F3CB 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights: medium-dark skin tone # E4.0 [1] (🏋🏾‍♂️) 1F3CB 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights: dark skin tone # E4.0 [1] (🏋🏿‍♀️) 1F3CB 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights: dark skin tone # E4.0 [1] (🏋🏿‍♂️) 1F3CB FE0F 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman lifting weights # E4.0 [1] (🏋️‍♀️) 1F3CB FE0F 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man lifting weights # E4.0 [1] (🏋️‍♂️) 1F3CC 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing: light skin tone # E4.0 [1] (🏌🏻‍♀️) 1F3CC 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing: light skin tone # E4.0 [1] (🏌🏻‍♂️) 1F3CC 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing: medium-light skin tone # E4.0 [1] (🏌🏼‍♀️) 1F3CC 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing: medium-light skin tone # E4.0 [1] (🏌🏼‍♂️) 1F3CC 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing: medium skin tone # E4.0 [1] (🏌🏽‍♀️) 1F3CC 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing: medium skin tone # E4.0 [1] (🏌🏽‍♂️) 1F3CC 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing: medium-dark skin tone # E4.0 [1] (🏌🏾‍♀️) 1F3CC 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing: medium-dark skin tone # E4.0 [1] (🏌🏾‍♂️) 1F3CC 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing: dark skin tone # E4.0 [1] (🏌🏿‍♀️) 1F3CC 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing: dark skin tone # E4.0 [1] (🏌🏿‍♂️) 1F3CC FE0F 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman golfing # E4.0 [1] (🏌️‍♀️) 1F3CC FE0F 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man golfing # E4.0 [1] (🏌️‍♂️) 1F46E 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer # E4.0 [1] (👮‍♀️) 1F46E 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer # E4.0 [1] (👮‍♂️) 1F46E 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer: light skin tone # E4.0 [1] (👮🏻‍♀️) 1F46E 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer: light skin tone # E4.0 [1] (👮🏻‍♂️) 1F46E 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer: medium-light skin tone # E4.0 [1] (👮🏼‍♀️) 1F46E 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer: medium-light skin tone # E4.0 [1] (👮🏼‍♂️) 1F46E 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer: medium skin tone # E4.0 [1] (👮🏽‍♀️) 1F46E 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer: medium skin tone # E4.0 [1] (👮🏽‍♂️) 1F46E 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer: medium-dark skin tone # E4.0 [1] (👮🏾‍♀️) 1F46E 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer: medium-dark skin tone # E4.0 [1] (👮🏾‍♂️) 1F46E 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman police officer: dark skin tone # E4.0 [1] (👮🏿‍♀️) 1F46E 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man police officer: dark skin tone # E4.0 [1] (👮🏿‍♂️) 1F46F 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; women with bunny ears # E4.0 [1] (👯‍♀️) 1F46F 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; men with bunny ears # E4.0 [1] (👯‍♂️) 1F470 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil # E13.0 [1] (👰‍♀️) 1F470 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil # E13.0 [1] (👰‍♂️) 1F470 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil: light skin tone # E13.0 [1] (👰🏻‍♀️) 1F470 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil: light skin tone # E13.0 [1] (👰🏻‍♂️) 1F470 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil: medium-light skin tone # E13.0 [1] (👰🏼‍♀️) 1F470 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil: medium-light skin tone # E13.0 [1] (👰🏼‍♂️) 1F470 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil: medium skin tone # E13.0 [1] (👰🏽‍♀️) 1F470 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil: medium skin tone # E13.0 [1] (👰🏽‍♂️) 1F470 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil: medium-dark skin tone # E13.0 [1] (👰🏾‍♀️) 1F470 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil: medium-dark skin tone # E13.0 [1] (👰🏾‍♂️) 1F470 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman with veil: dark skin tone # E13.0 [1] (👰🏿‍♀️) 1F470 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man with veil: dark skin tone # E13.0 [1] (👰🏿‍♂️) 1F471 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: blond hair # E4.0 [1] (👱‍♀️) 1F471 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: blond hair # E4.0 [1] (👱‍♂️) 1F471 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, blond hair # E4.0 [1] (👱🏻‍♀️) 1F471 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, blond hair # E4.0 [1] (👱🏻‍♂️) 1F471 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, blond hair # E4.0 [1] (👱🏼‍♀️) 1F471 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, blond hair # E4.0 [1] (👱🏼‍♂️) 1F471 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, blond hair # E4.0 [1] (👱🏽‍♀️) 1F471 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, blond hair # E4.0 [1] (👱🏽‍♂️) 1F471 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, blond hair # E4.0 [1] (👱🏾‍♀️) 1F471 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, blond hair # E4.0 [1] (👱🏾‍♂️) 1F471 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, blond hair # E4.0 [1] (👱🏿‍♀️) 1F471 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, blond hair # E4.0 [1] (👱🏿‍♂️) 1F473 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban # E4.0 [1] (👳‍♀️) 1F473 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban # E4.0 [1] (👳‍♂️) 1F473 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban: light skin tone # E4.0 [1] (👳🏻‍♀️) 1F473 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban: light skin tone # E4.0 [1] (👳🏻‍♂️) 1F473 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban: medium-light skin tone # E4.0 [1] (👳🏼‍♀️) 1F473 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban: medium-light skin tone # E4.0 [1] (👳🏼‍♂️) 1F473 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban: medium skin tone # E4.0 [1] (👳🏽‍♀️) 1F473 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban: medium skin tone # E4.0 [1] (👳🏽‍♂️) 1F473 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban: medium-dark skin tone # E4.0 [1] (👳🏾‍♀️) 1F473 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban: medium-dark skin tone # E4.0 [1] (👳🏾‍♂️) 1F473 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman wearing turban: dark skin tone # E4.0 [1] (👳🏿‍♀️) 1F473 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man wearing turban: dark skin tone # E4.0 [1] (👳🏿‍♂️) 1F477 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker # E4.0 [1] (👷‍♀️) 1F477 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker # E4.0 [1] (👷‍♂️) 1F477 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker: light skin tone # E4.0 [1] (👷🏻‍♀️) 1F477 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker: light skin tone # E4.0 [1] (👷🏻‍♂️) 1F477 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker: medium-light skin tone # E4.0 [1] (👷🏼‍♀️) 1F477 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker: medium-light skin tone # E4.0 [1] (👷🏼‍♂️) 1F477 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker: medium skin tone # E4.0 [1] (👷🏽‍♀️) 1F477 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker: medium skin tone # E4.0 [1] (👷🏽‍♂️) 1F477 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker: medium-dark skin tone # E4.0 [1] (👷🏾‍♀️) 1F477 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker: medium-dark skin tone # E4.0 [1] (👷🏾‍♂️) 1F477 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman construction worker: dark skin tone # E4.0 [1] (👷🏿‍♀️) 1F477 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man construction worker: dark skin tone # E4.0 [1] (👷🏿‍♂️) 1F481 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand # E4.0 [1] (💁‍♀️) 1F481 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand # E4.0 [1] (💁‍♂️) 1F481 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand: light skin tone # E4.0 [1] (💁🏻‍♀️) 1F481 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand: light skin tone # E4.0 [1] (💁🏻‍♂️) 1F481 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand: medium-light skin tone # E4.0 [1] (💁🏼‍♀️) 1F481 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand: medium-light skin tone # E4.0 [1] (💁🏼‍♂️) 1F481 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand: medium skin tone # E4.0 [1] (💁🏽‍♀️) 1F481 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand: medium skin tone # E4.0 [1] (💁🏽‍♂️) 1F481 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand: medium-dark skin tone # E4.0 [1] (💁🏾‍♀️) 1F481 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand: medium-dark skin tone # E4.0 [1] (💁🏾‍♂️) 1F481 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman tipping hand: dark skin tone # E4.0 [1] (💁🏿‍♀️) 1F481 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man tipping hand: dark skin tone # E4.0 [1] (💁🏿‍♂️) 1F482 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard # E4.0 [1] (💂‍♀️) 1F482 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard # E4.0 [1] (💂‍♂️) 1F482 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard: light skin tone # E4.0 [1] (💂🏻‍♀️) 1F482 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard: light skin tone # E4.0 [1] (💂🏻‍♂️) 1F482 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard: medium-light skin tone # E4.0 [1] (💂🏼‍♀️) 1F482 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard: medium-light skin tone # E4.0 [1] (💂🏼‍♂️) 1F482 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard: medium skin tone # E4.0 [1] (💂🏽‍♀️) 1F482 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard: medium skin tone # E4.0 [1] (💂🏽‍♂️) 1F482 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard: medium-dark skin tone # E4.0 [1] (💂🏾‍♀️) 1F482 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard: medium-dark skin tone # E4.0 [1] (💂🏾‍♂️) 1F482 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman guard: dark skin tone # E4.0 [1] (💂🏿‍♀️) 1F482 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man guard: dark skin tone # E4.0 [1] (💂🏿‍♂️) 1F486 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage # E4.0 [1] (💆‍♀️) 1F486 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage # E4.0 [1] (💆‍♂️) 1F486 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage: light skin tone # E4.0 [1] (💆🏻‍♀️) 1F486 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage: light skin tone # E4.0 [1] (💆🏻‍♂️) 1F486 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage: medium-light skin tone # E4.0 [1] (💆🏼‍♀️) 1F486 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage: medium-light skin tone # E4.0 [1] (💆🏼‍♂️) 1F486 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage: medium skin tone # E4.0 [1] (💆🏽‍♀️) 1F486 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage: medium skin tone # E4.0 [1] (💆🏽‍♂️) 1F486 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage: medium-dark skin tone # E4.0 [1] (💆🏾‍♀️) 1F486 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage: medium-dark skin tone # E4.0 [1] (💆🏾‍♂️) 1F486 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting massage: dark skin tone # E4.0 [1] (💆🏿‍♀️) 1F486 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting massage: dark skin tone # E4.0 [1] (💆🏿‍♂️) 1F487 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut # E4.0 [1] (💇‍♀️) 1F487 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut # E4.0 [1] (💇‍♂️) 1F487 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut: light skin tone # E4.0 [1] (💇🏻‍♀️) 1F487 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut: light skin tone # E4.0 [1] (💇🏻‍♂️) 1F487 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut: medium-light skin tone # E4.0 [1] (💇🏼‍♀️) 1F487 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut: medium-light skin tone # E4.0 [1] (💇🏼‍♂️) 1F487 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut: medium skin tone # E4.0 [1] (💇🏽‍♀️) 1F487 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut: medium skin tone # E4.0 [1] (💇🏽‍♂️) 1F487 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut: medium-dark skin tone # E4.0 [1] (💇🏾‍♀️) 1F487 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut: medium-dark skin tone # E4.0 [1] (💇🏾‍♂️) 1F487 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman getting haircut: dark skin tone # E4.0 [1] (💇🏿‍♀️) 1F487 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man getting haircut: dark skin tone # E4.0 [1] (💇🏿‍♂️) 1F575 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective: light skin tone # E4.0 [1] (🕵🏻‍♀️) 1F575 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective: light skin tone # E4.0 [1] (🕵🏻‍♂️) 1F575 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective: medium-light skin tone # E4.0 [1] (🕵🏼‍♀️) 1F575 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective: medium-light skin tone # E4.0 [1] (🕵🏼‍♂️) 1F575 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective: medium skin tone # E4.0 [1] (🕵🏽‍♀️) 1F575 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective: medium skin tone # E4.0 [1] (🕵🏽‍♂️) 1F575 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective: medium-dark skin tone # E4.0 [1] (🕵🏾‍♀️) 1F575 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective: medium-dark skin tone # E4.0 [1] (🕵🏾‍♂️) 1F575 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective: dark skin tone # E4.0 [1] (🕵🏿‍♀️) 1F575 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective: dark skin tone # E4.0 [1] (🕵🏿‍♂️) 1F575 FE0F 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman detective # E4.0 [1] (🕵️‍♀️) 1F575 FE0F 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man detective # E4.0 [1] (🕵️‍♂️) 1F645 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO # E4.0 [1] (🙅‍♀️) 1F645 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO # E4.0 [1] (🙅‍♂️) 1F645 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO: light skin tone # E4.0 [1] (🙅🏻‍♀️) 1F645 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO: light skin tone # E4.0 [1] (🙅🏻‍♂️) 1F645 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO: medium-light skin tone # E4.0 [1] (🙅🏼‍♀️) 1F645 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO: medium-light skin tone # E4.0 [1] (🙅🏼‍♂️) 1F645 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO: medium skin tone # E4.0 [1] (🙅🏽‍♀️) 1F645 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO: medium skin tone # E4.0 [1] (🙅🏽‍♂️) 1F645 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO: medium-dark skin tone # E4.0 [1] (🙅🏾‍♀️) 1F645 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO: medium-dark skin tone # E4.0 [1] (🙅🏾‍♂️) 1F645 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing NO: dark skin tone # E4.0 [1] (🙅🏿‍♀️) 1F645 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing NO: dark skin tone # E4.0 [1] (🙅🏿‍♂️) 1F646 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK # E4.0 [1] (🙆‍♀️) 1F646 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK # E4.0 [1] (🙆‍♂️) 1F646 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK: light skin tone # E4.0 [1] (🙆🏻‍♀️) 1F646 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK: light skin tone # E4.0 [1] (🙆🏻‍♂️) 1F646 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK: medium-light skin tone # E4.0 [1] (🙆🏼‍♀️) 1F646 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK: medium-light skin tone # E4.0 [1] (🙆🏼‍♂️) 1F646 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK: medium skin tone # E4.0 [1] (🙆🏽‍♀️) 1F646 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK: medium skin tone # E4.0 [1] (🙆🏽‍♂️) 1F646 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK: medium-dark skin tone # E4.0 [1] (🙆🏾‍♀️) 1F646 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK: medium-dark skin tone # E4.0 [1] (🙆🏾‍♂️) 1F646 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman gesturing OK: dark skin tone # E4.0 [1] (🙆🏿‍♀️) 1F646 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man gesturing OK: dark skin tone # E4.0 [1] (🙆🏿‍♂️) 1F647 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing # E4.0 [1] (🙇‍♀️) 1F647 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing # E4.0 [1] (🙇‍♂️) 1F647 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing: light skin tone # E4.0 [1] (🙇🏻‍♀️) 1F647 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing: light skin tone # E4.0 [1] (🙇🏻‍♂️) 1F647 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing: medium-light skin tone # E4.0 [1] (🙇🏼‍♀️) 1F647 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing: medium-light skin tone # E4.0 [1] (🙇🏼‍♂️) 1F647 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing: medium skin tone # E4.0 [1] (🙇🏽‍♀️) 1F647 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing: medium skin tone # E4.0 [1] (🙇🏽‍♂️) 1F647 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing: medium-dark skin tone # E4.0 [1] (🙇🏾‍♀️) 1F647 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing: medium-dark skin tone # E4.0 [1] (🙇🏾‍♂️) 1F647 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman bowing: dark skin tone # E4.0 [1] (🙇🏿‍♀️) 1F647 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man bowing: dark skin tone # E4.0 [1] (🙇🏿‍♂️) 1F64B 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand # E4.0 [1] (🙋‍♀️) 1F64B 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand # E4.0 [1] (🙋‍♂️) 1F64B 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand: light skin tone # E4.0 [1] (🙋🏻‍♀️) 1F64B 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand: light skin tone # E4.0 [1] (🙋🏻‍♂️) 1F64B 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand: medium-light skin tone # E4.0 [1] (🙋🏼‍♀️) 1F64B 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand: medium-light skin tone # E4.0 [1] (🙋🏼‍♂️) 1F64B 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand: medium skin tone # E4.0 [1] (🙋🏽‍♀️) 1F64B 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand: medium skin tone # E4.0 [1] (🙋🏽‍♂️) 1F64B 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand: medium-dark skin tone # E4.0 [1] (🙋🏾‍♀️) 1F64B 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand: medium-dark skin tone # E4.0 [1] (🙋🏾‍♂️) 1F64B 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman raising hand: dark skin tone # E4.0 [1] (🙋🏿‍♀️) 1F64B 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man raising hand: dark skin tone # E4.0 [1] (🙋🏿‍♂️) 1F64D 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning # E4.0 [1] (🙍‍♀️) 1F64D 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning # E4.0 [1] (🙍‍♂️) 1F64D 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning: light skin tone # E4.0 [1] (🙍🏻‍♀️) 1F64D 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning: light skin tone # E4.0 [1] (🙍🏻‍♂️) 1F64D 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning: medium-light skin tone # E4.0 [1] (🙍🏼‍♀️) 1F64D 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning: medium-light skin tone # E4.0 [1] (🙍🏼‍♂️) 1F64D 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning: medium skin tone # E4.0 [1] (🙍🏽‍♀️) 1F64D 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning: medium skin tone # E4.0 [1] (🙍🏽‍♂️) 1F64D 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning: medium-dark skin tone # E4.0 [1] (🙍🏾‍♀️) 1F64D 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning: medium-dark skin tone # E4.0 [1] (🙍🏾‍♂️) 1F64D 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman frowning: dark skin tone # E4.0 [1] (🙍🏿‍♀️) 1F64D 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man frowning: dark skin tone # E4.0 [1] (🙍🏿‍♂️) 1F64E 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting # E4.0 [1] (🙎‍♀️) 1F64E 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting # E4.0 [1] (🙎‍♂️) 1F64E 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting: light skin tone # E4.0 [1] (🙎🏻‍♀️) 1F64E 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting: light skin tone # E4.0 [1] (🙎🏻‍♂️) 1F64E 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting: medium-light skin tone # E4.0 [1] (🙎🏼‍♀️) 1F64E 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting: medium-light skin tone # E4.0 [1] (🙎🏼‍♂️) 1F64E 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting: medium skin tone # E4.0 [1] (🙎🏽‍♀️) 1F64E 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting: medium skin tone # E4.0 [1] (🙎🏽‍♂️) 1F64E 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting: medium-dark skin tone # E4.0 [1] (🙎🏾‍♀️) 1F64E 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting: medium-dark skin tone # E4.0 [1] (🙎🏾‍♂️) 1F64E 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman pouting: dark skin tone # E4.0 [1] (🙎🏿‍♀️) 1F64E 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man pouting: dark skin tone # E4.0 [1] (🙎🏿‍♂️) 1F6A3 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat # E4.0 [1] (🚣‍♀️) 1F6A3 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat # E4.0 [1] (🚣‍♂️) 1F6A3 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat: light skin tone # E4.0 [1] (🚣🏻‍♀️) 1F6A3 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat: light skin tone # E4.0 [1] (🚣🏻‍♂️) 1F6A3 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat: medium-light skin tone # E4.0 [1] (🚣🏼‍♀️) 1F6A3 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat: medium-light skin tone # E4.0 [1] (🚣🏼‍♂️) 1F6A3 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat: medium skin tone # E4.0 [1] (🚣🏽‍♀️) 1F6A3 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat: medium skin tone # E4.0 [1] (🚣🏽‍♂️) 1F6A3 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat: medium-dark skin tone # E4.0 [1] (🚣🏾‍♀️) 1F6A3 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat: medium-dark skin tone # E4.0 [1] (🚣🏾‍♂️) 1F6A3 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman rowing boat: dark skin tone # E4.0 [1] (🚣🏿‍♀️) 1F6A3 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man rowing boat: dark skin tone # E4.0 [1] (🚣🏿‍♂️) 1F6B4 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking # E4.0 [1] (🚴‍♀️) 1F6B4 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking # E4.0 [1] (🚴‍♂️) 1F6B4 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking: light skin tone # E4.0 [1] (🚴🏻‍♀️) 1F6B4 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking: light skin tone # E4.0 [1] (🚴🏻‍♂️) 1F6B4 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking: medium-light skin tone # E4.0 [1] (🚴🏼‍♀️) 1F6B4 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking: medium-light skin tone # E4.0 [1] (🚴🏼‍♂️) 1F6B4 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking: medium skin tone # E4.0 [1] (🚴🏽‍♀️) 1F6B4 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking: medium skin tone # E4.0 [1] (🚴🏽‍♂️) 1F6B4 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking: medium-dark skin tone # E4.0 [1] (🚴🏾‍♀️) 1F6B4 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking: medium-dark skin tone # E4.0 [1] (🚴🏾‍♂️) 1F6B4 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman biking: dark skin tone # E4.0 [1] (🚴🏿‍♀️) 1F6B4 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man biking: dark skin tone # E4.0 [1] (🚴🏿‍♂️) 1F6B5 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking # E4.0 [1] (🚵‍♀️) 1F6B5 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking # E4.0 [1] (🚵‍♂️) 1F6B5 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking: light skin tone # E4.0 [1] (🚵🏻‍♀️) 1F6B5 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking: light skin tone # E4.0 [1] (🚵🏻‍♂️) 1F6B5 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking: medium-light skin tone # E4.0 [1] (🚵🏼‍♀️) 1F6B5 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking: medium-light skin tone # E4.0 [1] (🚵🏼‍♂️) 1F6B5 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking: medium skin tone # E4.0 [1] (🚵🏽‍♀️) 1F6B5 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking: medium skin tone # E4.0 [1] (🚵🏽‍♂️) 1F6B5 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking: medium-dark skin tone # E4.0 [1] (🚵🏾‍♀️) 1F6B5 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking: medium-dark skin tone # E4.0 [1] (🚵🏾‍♂️) 1F6B5 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mountain biking: dark skin tone # E4.0 [1] (🚵🏿‍♀️) 1F6B5 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mountain biking: dark skin tone # E4.0 [1] (🚵🏿‍♂️) 1F6B6 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking # E4.0 [1] (🚶‍♀️) 1F6B6 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking # E4.0 [1] (🚶‍♂️) 1F6B6 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking: light skin tone # E4.0 [1] (🚶🏻‍♀️) 1F6B6 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking: light skin tone # E4.0 [1] (🚶🏻‍♂️) 1F6B6 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking: medium-light skin tone # E4.0 [1] (🚶🏼‍♀️) 1F6B6 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking: medium-light skin tone # E4.0 [1] (🚶🏼‍♂️) 1F6B6 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking: medium skin tone # E4.0 [1] (🚶🏽‍♀️) 1F6B6 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking: medium skin tone # E4.0 [1] (🚶🏽‍♂️) 1F6B6 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking: medium-dark skin tone # E4.0 [1] (🚶🏾‍♀️) 1F6B6 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking: medium-dark skin tone # E4.0 [1] (🚶🏾‍♂️) 1F6B6 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman walking: dark skin tone # E4.0 [1] (🚶🏿‍♀️) 1F6B6 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man walking: dark skin tone # E4.0 [1] (🚶🏿‍♂️) 1F926 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming # E4.0 [1] (🤦‍♀️) 1F926 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming # E4.0 [1] (🤦‍♂️) 1F926 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming: light skin tone # E4.0 [1] (🤦🏻‍♀️) 1F926 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming: light skin tone # E4.0 [1] (🤦🏻‍♂️) 1F926 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming: medium-light skin tone # E4.0 [1] (🤦🏼‍♀️) 1F926 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming: medium-light skin tone # E4.0 [1] (🤦🏼‍♂️) 1F926 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming: medium skin tone # E4.0 [1] (🤦🏽‍♀️) 1F926 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming: medium skin tone # E4.0 [1] (🤦🏽‍♂️) 1F926 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming: medium-dark skin tone # E4.0 [1] (🤦🏾‍♀️) 1F926 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming: medium-dark skin tone # E4.0 [1] (🤦🏾‍♂️) 1F926 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman facepalming: dark skin tone # E4.0 [1] (🤦🏿‍♀️) 1F926 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man facepalming: dark skin tone # E4.0 [1] (🤦🏿‍♂️) 1F935 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo # E13.0 [1] (🤵‍♀️) 1F935 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo # E13.0 [1] (🤵‍♂️) 1F935 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo: light skin tone # E13.0 [1] (🤵🏻‍♀️) 1F935 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo: light skin tone # E13.0 [1] (🤵🏻‍♂️) 1F935 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo: medium-light skin tone # E13.0 [1] (🤵🏼‍♀️) 1F935 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo: medium-light skin tone # E13.0 [1] (🤵🏼‍♂️) 1F935 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo: medium skin tone # E13.0 [1] (🤵🏽‍♀️) 1F935 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo: medium skin tone # E13.0 [1] (🤵🏽‍♂️) 1F935 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo: medium-dark skin tone # E13.0 [1] (🤵🏾‍♀️) 1F935 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo: medium-dark skin tone # E13.0 [1] (🤵🏾‍♂️) 1F935 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in tuxedo: dark skin tone # E13.0 [1] (🤵🏿‍♀️) 1F935 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in tuxedo: dark skin tone # E13.0 [1] (🤵🏿‍♂️) 1F937 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging # E4.0 [1] (🤷‍♀️) 1F937 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging # E4.0 [1] (🤷‍♂️) 1F937 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging: light skin tone # E4.0 [1] (🤷🏻‍♀️) 1F937 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging: light skin tone # E4.0 [1] (🤷🏻‍♂️) 1F937 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging: medium-light skin tone # E4.0 [1] (🤷🏼‍♀️) 1F937 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging: medium-light skin tone # E4.0 [1] (🤷🏼‍♂️) 1F937 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging: medium skin tone # E4.0 [1] (🤷🏽‍♀️) 1F937 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging: medium skin tone # E4.0 [1] (🤷🏽‍♂️) 1F937 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging: medium-dark skin tone # E4.0 [1] (🤷🏾‍♀️) 1F937 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging: medium-dark skin tone # E4.0 [1] (🤷🏾‍♂️) 1F937 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman shrugging: dark skin tone # E4.0 [1] (🤷🏿‍♀️) 1F937 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man shrugging: dark skin tone # E4.0 [1] (🤷🏿‍♂️) 1F938 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling # E4.0 [1] (🤸‍♀️) 1F938 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling # E4.0 [1] (🤸‍♂️) 1F938 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling: light skin tone # E4.0 [1] (🤸🏻‍♀️) 1F938 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling: light skin tone # E4.0 [1] (🤸🏻‍♂️) 1F938 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling: medium-light skin tone # E4.0 [1] (🤸🏼‍♀️) 1F938 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling: medium-light skin tone # E4.0 [1] (🤸🏼‍♂️) 1F938 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling: medium skin tone # E4.0 [1] (🤸🏽‍♀️) 1F938 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling: medium skin tone # E4.0 [1] (🤸🏽‍♂️) 1F938 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling: medium-dark skin tone # E4.0 [1] (🤸🏾‍♀️) 1F938 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling: medium-dark skin tone # E4.0 [1] (🤸🏾‍♂️) 1F938 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman cartwheeling: dark skin tone # E4.0 [1] (🤸🏿‍♀️) 1F938 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man cartwheeling: dark skin tone # E4.0 [1] (🤸🏿‍♂️) 1F939 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling # E4.0 [1] (🤹‍♀️) 1F939 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling # E4.0 [1] (🤹‍♂️) 1F939 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling: light skin tone # E4.0 [1] (🤹🏻‍♀️) 1F939 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling: light skin tone # E4.0 [1] (🤹🏻‍♂️) 1F939 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling: medium-light skin tone # E4.0 [1] (🤹🏼‍♀️) 1F939 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling: medium-light skin tone # E4.0 [1] (🤹🏼‍♂️) 1F939 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling: medium skin tone # E4.0 [1] (🤹🏽‍♀️) 1F939 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling: medium skin tone # E4.0 [1] (🤹🏽‍♂️) 1F939 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling: medium-dark skin tone # E4.0 [1] (🤹🏾‍♀️) 1F939 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling: medium-dark skin tone # E4.0 [1] (🤹🏾‍♂️) 1F939 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman juggling: dark skin tone # E4.0 [1] (🤹🏿‍♀️) 1F939 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man juggling: dark skin tone # E4.0 [1] (🤹🏿‍♂️) 1F93C 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; women wrestling # E4.0 [1] (🤼‍♀️) 1F93C 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; men wrestling # E4.0 [1] (🤼‍♂️) 1F93D 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo # E4.0 [1] (🤽‍♀️) 1F93D 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo # E4.0 [1] (🤽‍♂️) 1F93D 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo: light skin tone # E4.0 [1] (🤽🏻‍♀️) 1F93D 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo: light skin tone # E4.0 [1] (🤽🏻‍♂️) 1F93D 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo: medium-light skin tone # E4.0 [1] (🤽🏼‍♀️) 1F93D 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo: medium-light skin tone # E4.0 [1] (🤽🏼‍♂️) 1F93D 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo: medium skin tone # E4.0 [1] (🤽🏽‍♀️) 1F93D 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo: medium skin tone # E4.0 [1] (🤽🏽‍♂️) 1F93D 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo: medium-dark skin tone # E4.0 [1] (🤽🏾‍♀️) 1F93D 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo: medium-dark skin tone # E4.0 [1] (🤽🏾‍♂️) 1F93D 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing water polo: dark skin tone # E4.0 [1] (🤽🏿‍♀️) 1F93D 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing water polo: dark skin tone # E4.0 [1] (🤽🏿‍♂️) 1F93E 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball # E4.0 [1] (🤾‍♀️) 1F93E 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball # E4.0 [1] (🤾‍♂️) 1F93E 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball: light skin tone # E4.0 [1] (🤾🏻‍♀️) 1F93E 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball: light skin tone # E4.0 [1] (🤾🏻‍♂️) 1F93E 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball: medium-light skin tone # E4.0 [1] (🤾🏼‍♀️) 1F93E 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball: medium-light skin tone # E4.0 [1] (🤾🏼‍♂️) 1F93E 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball: medium skin tone # E4.0 [1] (🤾🏽‍♀️) 1F93E 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball: medium skin tone # E4.0 [1] (🤾🏽‍♂️) 1F93E 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball: medium-dark skin tone # E4.0 [1] (🤾🏾‍♀️) 1F93E 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball: medium-dark skin tone # E4.0 [1] (🤾🏾‍♂️) 1F93E 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman playing handball: dark skin tone # E4.0 [1] (🤾🏿‍♀️) 1F93E 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man playing handball: dark skin tone # E4.0 [1] (🤾🏿‍♂️) 1F9B8 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero # E11.0 [1] (🦸‍♀️) 1F9B8 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero # E11.0 [1] (🦸‍♂️) 1F9B8 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero: light skin tone # E11.0 [1] (🦸🏻‍♀️) 1F9B8 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero: light skin tone # E11.0 [1] (🦸🏻‍♂️) 1F9B8 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero: medium-light skin tone # E11.0 [1] (🦸🏼‍♀️) 1F9B8 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero: medium-light skin tone # E11.0 [1] (🦸🏼‍♂️) 1F9B8 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero: medium skin tone # E11.0 [1] (🦸🏽‍♀️) 1F9B8 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero: medium skin tone # E11.0 [1] (🦸🏽‍♂️) 1F9B8 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero: medium-dark skin tone # E11.0 [1] (🦸🏾‍♀️) 1F9B8 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero: medium-dark skin tone # E11.0 [1] (🦸🏾‍♂️) 1F9B8 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman superhero: dark skin tone # E11.0 [1] (🦸🏿‍♀️) 1F9B8 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man superhero: dark skin tone # E11.0 [1] (🦸🏿‍♂️) 1F9B9 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain # E11.0 [1] (🦹‍♀️) 1F9B9 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain # E11.0 [1] (🦹‍♂️) 1F9B9 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain: light skin tone # E11.0 [1] (🦹🏻‍♀️) 1F9B9 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain: light skin tone # E11.0 [1] (🦹🏻‍♂️) 1F9B9 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain: medium-light skin tone # E11.0 [1] (🦹🏼‍♀️) 1F9B9 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain: medium-light skin tone # E11.0 [1] (🦹🏼‍♂️) 1F9B9 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain: medium skin tone # E11.0 [1] (🦹🏽‍♀️) 1F9B9 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain: medium skin tone # E11.0 [1] (🦹🏽‍♂️) 1F9B9 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain: medium-dark skin tone # E11.0 [1] (🦹🏾‍♀️) 1F9B9 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain: medium-dark skin tone # E11.0 [1] (🦹🏾‍♂️) 1F9B9 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman supervillain: dark skin tone # E11.0 [1] (🦹🏿‍♀️) 1F9B9 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man supervillain: dark skin tone # E11.0 [1] (🦹🏿‍♂️) 1F9CD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing # E12.0 [1] (🧍‍♀️) 1F9CD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing # E12.0 [1] (🧍‍♂️) 1F9CD 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing: light skin tone # E12.0 [1] (🧍🏻‍♀️) 1F9CD 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing: light skin tone # E12.0 [1] (🧍🏻‍♂️) 1F9CD 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing: medium-light skin tone # E12.0 [1] (🧍🏼‍♀️) 1F9CD 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing: medium-light skin tone # E12.0 [1] (🧍🏼‍♂️) 1F9CD 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing: medium skin tone # E12.0 [1] (🧍🏽‍♀️) 1F9CD 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing: medium skin tone # E12.0 [1] (🧍🏽‍♂️) 1F9CD 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing: medium-dark skin tone # E12.0 [1] (🧍🏾‍♀️) 1F9CD 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing: medium-dark skin tone # E12.0 [1] (🧍🏾‍♂️) 1F9CD 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman standing: dark skin tone # E12.0 [1] (🧍🏿‍♀️) 1F9CD 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man standing: dark skin tone # E12.0 [1] (🧍🏿‍♂️) 1F9CE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling # E12.0 [1] (🧎‍♀️) 1F9CE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling # E12.0 [1] (🧎‍♂️) 1F9CE 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling: light skin tone # E12.0 [1] (🧎🏻‍♀️) 1F9CE 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling: light skin tone # E12.0 [1] (🧎🏻‍♂️) 1F9CE 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling: medium-light skin tone # E12.0 [1] (🧎🏼‍♀️) 1F9CE 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling: medium-light skin tone # E12.0 [1] (🧎🏼‍♂️) 1F9CE 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling: medium skin tone # E12.0 [1] (🧎🏽‍♀️) 1F9CE 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling: medium skin tone # E12.0 [1] (🧎🏽‍♂️) 1F9CE 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling: medium-dark skin tone # E12.0 [1] (🧎🏾‍♀️) 1F9CE 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling: medium-dark skin tone # E12.0 [1] (🧎🏾‍♂️) 1F9CE 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman kneeling: dark skin tone # E12.0 [1] (🧎🏿‍♀️) 1F9CE 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man kneeling: dark skin tone # E12.0 [1] (🧎🏿‍♂️) 1F9CF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman # E12.0 [1] (🧏‍♀️) 1F9CF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man # E12.0 [1] (🧏‍♂️) 1F9CF 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman: light skin tone # E12.0 [1] (🧏🏻‍♀️) 1F9CF 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man: light skin tone # E12.0 [1] (🧏🏻‍♂️) 1F9CF 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman: medium-light skin tone # E12.0 [1] (🧏🏼‍♀️) 1F9CF 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man: medium-light skin tone # E12.0 [1] (🧏🏼‍♂️) 1F9CF 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman: medium skin tone # E12.0 [1] (🧏🏽‍♀️) 1F9CF 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man: medium skin tone # E12.0 [1] (🧏🏽‍♂️) 1F9CF 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman: medium-dark skin tone # E12.0 [1] (🧏🏾‍♀️) 1F9CF 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man: medium-dark skin tone # E12.0 [1] (🧏🏾‍♂️) 1F9CF 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf woman: dark skin tone # E12.0 [1] (🧏🏿‍♀️) 1F9CF 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; deaf man: dark skin tone # E12.0 [1] (🧏🏿‍♂️) 1F9D4 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: beard # E13.1 [1] (🧔‍♀️) 1F9D4 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: beard # E13.1 [1] (🧔‍♂️) 1F9D4 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, beard # E13.1 [1] (🧔🏻‍♀️) 1F9D4 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, beard # E13.1 [1] (🧔🏻‍♂️) 1F9D4 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, beard # E13.1 [1] (🧔🏼‍♀️) 1F9D4 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, beard # E13.1 [1] (🧔🏼‍♂️) 1F9D4 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, beard # E13.1 [1] (🧔🏽‍♀️) 1F9D4 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, beard # E13.1 [1] (🧔🏽‍♂️) 1F9D4 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, beard # E13.1 [1] (🧔🏾‍♀️) 1F9D4 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, beard # E13.1 [1] (🧔🏾‍♂️) 1F9D4 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, beard # E13.1 [1] (🧔🏿‍♀️) 1F9D4 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, beard # E13.1 [1] (🧔🏿‍♂️) 1F9D6 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room # E5.0 [1] (🧖‍♀️) 1F9D6 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room # E5.0 [1] (🧖‍♂️) 1F9D6 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room: light skin tone # E5.0 [1] (🧖🏻‍♀️) 1F9D6 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room: light skin tone # E5.0 [1] (🧖🏻‍♂️) 1F9D6 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room: medium-light skin tone # E5.0 [1] (🧖🏼‍♀️) 1F9D6 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room: medium-light skin tone # E5.0 [1] (🧖🏼‍♂️) 1F9D6 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room: medium skin tone # E5.0 [1] (🧖🏽‍♀️) 1F9D6 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room: medium skin tone # E5.0 [1] (🧖🏽‍♂️) 1F9D6 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room: medium-dark skin tone # E5.0 [1] (🧖🏾‍♀️) 1F9D6 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room: medium-dark skin tone # E5.0 [1] (🧖🏾‍♂️) 1F9D6 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in steamy room: dark skin tone # E5.0 [1] (🧖🏿‍♀️) 1F9D6 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in steamy room: dark skin tone # E5.0 [1] (🧖🏿‍♂️) 1F9D7 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing # E5.0 [1] (🧗‍♀️) 1F9D7 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing # E5.0 [1] (🧗‍♂️) 1F9D7 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing: light skin tone # E5.0 [1] (🧗🏻‍♀️) 1F9D7 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing: light skin tone # E5.0 [1] (🧗🏻‍♂️) 1F9D7 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing: medium-light skin tone # E5.0 [1] (🧗🏼‍♀️) 1F9D7 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing: medium-light skin tone # E5.0 [1] (🧗🏼‍♂️) 1F9D7 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing: medium skin tone # E5.0 [1] (🧗🏽‍♀️) 1F9D7 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing: medium skin tone # E5.0 [1] (🧗🏽‍♂️) 1F9D7 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing: medium-dark skin tone # E5.0 [1] (🧗🏾‍♀️) 1F9D7 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing: medium-dark skin tone # E5.0 [1] (🧗🏾‍♂️) 1F9D7 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman climbing: dark skin tone # E5.0 [1] (🧗🏿‍♀️) 1F9D7 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man climbing: dark skin tone # E5.0 [1] (🧗🏿‍♂️) 1F9D8 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position # E5.0 [1] (🧘‍♀️) 1F9D8 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position # E5.0 [1] (🧘‍♂️) 1F9D8 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position: light skin tone # E5.0 [1] (🧘🏻‍♀️) 1F9D8 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position: light skin tone # E5.0 [1] (🧘🏻‍♂️) 1F9D8 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position: medium-light skin tone # E5.0 [1] (🧘🏼‍♀️) 1F9D8 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position: medium-light skin tone # E5.0 [1] (🧘🏼‍♂️) 1F9D8 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position: medium skin tone # E5.0 [1] (🧘🏽‍♀️) 1F9D8 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position: medium skin tone # E5.0 [1] (🧘🏽‍♂️) 1F9D8 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position: medium-dark skin tone # E5.0 [1] (🧘🏾‍♀️) 1F9D8 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position: medium-dark skin tone # E5.0 [1] (🧘🏾‍♂️) 1F9D8 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman in lotus position: dark skin tone # E5.0 [1] (🧘🏿‍♀️) 1F9D8 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man in lotus position: dark skin tone # E5.0 [1] (🧘🏿‍♂️) 1F9D9 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage # E5.0 [1] (🧙‍♀️) 1F9D9 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage # E5.0 [1] (🧙‍♂️) 1F9D9 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage: light skin tone # E5.0 [1] (🧙🏻‍♀️) 1F9D9 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage: light skin tone # E5.0 [1] (🧙🏻‍♂️) 1F9D9 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage: medium-light skin tone # E5.0 [1] (🧙🏼‍♀️) 1F9D9 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage: medium-light skin tone # E5.0 [1] (🧙🏼‍♂️) 1F9D9 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage: medium skin tone # E5.0 [1] (🧙🏽‍♀️) 1F9D9 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage: medium skin tone # E5.0 [1] (🧙🏽‍♂️) 1F9D9 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage: medium-dark skin tone # E5.0 [1] (🧙🏾‍♀️) 1F9D9 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage: medium-dark skin tone # E5.0 [1] (🧙🏾‍♂️) 1F9D9 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman mage: dark skin tone # E5.0 [1] (🧙🏿‍♀️) 1F9D9 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man mage: dark skin tone # E5.0 [1] (🧙🏿‍♂️) 1F9DA 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy # E5.0 [1] (🧚‍♀️) 1F9DA 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy # E5.0 [1] (🧚‍♂️) 1F9DA 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy: light skin tone # E5.0 [1] (🧚🏻‍♀️) 1F9DA 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy: light skin tone # E5.0 [1] (🧚🏻‍♂️) 1F9DA 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy: medium-light skin tone # E5.0 [1] (🧚🏼‍♀️) 1F9DA 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy: medium-light skin tone # E5.0 [1] (🧚🏼‍♂️) 1F9DA 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy: medium skin tone # E5.0 [1] (🧚🏽‍♀️) 1F9DA 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy: medium skin tone # E5.0 [1] (🧚🏽‍♂️) 1F9DA 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy: medium-dark skin tone # E5.0 [1] (🧚🏾‍♀️) 1F9DA 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy: medium-dark skin tone # E5.0 [1] (🧚🏾‍♂️) 1F9DA 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman fairy: dark skin tone # E5.0 [1] (🧚🏿‍♀️) 1F9DA 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man fairy: dark skin tone # E5.0 [1] (🧚🏿‍♂️) 1F9DB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire # E5.0 [1] (🧛‍♀️) 1F9DB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire # E5.0 [1] (🧛‍♂️) 1F9DB 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire: light skin tone # E5.0 [1] (🧛🏻‍♀️) 1F9DB 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire: light skin tone # E5.0 [1] (🧛🏻‍♂️) 1F9DB 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire: medium-light skin tone # E5.0 [1] (🧛🏼‍♀️) 1F9DB 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire: medium-light skin tone # E5.0 [1] (🧛🏼‍♂️) 1F9DB 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire: medium skin tone # E5.0 [1] (🧛🏽‍♀️) 1F9DB 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire: medium skin tone # E5.0 [1] (🧛🏽‍♂️) 1F9DB 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire: medium-dark skin tone # E5.0 [1] (🧛🏾‍♀️) 1F9DB 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire: medium-dark skin tone # E5.0 [1] (🧛🏾‍♂️) 1F9DB 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman vampire: dark skin tone # E5.0 [1] (🧛🏿‍♀️) 1F9DB 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man vampire: dark skin tone # E5.0 [1] (🧛🏿‍♂️) 1F9DC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid # E5.0 [1] (🧜‍♀️) 1F9DC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman # E5.0 [1] (🧜‍♂️) 1F9DC 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid: light skin tone # E5.0 [1] (🧜🏻‍♀️) 1F9DC 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman: light skin tone # E5.0 [1] (🧜🏻‍♂️) 1F9DC 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid: medium-light skin tone # E5.0 [1] (🧜🏼‍♀️) 1F9DC 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman: medium-light skin tone # E5.0 [1] (🧜🏼‍♂️) 1F9DC 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid: medium skin tone # E5.0 [1] (🧜🏽‍♀️) 1F9DC 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman: medium skin tone # E5.0 [1] (🧜🏽‍♂️) 1F9DC 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid: medium-dark skin tone # E5.0 [1] (🧜🏾‍♀️) 1F9DC 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman: medium-dark skin tone # E5.0 [1] (🧜🏾‍♂️) 1F9DC 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; mermaid: dark skin tone # E5.0 [1] (🧜🏿‍♀️) 1F9DC 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; merman: dark skin tone # E5.0 [1] (🧜🏿‍♂️) 1F9DD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf # E5.0 [1] (🧝‍♀️) 1F9DD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf # E5.0 [1] (🧝‍♂️) 1F9DD 1F3FB 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf: light skin tone # E5.0 [1] (🧝🏻‍♀️) 1F9DD 1F3FB 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf: light skin tone # E5.0 [1] (🧝🏻‍♂️) 1F9DD 1F3FC 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf: medium-light skin tone # E5.0 [1] (🧝🏼‍♀️) 1F9DD 1F3FC 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf: medium-light skin tone # E5.0 [1] (🧝🏼‍♂️) 1F9DD 1F3FD 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf: medium skin tone # E5.0 [1] (🧝🏽‍♀️) 1F9DD 1F3FD 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf: medium skin tone # E5.0 [1] (🧝🏽‍♂️) 1F9DD 1F3FE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf: medium-dark skin tone # E5.0 [1] (🧝🏾‍♀️) 1F9DD 1F3FE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf: medium-dark skin tone # E5.0 [1] (🧝🏾‍♂️) 1F9DD 1F3FF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman elf: dark skin tone # E5.0 [1] (🧝🏿‍♀️) 1F9DD 1F3FF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man elf: dark skin tone # E5.0 [1] (🧝🏿‍♂️) 1F9DE 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman genie # E5.0 [1] (🧞‍♀️) 1F9DE 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man genie # E5.0 [1] (🧞‍♂️) 1F9DF 200D 2640 FE0F ; RGI_Emoji_ZWJ_Sequence ; woman zombie # E5.0 [1] (🧟‍♀️) 1F9DF 200D 2642 FE0F ; RGI_Emoji_ZWJ_Sequence ; man zombie # E5.0 [1] (🧟‍♂️) # Total elements: 572 # ================================================ # RGI_Emoji_ZWJ_Sequence: Hair 1F468 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: red hair # E11.0 [1] (👨‍🦰) 1F468 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: curly hair # E11.0 [1] (👨‍🦱) 1F468 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: bald # E11.0 [1] (👨‍🦲) 1F468 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: white hair # E11.0 [1] (👨‍🦳) 1F468 1F3FB 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, red hair # E11.0 [1] (👨🏻‍🦰) 1F468 1F3FB 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, curly hair # E11.0 [1] (👨🏻‍🦱) 1F468 1F3FB 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, bald # E11.0 [1] (👨🏻‍🦲) 1F468 1F3FB 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: light skin tone, white hair # E11.0 [1] (👨🏻‍🦳) 1F468 1F3FC 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, red hair # E11.0 [1] (👨🏼‍🦰) 1F468 1F3FC 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, curly hair # E11.0 [1] (👨🏼‍🦱) 1F468 1F3FC 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, bald # E11.0 [1] (👨🏼‍🦲) 1F468 1F3FC 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: medium-light skin tone, white hair # E11.0 [1] (👨🏼‍🦳) 1F468 1F3FD 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, red hair # E11.0 [1] (👨🏽‍🦰) 1F468 1F3FD 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, curly hair # E11.0 [1] (👨🏽‍🦱) 1F468 1F3FD 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, bald # E11.0 [1] (👨🏽‍🦲) 1F468 1F3FD 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: medium skin tone, white hair # E11.0 [1] (👨🏽‍🦳) 1F468 1F3FE 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, red hair # E11.0 [1] (👨🏾‍🦰) 1F468 1F3FE 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, curly hair # E11.0 [1] (👨🏾‍🦱) 1F468 1F3FE 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, bald # E11.0 [1] (👨🏾‍🦲) 1F468 1F3FE 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: medium-dark skin tone, white hair # E11.0 [1] (👨🏾‍🦳) 1F468 1F3FF 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, red hair # E11.0 [1] (👨🏿‍🦰) 1F468 1F3FF 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, curly hair # E11.0 [1] (👨🏿‍🦱) 1F468 1F3FF 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, bald # E11.0 [1] (👨🏿‍🦲) 1F468 1F3FF 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; man: dark skin tone, white hair # E11.0 [1] (👨🏿‍🦳) 1F469 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: red hair # E11.0 [1] (👩‍🦰) 1F469 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: curly hair # E11.0 [1] (👩‍🦱) 1F469 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: bald # E11.0 [1] (👩‍🦲) 1F469 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: white hair # E11.0 [1] (👩‍🦳) 1F469 1F3FB 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, red hair # E11.0 [1] (👩🏻‍🦰) 1F469 1F3FB 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, curly hair # E11.0 [1] (👩🏻‍🦱) 1F469 1F3FB 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, bald # E11.0 [1] (👩🏻‍🦲) 1F469 1F3FB 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: light skin tone, white hair # E11.0 [1] (👩🏻‍🦳) 1F469 1F3FC 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, red hair # E11.0 [1] (👩🏼‍🦰) 1F469 1F3FC 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, curly hair # E11.0 [1] (👩🏼‍🦱) 1F469 1F3FC 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, bald # E11.0 [1] (👩🏼‍🦲) 1F469 1F3FC 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-light skin tone, white hair # E11.0 [1] (👩🏼‍🦳) 1F469 1F3FD 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, red hair # E11.0 [1] (👩🏽‍🦰) 1F469 1F3FD 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, curly hair # E11.0 [1] (👩🏽‍🦱) 1F469 1F3FD 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, bald # E11.0 [1] (👩🏽‍🦲) 1F469 1F3FD 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: medium skin tone, white hair # E11.0 [1] (👩🏽‍🦳) 1F469 1F3FE 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, red hair # E11.0 [1] (👩🏾‍🦰) 1F469 1F3FE 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, curly hair # E11.0 [1] (👩🏾‍🦱) 1F469 1F3FE 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, bald # E11.0 [1] (👩🏾‍🦲) 1F469 1F3FE 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: medium-dark skin tone, white hair # E11.0 [1] (👩🏾‍🦳) 1F469 1F3FF 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, red hair # E11.0 [1] (👩🏿‍🦰) 1F469 1F3FF 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, curly hair # E11.0 [1] (👩🏿‍🦱) 1F469 1F3FF 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, bald # E11.0 [1] (👩🏿‍🦲) 1F469 1F3FF 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; woman: dark skin tone, white hair # E11.0 [1] (👩🏿‍🦳) 1F9D1 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: red hair # E12.1 [1] (🧑‍🦰) 1F9D1 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: curly hair # E12.1 [1] (🧑‍🦱) 1F9D1 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: bald # E12.1 [1] (🧑‍🦲) 1F9D1 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: white hair # E12.1 [1] (🧑‍🦳) 1F9D1 1F3FB 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: light skin tone, red hair # E12.1 [1] (🧑🏻‍🦰) 1F9D1 1F3FB 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: light skin tone, curly hair # E12.1 [1] (🧑🏻‍🦱) 1F9D1 1F3FB 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: light skin tone, bald # E12.1 [1] (🧑🏻‍🦲) 1F9D1 1F3FB 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: light skin tone, white hair # E12.1 [1] (🧑🏻‍🦳) 1F9D1 1F3FC 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: medium-light skin tone, red hair # E12.1 [1] (🧑🏼‍🦰) 1F9D1 1F3FC 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: medium-light skin tone, curly hair # E12.1 [1] (🧑🏼‍🦱) 1F9D1 1F3FC 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: medium-light skin tone, bald # E12.1 [1] (🧑🏼‍🦲) 1F9D1 1F3FC 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: medium-light skin tone, white hair # E12.1 [1] (🧑🏼‍🦳) 1F9D1 1F3FD 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: medium skin tone, red hair # E12.1 [1] (🧑🏽‍🦰) 1F9D1 1F3FD 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: medium skin tone, curly hair # E12.1 [1] (🧑🏽‍🦱) 1F9D1 1F3FD 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: medium skin tone, bald # E12.1 [1] (🧑🏽‍🦲) 1F9D1 1F3FD 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: medium skin tone, white hair # E12.1 [1] (🧑🏽‍🦳) 1F9D1 1F3FE 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: medium-dark skin tone, red hair # E12.1 [1] (🧑🏾‍🦰) 1F9D1 1F3FE 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: medium-dark skin tone, curly hair # E12.1 [1] (🧑🏾‍🦱) 1F9D1 1F3FE 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: medium-dark skin tone, bald # E12.1 [1] (🧑🏾‍🦲) 1F9D1 1F3FE 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: medium-dark skin tone, white hair # E12.1 [1] (🧑🏾‍🦳) 1F9D1 1F3FF 200D 1F9B0 ; RGI_Emoji_ZWJ_Sequence ; person: dark skin tone, red hair # E12.1 [1] (🧑🏿‍🦰) 1F9D1 1F3FF 200D 1F9B1 ; RGI_Emoji_ZWJ_Sequence ; person: dark skin tone, curly hair # E12.1 [1] (🧑🏿‍🦱) 1F9D1 1F3FF 200D 1F9B2 ; RGI_Emoji_ZWJ_Sequence ; person: dark skin tone, bald # E12.1 [1] (🧑🏿‍🦲) 1F9D1 1F3FF 200D 1F9B3 ; RGI_Emoji_ZWJ_Sequence ; person: dark skin tone, white hair # E12.1 [1] (🧑🏿‍🦳) # Total elements: 72 # ================================================ # RGI_Emoji_ZWJ_Sequence: Other 2764 FE0F 200D 1F525 ; RGI_Emoji_ZWJ_Sequence ; heart on fire # E13.1 [1] (❤️‍🔥) 2764 FE0F 200D 1FA79 ; RGI_Emoji_ZWJ_Sequence ; mending heart # E13.1 [1] (❤️‍🩹) 1F3F3 FE0F 200D 26A7 FE0F ; RGI_Emoji_ZWJ_Sequence ; transgender flag # E13.0 [1] (🏳️‍⚧️) 1F3F3 FE0F 200D 1F308 ; RGI_Emoji_ZWJ_Sequence ; rainbow flag # E4.0 [1] (🏳️‍🌈) 1F3F4 200D 2620 FE0F ; RGI_Emoji_ZWJ_Sequence ; pirate flag # E11.0 [1] (🏴‍☠️) 1F408 200D 2B1B ; RGI_Emoji_ZWJ_Sequence ; black cat # E13.0 [1] (🐈‍⬛) 1F415 200D 1F9BA ; RGI_Emoji_ZWJ_Sequence ; service dog # E12.0 [1] (🐕‍🦺) 1F43B 200D 2744 FE0F ; RGI_Emoji_ZWJ_Sequence ; polar bear # E13.0 [1] (🐻‍❄️) 1F441 FE0F 200D 1F5E8 FE0F ; RGI_Emoji_ZWJ_Sequence ; eye in speech bubble # E2.0 [1] (👁️‍🗨️) 1F62E 200D 1F4A8 ; RGI_Emoji_ZWJ_Sequence ; face exhaling # E13.1 [1] (😮‍💨) 1F635 200D 1F4AB ; RGI_Emoji_ZWJ_Sequence ; face with spiral eyes # E13.1 [1] (😵‍💫) 1F636 200D 1F32B FE0F ; RGI_Emoji_ZWJ_Sequence ; face in clouds # E13.1 [1] (😶‍🌫️) 1F9D1 200D 1F384 ; RGI_Emoji_ZWJ_Sequence ; mx claus # E13.0 [1] (🧑‍🎄) # Total elements: 13 #EOF tanuki_emoji-0.9.0/vendor/unicode/emoji-ordering.txt0000644000004100000410000100267414545323276022651 0ustar www-datawww-data# From https://unicode.org/emoji/charts/emoji-ordering.txt # Accessed 2023-10-08 # Also see https://unicode.org/emoji/charts/emoji-ordering.html # Entries following a line that says "added" were not present in the file at # time of access # # Machine-readable version of the emoji ordering for v15.1 (corresponding to CLDR). # Note that the skin-tone modifiers are primary-ignorable in the CLDR collation rules. # For a listing with the groups and subgroups, and the non-qualified sequences, # see https://unicode.org/Public/emoji/15.1/emoji-test.txt U+1F600 ; 1.0 # 😀 grinning face U+1F603 ; 0.6 # 😃 grinning face with big eyes U+1F604 ; 0.6 # 😄 grinning face with smiling eyes U+1F601 ; 0.6 # 😁 beaming face with smiling eyes U+1F606 ; 0.6 # 😆 grinning squinting face U+1F605 ; 0.6 # 😅 grinning face with sweat U+1F923 ; 3.0 # 🤣 rolling on the floor laughing U+1F602 ; 0.6 # 😂 face with tears of joy U+1F642 ; 1.0 # 🙂 slightly smiling face U+1F643 ; 1.0 # 🙃 upside-down face U+1FAE0 ; 14.0 # 🫠 melting face U+1F609 ; 0.6 # 😉 winking face U+1F60A ; 0.6 # 😊 smiling face with smiling eyes U+1F607 ; 1.0 # 😇 smiling face with halo U+1F970 ; 11.0 # 🥰 smiling face with hearts U+1F60D ; 0.6 # 😍 smiling face with heart-eyes U+1F929 ; 5.0 # 🤩 star-struck U+1F618 ; 0.6 # 😘 face blowing a kiss U+1F617 ; 1.0 # 😗 kissing face U+263A ; 0.6 # ☺ smiling face U+1F61A ; 0.6 # 😚 kissing face with closed eyes U+1F619 ; 1.0 # 😙 kissing face with smiling eyes U+1F972 ; 13.0 # 🥲 smiling face with tear U+1F60B ; 0.6 # 😋 face savoring food U+1F61B ; 1.0 # 😛 face with tongue U+1F61C ; 0.6 # 😜 winking face with tongue U+1F92A ; 5.0 # 🤪 zany face U+1F61D ; 0.6 # 😝 squinting face with tongue U+1F911 ; 1.0 # 🤑 money-mouth face U+1F917 ; 1.0 # 🤗 smiling face with open hands U+1F92D ; 5.0 # 🤭 face with hand over mouth U+1FAE2 ; 14.0 # 🫢 face with open eyes and hand over mouth U+1FAE3 ; 14.0 # 🫣 face with peeking eye U+1F92B ; 5.0 # 🤫 shushing face U+1F914 ; 1.0 # 🤔 thinking face U+1FAE1 ; 14.0 # 🫡 saluting face U+1F910 ; 1.0 # 🤐 zipper-mouth face U+1F928 ; 5.0 # 🤨 face with raised eyebrow U+1F610 ; 0.7 # 😐 neutral face U+1F611 ; 1.0 # 😑 expressionless face U+1F636 ; 1.0 # 😶 face without mouth U+1FAE5 ; 14.0 # 🫥 dotted line face U+1F636 U+200D U+1F32B U+FE0F ; 13.1 # 😶‍🌫️ face in clouds U+1F60F ; 0.6 # 😏 smirking face U+1F612 ; 0.6 # 😒 unamused face U+1F644 ; 1.0 # 🙄 face with rolling eyes U+1F62C ; 1.0 # 😬 grimacing face U+1F62E U+200D U+1F4A8 ; 13.1 # 😮‍💨 face exhaling U+1F925 ; 3.0 # 🤥 lying face U+1FAE8 ; 15.0 # 🫨 shaking face U+1F642 U+200D U+2194 U+FE0F ; 15.1 # 🙂‍↔️ head shaking horizontally U+1F642 U+200D U+2195 U+FE0F ; 15.1 # 🙂‍↕️ head shaking vertically U+1F60C ; 0.6 # 😌 relieved face U+1F614 ; 0.6 # 😔 pensive face U+1F62A ; 0.6 # 😪 sleepy face U+1F924 ; 3.0 # 🤤 drooling face U+1F634 ; 1.0 # 😴 sleeping face U+1F637 ; 0.6 # 😷 face with medical mask U+1F912 ; 1.0 # 🤒 face with thermometer U+1F915 ; 1.0 # 🤕 face with head-bandage U+1F922 ; 3.0 # 🤢 nauseated face U+1F92E ; 5.0 # 🤮 face vomiting U+1F927 ; 3.0 # 🤧 sneezing face U+1F975 ; 11.0 # 🥵 hot face U+1F976 ; 11.0 # 🥶 cold face U+1F974 ; 11.0 # 🥴 woozy face U+1F635 ; 0.6 # 😵 face with crossed-out eyes U+1F635 U+200D U+1F4AB ; 13.1 # 😵‍💫 face with spiral eyes U+1F92F ; 5.0 # 🤯 exploding head U+1F920 ; 3.0 # 🤠 cowboy hat face U+1F973 ; 11.0 # 🥳 partying face U+1F978 ; 13.0 # 🥸 disguised face U+1F60E ; 1.0 # 😎 smiling face with sunglasses U+1F913 ; 1.0 # 🤓 nerd face U+1F9D0 ; 5.0 # 🧐 face with monocle U+1F615 ; 1.0 # 😕 confused face U+1FAE4 ; 14.0 # 🫤 face with diagonal mouth U+1F61F ; 1.0 # 😟 worried face U+1F641 ; 1.0 # 🙁 slightly frowning face U+2639 ; 0.7 # ☹ frowning face U+1F62E ; 1.0 # 😮 face with open mouth U+1F62F ; 1.0 # 😯 hushed face U+1F632 ; 0.6 # 😲 astonished face U+1F633 ; 0.6 # 😳 flushed face U+1F97A ; 11.0 # 🥺 pleading face U+1F979 ; 14.0 # 🥹 face holding back tears U+1F626 ; 1.0 # 😦 frowning face with open mouth U+1F627 ; 1.0 # 😧 anguished face U+1F628 ; 0.6 # 😨 fearful face U+1F630 ; 0.6 # 😰 anxious face with sweat U+1F625 ; 0.6 # 😥 sad but relieved face U+1F622 ; 0.6 # 😢 crying face U+1F62D ; 0.6 # 😭 loudly crying face U+1F631 ; 0.6 # 😱 face screaming in fear U+1F616 ; 0.6 # 😖 confounded face U+1F623 ; 0.6 # 😣 persevering face U+1F61E ; 0.6 # 😞 disappointed face U+1F613 ; 0.6 # 😓 downcast face with sweat U+1F629 ; 0.6 # 😩 weary face U+1F62B ; 0.6 # 😫 tired face U+1F971 ; 12.0 # 🥱 yawning face U+1F624 ; 0.6 # 😤 face with steam from nose U+1F621 ; 0.6 # 😡 enraged face U+1F620 ; 0.6 # 😠 angry face U+1F92C ; 5.0 # 🤬 face with symbols on mouth U+1F608 ; 1.0 # 😈 smiling face with horns U+1F47F ; 0.6 # 👿 angry face with horns U+1F480 ; 0.6 # 💀 skull U+2620 ; 1.0 # ☠ skull and crossbones U+1F4A9 ; 0.6 # 💩 pile of poo U+1F921 ; 3.0 # 🤡 clown face U+1F479 ; 0.6 # 👹 ogre U+1F47A ; 0.6 # 👺 goblin U+1F47B ; 0.6 # 👻 ghost U+1F47D ; 0.6 # 👽 alien U+1F47E ; 0.6 # 👾 alien monster U+1F916 ; 1.0 # 🤖 robot U+1F63A ; 0.6 # 😺 grinning cat U+1F638 ; 0.6 # 😸 grinning cat with smiling eyes U+1F639 ; 0.6 # 😹 cat with tears of joy U+1F63B ; 0.6 # 😻 smiling cat with heart-eyes U+1F63C ; 0.6 # 😼 cat with wry smile U+1F63D ; 0.6 # 😽 kissing cat U+1F640 ; 0.6 # 🙀 weary cat U+1F63F ; 0.6 # 😿 crying cat U+1F63E ; 0.6 # 😾 pouting cat U+1F648 ; 0.6 # 🙈 see-no-evil monkey U+1F649 ; 0.6 # 🙉 hear-no-evil monkey U+1F64A ; 0.6 # 🙊 speak-no-evil monkey U+1F48C ; 0.6 # 💌 love letter U+1F498 ; 0.6 # 💘 heart with arrow U+1F49D ; 0.6 # 💝 heart with ribbon U+1F496 ; 0.6 # 💖 sparkling heart U+1F497 ; 0.6 # 💗 growing heart U+1F493 ; 0.6 # 💓 beating heart U+1F49E ; 0.6 # 💞 revolving hearts U+1F495 ; 0.6 # 💕 two hearts U+1F49F ; 0.6 # 💟 heart decoration U+2763 ; 1.0 # ❣ heart exclamation U+1F494 ; 0.6 # 💔 broken heart U+2764 U+FE0F U+200D U+1F525 ; 13.1 # ❤️‍🔥 heart on fire U+2764 U+FE0F U+200D U+1FA79 ; 13.1 # ❤️‍🩹 mending heart U+2764 ; 0.6 # ❤ red heart U+1FA77 ; 15.0 # 🩷 pink heart U+1F9E1 ; 5.0 # 🧡 orange heart U+1F49B ; 0.6 # 💛 yellow heart U+1F49A ; 0.6 # 💚 green heart U+1F499 ; 0.6 # 💙 blue heart U+1FA75 ; 15.0 # 🩵 light blue heart U+1F49C ; 0.6 # 💜 purple heart U+1F90E ; 12.0 # 🤎 brown heart U+1F5A4 ; 3.0 # 🖤 black heart U+1FA76 ; 15.0 # 🩶 grey heart U+1F90D ; 12.0 # 🤍 white heart U+1F48B ; 0.6 # 💋 kiss mark U+1F4AF ; 0.6 # 💯 hundred points U+1F4A2 ; 0.6 # 💢 anger symbol U+1F4A5 ; 0.6 # 💥 collision U+1F4AB ; 0.6 # 💫 dizzy U+1F4A6 ; 0.6 # 💦 sweat droplets U+1F4A8 ; 0.6 # 💨 dashing away U+1F573 ; 0.7 # 🕳 hole U+1F4AC ; 0.6 # 💬 speech balloon # added U+1F441 U+200D U+1F5E8 ; 2.0 # 👁️‍🗨️ eye in speech bubble U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F ; 2.0 # 👁️‍🗨️ eye in speech bubble U+1F5E8 ; 2.0 # 🗨 left speech bubble U+1F5EF ; 0.7 # 🗯 right anger bubble U+1F4AD ; 1.0 # 💭 thought balloon U+1F4A4 ; 0.6 # 💤 ZZZ U+1F44B ; 0.6 # 👋 waving hand U+1F44B U+1F3FB ; 1.0 # 👋🏻 waving hand: light skin tone U+1F44B U+1F3FC ; 1.0 # 👋🏼 waving hand: medium-light skin tone U+1F44B U+1F3FD ; 1.0 # 👋🏽 waving hand: medium skin tone U+1F44B U+1F3FE ; 1.0 # 👋🏾 waving hand: medium-dark skin tone U+1F44B U+1F3FF ; 1.0 # 👋🏿 waving hand: dark skin tone U+1F91A ; 3.0 # 🤚 raised back of hand U+1F91A U+1F3FB ; 3.0 # 🤚🏻 raised back of hand: light skin tone U+1F91A U+1F3FC ; 3.0 # 🤚🏼 raised back of hand: medium-light skin tone U+1F91A U+1F3FD ; 3.0 # 🤚🏽 raised back of hand: medium skin tone U+1F91A U+1F3FE ; 3.0 # 🤚🏾 raised back of hand: medium-dark skin tone U+1F91A U+1F3FF ; 3.0 # 🤚🏿 raised back of hand: dark skin tone U+1F590 ; 0.7 # 🖐 hand with fingers splayed U+1F590 U+1F3FB ; 1.0 # 🖐🏻 hand with fingers splayed: light skin tone U+1F590 U+1F3FC ; 1.0 # 🖐🏼 hand with fingers splayed: medium-light skin tone U+1F590 U+1F3FD ; 1.0 # 🖐🏽 hand with fingers splayed: medium skin tone U+1F590 U+1F3FE ; 1.0 # 🖐🏾 hand with fingers splayed: medium-dark skin tone U+1F590 U+1F3FF ; 1.0 # 🖐🏿 hand with fingers splayed: dark skin tone U+270B ; 0.6 # ✋ raised hand U+270B U+1F3FB ; 1.0 # ✋🏻 raised hand: light skin tone U+270B U+1F3FC ; 1.0 # ✋🏼 raised hand: medium-light skin tone U+270B U+1F3FD ; 1.0 # ✋🏽 raised hand: medium skin tone U+270B U+1F3FE ; 1.0 # ✋🏾 raised hand: medium-dark skin tone U+270B U+1F3FF ; 1.0 # ✋🏿 raised hand: dark skin tone U+1F596 ; 1.0 # 🖖 vulcan salute U+1F596 U+1F3FB ; 1.0 # 🖖🏻 vulcan salute: light skin tone U+1F596 U+1F3FC ; 1.0 # 🖖🏼 vulcan salute: medium-light skin tone U+1F596 U+1F3FD ; 1.0 # 🖖🏽 vulcan salute: medium skin tone U+1F596 U+1F3FE ; 1.0 # 🖖🏾 vulcan salute: medium-dark skin tone U+1F596 U+1F3FF ; 1.0 # 🖖🏿 vulcan salute: dark skin tone U+1FAF1 ; 14.0 # 🫱 rightwards hand U+1FAF1 U+1F3FB ; 14.0 # 🫱🏻 rightwards hand: light skin tone U+1FAF1 U+1F3FC ; 14.0 # 🫱🏼 rightwards hand: medium-light skin tone U+1FAF1 U+1F3FD ; 14.0 # 🫱🏽 rightwards hand: medium skin tone U+1FAF1 U+1F3FE ; 14.0 # 🫱🏾 rightwards hand: medium-dark skin tone U+1FAF1 U+1F3FF ; 14.0 # 🫱🏿 rightwards hand: dark skin tone U+1FAF2 ; 14.0 # 🫲 leftwards hand U+1FAF2 U+1F3FB ; 14.0 # 🫲🏻 leftwards hand: light skin tone U+1FAF2 U+1F3FC ; 14.0 # 🫲🏼 leftwards hand: medium-light skin tone U+1FAF2 U+1F3FD ; 14.0 # 🫲🏽 leftwards hand: medium skin tone U+1FAF2 U+1F3FE ; 14.0 # 🫲🏾 leftwards hand: medium-dark skin tone U+1FAF2 U+1F3FF ; 14.0 # 🫲🏿 leftwards hand: dark skin tone U+1FAF3 ; 14.0 # 🫳 palm down hand U+1FAF3 U+1F3FB ; 14.0 # 🫳🏻 palm down hand: light skin tone U+1FAF3 U+1F3FC ; 14.0 # 🫳🏼 palm down hand: medium-light skin tone U+1FAF3 U+1F3FD ; 14.0 # 🫳🏽 palm down hand: medium skin tone U+1FAF3 U+1F3FE ; 14.0 # 🫳🏾 palm down hand: medium-dark skin tone U+1FAF3 U+1F3FF ; 14.0 # 🫳🏿 palm down hand: dark skin tone U+1FAF4 ; 14.0 # 🫴 palm up hand U+1FAF4 U+1F3FB ; 14.0 # 🫴🏻 palm up hand: light skin tone U+1FAF4 U+1F3FC ; 14.0 # 🫴🏼 palm up hand: medium-light skin tone U+1FAF4 U+1F3FD ; 14.0 # 🫴🏽 palm up hand: medium skin tone U+1FAF4 U+1F3FE ; 14.0 # 🫴🏾 palm up hand: medium-dark skin tone U+1FAF4 U+1F3FF ; 14.0 # 🫴🏿 palm up hand: dark skin tone U+1FAF7 ; 15.0 # 🫷 leftwards pushing hand U+1FAF7 U+1F3FB ; 15.0 # 🫷🏻 leftwards pushing hand: light skin tone U+1FAF7 U+1F3FC ; 15.0 # 🫷🏼 leftwards pushing hand: medium-light skin tone U+1FAF7 U+1F3FD ; 15.0 # 🫷🏽 leftwards pushing hand: medium skin tone U+1FAF7 U+1F3FE ; 15.0 # 🫷🏾 leftwards pushing hand: medium-dark skin tone U+1FAF7 U+1F3FF ; 15.0 # 🫷🏿 leftwards pushing hand: dark skin tone U+1FAF8 ; 15.0 # 🫸 rightwards pushing hand U+1FAF8 U+1F3FB ; 15.0 # 🫸🏻 rightwards pushing hand: light skin tone U+1FAF8 U+1F3FC ; 15.0 # 🫸🏼 rightwards pushing hand: medium-light skin tone U+1FAF8 U+1F3FD ; 15.0 # 🫸🏽 rightwards pushing hand: medium skin tone U+1FAF8 U+1F3FE ; 15.0 # 🫸🏾 rightwards pushing hand: medium-dark skin tone U+1FAF8 U+1F3FF ; 15.0 # 🫸🏿 rightwards pushing hand: dark skin tone U+1F44C ; 0.6 # 👌 OK hand U+1F44C U+1F3FB ; 1.0 # 👌🏻 OK hand: light skin tone U+1F44C U+1F3FC ; 1.0 # 👌🏼 OK hand: medium-light skin tone U+1F44C U+1F3FD ; 1.0 # 👌🏽 OK hand: medium skin tone U+1F44C U+1F3FE ; 1.0 # 👌🏾 OK hand: medium-dark skin tone U+1F44C U+1F3FF ; 1.0 # 👌🏿 OK hand: dark skin tone U+1F90C ; 13.0 # 🤌 pinched fingers U+1F90C U+1F3FB ; 13.0 # 🤌🏻 pinched fingers: light skin tone U+1F90C U+1F3FC ; 13.0 # 🤌🏼 pinched fingers: medium-light skin tone U+1F90C U+1F3FD ; 13.0 # 🤌🏽 pinched fingers: medium skin tone U+1F90C U+1F3FE ; 13.0 # 🤌🏾 pinched fingers: medium-dark skin tone U+1F90C U+1F3FF ; 13.0 # 🤌🏿 pinched fingers: dark skin tone U+1F90F ; 12.0 # 🤏 pinching hand U+1F90F U+1F3FB ; 12.0 # 🤏🏻 pinching hand: light skin tone U+1F90F U+1F3FC ; 12.0 # 🤏🏼 pinching hand: medium-light skin tone U+1F90F U+1F3FD ; 12.0 # 🤏🏽 pinching hand: medium skin tone U+1F90F U+1F3FE ; 12.0 # 🤏🏾 pinching hand: medium-dark skin tone U+1F90F U+1F3FF ; 12.0 # 🤏🏿 pinching hand: dark skin tone U+270C ; 0.6 # ✌ victory hand U+270C U+1F3FB ; 1.0 # ✌🏻 victory hand: light skin tone U+270C U+1F3FC ; 1.0 # ✌🏼 victory hand: medium-light skin tone U+270C U+1F3FD ; 1.0 # ✌🏽 victory hand: medium skin tone U+270C U+1F3FE ; 1.0 # ✌🏾 victory hand: medium-dark skin tone U+270C U+1F3FF ; 1.0 # ✌🏿 victory hand: dark skin tone U+1F91E ; 3.0 # 🤞 crossed fingers U+1F91E U+1F3FB ; 3.0 # 🤞🏻 crossed fingers: light skin tone U+1F91E U+1F3FC ; 3.0 # 🤞🏼 crossed fingers: medium-light skin tone U+1F91E U+1F3FD ; 3.0 # 🤞🏽 crossed fingers: medium skin tone U+1F91E U+1F3FE ; 3.0 # 🤞🏾 crossed fingers: medium-dark skin tone U+1F91E U+1F3FF ; 3.0 # 🤞🏿 crossed fingers: dark skin tone U+1FAF0 ; 14.0 # 🫰 hand with index finger and thumb crossed U+1FAF0 U+1F3FB ; 14.0 # 🫰🏻 hand with index finger and thumb crossed: light skin tone U+1FAF0 U+1F3FC ; 14.0 # 🫰🏼 hand with index finger and thumb crossed: medium-light skin tone U+1FAF0 U+1F3FD ; 14.0 # 🫰🏽 hand with index finger and thumb crossed: medium skin tone U+1FAF0 U+1F3FE ; 14.0 # 🫰🏾 hand with index finger and thumb crossed: medium-dark skin tone U+1FAF0 U+1F3FF ; 14.0 # 🫰🏿 hand with index finger and thumb crossed: dark skin tone U+1F91F ; 5.0 # 🤟 love-you gesture U+1F91F U+1F3FB ; 5.0 # 🤟🏻 love-you gesture: light skin tone U+1F91F U+1F3FC ; 5.0 # 🤟🏼 love-you gesture: medium-light skin tone U+1F91F U+1F3FD ; 5.0 # 🤟🏽 love-you gesture: medium skin tone U+1F91F U+1F3FE ; 5.0 # 🤟🏾 love-you gesture: medium-dark skin tone U+1F91F U+1F3FF ; 5.0 # 🤟🏿 love-you gesture: dark skin tone U+1F918 ; 1.0 # 🤘 sign of the horns U+1F918 U+1F3FB ; 1.0 # 🤘🏻 sign of the horns: light skin tone U+1F918 U+1F3FC ; 1.0 # 🤘🏼 sign of the horns: medium-light skin tone U+1F918 U+1F3FD ; 1.0 # 🤘🏽 sign of the horns: medium skin tone U+1F918 U+1F3FE ; 1.0 # 🤘🏾 sign of the horns: medium-dark skin tone U+1F918 U+1F3FF ; 1.0 # 🤘🏿 sign of the horns: dark skin tone U+1F919 ; 3.0 # 🤙 call me hand U+1F919 U+1F3FB ; 3.0 # 🤙🏻 call me hand: light skin tone U+1F919 U+1F3FC ; 3.0 # 🤙🏼 call me hand: medium-light skin tone U+1F919 U+1F3FD ; 3.0 # 🤙🏽 call me hand: medium skin tone U+1F919 U+1F3FE ; 3.0 # 🤙🏾 call me hand: medium-dark skin tone U+1F919 U+1F3FF ; 3.0 # 🤙🏿 call me hand: dark skin tone U+1F448 ; 0.6 # 👈 backhand index pointing left U+1F448 U+1F3FB ; 1.0 # 👈🏻 backhand index pointing left: light skin tone U+1F448 U+1F3FC ; 1.0 # 👈🏼 backhand index pointing left: medium-light skin tone U+1F448 U+1F3FD ; 1.0 # 👈🏽 backhand index pointing left: medium skin tone U+1F448 U+1F3FE ; 1.0 # 👈🏾 backhand index pointing left: medium-dark skin tone U+1F448 U+1F3FF ; 1.0 # 👈🏿 backhand index pointing left: dark skin tone U+1F449 ; 0.6 # 👉 backhand index pointing right U+1F449 U+1F3FB ; 1.0 # 👉🏻 backhand index pointing right: light skin tone U+1F449 U+1F3FC ; 1.0 # 👉🏼 backhand index pointing right: medium-light skin tone U+1F449 U+1F3FD ; 1.0 # 👉🏽 backhand index pointing right: medium skin tone U+1F449 U+1F3FE ; 1.0 # 👉🏾 backhand index pointing right: medium-dark skin tone U+1F449 U+1F3FF ; 1.0 # 👉🏿 backhand index pointing right: dark skin tone U+1F446 ; 0.6 # 👆 backhand index pointing up U+1F446 U+1F3FB ; 1.0 # 👆🏻 backhand index pointing up: light skin tone U+1F446 U+1F3FC ; 1.0 # 👆🏼 backhand index pointing up: medium-light skin tone U+1F446 U+1F3FD ; 1.0 # 👆🏽 backhand index pointing up: medium skin tone U+1F446 U+1F3FE ; 1.0 # 👆🏾 backhand index pointing up: medium-dark skin tone U+1F446 U+1F3FF ; 1.0 # 👆🏿 backhand index pointing up: dark skin tone U+1F595 ; 1.0 # 🖕 middle finger U+1F595 U+1F3FB ; 1.0 # 🖕🏻 middle finger: light skin tone U+1F595 U+1F3FC ; 1.0 # 🖕🏼 middle finger: medium-light skin tone U+1F595 U+1F3FD ; 1.0 # 🖕🏽 middle finger: medium skin tone U+1F595 U+1F3FE ; 1.0 # 🖕🏾 middle finger: medium-dark skin tone U+1F595 U+1F3FF ; 1.0 # 🖕🏿 middle finger: dark skin tone U+1F447 ; 0.6 # 👇 backhand index pointing down U+1F447 U+1F3FB ; 1.0 # 👇🏻 backhand index pointing down: light skin tone U+1F447 U+1F3FC ; 1.0 # 👇🏼 backhand index pointing down: medium-light skin tone U+1F447 U+1F3FD ; 1.0 # 👇🏽 backhand index pointing down: medium skin tone U+1F447 U+1F3FE ; 1.0 # 👇🏾 backhand index pointing down: medium-dark skin tone U+1F447 U+1F3FF ; 1.0 # 👇🏿 backhand index pointing down: dark skin tone U+261D ; 0.6 # ☝ index pointing up U+261D U+1F3FB ; 1.0 # ☝🏻 index pointing up: light skin tone U+261D U+1F3FC ; 1.0 # ☝🏼 index pointing up: medium-light skin tone U+261D U+1F3FD ; 1.0 # ☝🏽 index pointing up: medium skin tone U+261D U+1F3FE ; 1.0 # ☝🏾 index pointing up: medium-dark skin tone U+261D U+1F3FF ; 1.0 # ☝🏿 index pointing up: dark skin tone U+1FAF5 ; 14.0 # 🫵 index pointing at the viewer U+1FAF5 U+1F3FB ; 14.0 # 🫵🏻 index pointing at the viewer: light skin tone U+1FAF5 U+1F3FC ; 14.0 # 🫵🏼 index pointing at the viewer: medium-light skin tone U+1FAF5 U+1F3FD ; 14.0 # 🫵🏽 index pointing at the viewer: medium skin tone U+1FAF5 U+1F3FE ; 14.0 # 🫵🏾 index pointing at the viewer: medium-dark skin tone U+1FAF5 U+1F3FF ; 14.0 # 🫵🏿 index pointing at the viewer: dark skin tone U+1F44D ; 0.6 # 👍 thumbs up U+1F44D U+1F3FB ; 1.0 # 👍🏻 thumbs up: light skin tone U+1F44D U+1F3FC ; 1.0 # 👍🏼 thumbs up: medium-light skin tone U+1F44D U+1F3FD ; 1.0 # 👍🏽 thumbs up: medium skin tone U+1F44D U+1F3FE ; 1.0 # 👍🏾 thumbs up: medium-dark skin tone U+1F44D U+1F3FF ; 1.0 # 👍🏿 thumbs up: dark skin tone U+1F44E ; 0.6 # 👎 thumbs down U+1F44E U+1F3FB ; 1.0 # 👎🏻 thumbs down: light skin tone U+1F44E U+1F3FC ; 1.0 # 👎🏼 thumbs down: medium-light skin tone U+1F44E U+1F3FD ; 1.0 # 👎🏽 thumbs down: medium skin tone U+1F44E U+1F3FE ; 1.0 # 👎🏾 thumbs down: medium-dark skin tone U+1F44E U+1F3FF ; 1.0 # 👎🏿 thumbs down: dark skin tone U+270A ; 0.6 # ✊ raised fist U+270A U+1F3FB ; 1.0 # ✊🏻 raised fist: light skin tone U+270A U+1F3FC ; 1.0 # ✊🏼 raised fist: medium-light skin tone U+270A U+1F3FD ; 1.0 # ✊🏽 raised fist: medium skin tone U+270A U+1F3FE ; 1.0 # ✊🏾 raised fist: medium-dark skin tone U+270A U+1F3FF ; 1.0 # ✊🏿 raised fist: dark skin tone U+1F44A ; 0.6 # 👊 oncoming fist U+1F44A U+1F3FB ; 1.0 # 👊🏻 oncoming fist: light skin tone U+1F44A U+1F3FC ; 1.0 # 👊🏼 oncoming fist: medium-light skin tone U+1F44A U+1F3FD ; 1.0 # 👊🏽 oncoming fist: medium skin tone U+1F44A U+1F3FE ; 1.0 # 👊🏾 oncoming fist: medium-dark skin tone U+1F44A U+1F3FF ; 1.0 # 👊🏿 oncoming fist: dark skin tone U+1F91B ; 3.0 # 🤛 left-facing fist U+1F91B U+1F3FB ; 3.0 # 🤛🏻 left-facing fist: light skin tone U+1F91B U+1F3FC ; 3.0 # 🤛🏼 left-facing fist: medium-light skin tone U+1F91B U+1F3FD ; 3.0 # 🤛🏽 left-facing fist: medium skin tone U+1F91B U+1F3FE ; 3.0 # 🤛🏾 left-facing fist: medium-dark skin tone U+1F91B U+1F3FF ; 3.0 # 🤛🏿 left-facing fist: dark skin tone U+1F91C ; 3.0 # 🤜 right-facing fist U+1F91C U+1F3FB ; 3.0 # 🤜🏻 right-facing fist: light skin tone U+1F91C U+1F3FC ; 3.0 # 🤜🏼 right-facing fist: medium-light skin tone U+1F91C U+1F3FD ; 3.0 # 🤜🏽 right-facing fist: medium skin tone U+1F91C U+1F3FE ; 3.0 # 🤜🏾 right-facing fist: medium-dark skin tone U+1F91C U+1F3FF ; 3.0 # 🤜🏿 right-facing fist: dark skin tone U+1F44F ; 0.6 # 👏 clapping hands U+1F44F U+1F3FB ; 1.0 # 👏🏻 clapping hands: light skin tone U+1F44F U+1F3FC ; 1.0 # 👏🏼 clapping hands: medium-light skin tone U+1F44F U+1F3FD ; 1.0 # 👏🏽 clapping hands: medium skin tone U+1F44F U+1F3FE ; 1.0 # 👏🏾 clapping hands: medium-dark skin tone U+1F44F U+1F3FF ; 1.0 # 👏🏿 clapping hands: dark skin tone U+1F64C ; 0.6 # 🙌 raising hands U+1F64C U+1F3FB ; 1.0 # 🙌🏻 raising hands: light skin tone U+1F64C U+1F3FC ; 1.0 # 🙌🏼 raising hands: medium-light skin tone U+1F64C U+1F3FD ; 1.0 # 🙌🏽 raising hands: medium skin tone U+1F64C U+1F3FE ; 1.0 # 🙌🏾 raising hands: medium-dark skin tone U+1F64C U+1F3FF ; 1.0 # 🙌🏿 raising hands: dark skin tone U+1FAF6 ; 14.0 # 🫶 heart hands U+1FAF6 U+1F3FB ; 14.0 # 🫶🏻 heart hands: light skin tone U+1FAF6 U+1F3FC ; 14.0 # 🫶🏼 heart hands: medium-light skin tone U+1FAF6 U+1F3FD ; 14.0 # 🫶🏽 heart hands: medium skin tone U+1FAF6 U+1F3FE ; 14.0 # 🫶🏾 heart hands: medium-dark skin tone U+1FAF6 U+1F3FF ; 14.0 # 🫶🏿 heart hands: dark skin tone U+1F450 ; 0.6 # 👐 open hands U+1F450 U+1F3FB ; 1.0 # 👐🏻 open hands: light skin tone U+1F450 U+1F3FC ; 1.0 # 👐🏼 open hands: medium-light skin tone U+1F450 U+1F3FD ; 1.0 # 👐🏽 open hands: medium skin tone U+1F450 U+1F3FE ; 1.0 # 👐🏾 open hands: medium-dark skin tone U+1F450 U+1F3FF ; 1.0 # 👐🏿 open hands: dark skin tone U+1F932 ; 5.0 # 🤲 palms up together U+1F932 U+1F3FB ; 5.0 # 🤲🏻 palms up together: light skin tone U+1F932 U+1F3FC ; 5.0 # 🤲🏼 palms up together: medium-light skin tone U+1F932 U+1F3FD ; 5.0 # 🤲🏽 palms up together: medium skin tone U+1F932 U+1F3FE ; 5.0 # 🤲🏾 palms up together: medium-dark skin tone U+1F932 U+1F3FF ; 5.0 # 🤲🏿 palms up together: dark skin tone U+1F91D ; 3.0 # 🤝 handshake U+1F91D U+1F3FB ; 14.0 # 🤝🏻 handshake: light skin tone U+1F91D U+1F3FC ; 14.0 # 🤝🏼 handshake: medium-light skin tone U+1F91D U+1F3FD ; 14.0 # 🤝🏽 handshake: medium skin tone U+1F91D U+1F3FE ; 14.0 # 🤝🏾 handshake: medium-dark skin tone U+1F91D U+1F3FF ; 14.0 # 🤝🏿 handshake: dark skin tone U+1FAF1 U+1F3FB U+200D U+1FAF2 U+1F3FC ; 14.0 # 🫱🏻‍🫲🏼 handshake: light skin tone, medium-light skin tone U+1FAF1 U+1F3FB U+200D U+1FAF2 U+1F3FD ; 14.0 # 🫱🏻‍🫲🏽 handshake: light skin tone, medium skin tone U+1FAF1 U+1F3FB U+200D U+1FAF2 U+1F3FE ; 14.0 # 🫱🏻‍🫲🏾 handshake: light skin tone, medium-dark skin tone U+1FAF1 U+1F3FB U+200D U+1FAF2 U+1F3FF ; 14.0 # 🫱🏻‍🫲🏿 handshake: light skin tone, dark skin tone U+1FAF1 U+1F3FC U+200D U+1FAF2 U+1F3FB ; 14.0 # 🫱🏼‍🫲🏻 handshake: medium-light skin tone, light skin tone U+1FAF1 U+1F3FC U+200D U+1FAF2 U+1F3FD ; 14.0 # 🫱🏼‍🫲🏽 handshake: medium-light skin tone, medium skin tone U+1FAF1 U+1F3FC U+200D U+1FAF2 U+1F3FE ; 14.0 # 🫱🏼‍🫲🏾 handshake: medium-light skin tone, medium-dark skin tone U+1FAF1 U+1F3FC U+200D U+1FAF2 U+1F3FF ; 14.0 # 🫱🏼‍🫲🏿 handshake: medium-light skin tone, dark skin tone U+1FAF1 U+1F3FD U+200D U+1FAF2 U+1F3FB ; 14.0 # 🫱🏽‍🫲🏻 handshake: medium skin tone, light skin tone U+1FAF1 U+1F3FD U+200D U+1FAF2 U+1F3FC ; 14.0 # 🫱🏽‍🫲🏼 handshake: medium skin tone, medium-light skin tone U+1FAF1 U+1F3FD U+200D U+1FAF2 U+1F3FE ; 14.0 # 🫱🏽‍🫲🏾 handshake: medium skin tone, medium-dark skin tone U+1FAF1 U+1F3FD U+200D U+1FAF2 U+1F3FF ; 14.0 # 🫱🏽‍🫲🏿 handshake: medium skin tone, dark skin tone U+1FAF1 U+1F3FE U+200D U+1FAF2 U+1F3FB ; 14.0 # 🫱🏾‍🫲🏻 handshake: medium-dark skin tone, light skin tone U+1FAF1 U+1F3FE U+200D U+1FAF2 U+1F3FC ; 14.0 # 🫱🏾‍🫲🏼 handshake: medium-dark skin tone, medium-light skin tone U+1FAF1 U+1F3FE U+200D U+1FAF2 U+1F3FD ; 14.0 # 🫱🏾‍🫲🏽 handshake: medium-dark skin tone, medium skin tone U+1FAF1 U+1F3FE U+200D U+1FAF2 U+1F3FF ; 14.0 # 🫱🏾‍🫲🏿 handshake: medium-dark skin tone, dark skin tone U+1FAF1 U+1F3FF U+200D U+1FAF2 U+1F3FB ; 14.0 # 🫱🏿‍🫲🏻 handshake: dark skin tone, light skin tone U+1FAF1 U+1F3FF U+200D U+1FAF2 U+1F3FC ; 14.0 # 🫱🏿‍🫲🏼 handshake: dark skin tone, medium-light skin tone U+1FAF1 U+1F3FF U+200D U+1FAF2 U+1F3FD ; 14.0 # 🫱🏿‍🫲🏽 handshake: dark skin tone, medium skin tone U+1FAF1 U+1F3FF U+200D U+1FAF2 U+1F3FE ; 14.0 # 🫱🏿‍🫲🏾 handshake: dark skin tone, medium-dark skin tone U+1F64F ; 0.6 # 🙏 folded hands U+1F64F U+1F3FB ; 1.0 # 🙏🏻 folded hands: light skin tone U+1F64F U+1F3FC ; 1.0 # 🙏🏼 folded hands: medium-light skin tone U+1F64F U+1F3FD ; 1.0 # 🙏🏽 folded hands: medium skin tone U+1F64F U+1F3FE ; 1.0 # 🙏🏾 folded hands: medium-dark skin tone U+1F64F U+1F3FF ; 1.0 # 🙏🏿 folded hands: dark skin tone U+270D ; 0.7 # ✍ writing hand U+270D U+1F3FB ; 1.0 # ✍🏻 writing hand: light skin tone U+270D U+1F3FC ; 1.0 # ✍🏼 writing hand: medium-light skin tone U+270D U+1F3FD ; 1.0 # ✍🏽 writing hand: medium skin tone U+270D U+1F3FE ; 1.0 # ✍🏾 writing hand: medium-dark skin tone U+270D U+1F3FF ; 1.0 # ✍🏿 writing hand: dark skin tone U+1F485 ; 0.6 # 💅 nail polish U+1F485 U+1F3FB ; 1.0 # 💅🏻 nail polish: light skin tone U+1F485 U+1F3FC ; 1.0 # 💅🏼 nail polish: medium-light skin tone U+1F485 U+1F3FD ; 1.0 # 💅🏽 nail polish: medium skin tone U+1F485 U+1F3FE ; 1.0 # 💅🏾 nail polish: medium-dark skin tone U+1F485 U+1F3FF ; 1.0 # 💅🏿 nail polish: dark skin tone U+1F933 ; 3.0 # 🤳 selfie U+1F933 U+1F3FB ; 3.0 # 🤳🏻 selfie: light skin tone U+1F933 U+1F3FC ; 3.0 # 🤳🏼 selfie: medium-light skin tone U+1F933 U+1F3FD ; 3.0 # 🤳🏽 selfie: medium skin tone U+1F933 U+1F3FE ; 3.0 # 🤳🏾 selfie: medium-dark skin tone U+1F933 U+1F3FF ; 3.0 # 🤳🏿 selfie: dark skin tone U+1F4AA ; 0.6 # 💪 flexed biceps U+1F4AA U+1F3FB ; 1.0 # 💪🏻 flexed biceps: light skin tone U+1F4AA U+1F3FC ; 1.0 # 💪🏼 flexed biceps: medium-light skin tone U+1F4AA U+1F3FD ; 1.0 # 💪🏽 flexed biceps: medium skin tone U+1F4AA U+1F3FE ; 1.0 # 💪🏾 flexed biceps: medium-dark skin tone U+1F4AA U+1F3FF ; 1.0 # 💪🏿 flexed biceps: dark skin tone U+1F9BE ; 12.0 # 🦾 mechanical arm U+1F9BF ; 12.0 # 🦿 mechanical leg U+1F9B5 ; 11.0 # 🦵 leg U+1F9B5 U+1F3FB ; 11.0 # 🦵🏻 leg: light skin tone U+1F9B5 U+1F3FC ; 11.0 # 🦵🏼 leg: medium-light skin tone U+1F9B5 U+1F3FD ; 11.0 # 🦵🏽 leg: medium skin tone U+1F9B5 U+1F3FE ; 11.0 # 🦵🏾 leg: medium-dark skin tone U+1F9B5 U+1F3FF ; 11.0 # 🦵🏿 leg: dark skin tone U+1F9B6 ; 11.0 # 🦶 foot U+1F9B6 U+1F3FB ; 11.0 # 🦶🏻 foot: light skin tone U+1F9B6 U+1F3FC ; 11.0 # 🦶🏼 foot: medium-light skin tone U+1F9B6 U+1F3FD ; 11.0 # 🦶🏽 foot: medium skin tone U+1F9B6 U+1F3FE ; 11.0 # 🦶🏾 foot: medium-dark skin tone U+1F9B6 U+1F3FF ; 11.0 # 🦶🏿 foot: dark skin tone U+1F442 ; 0.6 # 👂 ear U+1F442 U+1F3FB ; 1.0 # 👂🏻 ear: light skin tone U+1F442 U+1F3FC ; 1.0 # 👂🏼 ear: medium-light skin tone U+1F442 U+1F3FD ; 1.0 # 👂🏽 ear: medium skin tone U+1F442 U+1F3FE ; 1.0 # 👂🏾 ear: medium-dark skin tone U+1F442 U+1F3FF ; 1.0 # 👂🏿 ear: dark skin tone U+1F9BB ; 12.0 # 🦻 ear with hearing aid U+1F9BB U+1F3FB ; 12.0 # 🦻🏻 ear with hearing aid: light skin tone U+1F9BB U+1F3FC ; 12.0 # 🦻🏼 ear with hearing aid: medium-light skin tone U+1F9BB U+1F3FD ; 12.0 # 🦻🏽 ear with hearing aid: medium skin tone U+1F9BB U+1F3FE ; 12.0 # 🦻🏾 ear with hearing aid: medium-dark skin tone U+1F9BB U+1F3FF ; 12.0 # 🦻🏿 ear with hearing aid: dark skin tone U+1F443 ; 0.6 # 👃 nose U+1F443 U+1F3FB ; 1.0 # 👃🏻 nose: light skin tone U+1F443 U+1F3FC ; 1.0 # 👃🏼 nose: medium-light skin tone U+1F443 U+1F3FD ; 1.0 # 👃🏽 nose: medium skin tone U+1F443 U+1F3FE ; 1.0 # 👃🏾 nose: medium-dark skin tone U+1F443 U+1F3FF ; 1.0 # 👃🏿 nose: dark skin tone U+1F9E0 ; 5.0 # 🧠 brain U+1FAC0 ; 13.0 # 🫀 anatomical heart U+1FAC1 ; 13.0 # 🫁 lungs U+1F9B7 ; 11.0 # 🦷 tooth U+1F9B4 ; 11.0 # 🦴 bone U+1F440 ; 0.6 # 👀 eyes U+1F441 ; 0.7 # 👁 eye U+1F445 ; 0.6 # 👅 tongue U+1F444 ; 0.6 # 👄 mouth U+1FAE6 ; 14.0 # 🫦 biting lip U+1F476 ; 0.6 # 👶 baby U+1F476 U+1F3FB ; 1.0 # 👶🏻 baby: light skin tone U+1F476 U+1F3FC ; 1.0 # 👶🏼 baby: medium-light skin tone U+1F476 U+1F3FD ; 1.0 # 👶🏽 baby: medium skin tone U+1F476 U+1F3FE ; 1.0 # 👶🏾 baby: medium-dark skin tone U+1F476 U+1F3FF ; 1.0 # 👶🏿 baby: dark skin tone U+1F9D2 ; 5.0 # 🧒 child U+1F9D2 U+1F3FB ; 5.0 # 🧒🏻 child: light skin tone U+1F9D2 U+1F3FC ; 5.0 # 🧒🏼 child: medium-light skin tone U+1F9D2 U+1F3FD ; 5.0 # 🧒🏽 child: medium skin tone U+1F9D2 U+1F3FE ; 5.0 # 🧒🏾 child: medium-dark skin tone U+1F9D2 U+1F3FF ; 5.0 # 🧒🏿 child: dark skin tone U+1F466 ; 0.6 # 👦 boy U+1F466 U+1F3FB ; 1.0 # 👦🏻 boy: light skin tone U+1F466 U+1F3FC ; 1.0 # 👦🏼 boy: medium-light skin tone U+1F466 U+1F3FD ; 1.0 # 👦🏽 boy: medium skin tone U+1F466 U+1F3FE ; 1.0 # 👦🏾 boy: medium-dark skin tone U+1F466 U+1F3FF ; 1.0 # 👦🏿 boy: dark skin tone U+1F467 ; 0.6 # 👧 girl U+1F467 U+1F3FB ; 1.0 # 👧🏻 girl: light skin tone U+1F467 U+1F3FC ; 1.0 # 👧🏼 girl: medium-light skin tone U+1F467 U+1F3FD ; 1.0 # 👧🏽 girl: medium skin tone U+1F467 U+1F3FE ; 1.0 # 👧🏾 girl: medium-dark skin tone U+1F467 U+1F3FF ; 1.0 # 👧🏿 girl: dark skin tone U+1F9D1 ; 5.0 # 🧑 person U+1F9D1 U+1F3FB ; 5.0 # 🧑🏻 person: light skin tone U+1F9D1 U+1F3FC ; 5.0 # 🧑🏼 person: medium-light skin tone U+1F9D1 U+1F3FD ; 5.0 # 🧑🏽 person: medium skin tone U+1F9D1 U+1F3FE ; 5.0 # 🧑🏾 person: medium-dark skin tone U+1F9D1 U+1F3FF ; 5.0 # 🧑🏿 person: dark skin tone U+1F471 ; 0.6 # 👱 person: blond hair U+1F471 U+1F3FB ; 1.0 # 👱🏻 person: light skin tone, blond hair U+1F471 U+1F3FC ; 1.0 # 👱🏼 person: medium-light skin tone, blond hair U+1F471 U+1F3FD ; 1.0 # 👱🏽 person: medium skin tone, blond hair U+1F471 U+1F3FE ; 1.0 # 👱🏾 person: medium-dark skin tone, blond hair U+1F471 U+1F3FF ; 1.0 # 👱🏿 person: dark skin tone, blond hair U+1F468 ; 0.6 # 👨 man U+1F468 U+1F3FB ; 1.0 # 👨🏻 man: light skin tone U+1F468 U+1F3FC ; 1.0 # 👨🏼 man: medium-light skin tone U+1F468 U+1F3FD ; 1.0 # 👨🏽 man: medium skin tone U+1F468 U+1F3FE ; 1.0 # 👨🏾 man: medium-dark skin tone U+1F468 U+1F3FF ; 1.0 # 👨🏿 man: dark skin tone U+1F9D4 ; 5.0 # 🧔 person: beard U+1F9D4 U+1F3FB ; 5.0 # 🧔🏻 person: light skin tone, beard U+1F9D4 U+1F3FC ; 5.0 # 🧔🏼 person: medium-light skin tone, beard U+1F9D4 U+1F3FD ; 5.0 # 🧔🏽 person: medium skin tone, beard U+1F9D4 U+1F3FE ; 5.0 # 🧔🏾 person: medium-dark skin tone, beard U+1F9D4 U+1F3FF ; 5.0 # 🧔🏿 person: dark skin tone, beard U+1F9D4 U+200D U+2642 U+FE0F ; 13.1 # 🧔‍♂️ man: beard U+1F9D4 U+1F3FB U+200D U+2642 U+FE0F ; 13.1 # 🧔🏻‍♂️ man: light skin tone, beard U+1F9D4 U+1F3FC U+200D U+2642 U+FE0F ; 13.1 # 🧔🏼‍♂️ man: medium-light skin tone, beard U+1F9D4 U+1F3FD U+200D U+2642 U+FE0F ; 13.1 # 🧔🏽‍♂️ man: medium skin tone, beard U+1F9D4 U+1F3FE U+200D U+2642 U+FE0F ; 13.1 # 🧔🏾‍♂️ man: medium-dark skin tone, beard U+1F9D4 U+1F3FF U+200D U+2642 U+FE0F ; 13.1 # 🧔🏿‍♂️ man: dark skin tone, beard U+1F9D4 U+200D U+2640 U+FE0F ; 13.1 # 🧔‍♀️ woman: beard U+1F9D4 U+1F3FB U+200D U+2640 U+FE0F ; 13.1 # 🧔🏻‍♀️ woman: light skin tone, beard U+1F9D4 U+1F3FC U+200D U+2640 U+FE0F ; 13.1 # 🧔🏼‍♀️ woman: medium-light skin tone, beard U+1F9D4 U+1F3FD U+200D U+2640 U+FE0F ; 13.1 # 🧔🏽‍♀️ woman: medium skin tone, beard U+1F9D4 U+1F3FE U+200D U+2640 U+FE0F ; 13.1 # 🧔🏾‍♀️ woman: medium-dark skin tone, beard U+1F9D4 U+1F3FF U+200D U+2640 U+FE0F ; 13.1 # 🧔🏿‍♀️ woman: dark skin tone, beard U+1F468 U+200D U+1F9B0 ; 11.0 # 👨‍🦰 man: red hair U+1F468 U+1F3FB U+200D U+1F9B0 ; 11.0 # 👨🏻‍🦰 man: light skin tone, red hair U+1F468 U+1F3FC U+200D U+1F9B0 ; 11.0 # 👨🏼‍🦰 man: medium-light skin tone, red hair U+1F468 U+1F3FD U+200D U+1F9B0 ; 11.0 # 👨🏽‍🦰 man: medium skin tone, red hair U+1F468 U+1F3FE U+200D U+1F9B0 ; 11.0 # 👨🏾‍🦰 man: medium-dark skin tone, red hair U+1F468 U+1F3FF U+200D U+1F9B0 ; 11.0 # 👨🏿‍🦰 man: dark skin tone, red hair U+1F468 U+200D U+1F9B1 ; 11.0 # 👨‍🦱 man: curly hair U+1F468 U+1F3FB U+200D U+1F9B1 ; 11.0 # 👨🏻‍🦱 man: light skin tone, curly hair U+1F468 U+1F3FC U+200D U+1F9B1 ; 11.0 # 👨🏼‍🦱 man: medium-light skin tone, curly hair U+1F468 U+1F3FD U+200D U+1F9B1 ; 11.0 # 👨🏽‍🦱 man: medium skin tone, curly hair U+1F468 U+1F3FE U+200D U+1F9B1 ; 11.0 # 👨🏾‍🦱 man: medium-dark skin tone, curly hair U+1F468 U+1F3FF U+200D U+1F9B1 ; 11.0 # 👨🏿‍🦱 man: dark skin tone, curly hair U+1F468 U+200D U+1F9B3 ; 11.0 # 👨‍🦳 man: white hair U+1F468 U+1F3FB U+200D U+1F9B3 ; 11.0 # 👨🏻‍🦳 man: light skin tone, white hair U+1F468 U+1F3FC U+200D U+1F9B3 ; 11.0 # 👨🏼‍🦳 man: medium-light skin tone, white hair U+1F468 U+1F3FD U+200D U+1F9B3 ; 11.0 # 👨🏽‍🦳 man: medium skin tone, white hair U+1F468 U+1F3FE U+200D U+1F9B3 ; 11.0 # 👨🏾‍🦳 man: medium-dark skin tone, white hair U+1F468 U+1F3FF U+200D U+1F9B3 ; 11.0 # 👨🏿‍🦳 man: dark skin tone, white hair U+1F468 U+200D U+1F9B2 ; 11.0 # 👨‍🦲 man: bald U+1F468 U+1F3FB U+200D U+1F9B2 ; 11.0 # 👨🏻‍🦲 man: light skin tone, bald U+1F468 U+1F3FC U+200D U+1F9B2 ; 11.0 # 👨🏼‍🦲 man: medium-light skin tone, bald U+1F468 U+1F3FD U+200D U+1F9B2 ; 11.0 # 👨🏽‍🦲 man: medium skin tone, bald U+1F468 U+1F3FE U+200D U+1F9B2 ; 11.0 # 👨🏾‍🦲 man: medium-dark skin tone, bald U+1F468 U+1F3FF U+200D U+1F9B2 ; 11.0 # 👨🏿‍🦲 man: dark skin tone, bald U+1F469 ; 0.6 # 👩 woman U+1F469 U+1F3FB ; 1.0 # 👩🏻 woman: light skin tone U+1F469 U+1F3FC ; 1.0 # 👩🏼 woman: medium-light skin tone U+1F469 U+1F3FD ; 1.0 # 👩🏽 woman: medium skin tone U+1F469 U+1F3FE ; 1.0 # 👩🏾 woman: medium-dark skin tone U+1F469 U+1F3FF ; 1.0 # 👩🏿 woman: dark skin tone U+1F469 U+200D U+1F9B0 ; 11.0 # 👩‍🦰 woman: red hair U+1F469 U+1F3FB U+200D U+1F9B0 ; 11.0 # 👩🏻‍🦰 woman: light skin tone, red hair U+1F469 U+1F3FC U+200D U+1F9B0 ; 11.0 # 👩🏼‍🦰 woman: medium-light skin tone, red hair U+1F469 U+1F3FD U+200D U+1F9B0 ; 11.0 # 👩🏽‍🦰 woman: medium skin tone, red hair U+1F469 U+1F3FE U+200D U+1F9B0 ; 11.0 # 👩🏾‍🦰 woman: medium-dark skin tone, red hair U+1F469 U+1F3FF U+200D U+1F9B0 ; 11.0 # 👩🏿‍🦰 woman: dark skin tone, red hair U+1F9D1 U+200D U+1F9B0 ; 12.1 # 🧑‍🦰 person: red hair U+1F9D1 U+1F3FB U+200D U+1F9B0 ; 12.1 # 🧑🏻‍🦰 person: light skin tone, red hair U+1F9D1 U+1F3FC U+200D U+1F9B0 ; 12.1 # 🧑🏼‍🦰 person: medium-light skin tone, red hair U+1F9D1 U+1F3FD U+200D U+1F9B0 ; 12.1 # 🧑🏽‍🦰 person: medium skin tone, red hair U+1F9D1 U+1F3FE U+200D U+1F9B0 ; 12.1 # 🧑🏾‍🦰 person: medium-dark skin tone, red hair U+1F9D1 U+1F3FF U+200D U+1F9B0 ; 12.1 # 🧑🏿‍🦰 person: dark skin tone, red hair U+1F469 U+200D U+1F9B1 ; 11.0 # 👩‍🦱 woman: curly hair U+1F469 U+1F3FB U+200D U+1F9B1 ; 11.0 # 👩🏻‍🦱 woman: light skin tone, curly hair U+1F469 U+1F3FC U+200D U+1F9B1 ; 11.0 # 👩🏼‍🦱 woman: medium-light skin tone, curly hair U+1F469 U+1F3FD U+200D U+1F9B1 ; 11.0 # 👩🏽‍🦱 woman: medium skin tone, curly hair U+1F469 U+1F3FE U+200D U+1F9B1 ; 11.0 # 👩🏾‍🦱 woman: medium-dark skin tone, curly hair U+1F469 U+1F3FF U+200D U+1F9B1 ; 11.0 # 👩🏿‍🦱 woman: dark skin tone, curly hair U+1F9D1 U+200D U+1F9B1 ; 12.1 # 🧑‍🦱 person: curly hair U+1F9D1 U+1F3FB U+200D U+1F9B1 ; 12.1 # 🧑🏻‍🦱 person: light skin tone, curly hair U+1F9D1 U+1F3FC U+200D U+1F9B1 ; 12.1 # 🧑🏼‍🦱 person: medium-light skin tone, curly hair U+1F9D1 U+1F3FD U+200D U+1F9B1 ; 12.1 # 🧑🏽‍🦱 person: medium skin tone, curly hair U+1F9D1 U+1F3FE U+200D U+1F9B1 ; 12.1 # 🧑🏾‍🦱 person: medium-dark skin tone, curly hair U+1F9D1 U+1F3FF U+200D U+1F9B1 ; 12.1 # 🧑🏿‍🦱 person: dark skin tone, curly hair U+1F469 U+200D U+1F9B3 ; 11.0 # 👩‍🦳 woman: white hair U+1F469 U+1F3FB U+200D U+1F9B3 ; 11.0 # 👩🏻‍🦳 woman: light skin tone, white hair U+1F469 U+1F3FC U+200D U+1F9B3 ; 11.0 # 👩🏼‍🦳 woman: medium-light skin tone, white hair U+1F469 U+1F3FD U+200D U+1F9B3 ; 11.0 # 👩🏽‍🦳 woman: medium skin tone, white hair U+1F469 U+1F3FE U+200D U+1F9B3 ; 11.0 # 👩🏾‍🦳 woman: medium-dark skin tone, white hair U+1F469 U+1F3FF U+200D U+1F9B3 ; 11.0 # 👩🏿‍🦳 woman: dark skin tone, white hair U+1F9D1 U+200D U+1F9B3 ; 12.1 # 🧑‍🦳 person: white hair U+1F9D1 U+1F3FB U+200D U+1F9B3 ; 12.1 # 🧑🏻‍🦳 person: light skin tone, white hair U+1F9D1 U+1F3FC U+200D U+1F9B3 ; 12.1 # 🧑🏼‍🦳 person: medium-light skin tone, white hair U+1F9D1 U+1F3FD U+200D U+1F9B3 ; 12.1 # 🧑🏽‍🦳 person: medium skin tone, white hair U+1F9D1 U+1F3FE U+200D U+1F9B3 ; 12.1 # 🧑🏾‍🦳 person: medium-dark skin tone, white hair U+1F9D1 U+1F3FF U+200D U+1F9B3 ; 12.1 # 🧑🏿‍🦳 person: dark skin tone, white hair U+1F469 U+200D U+1F9B2 ; 11.0 # 👩‍🦲 woman: bald U+1F469 U+1F3FB U+200D U+1F9B2 ; 11.0 # 👩🏻‍🦲 woman: light skin tone, bald U+1F469 U+1F3FC U+200D U+1F9B2 ; 11.0 # 👩🏼‍🦲 woman: medium-light skin tone, bald U+1F469 U+1F3FD U+200D U+1F9B2 ; 11.0 # 👩🏽‍🦲 woman: medium skin tone, bald U+1F469 U+1F3FE U+200D U+1F9B2 ; 11.0 # 👩🏾‍🦲 woman: medium-dark skin tone, bald U+1F469 U+1F3FF U+200D U+1F9B2 ; 11.0 # 👩🏿‍🦲 woman: dark skin tone, bald U+1F9D1 U+200D U+1F9B2 ; 12.1 # 🧑‍🦲 person: bald U+1F9D1 U+1F3FB U+200D U+1F9B2 ; 12.1 # 🧑🏻‍🦲 person: light skin tone, bald U+1F9D1 U+1F3FC U+200D U+1F9B2 ; 12.1 # 🧑🏼‍🦲 person: medium-light skin tone, bald U+1F9D1 U+1F3FD U+200D U+1F9B2 ; 12.1 # 🧑🏽‍🦲 person: medium skin tone, bald U+1F9D1 U+1F3FE U+200D U+1F9B2 ; 12.1 # 🧑🏾‍🦲 person: medium-dark skin tone, bald U+1F9D1 U+1F3FF U+200D U+1F9B2 ; 12.1 # 🧑🏿‍🦲 person: dark skin tone, bald U+1F471 U+200D U+2640 U+FE0F ; 4.0 # 👱‍♀️ woman: blond hair U+1F471 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 👱🏻‍♀️ woman: light skin tone, blond hair U+1F471 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 👱🏼‍♀️ woman: medium-light skin tone, blond hair U+1F471 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 👱🏽‍♀️ woman: medium skin tone, blond hair U+1F471 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 👱🏾‍♀️ woman: medium-dark skin tone, blond hair U+1F471 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 👱🏿‍♀️ woman: dark skin tone, blond hair U+1F471 U+200D U+2642 U+FE0F ; 4.0 # 👱‍♂️ man: blond hair U+1F471 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 👱🏻‍♂️ man: light skin tone, blond hair U+1F471 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 👱🏼‍♂️ man: medium-light skin tone, blond hair U+1F471 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 👱🏽‍♂️ man: medium skin tone, blond hair U+1F471 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 👱🏾‍♂️ man: medium-dark skin tone, blond hair U+1F471 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 👱🏿‍♂️ man: dark skin tone, blond hair U+1F9D3 ; 5.0 # 🧓 older person U+1F9D3 U+1F3FB ; 5.0 # 🧓🏻 older person: light skin tone U+1F9D3 U+1F3FC ; 5.0 # 🧓🏼 older person: medium-light skin tone U+1F9D3 U+1F3FD ; 5.0 # 🧓🏽 older person: medium skin tone U+1F9D3 U+1F3FE ; 5.0 # 🧓🏾 older person: medium-dark skin tone U+1F9D3 U+1F3FF ; 5.0 # 🧓🏿 older person: dark skin tone U+1F474 ; 0.6 # 👴 old man U+1F474 U+1F3FB ; 1.0 # 👴🏻 old man: light skin tone U+1F474 U+1F3FC ; 1.0 # 👴🏼 old man: medium-light skin tone U+1F474 U+1F3FD ; 1.0 # 👴🏽 old man: medium skin tone U+1F474 U+1F3FE ; 1.0 # 👴🏾 old man: medium-dark skin tone U+1F474 U+1F3FF ; 1.0 # 👴🏿 old man: dark skin tone U+1F475 ; 0.6 # 👵 old woman U+1F475 U+1F3FB ; 1.0 # 👵🏻 old woman: light skin tone U+1F475 U+1F3FC ; 1.0 # 👵🏼 old woman: medium-light skin tone U+1F475 U+1F3FD ; 1.0 # 👵🏽 old woman: medium skin tone U+1F475 U+1F3FE ; 1.0 # 👵🏾 old woman: medium-dark skin tone U+1F475 U+1F3FF ; 1.0 # 👵🏿 old woman: dark skin tone U+1F64D ; 0.6 # 🙍 person frowning U+1F64D U+1F3FB ; 1.0 # 🙍🏻 person frowning: light skin tone U+1F64D U+1F3FC ; 1.0 # 🙍🏼 person frowning: medium-light skin tone U+1F64D U+1F3FD ; 1.0 # 🙍🏽 person frowning: medium skin tone U+1F64D U+1F3FE ; 1.0 # 🙍🏾 person frowning: medium-dark skin tone U+1F64D U+1F3FF ; 1.0 # 🙍🏿 person frowning: dark skin tone U+1F64D U+200D U+2642 U+FE0F ; 4.0 # 🙍‍♂️ man frowning U+1F64D U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙍🏻‍♂️ man frowning: light skin tone U+1F64D U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙍🏼‍♂️ man frowning: medium-light skin tone U+1F64D U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙍🏽‍♂️ man frowning: medium skin tone U+1F64D U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙍🏾‍♂️ man frowning: medium-dark skin tone U+1F64D U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙍🏿‍♂️ man frowning: dark skin tone U+1F64D U+200D U+2640 U+FE0F ; 4.0 # 🙍‍♀️ woman frowning U+1F64D U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙍🏻‍♀️ woman frowning: light skin tone U+1F64D U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙍🏼‍♀️ woman frowning: medium-light skin tone U+1F64D U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙍🏽‍♀️ woman frowning: medium skin tone U+1F64D U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙍🏾‍♀️ woman frowning: medium-dark skin tone U+1F64D U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙍🏿‍♀️ woman frowning: dark skin tone U+1F64E ; 0.6 # 🙎 person pouting U+1F64E U+1F3FB ; 1.0 # 🙎🏻 person pouting: light skin tone U+1F64E U+1F3FC ; 1.0 # 🙎🏼 person pouting: medium-light skin tone U+1F64E U+1F3FD ; 1.0 # 🙎🏽 person pouting: medium skin tone U+1F64E U+1F3FE ; 1.0 # 🙎🏾 person pouting: medium-dark skin tone U+1F64E U+1F3FF ; 1.0 # 🙎🏿 person pouting: dark skin tone U+1F64E U+200D U+2642 U+FE0F ; 4.0 # 🙎‍♂️ man pouting U+1F64E U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙎🏻‍♂️ man pouting: light skin tone U+1F64E U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙎🏼‍♂️ man pouting: medium-light skin tone U+1F64E U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙎🏽‍♂️ man pouting: medium skin tone U+1F64E U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙎🏾‍♂️ man pouting: medium-dark skin tone U+1F64E U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙎🏿‍♂️ man pouting: dark skin tone U+1F64E U+200D U+2640 U+FE0F ; 4.0 # 🙎‍♀️ woman pouting U+1F64E U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙎🏻‍♀️ woman pouting: light skin tone U+1F64E U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙎🏼‍♀️ woman pouting: medium-light skin tone U+1F64E U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙎🏽‍♀️ woman pouting: medium skin tone U+1F64E U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙎🏾‍♀️ woman pouting: medium-dark skin tone U+1F64E U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙎🏿‍♀️ woman pouting: dark skin tone U+1F645 ; 0.6 # 🙅 person gesturing NO U+1F645 U+1F3FB ; 1.0 # 🙅🏻 person gesturing NO: light skin tone U+1F645 U+1F3FC ; 1.0 # 🙅🏼 person gesturing NO: medium-light skin tone U+1F645 U+1F3FD ; 1.0 # 🙅🏽 person gesturing NO: medium skin tone U+1F645 U+1F3FE ; 1.0 # 🙅🏾 person gesturing NO: medium-dark skin tone U+1F645 U+1F3FF ; 1.0 # 🙅🏿 person gesturing NO: dark skin tone U+1F645 U+200D U+2642 U+FE0F ; 4.0 # 🙅‍♂️ man gesturing NO U+1F645 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙅🏻‍♂️ man gesturing NO: light skin tone U+1F645 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙅🏼‍♂️ man gesturing NO: medium-light skin tone U+1F645 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙅🏽‍♂️ man gesturing NO: medium skin tone U+1F645 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙅🏾‍♂️ man gesturing NO: medium-dark skin tone U+1F645 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙅🏿‍♂️ man gesturing NO: dark skin tone U+1F645 U+200D U+2640 U+FE0F ; 4.0 # 🙅‍♀️ woman gesturing NO U+1F645 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙅🏻‍♀️ woman gesturing NO: light skin tone U+1F645 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙅🏼‍♀️ woman gesturing NO: medium-light skin tone U+1F645 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙅🏽‍♀️ woman gesturing NO: medium skin tone U+1F645 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙅🏾‍♀️ woman gesturing NO: medium-dark skin tone U+1F645 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙅🏿‍♀️ woman gesturing NO: dark skin tone U+1F646 ; 0.6 # 🙆 person gesturing OK U+1F646 U+1F3FB ; 1.0 # 🙆🏻 person gesturing OK: light skin tone U+1F646 U+1F3FC ; 1.0 # 🙆🏼 person gesturing OK: medium-light skin tone U+1F646 U+1F3FD ; 1.0 # 🙆🏽 person gesturing OK: medium skin tone U+1F646 U+1F3FE ; 1.0 # 🙆🏾 person gesturing OK: medium-dark skin tone U+1F646 U+1F3FF ; 1.0 # 🙆🏿 person gesturing OK: dark skin tone U+1F646 U+200D U+2642 U+FE0F ; 4.0 # 🙆‍♂️ man gesturing OK U+1F646 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙆🏻‍♂️ man gesturing OK: light skin tone U+1F646 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙆🏼‍♂️ man gesturing OK: medium-light skin tone U+1F646 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙆🏽‍♂️ man gesturing OK: medium skin tone U+1F646 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙆🏾‍♂️ man gesturing OK: medium-dark skin tone U+1F646 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙆🏿‍♂️ man gesturing OK: dark skin tone U+1F646 U+200D U+2640 U+FE0F ; 4.0 # 🙆‍♀️ woman gesturing OK U+1F646 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙆🏻‍♀️ woman gesturing OK: light skin tone U+1F646 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙆🏼‍♀️ woman gesturing OK: medium-light skin tone U+1F646 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙆🏽‍♀️ woman gesturing OK: medium skin tone U+1F646 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙆🏾‍♀️ woman gesturing OK: medium-dark skin tone U+1F646 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙆🏿‍♀️ woman gesturing OK: dark skin tone U+1F481 ; 0.6 # 💁 person tipping hand U+1F481 U+1F3FB ; 1.0 # 💁🏻 person tipping hand: light skin tone U+1F481 U+1F3FC ; 1.0 # 💁🏼 person tipping hand: medium-light skin tone U+1F481 U+1F3FD ; 1.0 # 💁🏽 person tipping hand: medium skin tone U+1F481 U+1F3FE ; 1.0 # 💁🏾 person tipping hand: medium-dark skin tone U+1F481 U+1F3FF ; 1.0 # 💁🏿 person tipping hand: dark skin tone U+1F481 U+200D U+2642 U+FE0F ; 4.0 # 💁‍♂️ man tipping hand U+1F481 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 💁🏻‍♂️ man tipping hand: light skin tone U+1F481 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 💁🏼‍♂️ man tipping hand: medium-light skin tone U+1F481 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 💁🏽‍♂️ man tipping hand: medium skin tone U+1F481 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 💁🏾‍♂️ man tipping hand: medium-dark skin tone U+1F481 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 💁🏿‍♂️ man tipping hand: dark skin tone U+1F481 U+200D U+2640 U+FE0F ; 4.0 # 💁‍♀️ woman tipping hand U+1F481 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 💁🏻‍♀️ woman tipping hand: light skin tone U+1F481 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 💁🏼‍♀️ woman tipping hand: medium-light skin tone U+1F481 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 💁🏽‍♀️ woman tipping hand: medium skin tone U+1F481 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 💁🏾‍♀️ woman tipping hand: medium-dark skin tone U+1F481 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 💁🏿‍♀️ woman tipping hand: dark skin tone U+1F64B ; 0.6 # 🙋 person raising hand U+1F64B U+1F3FB ; 1.0 # 🙋🏻 person raising hand: light skin tone U+1F64B U+1F3FC ; 1.0 # 🙋🏼 person raising hand: medium-light skin tone U+1F64B U+1F3FD ; 1.0 # 🙋🏽 person raising hand: medium skin tone U+1F64B U+1F3FE ; 1.0 # 🙋🏾 person raising hand: medium-dark skin tone U+1F64B U+1F3FF ; 1.0 # 🙋🏿 person raising hand: dark skin tone U+1F64B U+200D U+2642 U+FE0F ; 4.0 # 🙋‍♂️ man raising hand U+1F64B U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙋🏻‍♂️ man raising hand: light skin tone U+1F64B U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙋🏼‍♂️ man raising hand: medium-light skin tone U+1F64B U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙋🏽‍♂️ man raising hand: medium skin tone U+1F64B U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙋🏾‍♂️ man raising hand: medium-dark skin tone U+1F64B U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙋🏿‍♂️ man raising hand: dark skin tone U+1F64B U+200D U+2640 U+FE0F ; 4.0 # 🙋‍♀️ woman raising hand U+1F64B U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙋🏻‍♀️ woman raising hand: light skin tone U+1F64B U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙋🏼‍♀️ woman raising hand: medium-light skin tone U+1F64B U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙋🏽‍♀️ woman raising hand: medium skin tone U+1F64B U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙋🏾‍♀️ woman raising hand: medium-dark skin tone U+1F64B U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙋🏿‍♀️ woman raising hand: dark skin tone U+1F9CF ; 12.0 # 🧏 deaf person U+1F9CF U+1F3FB ; 12.0 # 🧏🏻 deaf person: light skin tone U+1F9CF U+1F3FC ; 12.0 # 🧏🏼 deaf person: medium-light skin tone U+1F9CF U+1F3FD ; 12.0 # 🧏🏽 deaf person: medium skin tone U+1F9CF U+1F3FE ; 12.0 # 🧏🏾 deaf person: medium-dark skin tone U+1F9CF U+1F3FF ; 12.0 # 🧏🏿 deaf person: dark skin tone U+1F9CF U+200D U+2642 U+FE0F ; 12.0 # 🧏‍♂️ deaf man U+1F9CF U+1F3FB U+200D U+2642 U+FE0F ; 12.0 # 🧏🏻‍♂️ deaf man: light skin tone U+1F9CF U+1F3FC U+200D U+2642 U+FE0F ; 12.0 # 🧏🏼‍♂️ deaf man: medium-light skin tone U+1F9CF U+1F3FD U+200D U+2642 U+FE0F ; 12.0 # 🧏🏽‍♂️ deaf man: medium skin tone U+1F9CF U+1F3FE U+200D U+2642 U+FE0F ; 12.0 # 🧏🏾‍♂️ deaf man: medium-dark skin tone U+1F9CF U+1F3FF U+200D U+2642 U+FE0F ; 12.0 # 🧏🏿‍♂️ deaf man: dark skin tone U+1F9CF U+200D U+2640 U+FE0F ; 12.0 # 🧏‍♀️ deaf woman U+1F9CF U+1F3FB U+200D U+2640 U+FE0F ; 12.0 # 🧏🏻‍♀️ deaf woman: light skin tone U+1F9CF U+1F3FC U+200D U+2640 U+FE0F ; 12.0 # 🧏🏼‍♀️ deaf woman: medium-light skin tone U+1F9CF U+1F3FD U+200D U+2640 U+FE0F ; 12.0 # 🧏🏽‍♀️ deaf woman: medium skin tone U+1F9CF U+1F3FE U+200D U+2640 U+FE0F ; 12.0 # 🧏🏾‍♀️ deaf woman: medium-dark skin tone U+1F9CF U+1F3FF U+200D U+2640 U+FE0F ; 12.0 # 🧏🏿‍♀️ deaf woman: dark skin tone U+1F647 ; 0.6 # 🙇 person bowing U+1F647 U+1F3FB ; 1.0 # 🙇🏻 person bowing: light skin tone U+1F647 U+1F3FC ; 1.0 # 🙇🏼 person bowing: medium-light skin tone U+1F647 U+1F3FD ; 1.0 # 🙇🏽 person bowing: medium skin tone U+1F647 U+1F3FE ; 1.0 # 🙇🏾 person bowing: medium-dark skin tone U+1F647 U+1F3FF ; 1.0 # 🙇🏿 person bowing: dark skin tone U+1F647 U+200D U+2642 U+FE0F ; 4.0 # 🙇‍♂️ man bowing U+1F647 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🙇🏻‍♂️ man bowing: light skin tone U+1F647 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🙇🏼‍♂️ man bowing: medium-light skin tone U+1F647 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🙇🏽‍♂️ man bowing: medium skin tone U+1F647 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🙇🏾‍♂️ man bowing: medium-dark skin tone U+1F647 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🙇🏿‍♂️ man bowing: dark skin tone U+1F647 U+200D U+2640 U+FE0F ; 4.0 # 🙇‍♀️ woman bowing U+1F647 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🙇🏻‍♀️ woman bowing: light skin tone U+1F647 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🙇🏼‍♀️ woman bowing: medium-light skin tone U+1F647 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🙇🏽‍♀️ woman bowing: medium skin tone U+1F647 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🙇🏾‍♀️ woman bowing: medium-dark skin tone U+1F647 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🙇🏿‍♀️ woman bowing: dark skin tone U+1F926 ; 3.0 # 🤦 person facepalming U+1F926 U+1F3FB ; 3.0 # 🤦🏻 person facepalming: light skin tone U+1F926 U+1F3FC ; 3.0 # 🤦🏼 person facepalming: medium-light skin tone U+1F926 U+1F3FD ; 3.0 # 🤦🏽 person facepalming: medium skin tone U+1F926 U+1F3FE ; 3.0 # 🤦🏾 person facepalming: medium-dark skin tone U+1F926 U+1F3FF ; 3.0 # 🤦🏿 person facepalming: dark skin tone U+1F926 U+200D U+2642 U+FE0F ; 4.0 # 🤦‍♂️ man facepalming U+1F926 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤦🏻‍♂️ man facepalming: light skin tone U+1F926 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤦🏼‍♂️ man facepalming: medium-light skin tone U+1F926 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤦🏽‍♂️ man facepalming: medium skin tone U+1F926 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤦🏾‍♂️ man facepalming: medium-dark skin tone U+1F926 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤦🏿‍♂️ man facepalming: dark skin tone U+1F926 U+200D U+2640 U+FE0F ; 4.0 # 🤦‍♀️ woman facepalming U+1F926 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤦🏻‍♀️ woman facepalming: light skin tone U+1F926 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤦🏼‍♀️ woman facepalming: medium-light skin tone U+1F926 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤦🏽‍♀️ woman facepalming: medium skin tone U+1F926 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤦🏾‍♀️ woman facepalming: medium-dark skin tone U+1F926 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤦🏿‍♀️ woman facepalming: dark skin tone U+1F937 ; 3.0 # 🤷 person shrugging U+1F937 U+1F3FB ; 3.0 # 🤷🏻 person shrugging: light skin tone U+1F937 U+1F3FC ; 3.0 # 🤷🏼 person shrugging: medium-light skin tone U+1F937 U+1F3FD ; 3.0 # 🤷🏽 person shrugging: medium skin tone U+1F937 U+1F3FE ; 3.0 # 🤷🏾 person shrugging: medium-dark skin tone U+1F937 U+1F3FF ; 3.0 # 🤷🏿 person shrugging: dark skin tone U+1F937 U+200D U+2642 U+FE0F ; 4.0 # 🤷‍♂️ man shrugging U+1F937 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤷🏻‍♂️ man shrugging: light skin tone U+1F937 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤷🏼‍♂️ man shrugging: medium-light skin tone U+1F937 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤷🏽‍♂️ man shrugging: medium skin tone U+1F937 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤷🏾‍♂️ man shrugging: medium-dark skin tone U+1F937 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤷🏿‍♂️ man shrugging: dark skin tone U+1F937 U+200D U+2640 U+FE0F ; 4.0 # 🤷‍♀️ woman shrugging U+1F937 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤷🏻‍♀️ woman shrugging: light skin tone U+1F937 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤷🏼‍♀️ woman shrugging: medium-light skin tone U+1F937 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤷🏽‍♀️ woman shrugging: medium skin tone U+1F937 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤷🏾‍♀️ woman shrugging: medium-dark skin tone U+1F937 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤷🏿‍♀️ woman shrugging: dark skin tone U+1F9D1 U+200D U+2695 U+FE0F ; 12.1 # 🧑‍⚕️ health worker U+1F9D1 U+1F3FB U+200D U+2695 U+FE0F ; 12.1 # 🧑🏻‍⚕️ health worker: light skin tone U+1F9D1 U+1F3FC U+200D U+2695 U+FE0F ; 12.1 # 🧑🏼‍⚕️ health worker: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+2695 U+FE0F ; 12.1 # 🧑🏽‍⚕️ health worker: medium skin tone U+1F9D1 U+1F3FE U+200D U+2695 U+FE0F ; 12.1 # 🧑🏾‍⚕️ health worker: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+2695 U+FE0F ; 12.1 # 🧑🏿‍⚕️ health worker: dark skin tone U+1F468 U+200D U+2695 U+FE0F ; 4.0 # 👨‍⚕️ man health worker U+1F468 U+1F3FB U+200D U+2695 U+FE0F ; 4.0 # 👨🏻‍⚕️ man health worker: light skin tone U+1F468 U+1F3FC U+200D U+2695 U+FE0F ; 4.0 # 👨🏼‍⚕️ man health worker: medium-light skin tone U+1F468 U+1F3FD U+200D U+2695 U+FE0F ; 4.0 # 👨🏽‍⚕️ man health worker: medium skin tone U+1F468 U+1F3FE U+200D U+2695 U+FE0F ; 4.0 # 👨🏾‍⚕️ man health worker: medium-dark skin tone U+1F468 U+1F3FF U+200D U+2695 U+FE0F ; 4.0 # 👨🏿‍⚕️ man health worker: dark skin tone U+1F469 U+200D U+2695 U+FE0F ; 4.0 # 👩‍⚕️ woman health worker U+1F469 U+1F3FB U+200D U+2695 U+FE0F ; 4.0 # 👩🏻‍⚕️ woman health worker: light skin tone U+1F469 U+1F3FC U+200D U+2695 U+FE0F ; 4.0 # 👩🏼‍⚕️ woman health worker: medium-light skin tone U+1F469 U+1F3FD U+200D U+2695 U+FE0F ; 4.0 # 👩🏽‍⚕️ woman health worker: medium skin tone U+1F469 U+1F3FE U+200D U+2695 U+FE0F ; 4.0 # 👩🏾‍⚕️ woman health worker: medium-dark skin tone U+1F469 U+1F3FF U+200D U+2695 U+FE0F ; 4.0 # 👩🏿‍⚕️ woman health worker: dark skin tone U+1F9D1 U+200D U+1F393 ; 12.1 # 🧑‍🎓 student U+1F9D1 U+1F3FB U+200D U+1F393 ; 12.1 # 🧑🏻‍🎓 student: light skin tone U+1F9D1 U+1F3FC U+200D U+1F393 ; 12.1 # 🧑🏼‍🎓 student: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F393 ; 12.1 # 🧑🏽‍🎓 student: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F393 ; 12.1 # 🧑🏾‍🎓 student: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F393 ; 12.1 # 🧑🏿‍🎓 student: dark skin tone U+1F468 U+200D U+1F393 ; 4.0 # 👨‍🎓 man student U+1F468 U+1F3FB U+200D U+1F393 ; 4.0 # 👨🏻‍🎓 man student: light skin tone U+1F468 U+1F3FC U+200D U+1F393 ; 4.0 # 👨🏼‍🎓 man student: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F393 ; 4.0 # 👨🏽‍🎓 man student: medium skin tone U+1F468 U+1F3FE U+200D U+1F393 ; 4.0 # 👨🏾‍🎓 man student: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F393 ; 4.0 # 👨🏿‍🎓 man student: dark skin tone U+1F469 U+200D U+1F393 ; 4.0 # 👩‍🎓 woman student U+1F469 U+1F3FB U+200D U+1F393 ; 4.0 # 👩🏻‍🎓 woman student: light skin tone U+1F469 U+1F3FC U+200D U+1F393 ; 4.0 # 👩🏼‍🎓 woman student: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F393 ; 4.0 # 👩🏽‍🎓 woman student: medium skin tone U+1F469 U+1F3FE U+200D U+1F393 ; 4.0 # 👩🏾‍🎓 woman student: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F393 ; 4.0 # 👩🏿‍🎓 woman student: dark skin tone U+1F9D1 U+200D U+1F3EB ; 12.1 # 🧑‍🏫 teacher U+1F9D1 U+1F3FB U+200D U+1F3EB ; 12.1 # 🧑🏻‍🏫 teacher: light skin tone U+1F9D1 U+1F3FC U+200D U+1F3EB ; 12.1 # 🧑🏼‍🏫 teacher: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F3EB ; 12.1 # 🧑🏽‍🏫 teacher: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F3EB ; 12.1 # 🧑🏾‍🏫 teacher: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F3EB ; 12.1 # 🧑🏿‍🏫 teacher: dark skin tone U+1F468 U+200D U+1F3EB ; 4.0 # 👨‍🏫 man teacher U+1F468 U+1F3FB U+200D U+1F3EB ; 4.0 # 👨🏻‍🏫 man teacher: light skin tone U+1F468 U+1F3FC U+200D U+1F3EB ; 4.0 # 👨🏼‍🏫 man teacher: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F3EB ; 4.0 # 👨🏽‍🏫 man teacher: medium skin tone U+1F468 U+1F3FE U+200D U+1F3EB ; 4.0 # 👨🏾‍🏫 man teacher: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F3EB ; 4.0 # 👨🏿‍🏫 man teacher: dark skin tone U+1F469 U+200D U+1F3EB ; 4.0 # 👩‍🏫 woman teacher U+1F469 U+1F3FB U+200D U+1F3EB ; 4.0 # 👩🏻‍🏫 woman teacher: light skin tone U+1F469 U+1F3FC U+200D U+1F3EB ; 4.0 # 👩🏼‍🏫 woman teacher: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F3EB ; 4.0 # 👩🏽‍🏫 woman teacher: medium skin tone U+1F469 U+1F3FE U+200D U+1F3EB ; 4.0 # 👩🏾‍🏫 woman teacher: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F3EB ; 4.0 # 👩🏿‍🏫 woman teacher: dark skin tone U+1F9D1 U+200D U+2696 U+FE0F ; 12.1 # 🧑‍⚖️ judge U+1F9D1 U+1F3FB U+200D U+2696 U+FE0F ; 12.1 # 🧑🏻‍⚖️ judge: light skin tone U+1F9D1 U+1F3FC U+200D U+2696 U+FE0F ; 12.1 # 🧑🏼‍⚖️ judge: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+2696 U+FE0F ; 12.1 # 🧑🏽‍⚖️ judge: medium skin tone U+1F9D1 U+1F3FE U+200D U+2696 U+FE0F ; 12.1 # 🧑🏾‍⚖️ judge: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+2696 U+FE0F ; 12.1 # 🧑🏿‍⚖️ judge: dark skin tone U+1F468 U+200D U+2696 U+FE0F ; 4.0 # 👨‍⚖️ man judge U+1F468 U+1F3FB U+200D U+2696 U+FE0F ; 4.0 # 👨🏻‍⚖️ man judge: light skin tone U+1F468 U+1F3FC U+200D U+2696 U+FE0F ; 4.0 # 👨🏼‍⚖️ man judge: medium-light skin tone U+1F468 U+1F3FD U+200D U+2696 U+FE0F ; 4.0 # 👨🏽‍⚖️ man judge: medium skin tone U+1F468 U+1F3FE U+200D U+2696 U+FE0F ; 4.0 # 👨🏾‍⚖️ man judge: medium-dark skin tone U+1F468 U+1F3FF U+200D U+2696 U+FE0F ; 4.0 # 👨🏿‍⚖️ man judge: dark skin tone U+1F469 U+200D U+2696 U+FE0F ; 4.0 # 👩‍⚖️ woman judge U+1F469 U+1F3FB U+200D U+2696 U+FE0F ; 4.0 # 👩🏻‍⚖️ woman judge: light skin tone U+1F469 U+1F3FC U+200D U+2696 U+FE0F ; 4.0 # 👩🏼‍⚖️ woman judge: medium-light skin tone U+1F469 U+1F3FD U+200D U+2696 U+FE0F ; 4.0 # 👩🏽‍⚖️ woman judge: medium skin tone U+1F469 U+1F3FE U+200D U+2696 U+FE0F ; 4.0 # 👩🏾‍⚖️ woman judge: medium-dark skin tone U+1F469 U+1F3FF U+200D U+2696 U+FE0F ; 4.0 # 👩🏿‍⚖️ woman judge: dark skin tone U+1F9D1 U+200D U+1F33E ; 12.1 # 🧑‍🌾 farmer U+1F9D1 U+1F3FB U+200D U+1F33E ; 12.1 # 🧑🏻‍🌾 farmer: light skin tone U+1F9D1 U+1F3FC U+200D U+1F33E ; 12.1 # 🧑🏼‍🌾 farmer: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F33E ; 12.1 # 🧑🏽‍🌾 farmer: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F33E ; 12.1 # 🧑🏾‍🌾 farmer: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F33E ; 12.1 # 🧑🏿‍🌾 farmer: dark skin tone U+1F468 U+200D U+1F33E ; 4.0 # 👨‍🌾 man farmer U+1F468 U+1F3FB U+200D U+1F33E ; 4.0 # 👨🏻‍🌾 man farmer: light skin tone U+1F468 U+1F3FC U+200D U+1F33E ; 4.0 # 👨🏼‍🌾 man farmer: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F33E ; 4.0 # 👨🏽‍🌾 man farmer: medium skin tone U+1F468 U+1F3FE U+200D U+1F33E ; 4.0 # 👨🏾‍🌾 man farmer: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F33E ; 4.0 # 👨🏿‍🌾 man farmer: dark skin tone U+1F469 U+200D U+1F33E ; 4.0 # 👩‍🌾 woman farmer U+1F469 U+1F3FB U+200D U+1F33E ; 4.0 # 👩🏻‍🌾 woman farmer: light skin tone U+1F469 U+1F3FC U+200D U+1F33E ; 4.0 # 👩🏼‍🌾 woman farmer: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F33E ; 4.0 # 👩🏽‍🌾 woman farmer: medium skin tone U+1F469 U+1F3FE U+200D U+1F33E ; 4.0 # 👩🏾‍🌾 woman farmer: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F33E ; 4.0 # 👩🏿‍🌾 woman farmer: dark skin tone U+1F9D1 U+200D U+1F373 ; 12.1 # 🧑‍🍳 cook U+1F9D1 U+1F3FB U+200D U+1F373 ; 12.1 # 🧑🏻‍🍳 cook: light skin tone U+1F9D1 U+1F3FC U+200D U+1F373 ; 12.1 # 🧑🏼‍🍳 cook: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F373 ; 12.1 # 🧑🏽‍🍳 cook: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F373 ; 12.1 # 🧑🏾‍🍳 cook: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F373 ; 12.1 # 🧑🏿‍🍳 cook: dark skin tone U+1F468 U+200D U+1F373 ; 4.0 # 👨‍🍳 man cook U+1F468 U+1F3FB U+200D U+1F373 ; 4.0 # 👨🏻‍🍳 man cook: light skin tone U+1F468 U+1F3FC U+200D U+1F373 ; 4.0 # 👨🏼‍🍳 man cook: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F373 ; 4.0 # 👨🏽‍🍳 man cook: medium skin tone U+1F468 U+1F3FE U+200D U+1F373 ; 4.0 # 👨🏾‍🍳 man cook: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F373 ; 4.0 # 👨🏿‍🍳 man cook: dark skin tone U+1F469 U+200D U+1F373 ; 4.0 # 👩‍🍳 woman cook U+1F469 U+1F3FB U+200D U+1F373 ; 4.0 # 👩🏻‍🍳 woman cook: light skin tone U+1F469 U+1F3FC U+200D U+1F373 ; 4.0 # 👩🏼‍🍳 woman cook: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F373 ; 4.0 # 👩🏽‍🍳 woman cook: medium skin tone U+1F469 U+1F3FE U+200D U+1F373 ; 4.0 # 👩🏾‍🍳 woman cook: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F373 ; 4.0 # 👩🏿‍🍳 woman cook: dark skin tone U+1F9D1 U+200D U+1F527 ; 12.1 # 🧑‍🔧 mechanic U+1F9D1 U+1F3FB U+200D U+1F527 ; 12.1 # 🧑🏻‍🔧 mechanic: light skin tone U+1F9D1 U+1F3FC U+200D U+1F527 ; 12.1 # 🧑🏼‍🔧 mechanic: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F527 ; 12.1 # 🧑🏽‍🔧 mechanic: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F527 ; 12.1 # 🧑🏾‍🔧 mechanic: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F527 ; 12.1 # 🧑🏿‍🔧 mechanic: dark skin tone U+1F468 U+200D U+1F527 ; 4.0 # 👨‍🔧 man mechanic U+1F468 U+1F3FB U+200D U+1F527 ; 4.0 # 👨🏻‍🔧 man mechanic: light skin tone U+1F468 U+1F3FC U+200D U+1F527 ; 4.0 # 👨🏼‍🔧 man mechanic: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F527 ; 4.0 # 👨🏽‍🔧 man mechanic: medium skin tone U+1F468 U+1F3FE U+200D U+1F527 ; 4.0 # 👨🏾‍🔧 man mechanic: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F527 ; 4.0 # 👨🏿‍🔧 man mechanic: dark skin tone U+1F469 U+200D U+1F527 ; 4.0 # 👩‍🔧 woman mechanic U+1F469 U+1F3FB U+200D U+1F527 ; 4.0 # 👩🏻‍🔧 woman mechanic: light skin tone U+1F469 U+1F3FC U+200D U+1F527 ; 4.0 # 👩🏼‍🔧 woman mechanic: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F527 ; 4.0 # 👩🏽‍🔧 woman mechanic: medium skin tone U+1F469 U+1F3FE U+200D U+1F527 ; 4.0 # 👩🏾‍🔧 woman mechanic: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F527 ; 4.0 # 👩🏿‍🔧 woman mechanic: dark skin tone U+1F9D1 U+200D U+1F3ED ; 12.1 # 🧑‍🏭 factory worker U+1F9D1 U+1F3FB U+200D U+1F3ED ; 12.1 # 🧑🏻‍🏭 factory worker: light skin tone U+1F9D1 U+1F3FC U+200D U+1F3ED ; 12.1 # 🧑🏼‍🏭 factory worker: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F3ED ; 12.1 # 🧑🏽‍🏭 factory worker: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F3ED ; 12.1 # 🧑🏾‍🏭 factory worker: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F3ED ; 12.1 # 🧑🏿‍🏭 factory worker: dark skin tone U+1F468 U+200D U+1F3ED ; 4.0 # 👨‍🏭 man factory worker U+1F468 U+1F3FB U+200D U+1F3ED ; 4.0 # 👨🏻‍🏭 man factory worker: light skin tone U+1F468 U+1F3FC U+200D U+1F3ED ; 4.0 # 👨🏼‍🏭 man factory worker: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F3ED ; 4.0 # 👨🏽‍🏭 man factory worker: medium skin tone U+1F468 U+1F3FE U+200D U+1F3ED ; 4.0 # 👨🏾‍🏭 man factory worker: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F3ED ; 4.0 # 👨🏿‍🏭 man factory worker: dark skin tone U+1F469 U+200D U+1F3ED ; 4.0 # 👩‍🏭 woman factory worker U+1F469 U+1F3FB U+200D U+1F3ED ; 4.0 # 👩🏻‍🏭 woman factory worker: light skin tone U+1F469 U+1F3FC U+200D U+1F3ED ; 4.0 # 👩🏼‍🏭 woman factory worker: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F3ED ; 4.0 # 👩🏽‍🏭 woman factory worker: medium skin tone U+1F469 U+1F3FE U+200D U+1F3ED ; 4.0 # 👩🏾‍🏭 woman factory worker: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F3ED ; 4.0 # 👩🏿‍🏭 woman factory worker: dark skin tone U+1F9D1 U+200D U+1F4BC ; 12.1 # 🧑‍💼 office worker U+1F9D1 U+1F3FB U+200D U+1F4BC ; 12.1 # 🧑🏻‍💼 office worker: light skin tone U+1F9D1 U+1F3FC U+200D U+1F4BC ; 12.1 # 🧑🏼‍💼 office worker: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F4BC ; 12.1 # 🧑🏽‍💼 office worker: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F4BC ; 12.1 # 🧑🏾‍💼 office worker: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F4BC ; 12.1 # 🧑🏿‍💼 office worker: dark skin tone U+1F468 U+200D U+1F4BC ; 4.0 # 👨‍💼 man office worker U+1F468 U+1F3FB U+200D U+1F4BC ; 4.0 # 👨🏻‍💼 man office worker: light skin tone U+1F468 U+1F3FC U+200D U+1F4BC ; 4.0 # 👨🏼‍💼 man office worker: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F4BC ; 4.0 # 👨🏽‍💼 man office worker: medium skin tone U+1F468 U+1F3FE U+200D U+1F4BC ; 4.0 # 👨🏾‍💼 man office worker: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F4BC ; 4.0 # 👨🏿‍💼 man office worker: dark skin tone U+1F469 U+200D U+1F4BC ; 4.0 # 👩‍💼 woman office worker U+1F469 U+1F3FB U+200D U+1F4BC ; 4.0 # 👩🏻‍💼 woman office worker: light skin tone U+1F469 U+1F3FC U+200D U+1F4BC ; 4.0 # 👩🏼‍💼 woman office worker: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F4BC ; 4.0 # 👩🏽‍💼 woman office worker: medium skin tone U+1F469 U+1F3FE U+200D U+1F4BC ; 4.0 # 👩🏾‍💼 woman office worker: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F4BC ; 4.0 # 👩🏿‍💼 woman office worker: dark skin tone U+1F9D1 U+200D U+1F52C ; 12.1 # 🧑‍🔬 scientist U+1F9D1 U+1F3FB U+200D U+1F52C ; 12.1 # 🧑🏻‍🔬 scientist: light skin tone U+1F9D1 U+1F3FC U+200D U+1F52C ; 12.1 # 🧑🏼‍🔬 scientist: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F52C ; 12.1 # 🧑🏽‍🔬 scientist: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F52C ; 12.1 # 🧑🏾‍🔬 scientist: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F52C ; 12.1 # 🧑🏿‍🔬 scientist: dark skin tone U+1F468 U+200D U+1F52C ; 4.0 # 👨‍🔬 man scientist U+1F468 U+1F3FB U+200D U+1F52C ; 4.0 # 👨🏻‍🔬 man scientist: light skin tone U+1F468 U+1F3FC U+200D U+1F52C ; 4.0 # 👨🏼‍🔬 man scientist: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F52C ; 4.0 # 👨🏽‍🔬 man scientist: medium skin tone U+1F468 U+1F3FE U+200D U+1F52C ; 4.0 # 👨🏾‍🔬 man scientist: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F52C ; 4.0 # 👨🏿‍🔬 man scientist: dark skin tone U+1F469 U+200D U+1F52C ; 4.0 # 👩‍🔬 woman scientist U+1F469 U+1F3FB U+200D U+1F52C ; 4.0 # 👩🏻‍🔬 woman scientist: light skin tone U+1F469 U+1F3FC U+200D U+1F52C ; 4.0 # 👩🏼‍🔬 woman scientist: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F52C ; 4.0 # 👩🏽‍🔬 woman scientist: medium skin tone U+1F469 U+1F3FE U+200D U+1F52C ; 4.0 # 👩🏾‍🔬 woman scientist: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F52C ; 4.0 # 👩🏿‍🔬 woman scientist: dark skin tone U+1F9D1 U+200D U+1F4BB ; 12.1 # 🧑‍💻 technologist U+1F9D1 U+1F3FB U+200D U+1F4BB ; 12.1 # 🧑🏻‍💻 technologist: light skin tone U+1F9D1 U+1F3FC U+200D U+1F4BB ; 12.1 # 🧑🏼‍💻 technologist: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F4BB ; 12.1 # 🧑🏽‍💻 technologist: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F4BB ; 12.1 # 🧑🏾‍💻 technologist: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F4BB ; 12.1 # 🧑🏿‍💻 technologist: dark skin tone U+1F468 U+200D U+1F4BB ; 4.0 # 👨‍💻 man technologist U+1F468 U+1F3FB U+200D U+1F4BB ; 4.0 # 👨🏻‍💻 man technologist: light skin tone U+1F468 U+1F3FC U+200D U+1F4BB ; 4.0 # 👨🏼‍💻 man technologist: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F4BB ; 4.0 # 👨🏽‍💻 man technologist: medium skin tone U+1F468 U+1F3FE U+200D U+1F4BB ; 4.0 # 👨🏾‍💻 man technologist: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F4BB ; 4.0 # 👨🏿‍💻 man technologist: dark skin tone U+1F469 U+200D U+1F4BB ; 4.0 # 👩‍💻 woman technologist U+1F469 U+1F3FB U+200D U+1F4BB ; 4.0 # 👩🏻‍💻 woman technologist: light skin tone U+1F469 U+1F3FC U+200D U+1F4BB ; 4.0 # 👩🏼‍💻 woman technologist: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F4BB ; 4.0 # 👩🏽‍💻 woman technologist: medium skin tone U+1F469 U+1F3FE U+200D U+1F4BB ; 4.0 # 👩🏾‍💻 woman technologist: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F4BB ; 4.0 # 👩🏿‍💻 woman technologist: dark skin tone U+1F9D1 U+200D U+1F3A4 ; 12.1 # 🧑‍🎤 singer U+1F9D1 U+1F3FB U+200D U+1F3A4 ; 12.1 # 🧑🏻‍🎤 singer: light skin tone U+1F9D1 U+1F3FC U+200D U+1F3A4 ; 12.1 # 🧑🏼‍🎤 singer: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F3A4 ; 12.1 # 🧑🏽‍🎤 singer: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F3A4 ; 12.1 # 🧑🏾‍🎤 singer: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F3A4 ; 12.1 # 🧑🏿‍🎤 singer: dark skin tone U+1F468 U+200D U+1F3A4 ; 4.0 # 👨‍🎤 man singer U+1F468 U+1F3FB U+200D U+1F3A4 ; 4.0 # 👨🏻‍🎤 man singer: light skin tone U+1F468 U+1F3FC U+200D U+1F3A4 ; 4.0 # 👨🏼‍🎤 man singer: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F3A4 ; 4.0 # 👨🏽‍🎤 man singer: medium skin tone U+1F468 U+1F3FE U+200D U+1F3A4 ; 4.0 # 👨🏾‍🎤 man singer: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F3A4 ; 4.0 # 👨🏿‍🎤 man singer: dark skin tone U+1F469 U+200D U+1F3A4 ; 4.0 # 👩‍🎤 woman singer U+1F469 U+1F3FB U+200D U+1F3A4 ; 4.0 # 👩🏻‍🎤 woman singer: light skin tone U+1F469 U+1F3FC U+200D U+1F3A4 ; 4.0 # 👩🏼‍🎤 woman singer: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F3A4 ; 4.0 # 👩🏽‍🎤 woman singer: medium skin tone U+1F469 U+1F3FE U+200D U+1F3A4 ; 4.0 # 👩🏾‍🎤 woman singer: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F3A4 ; 4.0 # 👩🏿‍🎤 woman singer: dark skin tone U+1F9D1 U+200D U+1F3A8 ; 12.1 # 🧑‍🎨 artist U+1F9D1 U+1F3FB U+200D U+1F3A8 ; 12.1 # 🧑🏻‍🎨 artist: light skin tone U+1F9D1 U+1F3FC U+200D U+1F3A8 ; 12.1 # 🧑🏼‍🎨 artist: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F3A8 ; 12.1 # 🧑🏽‍🎨 artist: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F3A8 ; 12.1 # 🧑🏾‍🎨 artist: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F3A8 ; 12.1 # 🧑🏿‍🎨 artist: dark skin tone U+1F468 U+200D U+1F3A8 ; 4.0 # 👨‍🎨 man artist U+1F468 U+1F3FB U+200D U+1F3A8 ; 4.0 # 👨🏻‍🎨 man artist: light skin tone U+1F468 U+1F3FC U+200D U+1F3A8 ; 4.0 # 👨🏼‍🎨 man artist: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F3A8 ; 4.0 # 👨🏽‍🎨 man artist: medium skin tone U+1F468 U+1F3FE U+200D U+1F3A8 ; 4.0 # 👨🏾‍🎨 man artist: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F3A8 ; 4.0 # 👨🏿‍🎨 man artist: dark skin tone U+1F469 U+200D U+1F3A8 ; 4.0 # 👩‍🎨 woman artist U+1F469 U+1F3FB U+200D U+1F3A8 ; 4.0 # 👩🏻‍🎨 woman artist: light skin tone U+1F469 U+1F3FC U+200D U+1F3A8 ; 4.0 # 👩🏼‍🎨 woman artist: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F3A8 ; 4.0 # 👩🏽‍🎨 woman artist: medium skin tone U+1F469 U+1F3FE U+200D U+1F3A8 ; 4.0 # 👩🏾‍🎨 woman artist: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F3A8 ; 4.0 # 👩🏿‍🎨 woman artist: dark skin tone U+1F9D1 U+200D U+2708 U+FE0F ; 12.1 # 🧑‍✈️ pilot U+1F9D1 U+1F3FB U+200D U+2708 U+FE0F ; 12.1 # 🧑🏻‍✈️ pilot: light skin tone U+1F9D1 U+1F3FC U+200D U+2708 U+FE0F ; 12.1 # 🧑🏼‍✈️ pilot: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+2708 U+FE0F ; 12.1 # 🧑🏽‍✈️ pilot: medium skin tone U+1F9D1 U+1F3FE U+200D U+2708 U+FE0F ; 12.1 # 🧑🏾‍✈️ pilot: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+2708 U+FE0F ; 12.1 # 🧑🏿‍✈️ pilot: dark skin tone U+1F468 U+200D U+2708 U+FE0F ; 4.0 # 👨‍✈️ man pilot U+1F468 U+1F3FB U+200D U+2708 U+FE0F ; 4.0 # 👨🏻‍✈️ man pilot: light skin tone U+1F468 U+1F3FC U+200D U+2708 U+FE0F ; 4.0 # 👨🏼‍✈️ man pilot: medium-light skin tone U+1F468 U+1F3FD U+200D U+2708 U+FE0F ; 4.0 # 👨🏽‍✈️ man pilot: medium skin tone U+1F468 U+1F3FE U+200D U+2708 U+FE0F ; 4.0 # 👨🏾‍✈️ man pilot: medium-dark skin tone U+1F468 U+1F3FF U+200D U+2708 U+FE0F ; 4.0 # 👨🏿‍✈️ man pilot: dark skin tone U+1F469 U+200D U+2708 U+FE0F ; 4.0 # 👩‍✈️ woman pilot U+1F469 U+1F3FB U+200D U+2708 U+FE0F ; 4.0 # 👩🏻‍✈️ woman pilot: light skin tone U+1F469 U+1F3FC U+200D U+2708 U+FE0F ; 4.0 # 👩🏼‍✈️ woman pilot: medium-light skin tone U+1F469 U+1F3FD U+200D U+2708 U+FE0F ; 4.0 # 👩🏽‍✈️ woman pilot: medium skin tone U+1F469 U+1F3FE U+200D U+2708 U+FE0F ; 4.0 # 👩🏾‍✈️ woman pilot: medium-dark skin tone U+1F469 U+1F3FF U+200D U+2708 U+FE0F ; 4.0 # 👩🏿‍✈️ woman pilot: dark skin tone U+1F9D1 U+200D U+1F680 ; 12.1 # 🧑‍🚀 astronaut U+1F9D1 U+1F3FB U+200D U+1F680 ; 12.1 # 🧑🏻‍🚀 astronaut: light skin tone U+1F9D1 U+1F3FC U+200D U+1F680 ; 12.1 # 🧑🏼‍🚀 astronaut: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F680 ; 12.1 # 🧑🏽‍🚀 astronaut: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F680 ; 12.1 # 🧑🏾‍🚀 astronaut: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F680 ; 12.1 # 🧑🏿‍🚀 astronaut: dark skin tone U+1F468 U+200D U+1F680 ; 4.0 # 👨‍🚀 man astronaut U+1F468 U+1F3FB U+200D U+1F680 ; 4.0 # 👨🏻‍🚀 man astronaut: light skin tone U+1F468 U+1F3FC U+200D U+1F680 ; 4.0 # 👨🏼‍🚀 man astronaut: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F680 ; 4.0 # 👨🏽‍🚀 man astronaut: medium skin tone U+1F468 U+1F3FE U+200D U+1F680 ; 4.0 # 👨🏾‍🚀 man astronaut: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F680 ; 4.0 # 👨🏿‍🚀 man astronaut: dark skin tone U+1F469 U+200D U+1F680 ; 4.0 # 👩‍🚀 woman astronaut U+1F469 U+1F3FB U+200D U+1F680 ; 4.0 # 👩🏻‍🚀 woman astronaut: light skin tone U+1F469 U+1F3FC U+200D U+1F680 ; 4.0 # 👩🏼‍🚀 woman astronaut: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F680 ; 4.0 # 👩🏽‍🚀 woman astronaut: medium skin tone U+1F469 U+1F3FE U+200D U+1F680 ; 4.0 # 👩🏾‍🚀 woman astronaut: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F680 ; 4.0 # 👩🏿‍🚀 woman astronaut: dark skin tone U+1F9D1 U+200D U+1F692 ; 12.1 # 🧑‍🚒 firefighter U+1F9D1 U+1F3FB U+200D U+1F692 ; 12.1 # 🧑🏻‍🚒 firefighter: light skin tone U+1F9D1 U+1F3FC U+200D U+1F692 ; 12.1 # 🧑🏼‍🚒 firefighter: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F692 ; 12.1 # 🧑🏽‍🚒 firefighter: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F692 ; 12.1 # 🧑🏾‍🚒 firefighter: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F692 ; 12.1 # 🧑🏿‍🚒 firefighter: dark skin tone U+1F468 U+200D U+1F692 ; 4.0 # 👨‍🚒 man firefighter U+1F468 U+1F3FB U+200D U+1F692 ; 4.0 # 👨🏻‍🚒 man firefighter: light skin tone U+1F468 U+1F3FC U+200D U+1F692 ; 4.0 # 👨🏼‍🚒 man firefighter: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F692 ; 4.0 # 👨🏽‍🚒 man firefighter: medium skin tone U+1F468 U+1F3FE U+200D U+1F692 ; 4.0 # 👨🏾‍🚒 man firefighter: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F692 ; 4.0 # 👨🏿‍🚒 man firefighter: dark skin tone U+1F469 U+200D U+1F692 ; 4.0 # 👩‍🚒 woman firefighter U+1F469 U+1F3FB U+200D U+1F692 ; 4.0 # 👩🏻‍🚒 woman firefighter: light skin tone U+1F469 U+1F3FC U+200D U+1F692 ; 4.0 # 👩🏼‍🚒 woman firefighter: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F692 ; 4.0 # 👩🏽‍🚒 woman firefighter: medium skin tone U+1F469 U+1F3FE U+200D U+1F692 ; 4.0 # 👩🏾‍🚒 woman firefighter: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F692 ; 4.0 # 👩🏿‍🚒 woman firefighter: dark skin tone U+1F46E ; 0.6 # 👮 police officer U+1F46E U+1F3FB ; 1.0 # 👮🏻 police officer: light skin tone U+1F46E U+1F3FC ; 1.0 # 👮🏼 police officer: medium-light skin tone U+1F46E U+1F3FD ; 1.0 # 👮🏽 police officer: medium skin tone U+1F46E U+1F3FE ; 1.0 # 👮🏾 police officer: medium-dark skin tone U+1F46E U+1F3FF ; 1.0 # 👮🏿 police officer: dark skin tone U+1F46E U+200D U+2642 U+FE0F ; 4.0 # 👮‍♂️ man police officer U+1F46E U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 👮🏻‍♂️ man police officer: light skin tone U+1F46E U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 👮🏼‍♂️ man police officer: medium-light skin tone U+1F46E U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 👮🏽‍♂️ man police officer: medium skin tone U+1F46E U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 👮🏾‍♂️ man police officer: medium-dark skin tone U+1F46E U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 👮🏿‍♂️ man police officer: dark skin tone U+1F46E U+200D U+2640 U+FE0F ; 4.0 # 👮‍♀️ woman police officer U+1F46E U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 👮🏻‍♀️ woman police officer: light skin tone U+1F46E U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 👮🏼‍♀️ woman police officer: medium-light skin tone U+1F46E U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 👮🏽‍♀️ woman police officer: medium skin tone U+1F46E U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 👮🏾‍♀️ woman police officer: medium-dark skin tone U+1F46E U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 👮🏿‍♀️ woman police officer: dark skin tone U+1F575 ; 0.7 # 🕵 detective U+1F575 U+1F3FB ; 2.0 # 🕵🏻 detective: light skin tone U+1F575 U+1F3FC ; 2.0 # 🕵🏼 detective: medium-light skin tone U+1F575 U+1F3FD ; 2.0 # 🕵🏽 detective: medium skin tone U+1F575 U+1F3FE ; 2.0 # 🕵🏾 detective: medium-dark skin tone U+1F575 U+1F3FF ; 2.0 # 🕵🏿 detective: dark skin tone U+1F575 U+FE0F U+200D U+2642 U+FE0F ; 4.0 # 🕵️‍♂️ man detective U+1F575 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🕵🏻‍♂️ man detective: light skin tone U+1F575 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🕵🏼‍♂️ man detective: medium-light skin tone U+1F575 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🕵🏽‍♂️ man detective: medium skin tone U+1F575 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🕵🏾‍♂️ man detective: medium-dark skin tone U+1F575 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🕵🏿‍♂️ man detective: dark skin tone U+1F575 U+FE0F U+200D U+2640 U+FE0F ; 4.0 # 🕵️‍♀️ woman detective U+1F575 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🕵🏻‍♀️ woman detective: light skin tone U+1F575 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🕵🏼‍♀️ woman detective: medium-light skin tone U+1F575 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🕵🏽‍♀️ woman detective: medium skin tone U+1F575 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🕵🏾‍♀️ woman detective: medium-dark skin tone U+1F575 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🕵🏿‍♀️ woman detective: dark skin tone U+1F482 ; 0.6 # 💂 guard U+1F482 U+1F3FB ; 1.0 # 💂🏻 guard: light skin tone U+1F482 U+1F3FC ; 1.0 # 💂🏼 guard: medium-light skin tone U+1F482 U+1F3FD ; 1.0 # 💂🏽 guard: medium skin tone U+1F482 U+1F3FE ; 1.0 # 💂🏾 guard: medium-dark skin tone U+1F482 U+1F3FF ; 1.0 # 💂🏿 guard: dark skin tone U+1F482 U+200D U+2642 U+FE0F ; 4.0 # 💂‍♂️ man guard U+1F482 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 💂🏻‍♂️ man guard: light skin tone U+1F482 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 💂🏼‍♂️ man guard: medium-light skin tone U+1F482 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 💂🏽‍♂️ man guard: medium skin tone U+1F482 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 💂🏾‍♂️ man guard: medium-dark skin tone U+1F482 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 💂🏿‍♂️ man guard: dark skin tone U+1F482 U+200D U+2640 U+FE0F ; 4.0 # 💂‍♀️ woman guard U+1F482 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 💂🏻‍♀️ woman guard: light skin tone U+1F482 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 💂🏼‍♀️ woman guard: medium-light skin tone U+1F482 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 💂🏽‍♀️ woman guard: medium skin tone U+1F482 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 💂🏾‍♀️ woman guard: medium-dark skin tone U+1F482 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 💂🏿‍♀️ woman guard: dark skin tone U+1F977 ; 13.0 # 🥷 ninja U+1F977 U+1F3FB ; 13.0 # 🥷🏻 ninja: light skin tone U+1F977 U+1F3FC ; 13.0 # 🥷🏼 ninja: medium-light skin tone U+1F977 U+1F3FD ; 13.0 # 🥷🏽 ninja: medium skin tone U+1F977 U+1F3FE ; 13.0 # 🥷🏾 ninja: medium-dark skin tone U+1F977 U+1F3FF ; 13.0 # 🥷🏿 ninja: dark skin tone U+1F477 ; 0.6 # 👷 construction worker U+1F477 U+1F3FB ; 1.0 # 👷🏻 construction worker: light skin tone U+1F477 U+1F3FC ; 1.0 # 👷🏼 construction worker: medium-light skin tone U+1F477 U+1F3FD ; 1.0 # 👷🏽 construction worker: medium skin tone U+1F477 U+1F3FE ; 1.0 # 👷🏾 construction worker: medium-dark skin tone U+1F477 U+1F3FF ; 1.0 # 👷🏿 construction worker: dark skin tone U+1F477 U+200D U+2642 U+FE0F ; 4.0 # 👷‍♂️ man construction worker U+1F477 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 👷🏻‍♂️ man construction worker: light skin tone U+1F477 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 👷🏼‍♂️ man construction worker: medium-light skin tone U+1F477 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 👷🏽‍♂️ man construction worker: medium skin tone U+1F477 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 👷🏾‍♂️ man construction worker: medium-dark skin tone U+1F477 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 👷🏿‍♂️ man construction worker: dark skin tone U+1F477 U+200D U+2640 U+FE0F ; 4.0 # 👷‍♀️ woman construction worker U+1F477 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 👷🏻‍♀️ woman construction worker: light skin tone U+1F477 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 👷🏼‍♀️ woman construction worker: medium-light skin tone U+1F477 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 👷🏽‍♀️ woman construction worker: medium skin tone U+1F477 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 👷🏾‍♀️ woman construction worker: medium-dark skin tone U+1F477 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 👷🏿‍♀️ woman construction worker: dark skin tone U+1FAC5 ; 14.0 # 🫅 person with crown U+1FAC5 U+1F3FB ; 14.0 # 🫅🏻 person with crown: light skin tone U+1FAC5 U+1F3FC ; 14.0 # 🫅🏼 person with crown: medium-light skin tone U+1FAC5 U+1F3FD ; 14.0 # 🫅🏽 person with crown: medium skin tone U+1FAC5 U+1F3FE ; 14.0 # 🫅🏾 person with crown: medium-dark skin tone U+1FAC5 U+1F3FF ; 14.0 # 🫅🏿 person with crown: dark skin tone U+1F934 ; 3.0 # 🤴 prince U+1F934 U+1F3FB ; 3.0 # 🤴🏻 prince: light skin tone U+1F934 U+1F3FC ; 3.0 # 🤴🏼 prince: medium-light skin tone U+1F934 U+1F3FD ; 3.0 # 🤴🏽 prince: medium skin tone U+1F934 U+1F3FE ; 3.0 # 🤴🏾 prince: medium-dark skin tone U+1F934 U+1F3FF ; 3.0 # 🤴🏿 prince: dark skin tone U+1F478 ; 0.6 # 👸 princess U+1F478 U+1F3FB ; 1.0 # 👸🏻 princess: light skin tone U+1F478 U+1F3FC ; 1.0 # 👸🏼 princess: medium-light skin tone U+1F478 U+1F3FD ; 1.0 # 👸🏽 princess: medium skin tone U+1F478 U+1F3FE ; 1.0 # 👸🏾 princess: medium-dark skin tone U+1F478 U+1F3FF ; 1.0 # 👸🏿 princess: dark skin tone U+1F473 ; 0.6 # 👳 person wearing turban U+1F473 U+1F3FB ; 1.0 # 👳🏻 person wearing turban: light skin tone U+1F473 U+1F3FC ; 1.0 # 👳🏼 person wearing turban: medium-light skin tone U+1F473 U+1F3FD ; 1.0 # 👳🏽 person wearing turban: medium skin tone U+1F473 U+1F3FE ; 1.0 # 👳🏾 person wearing turban: medium-dark skin tone U+1F473 U+1F3FF ; 1.0 # 👳🏿 person wearing turban: dark skin tone U+1F473 U+200D U+2642 U+FE0F ; 4.0 # 👳‍♂️ man wearing turban U+1F473 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 👳🏻‍♂️ man wearing turban: light skin tone U+1F473 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 👳🏼‍♂️ man wearing turban: medium-light skin tone U+1F473 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 👳🏽‍♂️ man wearing turban: medium skin tone U+1F473 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 👳🏾‍♂️ man wearing turban: medium-dark skin tone U+1F473 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 👳🏿‍♂️ man wearing turban: dark skin tone U+1F473 U+200D U+2640 U+FE0F ; 4.0 # 👳‍♀️ woman wearing turban U+1F473 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 👳🏻‍♀️ woman wearing turban: light skin tone U+1F473 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 👳🏼‍♀️ woman wearing turban: medium-light skin tone U+1F473 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 👳🏽‍♀️ woman wearing turban: medium skin tone U+1F473 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 👳🏾‍♀️ woman wearing turban: medium-dark skin tone U+1F473 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 👳🏿‍♀️ woman wearing turban: dark skin tone U+1F472 ; 0.6 # 👲 person with skullcap U+1F472 U+1F3FB ; 1.0 # 👲🏻 person with skullcap: light skin tone U+1F472 U+1F3FC ; 1.0 # 👲🏼 person with skullcap: medium-light skin tone U+1F472 U+1F3FD ; 1.0 # 👲🏽 person with skullcap: medium skin tone U+1F472 U+1F3FE ; 1.0 # 👲🏾 person with skullcap: medium-dark skin tone U+1F472 U+1F3FF ; 1.0 # 👲🏿 person with skullcap: dark skin tone U+1F9D5 ; 5.0 # 🧕 woman with headscarf U+1F9D5 U+1F3FB ; 5.0 # 🧕🏻 woman with headscarf: light skin tone U+1F9D5 U+1F3FC ; 5.0 # 🧕🏼 woman with headscarf: medium-light skin tone U+1F9D5 U+1F3FD ; 5.0 # 🧕🏽 woman with headscarf: medium skin tone U+1F9D5 U+1F3FE ; 5.0 # 🧕🏾 woman with headscarf: medium-dark skin tone U+1F9D5 U+1F3FF ; 5.0 # 🧕🏿 woman with headscarf: dark skin tone U+1F935 ; 3.0 # 🤵 person in tuxedo U+1F935 U+1F3FB ; 3.0 # 🤵🏻 person in tuxedo: light skin tone U+1F935 U+1F3FC ; 3.0 # 🤵🏼 person in tuxedo: medium-light skin tone U+1F935 U+1F3FD ; 3.0 # 🤵🏽 person in tuxedo: medium skin tone U+1F935 U+1F3FE ; 3.0 # 🤵🏾 person in tuxedo: medium-dark skin tone U+1F935 U+1F3FF ; 3.0 # 🤵🏿 person in tuxedo: dark skin tone U+1F935 U+200D U+2642 U+FE0F ; 13.0 # 🤵‍♂️ man in tuxedo U+1F935 U+1F3FB U+200D U+2642 U+FE0F ; 13.0 # 🤵🏻‍♂️ man in tuxedo: light skin tone U+1F935 U+1F3FC U+200D U+2642 U+FE0F ; 13.0 # 🤵🏼‍♂️ man in tuxedo: medium-light skin tone U+1F935 U+1F3FD U+200D U+2642 U+FE0F ; 13.0 # 🤵🏽‍♂️ man in tuxedo: medium skin tone U+1F935 U+1F3FE U+200D U+2642 U+FE0F ; 13.0 # 🤵🏾‍♂️ man in tuxedo: medium-dark skin tone U+1F935 U+1F3FF U+200D U+2642 U+FE0F ; 13.0 # 🤵🏿‍♂️ man in tuxedo: dark skin tone U+1F935 U+200D U+2640 U+FE0F ; 13.0 # 🤵‍♀️ woman in tuxedo U+1F935 U+1F3FB U+200D U+2640 U+FE0F ; 13.0 # 🤵🏻‍♀️ woman in tuxedo: light skin tone U+1F935 U+1F3FC U+200D U+2640 U+FE0F ; 13.0 # 🤵🏼‍♀️ woman in tuxedo: medium-light skin tone U+1F935 U+1F3FD U+200D U+2640 U+FE0F ; 13.0 # 🤵🏽‍♀️ woman in tuxedo: medium skin tone U+1F935 U+1F3FE U+200D U+2640 U+FE0F ; 13.0 # 🤵🏾‍♀️ woman in tuxedo: medium-dark skin tone U+1F935 U+1F3FF U+200D U+2640 U+FE0F ; 13.0 # 🤵🏿‍♀️ woman in tuxedo: dark skin tone U+1F470 ; 0.6 # 👰 person with veil U+1F470 U+1F3FB ; 1.0 # 👰🏻 person with veil: light skin tone U+1F470 U+1F3FC ; 1.0 # 👰🏼 person with veil: medium-light skin tone U+1F470 U+1F3FD ; 1.0 # 👰🏽 person with veil: medium skin tone U+1F470 U+1F3FE ; 1.0 # 👰🏾 person with veil: medium-dark skin tone U+1F470 U+1F3FF ; 1.0 # 👰🏿 person with veil: dark skin tone U+1F470 U+200D U+2642 U+FE0F ; 13.0 # 👰‍♂️ man with veil U+1F470 U+1F3FB U+200D U+2642 U+FE0F ; 13.0 # 👰🏻‍♂️ man with veil: light skin tone U+1F470 U+1F3FC U+200D U+2642 U+FE0F ; 13.0 # 👰🏼‍♂️ man with veil: medium-light skin tone U+1F470 U+1F3FD U+200D U+2642 U+FE0F ; 13.0 # 👰🏽‍♂️ man with veil: medium skin tone U+1F470 U+1F3FE U+200D U+2642 U+FE0F ; 13.0 # 👰🏾‍♂️ man with veil: medium-dark skin tone U+1F470 U+1F3FF U+200D U+2642 U+FE0F ; 13.0 # 👰🏿‍♂️ man with veil: dark skin tone U+1F470 U+200D U+2640 U+FE0F ; 13.0 # 👰‍♀️ woman with veil U+1F470 U+1F3FB U+200D U+2640 U+FE0F ; 13.0 # 👰🏻‍♀️ woman with veil: light skin tone U+1F470 U+1F3FC U+200D U+2640 U+FE0F ; 13.0 # 👰🏼‍♀️ woman with veil: medium-light skin tone U+1F470 U+1F3FD U+200D U+2640 U+FE0F ; 13.0 # 👰🏽‍♀️ woman with veil: medium skin tone U+1F470 U+1F3FE U+200D U+2640 U+FE0F ; 13.0 # 👰🏾‍♀️ woman with veil: medium-dark skin tone U+1F470 U+1F3FF U+200D U+2640 U+FE0F ; 13.0 # 👰🏿‍♀️ woman with veil: dark skin tone U+1F930 ; 3.0 # 🤰 pregnant woman U+1F930 U+1F3FB ; 3.0 # 🤰🏻 pregnant woman: light skin tone U+1F930 U+1F3FC ; 3.0 # 🤰🏼 pregnant woman: medium-light skin tone U+1F930 U+1F3FD ; 3.0 # 🤰🏽 pregnant woman: medium skin tone U+1F930 U+1F3FE ; 3.0 # 🤰🏾 pregnant woman: medium-dark skin tone U+1F930 U+1F3FF ; 3.0 # 🤰🏿 pregnant woman: dark skin tone U+1FAC3 ; 14.0 # 🫃 pregnant man U+1FAC3 U+1F3FB ; 14.0 # 🫃🏻 pregnant man: light skin tone U+1FAC3 U+1F3FC ; 14.0 # 🫃🏼 pregnant man: medium-light skin tone U+1FAC3 U+1F3FD ; 14.0 # 🫃🏽 pregnant man: medium skin tone U+1FAC3 U+1F3FE ; 14.0 # 🫃🏾 pregnant man: medium-dark skin tone U+1FAC3 U+1F3FF ; 14.0 # 🫃🏿 pregnant man: dark skin tone U+1FAC4 ; 14.0 # 🫄 pregnant person U+1FAC4 U+1F3FB ; 14.0 # 🫄🏻 pregnant person: light skin tone U+1FAC4 U+1F3FC ; 14.0 # 🫄🏼 pregnant person: medium-light skin tone U+1FAC4 U+1F3FD ; 14.0 # 🫄🏽 pregnant person: medium skin tone U+1FAC4 U+1F3FE ; 14.0 # 🫄🏾 pregnant person: medium-dark skin tone U+1FAC4 U+1F3FF ; 14.0 # 🫄🏿 pregnant person: dark skin tone U+1F931 ; 5.0 # 🤱 breast-feeding U+1F931 U+1F3FB ; 5.0 # 🤱🏻 breast-feeding: light skin tone U+1F931 U+1F3FC ; 5.0 # 🤱🏼 breast-feeding: medium-light skin tone U+1F931 U+1F3FD ; 5.0 # 🤱🏽 breast-feeding: medium skin tone U+1F931 U+1F3FE ; 5.0 # 🤱🏾 breast-feeding: medium-dark skin tone U+1F931 U+1F3FF ; 5.0 # 🤱🏿 breast-feeding: dark skin tone U+1F469 U+200D U+1F37C ; 13.0 # 👩‍🍼 woman feeding baby U+1F469 U+1F3FB U+200D U+1F37C ; 13.0 # 👩🏻‍🍼 woman feeding baby: light skin tone U+1F469 U+1F3FC U+200D U+1F37C ; 13.0 # 👩🏼‍🍼 woman feeding baby: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F37C ; 13.0 # 👩🏽‍🍼 woman feeding baby: medium skin tone U+1F469 U+1F3FE U+200D U+1F37C ; 13.0 # 👩🏾‍🍼 woman feeding baby: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F37C ; 13.0 # 👩🏿‍🍼 woman feeding baby: dark skin tone U+1F468 U+200D U+1F37C ; 13.0 # 👨‍🍼 man feeding baby U+1F468 U+1F3FB U+200D U+1F37C ; 13.0 # 👨🏻‍🍼 man feeding baby: light skin tone U+1F468 U+1F3FC U+200D U+1F37C ; 13.0 # 👨🏼‍🍼 man feeding baby: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F37C ; 13.0 # 👨🏽‍🍼 man feeding baby: medium skin tone U+1F468 U+1F3FE U+200D U+1F37C ; 13.0 # 👨🏾‍🍼 man feeding baby: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F37C ; 13.0 # 👨🏿‍🍼 man feeding baby: dark skin tone U+1F9D1 U+200D U+1F37C ; 13.0 # 🧑‍🍼 person feeding baby U+1F9D1 U+1F3FB U+200D U+1F37C ; 13.0 # 🧑🏻‍🍼 person feeding baby: light skin tone U+1F9D1 U+1F3FC U+200D U+1F37C ; 13.0 # 🧑🏼‍🍼 person feeding baby: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F37C ; 13.0 # 🧑🏽‍🍼 person feeding baby: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F37C ; 13.0 # 🧑🏾‍🍼 person feeding baby: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F37C ; 13.0 # 🧑🏿‍🍼 person feeding baby: dark skin tone U+1F47C ; 0.6 # 👼 baby angel U+1F47C U+1F3FB ; 1.0 # 👼🏻 baby angel: light skin tone U+1F47C U+1F3FC ; 1.0 # 👼🏼 baby angel: medium-light skin tone U+1F47C U+1F3FD ; 1.0 # 👼🏽 baby angel: medium skin tone U+1F47C U+1F3FE ; 1.0 # 👼🏾 baby angel: medium-dark skin tone U+1F47C U+1F3FF ; 1.0 # 👼🏿 baby angel: dark skin tone U+1F385 ; 0.6 # 🎅 Santa Claus U+1F385 U+1F3FB ; 1.0 # 🎅🏻 Santa Claus: light skin tone U+1F385 U+1F3FC ; 1.0 # 🎅🏼 Santa Claus: medium-light skin tone U+1F385 U+1F3FD ; 1.0 # 🎅🏽 Santa Claus: medium skin tone U+1F385 U+1F3FE ; 1.0 # 🎅🏾 Santa Claus: medium-dark skin tone U+1F385 U+1F3FF ; 1.0 # 🎅🏿 Santa Claus: dark skin tone U+1F936 ; 3.0 # 🤶 Mrs. Claus U+1F936 U+1F3FB ; 3.0 # 🤶🏻 Mrs. Claus: light skin tone U+1F936 U+1F3FC ; 3.0 # 🤶🏼 Mrs. Claus: medium-light skin tone U+1F936 U+1F3FD ; 3.0 # 🤶🏽 Mrs. Claus: medium skin tone U+1F936 U+1F3FE ; 3.0 # 🤶🏾 Mrs. Claus: medium-dark skin tone U+1F936 U+1F3FF ; 3.0 # 🤶🏿 Mrs. Claus: dark skin tone U+1F9D1 U+200D U+1F384 ; 13.0 # 🧑‍🎄 mx claus U+1F9D1 U+1F3FB U+200D U+1F384 ; 13.0 # 🧑🏻‍🎄 mx claus: light skin tone U+1F9D1 U+1F3FC U+200D U+1F384 ; 13.0 # 🧑🏼‍🎄 mx claus: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F384 ; 13.0 # 🧑🏽‍🎄 mx claus: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F384 ; 13.0 # 🧑🏾‍🎄 mx claus: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F384 ; 13.0 # 🧑🏿‍🎄 mx claus: dark skin tone U+1F9B8 ; 11.0 # 🦸 superhero U+1F9B8 U+1F3FB ; 11.0 # 🦸🏻 superhero: light skin tone U+1F9B8 U+1F3FC ; 11.0 # 🦸🏼 superhero: medium-light skin tone U+1F9B8 U+1F3FD ; 11.0 # 🦸🏽 superhero: medium skin tone U+1F9B8 U+1F3FE ; 11.0 # 🦸🏾 superhero: medium-dark skin tone U+1F9B8 U+1F3FF ; 11.0 # 🦸🏿 superhero: dark skin tone U+1F9B8 U+200D U+2642 U+FE0F ; 11.0 # 🦸‍♂️ man superhero U+1F9B8 U+1F3FB U+200D U+2642 U+FE0F ; 11.0 # 🦸🏻‍♂️ man superhero: light skin tone U+1F9B8 U+1F3FC U+200D U+2642 U+FE0F ; 11.0 # 🦸🏼‍♂️ man superhero: medium-light skin tone U+1F9B8 U+1F3FD U+200D U+2642 U+FE0F ; 11.0 # 🦸🏽‍♂️ man superhero: medium skin tone U+1F9B8 U+1F3FE U+200D U+2642 U+FE0F ; 11.0 # 🦸🏾‍♂️ man superhero: medium-dark skin tone U+1F9B8 U+1F3FF U+200D U+2642 U+FE0F ; 11.0 # 🦸🏿‍♂️ man superhero: dark skin tone U+1F9B8 U+200D U+2640 U+FE0F ; 11.0 # 🦸‍♀️ woman superhero U+1F9B8 U+1F3FB U+200D U+2640 U+FE0F ; 11.0 # 🦸🏻‍♀️ woman superhero: light skin tone U+1F9B8 U+1F3FC U+200D U+2640 U+FE0F ; 11.0 # 🦸🏼‍♀️ woman superhero: medium-light skin tone U+1F9B8 U+1F3FD U+200D U+2640 U+FE0F ; 11.0 # 🦸🏽‍♀️ woman superhero: medium skin tone U+1F9B8 U+1F3FE U+200D U+2640 U+FE0F ; 11.0 # 🦸🏾‍♀️ woman superhero: medium-dark skin tone U+1F9B8 U+1F3FF U+200D U+2640 U+FE0F ; 11.0 # 🦸🏿‍♀️ woman superhero: dark skin tone U+1F9B9 ; 11.0 # 🦹 supervillain U+1F9B9 U+1F3FB ; 11.0 # 🦹🏻 supervillain: light skin tone U+1F9B9 U+1F3FC ; 11.0 # 🦹🏼 supervillain: medium-light skin tone U+1F9B9 U+1F3FD ; 11.0 # 🦹🏽 supervillain: medium skin tone U+1F9B9 U+1F3FE ; 11.0 # 🦹🏾 supervillain: medium-dark skin tone U+1F9B9 U+1F3FF ; 11.0 # 🦹🏿 supervillain: dark skin tone U+1F9B9 U+200D U+2642 U+FE0F ; 11.0 # 🦹‍♂️ man supervillain U+1F9B9 U+1F3FB U+200D U+2642 U+FE0F ; 11.0 # 🦹🏻‍♂️ man supervillain: light skin tone U+1F9B9 U+1F3FC U+200D U+2642 U+FE0F ; 11.0 # 🦹🏼‍♂️ man supervillain: medium-light skin tone U+1F9B9 U+1F3FD U+200D U+2642 U+FE0F ; 11.0 # 🦹🏽‍♂️ man supervillain: medium skin tone U+1F9B9 U+1F3FE U+200D U+2642 U+FE0F ; 11.0 # 🦹🏾‍♂️ man supervillain: medium-dark skin tone U+1F9B9 U+1F3FF U+200D U+2642 U+FE0F ; 11.0 # 🦹🏿‍♂️ man supervillain: dark skin tone U+1F9B9 U+200D U+2640 U+FE0F ; 11.0 # 🦹‍♀️ woman supervillain U+1F9B9 U+1F3FB U+200D U+2640 U+FE0F ; 11.0 # 🦹🏻‍♀️ woman supervillain: light skin tone U+1F9B9 U+1F3FC U+200D U+2640 U+FE0F ; 11.0 # 🦹🏼‍♀️ woman supervillain: medium-light skin tone U+1F9B9 U+1F3FD U+200D U+2640 U+FE0F ; 11.0 # 🦹🏽‍♀️ woman supervillain: medium skin tone U+1F9B9 U+1F3FE U+200D U+2640 U+FE0F ; 11.0 # 🦹🏾‍♀️ woman supervillain: medium-dark skin tone U+1F9B9 U+1F3FF U+200D U+2640 U+FE0F ; 11.0 # 🦹🏿‍♀️ woman supervillain: dark skin tone U+1F9D9 ; 5.0 # 🧙 mage U+1F9D9 U+1F3FB ; 5.0 # 🧙🏻 mage: light skin tone U+1F9D9 U+1F3FC ; 5.0 # 🧙🏼 mage: medium-light skin tone U+1F9D9 U+1F3FD ; 5.0 # 🧙🏽 mage: medium skin tone U+1F9D9 U+1F3FE ; 5.0 # 🧙🏾 mage: medium-dark skin tone U+1F9D9 U+1F3FF ; 5.0 # 🧙🏿 mage: dark skin tone U+1F9D9 U+200D U+2642 U+FE0F ; 5.0 # 🧙‍♂️ man mage U+1F9D9 U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧙🏻‍♂️ man mage: light skin tone U+1F9D9 U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧙🏼‍♂️ man mage: medium-light skin tone U+1F9D9 U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧙🏽‍♂️ man mage: medium skin tone U+1F9D9 U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧙🏾‍♂️ man mage: medium-dark skin tone U+1F9D9 U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧙🏿‍♂️ man mage: dark skin tone U+1F9D9 U+200D U+2640 U+FE0F ; 5.0 # 🧙‍♀️ woman mage U+1F9D9 U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧙🏻‍♀️ woman mage: light skin tone U+1F9D9 U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧙🏼‍♀️ woman mage: medium-light skin tone U+1F9D9 U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧙🏽‍♀️ woman mage: medium skin tone U+1F9D9 U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧙🏾‍♀️ woman mage: medium-dark skin tone U+1F9D9 U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧙🏿‍♀️ woman mage: dark skin tone U+1F9DA ; 5.0 # 🧚 fairy U+1F9DA U+1F3FB ; 5.0 # 🧚🏻 fairy: light skin tone U+1F9DA U+1F3FC ; 5.0 # 🧚🏼 fairy: medium-light skin tone U+1F9DA U+1F3FD ; 5.0 # 🧚🏽 fairy: medium skin tone U+1F9DA U+1F3FE ; 5.0 # 🧚🏾 fairy: medium-dark skin tone U+1F9DA U+1F3FF ; 5.0 # 🧚🏿 fairy: dark skin tone U+1F9DA U+200D U+2642 U+FE0F ; 5.0 # 🧚‍♂️ man fairy U+1F9DA U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧚🏻‍♂️ man fairy: light skin tone U+1F9DA U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧚🏼‍♂️ man fairy: medium-light skin tone U+1F9DA U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧚🏽‍♂️ man fairy: medium skin tone U+1F9DA U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧚🏾‍♂️ man fairy: medium-dark skin tone U+1F9DA U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧚🏿‍♂️ man fairy: dark skin tone U+1F9DA U+200D U+2640 U+FE0F ; 5.0 # 🧚‍♀️ woman fairy U+1F9DA U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧚🏻‍♀️ woman fairy: light skin tone U+1F9DA U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧚🏼‍♀️ woman fairy: medium-light skin tone U+1F9DA U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧚🏽‍♀️ woman fairy: medium skin tone U+1F9DA U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧚🏾‍♀️ woman fairy: medium-dark skin tone U+1F9DA U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧚🏿‍♀️ woman fairy: dark skin tone U+1F9DB ; 5.0 # 🧛 vampire U+1F9DB U+1F3FB ; 5.0 # 🧛🏻 vampire: light skin tone U+1F9DB U+1F3FC ; 5.0 # 🧛🏼 vampire: medium-light skin tone U+1F9DB U+1F3FD ; 5.0 # 🧛🏽 vampire: medium skin tone U+1F9DB U+1F3FE ; 5.0 # 🧛🏾 vampire: medium-dark skin tone U+1F9DB U+1F3FF ; 5.0 # 🧛🏿 vampire: dark skin tone U+1F9DB U+200D U+2642 U+FE0F ; 5.0 # 🧛‍♂️ man vampire U+1F9DB U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧛🏻‍♂️ man vampire: light skin tone U+1F9DB U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧛🏼‍♂️ man vampire: medium-light skin tone U+1F9DB U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧛🏽‍♂️ man vampire: medium skin tone U+1F9DB U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧛🏾‍♂️ man vampire: medium-dark skin tone U+1F9DB U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧛🏿‍♂️ man vampire: dark skin tone U+1F9DB U+200D U+2640 U+FE0F ; 5.0 # 🧛‍♀️ woman vampire U+1F9DB U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧛🏻‍♀️ woman vampire: light skin tone U+1F9DB U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧛🏼‍♀️ woman vampire: medium-light skin tone U+1F9DB U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧛🏽‍♀️ woman vampire: medium skin tone U+1F9DB U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧛🏾‍♀️ woman vampire: medium-dark skin tone U+1F9DB U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧛🏿‍♀️ woman vampire: dark skin tone U+1F9DC ; 5.0 # 🧜 merperson U+1F9DC U+1F3FB ; 5.0 # 🧜🏻 merperson: light skin tone U+1F9DC U+1F3FC ; 5.0 # 🧜🏼 merperson: medium-light skin tone U+1F9DC U+1F3FD ; 5.0 # 🧜🏽 merperson: medium skin tone U+1F9DC U+1F3FE ; 5.0 # 🧜🏾 merperson: medium-dark skin tone U+1F9DC U+1F3FF ; 5.0 # 🧜🏿 merperson: dark skin tone U+1F9DC U+200D U+2642 U+FE0F ; 5.0 # 🧜‍♂️ merman U+1F9DC U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧜🏻‍♂️ merman: light skin tone U+1F9DC U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧜🏼‍♂️ merman: medium-light skin tone U+1F9DC U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧜🏽‍♂️ merman: medium skin tone U+1F9DC U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧜🏾‍♂️ merman: medium-dark skin tone U+1F9DC U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧜🏿‍♂️ merman: dark skin tone U+1F9DC U+200D U+2640 U+FE0F ; 5.0 # 🧜‍♀️ mermaid U+1F9DC U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧜🏻‍♀️ mermaid: light skin tone U+1F9DC U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧜🏼‍♀️ mermaid: medium-light skin tone U+1F9DC U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧜🏽‍♀️ mermaid: medium skin tone U+1F9DC U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧜🏾‍♀️ mermaid: medium-dark skin tone U+1F9DC U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧜🏿‍♀️ mermaid: dark skin tone U+1F9DD ; 5.0 # 🧝 elf U+1F9DD U+1F3FB ; 5.0 # 🧝🏻 elf: light skin tone U+1F9DD U+1F3FC ; 5.0 # 🧝🏼 elf: medium-light skin tone U+1F9DD U+1F3FD ; 5.0 # 🧝🏽 elf: medium skin tone U+1F9DD U+1F3FE ; 5.0 # 🧝🏾 elf: medium-dark skin tone U+1F9DD U+1F3FF ; 5.0 # 🧝🏿 elf: dark skin tone U+1F9DD U+200D U+2642 U+FE0F ; 5.0 # 🧝‍♂️ man elf U+1F9DD U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧝🏻‍♂️ man elf: light skin tone U+1F9DD U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧝🏼‍♂️ man elf: medium-light skin tone U+1F9DD U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧝🏽‍♂️ man elf: medium skin tone U+1F9DD U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧝🏾‍♂️ man elf: medium-dark skin tone U+1F9DD U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧝🏿‍♂️ man elf: dark skin tone U+1F9DD U+200D U+2640 U+FE0F ; 5.0 # 🧝‍♀️ woman elf U+1F9DD U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧝🏻‍♀️ woman elf: light skin tone U+1F9DD U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧝🏼‍♀️ woman elf: medium-light skin tone U+1F9DD U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧝🏽‍♀️ woman elf: medium skin tone U+1F9DD U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧝🏾‍♀️ woman elf: medium-dark skin tone U+1F9DD U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧝🏿‍♀️ woman elf: dark skin tone U+1F9DE ; 5.0 # 🧞 genie U+1F9DE U+200D U+2642 U+FE0F ; 5.0 # 🧞‍♂️ man genie U+1F9DE U+200D U+2640 U+FE0F ; 5.0 # 🧞‍♀️ woman genie U+1F9DF ; 5.0 # 🧟 zombie U+1F9DF U+200D U+2642 U+FE0F ; 5.0 # 🧟‍♂️ man zombie U+1F9DF U+200D U+2640 U+FE0F ; 5.0 # 🧟‍♀️ woman zombie U+1F9CC ; 14.0 # 🧌 troll U+1F486 ; 0.6 # 💆 person getting massage U+1F486 U+1F3FB ; 1.0 # 💆🏻 person getting massage: light skin tone U+1F486 U+1F3FC ; 1.0 # 💆🏼 person getting massage: medium-light skin tone U+1F486 U+1F3FD ; 1.0 # 💆🏽 person getting massage: medium skin tone U+1F486 U+1F3FE ; 1.0 # 💆🏾 person getting massage: medium-dark skin tone U+1F486 U+1F3FF ; 1.0 # 💆🏿 person getting massage: dark skin tone U+1F486 U+200D U+2642 U+FE0F ; 4.0 # 💆‍♂️ man getting massage U+1F486 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 💆🏻‍♂️ man getting massage: light skin tone U+1F486 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 💆🏼‍♂️ man getting massage: medium-light skin tone U+1F486 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 💆🏽‍♂️ man getting massage: medium skin tone U+1F486 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 💆🏾‍♂️ man getting massage: medium-dark skin tone U+1F486 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 💆🏿‍♂️ man getting massage: dark skin tone U+1F486 U+200D U+2640 U+FE0F ; 4.0 # 💆‍♀️ woman getting massage U+1F486 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 💆🏻‍♀️ woman getting massage: light skin tone U+1F486 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 💆🏼‍♀️ woman getting massage: medium-light skin tone U+1F486 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 💆🏽‍♀️ woman getting massage: medium skin tone U+1F486 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 💆🏾‍♀️ woman getting massage: medium-dark skin tone U+1F486 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 💆🏿‍♀️ woman getting massage: dark skin tone U+1F487 ; 0.6 # 💇 person getting haircut U+1F487 U+1F3FB ; 1.0 # 💇🏻 person getting haircut: light skin tone U+1F487 U+1F3FC ; 1.0 # 💇🏼 person getting haircut: medium-light skin tone U+1F487 U+1F3FD ; 1.0 # 💇🏽 person getting haircut: medium skin tone U+1F487 U+1F3FE ; 1.0 # 💇🏾 person getting haircut: medium-dark skin tone U+1F487 U+1F3FF ; 1.0 # 💇🏿 person getting haircut: dark skin tone U+1F487 U+200D U+2642 U+FE0F ; 4.0 # 💇‍♂️ man getting haircut U+1F487 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 💇🏻‍♂️ man getting haircut: light skin tone U+1F487 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 💇🏼‍♂️ man getting haircut: medium-light skin tone U+1F487 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 💇🏽‍♂️ man getting haircut: medium skin tone U+1F487 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 💇🏾‍♂️ man getting haircut: medium-dark skin tone U+1F487 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 💇🏿‍♂️ man getting haircut: dark skin tone U+1F487 U+200D U+2640 U+FE0F ; 4.0 # 💇‍♀️ woman getting haircut U+1F487 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 💇🏻‍♀️ woman getting haircut: light skin tone U+1F487 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 💇🏼‍♀️ woman getting haircut: medium-light skin tone U+1F487 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 💇🏽‍♀️ woman getting haircut: medium skin tone U+1F487 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 💇🏾‍♀️ woman getting haircut: medium-dark skin tone U+1F487 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 💇🏿‍♀️ woman getting haircut: dark skin tone U+1F6B6 ; 0.6 # 🚶 person walking U+1F6B6 U+1F3FB ; 1.0 # 🚶🏻 person walking: light skin tone U+1F6B6 U+1F3FC ; 1.0 # 🚶🏼 person walking: medium-light skin tone U+1F6B6 U+1F3FD ; 1.0 # 🚶🏽 person walking: medium skin tone U+1F6B6 U+1F3FE ; 1.0 # 🚶🏾 person walking: medium-dark skin tone U+1F6B6 U+1F3FF ; 1.0 # 🚶🏿 person walking: dark skin tone U+1F6B6 U+200D U+2642 U+FE0F ; 4.0 # 🚶‍♂️ man walking U+1F6B6 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🚶🏻‍♂️ man walking: light skin tone U+1F6B6 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🚶🏼‍♂️ man walking: medium-light skin tone U+1F6B6 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🚶🏽‍♂️ man walking: medium skin tone U+1F6B6 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🚶🏾‍♂️ man walking: medium-dark skin tone U+1F6B6 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🚶🏿‍♂️ man walking: dark skin tone U+1F6B6 U+200D U+2640 U+FE0F ; 4.0 # 🚶‍♀️ woman walking U+1F6B6 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🚶🏻‍♀️ woman walking: light skin tone U+1F6B6 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🚶🏼‍♀️ woman walking: medium-light skin tone U+1F6B6 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🚶🏽‍♀️ woman walking: medium skin tone U+1F6B6 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🚶🏾‍♀️ woman walking: medium-dark skin tone U+1F6B6 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🚶🏿‍♀️ woman walking: dark skin tone U+1F6B6 U+200D U+27A1 U+FE0F ; 15.1 # 🚶‍➡️ person walking facing right U+1F6B6 U+1F3FB U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏻‍➡️ person walking facing right: light skin tone U+1F6B6 U+1F3FC U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏼‍➡️ person walking facing right: medium-light skin tone U+1F6B6 U+1F3FD U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏽‍➡️ person walking facing right: medium skin tone U+1F6B6 U+1F3FE U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏾‍➡️ person walking facing right: medium-dark skin tone U+1F6B6 U+1F3FF U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏿‍➡️ person walking facing right: dark skin tone U+1F6B6 U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶‍♀️‍➡️ woman walking facing right U+1F6B6 U+1F3FB U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏻‍♀️‍➡️ woman walking facing right: light skin tone U+1F6B6 U+1F3FC U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏼‍♀️‍➡️ woman walking facing right: medium-light skin tone U+1F6B6 U+1F3FD U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏽‍♀️‍➡️ woman walking facing right: medium skin tone U+1F6B6 U+1F3FE U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏾‍♀️‍➡️ woman walking facing right: medium-dark skin tone U+1F6B6 U+1F3FF U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏿‍♀️‍➡️ woman walking facing right: dark skin tone U+1F6B6 U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶‍♂️‍➡️ man walking facing right U+1F6B6 U+1F3FB U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏻‍♂️‍➡️ man walking facing right: light skin tone U+1F6B6 U+1F3FC U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏼‍♂️‍➡️ man walking facing right: medium-light skin tone U+1F6B6 U+1F3FD U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏽‍♂️‍➡️ man walking facing right: medium skin tone U+1F6B6 U+1F3FE U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏾‍♂️‍➡️ man walking facing right: medium-dark skin tone U+1F6B6 U+1F3FF U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🚶🏿‍♂️‍➡️ man walking facing right: dark skin tone U+1F9CD ; 12.0 # 🧍 person standing U+1F9CD U+1F3FB ; 12.0 # 🧍🏻 person standing: light skin tone U+1F9CD U+1F3FC ; 12.0 # 🧍🏼 person standing: medium-light skin tone U+1F9CD U+1F3FD ; 12.0 # 🧍🏽 person standing: medium skin tone U+1F9CD U+1F3FE ; 12.0 # 🧍🏾 person standing: medium-dark skin tone U+1F9CD U+1F3FF ; 12.0 # 🧍🏿 person standing: dark skin tone U+1F9CD U+200D U+2642 U+FE0F ; 12.0 # 🧍‍♂️ man standing U+1F9CD U+1F3FB U+200D U+2642 U+FE0F ; 12.0 # 🧍🏻‍♂️ man standing: light skin tone U+1F9CD U+1F3FC U+200D U+2642 U+FE0F ; 12.0 # 🧍🏼‍♂️ man standing: medium-light skin tone U+1F9CD U+1F3FD U+200D U+2642 U+FE0F ; 12.0 # 🧍🏽‍♂️ man standing: medium skin tone U+1F9CD U+1F3FE U+200D U+2642 U+FE0F ; 12.0 # 🧍🏾‍♂️ man standing: medium-dark skin tone U+1F9CD U+1F3FF U+200D U+2642 U+FE0F ; 12.0 # 🧍🏿‍♂️ man standing: dark skin tone U+1F9CD U+200D U+2640 U+FE0F ; 12.0 # 🧍‍♀️ woman standing U+1F9CD U+1F3FB U+200D U+2640 U+FE0F ; 12.0 # 🧍🏻‍♀️ woman standing: light skin tone U+1F9CD U+1F3FC U+200D U+2640 U+FE0F ; 12.0 # 🧍🏼‍♀️ woman standing: medium-light skin tone U+1F9CD U+1F3FD U+200D U+2640 U+FE0F ; 12.0 # 🧍🏽‍♀️ woman standing: medium skin tone U+1F9CD U+1F3FE U+200D U+2640 U+FE0F ; 12.0 # 🧍🏾‍♀️ woman standing: medium-dark skin tone U+1F9CD U+1F3FF U+200D U+2640 U+FE0F ; 12.0 # 🧍🏿‍♀️ woman standing: dark skin tone U+1F9CE ; 12.0 # 🧎 person kneeling U+1F9CE U+1F3FB ; 12.0 # 🧎🏻 person kneeling: light skin tone U+1F9CE U+1F3FC ; 12.0 # 🧎🏼 person kneeling: medium-light skin tone U+1F9CE U+1F3FD ; 12.0 # 🧎🏽 person kneeling: medium skin tone U+1F9CE U+1F3FE ; 12.0 # 🧎🏾 person kneeling: medium-dark skin tone U+1F9CE U+1F3FF ; 12.0 # 🧎🏿 person kneeling: dark skin tone U+1F9CE U+200D U+2642 U+FE0F ; 12.0 # 🧎‍♂️ man kneeling U+1F9CE U+1F3FB U+200D U+2642 U+FE0F ; 12.0 # 🧎🏻‍♂️ man kneeling: light skin tone U+1F9CE U+1F3FC U+200D U+2642 U+FE0F ; 12.0 # 🧎🏼‍♂️ man kneeling: medium-light skin tone U+1F9CE U+1F3FD U+200D U+2642 U+FE0F ; 12.0 # 🧎🏽‍♂️ man kneeling: medium skin tone U+1F9CE U+1F3FE U+200D U+2642 U+FE0F ; 12.0 # 🧎🏾‍♂️ man kneeling: medium-dark skin tone U+1F9CE U+1F3FF U+200D U+2642 U+FE0F ; 12.0 # 🧎🏿‍♂️ man kneeling: dark skin tone U+1F9CE U+200D U+2640 U+FE0F ; 12.0 # 🧎‍♀️ woman kneeling U+1F9CE U+1F3FB U+200D U+2640 U+FE0F ; 12.0 # 🧎🏻‍♀️ woman kneeling: light skin tone U+1F9CE U+1F3FC U+200D U+2640 U+FE0F ; 12.0 # 🧎🏼‍♀️ woman kneeling: medium-light skin tone U+1F9CE U+1F3FD U+200D U+2640 U+FE0F ; 12.0 # 🧎🏽‍♀️ woman kneeling: medium skin tone U+1F9CE U+1F3FE U+200D U+2640 U+FE0F ; 12.0 # 🧎🏾‍♀️ woman kneeling: medium-dark skin tone U+1F9CE U+1F3FF U+200D U+2640 U+FE0F ; 12.0 # 🧎🏿‍♀️ woman kneeling: dark skin tone U+1F9CE U+200D U+27A1 U+FE0F ; 15.1 # 🧎‍➡️ person kneeling facing right U+1F9CE U+1F3FB U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏻‍➡️ person kneeling facing right: light skin tone U+1F9CE U+1F3FC U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏼‍➡️ person kneeling facing right: medium-light skin tone U+1F9CE U+1F3FD U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏽‍➡️ person kneeling facing right: medium skin tone U+1F9CE U+1F3FE U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏾‍➡️ person kneeling facing right: medium-dark skin tone U+1F9CE U+1F3FF U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏿‍➡️ person kneeling facing right: dark skin tone U+1F9CE U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎‍♀️‍➡️ woman kneeling facing right U+1F9CE U+1F3FB U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏻‍♀️‍➡️ woman kneeling facing right: light skin tone U+1F9CE U+1F3FC U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏼‍♀️‍➡️ woman kneeling facing right: medium-light skin tone U+1F9CE U+1F3FD U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏽‍♀️‍➡️ woman kneeling facing right: medium skin tone U+1F9CE U+1F3FE U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏾‍♀️‍➡️ woman kneeling facing right: medium-dark skin tone U+1F9CE U+1F3FF U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏿‍♀️‍➡️ woman kneeling facing right: dark skin tone U+1F9CE U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎‍♂️‍➡️ man kneeling facing right U+1F9CE U+1F3FB U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏻‍♂️‍➡️ man kneeling facing right: light skin tone U+1F9CE U+1F3FC U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏼‍♂️‍➡️ man kneeling facing right: medium-light skin tone U+1F9CE U+1F3FD U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏽‍♂️‍➡️ man kneeling facing right: medium skin tone U+1F9CE U+1F3FE U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏾‍♂️‍➡️ man kneeling facing right: medium-dark skin tone U+1F9CE U+1F3FF U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🧎🏿‍♂️‍➡️ man kneeling facing right: dark skin tone U+1F9D1 U+200D U+1F9AF ; 12.1 # 🧑‍🦯 person with white cane U+1F9D1 U+1F3FB U+200D U+1F9AF ; 12.1 # 🧑🏻‍🦯 person with white cane: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9AF ; 12.1 # 🧑🏼‍🦯 person with white cane: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9AF ; 12.1 # 🧑🏽‍🦯 person with white cane: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9AF ; 12.1 # 🧑🏾‍🦯 person with white cane: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9AF ; 12.1 # 🧑🏿‍🦯 person with white cane: dark skin tone U+1F9D1 U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑‍🦯‍➡️ person with white cane facing right U+1F9D1 U+1F3FB U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏻‍🦯‍➡️ person with white cane facing right: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏼‍🦯‍➡️ person with white cane facing right: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏽‍🦯‍➡️ person with white cane facing right: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏾‍🦯‍➡️ person with white cane facing right: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏿‍🦯‍➡️ person with white cane facing right: dark skin tone U+1F468 U+200D U+1F9AF ; 12.0 # 👨‍🦯 man with white cane U+1F468 U+1F3FB U+200D U+1F9AF ; 12.0 # 👨🏻‍🦯 man with white cane: light skin tone U+1F468 U+1F3FC U+200D U+1F9AF ; 12.0 # 👨🏼‍🦯 man with white cane: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9AF ; 12.0 # 👨🏽‍🦯 man with white cane: medium skin tone U+1F468 U+1F3FE U+200D U+1F9AF ; 12.0 # 👨🏾‍🦯 man with white cane: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9AF ; 12.0 # 👨🏿‍🦯 man with white cane: dark skin tone U+1F468 U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨‍🦯‍➡️ man with white cane facing right U+1F468 U+1F3FB U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨🏻‍🦯‍➡️ man with white cane facing right: light skin tone U+1F468 U+1F3FC U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨🏼‍🦯‍➡️ man with white cane facing right: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨🏽‍🦯‍➡️ man with white cane facing right: medium skin tone U+1F468 U+1F3FE U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨🏾‍🦯‍➡️ man with white cane facing right: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👨🏿‍🦯‍➡️ man with white cane facing right: dark skin tone U+1F469 U+200D U+1F9AF ; 12.0 # 👩‍🦯 woman with white cane U+1F469 U+1F3FB U+200D U+1F9AF ; 12.0 # 👩🏻‍🦯 woman with white cane: light skin tone U+1F469 U+1F3FC U+200D U+1F9AF ; 12.0 # 👩🏼‍🦯 woman with white cane: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9AF ; 12.0 # 👩🏽‍🦯 woman with white cane: medium skin tone U+1F469 U+1F3FE U+200D U+1F9AF ; 12.0 # 👩🏾‍🦯 woman with white cane: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9AF ; 12.0 # 👩🏿‍🦯 woman with white cane: dark skin tone U+1F469 U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩‍🦯‍➡️ woman with white cane facing right U+1F469 U+1F3FB U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩🏻‍🦯‍➡️ woman with white cane facing right: light skin tone U+1F469 U+1F3FC U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩🏼‍🦯‍➡️ woman with white cane facing right: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩🏽‍🦯‍➡️ woman with white cane facing right: medium skin tone U+1F469 U+1F3FE U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩🏾‍🦯‍➡️ woman with white cane facing right: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9AF U+200D U+27A1 U+FE0F ; 15.1 # 👩🏿‍🦯‍➡️ woman with white cane facing right: dark skin tone U+1F9D1 U+200D U+1F9BC ; 12.1 # 🧑‍🦼 person in motorized wheelchair U+1F9D1 U+1F3FB U+200D U+1F9BC ; 12.1 # 🧑🏻‍🦼 person in motorized wheelchair: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9BC ; 12.1 # 🧑🏼‍🦼 person in motorized wheelchair: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9BC ; 12.1 # 🧑🏽‍🦼 person in motorized wheelchair: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9BC ; 12.1 # 🧑🏾‍🦼 person in motorized wheelchair: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9BC ; 12.1 # 🧑🏿‍🦼 person in motorized wheelchair: dark skin tone U+1F9D1 U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑‍🦼‍➡️ person in motorized wheelchair facing right U+1F9D1 U+1F3FB U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏻‍🦼‍➡️ person in motorized wheelchair facing right: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏼‍🦼‍➡️ person in motorized wheelchair facing right: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏽‍🦼‍➡️ person in motorized wheelchair facing right: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏾‍🦼‍➡️ person in motorized wheelchair facing right: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏿‍🦼‍➡️ person in motorized wheelchair facing right: dark skin tone U+1F468 U+200D U+1F9BC ; 12.0 # 👨‍🦼 man in motorized wheelchair U+1F468 U+1F3FB U+200D U+1F9BC ; 12.0 # 👨🏻‍🦼 man in motorized wheelchair: light skin tone U+1F468 U+1F3FC U+200D U+1F9BC ; 12.0 # 👨🏼‍🦼 man in motorized wheelchair: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9BC ; 12.0 # 👨🏽‍🦼 man in motorized wheelchair: medium skin tone U+1F468 U+1F3FE U+200D U+1F9BC ; 12.0 # 👨🏾‍🦼 man in motorized wheelchair: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9BC ; 12.0 # 👨🏿‍🦼 man in motorized wheelchair: dark skin tone U+1F468 U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨‍🦼‍➡️ man in motorized wheelchair facing right U+1F468 U+1F3FB U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨🏻‍🦼‍➡️ man in motorized wheelchair facing right: light skin tone U+1F468 U+1F3FC U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨🏼‍🦼‍➡️ man in motorized wheelchair facing right: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨🏽‍🦼‍➡️ man in motorized wheelchair facing right: medium skin tone U+1F468 U+1F3FE U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨🏾‍🦼‍➡️ man in motorized wheelchair facing right: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👨🏿‍🦼‍➡️ man in motorized wheelchair facing right: dark skin tone U+1F469 U+200D U+1F9BC ; 12.0 # 👩‍🦼 woman in motorized wheelchair U+1F469 U+1F3FB U+200D U+1F9BC ; 12.0 # 👩🏻‍🦼 woman in motorized wheelchair: light skin tone U+1F469 U+1F3FC U+200D U+1F9BC ; 12.0 # 👩🏼‍🦼 woman in motorized wheelchair: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9BC ; 12.0 # 👩🏽‍🦼 woman in motorized wheelchair: medium skin tone U+1F469 U+1F3FE U+200D U+1F9BC ; 12.0 # 👩🏾‍🦼 woman in motorized wheelchair: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9BC ; 12.0 # 👩🏿‍🦼 woman in motorized wheelchair: dark skin tone U+1F469 U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩‍🦼‍➡️ woman in motorized wheelchair facing right U+1F469 U+1F3FB U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩🏻‍🦼‍➡️ woman in motorized wheelchair facing right: light skin tone U+1F469 U+1F3FC U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩🏼‍🦼‍➡️ woman in motorized wheelchair facing right: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩🏽‍🦼‍➡️ woman in motorized wheelchair facing right: medium skin tone U+1F469 U+1F3FE U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩🏾‍🦼‍➡️ woman in motorized wheelchair facing right: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9BC U+200D U+27A1 U+FE0F ; 15.1 # 👩🏿‍🦼‍➡️ woman in motorized wheelchair facing right: dark skin tone U+1F9D1 U+200D U+1F9BD ; 12.1 # 🧑‍🦽 person in manual wheelchair U+1F9D1 U+1F3FB U+200D U+1F9BD ; 12.1 # 🧑🏻‍🦽 person in manual wheelchair: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9BD ; 12.1 # 🧑🏼‍🦽 person in manual wheelchair: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9BD ; 12.1 # 🧑🏽‍🦽 person in manual wheelchair: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9BD ; 12.1 # 🧑🏾‍🦽 person in manual wheelchair: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9BD ; 12.1 # 🧑🏿‍🦽 person in manual wheelchair: dark skin tone U+1F9D1 U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑‍🦽‍➡️ person in manual wheelchair facing right U+1F9D1 U+1F3FB U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏻‍🦽‍➡️ person in manual wheelchair facing right: light skin tone U+1F9D1 U+1F3FC U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏼‍🦽‍➡️ person in manual wheelchair facing right: medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏽‍🦽‍➡️ person in manual wheelchair facing right: medium skin tone U+1F9D1 U+1F3FE U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏾‍🦽‍➡️ person in manual wheelchair facing right: medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 🧑🏿‍🦽‍➡️ person in manual wheelchair facing right: dark skin tone U+1F468 U+200D U+1F9BD ; 12.0 # 👨‍🦽 man in manual wheelchair U+1F468 U+1F3FB U+200D U+1F9BD ; 12.0 # 👨🏻‍🦽 man in manual wheelchair: light skin tone U+1F468 U+1F3FC U+200D U+1F9BD ; 12.0 # 👨🏼‍🦽 man in manual wheelchair: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9BD ; 12.0 # 👨🏽‍🦽 man in manual wheelchair: medium skin tone U+1F468 U+1F3FE U+200D U+1F9BD ; 12.0 # 👨🏾‍🦽 man in manual wheelchair: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9BD ; 12.0 # 👨🏿‍🦽 man in manual wheelchair: dark skin tone U+1F468 U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨‍🦽‍➡️ man in manual wheelchair facing right U+1F468 U+1F3FB U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨🏻‍🦽‍➡️ man in manual wheelchair facing right: light skin tone U+1F468 U+1F3FC U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨🏼‍🦽‍➡️ man in manual wheelchair facing right: medium-light skin tone U+1F468 U+1F3FD U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨🏽‍🦽‍➡️ man in manual wheelchair facing right: medium skin tone U+1F468 U+1F3FE U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨🏾‍🦽‍➡️ man in manual wheelchair facing right: medium-dark skin tone U+1F468 U+1F3FF U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👨🏿‍🦽‍➡️ man in manual wheelchair facing right: dark skin tone U+1F469 U+200D U+1F9BD ; 12.0 # 👩‍🦽 woman in manual wheelchair U+1F469 U+1F3FB U+200D U+1F9BD ; 12.0 # 👩🏻‍🦽 woman in manual wheelchair: light skin tone U+1F469 U+1F3FC U+200D U+1F9BD ; 12.0 # 👩🏼‍🦽 woman in manual wheelchair: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9BD ; 12.0 # 👩🏽‍🦽 woman in manual wheelchair: medium skin tone U+1F469 U+1F3FE U+200D U+1F9BD ; 12.0 # 👩🏾‍🦽 woman in manual wheelchair: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9BD ; 12.0 # 👩🏿‍🦽 woman in manual wheelchair: dark skin tone U+1F469 U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩‍🦽‍➡️ woman in manual wheelchair facing right U+1F469 U+1F3FB U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩🏻‍🦽‍➡️ woman in manual wheelchair facing right: light skin tone U+1F469 U+1F3FC U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩🏼‍🦽‍➡️ woman in manual wheelchair facing right: medium-light skin tone U+1F469 U+1F3FD U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩🏽‍🦽‍➡️ woman in manual wheelchair facing right: medium skin tone U+1F469 U+1F3FE U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩🏾‍🦽‍➡️ woman in manual wheelchair facing right: medium-dark skin tone U+1F469 U+1F3FF U+200D U+1F9BD U+200D U+27A1 U+FE0F ; 15.1 # 👩🏿‍🦽‍➡️ woman in manual wheelchair facing right: dark skin tone U+1F3C3 ; 0.6 # 🏃 person running U+1F3C3 U+1F3FB ; 1.0 # 🏃🏻 person running: light skin tone U+1F3C3 U+1F3FC ; 1.0 # 🏃🏼 person running: medium-light skin tone U+1F3C3 U+1F3FD ; 1.0 # 🏃🏽 person running: medium skin tone U+1F3C3 U+1F3FE ; 1.0 # 🏃🏾 person running: medium-dark skin tone U+1F3C3 U+1F3FF ; 1.0 # 🏃🏿 person running: dark skin tone U+1F3C3 U+200D U+2642 U+FE0F ; 4.0 # 🏃‍♂️ man running U+1F3C3 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🏃🏻‍♂️ man running: light skin tone U+1F3C3 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🏃🏼‍♂️ man running: medium-light skin tone U+1F3C3 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🏃🏽‍♂️ man running: medium skin tone U+1F3C3 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🏃🏾‍♂️ man running: medium-dark skin tone U+1F3C3 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🏃🏿‍♂️ man running: dark skin tone U+1F3C3 U+200D U+2640 U+FE0F ; 4.0 # 🏃‍♀️ woman running U+1F3C3 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🏃🏻‍♀️ woman running: light skin tone U+1F3C3 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🏃🏼‍♀️ woman running: medium-light skin tone U+1F3C3 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🏃🏽‍♀️ woman running: medium skin tone U+1F3C3 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🏃🏾‍♀️ woman running: medium-dark skin tone U+1F3C3 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🏃🏿‍♀️ woman running: dark skin tone U+1F3C3 U+200D U+27A1 U+FE0F ; 15.1 # 🏃‍➡️ person running facing right U+1F3C3 U+1F3FB U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏻‍➡️ person running facing right: light skin tone U+1F3C3 U+1F3FC U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏼‍➡️ person running facing right: medium-light skin tone U+1F3C3 U+1F3FD U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏽‍➡️ person running facing right: medium skin tone U+1F3C3 U+1F3FE U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏾‍➡️ person running facing right: medium-dark skin tone U+1F3C3 U+1F3FF U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏿‍➡️ person running facing right: dark skin tone U+1F3C3 U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃‍♀️‍➡️ woman running facing right U+1F3C3 U+1F3FB U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏻‍♀️‍➡️ woman running facing right: light skin tone U+1F3C3 U+1F3FC U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏼‍♀️‍➡️ woman running facing right: medium-light skin tone U+1F3C3 U+1F3FD U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏽‍♀️‍➡️ woman running facing right: medium skin tone U+1F3C3 U+1F3FE U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏾‍♀️‍➡️ woman running facing right: medium-dark skin tone U+1F3C3 U+1F3FF U+200D U+2640 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏿‍♀️‍➡️ woman running facing right: dark skin tone U+1F3C3 U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃‍♂️‍➡️ man running facing right U+1F3C3 U+1F3FB U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏻‍♂️‍➡️ man running facing right: light skin tone U+1F3C3 U+1F3FC U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏼‍♂️‍➡️ man running facing right: medium-light skin tone U+1F3C3 U+1F3FD U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏽‍♂️‍➡️ man running facing right: medium skin tone U+1F3C3 U+1F3FE U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏾‍♂️‍➡️ man running facing right: medium-dark skin tone U+1F3C3 U+1F3FF U+200D U+2642 U+FE0F U+200D U+27A1 U+FE0F ; 15.1 # 🏃🏿‍♂️‍➡️ man running facing right: dark skin tone U+1F483 ; 0.6 # 💃 woman dancing U+1F483 U+1F3FB ; 1.0 # 💃🏻 woman dancing: light skin tone U+1F483 U+1F3FC ; 1.0 # 💃🏼 woman dancing: medium-light skin tone U+1F483 U+1F3FD ; 1.0 # 💃🏽 woman dancing: medium skin tone U+1F483 U+1F3FE ; 1.0 # 💃🏾 woman dancing: medium-dark skin tone U+1F483 U+1F3FF ; 1.0 # 💃🏿 woman dancing: dark skin tone U+1F57A ; 3.0 # 🕺 man dancing U+1F57A U+1F3FB ; 3.0 # 🕺🏻 man dancing: light skin tone U+1F57A U+1F3FC ; 3.0 # 🕺🏼 man dancing: medium-light skin tone U+1F57A U+1F3FD ; 3.0 # 🕺🏽 man dancing: medium skin tone U+1F57A U+1F3FE ; 3.0 # 🕺🏾 man dancing: medium-dark skin tone U+1F57A U+1F3FF ; 3.0 # 🕺🏿 man dancing: dark skin tone U+1F574 ; 0.7 # 🕴 person in suit levitating U+1F574 U+1F3FB ; 4.0 # 🕴🏻 person in suit levitating: light skin tone U+1F574 U+1F3FC ; 4.0 # 🕴🏼 person in suit levitating: medium-light skin tone U+1F574 U+1F3FD ; 4.0 # 🕴🏽 person in suit levitating: medium skin tone U+1F574 U+1F3FE ; 4.0 # 🕴🏾 person in suit levitating: medium-dark skin tone U+1F574 U+1F3FF ; 4.0 # 🕴🏿 person in suit levitating: dark skin tone U+1F46F ; 0.6 # 👯 people with bunny ears U+1F46F U+200D U+2642 U+FE0F ; 4.0 # 👯‍♂️ men with bunny ears U+1F46F U+200D U+2640 U+FE0F ; 4.0 # 👯‍♀️ women with bunny ears U+1F9D6 ; 5.0 # 🧖 person in steamy room U+1F9D6 U+1F3FB ; 5.0 # 🧖🏻 person in steamy room: light skin tone U+1F9D6 U+1F3FC ; 5.0 # 🧖🏼 person in steamy room: medium-light skin tone U+1F9D6 U+1F3FD ; 5.0 # 🧖🏽 person in steamy room: medium skin tone U+1F9D6 U+1F3FE ; 5.0 # 🧖🏾 person in steamy room: medium-dark skin tone U+1F9D6 U+1F3FF ; 5.0 # 🧖🏿 person in steamy room: dark skin tone U+1F9D6 U+200D U+2642 U+FE0F ; 5.0 # 🧖‍♂️ man in steamy room U+1F9D6 U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧖🏻‍♂️ man in steamy room: light skin tone U+1F9D6 U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧖🏼‍♂️ man in steamy room: medium-light skin tone U+1F9D6 U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧖🏽‍♂️ man in steamy room: medium skin tone U+1F9D6 U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧖🏾‍♂️ man in steamy room: medium-dark skin tone U+1F9D6 U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧖🏿‍♂️ man in steamy room: dark skin tone U+1F9D6 U+200D U+2640 U+FE0F ; 5.0 # 🧖‍♀️ woman in steamy room U+1F9D6 U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧖🏻‍♀️ woman in steamy room: light skin tone U+1F9D6 U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧖🏼‍♀️ woman in steamy room: medium-light skin tone U+1F9D6 U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧖🏽‍♀️ woman in steamy room: medium skin tone U+1F9D6 U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧖🏾‍♀️ woman in steamy room: medium-dark skin tone U+1F9D6 U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧖🏿‍♀️ woman in steamy room: dark skin tone U+1F9D7 ; 5.0 # 🧗 person climbing U+1F9D7 U+1F3FB ; 5.0 # 🧗🏻 person climbing: light skin tone U+1F9D7 U+1F3FC ; 5.0 # 🧗🏼 person climbing: medium-light skin tone U+1F9D7 U+1F3FD ; 5.0 # 🧗🏽 person climbing: medium skin tone U+1F9D7 U+1F3FE ; 5.0 # 🧗🏾 person climbing: medium-dark skin tone U+1F9D7 U+1F3FF ; 5.0 # 🧗🏿 person climbing: dark skin tone U+1F9D7 U+200D U+2642 U+FE0F ; 5.0 # 🧗‍♂️ man climbing U+1F9D7 U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧗🏻‍♂️ man climbing: light skin tone U+1F9D7 U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧗🏼‍♂️ man climbing: medium-light skin tone U+1F9D7 U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧗🏽‍♂️ man climbing: medium skin tone U+1F9D7 U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧗🏾‍♂️ man climbing: medium-dark skin tone U+1F9D7 U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧗🏿‍♂️ man climbing: dark skin tone U+1F9D7 U+200D U+2640 U+FE0F ; 5.0 # 🧗‍♀️ woman climbing U+1F9D7 U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧗🏻‍♀️ woman climbing: light skin tone U+1F9D7 U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧗🏼‍♀️ woman climbing: medium-light skin tone U+1F9D7 U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧗🏽‍♀️ woman climbing: medium skin tone U+1F9D7 U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧗🏾‍♀️ woman climbing: medium-dark skin tone U+1F9D7 U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧗🏿‍♀️ woman climbing: dark skin tone U+1F93A ; 3.0 # 🤺 person fencing U+1F3C7 ; 1.0 # 🏇 horse racing U+1F3C7 U+1F3FB ; 1.0 # 🏇🏻 horse racing: light skin tone U+1F3C7 U+1F3FC ; 1.0 # 🏇🏼 horse racing: medium-light skin tone U+1F3C7 U+1F3FD ; 1.0 # 🏇🏽 horse racing: medium skin tone U+1F3C7 U+1F3FE ; 1.0 # 🏇🏾 horse racing: medium-dark skin tone U+1F3C7 U+1F3FF ; 1.0 # 🏇🏿 horse racing: dark skin tone U+26F7 ; 0.7 # ⛷ skier U+1F3C2 ; 0.6 # 🏂 snowboarder U+1F3C2 U+1F3FB ; 1.0 # 🏂🏻 snowboarder: light skin tone U+1F3C2 U+1F3FC ; 1.0 # 🏂🏼 snowboarder: medium-light skin tone U+1F3C2 U+1F3FD ; 1.0 # 🏂🏽 snowboarder: medium skin tone U+1F3C2 U+1F3FE ; 1.0 # 🏂🏾 snowboarder: medium-dark skin tone U+1F3C2 U+1F3FF ; 1.0 # 🏂🏿 snowboarder: dark skin tone U+1F3CC ; 0.7 # 🏌 person golfing U+1F3CC U+1F3FB ; 4.0 # 🏌🏻 person golfing: light skin tone U+1F3CC U+1F3FC ; 4.0 # 🏌🏼 person golfing: medium-light skin tone U+1F3CC U+1F3FD ; 4.0 # 🏌🏽 person golfing: medium skin tone U+1F3CC U+1F3FE ; 4.0 # 🏌🏾 person golfing: medium-dark skin tone U+1F3CC U+1F3FF ; 4.0 # 🏌🏿 person golfing: dark skin tone U+1F3CC U+FE0F U+200D U+2642 U+FE0F ; 4.0 # 🏌️‍♂️ man golfing U+1F3CC U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🏌🏻‍♂️ man golfing: light skin tone U+1F3CC U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🏌🏼‍♂️ man golfing: medium-light skin tone U+1F3CC U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🏌🏽‍♂️ man golfing: medium skin tone U+1F3CC U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🏌🏾‍♂️ man golfing: medium-dark skin tone U+1F3CC U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🏌🏿‍♂️ man golfing: dark skin tone U+1F3CC U+FE0F U+200D U+2640 U+FE0F ; 4.0 # 🏌️‍♀️ woman golfing U+1F3CC U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🏌🏻‍♀️ woman golfing: light skin tone U+1F3CC U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🏌🏼‍♀️ woman golfing: medium-light skin tone U+1F3CC U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🏌🏽‍♀️ woman golfing: medium skin tone U+1F3CC U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🏌🏾‍♀️ woman golfing: medium-dark skin tone U+1F3CC U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🏌🏿‍♀️ woman golfing: dark skin tone U+1F3C4 ; 0.6 # 🏄 person surfing U+1F3C4 U+1F3FB ; 1.0 # 🏄🏻 person surfing: light skin tone U+1F3C4 U+1F3FC ; 1.0 # 🏄🏼 person surfing: medium-light skin tone U+1F3C4 U+1F3FD ; 1.0 # 🏄🏽 person surfing: medium skin tone U+1F3C4 U+1F3FE ; 1.0 # 🏄🏾 person surfing: medium-dark skin tone U+1F3C4 U+1F3FF ; 1.0 # 🏄🏿 person surfing: dark skin tone U+1F3C4 U+200D U+2642 U+FE0F ; 4.0 # 🏄‍♂️ man surfing U+1F3C4 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🏄🏻‍♂️ man surfing: light skin tone U+1F3C4 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🏄🏼‍♂️ man surfing: medium-light skin tone U+1F3C4 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🏄🏽‍♂️ man surfing: medium skin tone U+1F3C4 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🏄🏾‍♂️ man surfing: medium-dark skin tone U+1F3C4 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🏄🏿‍♂️ man surfing: dark skin tone U+1F3C4 U+200D U+2640 U+FE0F ; 4.0 # 🏄‍♀️ woman surfing U+1F3C4 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🏄🏻‍♀️ woman surfing: light skin tone U+1F3C4 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🏄🏼‍♀️ woman surfing: medium-light skin tone U+1F3C4 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🏄🏽‍♀️ woman surfing: medium skin tone U+1F3C4 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🏄🏾‍♀️ woman surfing: medium-dark skin tone U+1F3C4 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🏄🏿‍♀️ woman surfing: dark skin tone U+1F6A3 ; 1.0 # 🚣 person rowing boat U+1F6A3 U+1F3FB ; 1.0 # 🚣🏻 person rowing boat: light skin tone U+1F6A3 U+1F3FC ; 1.0 # 🚣🏼 person rowing boat: medium-light skin tone U+1F6A3 U+1F3FD ; 1.0 # 🚣🏽 person rowing boat: medium skin tone U+1F6A3 U+1F3FE ; 1.0 # 🚣🏾 person rowing boat: medium-dark skin tone U+1F6A3 U+1F3FF ; 1.0 # 🚣🏿 person rowing boat: dark skin tone U+1F6A3 U+200D U+2642 U+FE0F ; 4.0 # 🚣‍♂️ man rowing boat U+1F6A3 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🚣🏻‍♂️ man rowing boat: light skin tone U+1F6A3 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🚣🏼‍♂️ man rowing boat: medium-light skin tone U+1F6A3 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🚣🏽‍♂️ man rowing boat: medium skin tone U+1F6A3 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🚣🏾‍♂️ man rowing boat: medium-dark skin tone U+1F6A3 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🚣🏿‍♂️ man rowing boat: dark skin tone U+1F6A3 U+200D U+2640 U+FE0F ; 4.0 # 🚣‍♀️ woman rowing boat U+1F6A3 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🚣🏻‍♀️ woman rowing boat: light skin tone U+1F6A3 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🚣🏼‍♀️ woman rowing boat: medium-light skin tone U+1F6A3 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🚣🏽‍♀️ woman rowing boat: medium skin tone U+1F6A3 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🚣🏾‍♀️ woman rowing boat: medium-dark skin tone U+1F6A3 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🚣🏿‍♀️ woman rowing boat: dark skin tone U+1F3CA ; 0.6 # 🏊 person swimming U+1F3CA U+1F3FB ; 1.0 # 🏊🏻 person swimming: light skin tone U+1F3CA U+1F3FC ; 1.0 # 🏊🏼 person swimming: medium-light skin tone U+1F3CA U+1F3FD ; 1.0 # 🏊🏽 person swimming: medium skin tone U+1F3CA U+1F3FE ; 1.0 # 🏊🏾 person swimming: medium-dark skin tone U+1F3CA U+1F3FF ; 1.0 # 🏊🏿 person swimming: dark skin tone U+1F3CA U+200D U+2642 U+FE0F ; 4.0 # 🏊‍♂️ man swimming U+1F3CA U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🏊🏻‍♂️ man swimming: light skin tone U+1F3CA U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🏊🏼‍♂️ man swimming: medium-light skin tone U+1F3CA U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🏊🏽‍♂️ man swimming: medium skin tone U+1F3CA U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🏊🏾‍♂️ man swimming: medium-dark skin tone U+1F3CA U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🏊🏿‍♂️ man swimming: dark skin tone U+1F3CA U+200D U+2640 U+FE0F ; 4.0 # 🏊‍♀️ woman swimming U+1F3CA U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🏊🏻‍♀️ woman swimming: light skin tone U+1F3CA U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🏊🏼‍♀️ woman swimming: medium-light skin tone U+1F3CA U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🏊🏽‍♀️ woman swimming: medium skin tone U+1F3CA U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🏊🏾‍♀️ woman swimming: medium-dark skin tone U+1F3CA U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🏊🏿‍♀️ woman swimming: dark skin tone U+26F9 ; 0.7 # ⛹ person bouncing ball U+26F9 U+1F3FB ; 2.0 # ⛹🏻 person bouncing ball: light skin tone U+26F9 U+1F3FC ; 2.0 # ⛹🏼 person bouncing ball: medium-light skin tone U+26F9 U+1F3FD ; 2.0 # ⛹🏽 person bouncing ball: medium skin tone U+26F9 U+1F3FE ; 2.0 # ⛹🏾 person bouncing ball: medium-dark skin tone U+26F9 U+1F3FF ; 2.0 # ⛹🏿 person bouncing ball: dark skin tone U+26F9 U+FE0F U+200D U+2642 U+FE0F ; 4.0 # ⛹️‍♂️ man bouncing ball U+26F9 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # ⛹🏻‍♂️ man bouncing ball: light skin tone U+26F9 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # ⛹🏼‍♂️ man bouncing ball: medium-light skin tone U+26F9 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # ⛹🏽‍♂️ man bouncing ball: medium skin tone U+26F9 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # ⛹🏾‍♂️ man bouncing ball: medium-dark skin tone U+26F9 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # ⛹🏿‍♂️ man bouncing ball: dark skin tone U+26F9 U+FE0F U+200D U+2640 U+FE0F ; 4.0 # ⛹️‍♀️ woman bouncing ball U+26F9 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # ⛹🏻‍♀️ woman bouncing ball: light skin tone U+26F9 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # ⛹🏼‍♀️ woman bouncing ball: medium-light skin tone U+26F9 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # ⛹🏽‍♀️ woman bouncing ball: medium skin tone U+26F9 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # ⛹🏾‍♀️ woman bouncing ball: medium-dark skin tone U+26F9 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # ⛹🏿‍♀️ woman bouncing ball: dark skin tone U+1F3CB ; 0.7 # 🏋 person lifting weights U+1F3CB U+1F3FB ; 2.0 # 🏋🏻 person lifting weights: light skin tone U+1F3CB U+1F3FC ; 2.0 # 🏋🏼 person lifting weights: medium-light skin tone U+1F3CB U+1F3FD ; 2.0 # 🏋🏽 person lifting weights: medium skin tone U+1F3CB U+1F3FE ; 2.0 # 🏋🏾 person lifting weights: medium-dark skin tone U+1F3CB U+1F3FF ; 2.0 # 🏋🏿 person lifting weights: dark skin tone U+1F3CB U+FE0F U+200D U+2642 U+FE0F ; 4.0 # 🏋️‍♂️ man lifting weights U+1F3CB U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🏋🏻‍♂️ man lifting weights: light skin tone U+1F3CB U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🏋🏼‍♂️ man lifting weights: medium-light skin tone U+1F3CB U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🏋🏽‍♂️ man lifting weights: medium skin tone U+1F3CB U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🏋🏾‍♂️ man lifting weights: medium-dark skin tone U+1F3CB U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🏋🏿‍♂️ man lifting weights: dark skin tone U+1F3CB U+FE0F U+200D U+2640 U+FE0F ; 4.0 # 🏋️‍♀️ woman lifting weights U+1F3CB U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🏋🏻‍♀️ woman lifting weights: light skin tone U+1F3CB U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🏋🏼‍♀️ woman lifting weights: medium-light skin tone U+1F3CB U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🏋🏽‍♀️ woman lifting weights: medium skin tone U+1F3CB U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🏋🏾‍♀️ woman lifting weights: medium-dark skin tone U+1F3CB U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🏋🏿‍♀️ woman lifting weights: dark skin tone U+1F6B4 ; 1.0 # 🚴 person biking U+1F6B4 U+1F3FB ; 1.0 # 🚴🏻 person biking: light skin tone U+1F6B4 U+1F3FC ; 1.0 # 🚴🏼 person biking: medium-light skin tone U+1F6B4 U+1F3FD ; 1.0 # 🚴🏽 person biking: medium skin tone U+1F6B4 U+1F3FE ; 1.0 # 🚴🏾 person biking: medium-dark skin tone U+1F6B4 U+1F3FF ; 1.0 # 🚴🏿 person biking: dark skin tone U+1F6B4 U+200D U+2642 U+FE0F ; 4.0 # 🚴‍♂️ man biking U+1F6B4 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🚴🏻‍♂️ man biking: light skin tone U+1F6B4 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🚴🏼‍♂️ man biking: medium-light skin tone U+1F6B4 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🚴🏽‍♂️ man biking: medium skin tone U+1F6B4 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🚴🏾‍♂️ man biking: medium-dark skin tone U+1F6B4 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🚴🏿‍♂️ man biking: dark skin tone U+1F6B4 U+200D U+2640 U+FE0F ; 4.0 # 🚴‍♀️ woman biking U+1F6B4 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🚴🏻‍♀️ woman biking: light skin tone U+1F6B4 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🚴🏼‍♀️ woman biking: medium-light skin tone U+1F6B4 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🚴🏽‍♀️ woman biking: medium skin tone U+1F6B4 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🚴🏾‍♀️ woman biking: medium-dark skin tone U+1F6B4 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🚴🏿‍♀️ woman biking: dark skin tone U+1F6B5 ; 1.0 # 🚵 person mountain biking U+1F6B5 U+1F3FB ; 1.0 # 🚵🏻 person mountain biking: light skin tone U+1F6B5 U+1F3FC ; 1.0 # 🚵🏼 person mountain biking: medium-light skin tone U+1F6B5 U+1F3FD ; 1.0 # 🚵🏽 person mountain biking: medium skin tone U+1F6B5 U+1F3FE ; 1.0 # 🚵🏾 person mountain biking: medium-dark skin tone U+1F6B5 U+1F3FF ; 1.0 # 🚵🏿 person mountain biking: dark skin tone U+1F6B5 U+200D U+2642 U+FE0F ; 4.0 # 🚵‍♂️ man mountain biking U+1F6B5 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🚵🏻‍♂️ man mountain biking: light skin tone U+1F6B5 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🚵🏼‍♂️ man mountain biking: medium-light skin tone U+1F6B5 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🚵🏽‍♂️ man mountain biking: medium skin tone U+1F6B5 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🚵🏾‍♂️ man mountain biking: medium-dark skin tone U+1F6B5 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🚵🏿‍♂️ man mountain biking: dark skin tone U+1F6B5 U+200D U+2640 U+FE0F ; 4.0 # 🚵‍♀️ woman mountain biking U+1F6B5 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🚵🏻‍♀️ woman mountain biking: light skin tone U+1F6B5 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🚵🏼‍♀️ woman mountain biking: medium-light skin tone U+1F6B5 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🚵🏽‍♀️ woman mountain biking: medium skin tone U+1F6B5 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🚵🏾‍♀️ woman mountain biking: medium-dark skin tone U+1F6B5 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🚵🏿‍♀️ woman mountain biking: dark skin tone U+1F938 ; 3.0 # 🤸 person cartwheeling U+1F938 U+1F3FB ; 3.0 # 🤸🏻 person cartwheeling: light skin tone U+1F938 U+1F3FC ; 3.0 # 🤸🏼 person cartwheeling: medium-light skin tone U+1F938 U+1F3FD ; 3.0 # 🤸🏽 person cartwheeling: medium skin tone U+1F938 U+1F3FE ; 3.0 # 🤸🏾 person cartwheeling: medium-dark skin tone U+1F938 U+1F3FF ; 3.0 # 🤸🏿 person cartwheeling: dark skin tone U+1F938 U+200D U+2642 U+FE0F ; 4.0 # 🤸‍♂️ man cartwheeling U+1F938 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤸🏻‍♂️ man cartwheeling: light skin tone U+1F938 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤸🏼‍♂️ man cartwheeling: medium-light skin tone U+1F938 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤸🏽‍♂️ man cartwheeling: medium skin tone U+1F938 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤸🏾‍♂️ man cartwheeling: medium-dark skin tone U+1F938 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤸🏿‍♂️ man cartwheeling: dark skin tone U+1F938 U+200D U+2640 U+FE0F ; 4.0 # 🤸‍♀️ woman cartwheeling U+1F938 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤸🏻‍♀️ woman cartwheeling: light skin tone U+1F938 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤸🏼‍♀️ woman cartwheeling: medium-light skin tone U+1F938 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤸🏽‍♀️ woman cartwheeling: medium skin tone U+1F938 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤸🏾‍♀️ woman cartwheeling: medium-dark skin tone U+1F938 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤸🏿‍♀️ woman cartwheeling: dark skin tone U+1F93C ; 3.0 # 🤼 people wrestling # added U+1F93C U+1F3FB ; 3.0 # 🤼🏻 people wrestling: light skin tone # added U+1F93C U+1F3FC ; 3.0 # 🤼🏼 people wrestling: medium-light skin tone # added U+1F93C U+1F3FD ; 3.0 # 🤼🏽 people wrestling: medium skin tone # added U+1F93C U+1F3FE ; 3.0 # 🤼🏾 people wrestling: medium-dark skin tone # added U+1F93C U+1F3FF ; 3.0 # 🤼🏿 people wrestling: dark skin tone U+1F93C U+200D U+2642 U+FE0F ; 4.0 # 🤼‍♂️ men wrestling U+1F93C U+200D U+2640 U+FE0F ; 4.0 # 🤼‍♀️ women wrestling U+1F93D ; 3.0 # 🤽 person playing water polo U+1F93D U+1F3FB ; 3.0 # 🤽🏻 person playing water polo: light skin tone U+1F93D U+1F3FC ; 3.0 # 🤽🏼 person playing water polo: medium-light skin tone U+1F93D U+1F3FD ; 3.0 # 🤽🏽 person playing water polo: medium skin tone U+1F93D U+1F3FE ; 3.0 # 🤽🏾 person playing water polo: medium-dark skin tone U+1F93D U+1F3FF ; 3.0 # 🤽🏿 person playing water polo: dark skin tone U+1F93D U+200D U+2642 U+FE0F ; 4.0 # 🤽‍♂️ man playing water polo U+1F93D U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤽🏻‍♂️ man playing water polo: light skin tone U+1F93D U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤽🏼‍♂️ man playing water polo: medium-light skin tone U+1F93D U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤽🏽‍♂️ man playing water polo: medium skin tone U+1F93D U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤽🏾‍♂️ man playing water polo: medium-dark skin tone U+1F93D U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤽🏿‍♂️ man playing water polo: dark skin tone U+1F93D U+200D U+2640 U+FE0F ; 4.0 # 🤽‍♀️ woman playing water polo U+1F93D U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤽🏻‍♀️ woman playing water polo: light skin tone U+1F93D U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤽🏼‍♀️ woman playing water polo: medium-light skin tone U+1F93D U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤽🏽‍♀️ woman playing water polo: medium skin tone U+1F93D U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤽🏾‍♀️ woman playing water polo: medium-dark skin tone U+1F93D U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤽🏿‍♀️ woman playing water polo: dark skin tone U+1F93E ; 3.0 # 🤾 person playing handball U+1F93E U+1F3FB ; 3.0 # 🤾🏻 person playing handball: light skin tone U+1F93E U+1F3FC ; 3.0 # 🤾🏼 person playing handball: medium-light skin tone U+1F93E U+1F3FD ; 3.0 # 🤾🏽 person playing handball: medium skin tone U+1F93E U+1F3FE ; 3.0 # 🤾🏾 person playing handball: medium-dark skin tone U+1F93E U+1F3FF ; 3.0 # 🤾🏿 person playing handball: dark skin tone U+1F93E U+200D U+2642 U+FE0F ; 4.0 # 🤾‍♂️ man playing handball U+1F93E U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤾🏻‍♂️ man playing handball: light skin tone U+1F93E U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤾🏼‍♂️ man playing handball: medium-light skin tone U+1F93E U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤾🏽‍♂️ man playing handball: medium skin tone U+1F93E U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤾🏾‍♂️ man playing handball: medium-dark skin tone U+1F93E U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤾🏿‍♂️ man playing handball: dark skin tone U+1F93E U+200D U+2640 U+FE0F ; 4.0 # 🤾‍♀️ woman playing handball U+1F93E U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤾🏻‍♀️ woman playing handball: light skin tone U+1F93E U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤾🏼‍♀️ woman playing handball: medium-light skin tone U+1F93E U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤾🏽‍♀️ woman playing handball: medium skin tone U+1F93E U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤾🏾‍♀️ woman playing handball: medium-dark skin tone U+1F93E U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤾🏿‍♀️ woman playing handball: dark skin tone U+1F939 ; 3.0 # 🤹 person juggling U+1F939 U+1F3FB ; 3.0 # 🤹🏻 person juggling: light skin tone U+1F939 U+1F3FC ; 3.0 # 🤹🏼 person juggling: medium-light skin tone U+1F939 U+1F3FD ; 3.0 # 🤹🏽 person juggling: medium skin tone U+1F939 U+1F3FE ; 3.0 # 🤹🏾 person juggling: medium-dark skin tone U+1F939 U+1F3FF ; 3.0 # 🤹🏿 person juggling: dark skin tone U+1F939 U+200D U+2642 U+FE0F ; 4.0 # 🤹‍♂️ man juggling U+1F939 U+1F3FB U+200D U+2642 U+FE0F ; 4.0 # 🤹🏻‍♂️ man juggling: light skin tone U+1F939 U+1F3FC U+200D U+2642 U+FE0F ; 4.0 # 🤹🏼‍♂️ man juggling: medium-light skin tone U+1F939 U+1F3FD U+200D U+2642 U+FE0F ; 4.0 # 🤹🏽‍♂️ man juggling: medium skin tone U+1F939 U+1F3FE U+200D U+2642 U+FE0F ; 4.0 # 🤹🏾‍♂️ man juggling: medium-dark skin tone U+1F939 U+1F3FF U+200D U+2642 U+FE0F ; 4.0 # 🤹🏿‍♂️ man juggling: dark skin tone U+1F939 U+200D U+2640 U+FE0F ; 4.0 # 🤹‍♀️ woman juggling U+1F939 U+1F3FB U+200D U+2640 U+FE0F ; 4.0 # 🤹🏻‍♀️ woman juggling: light skin tone U+1F939 U+1F3FC U+200D U+2640 U+FE0F ; 4.0 # 🤹🏼‍♀️ woman juggling: medium-light skin tone U+1F939 U+1F3FD U+200D U+2640 U+FE0F ; 4.0 # 🤹🏽‍♀️ woman juggling: medium skin tone U+1F939 U+1F3FE U+200D U+2640 U+FE0F ; 4.0 # 🤹🏾‍♀️ woman juggling: medium-dark skin tone U+1F939 U+1F3FF U+200D U+2640 U+FE0F ; 4.0 # 🤹🏿‍♀️ woman juggling: dark skin tone U+1F9D8 ; 5.0 # 🧘 person in lotus position U+1F9D8 U+1F3FB ; 5.0 # 🧘🏻 person in lotus position: light skin tone U+1F9D8 U+1F3FC ; 5.0 # 🧘🏼 person in lotus position: medium-light skin tone U+1F9D8 U+1F3FD ; 5.0 # 🧘🏽 person in lotus position: medium skin tone U+1F9D8 U+1F3FE ; 5.0 # 🧘🏾 person in lotus position: medium-dark skin tone U+1F9D8 U+1F3FF ; 5.0 # 🧘🏿 person in lotus position: dark skin tone U+1F9D8 U+200D U+2642 U+FE0F ; 5.0 # 🧘‍♂️ man in lotus position U+1F9D8 U+1F3FB U+200D U+2642 U+FE0F ; 5.0 # 🧘🏻‍♂️ man in lotus position: light skin tone U+1F9D8 U+1F3FC U+200D U+2642 U+FE0F ; 5.0 # 🧘🏼‍♂️ man in lotus position: medium-light skin tone U+1F9D8 U+1F3FD U+200D U+2642 U+FE0F ; 5.0 # 🧘🏽‍♂️ man in lotus position: medium skin tone U+1F9D8 U+1F3FE U+200D U+2642 U+FE0F ; 5.0 # 🧘🏾‍♂️ man in lotus position: medium-dark skin tone U+1F9D8 U+1F3FF U+200D U+2642 U+FE0F ; 5.0 # 🧘🏿‍♂️ man in lotus position: dark skin tone U+1F9D8 U+200D U+2640 U+FE0F ; 5.0 # 🧘‍♀️ woman in lotus position U+1F9D8 U+1F3FB U+200D U+2640 U+FE0F ; 5.0 # 🧘🏻‍♀️ woman in lotus position: light skin tone U+1F9D8 U+1F3FC U+200D U+2640 U+FE0F ; 5.0 # 🧘🏼‍♀️ woman in lotus position: medium-light skin tone U+1F9D8 U+1F3FD U+200D U+2640 U+FE0F ; 5.0 # 🧘🏽‍♀️ woman in lotus position: medium skin tone U+1F9D8 U+1F3FE U+200D U+2640 U+FE0F ; 5.0 # 🧘🏾‍♀️ woman in lotus position: medium-dark skin tone U+1F9D8 U+1F3FF U+200D U+2640 U+FE0F ; 5.0 # 🧘🏿‍♀️ woman in lotus position: dark skin tone U+1F6C0 ; 0.6 # 🛀 person taking bath U+1F6C0 U+1F3FB ; 1.0 # 🛀🏻 person taking bath: light skin tone U+1F6C0 U+1F3FC ; 1.0 # 🛀🏼 person taking bath: medium-light skin tone U+1F6C0 U+1F3FD ; 1.0 # 🛀🏽 person taking bath: medium skin tone U+1F6C0 U+1F3FE ; 1.0 # 🛀🏾 person taking bath: medium-dark skin tone U+1F6C0 U+1F3FF ; 1.0 # 🛀🏿 person taking bath: dark skin tone U+1F6CC ; 1.0 # 🛌 person in bed U+1F6CC U+1F3FB ; 4.0 # 🛌🏻 person in bed: light skin tone U+1F6CC U+1F3FC ; 4.0 # 🛌🏼 person in bed: medium-light skin tone U+1F6CC U+1F3FD ; 4.0 # 🛌🏽 person in bed: medium skin tone U+1F6CC U+1F3FE ; 4.0 # 🛌🏾 person in bed: medium-dark skin tone U+1F6CC U+1F3FF ; 4.0 # 🛌🏿 person in bed: dark skin tone U+1F9D1 U+200D U+1F91D U+200D U+1F9D1 ; 12.0 # 🧑‍🤝‍🧑 people holding hands U+1F9D1 U+1F3FB U+200D U+1F91D U+200D U+1F9D1 U+1F3FB ; 12.0 # 🧑🏻‍🤝‍🧑🏻 people holding hands: light skin tone U+1F9D1 U+1F3FB U+200D U+1F91D U+200D U+1F9D1 U+1F3FC ; 12.1 # 🧑🏻‍🤝‍🧑🏼 people holding hands: light skin tone, medium-light skin tone U+1F9D1 U+1F3FB U+200D U+1F91D U+200D U+1F9D1 U+1F3FD ; 12.1 # 🧑🏻‍🤝‍🧑🏽 people holding hands: light skin tone, medium skin tone U+1F9D1 U+1F3FB U+200D U+1F91D U+200D U+1F9D1 U+1F3FE ; 12.1 # 🧑🏻‍🤝‍🧑🏾 people holding hands: light skin tone, medium-dark skin tone U+1F9D1 U+1F3FB U+200D U+1F91D U+200D U+1F9D1 U+1F3FF ; 12.1 # 🧑🏻‍🤝‍🧑🏿 people holding hands: light skin tone, dark skin tone U+1F9D1 U+1F3FC U+200D U+1F91D U+200D U+1F9D1 U+1F3FB ; 12.0 # 🧑🏼‍🤝‍🧑🏻 people holding hands: medium-light skin tone, light skin tone U+1F9D1 U+1F3FC U+200D U+1F91D U+200D U+1F9D1 U+1F3FC ; 12.0 # 🧑🏼‍🤝‍🧑🏼 people holding hands: medium-light skin tone U+1F9D1 U+1F3FC U+200D U+1F91D U+200D U+1F9D1 U+1F3FD ; 12.1 # 🧑🏼‍🤝‍🧑🏽 people holding hands: medium-light skin tone, medium skin tone U+1F9D1 U+1F3FC U+200D U+1F91D U+200D U+1F9D1 U+1F3FE ; 12.1 # 🧑🏼‍🤝‍🧑🏾 people holding hands: medium-light skin tone, medium-dark skin tone U+1F9D1 U+1F3FC U+200D U+1F91D U+200D U+1F9D1 U+1F3FF ; 12.1 # 🧑🏼‍🤝‍🧑🏿 people holding hands: medium-light skin tone, dark skin tone U+1F9D1 U+1F3FD U+200D U+1F91D U+200D U+1F9D1 U+1F3FB ; 12.0 # 🧑🏽‍🤝‍🧑🏻 people holding hands: medium skin tone, light skin tone U+1F9D1 U+1F3FD U+200D U+1F91D U+200D U+1F9D1 U+1F3FC ; 12.0 # 🧑🏽‍🤝‍🧑🏼 people holding hands: medium skin tone, medium-light skin tone U+1F9D1 U+1F3FD U+200D U+1F91D U+200D U+1F9D1 U+1F3FD ; 12.0 # 🧑🏽‍🤝‍🧑🏽 people holding hands: medium skin tone U+1F9D1 U+1F3FD U+200D U+1F91D U+200D U+1F9D1 U+1F3FE ; 12.1 # 🧑🏽‍🤝‍🧑🏾 people holding hands: medium skin tone, medium-dark skin tone U+1F9D1 U+1F3FD U+200D U+1F91D U+200D U+1F9D1 U+1F3FF ; 12.1 # 🧑🏽‍🤝‍🧑🏿 people holding hands: medium skin tone, dark skin tone U+1F9D1 U+1F3FE U+200D U+1F91D U+200D U+1F9D1 U+1F3FB ; 12.0 # 🧑🏾‍🤝‍🧑🏻 people holding hands: medium-dark skin tone, light skin tone U+1F9D1 U+1F3FE U+200D U+1F91D U+200D U+1F9D1 U+1F3FC ; 12.0 # 🧑🏾‍🤝‍🧑🏼 people holding hands: medium-dark skin tone, medium-light skin tone U+1F9D1 U+1F3FE U+200D U+1F91D U+200D U+1F9D1 U+1F3FD ; 12.0 # 🧑🏾‍🤝‍🧑🏽 people holding hands: medium-dark skin tone, medium skin tone U+1F9D1 U+1F3FE U+200D U+1F91D U+200D U+1F9D1 U+1F3FE ; 12.0 # 🧑🏾‍🤝‍🧑🏾 people holding hands: medium-dark skin tone U+1F9D1 U+1F3FE U+200D U+1F91D U+200D U+1F9D1 U+1F3FF ; 12.1 # 🧑🏾‍🤝‍🧑🏿 people holding hands: medium-dark skin tone, dark skin tone U+1F9D1 U+1F3FF U+200D U+1F91D U+200D U+1F9D1 U+1F3FB ; 12.0 # 🧑🏿‍🤝‍🧑🏻 people holding hands: dark skin tone, light skin tone U+1F9D1 U+1F3FF U+200D U+1F91D U+200D U+1F9D1 U+1F3FC ; 12.0 # 🧑🏿‍🤝‍🧑🏼 people holding hands: dark skin tone, medium-light skin tone U+1F9D1 U+1F3FF U+200D U+1F91D U+200D U+1F9D1 U+1F3FD ; 12.0 # 🧑🏿‍🤝‍🧑🏽 people holding hands: dark skin tone, medium skin tone U+1F9D1 U+1F3FF U+200D U+1F91D U+200D U+1F9D1 U+1F3FE ; 12.0 # 🧑🏿‍🤝‍🧑🏾 people holding hands: dark skin tone, medium-dark skin tone U+1F9D1 U+1F3FF U+200D U+1F91D U+200D U+1F9D1 U+1F3FF ; 12.0 # 🧑🏿‍🤝‍🧑🏿 people holding hands: dark skin tone U+1F46D ; 1.0 # 👭 women holding hands U+1F46D U+1F3FB ; 12.0 # 👭🏻 women holding hands: light skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F469 U+1F3FC ; 12.1 # 👩🏻‍🤝‍👩🏼 women holding hands: light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F469 U+1F3FD ; 12.1 # 👩🏻‍🤝‍👩🏽 women holding hands: light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F469 U+1F3FE ; 12.1 # 👩🏻‍🤝‍👩🏾 women holding hands: light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F469 U+1F3FF ; 12.1 # 👩🏻‍🤝‍👩🏿 women holding hands: light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F469 U+1F3FB ; 12.0 # 👩🏼‍🤝‍👩🏻 women holding hands: medium-light skin tone, light skin tone U+1F46D U+1F3FC ; 12.0 # 👭🏼 women holding hands: medium-light skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F469 U+1F3FD ; 12.1 # 👩🏼‍🤝‍👩🏽 women holding hands: medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F469 U+1F3FE ; 12.1 # 👩🏼‍🤝‍👩🏾 women holding hands: medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F469 U+1F3FF ; 12.1 # 👩🏼‍🤝‍👩🏿 women holding hands: medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F469 U+1F3FB ; 12.0 # 👩🏽‍🤝‍👩🏻 women holding hands: medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F469 U+1F3FC ; 12.0 # 👩🏽‍🤝‍👩🏼 women holding hands: medium skin tone, medium-light skin tone U+1F46D U+1F3FD ; 12.0 # 👭🏽 women holding hands: medium skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F469 U+1F3FE ; 12.1 # 👩🏽‍🤝‍👩🏾 women holding hands: medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F469 U+1F3FF ; 12.1 # 👩🏽‍🤝‍👩🏿 women holding hands: medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F469 U+1F3FB ; 12.0 # 👩🏾‍🤝‍👩🏻 women holding hands: medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F469 U+1F3FC ; 12.0 # 👩🏾‍🤝‍👩🏼 women holding hands: medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F469 U+1F3FD ; 12.0 # 👩🏾‍🤝‍👩🏽 women holding hands: medium-dark skin tone, medium skin tone U+1F46D U+1F3FE ; 12.0 # 👭🏾 women holding hands: medium-dark skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F469 U+1F3FF ; 12.1 # 👩🏾‍🤝‍👩🏿 women holding hands: medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F469 U+1F3FB ; 12.0 # 👩🏿‍🤝‍👩🏻 women holding hands: dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F469 U+1F3FC ; 12.0 # 👩🏿‍🤝‍👩🏼 women holding hands: dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F469 U+1F3FD ; 12.0 # 👩🏿‍🤝‍👩🏽 women holding hands: dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F469 U+1F3FE ; 12.0 # 👩🏿‍🤝‍👩🏾 women holding hands: dark skin tone, medium-dark skin tone U+1F46D U+1F3FF ; 12.0 # 👭🏿 women holding hands: dark skin tone U+1F46B ; 0.6 # 👫 woman and man holding hands U+1F46B U+1F3FB ; 12.0 # 👫🏻 woman and man holding hands: light skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👩🏻‍🤝‍👨🏼 woman and man holding hands: light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👩🏻‍🤝‍👨🏽 woman and man holding hands: light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.0 # 👩🏻‍🤝‍👨🏾 woman and man holding hands: light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.0 # 👩🏻‍🤝‍👨🏿 woman and man holding hands: light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👩🏼‍🤝‍👨🏻 woman and man holding hands: medium-light skin tone, light skin tone U+1F46B U+1F3FC ; 12.0 # 👫🏼 woman and man holding hands: medium-light skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👩🏼‍🤝‍👨🏽 woman and man holding hands: medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.0 # 👩🏼‍🤝‍👨🏾 woman and man holding hands: medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.0 # 👩🏼‍🤝‍👨🏿 woman and man holding hands: medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👩🏽‍🤝‍👨🏻 woman and man holding hands: medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👩🏽‍🤝‍👨🏼 woman and man holding hands: medium skin tone, medium-light skin tone U+1F46B U+1F3FD ; 12.0 # 👫🏽 woman and man holding hands: medium skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.0 # 👩🏽‍🤝‍👨🏾 woman and man holding hands: medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.0 # 👩🏽‍🤝‍👨🏿 woman and man holding hands: medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👩🏾‍🤝‍👨🏻 woman and man holding hands: medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👩🏾‍🤝‍👨🏼 woman and man holding hands: medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👩🏾‍🤝‍👨🏽 woman and man holding hands: medium-dark skin tone, medium skin tone U+1F46B U+1F3FE ; 12.0 # 👫🏾 woman and man holding hands: medium-dark skin tone U+1F469 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.0 # 👩🏾‍🤝‍👨🏿 woman and man holding hands: medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👩🏿‍🤝‍👨🏻 woman and man holding hands: dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👩🏿‍🤝‍👨🏼 woman and man holding hands: dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👩🏿‍🤝‍👨🏽 woman and man holding hands: dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.0 # 👩🏿‍🤝‍👨🏾 woman and man holding hands: dark skin tone, medium-dark skin tone U+1F46B U+1F3FF ; 12.0 # 👫🏿 woman and man holding hands: dark skin tone U+1F46C ; 1.0 # 👬 men holding hands U+1F46C U+1F3FB ; 12.0 # 👬🏻 men holding hands: light skin tone U+1F468 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.1 # 👨🏻‍🤝‍👨🏼 men holding hands: light skin tone, medium-light skin tone U+1F468 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.1 # 👨🏻‍🤝‍👨🏽 men holding hands: light skin tone, medium skin tone U+1F468 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.1 # 👨🏻‍🤝‍👨🏾 men holding hands: light skin tone, medium-dark skin tone U+1F468 U+1F3FB U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.1 # 👨🏻‍🤝‍👨🏿 men holding hands: light skin tone, dark skin tone U+1F468 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👨🏼‍🤝‍👨🏻 men holding hands: medium-light skin tone, light skin tone U+1F46C U+1F3FC ; 12.0 # 👬🏼 men holding hands: medium-light skin tone U+1F468 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.1 # 👨🏼‍🤝‍👨🏽 men holding hands: medium-light skin tone, medium skin tone U+1F468 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.1 # 👨🏼‍🤝‍👨🏾 men holding hands: medium-light skin tone, medium-dark skin tone U+1F468 U+1F3FC U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.1 # 👨🏼‍🤝‍👨🏿 men holding hands: medium-light skin tone, dark skin tone U+1F468 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👨🏽‍🤝‍👨🏻 men holding hands: medium skin tone, light skin tone U+1F468 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👨🏽‍🤝‍👨🏼 men holding hands: medium skin tone, medium-light skin tone U+1F46C U+1F3FD ; 12.0 # 👬🏽 men holding hands: medium skin tone U+1F468 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.1 # 👨🏽‍🤝‍👨🏾 men holding hands: medium skin tone, medium-dark skin tone U+1F468 U+1F3FD U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.1 # 👨🏽‍🤝‍👨🏿 men holding hands: medium skin tone, dark skin tone U+1F468 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👨🏾‍🤝‍👨🏻 men holding hands: medium-dark skin tone, light skin tone U+1F468 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👨🏾‍🤝‍👨🏼 men holding hands: medium-dark skin tone, medium-light skin tone U+1F468 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👨🏾‍🤝‍👨🏽 men holding hands: medium-dark skin tone, medium skin tone U+1F46C U+1F3FE ; 12.0 # 👬🏾 men holding hands: medium-dark skin tone U+1F468 U+1F3FE U+200D U+1F91D U+200D U+1F468 U+1F3FF ; 12.1 # 👨🏾‍🤝‍👨🏿 men holding hands: medium-dark skin tone, dark skin tone U+1F468 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FB ; 12.0 # 👨🏿‍🤝‍👨🏻 men holding hands: dark skin tone, light skin tone U+1F468 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FC ; 12.0 # 👨🏿‍🤝‍👨🏼 men holding hands: dark skin tone, medium-light skin tone U+1F468 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FD ; 12.0 # 👨🏿‍🤝‍👨🏽 men holding hands: dark skin tone, medium skin tone U+1F468 U+1F3FF U+200D U+1F91D U+200D U+1F468 U+1F3FE ; 12.0 # 👨🏿‍🤝‍👨🏾 men holding hands: dark skin tone, medium-dark skin tone U+1F46C U+1F3FF ; 12.0 # 👬🏿 men holding hands: dark skin tone U+1F48F ; 0.6 # 💏 kiss U+1F48F U+1F3FB ; 13.1 # 💏🏻 kiss: light skin tone U+1F48F U+1F3FC ; 13.1 # 💏🏼 kiss: medium-light skin tone U+1F48F U+1F3FD ; 13.1 # 💏🏽 kiss: medium skin tone U+1F48F U+1F3FE ; 13.1 # 💏🏾 kiss: medium-dark skin tone U+1F48F U+1F3FF ; 13.1 # 💏🏿 kiss: dark skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏻‍❤️‍💋‍🧑🏼 kiss: person, person, light skin tone, medium-light skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏻‍❤️‍💋‍🧑🏽 kiss: person, person, light skin tone, medium skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏻‍❤️‍💋‍🧑🏾 kiss: person, person, light skin tone, medium-dark skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏻‍❤️‍💋‍🧑🏿 kiss: person, person, light skin tone, dark skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏼‍❤️‍💋‍🧑🏻 kiss: person, person, medium-light skin tone, light skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏼‍❤️‍💋‍🧑🏽 kiss: person, person, medium-light skin tone, medium skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏼‍❤️‍💋‍🧑🏾 kiss: person, person, medium-light skin tone, medium-dark skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏼‍❤️‍💋‍🧑🏿 kiss: person, person, medium-light skin tone, dark skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏽‍❤️‍💋‍🧑🏻 kiss: person, person, medium skin tone, light skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏽‍❤️‍💋‍🧑🏼 kiss: person, person, medium skin tone, medium-light skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏽‍❤️‍💋‍🧑🏾 kiss: person, person, medium skin tone, medium-dark skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏽‍❤️‍💋‍🧑🏿 kiss: person, person, medium skin tone, dark skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏾‍❤️‍💋‍🧑🏻 kiss: person, person, medium-dark skin tone, light skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏾‍❤️‍💋‍🧑🏼 kiss: person, person, medium-dark skin tone, medium-light skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏾‍❤️‍💋‍🧑🏽 kiss: person, person, medium-dark skin tone, medium skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏾‍❤️‍💋‍🧑🏿 kiss: person, person, medium-dark skin tone, dark skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏿‍❤️‍💋‍🧑🏻 kiss: person, person, dark skin tone, light skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏿‍❤️‍💋‍🧑🏼 kiss: person, person, dark skin tone, medium-light skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏿‍❤️‍💋‍🧑🏽 kiss: person, person, dark skin tone, medium skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏿‍❤️‍💋‍🧑🏾 kiss: person, person, dark skin tone, medium-dark skin tone U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 ; 2.0 # 👩‍❤️‍💋‍👨 kiss: woman, man U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏻‍❤️‍💋‍👨🏻 kiss: woman, man, light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏻‍❤️‍💋‍👨🏼 kiss: woman, man, light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏻‍❤️‍💋‍👨🏽 kiss: woman, man, light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏻‍❤️‍💋‍👨🏾 kiss: woman, man, light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏻‍❤️‍💋‍👨🏿 kiss: woman, man, light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏼‍❤️‍💋‍👨🏻 kiss: woman, man, medium-light skin tone, light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏼‍❤️‍💋‍👨🏼 kiss: woman, man, medium-light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏼‍❤️‍💋‍👨🏽 kiss: woman, man, medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏼‍❤️‍💋‍👨🏾 kiss: woman, man, medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏼‍❤️‍💋‍👨🏿 kiss: woman, man, medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏽‍❤️‍💋‍👨🏻 kiss: woman, man, medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏽‍❤️‍💋‍👨🏼 kiss: woman, man, medium skin tone, medium-light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏽‍❤️‍💋‍👨🏽 kiss: woman, man, medium skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏽‍❤️‍💋‍👨🏾 kiss: woman, man, medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏽‍❤️‍💋‍👨🏿 kiss: woman, man, medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏾‍❤️‍💋‍👨🏻 kiss: woman, man, medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏾‍❤️‍💋‍👨🏼 kiss: woman, man, medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏾‍❤️‍💋‍👨🏽 kiss: woman, man, medium-dark skin tone, medium skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏾‍❤️‍💋‍👨🏾 kiss: woman, man, medium-dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏾‍❤️‍💋‍👨🏿 kiss: woman, man, medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏿‍❤️‍💋‍👨🏻 kiss: woman, man, dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏿‍❤️‍💋‍👨🏼 kiss: woman, man, dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏿‍❤️‍💋‍👨🏽 kiss: woman, man, dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏿‍❤️‍💋‍👨🏾 kiss: woman, man, dark skin tone, medium-dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏿‍❤️‍💋‍👨🏿 kiss: woman, man, dark skin tone U+1F468 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 ; 2.0 # 👨‍❤️‍💋‍👨 kiss: man, man U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏻‍❤️‍💋‍👨🏻 kiss: man, man, light skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏻‍❤️‍💋‍👨🏼 kiss: man, man, light skin tone, medium-light skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏻‍❤️‍💋‍👨🏽 kiss: man, man, light skin tone, medium skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏻‍❤️‍💋‍👨🏾 kiss: man, man, light skin tone, medium-dark skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏻‍❤️‍💋‍👨🏿 kiss: man, man, light skin tone, dark skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏼‍❤️‍💋‍👨🏻 kiss: man, man, medium-light skin tone, light skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏼‍❤️‍💋‍👨🏼 kiss: man, man, medium-light skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏼‍❤️‍💋‍👨🏽 kiss: man, man, medium-light skin tone, medium skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏼‍❤️‍💋‍👨🏾 kiss: man, man, medium-light skin tone, medium-dark skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏼‍❤️‍💋‍👨🏿 kiss: man, man, medium-light skin tone, dark skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏽‍❤️‍💋‍👨🏻 kiss: man, man, medium skin tone, light skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏽‍❤️‍💋‍👨🏼 kiss: man, man, medium skin tone, medium-light skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏽‍❤️‍💋‍👨🏽 kiss: man, man, medium skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏽‍❤️‍💋‍👨🏾 kiss: man, man, medium skin tone, medium-dark skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏽‍❤️‍💋‍👨🏿 kiss: man, man, medium skin tone, dark skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏾‍❤️‍💋‍👨🏻 kiss: man, man, medium-dark skin tone, light skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏾‍❤️‍💋‍👨🏼 kiss: man, man, medium-dark skin tone, medium-light skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏾‍❤️‍💋‍👨🏽 kiss: man, man, medium-dark skin tone, medium skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏾‍❤️‍💋‍👨🏾 kiss: man, man, medium-dark skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏾‍❤️‍💋‍👨🏿 kiss: man, man, medium-dark skin tone, dark skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏿‍❤️‍💋‍👨🏻 kiss: man, man, dark skin tone, light skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏿‍❤️‍💋‍👨🏼 kiss: man, man, dark skin tone, medium-light skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏿‍❤️‍💋‍👨🏽 kiss: man, man, dark skin tone, medium skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏿‍❤️‍💋‍👨🏾 kiss: man, man, dark skin tone, medium-dark skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏿‍❤️‍💋‍👨🏿 kiss: man, man, dark skin tone U+1F469 U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 ; 2.0 # 👩‍❤️‍💋‍👩 kiss: woman, woman U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏻‍❤️‍💋‍👩🏻 kiss: woman, woman, light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏻‍❤️‍💋‍👩🏼 kiss: woman, woman, light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏻‍❤️‍💋‍👩🏽 kiss: woman, woman, light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏻‍❤️‍💋‍👩🏾 kiss: woman, woman, light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏻‍❤️‍💋‍👩🏿 kiss: woman, woman, light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏼‍❤️‍💋‍👩🏻 kiss: woman, woman, medium-light skin tone, light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏼‍❤️‍💋‍👩🏼 kiss: woman, woman, medium-light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏼‍❤️‍💋‍👩🏽 kiss: woman, woman, medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏼‍❤️‍💋‍👩🏾 kiss: woman, woman, medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏼‍❤️‍💋‍👩🏿 kiss: woman, woman, medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏽‍❤️‍💋‍👩🏻 kiss: woman, woman, medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏽‍❤️‍💋‍👩🏼 kiss: woman, woman, medium skin tone, medium-light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏽‍❤️‍💋‍👩🏽 kiss: woman, woman, medium skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏽‍❤️‍💋‍👩🏾 kiss: woman, woman, medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏽‍❤️‍💋‍👩🏿 kiss: woman, woman, medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏾‍❤️‍💋‍👩🏻 kiss: woman, woman, medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏾‍❤️‍💋‍👩🏼 kiss: woman, woman, medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏾‍❤️‍💋‍👩🏽 kiss: woman, woman, medium-dark skin tone, medium skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏾‍❤️‍💋‍👩🏾 kiss: woman, woman, medium-dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏾‍❤️‍💋‍👩🏿 kiss: woman, woman, medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏿‍❤️‍💋‍👩🏻 kiss: woman, woman, dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏿‍❤️‍💋‍👩🏼 kiss: woman, woman, dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏿‍❤️‍💋‍👩🏽 kiss: woman, woman, dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏿‍❤️‍💋‍👩🏾 kiss: woman, woman, dark skin tone, medium-dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F48B U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏿‍❤️‍💋‍👩🏿 kiss: woman, woman, dark skin tone U+1F491 ; 0.6 # 💑 couple with heart U+1F491 U+1F3FB ; 13.1 # 💑🏻 couple with heart: light skin tone U+1F491 U+1F3FC ; 13.1 # 💑🏼 couple with heart: medium-light skin tone U+1F491 U+1F3FD ; 13.1 # 💑🏽 couple with heart: medium skin tone U+1F491 U+1F3FE ; 13.1 # 💑🏾 couple with heart: medium-dark skin tone U+1F491 U+1F3FF ; 13.1 # 💑🏿 couple with heart: dark skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏻‍❤️‍🧑🏼 couple with heart: person, person, light skin tone, medium-light skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏻‍❤️‍🧑🏽 couple with heart: person, person, light skin tone, medium skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏻‍❤️‍🧑🏾 couple with heart: person, person, light skin tone, medium-dark skin tone U+1F9D1 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏻‍❤️‍🧑🏿 couple with heart: person, person, light skin tone, dark skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏼‍❤️‍🧑🏻 couple with heart: person, person, medium-light skin tone, light skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏼‍❤️‍🧑🏽 couple with heart: person, person, medium-light skin tone, medium skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏼‍❤️‍🧑🏾 couple with heart: person, person, medium-light skin tone, medium-dark skin tone U+1F9D1 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏼‍❤️‍🧑🏿 couple with heart: person, person, medium-light skin tone, dark skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏽‍❤️‍🧑🏻 couple with heart: person, person, medium skin tone, light skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏽‍❤️‍🧑🏼 couple with heart: person, person, medium skin tone, medium-light skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏽‍❤️‍🧑🏾 couple with heart: person, person, medium skin tone, medium-dark skin tone U+1F9D1 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏽‍❤️‍🧑🏿 couple with heart: person, person, medium skin tone, dark skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏾‍❤️‍🧑🏻 couple with heart: person, person, medium-dark skin tone, light skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏾‍❤️‍🧑🏼 couple with heart: person, person, medium-dark skin tone, medium-light skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏾‍❤️‍🧑🏽 couple with heart: person, person, medium-dark skin tone, medium skin tone U+1F9D1 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FF ; 13.1 # 🧑🏾‍❤️‍🧑🏿 couple with heart: person, person, medium-dark skin tone, dark skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FB ; 13.1 # 🧑🏿‍❤️‍🧑🏻 couple with heart: person, person, dark skin tone, light skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FC ; 13.1 # 🧑🏿‍❤️‍🧑🏼 couple with heart: person, person, dark skin tone, medium-light skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FD ; 13.1 # 🧑🏿‍❤️‍🧑🏽 couple with heart: person, person, dark skin tone, medium skin tone U+1F9D1 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F9D1 U+1F3FE ; 13.1 # 🧑🏿‍❤️‍🧑🏾 couple with heart: person, person, dark skin tone, medium-dark skin tone U+1F469 U+200D U+2764 U+FE0F U+200D U+1F468 ; 2.0 # 👩‍❤️‍👨 couple with heart: woman, man U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏻‍❤️‍👨🏻 couple with heart: woman, man, light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏻‍❤️‍👨🏼 couple with heart: woman, man, light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏻‍❤️‍👨🏽 couple with heart: woman, man, light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏻‍❤️‍👨🏾 couple with heart: woman, man, light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏻‍❤️‍👨🏿 couple with heart: woman, man, light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏼‍❤️‍👨🏻 couple with heart: woman, man, medium-light skin tone, light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏼‍❤️‍👨🏼 couple with heart: woman, man, medium-light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏼‍❤️‍👨🏽 couple with heart: woman, man, medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏼‍❤️‍👨🏾 couple with heart: woman, man, medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏼‍❤️‍👨🏿 couple with heart: woman, man, medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏽‍❤️‍👨🏻 couple with heart: woman, man, medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏽‍❤️‍👨🏼 couple with heart: woman, man, medium skin tone, medium-light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏽‍❤️‍👨🏽 couple with heart: woman, man, medium skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏽‍❤️‍👨🏾 couple with heart: woman, man, medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏽‍❤️‍👨🏿 couple with heart: woman, man, medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏾‍❤️‍👨🏻 couple with heart: woman, man, medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏾‍❤️‍👨🏼 couple with heart: woman, man, medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏾‍❤️‍👨🏽 couple with heart: woman, man, medium-dark skin tone, medium skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏾‍❤️‍👨🏾 couple with heart: woman, man, medium-dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏾‍❤️‍👨🏿 couple with heart: woman, man, medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👩🏿‍❤️‍👨🏻 couple with heart: woman, man, dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👩🏿‍❤️‍👨🏼 couple with heart: woman, man, dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👩🏿‍❤️‍👨🏽 couple with heart: woman, man, dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👩🏿‍❤️‍👨🏾 couple with heart: woman, man, dark skin tone, medium-dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👩🏿‍❤️‍👨🏿 couple with heart: woman, man, dark skin tone U+1F468 U+200D U+2764 U+FE0F U+200D U+1F468 ; 2.0 # 👨‍❤️‍👨 couple with heart: man, man U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏻‍❤️‍👨🏻 couple with heart: man, man, light skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏻‍❤️‍👨🏼 couple with heart: man, man, light skin tone, medium-light skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏻‍❤️‍👨🏽 couple with heart: man, man, light skin tone, medium skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏻‍❤️‍👨🏾 couple with heart: man, man, light skin tone, medium-dark skin tone U+1F468 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏻‍❤️‍👨🏿 couple with heart: man, man, light skin tone, dark skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏼‍❤️‍👨🏻 couple with heart: man, man, medium-light skin tone, light skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏼‍❤️‍👨🏼 couple with heart: man, man, medium-light skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏼‍❤️‍👨🏽 couple with heart: man, man, medium-light skin tone, medium skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏼‍❤️‍👨🏾 couple with heart: man, man, medium-light skin tone, medium-dark skin tone U+1F468 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏼‍❤️‍👨🏿 couple with heart: man, man, medium-light skin tone, dark skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏽‍❤️‍👨🏻 couple with heart: man, man, medium skin tone, light skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏽‍❤️‍👨🏼 couple with heart: man, man, medium skin tone, medium-light skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏽‍❤️‍👨🏽 couple with heart: man, man, medium skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏽‍❤️‍👨🏾 couple with heart: man, man, medium skin tone, medium-dark skin tone U+1F468 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏽‍❤️‍👨🏿 couple with heart: man, man, medium skin tone, dark skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏾‍❤️‍👨🏻 couple with heart: man, man, medium-dark skin tone, light skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏾‍❤️‍👨🏼 couple with heart: man, man, medium-dark skin tone, medium-light skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏾‍❤️‍👨🏽 couple with heart: man, man, medium-dark skin tone, medium skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏾‍❤️‍👨🏾 couple with heart: man, man, medium-dark skin tone U+1F468 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏾‍❤️‍👨🏿 couple with heart: man, man, medium-dark skin tone, dark skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FB ; 13.1 # 👨🏿‍❤️‍👨🏻 couple with heart: man, man, dark skin tone, light skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FC ; 13.1 # 👨🏿‍❤️‍👨🏼 couple with heart: man, man, dark skin tone, medium-light skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FD ; 13.1 # 👨🏿‍❤️‍👨🏽 couple with heart: man, man, dark skin tone, medium skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FE ; 13.1 # 👨🏿‍❤️‍👨🏾 couple with heart: man, man, dark skin tone, medium-dark skin tone U+1F468 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F468 U+1F3FF ; 13.1 # 👨🏿‍❤️‍👨🏿 couple with heart: man, man, dark skin tone U+1F469 U+200D U+2764 U+FE0F U+200D U+1F469 ; 2.0 # 👩‍❤️‍👩 couple with heart: woman, woman U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏻‍❤️‍👩🏻 couple with heart: woman, woman, light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏻‍❤️‍👩🏼 couple with heart: woman, woman, light skin tone, medium-light skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏻‍❤️‍👩🏽 couple with heart: woman, woman, light skin tone, medium skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏻‍❤️‍👩🏾 couple with heart: woman, woman, light skin tone, medium-dark skin tone U+1F469 U+1F3FB U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏻‍❤️‍👩🏿 couple with heart: woman, woman, light skin tone, dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏼‍❤️‍👩🏻 couple with heart: woman, woman, medium-light skin tone, light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏼‍❤️‍👩🏼 couple with heart: woman, woman, medium-light skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏼‍❤️‍👩🏽 couple with heart: woman, woman, medium-light skin tone, medium skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏼‍❤️‍👩🏾 couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone U+1F469 U+1F3FC U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏼‍❤️‍👩🏿 couple with heart: woman, woman, medium-light skin tone, dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏽‍❤️‍👩🏻 couple with heart: woman, woman, medium skin tone, light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏽‍❤️‍👩🏼 couple with heart: woman, woman, medium skin tone, medium-light skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏽‍❤️‍👩🏽 couple with heart: woman, woman, medium skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏽‍❤️‍👩🏾 couple with heart: woman, woman, medium skin tone, medium-dark skin tone U+1F469 U+1F3FD U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏽‍❤️‍👩🏿 couple with heart: woman, woman, medium skin tone, dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏾‍❤️‍👩🏻 couple with heart: woman, woman, medium-dark skin tone, light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏾‍❤️‍👩🏼 couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏾‍❤️‍👩🏽 couple with heart: woman, woman, medium-dark skin tone, medium skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏾‍❤️‍👩🏾 couple with heart: woman, woman, medium-dark skin tone U+1F469 U+1F3FE U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏾‍❤️‍👩🏿 couple with heart: woman, woman, medium-dark skin tone, dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FB ; 13.1 # 👩🏿‍❤️‍👩🏻 couple with heart: woman, woman, dark skin tone, light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FC ; 13.1 # 👩🏿‍❤️‍👩🏼 couple with heart: woman, woman, dark skin tone, medium-light skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FD ; 13.1 # 👩🏿‍❤️‍👩🏽 couple with heart: woman, woman, dark skin tone, medium skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FE ; 13.1 # 👩🏿‍❤️‍👩🏾 couple with heart: woman, woman, dark skin tone, medium-dark skin tone U+1F469 U+1F3FF U+200D U+2764 U+FE0F U+200D U+1F469 U+1F3FF ; 13.1 # 👩🏿‍❤️‍👩🏿 couple with heart: woman, woman, dark skin tone U+1F468 U+200D U+1F469 U+200D U+1F466 ; 2.0 # 👨‍👩‍👦 family: man, woman, boy U+1F468 U+200D U+1F469 U+200D U+1F467 ; 2.0 # 👨‍👩‍👧 family: man, woman, girl U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 ; 2.0 # 👨‍👩‍👧‍👦 family: man, woman, girl, boy U+1F468 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 ; 2.0 # 👨‍👩‍👦‍👦 family: man, woman, boy, boy U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 ; 2.0 # 👨‍👩‍👧‍👧 family: man, woman, girl, girl U+1F468 U+200D U+1F468 U+200D U+1F466 ; 2.0 # 👨‍👨‍👦 family: man, man, boy U+1F468 U+200D U+1F468 U+200D U+1F467 ; 2.0 # 👨‍👨‍👧 family: man, man, girl U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F466 ; 2.0 # 👨‍👨‍👧‍👦 family: man, man, girl, boy U+1F468 U+200D U+1F468 U+200D U+1F466 U+200D U+1F466 ; 2.0 # 👨‍👨‍👦‍👦 family: man, man, boy, boy U+1F468 U+200D U+1F468 U+200D U+1F467 U+200D U+1F467 ; 2.0 # 👨‍👨‍👧‍👧 family: man, man, girl, girl U+1F469 U+200D U+1F469 U+200D U+1F466 ; 2.0 # 👩‍👩‍👦 family: woman, woman, boy U+1F469 U+200D U+1F469 U+200D U+1F467 ; 2.0 # 👩‍👩‍👧 family: woman, woman, girl U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466 ; 2.0 # 👩‍👩‍👧‍👦 family: woman, woman, girl, boy U+1F469 U+200D U+1F469 U+200D U+1F466 U+200D U+1F466 ; 2.0 # 👩‍👩‍👦‍👦 family: woman, woman, boy, boy U+1F469 U+200D U+1F469 U+200D U+1F467 U+200D U+1F467 ; 2.0 # 👩‍👩‍👧‍👧 family: woman, woman, girl, girl U+1F468 U+200D U+1F466 ; 4.0 # 👨‍👦 family: man, boy U+1F468 U+200D U+1F466 U+200D U+1F466 ; 4.0 # 👨‍👦‍👦 family: man, boy, boy U+1F468 U+200D U+1F467 ; 4.0 # 👨‍👧 family: man, girl U+1F468 U+200D U+1F467 U+200D U+1F466 ; 4.0 # 👨‍👧‍👦 family: man, girl, boy U+1F468 U+200D U+1F467 U+200D U+1F467 ; 4.0 # 👨‍👧‍👧 family: man, girl, girl U+1F469 U+200D U+1F466 ; 4.0 # 👩‍👦 family: woman, boy U+1F469 U+200D U+1F466 U+200D U+1F466 ; 4.0 # 👩‍👦‍👦 family: woman, boy, boy U+1F469 U+200D U+1F467 ; 4.0 # 👩‍👧 family: woman, girl U+1F469 U+200D U+1F467 U+200D U+1F466 ; 4.0 # 👩‍👧‍👦 family: woman, girl, boy U+1F469 U+200D U+1F467 U+200D U+1F467 ; 4.0 # 👩‍👧‍👧 family: woman, girl, girl U+1F5E3 ; 0.7 # 🗣 speaking head U+1F464 ; 0.6 # 👤 bust in silhouette U+1F465 ; 1.0 # 👥 busts in silhouette U+1FAC2 ; 13.0 # 🫂 people hugging U+1F46A ; 0.6 # 👪 family U+1F9D1 U+200D U+1F9D1 U+200D U+1F9D2 ; 15.1 # 🧑‍🧑‍🧒 family: adult, adult, child U+1F9D1 U+200D U+1F9D1 U+200D U+1F9D2 U+200D U+1F9D2 ; 15.1 # 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child U+1F9D1 U+200D U+1F9D2 ; 15.1 # 🧑‍🧒 family: adult, child U+1F9D1 U+200D U+1F9D2 U+200D U+1F9D2 ; 15.1 # 🧑‍🧒‍🧒 family: adult, child, child U+1F463 ; 0.6 # 👣 footprints U+1F3FB ; 1.0 # 🏻 light skin tone U+1F3FC ; 1.0 # 🏼 medium-light skin tone U+1F3FD ; 1.0 # 🏽 medium skin tone U+1F3FE ; 1.0 # 🏾 medium-dark skin tone U+1F3FF ; 1.0 # 🏿 dark skin tone U+1F9B0 ; 11.0 # 🦰 red hair U+1F9B1 ; 11.0 # 🦱 curly hair U+1F9B3 ; 11.0 # 🦳 white hair U+1F9B2 ; 11.0 # 🦲 bald U+1F435 ; 0.6 # 🐵 monkey face U+1F412 ; 0.6 # 🐒 monkey U+1F98D ; 3.0 # 🦍 gorilla U+1F9A7 ; 12.0 # 🦧 orangutan U+1F436 ; 0.6 # 🐶 dog face U+1F415 ; 0.7 # 🐕 dog U+1F9AE ; 12.0 # 🦮 guide dog U+1F415 U+200D U+1F9BA ; 12.0 # 🐕‍🦺 service dog U+1F429 ; 0.6 # 🐩 poodle U+1F43A ; 0.6 # 🐺 wolf U+1F98A ; 3.0 # 🦊 fox U+1F99D ; 11.0 # 🦝 raccoon U+1F431 ; 0.6 # 🐱 cat face U+1F408 ; 0.7 # 🐈 cat U+1F408 U+200D U+2B1B ; 13.0 # 🐈‍⬛ black cat U+1F981 ; 1.0 # 🦁 lion U+1F42F ; 0.6 # 🐯 tiger face U+1F405 ; 1.0 # 🐅 tiger U+1F406 ; 1.0 # 🐆 leopard U+1F434 ; 0.6 # 🐴 horse face U+1FACE ; 15.0 # 🫎 moose U+1FACF ; 15.0 # 🫏 donkey U+1F40E ; 0.6 # 🐎 horse U+1F984 ; 1.0 # 🦄 unicorn U+1F993 ; 5.0 # 🦓 zebra U+1F98C ; 3.0 # 🦌 deer U+1F9AC ; 13.0 # 🦬 bison U+1F42E ; 0.6 # 🐮 cow face U+1F402 ; 1.0 # 🐂 ox U+1F403 ; 1.0 # 🐃 water buffalo U+1F404 ; 1.0 # 🐄 cow U+1F437 ; 0.6 # 🐷 pig face U+1F416 ; 1.0 # 🐖 pig U+1F417 ; 0.6 # 🐗 boar U+1F43D ; 0.6 # 🐽 pig nose U+1F40F ; 1.0 # 🐏 ram U+1F411 ; 0.6 # 🐑 ewe U+1F410 ; 1.0 # 🐐 goat U+1F42A ; 1.0 # 🐪 camel U+1F42B ; 0.6 # 🐫 two-hump camel U+1F999 ; 11.0 # 🦙 llama U+1F992 ; 5.0 # 🦒 giraffe U+1F418 ; 0.6 # 🐘 elephant U+1F9A3 ; 13.0 # 🦣 mammoth U+1F98F ; 3.0 # 🦏 rhinoceros U+1F99B ; 11.0 # 🦛 hippopotamus U+1F42D ; 0.6 # 🐭 mouse face U+1F401 ; 1.0 # 🐁 mouse U+1F400 ; 1.0 # 🐀 rat U+1F439 ; 0.6 # 🐹 hamster U+1F430 ; 0.6 # 🐰 rabbit face U+1F407 ; 1.0 # 🐇 rabbit U+1F43F ; 0.7 # 🐿 chipmunk U+1F9AB ; 13.0 # 🦫 beaver U+1F994 ; 5.0 # 🦔 hedgehog U+1F987 ; 3.0 # 🦇 bat U+1F43B ; 0.6 # 🐻 bear U+1F43B U+200D U+2744 U+FE0F ; 13.0 # 🐻‍❄️ polar bear U+1F428 ; 0.6 # 🐨 koala U+1F43C ; 0.6 # 🐼 panda U+1F9A5 ; 12.0 # 🦥 sloth U+1F9A6 ; 12.0 # 🦦 otter U+1F9A8 ; 12.0 # 🦨 skunk U+1F998 ; 11.0 # 🦘 kangaroo U+1F9A1 ; 11.0 # 🦡 badger U+1F43E ; 0.6 # 🐾 paw prints U+1F983 ; 1.0 # 🦃 turkey U+1F414 ; 0.6 # 🐔 chicken U+1F413 ; 1.0 # 🐓 rooster U+1F423 ; 0.6 # 🐣 hatching chick U+1F424 ; 0.6 # 🐤 baby chick U+1F425 ; 0.6 # 🐥 front-facing baby chick U+1F426 ; 0.6 # 🐦 bird U+1F427 ; 0.6 # 🐧 penguin U+1F54A ; 0.7 # 🕊 dove U+1F985 ; 3.0 # 🦅 eagle U+1F986 ; 3.0 # 🦆 duck U+1F9A2 ; 11.0 # 🦢 swan U+1F989 ; 3.0 # 🦉 owl U+1F9A4 ; 13.0 # 🦤 dodo U+1FAB6 ; 13.0 # 🪶 feather U+1F9A9 ; 12.0 # 🦩 flamingo U+1F99A ; 11.0 # 🦚 peacock U+1F99C ; 11.0 # 🦜 parrot U+1FABD ; 15.0 # 🪽 wing U+1F426 U+200D U+2B1B ; 15.0 # 🐦‍⬛ black bird U+1FABF ; 15.0 # 🪿 goose U+1F426 U+200D U+1F525 ; 15.1 # 🐦‍🔥 phoenix U+1F438 ; 0.6 # 🐸 frog U+1F40A ; 1.0 # 🐊 crocodile U+1F422 ; 0.6 # 🐢 turtle U+1F98E ; 3.0 # 🦎 lizard U+1F40D ; 0.6 # 🐍 snake U+1F432 ; 0.6 # 🐲 dragon face U+1F409 ; 1.0 # 🐉 dragon U+1F995 ; 5.0 # 🦕 sauropod U+1F996 ; 5.0 # 🦖 T-Rex U+1F433 ; 0.6 # 🐳 spouting whale U+1F40B ; 1.0 # 🐋 whale U+1F42C ; 0.6 # 🐬 dolphin U+1F9AD ; 13.0 # 🦭 seal U+1F41F ; 0.6 # 🐟 fish U+1F420 ; 0.6 # 🐠 tropical fish U+1F421 ; 0.6 # 🐡 blowfish U+1F988 ; 3.0 # 🦈 shark U+1F419 ; 0.6 # 🐙 octopus U+1F41A ; 0.6 # 🐚 spiral shell U+1FAB8 ; 14.0 # 🪸 coral U+1FABC ; 15.0 # 🪼 jellyfish U+1F40C ; 0.6 # 🐌 snail U+1F98B ; 3.0 # 🦋 butterfly U+1F41B ; 0.6 # 🐛 bug U+1F41C ; 0.6 # 🐜 ant U+1F41D ; 0.6 # 🐝 honeybee U+1FAB2 ; 13.0 # 🪲 beetle U+1F41E ; 0.6 # 🐞 lady beetle U+1F997 ; 5.0 # 🦗 cricket U+1FAB3 ; 13.0 # 🪳 cockroach U+1F577 ; 0.7 # 🕷 spider U+1F578 ; 0.7 # 🕸 spider web U+1F982 ; 1.0 # 🦂 scorpion U+1F99F ; 11.0 # 🦟 mosquito U+1FAB0 ; 13.0 # 🪰 fly U+1FAB1 ; 13.0 # 🪱 worm U+1F9A0 ; 11.0 # 🦠 microbe U+1F490 ; 0.6 # 💐 bouquet U+1F338 ; 0.6 # 🌸 cherry blossom U+1F4AE ; 0.6 # 💮 white flower U+1FAB7 ; 14.0 # 🪷 lotus U+1F3F5 ; 0.7 # 🏵 rosette U+1F339 ; 0.6 # 🌹 rose U+1F940 ; 3.0 # 🥀 wilted flower U+1F33A ; 0.6 # 🌺 hibiscus U+1F33B ; 0.6 # 🌻 sunflower U+1F33C ; 0.6 # 🌼 blossom U+1F337 ; 0.6 # 🌷 tulip U+1FABB ; 15.0 # 🪻 hyacinth U+1F331 ; 0.6 # 🌱 seedling U+1FAB4 ; 13.0 # 🪴 potted plant U+1F332 ; 1.0 # 🌲 evergreen tree U+1F333 ; 1.0 # 🌳 deciduous tree U+1F334 ; 0.6 # 🌴 palm tree U+1F335 ; 0.6 # 🌵 cactus U+1F33E ; 0.6 # 🌾 sheaf of rice U+1F33F ; 0.6 # 🌿 herb U+2618 ; 1.0 # ☘ shamrock U+1F340 ; 0.6 # 🍀 four leaf clover U+1F341 ; 0.6 # 🍁 maple leaf U+1F342 ; 0.6 # 🍂 fallen leaf U+1F343 ; 0.6 # 🍃 leaf fluttering in wind U+1FAB9 ; 14.0 # 🪹 empty nest U+1FABA ; 14.0 # 🪺 nest with eggs U+1F344 ; 0.6 # 🍄 mushroom U+1F347 ; 0.6 # 🍇 grapes U+1F348 ; 0.6 # 🍈 melon U+1F349 ; 0.6 # 🍉 watermelon U+1F34A ; 0.6 # 🍊 tangerine U+1F34B ; 1.0 # 🍋 lemon U+1F34B U+200D U+1F7E9 ; 15.1 # 🍋‍🟩 lime U+1F34C ; 0.6 # 🍌 banana U+1F34D ; 0.6 # 🍍 pineapple U+1F96D ; 11.0 # 🥭 mango U+1F34E ; 0.6 # 🍎 red apple U+1F34F ; 0.6 # 🍏 green apple U+1F350 ; 1.0 # 🍐 pear U+1F351 ; 0.6 # 🍑 peach U+1F352 ; 0.6 # 🍒 cherries U+1F353 ; 0.6 # 🍓 strawberry U+1FAD0 ; 13.0 # 🫐 blueberries U+1F95D ; 3.0 # 🥝 kiwi fruit U+1F345 ; 0.6 # 🍅 tomato U+1FAD2 ; 13.0 # 🫒 olive U+1F965 ; 5.0 # 🥥 coconut U+1F951 ; 3.0 # 🥑 avocado U+1F346 ; 0.6 # 🍆 eggplant U+1F954 ; 3.0 # 🥔 potato U+1F955 ; 3.0 # 🥕 carrot U+1F33D ; 0.6 # 🌽 ear of corn U+1F336 ; 0.7 # 🌶 hot pepper U+1FAD1 ; 13.0 # 🫑 bell pepper U+1F952 ; 3.0 # 🥒 cucumber U+1F96C ; 11.0 # 🥬 leafy green U+1F966 ; 5.0 # 🥦 broccoli U+1F9C4 ; 12.0 # 🧄 garlic U+1F9C5 ; 12.0 # 🧅 onion U+1F95C ; 3.0 # 🥜 peanuts U+1FAD8 ; 14.0 # 🫘 beans U+1F330 ; 0.6 # 🌰 chestnut U+1FADA ; 15.0 # 🫚 ginger root U+1FADB ; 15.0 # 🫛 pea pod U+1F344 U+200D U+1F7EB ; 15.1 # 🍄‍🟫 brown mushroom U+1F35E ; 0.6 # 🍞 bread U+1F950 ; 3.0 # 🥐 croissant U+1F956 ; 3.0 # 🥖 baguette bread U+1FAD3 ; 13.0 # 🫓 flatbread U+1F968 ; 5.0 # 🥨 pretzel U+1F96F ; 11.0 # 🥯 bagel U+1F95E ; 3.0 # 🥞 pancakes U+1F9C7 ; 12.0 # 🧇 waffle U+1F9C0 ; 1.0 # 🧀 cheese wedge U+1F356 ; 0.6 # 🍖 meat on bone U+1F357 ; 0.6 # 🍗 poultry leg U+1F969 ; 5.0 # 🥩 cut of meat U+1F953 ; 3.0 # 🥓 bacon U+1F354 ; 0.6 # 🍔 hamburger U+1F35F ; 0.6 # 🍟 french fries U+1F355 ; 0.6 # 🍕 pizza U+1F32D ; 1.0 # 🌭 hot dog U+1F96A ; 5.0 # 🥪 sandwich U+1F32E ; 1.0 # 🌮 taco U+1F32F ; 1.0 # 🌯 burrito U+1FAD4 ; 13.0 # 🫔 tamale U+1F959 ; 3.0 # 🥙 stuffed flatbread U+1F9C6 ; 12.0 # 🧆 falafel U+1F95A ; 3.0 # 🥚 egg U+1F373 ; 0.6 # 🍳 cooking U+1F958 ; 3.0 # 🥘 shallow pan of food U+1F372 ; 0.6 # 🍲 pot of food U+1FAD5 ; 13.0 # 🫕 fondue U+1F963 ; 5.0 # 🥣 bowl with spoon U+1F957 ; 3.0 # 🥗 green salad U+1F37F ; 1.0 # 🍿 popcorn U+1F9C8 ; 12.0 # 🧈 butter U+1F9C2 ; 11.0 # 🧂 salt U+1F96B ; 5.0 # 🥫 canned food U+1F371 ; 0.6 # 🍱 bento box U+1F358 ; 0.6 # 🍘 rice cracker U+1F359 ; 0.6 # 🍙 rice ball U+1F35A ; 0.6 # 🍚 cooked rice U+1F35B ; 0.6 # 🍛 curry rice U+1F35C ; 0.6 # 🍜 steaming bowl U+1F35D ; 0.6 # 🍝 spaghetti U+1F360 ; 0.6 # 🍠 roasted sweet potato U+1F362 ; 0.6 # 🍢 oden U+1F363 ; 0.6 # 🍣 sushi U+1F364 ; 0.6 # 🍤 fried shrimp U+1F365 ; 0.6 # 🍥 fish cake with swirl U+1F96E ; 11.0 # 🥮 moon cake U+1F361 ; 0.6 # 🍡 dango U+1F95F ; 5.0 # 🥟 dumpling U+1F960 ; 5.0 # 🥠 fortune cookie U+1F961 ; 5.0 # 🥡 takeout box U+1F980 ; 1.0 # 🦀 crab U+1F99E ; 11.0 # 🦞 lobster U+1F990 ; 3.0 # 🦐 shrimp U+1F991 ; 3.0 # 🦑 squid U+1F9AA ; 12.0 # 🦪 oyster U+1F366 ; 0.6 # 🍦 soft ice cream U+1F367 ; 0.6 # 🍧 shaved ice U+1F368 ; 0.6 # 🍨 ice cream U+1F369 ; 0.6 # 🍩 doughnut U+1F36A ; 0.6 # 🍪 cookie U+1F382 ; 0.6 # 🎂 birthday cake U+1F370 ; 0.6 # 🍰 shortcake U+1F9C1 ; 11.0 # 🧁 cupcake U+1F967 ; 5.0 # 🥧 pie U+1F36B ; 0.6 # 🍫 chocolate bar U+1F36C ; 0.6 # 🍬 candy U+1F36D ; 0.6 # 🍭 lollipop U+1F36E ; 0.6 # 🍮 custard U+1F36F ; 0.6 # 🍯 honey pot U+1F37C ; 1.0 # 🍼 baby bottle U+1F95B ; 3.0 # 🥛 glass of milk U+2615 ; 0.6 # ☕ hot beverage U+1FAD6 ; 13.0 # 🫖 teapot U+1F375 ; 0.6 # 🍵 teacup without handle U+1F376 ; 0.6 # 🍶 sake U+1F37E ; 1.0 # 🍾 bottle with popping cork U+1F377 ; 0.6 # 🍷 wine glass U+1F378 ; 0.6 # 🍸 cocktail glass U+1F379 ; 0.6 # 🍹 tropical drink U+1F37A ; 0.6 # 🍺 beer mug U+1F37B ; 0.6 # 🍻 clinking beer mugs U+1F942 ; 3.0 # 🥂 clinking glasses U+1F943 ; 3.0 # 🥃 tumbler glass U+1FAD7 ; 14.0 # 🫗 pouring liquid U+1F964 ; 5.0 # 🥤 cup with straw U+1F9CB ; 13.0 # 🧋 bubble tea U+1F9C3 ; 12.0 # 🧃 beverage box U+1F9C9 ; 12.0 # 🧉 mate U+1F9CA ; 12.0 # 🧊 ice U+1F962 ; 5.0 # 🥢 chopsticks U+1F37D ; 0.7 # 🍽 fork and knife with plate U+1F374 ; 0.6 # 🍴 fork and knife U+1F944 ; 3.0 # 🥄 spoon U+1F52A ; 0.6 # 🔪 kitchen knife U+1FAD9 ; 14.0 # 🫙 jar U+1F3FA ; 1.0 # 🏺 amphora U+1F30D ; 0.7 # 🌍 globe showing Europe-Africa U+1F30E ; 0.7 # 🌎 globe showing Americas U+1F30F ; 0.6 # 🌏 globe showing Asia-Australia U+1F310 ; 1.0 # 🌐 globe with meridians U+1F5FA ; 0.7 # 🗺 world map U+1F5FE ; 0.6 # 🗾 map of Japan U+1F9ED ; 11.0 # 🧭 compass U+1F3D4 ; 0.7 # 🏔 snow-capped mountain U+26F0 ; 0.7 # ⛰ mountain U+1F30B ; 0.6 # 🌋 volcano U+1F5FB ; 0.6 # 🗻 mount fuji U+1F3D5 ; 0.7 # 🏕 camping U+1F3D6 ; 0.7 # 🏖 beach with umbrella U+1F3DC ; 0.7 # 🏜 desert U+1F3DD ; 0.7 # 🏝 desert island U+1F3DE ; 0.7 # 🏞 national park U+1F3DF ; 0.7 # 🏟 stadium U+1F3DB ; 0.7 # 🏛 classical building U+1F3D7 ; 0.7 # 🏗 building construction U+1F9F1 ; 11.0 # 🧱 brick U+1FAA8 ; 13.0 # 🪨 rock U+1FAB5 ; 13.0 # 🪵 wood U+1F6D6 ; 13.0 # 🛖 hut U+1F3D8 ; 0.7 # 🏘 houses U+1F3DA ; 0.7 # 🏚 derelict house U+1F3E0 ; 0.6 # 🏠 house U+1F3E1 ; 0.6 # 🏡 house with garden U+1F3E2 ; 0.6 # 🏢 office building U+1F3E3 ; 0.6 # 🏣 Japanese post office U+1F3E4 ; 1.0 # 🏤 post office U+1F3E5 ; 0.6 # 🏥 hospital U+1F3E6 ; 0.6 # 🏦 bank U+1F3E8 ; 0.6 # 🏨 hotel U+1F3E9 ; 0.6 # 🏩 love hotel U+1F3EA ; 0.6 # 🏪 convenience store U+1F3EB ; 0.6 # 🏫 school U+1F3EC ; 0.6 # 🏬 department store U+1F3ED ; 0.6 # 🏭 factory U+1F3EF ; 0.6 # 🏯 Japanese castle U+1F3F0 ; 0.6 # 🏰 castle U+1F492 ; 0.6 # 💒 wedding U+1F5FC ; 0.6 # 🗼 Tokyo tower U+1F5FD ; 0.6 # 🗽 Statue of Liberty U+26EA ; 0.6 # ⛪ church U+1F54C ; 1.0 # 🕌 mosque U+1F6D5 ; 12.0 # 🛕 hindu temple U+1F54D ; 1.0 # 🕍 synagogue U+26E9 ; 0.7 # ⛩ shinto shrine U+1F54B ; 1.0 # 🕋 kaaba U+26F2 ; 0.6 # ⛲ fountain U+26FA ; 0.6 # ⛺ tent U+1F301 ; 0.6 # 🌁 foggy U+1F303 ; 0.6 # 🌃 night with stars U+1F3D9 ; 0.7 # 🏙 cityscape U+1F304 ; 0.6 # 🌄 sunrise over mountains U+1F305 ; 0.6 # 🌅 sunrise U+1F306 ; 0.6 # 🌆 cityscape at dusk U+1F307 ; 0.6 # 🌇 sunset U+1F309 ; 0.6 # 🌉 bridge at night U+2668 ; 0.6 # ♨ hot springs U+1F3A0 ; 0.6 # 🎠 carousel horse U+1F6DD ; 14.0 # 🛝 playground slide U+1F3A1 ; 0.6 # 🎡 ferris wheel U+1F3A2 ; 0.6 # 🎢 roller coaster U+1F488 ; 0.6 # 💈 barber pole U+1F3AA ; 0.6 # 🎪 circus tent U+1F682 ; 1.0 # 🚂 locomotive U+1F683 ; 0.6 # 🚃 railway car U+1F684 ; 0.6 # 🚄 high-speed train U+1F685 ; 0.6 # 🚅 bullet train U+1F686 ; 1.0 # 🚆 train U+1F687 ; 0.6 # 🚇 metro U+1F688 ; 1.0 # 🚈 light rail U+1F689 ; 0.6 # 🚉 station U+1F68A ; 1.0 # 🚊 tram U+1F69D ; 1.0 # 🚝 monorail U+1F69E ; 1.0 # 🚞 mountain railway U+1F68B ; 1.0 # 🚋 tram car U+1F68C ; 0.6 # 🚌 bus U+1F68D ; 0.7 # 🚍 oncoming bus U+1F68E ; 1.0 # 🚎 trolleybus U+1F690 ; 1.0 # 🚐 minibus U+1F691 ; 0.6 # 🚑 ambulance U+1F692 ; 0.6 # 🚒 fire engine U+1F693 ; 0.6 # 🚓 police car U+1F694 ; 0.7 # 🚔 oncoming police car U+1F695 ; 0.6 # 🚕 taxi U+1F696 ; 1.0 # 🚖 oncoming taxi U+1F697 ; 0.6 # 🚗 automobile U+1F698 ; 0.7 # 🚘 oncoming automobile U+1F699 ; 0.6 # 🚙 sport utility vehicle U+1F6FB ; 13.0 # 🛻 pickup truck U+1F69A ; 0.6 # 🚚 delivery truck U+1F69B ; 1.0 # 🚛 articulated lorry U+1F69C ; 1.0 # 🚜 tractor U+1F3CE ; 0.7 # 🏎 racing car U+1F3CD ; 0.7 # 🏍 motorcycle U+1F6F5 ; 3.0 # 🛵 motor scooter U+1F9BD ; 12.0 # 🦽 manual wheelchair U+1F9BC ; 12.0 # 🦼 motorized wheelchair U+1F6FA ; 12.0 # 🛺 auto rickshaw U+1F6B2 ; 0.6 # 🚲 bicycle U+1F6F4 ; 3.0 # 🛴 kick scooter U+1F6F9 ; 11.0 # 🛹 skateboard U+1F6FC ; 13.0 # 🛼 roller skate U+1F68F ; 0.6 # 🚏 bus stop U+1F6E3 ; 0.7 # 🛣 motorway U+1F6E4 ; 0.7 # 🛤 railway track U+1F6E2 ; 0.7 # 🛢 oil drum U+26FD ; 0.6 # ⛽ fuel pump U+1F6DE ; 14.0 # 🛞 wheel U+1F6A8 ; 0.6 # 🚨 police car light U+1F6A5 ; 0.6 # 🚥 horizontal traffic light U+1F6A6 ; 1.0 # 🚦 vertical traffic light U+1F6D1 ; 3.0 # 🛑 stop sign U+1F6A7 ; 0.6 # 🚧 construction U+2693 ; 0.6 # ⚓ anchor U+1F6DF ; 14.0 # 🛟 ring buoy U+26F5 ; 0.6 # ⛵ sailboat U+1F6F6 ; 3.0 # 🛶 canoe U+1F6A4 ; 0.6 # 🚤 speedboat U+1F6F3 ; 0.7 # 🛳 passenger ship U+26F4 ; 0.7 # ⛴ ferry U+1F6E5 ; 0.7 # 🛥 motor boat U+1F6A2 ; 0.6 # 🚢 ship U+2708 ; 0.6 # ✈ airplane U+1F6E9 ; 0.7 # 🛩 small airplane U+1F6EB ; 1.0 # 🛫 airplane departure U+1F6EC ; 1.0 # 🛬 airplane arrival U+1FA82 ; 12.0 # 🪂 parachute U+1F4BA ; 0.6 # 💺 seat U+1F681 ; 1.0 # 🚁 helicopter U+1F69F ; 1.0 # 🚟 suspension railway U+1F6A0 ; 1.0 # 🚠 mountain cableway U+1F6A1 ; 1.0 # 🚡 aerial tramway U+1F6F0 ; 0.7 # 🛰 satellite U+1F680 ; 0.6 # 🚀 rocket U+1F6F8 ; 5.0 # 🛸 flying saucer U+1F6CE ; 0.7 # 🛎 bellhop bell U+1F9F3 ; 11.0 # 🧳 luggage U+231B ; 0.6 # ⌛ hourglass done U+23F3 ; 0.6 # ⏳ hourglass not done U+231A ; 0.6 # ⌚ watch U+23F0 ; 0.6 # ⏰ alarm clock U+23F1 ; 1.0 # ⏱ stopwatch U+23F2 ; 1.0 # ⏲ timer clock U+1F570 ; 0.7 # 🕰 mantelpiece clock U+1F55B ; 0.6 # 🕛 twelve o’clock U+1F567 ; 0.7 # 🕧 twelve-thirty U+1F550 ; 0.6 # 🕐 one o’clock U+1F55C ; 0.7 # 🕜 one-thirty U+1F551 ; 0.6 # 🕑 two o’clock U+1F55D ; 0.7 # 🕝 two-thirty U+1F552 ; 0.6 # 🕒 three o’clock U+1F55E ; 0.7 # 🕞 three-thirty U+1F553 ; 0.6 # 🕓 four o’clock U+1F55F ; 0.7 # 🕟 four-thirty U+1F554 ; 0.6 # 🕔 five o’clock U+1F560 ; 0.7 # 🕠 five-thirty U+1F555 ; 0.6 # 🕕 six o’clock U+1F561 ; 0.7 # 🕡 six-thirty U+1F556 ; 0.6 # 🕖 seven o’clock U+1F562 ; 0.7 # 🕢 seven-thirty U+1F557 ; 0.6 # 🕗 eight o’clock U+1F563 ; 0.7 # 🕣 eight-thirty U+1F558 ; 0.6 # 🕘 nine o’clock U+1F564 ; 0.7 # 🕤 nine-thirty U+1F559 ; 0.6 # 🕙 ten o’clock U+1F565 ; 0.7 # 🕥 ten-thirty U+1F55A ; 0.6 # 🕚 eleven o’clock U+1F566 ; 0.7 # 🕦 eleven-thirty U+1F311 ; 0.6 # 🌑 new moon U+1F312 ; 1.0 # 🌒 waxing crescent moon U+1F313 ; 0.6 # 🌓 first quarter moon U+1F314 ; 0.6 # 🌔 waxing gibbous moon U+1F315 ; 0.6 # 🌕 full moon U+1F316 ; 1.0 # 🌖 waning gibbous moon U+1F317 ; 1.0 # 🌗 last quarter moon U+1F318 ; 1.0 # 🌘 waning crescent moon U+1F319 ; 0.6 # 🌙 crescent moon U+1F31A ; 1.0 # 🌚 new moon face U+1F31B ; 0.6 # 🌛 first quarter moon face U+1F31C ; 0.7 # 🌜 last quarter moon face U+1F321 ; 0.7 # 🌡 thermometer U+2600 ; 0.6 # ☀ sun U+1F31D ; 1.0 # 🌝 full moon face U+1F31E ; 1.0 # 🌞 sun with face U+1FA90 ; 12.0 # 🪐 ringed planet U+2B50 ; 0.6 # ⭐ star U+1F31F ; 0.6 # 🌟 glowing star U+1F320 ; 0.6 # 🌠 shooting star U+1F30C ; 0.6 # 🌌 milky way U+2601 ; 0.6 # ☁ cloud U+26C5 ; 0.6 # ⛅ sun behind cloud U+26C8 ; 0.7 # ⛈ cloud with lightning and rain U+1F324 ; 0.7 # 🌤 sun behind small cloud U+1F325 ; 0.7 # 🌥 sun behind large cloud U+1F326 ; 0.7 # 🌦 sun behind rain cloud U+1F327 ; 0.7 # 🌧 cloud with rain U+1F328 ; 0.7 # 🌨 cloud with snow U+1F329 ; 0.7 # 🌩 cloud with lightning U+1F32A ; 0.7 # 🌪 tornado U+1F32B ; 0.7 # 🌫 fog U+1F32C ; 0.7 # 🌬 wind face U+1F300 ; 0.6 # 🌀 cyclone U+1F308 ; 0.6 # 🌈 rainbow U+1F302 ; 0.6 # 🌂 closed umbrella U+2602 ; 0.7 # ☂ umbrella U+2614 ; 0.6 # ☔ umbrella with rain drops U+26F1 ; 0.7 # ⛱ umbrella on ground U+26A1 ; 0.6 # ⚡ high voltage U+2744 ; 0.6 # ❄ snowflake U+2603 ; 0.7 # ☃ snowman U+26C4 ; 0.6 # ⛄ snowman without snow U+2604 ; 1.0 # ☄ comet U+1F525 ; 0.6 # 🔥 fire U+1F4A7 ; 0.6 # 💧 droplet U+1F30A ; 0.6 # 🌊 water wave U+1F383 ; 0.6 # 🎃 jack-o-lantern U+1F384 ; 0.6 # 🎄 Christmas tree U+1F386 ; 0.6 # 🎆 fireworks U+1F387 ; 0.6 # 🎇 sparkler U+1F9E8 ; 11.0 # 🧨 firecracker U+2728 ; 0.6 # ✨ sparkles U+1F388 ; 0.6 # 🎈 balloon U+1F389 ; 0.6 # 🎉 party popper U+1F38A ; 0.6 # 🎊 confetti ball U+1F38B ; 0.6 # 🎋 tanabata tree U+1F38D ; 0.6 # 🎍 pine decoration U+1F38E ; 0.6 # 🎎 Japanese dolls U+1F38F ; 0.6 # 🎏 carp streamer U+1F390 ; 0.6 # 🎐 wind chime U+1F391 ; 0.6 # 🎑 moon viewing ceremony U+1F9E7 ; 11.0 # 🧧 red envelope U+1F380 ; 0.6 # 🎀 ribbon U+1F381 ; 0.6 # 🎁 wrapped gift U+1F397 ; 0.7 # 🎗 reminder ribbon U+1F39F ; 0.7 # 🎟 admission tickets U+1F3AB ; 0.6 # 🎫 ticket U+1F396 ; 0.7 # 🎖 military medal U+1F3C6 ; 0.6 # 🏆 trophy U+1F3C5 ; 1.0 # 🏅 sports medal U+1F947 ; 3.0 # 🥇 1st place medal U+1F948 ; 3.0 # 🥈 2nd place medal U+1F949 ; 3.0 # 🥉 3rd place medal U+26BD ; 0.6 # ⚽ soccer ball U+26BE ; 0.6 # ⚾ baseball U+1F94E ; 11.0 # 🥎 softball U+1F3C0 ; 0.6 # 🏀 basketball U+1F3D0 ; 1.0 # 🏐 volleyball U+1F3C8 ; 0.6 # 🏈 american football U+1F3C9 ; 1.0 # 🏉 rugby football U+1F3BE ; 0.6 # 🎾 tennis U+1F94F ; 11.0 # 🥏 flying disc U+1F3B3 ; 0.6 # 🎳 bowling U+1F3CF ; 1.0 # 🏏 cricket game U+1F3D1 ; 1.0 # 🏑 field hockey U+1F3D2 ; 1.0 # 🏒 ice hockey U+1F94D ; 11.0 # 🥍 lacrosse U+1F3D3 ; 1.0 # 🏓 ping pong U+1F3F8 ; 1.0 # 🏸 badminton U+1F94A ; 3.0 # 🥊 boxing glove U+1F94B ; 3.0 # 🥋 martial arts uniform U+1F945 ; 3.0 # 🥅 goal net U+26F3 ; 0.6 # ⛳ flag in hole U+26F8 ; 0.7 # ⛸ ice skate U+1F3A3 ; 0.6 # 🎣 fishing pole U+1F93F ; 12.0 # 🤿 diving mask U+1F3BD ; 0.6 # 🎽 running shirt U+1F3BF ; 0.6 # 🎿 skis U+1F6F7 ; 5.0 # 🛷 sled U+1F94C ; 5.0 # 🥌 curling stone U+1F3AF ; 0.6 # 🎯 bullseye U+1FA80 ; 12.0 # 🪀 yo-yo U+1FA81 ; 12.0 # 🪁 kite U+1F52B ; 0.6 # 🔫 water pistol U+1F3B1 ; 0.6 # 🎱 pool 8 ball U+1F52E ; 0.6 # 🔮 crystal ball U+1FA84 ; 13.0 # 🪄 magic wand U+1F3AE ; 0.6 # 🎮 video game U+1F579 ; 0.7 # 🕹 joystick U+1F3B0 ; 0.6 # 🎰 slot machine U+1F3B2 ; 0.6 # 🎲 game die U+1F9E9 ; 11.0 # 🧩 puzzle piece U+1F9F8 ; 11.0 # 🧸 teddy bear U+1FA85 ; 13.0 # 🪅 piñata U+1FAA9 ; 14.0 # 🪩 mirror ball U+1FA86 ; 13.0 # 🪆 nesting dolls U+2660 ; 0.6 # ♠ spade suit U+2665 ; 0.6 # ♥ heart suit U+2666 ; 0.6 # ♦ diamond suit U+2663 ; 0.6 # ♣ club suit U+265F ; 11.0 # ♟ chess pawn U+1F0CF ; 0.6 # 🃏 joker U+1F004 ; 0.6 # 🀄 mahjong red dragon U+1F3B4 ; 0.6 # 🎴 flower playing cards U+1F3AD ; 0.6 # 🎭 performing arts U+1F5BC ; 0.7 # 🖼 framed picture U+1F3A8 ; 0.6 # 🎨 artist palette U+1F9F5 ; 11.0 # 🧵 thread U+1FAA1 ; 13.0 # 🪡 sewing needle U+1F9F6 ; 11.0 # 🧶 yarn U+1FAA2 ; 13.0 # 🪢 knot U+1F453 ; 0.6 # 👓 glasses U+1F576 ; 0.7 # 🕶 sunglasses U+1F97D ; 11.0 # 🥽 goggles U+1F97C ; 11.0 # 🥼 lab coat U+1F9BA ; 12.0 # 🦺 safety vest U+1F454 ; 0.6 # 👔 necktie U+1F455 ; 0.6 # 👕 t-shirt U+1F456 ; 0.6 # 👖 jeans U+1F9E3 ; 5.0 # 🧣 scarf U+1F9E4 ; 5.0 # 🧤 gloves U+1F9E5 ; 5.0 # 🧥 coat U+1F9E6 ; 5.0 # 🧦 socks U+1F457 ; 0.6 # 👗 dress U+1F458 ; 0.6 # 👘 kimono U+1F97B ; 12.0 # 🥻 sari U+1FA71 ; 12.0 # 🩱 one-piece swimsuit U+1FA72 ; 12.0 # 🩲 briefs U+1FA73 ; 12.0 # 🩳 shorts U+1F459 ; 0.6 # 👙 bikini U+1F45A ; 0.6 # 👚 woman’s clothes U+1FAAD ; 15.0 # 🪭 folding hand fan U+1F45B ; 0.6 # 👛 purse U+1F45C ; 0.6 # 👜 handbag U+1F45D ; 0.6 # 👝 clutch bag U+1F6CD ; 0.7 # 🛍 shopping bags U+1F392 ; 0.6 # 🎒 backpack U+1FA74 ; 13.0 # 🩴 thong sandal U+1F45E ; 0.6 # 👞 man’s shoe U+1F45F ; 0.6 # 👟 running shoe U+1F97E ; 11.0 # 🥾 hiking boot U+1F97F ; 11.0 # 🥿 flat shoe U+1F460 ; 0.6 # 👠 high-heeled shoe U+1F461 ; 0.6 # 👡 woman’s sandal U+1FA70 ; 12.0 # 🩰 ballet shoes U+1F462 ; 0.6 # 👢 woman’s boot U+1FAAE ; 15.0 # 🪮 hair pick U+1F451 ; 0.6 # 👑 crown U+1F452 ; 0.6 # 👒 woman’s hat U+1F3A9 ; 0.6 # 🎩 top hat U+1F393 ; 0.6 # 🎓 graduation cap U+1F9E2 ; 5.0 # 🧢 billed cap U+1FA96 ; 13.0 # 🪖 military helmet U+26D1 ; 0.7 # ⛑ rescue worker’s helmet U+1F4FF ; 1.0 # 📿 prayer beads U+1F484 ; 0.6 # 💄 lipstick U+1F48D ; 0.6 # 💍 ring U+1F48E ; 0.6 # 💎 gem stone U+1F507 ; 1.0 # 🔇 muted speaker U+1F508 ; 0.7 # 🔈 speaker low volume U+1F509 ; 1.0 # 🔉 speaker medium volume U+1F50A ; 0.6 # 🔊 speaker high volume U+1F4E2 ; 0.6 # 📢 loudspeaker U+1F4E3 ; 0.6 # 📣 megaphone U+1F4EF ; 1.0 # 📯 postal horn U+1F514 ; 0.6 # 🔔 bell U+1F515 ; 1.0 # 🔕 bell with slash U+1F3BC ; 0.6 # 🎼 musical score U+1F3B5 ; 0.6 # 🎵 musical note U+1F3B6 ; 0.6 # 🎶 musical notes U+1F399 ; 0.7 # 🎙 studio microphone U+1F39A ; 0.7 # 🎚 level slider U+1F39B ; 0.7 # 🎛 control knobs U+1F3A4 ; 0.6 # 🎤 microphone U+1F3A7 ; 0.6 # 🎧 headphone U+1F4FB ; 0.6 # 📻 radio U+1F3B7 ; 0.6 # 🎷 saxophone U+1FA97 ; 13.0 # 🪗 accordion U+1F3B8 ; 0.6 # 🎸 guitar U+1F3B9 ; 0.6 # 🎹 musical keyboard U+1F3BA ; 0.6 # 🎺 trumpet U+1F3BB ; 0.6 # 🎻 violin U+1FA95 ; 12.0 # 🪕 banjo U+1F941 ; 3.0 # 🥁 drum U+1FA98 ; 13.0 # 🪘 long drum U+1FA87 ; 15.0 # 🪇 maracas U+1FA88 ; 15.0 # 🪈 flute U+1F4F1 ; 0.6 # 📱 mobile phone U+1F4F2 ; 0.6 # 📲 mobile phone with arrow U+260E ; 0.6 # ☎ telephone U+1F4DE ; 0.6 # 📞 telephone receiver U+1F4DF ; 0.6 # 📟 pager U+1F4E0 ; 0.6 # 📠 fax machine U+1F50B ; 0.6 # 🔋 battery U+1FAAB ; 14.0 # 🪫 low battery U+1F50C ; 0.6 # 🔌 electric plug U+1F4BB ; 0.6 # 💻 laptop U+1F5A5 ; 0.7 # 🖥 desktop computer U+1F5A8 ; 0.7 # 🖨 printer U+2328 ; 1.0 # ⌨ keyboard U+1F5B1 ; 0.7 # 🖱 computer mouse U+1F5B2 ; 0.7 # 🖲 trackball U+1F4BD ; 0.6 # 💽 computer disk U+1F4BE ; 0.6 # 💾 floppy disk U+1F4BF ; 0.6 # 💿 optical disk U+1F4C0 ; 0.6 # 📀 dvd U+1F9EE ; 11.0 # 🧮 abacus U+1F3A5 ; 0.6 # 🎥 movie camera U+1F39E ; 0.7 # 🎞 film frames U+1F4FD ; 0.7 # 📽 film projector U+1F3AC ; 0.6 # 🎬 clapper board U+1F4FA ; 0.6 # 📺 television U+1F4F7 ; 0.6 # 📷 camera U+1F4F8 ; 1.0 # 📸 camera with flash U+1F4F9 ; 0.6 # 📹 video camera U+1F4FC ; 0.6 # 📼 videocassette U+1F50D ; 0.6 # 🔍 magnifying glass tilted left U+1F50E ; 0.6 # 🔎 magnifying glass tilted right U+1F56F ; 0.7 # 🕯 candle U+1F4A1 ; 0.6 # 💡 light bulb U+1F526 ; 0.6 # 🔦 flashlight U+1F3EE ; 0.6 # 🏮 red paper lantern U+1FA94 ; 12.0 # 🪔 diya lamp U+1F4D4 ; 0.6 # 📔 notebook with decorative cover U+1F4D5 ; 0.6 # 📕 closed book U+1F4D6 ; 0.6 # 📖 open book U+1F4D7 ; 0.6 # 📗 green book U+1F4D8 ; 0.6 # 📘 blue book U+1F4D9 ; 0.6 # 📙 orange book U+1F4DA ; 0.6 # 📚 books U+1F4D3 ; 0.6 # 📓 notebook U+1F4D2 ; 0.6 # 📒 ledger U+1F4C3 ; 0.6 # 📃 page with curl U+1F4DC ; 0.6 # 📜 scroll U+1F4C4 ; 0.6 # 📄 page facing up U+1F4F0 ; 0.6 # 📰 newspaper U+1F5DE ; 0.7 # 🗞 rolled-up newspaper U+1F4D1 ; 0.6 # 📑 bookmark tabs U+1F516 ; 0.6 # 🔖 bookmark U+1F3F7 ; 0.7 # 🏷 label U+1F4B0 ; 0.6 # 💰 money bag U+1FA99 ; 13.0 # 🪙 coin U+1F4B4 ; 0.6 # 💴 yen banknote U+1F4B5 ; 0.6 # 💵 dollar banknote U+1F4B6 ; 1.0 # 💶 euro banknote U+1F4B7 ; 1.0 # 💷 pound banknote U+1F4B8 ; 0.6 # 💸 money with wings U+1F4B3 ; 0.6 # 💳 credit card U+1F9FE ; 11.0 # 🧾 receipt U+1F4B9 ; 0.6 # 💹 chart increasing with yen U+2709 ; 0.6 # ✉ envelope U+1F4E7 ; 0.6 # 📧 e-mail U+1F4E8 ; 0.6 # 📨 incoming envelope U+1F4E9 ; 0.6 # 📩 envelope with arrow U+1F4E4 ; 0.6 # 📤 outbox tray U+1F4E5 ; 0.6 # 📥 inbox tray U+1F4E6 ; 0.6 # 📦 package U+1F4EB ; 0.6 # 📫 closed mailbox with raised flag U+1F4EA ; 0.6 # 📪 closed mailbox with lowered flag U+1F4EC ; 0.7 # 📬 open mailbox with raised flag U+1F4ED ; 0.7 # 📭 open mailbox with lowered flag U+1F4EE ; 0.6 # 📮 postbox U+1F5F3 ; 0.7 # 🗳 ballot box with ballot U+270F ; 0.6 # ✏ pencil U+2712 ; 0.6 # ✒ black nib U+1F58B ; 0.7 # 🖋 fountain pen U+1F58A ; 0.7 # 🖊 pen U+1F58C ; 0.7 # 🖌 paintbrush U+1F58D ; 0.7 # 🖍 crayon U+1F4DD ; 0.6 # 📝 memo U+1F4BC ; 0.6 # 💼 briefcase U+1F4C1 ; 0.6 # 📁 file folder U+1F4C2 ; 0.6 # 📂 open file folder U+1F5C2 ; 0.7 # 🗂 card index dividers U+1F4C5 ; 0.6 # 📅 calendar U+1F4C6 ; 0.6 # 📆 tear-off calendar U+1F5D2 ; 0.7 # 🗒 spiral notepad U+1F5D3 ; 0.7 # 🗓 spiral calendar U+1F4C7 ; 0.6 # 📇 card index U+1F4C8 ; 0.6 # 📈 chart increasing U+1F4C9 ; 0.6 # 📉 chart decreasing U+1F4CA ; 0.6 # 📊 bar chart U+1F4CB ; 0.6 # 📋 clipboard U+1F4CC ; 0.6 # 📌 pushpin U+1F4CD ; 0.6 # 📍 round pushpin U+1F4CE ; 0.6 # 📎 paperclip U+1F587 ; 0.7 # 🖇 linked paperclips U+1F4CF ; 0.6 # 📏 straight ruler U+1F4D0 ; 0.6 # 📐 triangular ruler U+2702 ; 0.6 # ✂ scissors U+1F5C3 ; 0.7 # 🗃 card file box U+1F5C4 ; 0.7 # 🗄 file cabinet U+1F5D1 ; 0.7 # 🗑 wastebasket U+1F512 ; 0.6 # 🔒 locked U+1F513 ; 0.6 # 🔓 unlocked U+1F50F ; 0.6 # 🔏 locked with pen U+1F510 ; 0.6 # 🔐 locked with key U+1F511 ; 0.6 # 🔑 key U+1F5DD ; 0.7 # 🗝 old key U+1F528 ; 0.6 # 🔨 hammer U+1FA93 ; 12.0 # 🪓 axe U+26CF ; 0.7 # ⛏ pick U+2692 ; 1.0 # ⚒ hammer and pick U+1F6E0 ; 0.7 # 🛠 hammer and wrench U+1F5E1 ; 0.7 # 🗡 dagger U+2694 ; 1.0 # ⚔ crossed swords U+1F4A3 ; 0.6 # 💣 bomb U+1FA83 ; 13.0 # 🪃 boomerang U+1F3F9 ; 1.0 # 🏹 bow and arrow U+1F6E1 ; 0.7 # 🛡 shield U+1FA9A ; 13.0 # 🪚 carpentry saw U+1F527 ; 0.6 # 🔧 wrench U+1FA9B ; 13.0 # 🪛 screwdriver U+1F529 ; 0.6 # 🔩 nut and bolt U+2699 ; 1.0 # ⚙ gear U+1F5DC ; 0.7 # 🗜 clamp U+2696 ; 1.0 # ⚖ balance scale U+1F9AF ; 12.0 # 🦯 white cane U+1F517 ; 0.6 # 🔗 link U+26D3 U+FE0F U+200D U+1F4A5 ; 15.1 # ⛓️‍💥 broken chain U+26D3 ; 0.7 # ⛓ chains U+1FA9D ; 13.0 # 🪝 hook U+1F9F0 ; 11.0 # 🧰 toolbox U+1F9F2 ; 11.0 # 🧲 magnet U+1FA9C ; 13.0 # 🪜 ladder U+2697 ; 1.0 # ⚗ alembic U+1F9EA ; 11.0 # 🧪 test tube U+1F9EB ; 11.0 # 🧫 petri dish U+1F9EC ; 11.0 # 🧬 dna U+1F52C ; 1.0 # 🔬 microscope U+1F52D ; 1.0 # 🔭 telescope U+1F4E1 ; 0.6 # 📡 satellite antenna U+1F489 ; 0.6 # 💉 syringe U+1FA78 ; 12.0 # 🩸 drop of blood U+1F48A ; 0.6 # 💊 pill U+1FA79 ; 12.0 # 🩹 adhesive bandage U+1FA7C ; 14.0 # 🩼 crutch U+1FA7A ; 12.0 # 🩺 stethoscope U+1FA7B ; 14.0 # 🩻 x-ray U+1F6AA ; 0.6 # 🚪 door U+1F6D7 ; 13.0 # 🛗 elevator U+1FA9E ; 13.0 # 🪞 mirror U+1FA9F ; 13.0 # 🪟 window U+1F6CF ; 0.7 # 🛏 bed U+1F6CB ; 0.7 # 🛋 couch and lamp U+1FA91 ; 12.0 # 🪑 chair U+1F6BD ; 0.6 # 🚽 toilet U+1FAA0 ; 13.0 # 🪠 plunger U+1F6BF ; 1.0 # 🚿 shower U+1F6C1 ; 1.0 # 🛁 bathtub U+1FAA4 ; 13.0 # 🪤 mouse trap U+1FA92 ; 12.0 # 🪒 razor U+1F9F4 ; 11.0 # 🧴 lotion bottle U+1F9F7 ; 11.0 # 🧷 safety pin U+1F9F9 ; 11.0 # 🧹 broom U+1F9FA ; 11.0 # 🧺 basket U+1F9FB ; 11.0 # 🧻 roll of paper U+1FAA3 ; 13.0 # 🪣 bucket U+1F9FC ; 11.0 # 🧼 soap U+1FAE7 ; 14.0 # 🫧 bubbles U+1FAA5 ; 13.0 # 🪥 toothbrush U+1F9FD ; 11.0 # 🧽 sponge U+1F9EF ; 11.0 # 🧯 fire extinguisher U+1F6D2 ; 3.0 # 🛒 shopping cart U+1F6AC ; 0.6 # 🚬 cigarette U+26B0 ; 1.0 # ⚰ coffin U+1FAA6 ; 13.0 # 🪦 headstone U+26B1 ; 1.0 # ⚱ funeral urn U+1F9FF ; 11.0 # 🧿 nazar amulet U+1FAAC ; 14.0 # 🪬 hamsa U+1F5FF ; 0.6 # 🗿 moai U+1FAA7 ; 13.0 # 🪧 placard U+1FAAA ; 14.0 # 🪪 identification card U+1F3E7 ; 0.6 # 🏧 ATM sign U+1F6AE ; 1.0 # 🚮 litter in bin sign U+1F6B0 ; 1.0 # 🚰 potable water U+267F ; 0.6 # ♿ wheelchair symbol U+1F6B9 ; 0.6 # 🚹 men’s room U+1F6BA ; 0.6 # 🚺 women’s room U+1F6BB ; 0.6 # 🚻 restroom U+1F6BC ; 0.6 # 🚼 baby symbol U+1F6BE ; 0.6 # 🚾 water closet U+1F6C2 ; 1.0 # 🛂 passport control U+1F6C3 ; 1.0 # 🛃 customs U+1F6C4 ; 1.0 # 🛄 baggage claim U+1F6C5 ; 1.0 # 🛅 left luggage U+26A0 ; 0.6 # ⚠ warning U+1F6B8 ; 1.0 # 🚸 children crossing U+26D4 ; 0.6 # ⛔ no entry U+1F6AB ; 0.6 # 🚫 prohibited U+1F6B3 ; 1.0 # 🚳 no bicycles U+1F6AD ; 0.6 # 🚭 no smoking U+1F6AF ; 1.0 # 🚯 no littering U+1F6B1 ; 1.0 # 🚱 non-potable water U+1F6B7 ; 1.0 # 🚷 no pedestrians U+1F4F5 ; 1.0 # 📵 no mobile phones U+1F51E ; 0.6 # 🔞 no one under eighteen U+2622 ; 1.0 # ☢ radioactive U+2623 ; 1.0 # ☣ biohazard U+2B06 ; 0.6 # ⬆ up arrow U+2197 ; 0.6 # ↗ up-right arrow U+27A1 ; 0.6 # ➡ right arrow U+2198 ; 0.6 # ↘ down-right arrow U+2B07 ; 0.6 # ⬇ down arrow U+2199 ; 0.6 # ↙ down-left arrow U+2B05 ; 0.6 # ⬅ left arrow U+2196 ; 0.6 # ↖ up-left arrow U+2195 ; 0.6 # ↕ up-down arrow U+2194 ; 0.6 # ↔ left-right arrow U+21A9 ; 0.6 # ↩ right arrow curving left U+21AA ; 0.6 # ↪ left arrow curving right U+2934 ; 0.6 # ⤴ right arrow curving up U+2935 ; 0.6 # ⤵ right arrow curving down U+1F503 ; 0.6 # 🔃 clockwise vertical arrows U+1F504 ; 1.0 # 🔄 counterclockwise arrows button U+1F519 ; 0.6 # 🔙 BACK arrow U+1F51A ; 0.6 # 🔚 END arrow U+1F51B ; 0.6 # 🔛 ON! arrow U+1F51C ; 0.6 # 🔜 SOON arrow U+1F51D ; 0.6 # 🔝 TOP arrow U+1F6D0 ; 1.0 # 🛐 place of worship U+269B ; 1.0 # ⚛ atom symbol U+1F549 ; 0.7 # 🕉 om U+2721 ; 0.7 # ✡ star of David U+2638 ; 0.7 # ☸ wheel of dharma U+262F ; 0.7 # ☯ yin yang U+271D ; 0.7 # ✝ latin cross U+2626 ; 1.0 # ☦ orthodox cross U+262A ; 0.7 # ☪ star and crescent U+262E ; 1.0 # ☮ peace symbol U+1F54E ; 1.0 # 🕎 menorah U+1F52F ; 0.6 # 🔯 dotted six-pointed star U+1FAAF ; 15.0 # 🪯 khanda U+2648 ; 0.6 # ♈ Aries U+2649 ; 0.6 # ♉ Taurus U+264A ; 0.6 # ♊ Gemini U+264B ; 0.6 # ♋ Cancer U+264C ; 0.6 # ♌ Leo U+264D ; 0.6 # ♍ Virgo U+264E ; 0.6 # ♎ Libra U+264F ; 0.6 # ♏ Scorpio U+2650 ; 0.6 # ♐ Sagittarius U+2651 ; 0.6 # ♑ Capricorn U+2652 ; 0.6 # ♒ Aquarius U+2653 ; 0.6 # ♓ Pisces U+26CE ; 0.6 # ⛎ Ophiuchus U+1F500 ; 1.0 # 🔀 shuffle tracks button U+1F501 ; 1.0 # 🔁 repeat button U+1F502 ; 1.0 # 🔂 repeat single button U+25B6 ; 0.6 # ▶ play button U+23E9 ; 0.6 # ⏩ fast-forward button U+23ED ; 0.7 # ⏭ next track button U+23EF ; 1.0 # ⏯ play or pause button U+25C0 ; 0.6 # ◀ reverse button U+23EA ; 0.6 # ⏪ fast reverse button U+23EE ; 0.7 # ⏮ last track button U+1F53C ; 0.6 # 🔼 upwards button U+23EB ; 0.6 # ⏫ fast up button U+1F53D ; 0.6 # 🔽 downwards button U+23EC ; 0.6 # ⏬ fast down button U+23F8 ; 0.7 # ⏸ pause button U+23F9 ; 0.7 # ⏹ stop button U+23FA ; 0.7 # ⏺ record button U+23CF ; 1.0 # ⏏ eject button U+1F3A6 ; 0.6 # 🎦 cinema U+1F505 ; 1.0 # 🔅 dim button U+1F506 ; 1.0 # 🔆 bright button U+1F4F6 ; 0.6 # 📶 antenna bars U+1F6DC ; 15.0 # 🛜 wireless U+1F4F3 ; 0.6 # 📳 vibration mode U+1F4F4 ; 0.6 # 📴 mobile phone off U+2640 ; 4.0 # ♀ female sign U+2642 ; 4.0 # ♂ male sign U+26A7 ; 13.0 # ⚧ transgender symbol U+2716 ; 0.6 # ✖ multiply U+2795 ; 0.6 # ➕ plus U+2796 ; 0.6 # ➖ minus U+2797 ; 0.6 # ➗ divide U+1F7F0 ; 14.0 # 🟰 heavy equals sign U+267E ; 11.0 # ♾ infinity U+203C ; 0.6 # ‼ double exclamation mark U+2049 ; 0.6 # ⁉ exclamation question mark U+2753 ; 0.6 # ❓ red question mark U+2754 ; 0.6 # ❔ white question mark U+2755 ; 0.6 # ❕ white exclamation mark U+2757 ; 0.6 # ❗ red exclamation mark U+3030 ; 0.6 # 〰 wavy dash U+1F4B1 ; 0.6 # 💱 currency exchange U+1F4B2 ; 0.6 # 💲 heavy dollar sign U+2695 ; 4.0 # ⚕ medical symbol U+267B ; 0.6 # ♻ recycling symbol U+269C ; 1.0 # ⚜ fleur-de-lis U+1F531 ; 0.6 # 🔱 trident emblem U+1F4DB ; 0.6 # 📛 name badge U+1F530 ; 0.6 # 🔰 Japanese symbol for beginner U+2B55 ; 0.6 # ⭕ hollow red circle U+2705 ; 0.6 # ✅ check mark button U+2611 ; 0.6 # ☑ check box with check U+2714 ; 0.6 # ✔ check mark U+274C ; 0.6 # ❌ cross mark U+274E ; 0.6 # ❎ cross mark button U+27B0 ; 0.6 # ➰ curly loop U+27BF ; 1.0 # ➿ double curly loop U+303D ; 0.6 # 〽 part alternation mark U+2733 ; 0.6 # ✳ eight-spoked asterisk U+2734 ; 0.6 # ✴ eight-pointed star U+2747 ; 0.6 # ❇ sparkle U+00A9 ; 0.6 # © copyright # added U+00A9 U+FE0F ; 0.6 # ©️ copyright U+00AE ; 0.6 # ® registered # added U+00AE U+FE0F ; 0.6 # ®️ registered U+2122 ; 0.6 # ™ trade mark # added U+2122 U+FE0F ; 0.6 # ™️ mark U+0023 U+FE0F U+20E3 ; 0.6 # #️⃣ keycap: # U+002A U+FE0F U+20E3 ; 2.0 # *️⃣ keycap: * U+0030 U+FE0F U+20E3 ; 0.6 # 0️⃣ keycap: 0 U+0031 U+FE0F U+20E3 ; 0.6 # 1️⃣ keycap: 1 U+0032 U+FE0F U+20E3 ; 0.6 # 2️⃣ keycap: 2 U+0033 U+FE0F U+20E3 ; 0.6 # 3️⃣ keycap: 3 U+0034 U+FE0F U+20E3 ; 0.6 # 4️⃣ keycap: 4 U+0035 U+FE0F U+20E3 ; 0.6 # 5️⃣ keycap: 5 U+0036 U+FE0F U+20E3 ; 0.6 # 6️⃣ keycap: 6 U+0037 U+FE0F U+20E3 ; 0.6 # 7️⃣ keycap: 7 U+0038 U+FE0F U+20E3 ; 0.6 # 8️⃣ keycap: 8 U+0039 U+FE0F U+20E3 ; 0.6 # 9️⃣ keycap: 9 U+1F51F ; 0.6 # 🔟 keycap: 10 U+1F520 ; 0.6 # 🔠 input latin uppercase U+1F521 ; 0.6 # 🔡 input latin lowercase U+1F522 ; 0.6 # 🔢 input numbers U+1F523 ; 0.6 # 🔣 input symbols U+1F524 ; 0.6 # 🔤 input latin letters U+1F170 ; 0.6 # 🅰 A button (blood type) U+1F18E ; 0.6 # 🆎 AB button (blood type) U+1F171 ; 0.6 # 🅱 B button (blood type) U+1F191 ; 0.6 # 🆑 CL button U+1F192 ; 0.6 # 🆒 COOL button U+1F193 ; 0.6 # 🆓 FREE button U+2139 ; 0.6 # ℹ information U+1F194 ; 0.6 # 🆔 ID button U+24C2 ; 0.6 # Ⓜ circled M U+1F195 ; 0.6 # 🆕 NEW button U+1F196 ; 0.6 # 🆖 NG button U+1F17E ; 0.6 # 🅾 O button (blood type) U+1F197 ; 0.6 # 🆗 OK button U+1F17F ; 0.6 # 🅿 P button U+1F198 ; 0.6 # 🆘 SOS button U+1F199 ; 0.6 # 🆙 UP! button U+1F19A ; 0.6 # 🆚 VS button U+1F201 ; 0.6 # 🈁 Japanese “here” button U+1F202 ; 0.6 # 🈂 Japanese “service charge” button U+1F237 ; 0.6 # 🈷 Japanese “monthly amount” button U+1F236 ; 0.6 # 🈶 Japanese “not free of charge” button U+1F22F ; 0.6 # 🈯 Japanese “reserved” button U+1F250 ; 0.6 # 🉐 Japanese “bargain” button U+1F239 ; 0.6 # 🈹 Japanese “discount” button U+1F21A ; 0.6 # 🈚 Japanese “free of charge” button U+1F232 ; 0.6 # 🈲 Japanese “prohibited” button U+1F251 ; 0.6 # 🉑 Japanese “acceptable” button U+1F238 ; 0.6 # 🈸 Japanese “application” button U+1F234 ; 0.6 # 🈴 Japanese “passing grade” button U+1F233 ; 0.6 # 🈳 Japanese “vacancy” button U+3297 ; 0.6 # ㊗ Japanese “congratulations” button U+3299 ; 0.6 # ㊙ Japanese “secret” button U+1F23A ; 0.6 # 🈺 Japanese “open for business” button U+1F235 ; 0.6 # 🈵 Japanese “no vacancy” button U+1F534 ; 0.6 # 🔴 red circle U+1F7E0 ; 12.0 # 🟠 orange circle U+1F7E1 ; 12.0 # 🟡 yellow circle U+1F7E2 ; 12.0 # 🟢 green circle U+1F535 ; 0.6 # 🔵 blue circle U+1F7E3 ; 12.0 # 🟣 purple circle U+1F7E4 ; 12.0 # 🟤 brown circle U+26AB ; 0.6 # ⚫ black circle U+26AA ; 0.6 # ⚪ white circle U+1F7E5 ; 12.0 # 🟥 red square U+1F7E7 ; 12.0 # 🟧 orange square U+1F7E8 ; 12.0 # 🟨 yellow square U+1F7E9 ; 12.0 # 🟩 green square U+1F7E6 ; 12.0 # 🟦 blue square U+1F7EA ; 12.0 # 🟪 purple square U+1F7EB ; 12.0 # 🟫 brown square U+2B1B ; 0.6 # ⬛ black large square U+2B1C ; 0.6 # ⬜ white large square U+25FC ; 0.6 # ◼ black medium square U+25FB ; 0.6 # ◻ white medium square U+25FE ; 0.6 # ◾ black medium-small square U+25FD ; 0.6 # ◽ white medium-small square U+25AA ; 0.6 # ▪ black small square U+25AB ; 0.6 # ▫ white small square U+1F536 ; 0.6 # 🔶 large orange diamond U+1F537 ; 0.6 # 🔷 large blue diamond U+1F538 ; 0.6 # 🔸 small orange diamond U+1F539 ; 0.6 # 🔹 small blue diamond U+1F53A ; 0.6 # 🔺 red triangle pointed up U+1F53B ; 0.6 # 🔻 red triangle pointed down U+1F4A0 ; 0.6 # 💠 diamond with a dot U+1F518 ; 0.6 # 🔘 radio button U+1F533 ; 0.6 # 🔳 white square button U+1F532 ; 0.6 # 🔲 black square button U+1F3C1 ; 0.6 # 🏁 chequered flag U+1F6A9 ; 0.6 # 🚩 triangular flag U+1F38C ; 0.6 # 🎌 crossed flags U+1F3F4 ; 1.0 # 🏴 black flag U+1F3F3 ; 0.7 # 🏳 white flag U+1F3F3 U+FE0F U+200D U+1F308 ; 4.0 # 🏳️‍🌈 rainbow flag U+1F3F3 U+FE0F U+200D U+26A7 U+FE0F ; 13.0 # 🏳️‍⚧️ transgender flag U+1F3F4 U+200D U+2620 U+FE0F ; 11.0 # 🏴‍☠️ pirate flag U+1F1E6 U+1F1E8 ; 2.0 # 🇦🇨 flag: Ascension Island U+1F1E6 U+1F1E9 ; 2.0 # 🇦🇩 flag: Andorra U+1F1E6 U+1F1EA ; 2.0 # 🇦🇪 flag: United Arab Emirates U+1F1E6 U+1F1EB ; 2.0 # 🇦🇫 flag: Afghanistan U+1F1E6 U+1F1EC ; 2.0 # 🇦🇬 flag: Antigua & Barbuda U+1F1E6 U+1F1EE ; 2.0 # 🇦🇮 flag: Anguilla U+1F1E6 U+1F1F1 ; 2.0 # 🇦🇱 flag: Albania U+1F1E6 U+1F1F2 ; 2.0 # 🇦🇲 flag: Armenia U+1F1E6 U+1F1F4 ; 2.0 # 🇦🇴 flag: Angola U+1F1E6 U+1F1F6 ; 2.0 # 🇦🇶 flag: Antarctica U+1F1E6 U+1F1F7 ; 2.0 # 🇦🇷 flag: Argentina U+1F1E6 U+1F1F8 ; 2.0 # 🇦🇸 flag: American Samoa U+1F1E6 U+1F1F9 ; 2.0 # 🇦🇹 flag: Austria U+1F1E6 U+1F1FA ; 2.0 # 🇦🇺 flag: Australia U+1F1E6 U+1F1FC ; 2.0 # 🇦🇼 flag: Aruba U+1F1E6 U+1F1FD ; 2.0 # 🇦🇽 flag: Åland Islands U+1F1E6 U+1F1FF ; 2.0 # 🇦🇿 flag: Azerbaijan U+1F1E7 U+1F1E6 ; 2.0 # 🇧🇦 flag: Bosnia & Herzegovina U+1F1E7 U+1F1E7 ; 2.0 # 🇧🇧 flag: Barbados U+1F1E7 U+1F1E9 ; 2.0 # 🇧🇩 flag: Bangladesh U+1F1E7 U+1F1EA ; 2.0 # 🇧🇪 flag: Belgium U+1F1E7 U+1F1EB ; 2.0 # 🇧🇫 flag: Burkina Faso U+1F1E7 U+1F1EC ; 2.0 # 🇧🇬 flag: Bulgaria U+1F1E7 U+1F1ED ; 2.0 # 🇧🇭 flag: Bahrain U+1F1E7 U+1F1EE ; 2.0 # 🇧🇮 flag: Burundi U+1F1E7 U+1F1EF ; 2.0 # 🇧🇯 flag: Benin U+1F1E7 U+1F1F1 ; 2.0 # 🇧🇱 flag: St. Barthélemy U+1F1E7 U+1F1F2 ; 2.0 # 🇧🇲 flag: Bermuda U+1F1E7 U+1F1F3 ; 2.0 # 🇧🇳 flag: Brunei U+1F1E7 U+1F1F4 ; 2.0 # 🇧🇴 flag: Bolivia U+1F1E7 U+1F1F6 ; 2.0 # 🇧🇶 flag: Caribbean Netherlands U+1F1E7 U+1F1F7 ; 2.0 # 🇧🇷 flag: Brazil U+1F1E7 U+1F1F8 ; 2.0 # 🇧🇸 flag: Bahamas U+1F1E7 U+1F1F9 ; 2.0 # 🇧🇹 flag: Bhutan U+1F1E7 U+1F1FB ; 2.0 # 🇧🇻 flag: Bouvet Island U+1F1E7 U+1F1FC ; 2.0 # 🇧🇼 flag: Botswana U+1F1E7 U+1F1FE ; 2.0 # 🇧🇾 flag: Belarus U+1F1E7 U+1F1FF ; 2.0 # 🇧🇿 flag: Belize U+1F1E8 U+1F1E6 ; 2.0 # 🇨🇦 flag: Canada U+1F1E8 U+1F1E8 ; 2.0 # 🇨🇨 flag: Cocos (Keeling) Islands U+1F1E8 U+1F1E9 ; 2.0 # 🇨🇩 flag: Congo - Kinshasa U+1F1E8 U+1F1EB ; 2.0 # 🇨🇫 flag: Central African Republic U+1F1E8 U+1F1EC ; 2.0 # 🇨🇬 flag: Congo - Brazzaville U+1F1E8 U+1F1ED ; 2.0 # 🇨🇭 flag: Switzerland U+1F1E8 U+1F1EE ; 2.0 # 🇨🇮 flag: Côte d’Ivoire U+1F1E8 U+1F1F0 ; 2.0 # 🇨🇰 flag: Cook Islands U+1F1E8 U+1F1F1 ; 2.0 # 🇨🇱 flag: Chile U+1F1E8 U+1F1F2 ; 2.0 # 🇨🇲 flag: Cameroon U+1F1E8 U+1F1F3 ; 0.6 # 🇨🇳 flag: China U+1F1E8 U+1F1F4 ; 2.0 # 🇨🇴 flag: Colombia U+1F1E8 U+1F1F5 ; 2.0 # 🇨🇵 flag: Clipperton Island U+1F1E8 U+1F1F7 ; 2.0 # 🇨🇷 flag: Costa Rica U+1F1E8 U+1F1FA ; 2.0 # 🇨🇺 flag: Cuba U+1F1E8 U+1F1FB ; 2.0 # 🇨🇻 flag: Cape Verde U+1F1E8 U+1F1FC ; 2.0 # 🇨🇼 flag: Curaçao U+1F1E8 U+1F1FD ; 2.0 # 🇨🇽 flag: Christmas Island U+1F1E8 U+1F1FE ; 2.0 # 🇨🇾 flag: Cyprus U+1F1E8 U+1F1FF ; 2.0 # 🇨🇿 flag: Czechia U+1F1E9 U+1F1EA ; 0.6 # 🇩🇪 flag: Germany U+1F1E9 U+1F1EC ; 2.0 # 🇩🇬 flag: Diego Garcia U+1F1E9 U+1F1EF ; 2.0 # 🇩🇯 flag: Djibouti U+1F1E9 U+1F1F0 ; 2.0 # 🇩🇰 flag: Denmark U+1F1E9 U+1F1F2 ; 2.0 # 🇩🇲 flag: Dominica U+1F1E9 U+1F1F4 ; 2.0 # 🇩🇴 flag: Dominican Republic U+1F1E9 U+1F1FF ; 2.0 # 🇩🇿 flag: Algeria U+1F1EA U+1F1E6 ; 2.0 # 🇪🇦 flag: Ceuta & Melilla U+1F1EA U+1F1E8 ; 2.0 # 🇪🇨 flag: Ecuador U+1F1EA U+1F1EA ; 2.0 # 🇪🇪 flag: Estonia U+1F1EA U+1F1EC ; 2.0 # 🇪🇬 flag: Egypt U+1F1EA U+1F1ED ; 2.0 # 🇪🇭 flag: Western Sahara U+1F1EA U+1F1F7 ; 2.0 # 🇪🇷 flag: Eritrea U+1F1EA U+1F1F8 ; 0.6 # 🇪🇸 flag: Spain U+1F1EA U+1F1F9 ; 2.0 # 🇪🇹 flag: Ethiopia U+1F1EA U+1F1FA ; 2.0 # 🇪🇺 flag: European Union U+1F1EB U+1F1EE ; 2.0 # 🇫🇮 flag: Finland U+1F1EB U+1F1EF ; 2.0 # 🇫🇯 flag: Fiji U+1F1EB U+1F1F0 ; 2.0 # 🇫🇰 flag: Falkland Islands U+1F1EB U+1F1F2 ; 2.0 # 🇫🇲 flag: Micronesia U+1F1EB U+1F1F4 ; 2.0 # 🇫🇴 flag: Faroe Islands U+1F1EB U+1F1F7 ; 0.6 # 🇫🇷 flag: France U+1F1EC U+1F1E6 ; 2.0 # 🇬🇦 flag: Gabon U+1F1EC U+1F1E7 ; 0.6 # 🇬🇧 flag: United Kingdom U+1F1EC U+1F1E9 ; 2.0 # 🇬🇩 flag: Grenada U+1F1EC U+1F1EA ; 2.0 # 🇬🇪 flag: Georgia U+1F1EC U+1F1EB ; 2.0 # 🇬🇫 flag: French Guiana U+1F1EC U+1F1EC ; 2.0 # 🇬🇬 flag: Guernsey U+1F1EC U+1F1ED ; 2.0 # 🇬🇭 flag: Ghana U+1F1EC U+1F1EE ; 2.0 # 🇬🇮 flag: Gibraltar U+1F1EC U+1F1F1 ; 2.0 # 🇬🇱 flag: Greenland U+1F1EC U+1F1F2 ; 2.0 # 🇬🇲 flag: Gambia U+1F1EC U+1F1F3 ; 2.0 # 🇬🇳 flag: Guinea U+1F1EC U+1F1F5 ; 2.0 # 🇬🇵 flag: Guadeloupe U+1F1EC U+1F1F6 ; 2.0 # 🇬🇶 flag: Equatorial Guinea U+1F1EC U+1F1F7 ; 2.0 # 🇬🇷 flag: Greece U+1F1EC U+1F1F8 ; 2.0 # 🇬🇸 flag: South Georgia & South Sandwich Islands U+1F1EC U+1F1F9 ; 2.0 # 🇬🇹 flag: Guatemala U+1F1EC U+1F1FA ; 2.0 # 🇬🇺 flag: Guam U+1F1EC U+1F1FC ; 2.0 # 🇬🇼 flag: Guinea-Bissau U+1F1EC U+1F1FE ; 2.0 # 🇬🇾 flag: Guyana U+1F1ED U+1F1F0 ; 2.0 # 🇭🇰 flag: Hong Kong SAR China U+1F1ED U+1F1F2 ; 2.0 # 🇭🇲 flag: Heard & McDonald Islands U+1F1ED U+1F1F3 ; 2.0 # 🇭🇳 flag: Honduras U+1F1ED U+1F1F7 ; 2.0 # 🇭🇷 flag: Croatia U+1F1ED U+1F1F9 ; 2.0 # 🇭🇹 flag: Haiti U+1F1ED U+1F1FA ; 2.0 # 🇭🇺 flag: Hungary U+1F1EE U+1F1E8 ; 2.0 # 🇮🇨 flag: Canary Islands U+1F1EE U+1F1E9 ; 2.0 # 🇮🇩 flag: Indonesia U+1F1EE U+1F1EA ; 2.0 # 🇮🇪 flag: Ireland U+1F1EE U+1F1F1 ; 2.0 # 🇮🇱 flag: Israel U+1F1EE U+1F1F2 ; 2.0 # 🇮🇲 flag: Isle of Man U+1F1EE U+1F1F3 ; 2.0 # 🇮🇳 flag: India U+1F1EE U+1F1F4 ; 2.0 # 🇮🇴 flag: British Indian Ocean Territory U+1F1EE U+1F1F6 ; 2.0 # 🇮🇶 flag: Iraq U+1F1EE U+1F1F7 ; 2.0 # 🇮🇷 flag: Iran U+1F1EE U+1F1F8 ; 2.0 # 🇮🇸 flag: Iceland U+1F1EE U+1F1F9 ; 0.6 # 🇮🇹 flag: Italy U+1F1EF U+1F1EA ; 2.0 # 🇯🇪 flag: Jersey U+1F1EF U+1F1F2 ; 2.0 # 🇯🇲 flag: Jamaica U+1F1EF U+1F1F4 ; 2.0 # 🇯🇴 flag: Jordan U+1F1EF U+1F1F5 ; 0.6 # 🇯🇵 flag: Japan U+1F1F0 U+1F1EA ; 2.0 # 🇰🇪 flag: Kenya U+1F1F0 U+1F1EC ; 2.0 # 🇰🇬 flag: Kyrgyzstan U+1F1F0 U+1F1ED ; 2.0 # 🇰🇭 flag: Cambodia U+1F1F0 U+1F1EE ; 2.0 # 🇰🇮 flag: Kiribati U+1F1F0 U+1F1F2 ; 2.0 # 🇰🇲 flag: Comoros U+1F1F0 U+1F1F3 ; 2.0 # 🇰🇳 flag: St. Kitts & Nevis U+1F1F0 U+1F1F5 ; 2.0 # 🇰🇵 flag: North Korea U+1F1F0 U+1F1F7 ; 0.6 # 🇰🇷 flag: South Korea U+1F1F0 U+1F1FC ; 2.0 # 🇰🇼 flag: Kuwait U+1F1F0 U+1F1FE ; 2.0 # 🇰🇾 flag: Cayman Islands U+1F1F0 U+1F1FF ; 2.0 # 🇰🇿 flag: Kazakhstan U+1F1F1 U+1F1E6 ; 2.0 # 🇱🇦 flag: Laos U+1F1F1 U+1F1E7 ; 2.0 # 🇱🇧 flag: Lebanon U+1F1F1 U+1F1E8 ; 2.0 # 🇱🇨 flag: St. Lucia U+1F1F1 U+1F1EE ; 2.0 # 🇱🇮 flag: Liechtenstein U+1F1F1 U+1F1F0 ; 2.0 # 🇱🇰 flag: Sri Lanka U+1F1F1 U+1F1F7 ; 2.0 # 🇱🇷 flag: Liberia U+1F1F1 U+1F1F8 ; 2.0 # 🇱🇸 flag: Lesotho U+1F1F1 U+1F1F9 ; 2.0 # 🇱🇹 flag: Lithuania U+1F1F1 U+1F1FA ; 2.0 # 🇱🇺 flag: Luxembourg U+1F1F1 U+1F1FB ; 2.0 # 🇱🇻 flag: Latvia U+1F1F1 U+1F1FE ; 2.0 # 🇱🇾 flag: Libya U+1F1F2 U+1F1E6 ; 2.0 # 🇲🇦 flag: Morocco U+1F1F2 U+1F1E8 ; 2.0 # 🇲🇨 flag: Monaco U+1F1F2 U+1F1E9 ; 2.0 # 🇲🇩 flag: Moldova U+1F1F2 U+1F1EA ; 2.0 # 🇲🇪 flag: Montenegro U+1F1F2 U+1F1EB ; 2.0 # 🇲🇫 flag: St. Martin U+1F1F2 U+1F1EC ; 2.0 # 🇲🇬 flag: Madagascar U+1F1F2 U+1F1ED ; 2.0 # 🇲🇭 flag: Marshall Islands U+1F1F2 U+1F1F0 ; 2.0 # 🇲🇰 flag: North Macedonia U+1F1F2 U+1F1F1 ; 2.0 # 🇲🇱 flag: Mali U+1F1F2 U+1F1F2 ; 2.0 # 🇲🇲 flag: Myanmar (Burma) U+1F1F2 U+1F1F3 ; 2.0 # 🇲🇳 flag: Mongolia U+1F1F2 U+1F1F4 ; 2.0 # 🇲🇴 flag: Macao SAR China U+1F1F2 U+1F1F5 ; 2.0 # 🇲🇵 flag: Northern Mariana Islands U+1F1F2 U+1F1F6 ; 2.0 # 🇲🇶 flag: Martinique U+1F1F2 U+1F1F7 ; 2.0 # 🇲🇷 flag: Mauritania U+1F1F2 U+1F1F8 ; 2.0 # 🇲🇸 flag: Montserrat U+1F1F2 U+1F1F9 ; 2.0 # 🇲🇹 flag: Malta U+1F1F2 U+1F1FA ; 2.0 # 🇲🇺 flag: Mauritius U+1F1F2 U+1F1FB ; 2.0 # 🇲🇻 flag: Maldives U+1F1F2 U+1F1FC ; 2.0 # 🇲🇼 flag: Malawi U+1F1F2 U+1F1FD ; 2.0 # 🇲🇽 flag: Mexico U+1F1F2 U+1F1FE ; 2.0 # 🇲🇾 flag: Malaysia U+1F1F2 U+1F1FF ; 2.0 # 🇲🇿 flag: Mozambique U+1F1F3 U+1F1E6 ; 2.0 # 🇳🇦 flag: Namibia U+1F1F3 U+1F1E8 ; 2.0 # 🇳🇨 flag: New Caledonia U+1F1F3 U+1F1EA ; 2.0 # 🇳🇪 flag: Niger U+1F1F3 U+1F1EB ; 2.0 # 🇳🇫 flag: Norfolk Island U+1F1F3 U+1F1EC ; 2.0 # 🇳🇬 flag: Nigeria U+1F1F3 U+1F1EE ; 2.0 # 🇳🇮 flag: Nicaragua U+1F1F3 U+1F1F1 ; 2.0 # 🇳🇱 flag: Netherlands U+1F1F3 U+1F1F4 ; 2.0 # 🇳🇴 flag: Norway U+1F1F3 U+1F1F5 ; 2.0 # 🇳🇵 flag: Nepal U+1F1F3 U+1F1F7 ; 2.0 # 🇳🇷 flag: Nauru U+1F1F3 U+1F1FA ; 2.0 # 🇳🇺 flag: Niue U+1F1F3 U+1F1FF ; 2.0 # 🇳🇿 flag: New Zealand U+1F1F4 U+1F1F2 ; 2.0 # 🇴🇲 flag: Oman U+1F1F5 U+1F1E6 ; 2.0 # 🇵🇦 flag: Panama U+1F1F5 U+1F1EA ; 2.0 # 🇵🇪 flag: Peru U+1F1F5 U+1F1EB ; 2.0 # 🇵🇫 flag: French Polynesia U+1F1F5 U+1F1EC ; 2.0 # 🇵🇬 flag: Papua New Guinea U+1F1F5 U+1F1ED ; 2.0 # 🇵🇭 flag: Philippines U+1F1F5 U+1F1F0 ; 2.0 # 🇵🇰 flag: Pakistan U+1F1F5 U+1F1F1 ; 2.0 # 🇵🇱 flag: Poland U+1F1F5 U+1F1F2 ; 2.0 # 🇵🇲 flag: St. Pierre & Miquelon U+1F1F5 U+1F1F3 ; 2.0 # 🇵🇳 flag: Pitcairn Islands U+1F1F5 U+1F1F7 ; 2.0 # 🇵🇷 flag: Puerto Rico U+1F1F5 U+1F1F8 ; 2.0 # 🇵🇸 flag: Palestinian Territories U+1F1F5 U+1F1F9 ; 2.0 # 🇵🇹 flag: Portugal U+1F1F5 U+1F1FC ; 2.0 # 🇵🇼 flag: Palau U+1F1F5 U+1F1FE ; 2.0 # 🇵🇾 flag: Paraguay U+1F1F6 U+1F1E6 ; 2.0 # 🇶🇦 flag: Qatar U+1F1F7 U+1F1EA ; 2.0 # 🇷🇪 flag: Réunion U+1F1F7 U+1F1F4 ; 2.0 # 🇷🇴 flag: Romania U+1F1F7 U+1F1F8 ; 2.0 # 🇷🇸 flag: Serbia U+1F1F7 U+1F1FA ; 0.6 # 🇷🇺 flag: Russia U+1F1F7 U+1F1FC ; 2.0 # 🇷🇼 flag: Rwanda U+1F1F8 U+1F1E6 ; 2.0 # 🇸🇦 flag: Saudi Arabia U+1F1F8 U+1F1E7 ; 2.0 # 🇸🇧 flag: Solomon Islands U+1F1F8 U+1F1E8 ; 2.0 # 🇸🇨 flag: Seychelles U+1F1F8 U+1F1E9 ; 2.0 # 🇸🇩 flag: Sudan U+1F1F8 U+1F1EA ; 2.0 # 🇸🇪 flag: Sweden U+1F1F8 U+1F1EC ; 2.0 # 🇸🇬 flag: Singapore U+1F1F8 U+1F1ED ; 2.0 # 🇸🇭 flag: St. Helena U+1F1F8 U+1F1EE ; 2.0 # 🇸🇮 flag: Slovenia U+1F1F8 U+1F1EF ; 2.0 # 🇸🇯 flag: Svalbard & Jan Mayen U+1F1F8 U+1F1F0 ; 2.0 # 🇸🇰 flag: Slovakia U+1F1F8 U+1F1F1 ; 2.0 # 🇸🇱 flag: Sierra Leone U+1F1F8 U+1F1F2 ; 2.0 # 🇸🇲 flag: San Marino U+1F1F8 U+1F1F3 ; 2.0 # 🇸🇳 flag: Senegal U+1F1F8 U+1F1F4 ; 2.0 # 🇸🇴 flag: Somalia U+1F1F8 U+1F1F7 ; 2.0 # 🇸🇷 flag: Suriname U+1F1F8 U+1F1F8 ; 2.0 # 🇸🇸 flag: South Sudan U+1F1F8 U+1F1F9 ; 2.0 # 🇸🇹 flag: São Tomé & Príncipe U+1F1F8 U+1F1FB ; 2.0 # 🇸🇻 flag: El Salvador U+1F1F8 U+1F1FD ; 2.0 # 🇸🇽 flag: Sint Maarten U+1F1F8 U+1F1FE ; 2.0 # 🇸🇾 flag: Syria U+1F1F8 U+1F1FF ; 2.0 # 🇸🇿 flag: Eswatini U+1F1F9 U+1F1E6 ; 2.0 # 🇹🇦 flag: Tristan da Cunha U+1F1F9 U+1F1E8 ; 2.0 # 🇹🇨 flag: Turks & Caicos Islands U+1F1F9 U+1F1E9 ; 2.0 # 🇹🇩 flag: Chad U+1F1F9 U+1F1EB ; 2.0 # 🇹🇫 flag: French Southern Territories U+1F1F9 U+1F1EC ; 2.0 # 🇹🇬 flag: Togo U+1F1F9 U+1F1ED ; 2.0 # 🇹🇭 flag: Thailand U+1F1F9 U+1F1EF ; 2.0 # 🇹🇯 flag: Tajikistan U+1F1F9 U+1F1F0 ; 2.0 # 🇹🇰 flag: Tokelau U+1F1F9 U+1F1F1 ; 2.0 # 🇹🇱 flag: Timor-Leste U+1F1F9 U+1F1F2 ; 2.0 # 🇹🇲 flag: Turkmenistan U+1F1F9 U+1F1F3 ; 2.0 # 🇹🇳 flag: Tunisia U+1F1F9 U+1F1F4 ; 2.0 # 🇹🇴 flag: Tonga U+1F1F9 U+1F1F7 ; 2.0 # 🇹🇷 flag: Türkiye U+1F1F9 U+1F1F9 ; 2.0 # 🇹🇹 flag: Trinidad & Tobago U+1F1F9 U+1F1FB ; 2.0 # 🇹🇻 flag: Tuvalu U+1F1F9 U+1F1FC ; 2.0 # 🇹🇼 flag: Taiwan U+1F1F9 U+1F1FF ; 2.0 # 🇹🇿 flag: Tanzania U+1F1FA U+1F1E6 ; 2.0 # 🇺🇦 flag: Ukraine U+1F1FA U+1F1EC ; 2.0 # 🇺🇬 flag: Uganda U+1F1FA U+1F1F2 ; 2.0 # 🇺🇲 flag: U.S. Outlying Islands U+1F1FA U+1F1F3 ; 4.0 # 🇺🇳 flag: United Nations U+1F1FA U+1F1F8 ; 0.6 # 🇺🇸 flag: United States U+1F1FA U+1F1FE ; 2.0 # 🇺🇾 flag: Uruguay U+1F1FA U+1F1FF ; 2.0 # 🇺🇿 flag: Uzbekistan U+1F1FB U+1F1E6 ; 2.0 # 🇻🇦 flag: Vatican City U+1F1FB U+1F1E8 ; 2.0 # 🇻🇨 flag: St. Vincent & Grenadines U+1F1FB U+1F1EA ; 2.0 # 🇻🇪 flag: Venezuela U+1F1FB U+1F1EC ; 2.0 # 🇻🇬 flag: British Virgin Islands U+1F1FB U+1F1EE ; 2.0 # 🇻🇮 flag: U.S. Virgin Islands U+1F1FB U+1F1F3 ; 2.0 # 🇻🇳 flag: Vietnam U+1F1FB U+1F1FA ; 2.0 # 🇻🇺 flag: Vanuatu U+1F1FC U+1F1EB ; 2.0 # 🇼🇫 flag: Wallis & Futuna U+1F1FC U+1F1F8 ; 2.0 # 🇼🇸 flag: Samoa U+1F1FD U+1F1F0 ; 2.0 # 🇽🇰 flag: Kosovo U+1F1FE U+1F1EA ; 2.0 # 🇾🇪 flag: Yemen U+1F1FE U+1F1F9 ; 2.0 # 🇾🇹 flag: Mayotte U+1F1FF U+1F1E6 ; 2.0 # 🇿🇦 flag: South Africa U+1F1FF U+1F1F2 ; 2.0 # 🇿🇲 flag: Zambia U+1F1FF U+1F1FC ; 2.0 # 🇿🇼 flag: Zimbabwe U+1F3F4 U+E0067 U+E0062 U+E0065 U+E006E U+E0067 U+E007F ; 5.0 # 🏴󠁧󠁢󠁥󠁮󠁧󠁿 flag: England U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F ; 5.0 # 🏴󠁧󠁢󠁳󠁣󠁴󠁿 flag: Scotland U+1F3F4 U+E0067 U+E0062 U+E0077 U+E006C U+E0073 U+E007F ; 5.0 # 🏴󠁧󠁢󠁷󠁬󠁳󠁿 flag: Wales tanuki_emoji-0.9.0/vendor/emoji-unicode-version/0000755000004100000410000000000014545323276021750 5ustar www-datawww-datatanuki_emoji-0.9.0/vendor/emoji-unicode-version/emoji-unicode-version-map.json0000644000004100000410000036125114545323276027640 0ustar www-datawww-data{ "100": "6.0", "1234": "6.0", "interrobang": "3.0", "tm": "1.1", "information_source": "3.0", "left_right_arrow": "1.1", "arrow_up_down": "1.1", "arrow_upper_left": "1.1", "arrow_upper_right": "1.1", "arrow_lower_right": "1.1", "arrow_lower_left": "1.1", "keyboard": "1.1", "sunny": "1.1", "cloud": "1.1", "umbrella2": "1.1", "snowman2": "1.1", "comet": "1.1", "ballot_box_with_check": "1.1", "umbrella": "4.0", "coffee": "4.0", "shamrock": "4.1", "skull_crossbones": "1.1", "skull_and_crossbones": "1.1", "radioactive": "1.1", "radioactive_sign": "1.1", "biohazard": "1.1", "biohazard_sign": "1.1", "orthodox_cross": "1.1", "wheel_of_dharma": "1.1", "frowning2": "1.1", "white_frowning_face": "1.1", "female_sign": "1.1", "male_sign": "1.1", "aries": "1.1", "taurus": "1.1", "sagittarius": "1.1", "capricorn": "1.1", "aquarius": "1.1", "pisces": "1.1", "spades": "1.1", "clubs": "1.1", "hearts": "1.1", "diamonds": "1.1", "hotsprings": "1.1", "hammer_pick": "4.1", "hammer_and_pick": "4.1", "anchor": "4.1", "crossed_swords": "4.1", "medical_symbol": "4.1", "scales": "4.1", "alembic": "4.1", "gear": "4.1", "scissors": "1.1", "white_check_mark": "6.0", "airplane": "1.1", "envelope": "1.1", "black_nib": "1.1", "heavy_check_mark": "1.1", "heavy_multiplication_x": "1.1", "star_of_david": "1.1", "sparkles": "6.0", "eight_spoked_asterisk": "1.1", "eight_pointed_black_star": "1.1", "snowflake": "1.1", "sparkle": "1.1", "question": "6.0", "grey_question": "6.0", "grey_exclamation": "6.0", "exclamation": "5.2", "heart_exclamation": "1.1", "heavy_heart_exclamation_mark_ornament": "1.1", "heart": "1.1", "heavy_plus_sign": "6.0", "heavy_minus_sign": "6.0", "heavy_division_sign": "6.0", "arrow_heading_up": "3.2", "arrow_heading_down": "3.2", "wavy_dash": "1.1", "congratulations": "1.1", "secret": "1.1", "orange_heart": "10.0", "yellow_heart": "6.0", "green_heart": "6.0", "blue_heart": "6.0", "purple_heart": "6.0", "black_heart": "9.0", "broken_heart": "6.0", "two_hearts": "6.0", "revolving_hearts": "6.0", "heartbeat": "6.0", "heartpulse": "6.0", "sparkling_heart": "6.0", "cupid": "6.0", "gift_heart": "6.0", "heart_decoration": "6.0", "peace": "1.1", "peace_symbol": "1.1", "cross": "1.1", "latin_cross": "1.1", "star_and_crescent": "1.1", "om_symbol": "7.0", "six_pointed_star": "6.0", "menorah": "8.0", "yin_yang": "1.1", "place_of_worship": "8.0", "worship_symbol": "8.0", "ophiuchus": "6.0", "gemini": "1.1", "cancer": "1.1", "leo": "1.1", "virgo": "1.1", "libra": "1.1", "scorpius": "1.1", "id": "6.0", "atom": "4.1", "atom_symbol": "4.1", "infinity": "11.0", "accept": "6.0", "mobile_phone_off": "6.0", "vibration_mode": "6.0", "u6709": "6.0", "u7121": "5.2", "u7533": "6.0", "u55b6": "6.0", "u6708": "6.0", "vs": "6.0", "white_flower": "6.0", "ideograph_advantage": "6.0", "u5408": "6.0", "u6e80": "6.0", "u5272": "6.0", "u7981": "6.0", "a": "6.0", "b": "6.0", "ab": "6.0", "cl": "6.0", "o2": "6.0", "sos": "6.0", "x": "6.0", "o": "5.2", "octagonal_sign": "9.0", "stop_sign": "9.0", "no_entry": "5.2", "name_badge": "6.0", "no_entry_sign": "6.0", "anger": "6.0", "no_pedestrians": "6.0", "do_not_litter": "6.0", "no_bicycles": "6.0", "non-potable_water": "6.0", "underage": "6.0", "no_mobile_phones": "6.0", "no_smoking": "6.0", "bangbang": "1.1", "low_brightness": "6.0", "high_brightness": "6.0", "part_alternation_mark": "3.2", "warning": "4.0", "children_crossing": "6.0", "trident": "6.0", "fleur-de-lis": "4.1", "beginner": "6.0", "recycle": "3.2", "u6307": "5.2", "chart": "6.0", "negative_squared_cross_mark": "6.0", "globe_with_meridians": "6.0", "diamond_shape_with_a_dot_inside": "6.0", "m": "1.1", "cyclone": "6.0", "zzz": "6.0", "atm": "6.0", "wc": "6.0", "wheelchair": "4.1", "parking": "5.2", "u7a7a": "6.0", "sa": "6.0", "passport_control": "6.0", "customs": "6.0", "baggage_claim": "6.0", "left_luggage": "6.0", "mens": "6.0", "womens": "6.0", "baby_symbol": "6.0", "restroom": "6.0", "put_litter_in_its_place": "6.0", "cinema": "6.0", "signal_strength": "6.0", "koko": "6.0", "symbols": "6.0", "abc": "6.0", "abcd": "6.0", "capital_abcd": "6.0", "ng": "6.0", "ok": "6.0", "up": "6.0", "cool": "6.0", "new": "6.0", "free": "6.0", "zero": "3.0", "one": "3.0", "two": "3.0", "three": "3.0", "four": "3.0", "five": "3.0", "six": "3.0", "seven": "3.0", "eight": "3.0", "nine": "3.0", "keycap_ten": "6.0", "hash": "3.0", "asterisk": "3.0", "keycap_asterisk": "3.0", "eject": "4.0", "eject_symbol": "4.0", "arrow_forward": "1.1", "pause_button": "7.0", "double_vertical_bar": "7.0", "play_pause": "6.0", "stop_button": "7.0", "record_button": "7.0", "track_next": "6.0", "next_track": "6.0", "track_previous": "6.0", "previous_track": "6.0", "fast_forward": "6.0", "rewind": "6.0", "arrow_double_up": "6.0", "arrow_double_down": "6.0", "arrow_backward": "1.1", "arrow_up_small": "6.0", "arrow_down_small": "6.0", "arrow_right": "1.1", "arrow_left": "4.0", "arrow_up": "4.0", "arrow_down": "4.0", "arrow_right_hook": "1.1", "leftwards_arrow_with_hook": "1.1", "twisted_rightwards_arrows": "6.0", "repeat": "6.0", "repeat_one": "6.0", "arrows_counterclockwise": "6.0", "arrows_clockwise": "6.0", "musical_note": "6.0", "notes": "6.0", "heavy_dollar_sign": "6.0", "currency_exchange": "6.0", "copyright": "1.1", "registered": "1.1", "curly_loop": "6.0", "loop": "6.0", "end": "6.0", "back": "6.0", "on": "6.0", "top": "6.0", "soon": "6.0", "radio_button": "6.0", "white_circle": "4.1", "black_circle": "4.1", "red_circle": "6.0", "blue_circle": "6.0", "small_red_triangle": "6.0", "small_red_triangle_down": "6.0", "small_orange_diamond": "6.0", "small_blue_diamond": "6.0", "large_orange_diamond": "6.0", "large_blue_diamond": "6.0", "white_square_button": "6.0", "black_square_button": "6.0", "black_small_square": "1.1", "white_small_square": "1.1", "black_medium_small_square": "3.2", "white_medium_small_square": "3.2", "black_medium_square": "3.2", "white_medium_square": "3.2", "black_large_square": "5.1", "white_large_square": "5.1", "speaker": "6.0", "mute": "6.0", "sound": "6.0", "loud_sound": "6.0", "bell": "6.0", "no_bell": "6.0", "mega": "6.0", "loudspeaker": "6.0", "speech_left": "7.0", "left_speech_bubble": "7.0", "eye_in_speech_bubble": "7.0", "speech_balloon": "6.0", "thought_balloon": "6.0", "anger_right": "7.0", "right_anger_bubble": "7.0", "black_joker": "6.0", "flower_playing_cards": "6.0", "mahjong": "5.1", "clock1": "6.0", "clock2": "6.0", "clock3": "6.0", "clock4": "6.0", "clock5": "6.0", "clock6": "6.0", "clock7": "6.0", "clock8": "6.0", "clock9": "6.0", "clock10": "6.0", "clock11": "6.0", "clock12": "6.0", "clock130": "6.0", "clock230": "6.0", "clock330": "6.0", "clock430": "6.0", "clock530": "6.0", "clock630": "6.0", "clock730": "6.0", "clock830": "6.0", "clock930": "6.0", "clock1030": "6.0", "clock1130": "6.0", "clock1230": "6.0", "digit_zero": "1.1", "digit_one": "1.1", "digit_two": "1.1", "digit_three": "1.1", "digit_four": "1.1", "digit_five": "1.1", "digit_six": "1.1", "digit_seven": "1.1", "digit_eight": "1.1", "digit_nine": "1.1", "pound_symbol": "1.1", "asterisk_symbol": "1.1", "soccer": "5.2", "basketball": "6.0", "football": "6.0", "baseball": "5.2", "softball": "11.0", "tennis": "6.0", "volleyball": "8.0", "rugby_football": "6.0", "8ball": "6.0", "ping_pong": "8.0", "table_tennis": "8.0", "badminton": "8.0", "goal": "9.0", "goal_net": "9.0", "hockey": "8.0", "field_hockey": "8.0", "cricket_game": "8.0", "cricket_bat_ball": "8.0", "lacrosse": "11.0", "golf": "5.2", "flying_disc": "11.0", "bow_and_arrow": "8.0", "archery": "8.0", "fishing_pole_and_fish": "6.0", "boxing_glove": "9.0", "boxing_gloves": "9.0", "martial_arts_uniform": "9.0", "karate_uniform": "9.0", "running_shirt_with_sash": "6.0", "skateboard": "11.0", "ice_skate": "5.2", "curling_stone": "10.0", "sled": "10.0", "ski": "6.0", "skier": "5.2", "snowboarder": "6.0", "snowboarder_tone1": "8.0", "snowboarder_light_skin_tone": "8.0", "snowboarder_tone2": "8.0", "snowboarder_medium_light_skin_tone": "8.0", "snowboarder_tone3": "8.0", "snowboarder_medium_skin_tone": "8.0", "snowboarder_tone4": "8.0", "snowboarder_medium_dark_skin_tone": "8.0", "snowboarder_tone5": "8.0", "snowboarder_dark_skin_tone": "8.0", "person_lifting_weights": "7.0", "lifter": "7.0", "weight_lifter": "7.0", "person_lifting_weights_tone1": "8.0", "lifter_tone1": "8.0", "weight_lifter_tone1": "8.0", "person_lifting_weights_tone2": "8.0", "lifter_tone2": "8.0", "weight_lifter_tone2": "8.0", "person_lifting_weights_tone3": "8.0", "lifter_tone3": "8.0", "weight_lifter_tone3": "8.0", "person_lifting_weights_tone4": "8.0", "lifter_tone4": "8.0", "weight_lifter_tone4": "8.0", "person_lifting_weights_tone5": "8.0", "lifter_tone5": "8.0", "weight_lifter_tone5": "8.0", "woman_lifting_weights": "7.0", "woman_lifting_weights_tone1": "8.0", "woman_lifting_weights_light_skin_tone": "8.0", "woman_lifting_weights_tone2": "8.0", "woman_lifting_weights_medium_light_skin_tone": "8.0", "woman_lifting_weights_tone3": "8.0", "woman_lifting_weights_medium_skin_tone": "8.0", "woman_lifting_weights_tone4": "8.0", "woman_lifting_weights_medium_dark_skin_tone": "8.0", "woman_lifting_weights_tone5": "8.0", "woman_lifting_weights_dark_skin_tone": "8.0", "man_lifting_weights": "7.0", "man_lifting_weights_tone1": "8.0", "man_lifting_weights_light_skin_tone": "8.0", "man_lifting_weights_tone2": "8.0", "man_lifting_weights_medium_light_skin_tone": "8.0", "man_lifting_weights_tone3": "8.0", "man_lifting_weights_medium_skin_tone": "8.0", "man_lifting_weights_tone4": "8.0", "man_lifting_weights_medium_dark_skin_tone": "8.0", "man_lifting_weights_tone5": "8.0", "man_lifting_weights_dark_skin_tone": "8.0", "people_wrestling": "9.0", "wrestlers": "9.0", "wrestling": "9.0", "women_wrestling": "9.0", "men_wrestling": "9.0", "person_doing_cartwheel": "9.0", "cartwheel": "9.0", "person_doing_cartwheel_tone1": "9.0", "cartwheel_tone1": "9.0", "person_doing_cartwheel_tone2": "9.0", "cartwheel_tone2": "9.0", "person_doing_cartwheel_tone3": "9.0", "cartwheel_tone3": "9.0", "person_doing_cartwheel_tone4": "9.0", "cartwheel_tone4": "9.0", "person_doing_cartwheel_tone5": "9.0", "cartwheel_tone5": "9.0", "woman_cartwheeling": "9.0", "woman_cartwheeling_tone1": "9.0", "woman_cartwheeling_light_skin_tone": "9.0", "woman_cartwheeling_tone2": "9.0", "woman_cartwheeling_medium_light_skin_tone": "9.0", "woman_cartwheeling_tone3": "9.0", "woman_cartwheeling_medium_skin_tone": "9.0", "woman_cartwheeling_tone4": "9.0", "woman_cartwheeling_medium_dark_skin_tone": "9.0", "woman_cartwheeling_tone5": "9.0", "woman_cartwheeling_dark_skin_tone": "9.0", "man_cartwheeling": "9.0", "man_cartwheeling_tone1": "9.0", "man_cartwheeling_light_skin_tone": "9.0", "man_cartwheeling_tone2": "9.0", "man_cartwheeling_medium_light_skin_tone": "9.0", "man_cartwheeling_tone3": "9.0", "man_cartwheeling_medium_skin_tone": "9.0", "man_cartwheeling_tone4": "9.0", "man_cartwheeling_medium_dark_skin_tone": "9.0", "man_cartwheeling_tone5": "9.0", "man_cartwheeling_dark_skin_tone": "9.0", "person_bouncing_ball": "5.2", "basketball_player": "5.2", "person_with_ball": "5.2", "person_bouncing_ball_tone1": "8.0", "basketball_player_tone1": "8.0", "person_with_ball_tone1": "8.0", "person_bouncing_ball_tone2": "8.0", "basketball_player_tone2": "8.0", "person_with_ball_tone2": "8.0", "person_bouncing_ball_tone3": "8.0", "basketball_player_tone3": "8.0", "person_with_ball_tone3": "8.0", "person_bouncing_ball_tone4": "8.0", "basketball_player_tone4": "8.0", "person_with_ball_tone4": "8.0", "person_bouncing_ball_tone5": "8.0", "basketball_player_tone5": "8.0", "person_with_ball_tone5": "8.0", "woman_bouncing_ball": "5.2", "woman_bouncing_ball_tone1": "8.0", "woman_bouncing_ball_light_skin_tone": "8.0", "woman_bouncing_ball_tone2": "8.0", "woman_bouncing_ball_medium_light_skin_tone": "8.0", "woman_bouncing_ball_tone3": "8.0", "woman_bouncing_ball_medium_skin_tone": "8.0", "woman_bouncing_ball_tone4": "8.0", "woman_bouncing_ball_medium_dark_skin_tone": "8.0", "woman_bouncing_ball_tone5": "8.0", "woman_bouncing_ball_dark_skin_tone": "8.0", "man_bouncing_ball": "5.2", "man_bouncing_ball_tone1": "8.0", "man_bouncing_ball_light_skin_tone": "8.0", "man_bouncing_ball_tone2": "8.0", "man_bouncing_ball_medium_light_skin_tone": "8.0", "man_bouncing_ball_tone3": "8.0", "man_bouncing_ball_medium_skin_tone": "8.0", "man_bouncing_ball_tone4": "8.0", "man_bouncing_ball_medium_dark_skin_tone": "8.0", "man_bouncing_ball_tone5": "8.0", "man_bouncing_ball_dark_skin_tone": "8.0", "person_fencing": "9.0", "fencer": "9.0", "fencing": "9.0", "person_playing_handball": "9.0", "handball": "9.0", "person_playing_handball_tone1": "9.0", "handball_tone1": "9.0", "person_playing_handball_tone2": "9.0", "handball_tone2": "9.0", "person_playing_handball_tone3": "9.0", "handball_tone3": "9.0", "person_playing_handball_tone4": "9.0", "handball_tone4": "9.0", "person_playing_handball_tone5": "9.0", "handball_tone5": "9.0", "woman_playing_handball": "9.0", "woman_playing_handball_tone1": "9.0", "woman_playing_handball_light_skin_tone": "9.0", "woman_playing_handball_tone2": "9.0", "woman_playing_handball_medium_light_skin_tone": "9.0", "woman_playing_handball_tone3": "9.0", "woman_playing_handball_medium_skin_tone": "9.0", "woman_playing_handball_tone4": "9.0", "woman_playing_handball_medium_dark_skin_tone": "9.0", "woman_playing_handball_tone5": "9.0", "woman_playing_handball_dark_skin_tone": "9.0", "man_playing_handball": "9.0", "man_playing_handball_tone1": "9.0", "man_playing_handball_light_skin_tone": "9.0", "man_playing_handball_tone2": "9.0", "man_playing_handball_medium_light_skin_tone": "9.0", "man_playing_handball_tone3": "9.0", "man_playing_handball_medium_skin_tone": "9.0", "man_playing_handball_tone4": "9.0", "man_playing_handball_medium_dark_skin_tone": "9.0", "man_playing_handball_tone5": "9.0", "man_playing_handball_dark_skin_tone": "9.0", "person_golfing": "7.0", "golfer": "7.0", "person_golfing_tone1": "8.0", "person_golfing_light_skin_tone": "8.0", "person_golfing_tone2": "8.0", "person_golfing_medium_light_skin_tone": "8.0", "person_golfing_tone3": "8.0", "person_golfing_medium_skin_tone": "8.0", "person_golfing_tone4": "8.0", "person_golfing_medium_dark_skin_tone": "8.0", "person_golfing_tone5": "8.0", "person_golfing_dark_skin_tone": "8.0", "woman_golfing": "7.0", "woman_golfing_tone1": "8.0", "woman_golfing_light_skin_tone": "8.0", "woman_golfing_tone2": "8.0", "woman_golfing_medium_light_skin_tone": "8.0", "woman_golfing_tone3": "8.0", "woman_golfing_medium_skin_tone": "8.0", "woman_golfing_tone4": "8.0", "woman_golfing_medium_dark_skin_tone": "8.0", "woman_golfing_tone5": "8.0", "woman_golfing_dark_skin_tone": "8.0", "man_golfing": "7.0", "man_golfing_tone1": "8.0", "man_golfing_light_skin_tone": "8.0", "man_golfing_tone2": "8.0", "man_golfing_medium_light_skin_tone": "8.0", "man_golfing_tone3": "8.0", "man_golfing_medium_skin_tone": "8.0", "man_golfing_tone4": "8.0", "man_golfing_medium_dark_skin_tone": "8.0", "man_golfing_tone5": "8.0", "man_golfing_dark_skin_tone": "8.0", "horse_racing": "6.0", "horse_racing_tone1": "8.0", "horse_racing_tone2": "8.0", "horse_racing_tone3": "8.0", "horse_racing_tone4": "8.0", "horse_racing_tone5": "8.0", "person_in_lotus_position": "10.0", "person_in_lotus_position_tone1": "10.0", "person_in_lotus_position_light_skin_tone": "10.0", "person_in_lotus_position_tone2": "10.0", "person_in_lotus_position_medium_light_skin_tone": "10.0", "person_in_lotus_position_tone3": "10.0", "person_in_lotus_position_medium_skin_tone": "10.0", "person_in_lotus_position_tone4": "10.0", "person_in_lotus_position_medium_dark_skin_tone": "10.0", "person_in_lotus_position_tone5": "10.0", "person_in_lotus_position_dark_skin_tone": "10.0", "woman_in_lotus_position": "10.0", "woman_in_lotus_position_tone1": "10.0", "woman_in_lotus_position_light_skin_tone": "10.0", "woman_in_lotus_position_tone2": "10.0", "woman_in_lotus_position_medium_light_skin_tone": "10.0", "woman_in_lotus_position_tone3": "10.0", "woman_in_lotus_position_medium_skin_tone": "10.0", "woman_in_lotus_position_tone4": "10.0", "woman_in_lotus_position_medium_dark_skin_tone": "10.0", "woman_in_lotus_position_tone5": "10.0", "woman_in_lotus_position_dark_skin_tone": "10.0", "man_in_lotus_position": "10.0", "man_in_lotus_position_tone1": "10.0", "man_in_lotus_position_light_skin_tone": "10.0", "man_in_lotus_position_tone2": "10.0", "man_in_lotus_position_medium_light_skin_tone": "10.0", "man_in_lotus_position_tone3": "10.0", "man_in_lotus_position_medium_skin_tone": "10.0", "man_in_lotus_position_tone4": "10.0", "man_in_lotus_position_medium_dark_skin_tone": "10.0", "man_in_lotus_position_tone5": "10.0", "man_in_lotus_position_dark_skin_tone": "10.0", "person_surfing": "6.0", "surfer": "6.0", "person_surfing_tone1": "8.0", "surfer_tone1": "8.0", "person_surfing_tone2": "8.0", "surfer_tone2": "8.0", "person_surfing_tone3": "8.0", "surfer_tone3": "8.0", "person_surfing_tone4": "8.0", "surfer_tone4": "8.0", "person_surfing_tone5": "8.0", "surfer_tone5": "8.0", "woman_surfing": "6.0", "woman_surfing_tone1": "8.0", "woman_surfing_light_skin_tone": "8.0", "woman_surfing_tone2": "8.0", "woman_surfing_medium_light_skin_tone": "8.0", "woman_surfing_tone3": "8.0", "woman_surfing_medium_skin_tone": "8.0", "woman_surfing_tone4": "8.0", "woman_surfing_medium_dark_skin_tone": "8.0", "woman_surfing_tone5": "8.0", "woman_surfing_dark_skin_tone": "8.0", "man_surfing": "6.0", "man_surfing_tone1": "8.0", "man_surfing_light_skin_tone": "8.0", "man_surfing_tone2": "8.0", "man_surfing_medium_light_skin_tone": "8.0", "man_surfing_tone3": "8.0", "man_surfing_medium_skin_tone": "8.0", "man_surfing_tone4": "8.0", "man_surfing_medium_dark_skin_tone": "8.0", "man_surfing_tone5": "8.0", "man_surfing_dark_skin_tone": "8.0", "person_swimming": "6.0", "swimmer": "6.0", "person_swimming_tone1": "8.0", "swimmer_tone1": "8.0", "person_swimming_tone2": "8.0", "swimmer_tone2": "8.0", "person_swimming_tone3": "8.0", "swimmer_tone3": "8.0", "person_swimming_tone4": "8.0", "swimmer_tone4": "8.0", "person_swimming_tone5": "8.0", "swimmer_tone5": "8.0", "woman_swimming": "6.0", "woman_swimming_tone1": "8.0", "woman_swimming_light_skin_tone": "8.0", "woman_swimming_tone2": "8.0", "woman_swimming_medium_light_skin_tone": "8.0", "woman_swimming_tone3": "8.0", "woman_swimming_medium_skin_tone": "8.0", "woman_swimming_tone4": "8.0", "woman_swimming_medium_dark_skin_tone": "8.0", "woman_swimming_tone5": "8.0", "woman_swimming_dark_skin_tone": "8.0", "man_swimming": "6.0", "man_swimming_tone1": "8.0", "man_swimming_light_skin_tone": "8.0", "man_swimming_tone2": "8.0", "man_swimming_medium_light_skin_tone": "8.0", "man_swimming_tone3": "8.0", "man_swimming_medium_skin_tone": "8.0", "man_swimming_tone4": "8.0", "man_swimming_medium_dark_skin_tone": "8.0", "man_swimming_tone5": "8.0", "man_swimming_dark_skin_tone": "8.0", "person_playing_water_polo": "9.0", "water_polo": "9.0", "person_playing_water_polo_tone1": "9.0", "water_polo_tone1": "9.0", "person_playing_water_polo_tone2": "9.0", "water_polo_tone2": "9.0", "person_playing_water_polo_tone3": "9.0", "water_polo_tone3": "9.0", "person_playing_water_polo_tone4": "9.0", "water_polo_tone4": "9.0", "person_playing_water_polo_tone5": "9.0", "water_polo_tone5": "9.0", "woman_playing_water_polo": "9.0", "woman_playing_water_polo_tone1": "9.0", "woman_playing_water_polo_light_skin_tone": "9.0", "woman_playing_water_polo_tone2": "9.0", "woman_playing_water_polo_medium_light_skin_tone": "9.0", "woman_playing_water_polo_tone3": "9.0", "woman_playing_water_polo_medium_skin_tone": "9.0", "woman_playing_water_polo_tone4": "9.0", "woman_playing_water_polo_medium_dark_skin_tone": "9.0", "woman_playing_water_polo_tone5": "9.0", "woman_playing_water_polo_dark_skin_tone": "9.0", "man_playing_water_polo": "9.0", "man_playing_water_polo_tone1": "9.0", "man_playing_water_polo_light_skin_tone": "9.0", "man_playing_water_polo_tone2": "9.0", "man_playing_water_polo_medium_light_skin_tone": "9.0", "man_playing_water_polo_tone3": "9.0", "man_playing_water_polo_medium_skin_tone": "9.0", "man_playing_water_polo_tone4": "9.0", "man_playing_water_polo_medium_dark_skin_tone": "9.0", "man_playing_water_polo_tone5": "9.0", "man_playing_water_polo_dark_skin_tone": "9.0", "person_rowing_boat": "6.0", "rowboat": "6.0", "person_rowing_boat_tone1": "8.0", "rowboat_tone1": "8.0", "person_rowing_boat_tone2": "8.0", "rowboat_tone2": "8.0", "person_rowing_boat_tone3": "8.0", "rowboat_tone3": "8.0", "person_rowing_boat_tone4": "8.0", "rowboat_tone4": "8.0", "person_rowing_boat_tone5": "8.0", "rowboat_tone5": "8.0", "woman_rowing_boat": "6.0", "woman_rowing_boat_tone1": "8.0", "woman_rowing_boat_light_skin_tone": "8.0", "woman_rowing_boat_tone2": "8.0", "woman_rowing_boat_medium_light_skin_tone": "8.0", "woman_rowing_boat_tone3": "8.0", "woman_rowing_boat_medium_skin_tone": "8.0", "woman_rowing_boat_tone4": "8.0", "woman_rowing_boat_medium_dark_skin_tone": "8.0", "woman_rowing_boat_tone5": "8.0", "woman_rowing_boat_dark_skin_tone": "8.0", "man_rowing_boat": "6.0", "man_rowing_boat_tone1": "8.0", "man_rowing_boat_light_skin_tone": "8.0", "man_rowing_boat_tone2": "8.0", "man_rowing_boat_medium_light_skin_tone": "8.0", "man_rowing_boat_tone3": "8.0", "man_rowing_boat_medium_skin_tone": "8.0", "man_rowing_boat_tone4": "8.0", "man_rowing_boat_medium_dark_skin_tone": "8.0", "man_rowing_boat_tone5": "8.0", "man_rowing_boat_dark_skin_tone": "8.0", "person_climbing": "10.0", "person_climbing_tone1": "10.0", "person_climbing_light_skin_tone": "10.0", "person_climbing_tone2": "10.0", "person_climbing_medium_light_skin_tone": "10.0", "person_climbing_tone3": "10.0", "person_climbing_medium_skin_tone": "10.0", "person_climbing_tone4": "10.0", "person_climbing_medium_dark_skin_tone": "10.0", "person_climbing_tone5": "10.0", "person_climbing_dark_skin_tone": "10.0", "woman_climbing": "10.0", "woman_climbing_tone1": "10.0", "woman_climbing_light_skin_tone": "10.0", "woman_climbing_tone2": "10.0", "woman_climbing_medium_light_skin_tone": "10.0", "woman_climbing_tone3": "10.0", "woman_climbing_medium_skin_tone": "10.0", "woman_climbing_tone4": "10.0", "woman_climbing_medium_dark_skin_tone": "10.0", "woman_climbing_tone5": "10.0", "woman_climbing_dark_skin_tone": "10.0", "man_climbing": "10.0", "man_climbing_tone1": "10.0", "man_climbing_light_skin_tone": "10.0", "man_climbing_tone2": "10.0", "man_climbing_medium_light_skin_tone": "10.0", "man_climbing_tone3": "10.0", "man_climbing_medium_skin_tone": "10.0", "man_climbing_tone4": "10.0", "man_climbing_medium_dark_skin_tone": "10.0", "man_climbing_tone5": "10.0", "man_climbing_dark_skin_tone": "10.0", "person_mountain_biking": "6.0", "mountain_bicyclist": "6.0", "person_mountain_biking_tone1": "8.0", "mountain_bicyclist_tone1": "8.0", "person_mountain_biking_tone2": "8.0", "mountain_bicyclist_tone2": "8.0", "person_mountain_biking_tone3": "8.0", "mountain_bicyclist_tone3": "8.0", "person_mountain_biking_tone4": "8.0", "mountain_bicyclist_tone4": "8.0", "person_mountain_biking_tone5": "8.0", "mountain_bicyclist_tone5": "8.0", "woman_mountain_biking": "6.0", "woman_mountain_biking_tone1": "8.0", "woman_mountain_biking_light_skin_tone": "8.0", "woman_mountain_biking_tone2": "8.0", "woman_mountain_biking_medium_light_skin_tone": "8.0", "woman_mountain_biking_tone3": "8.0", "woman_mountain_biking_medium_skin_tone": "8.0", "woman_mountain_biking_tone4": "8.0", "woman_mountain_biking_medium_dark_skin_tone": "8.0", "woman_mountain_biking_tone5": "8.0", "woman_mountain_biking_dark_skin_tone": "8.0", "man_mountain_biking": "6.0", "man_mountain_biking_tone1": "8.0", "man_mountain_biking_light_skin_tone": "8.0", "man_mountain_biking_tone2": "8.0", "man_mountain_biking_medium_light_skin_tone": "8.0", "man_mountain_biking_tone3": "8.0", "man_mountain_biking_medium_skin_tone": "8.0", "man_mountain_biking_tone4": "8.0", "man_mountain_biking_medium_dark_skin_tone": "8.0", "man_mountain_biking_tone5": "8.0", "man_mountain_biking_dark_skin_tone": "8.0", "person_biking": "6.0", "bicyclist": "6.0", "person_biking_tone1": "8.0", "bicyclist_tone1": "8.0", "person_biking_tone2": "8.0", "bicyclist_tone2": "8.0", "person_biking_tone3": "8.0", "bicyclist_tone3": "8.0", "person_biking_tone4": "8.0", "bicyclist_tone4": "8.0", "person_biking_tone5": "8.0", "bicyclist_tone5": "8.0", "woman_biking": "6.0", "woman_biking_tone1": "8.0", "woman_biking_light_skin_tone": "8.0", "woman_biking_tone2": "8.0", "woman_biking_medium_light_skin_tone": "8.0", "woman_biking_tone3": "8.0", "woman_biking_medium_skin_tone": "8.0", "woman_biking_tone4": "8.0", "woman_biking_medium_dark_skin_tone": "8.0", "woman_biking_tone5": "8.0", "woman_biking_dark_skin_tone": "8.0", "man_biking": "6.0", "man_biking_tone1": "8.0", "man_biking_light_skin_tone": "8.0", "man_biking_tone2": "8.0", "man_biking_medium_light_skin_tone": "8.0", "man_biking_tone3": "8.0", "man_biking_medium_skin_tone": "8.0", "man_biking_tone4": "8.0", "man_biking_medium_dark_skin_tone": "8.0", "man_biking_tone5": "8.0", "man_biking_dark_skin_tone": "8.0", "trophy": "6.0", "first_place": "9.0", "first_place_medal": "9.0", "second_place": "9.0", "second_place_medal": "9.0", "third_place": "9.0", "third_place_medal": "9.0", "medal": "7.0", "sports_medal": "7.0", "military_medal": "7.0", "rosette": "7.0", "reminder_ribbon": "7.0", "ticket": "6.0", "tickets": "7.0", "admission_tickets": "7.0", "circus_tent": "6.0", "person_juggling": "9.0", "juggling": "9.0", "juggler": "9.0", "person_juggling_tone1": "9.0", "juggling_tone1": "9.0", "juggler_tone1": "9.0", "person_juggling_tone2": "9.0", "juggling_tone2": "9.0", "juggler_tone2": "9.0", "person_juggling_tone3": "9.0", "juggling_tone3": "9.0", "juggler_tone3": "9.0", "person_juggling_tone4": "9.0", "juggling_tone4": "9.0", "juggler_tone4": "9.0", "person_juggling_tone5": "9.0", "juggling_tone5": "9.0", "juggler_tone5": "9.0", "woman_juggling": "9.0", "woman_juggling_tone1": "9.0", "woman_juggling_light_skin_tone": "9.0", "woman_juggling_tone2": "9.0", "woman_juggling_medium_light_skin_tone": "9.0", "woman_juggling_tone3": "9.0", "woman_juggling_medium_skin_tone": "9.0", "woman_juggling_tone4": "9.0", "woman_juggling_medium_dark_skin_tone": "9.0", "woman_juggling_tone5": "9.0", "woman_juggling_dark_skin_tone": "9.0", "man_juggling": "9.0", "man_juggling_tone1": "9.0", "man_juggling_light_skin_tone": "9.0", "man_juggling_tone2": "9.0", "man_juggling_medium_light_skin_tone": "9.0", "man_juggling_tone3": "9.0", "man_juggling_medium_skin_tone": "9.0", "man_juggling_tone4": "9.0", "man_juggling_medium_dark_skin_tone": "9.0", "man_juggling_tone5": "9.0", "man_juggling_dark_skin_tone": "9.0", "performing_arts": "6.0", "art": "6.0", "clapper": "6.0", "microphone": "6.0", "headphones": "6.0", "musical_score": "6.0", "musical_keyboard": "6.0", "drum": "9.0", "drum_with_drumsticks": "9.0", "saxophone": "6.0", "trumpet": "6.0", "guitar": "6.0", "violin": "6.0", "game_die": "6.0", "dart": "6.0", "bowling": "6.0", "video_game": "6.0", "slot_machine": "6.0", "watch": "1.1", "iphone": "6.0", "calling": "6.0", "computer": "6.0", "desktop": "7.0", "desktop_computer": "7.0", "printer": "7.0", "mouse_three_button": "7.0", "three_button_mouse": "7.0", "trackball": "7.0", "joystick": "7.0", "chess_pawn": "1.1", "jigsaw": "11.0", "compression": "7.0", "minidisc": "6.0", "floppy_disk": "6.0", "cd": "6.0", "dvd": "6.0", "vhs": "6.0", "camera": "6.0", "camera_with_flash": "7.0", "video_camera": "6.0", "movie_camera": "6.0", "projector": "7.0", "film_projector": "7.0", "film_frames": "7.0", "telephone_receiver": "6.0", "telephone": "1.1", "pager": "6.0", "fax": "6.0", "tv": "6.0", "radio": "6.0", "microphone2": "7.0", "studio_microphone": "7.0", "level_slider": "7.0", "control_knobs": "7.0", "stopwatch": "6.0", "timer": "6.0", "timer_clock": "6.0", "alarm_clock": "6.0", "clock": "7.0", "mantlepiece_clock": "7.0", "hourglass": "1.1", "hourglass_flowing_sand": "6.0", "satellite": "6.0", "compass": "11.0", "battery": "6.0", "electric_plug": "6.0", "magnet": "11.0", "bulb": "6.0", "flashlight": "6.0", "candle": "7.0", "fire_extinguisher": "11.0", "wastebasket": "7.0", "oil": "7.0", "oil_drum": "7.0", "money_with_wings": "6.0", "dollar": "6.0", "yen": "6.0", "euro": "6.0", "pound": "6.0", "moneybag": "6.0", "credit_card": "6.0", "gem": "6.0", "nazar_amulet": "11.0", "bricks": "11.0", "toolbox": "11.0", "wrench": "6.0", "hammer": "6.0", "tools": "7.0", "hammer_and_wrench": "7.0", "pick": "5.2", "nut_and_bolt": "6.0", "chains": "5.2", "gun": "6.0", "bomb": "6.0", "knife": "6.0", "dagger": "7.0", "dagger_knife": "7.0", "shield": "7.0", "smoking": "6.0", "coffin": "4.1", "urn": "4.1", "funeral_urn": "4.1", "amphora": "8.0", "crystal_ball": "6.0", "prayer_beads": "8.0", "barber": "6.0", "test_tube": "11.0", "petri_dish": "11.0", "dna": "11.0", "abacus": "11.0", "telescope": "6.0", "microscope": "6.0", "hole": "7.0", "pill": "6.0", "syringe": "6.0", "thermometer": "7.0", "toilet": "6.0", "potable_water": "6.0", "shower": "6.0", "bathtub": "6.0", "bath": "6.0", "bath_tone1": "8.0", "bath_tone2": "8.0", "bath_tone3": "8.0", "bath_tone4": "8.0", "bath_tone5": "8.0", "broom": "11.0", "basket": "11.0", "roll_of_paper": "11.0", "soap": "11.0", "sponge": "11.0", "squeeze_bottle": "11.0", "thread": "11.0", "yarn": "11.0", "bellhop": "7.0", "bellhop_bell": "7.0", "key": "6.0", "key2": "7.0", "old_key": "7.0", "door": "6.0", "couch": "7.0", "couch_and_lamp": "7.0", "bed": "7.0", "sleeping_accommodation": "7.0", "person_in_bed_tone1": "8.0", "person_in_bed_light_skin_tone": "8.0", "person_in_bed_tone2": "8.0", "person_in_bed_medium_light_skin_tone": "8.0", "person_in_bed_tone3": "8.0", "person_in_bed_medium_skin_tone": "8.0", "person_in_bed_tone4": "8.0", "person_in_bed_medium_dark_skin_tone": "8.0", "person_in_bed_tone5": "8.0", "person_in_bed_dark_skin_tone": "8.0", "teddy_bear": "11.0", "frame_photo": "7.0", "frame_with_picture": "7.0", "shopping_bags": "7.0", "shopping_cart": "9.0", "shopping_trolley": "9.0", "gift": "6.0", "balloon": "6.0", "flags": "6.0", "ribbon": "6.0", "confetti_ball": "6.0", "tada": "6.0", "dolls": "6.0", "izakaya_lantern": "6.0", "wind_chime": "6.0", "red_envelope": "11.0", "envelope_with_arrow": "6.0", "incoming_envelope": "6.0", "e-mail": "6.0", "email": "6.0", "love_letter": "6.0", "inbox_tray": "6.0", "outbox_tray": "6.0", "package": "6.0", "label": "7.0", "mailbox_closed": "6.0", "mailbox": "6.0", "mailbox_with_mail": "6.0", "mailbox_with_no_mail": "6.0", "postbox": "6.0", "postal_horn": "6.0", "scroll": "6.0", "page_with_curl": "6.0", "page_facing_up": "6.0", "receipt": "11.0", "bookmark_tabs": "6.0", "bar_chart": "6.0", "chart_with_upwards_trend": "6.0", "chart_with_downwards_trend": "6.0", "notepad_spiral": "7.0", "spiral_note_pad": "7.0", "calendar_spiral": "7.0", "spiral_calendar_pad": "7.0", "calendar": "6.0", "date": "6.0", "card_index": "6.0", "card_box": "7.0", "card_file_box": "7.0", "ballot_box": "7.0", "ballot_box_with_ballot": "7.0", "file_cabinet": "7.0", "clipboard": "6.0", "file_folder": "6.0", "open_file_folder": "6.0", "dividers": "7.0", "card_index_dividers": "7.0", "newspaper2": "7.0", "rolled_up_newspaper": "7.0", "newspaper": "6.0", "notebook": "6.0", "notebook_with_decorative_cover": "6.0", "ledger": "6.0", "closed_book": "6.0", "green_book": "6.0", "blue_book": "6.0", "orange_book": "6.0", "books": "6.0", "book": "6.0", "bookmark": "6.0", "link": "6.0", "paperclip": "6.0", "paperclips": "7.0", "linked_paperclips": "7.0", "triangular_ruler": "6.0", "straight_ruler": "6.0", "safety_pin": "11.0", "pushpin": "6.0", "round_pushpin": "6.0", "pen_ballpoint": "7.0", "lower_left_ballpoint_pen": "7.0", "pen_fountain": "7.0", "lower_left_fountain_pen": "7.0", "paintbrush": "7.0", "lower_left_paintbrush": "7.0", "crayon": "7.0", "lower_left_crayon": "7.0", "pencil": "6.0", "memo": "6.0", "pencil2": "1.1", "mag": "6.0", "mag_right": "6.0", "lock_with_ink_pen": "6.0", "closed_lock_with_key": "6.0", "dog": "6.0", "cat": "6.0", "mouse": "6.0", "hamster": "6.0", "rabbit": "6.0", "fox": "9.0", "fox_face": "9.0", "raccoon": "11.0", "bear": "6.0", "panda_face": "6.0", "kangaroo": "11.0", "badger": "11.0", "koala": "6.0", "tiger": "6.0", "lion_face": "8.0", "lion": "8.0", "cow": "6.0", "pig": "6.0", "pig_nose": "6.0", "frog": "6.0", "monkey_face": "6.0", "see_no_evil": "6.0", "hear_no_evil": "6.0", "speak_no_evil": "6.0", "monkey": "6.0", "chicken": "6.0", "penguin": "6.0", "bird": "6.0", "baby_chick": "6.0", "hatching_chick": "6.0", "hatched_chick": "6.0", "duck": "9.0", "swan": "11.0", "eagle": "9.0", "owl": "9.0", "parrot": "11.0", "peacock": "11.0", "bat": "9.0", "wolf": "6.0", "boar": "6.0", "horse": "6.0", "unicorn": "8.0", "unicorn_face": "8.0", "bee": "6.0", "bug": "6.0", "butterfly": "9.0", "snail": "6.0", "shell": "6.0", "beetle": "6.0", "ant": "6.0", "cricket": "10.0", "spider": "7.0", "spider_web": "7.0", "scorpion": "8.0", "mosquito": "11.0", "microbe": "11.0", "turtle": "6.0", "snake": "6.0", "lizard": "9.0", "t_rex": "10.0", "sauropod": "10.0", "octopus": "6.0", "squid": "9.0", "shrimp": "9.0", "crab": "8.0", "lobster": "11.0", "blowfish": "6.0", "tropical_fish": "6.0", "fish": "6.0", "dolphin": "6.0", "whale": "6.0", "whale2": "6.0", "shark": "9.0", "crocodile": "6.0", "tiger2": "6.0", "leopard": "6.0", "zebra": "10.0", "gorilla": "9.0", "elephant": "6.0", "rhino": "9.0", "rhinoceros": "9.0", "hippopotamus": "11.0", "dromedary_camel": "6.0", "camel": "6.0", "giraffe": "10.0", "llama": "11.0", "water_buffalo": "6.0", "ox": "6.0", "cow2": "6.0", "racehorse": "6.0", "pig2": "6.0", "ram": "6.0", "sheep": "6.0", "goat": "6.0", "deer": "9.0", "dog2": "6.0", "poodle": "6.0", "cat2": "6.0", "rooster": "6.0", "turkey": "8.0", "dove": "7.0", "dove_of_peace": "7.0", "rabbit2": "6.0", "mouse2": "6.0", "rat": "6.0", "chipmunk": "7.0", "hedgehog": "10.0", "feet": "6.0", "paw_prints": "6.0", "dragon": "6.0", "dragon_face": "6.0", "cactus": "6.0", "christmas_tree": "6.0", "evergreen_tree": "6.0", "deciduous_tree": "6.0", "palm_tree": "6.0", "seedling": "6.0", "herb": "6.0", "four_leaf_clover": "6.0", "bamboo": "6.0", "tanabata_tree": "6.0", "leaves": "6.0", "fallen_leaf": "6.0", "maple_leaf": "6.0", "mushroom": "6.0", "ear_of_rice": "6.0", "bouquet": "6.0", "tulip": "6.0", "rose": "6.0", "wilted_rose": "9.0", "wilted_flower": "9.0", "hibiscus": "6.0", "cherry_blossom": "6.0", "blossom": "6.0", "sunflower": "6.0", "sun_with_face": "6.0", "full_moon_with_face": "6.0", "first_quarter_moon_with_face": "6.0", "last_quarter_moon_with_face": "6.0", "new_moon_with_face": "6.0", "full_moon": "6.0", "waning_gibbous_moon": "6.0", "last_quarter_moon": "6.0", "waning_crescent_moon": "6.0", "new_moon": "6.0", "waxing_crescent_moon": "6.0", "first_quarter_moon": "6.0", "waxing_gibbous_moon": "6.0", "crescent_moon": "6.0", "earth_americas": "6.0", "earth_africa": "6.0", "earth_asia": "6.0", "dizzy": "6.0", "star": "5.1", "star2": "6.0", "zap": "4.0", "boom": "6.0", "fire": "6.0", "flame": "6.0", "cloud_tornado": "7.0", "cloud_with_tornado": "7.0", "rainbow": "6.0", "white_sun_small_cloud": "7.0", "white_sun_with_small_cloud": "7.0", "partly_sunny": "5.2", "white_sun_cloud": "7.0", "white_sun_behind_cloud": "7.0", "white_sun_rain_cloud": "7.0", "white_sun_behind_cloud_with_rain": "7.0", "cloud_rain": "7.0", "cloud_with_rain": "7.0", "thunder_cloud_rain": "5.2", "thunder_cloud_and_rain": "5.2", "cloud_lightning": "7.0", "cloud_with_lightning": "7.0", "cloud_snow": "7.0", "cloud_with_snow": "7.0", "snowman": "5.2", "wind_blowing_face": "7.0", "dash": "6.0", "droplet": "6.0", "sweat_drops": "6.0", "ocean": "6.0", "fog": "7.0", "green_apple": "6.0", "apple": "6.0", "pear": "6.0", "tangerine": "6.0", "lemon": "6.0", "banana": "6.0", "watermelon": "6.0", "grapes": "6.0", "strawberry": "6.0", "melon": "6.0", "cherries": "6.0", "peach": "6.0", "mango": "11.0", "pineapple": "6.0", "coconut": "10.0", "kiwi": "9.0", "kiwifruit": "9.0", "tomato": "6.0", "eggplant": "6.0", "avocado": "9.0", "broccoli": "10.0", "leafy_green": "11.0", "cucumber": "9.0", "hot_pepper": "7.0", "corn": "6.0", "carrot": "9.0", "potato": "9.0", "sweet_potato": "6.0", "croissant": "9.0", "bread": "6.0", "french_bread": "9.0", "baguette_bread": "9.0", "pretzel": "10.0", "bagel": "11.0", "cheese": "8.0", "cheese_wedge": "8.0", "egg": "9.0", "cooking": "6.0", "pancakes": "9.0", "bacon": "9.0", "cut_of_meat": "10.0", "poultry_leg": "6.0", "meat_on_bone": "6.0", "hotdog": "8.0", "hot_dog": "8.0", "hamburger": "6.0", "fries": "6.0", "pizza": "6.0", "sandwich": "10.0", "stuffed_flatbread": "9.0", "stuffed_pita": "9.0", "taco": "8.0", "burrito": "8.0", "salad": "9.0", "green_salad": "9.0", "shallow_pan_of_food": "9.0", "paella": "9.0", "canned_food": "10.0", "spaghetti": "6.0", "ramen": "6.0", "stew": "6.0", "curry": "6.0", "sushi": "6.0", "bento": "6.0", "fried_shrimp": "6.0", "rice_ball": "6.0", "rice": "6.0", "rice_cracker": "6.0", "fish_cake": "6.0", "fortune_cookie": "10.0", "oden": "6.0", "dango": "6.0", "shaved_ice": "6.0", "ice_cream": "6.0", "icecream": "6.0", "pie": "10.0", "cake": "6.0", "birthday": "6.0", "moon_cake": "11.0", "cupcake": "11.0", "custard": "6.0", "pudding": "6.0", "flan": "6.0", "lollipop": "6.0", "candy": "6.0", "chocolate_bar": "6.0", "popcorn": "8.0", "salt": "11.0", "doughnut": "6.0", "dumpling": "10.0", "cookie": "6.0", "chestnut": "6.0", "peanuts": "9.0", "shelled_peanut": "9.0", "honey_pot": "6.0", "milk": "9.0", "glass_of_milk": "9.0", "baby_bottle": "6.0", "tea": "6.0", "cup_with_straw": "10.0", "sake": "6.0", "beer": "6.0", "beers": "6.0", "champagne_glass": "9.0", "clinking_glass": "9.0", "wine_glass": "6.0", "tumbler_glass": "9.0", "whisky": "9.0", "cocktail": "6.0", "tropical_drink": "6.0", "champagne": "8.0", "bottle_with_popping_cork": "8.0", "spoon": "9.0", "fork_and_knife": "6.0", "fork_knife_plate": "7.0", "fork_and_knife_with_plate": "7.0", "bowl_with_spoon": "10.0", "takeout_box": "10.0", "chopsticks": "10.0", "grinning": "6.1", "smiley": "6.0", "smile": "6.0", "grin": "6.0", "laughing": "6.0", "satisfied": "6.0", "sweat_smile": "6.0", "joy": "6.0", "rofl": "9.0", "rolling_on_the_floor_laughing": "9.0", "relaxed": "1.1", "blush": "6.0", "innocent": "6.0", "slight_smile": "7.0", "slightly_smiling_face": "7.0", "upside_down": "8.0", "upside_down_face": "8.0", "wink": "6.0", "relieved": "6.0", "heart_eyes": "6.0", "kissing_heart": "6.0", "smiling_face_with_3_hearts": "11.0", "kissing": "6.1", "kissing_smiling_eyes": "6.1", "kissing_closed_eyes": "6.0", "yum": "6.0", "stuck_out_tongue": "6.1", "stuck_out_tongue_closed_eyes": "6.0", "stuck_out_tongue_winking_eye": "6.0", "zany_face": "10.0", "face_with_raised_eyebrow": "10.0", "face_with_monocle": "10.0", "nerd": "8.0", "nerd_face": "8.0", "sunglasses": "6.0", "star_struck": "10.0", "partying_face": "11.0", "smirk": "6.0", "unamused": "6.0", "disappointed": "6.0", "pensive": "6.0", "worried": "6.1", "confused": "6.1", "slight_frown": "7.0", "slightly_frowning_face": "7.0", "persevere": "6.0", "confounded": "6.0", "tired_face": "6.0", "weary": "6.0", "cry": "6.0", "sob": "6.0", "triumph": "6.0", "angry": "6.0", "rage": "6.0", "face_with_symbols_over_mouth": "10.0", "exploding_head": "10.0", "flushed": "6.0", "scream": "6.0", "fearful": "6.0", "cold_sweat": "6.0", "hot_face": "11.0", "cold_face": "11.0", "pleading_face": "11.0", "disappointed_relieved": "6.0", "sweat": "6.0", "hugging": "8.0", "hugging_face": "8.0", "thinking": "8.0", "thinking_face": "8.0", "face_with_hand_over_mouth": "10.0", "shushing_face": "10.0", "lying_face": "9.0", "liar": "9.0", "no_mouth": "6.0", "neutral_face": "6.0", "expressionless": "6.1", "grimacing": "6.1", "rolling_eyes": "8.0", "face_with_rolling_eyes": "8.0", "hushed": "6.1", "frowning": "6.1", "anguished": "6.1", "open_mouth": "6.1", "astonished": "6.0", "sleeping": "6.1", "drooling_face": "9.0", "drool": "9.0", "sleepy": "6.0", "dizzy_face": "6.0", "zipper_mouth": "8.0", "zipper_mouth_face": "8.0", "woozy_face": "11.0", "nauseated_face": "9.0", "sick": "9.0", "face_vomiting": "10.0", "sneezing_face": "9.0", "sneeze": "9.0", "mask": "6.0", "thermometer_face": "8.0", "face_with_thermometer": "8.0", "head_bandage": "8.0", "face_with_head_bandage": "8.0", "money_mouth": "8.0", "money_mouth_face": "8.0", "cowboy": "9.0", "face_with_cowboy_hat": "9.0", "smiling_imp": "6.0", "imp": "6.0", "japanese_ogre": "6.0", "japanese_goblin": "6.0", "clown": "9.0", "clown_face": "9.0", "poop": "6.0", "shit": "6.0", "hankey": "6.0", "poo": "6.0", "ghost": "6.0", "skull": "6.0", "skeleton": "6.0", "alien": "6.0", "space_invader": "6.0", "robot": "8.0", "robot_face": "8.0", "jack_o_lantern": "6.0", "smiley_cat": "6.0", "smile_cat": "6.0", "joy_cat": "6.0", "heart_eyes_cat": "6.0", "smirk_cat": "6.0", "kissing_cat": "6.0", "scream_cat": "6.0", "crying_cat_face": "6.0", "pouting_cat": "6.0", "palms_up_together": "10.0", "palms_up_together_tone1": "10.0", "palms_up_together_light_skin_tone": "10.0", "palms_up_together_tone2": "10.0", "palms_up_together_medium_light_skin_tone": "10.0", "palms_up_together_tone3": "10.0", "palms_up_together_medium_skin_tone": "10.0", "palms_up_together_tone4": "10.0", "palms_up_together_medium_dark_skin_tone": "10.0", "palms_up_together_tone5": "10.0", "palms_up_together_dark_skin_tone": "10.0", "open_hands": "6.0", "open_hands_tone1": "8.0", "open_hands_tone2": "8.0", "open_hands_tone3": "8.0", "open_hands_tone4": "8.0", "open_hands_tone5": "8.0", "raised_hands": "6.0", "raised_hands_tone1": "8.0", "raised_hands_tone2": "8.0", "raised_hands_tone3": "8.0", "raised_hands_tone4": "8.0", "raised_hands_tone5": "8.0", "clap": "6.0", "clap_tone1": "8.0", "clap_tone2": "8.0", "clap_tone3": "8.0", "clap_tone4": "8.0", "clap_tone5": "8.0", "handshake": "9.0", "shaking_hands": "9.0", "thumbsup": "6.0", "+1": "6.0", "thumbup": "6.0", "thumbsup_tone1": "8.0", "+1_tone1": "8.0", "thumbup_tone1": "8.0", "thumbsup_tone2": "8.0", "+1_tone2": "8.0", "thumbup_tone2": "8.0", "thumbsup_tone3": "8.0", "+1_tone3": "8.0", "thumbup_tone3": "8.0", "thumbsup_tone4": "8.0", "+1_tone4": "8.0", "thumbup_tone4": "8.0", "thumbsup_tone5": "8.0", "+1_tone5": "8.0", "thumbup_tone5": "8.0", "thumbsdown": "6.0", "-1": "6.0", "thumbdown": "6.0", "thumbsdown_tone1": "8.0", "-1_tone1": "8.0", "thumbdown_tone1": "8.0", "thumbsdown_tone2": "8.0", "-1_tone2": "8.0", "thumbdown_tone2": "8.0", "thumbsdown_tone3": "8.0", "-1_tone3": "8.0", "thumbdown_tone3": "8.0", "thumbsdown_tone4": "8.0", "-1_tone4": "8.0", "thumbdown_tone4": "8.0", "thumbsdown_tone5": "8.0", "-1_tone5": "8.0", "thumbdown_tone5": "8.0", "punch": "6.0", "punch_tone1": "8.0", "punch_tone2": "8.0", "punch_tone3": "8.0", "punch_tone4": "8.0", "punch_tone5": "8.0", "fist": "6.0", "fist_tone1": "8.0", "fist_tone2": "8.0", "fist_tone3": "8.0", "fist_tone4": "8.0", "fist_tone5": "8.0", "left_facing_fist": "9.0", "left_fist": "9.0", "left_facing_fist_tone1": "9.0", "left_fist_tone1": "9.0", "left_facing_fist_tone2": "9.0", "left_fist_tone2": "9.0", "left_facing_fist_tone3": "9.0", "left_fist_tone3": "9.0", "left_facing_fist_tone4": "9.0", "left_fist_tone4": "9.0", "left_facing_fist_tone5": "9.0", "left_fist_tone5": "9.0", "right_facing_fist": "9.0", "right_fist": "9.0", "right_facing_fist_tone1": "9.0", "right_fist_tone1": "9.0", "right_facing_fist_tone2": "9.0", "right_fist_tone2": "9.0", "right_facing_fist_tone3": "9.0", "right_fist_tone3": "9.0", "right_facing_fist_tone4": "9.0", "right_fist_tone4": "9.0", "right_facing_fist_tone5": "9.0", "right_fist_tone5": "9.0", "fingers_crossed": "9.0", "hand_with_index_and_middle_finger_crossed": "9.0", "fingers_crossed_tone1": "9.0", "hand_with_index_and_middle_fingers_crossed_tone1": "9.0", "fingers_crossed_tone2": "9.0", "hand_with_index_and_middle_fingers_crossed_tone2": "9.0", "fingers_crossed_tone3": "9.0", "hand_with_index_and_middle_fingers_crossed_tone3": "9.0", "fingers_crossed_tone4": "9.0", "hand_with_index_and_middle_fingers_crossed_tone4": "9.0", "fingers_crossed_tone5": "9.0", "hand_with_index_and_middle_fingers_crossed_tone5": "9.0", "v": "1.1", "v_tone1": "8.0", "v_tone2": "8.0", "v_tone3": "8.0", "v_tone4": "8.0", "v_tone5": "8.0", "love_you_gesture": "10.0", "love_you_gesture_tone1": "10.0", "love_you_gesture_light_skin_tone": "10.0", "love_you_gesture_tone2": "10.0", "love_you_gesture_medium_light_skin_tone": "10.0", "love_you_gesture_tone3": "10.0", "love_you_gesture_medium_skin_tone": "10.0", "love_you_gesture_tone4": "10.0", "love_you_gesture_medium_dark_skin_tone": "10.0", "love_you_gesture_tone5": "10.0", "love_you_gesture_dark_skin_tone": "10.0", "metal": "8.0", "sign_of_the_horns": "8.0", "metal_tone1": "8.0", "sign_of_the_horns_tone1": "8.0", "metal_tone2": "8.0", "sign_of_the_horns_tone2": "8.0", "metal_tone3": "8.0", "sign_of_the_horns_tone3": "8.0", "metal_tone4": "8.0", "sign_of_the_horns_tone4": "8.0", "metal_tone5": "8.0", "sign_of_the_horns_tone5": "8.0", "ok_hand": "6.0", "ok_hand_tone1": "8.0", "ok_hand_tone2": "8.0", "ok_hand_tone3": "8.0", "ok_hand_tone4": "8.0", "ok_hand_tone5": "8.0", "point_left": "6.0", "point_left_tone1": "8.0", "point_left_tone2": "8.0", "point_left_tone3": "8.0", "point_left_tone4": "8.0", "point_left_tone5": "8.0", "point_right": "6.0", "point_right_tone1": "8.0", "point_right_tone2": "8.0", "point_right_tone3": "8.0", "point_right_tone4": "8.0", "point_right_tone5": "8.0", "point_up_2": "6.0", "point_up_2_tone1": "8.0", "point_up_2_tone2": "8.0", "point_up_2_tone3": "8.0", "point_up_2_tone4": "8.0", "point_up_2_tone5": "8.0", "point_down": "6.0", "point_down_tone1": "8.0", "point_down_tone2": "8.0", "point_down_tone3": "8.0", "point_down_tone4": "8.0", "point_down_tone5": "8.0", "point_up": "1.1", "point_up_tone1": "8.0", "point_up_tone2": "8.0", "point_up_tone3": "8.0", "point_up_tone4": "8.0", "point_up_tone5": "8.0", "raised_hand": "6.0", "raised_hand_tone1": "8.0", "raised_hand_tone2": "8.0", "raised_hand_tone3": "8.0", "raised_hand_tone4": "8.0", "raised_hand_tone5": "8.0", "raised_back_of_hand": "9.0", "back_of_hand": "9.0", "raised_back_of_hand_tone1": "9.0", "back_of_hand_tone1": "9.0", "raised_back_of_hand_tone2": "9.0", "back_of_hand_tone2": "9.0", "raised_back_of_hand_tone3": "9.0", "back_of_hand_tone3": "9.0", "raised_back_of_hand_tone4": "9.0", "back_of_hand_tone4": "9.0", "raised_back_of_hand_tone5": "9.0", "back_of_hand_tone5": "9.0", "hand_splayed": "7.0", "raised_hand_with_fingers_splayed": "7.0", "hand_splayed_tone1": "8.0", "raised_hand_with_fingers_splayed_tone1": "8.0", "hand_splayed_tone2": "8.0", "raised_hand_with_fingers_splayed_tone2": "8.0", "hand_splayed_tone3": "8.0", "raised_hand_with_fingers_splayed_tone3": "8.0", "hand_splayed_tone4": "8.0", "raised_hand_with_fingers_splayed_tone4": "8.0", "hand_splayed_tone5": "8.0", "raised_hand_with_fingers_splayed_tone5": "8.0", "vulcan": "7.0", "raised_hand_with_part_between_middle_and_ring_fingers": "7.0", "vulcan_tone1": "8.0", "raised_hand_with_part_between_middle_and_ring_fingers_tone1": "8.0", "vulcan_tone2": "8.0", "raised_hand_with_part_between_middle_and_ring_fingers_tone2": "8.0", "vulcan_tone3": "8.0", "raised_hand_with_part_between_middle_and_ring_fingers_tone3": "8.0", "vulcan_tone4": "8.0", "raised_hand_with_part_between_middle_and_ring_fingers_tone4": "8.0", "vulcan_tone5": "8.0", "raised_hand_with_part_between_middle_and_ring_fingers_tone5": "8.0", "wave": "6.0", "wave_tone1": "8.0", "wave_tone2": "8.0", "wave_tone3": "8.0", "wave_tone4": "8.0", "wave_tone5": "8.0", "call_me": "9.0", "call_me_hand": "9.0", "call_me_tone1": "9.0", "call_me_hand_tone1": "9.0", "call_me_tone2": "9.0", "call_me_hand_tone2": "9.0", "call_me_tone3": "9.0", "call_me_hand_tone3": "9.0", "call_me_tone4": "9.0", "call_me_hand_tone4": "9.0", "call_me_tone5": "9.0", "call_me_hand_tone5": "9.0", "muscle": "6.0", "muscle_tone1": "8.0", "muscle_tone2": "8.0", "muscle_tone3": "8.0", "muscle_tone4": "8.0", "muscle_tone5": "8.0", "leg": "11.0", "leg_tone1": "11.0", "leg_light_skin_tone": "11.0", "leg_tone2": "11.0", "leg_medium_light_skin_tone": "11.0", "leg_tone3": "11.0", "leg_medium_skin_tone": "11.0", "leg_tone4": "11.0", "leg_medium_dark_skin_tone": "11.0", "leg_tone5": "11.0", "leg_dark_skin_tone": "11.0", "foot": "11.0", "foot_tone1": "11.0", "foot_light_skin_tone": "11.0", "foot_tone2": "11.0", "foot_medium_light_skin_tone": "11.0", "foot_tone3": "11.0", "foot_medium_skin_tone": "11.0", "foot_tone4": "11.0", "foot_medium_dark_skin_tone": "11.0", "foot_tone5": "11.0", "foot_dark_skin_tone": "11.0", "middle_finger": "7.0", "reversed_hand_with_middle_finger_extended": "7.0", "middle_finger_tone1": "8.0", "reversed_hand_with_middle_finger_extended_tone1": "8.0", "middle_finger_tone2": "8.0", "reversed_hand_with_middle_finger_extended_tone2": "8.0", "middle_finger_tone3": "8.0", "reversed_hand_with_middle_finger_extended_tone3": "8.0", "middle_finger_tone4": "8.0", "reversed_hand_with_middle_finger_extended_tone4": "8.0", "middle_finger_tone5": "8.0", "reversed_hand_with_middle_finger_extended_tone5": "8.0", "writing_hand": "1.1", "writing_hand_tone1": "8.0", "writing_hand_tone2": "8.0", "writing_hand_tone3": "8.0", "writing_hand_tone4": "8.0", "writing_hand_tone5": "8.0", "pray": "6.0", "pray_tone1": "8.0", "pray_tone2": "8.0", "pray_tone3": "8.0", "pray_tone4": "8.0", "pray_tone5": "8.0", "ring": "6.0", "lipstick": "6.0", "kiss": "6.0", "lips": "6.0", "tongue": "6.0", "ear": "6.0", "ear_tone1": "8.0", "ear_tone2": "8.0", "ear_tone3": "8.0", "ear_tone4": "8.0", "ear_tone5": "8.0", "nose": "6.0", "nose_tone1": "8.0", "nose_tone2": "8.0", "nose_tone3": "8.0", "nose_tone4": "8.0", "nose_tone5": "8.0", "footprints": "6.0", "eye": "7.0", "eyes": "6.0", "brain": "10.0", "bone": "11.0", "tooth": "11.0", "speaking_head": "7.0", "speaking_head_in_silhouette": "7.0", "bust_in_silhouette": "6.0", "busts_in_silhouette": "6.0", "baby": "6.0", "baby_tone1": "8.0", "baby_tone2": "8.0", "baby_tone3": "8.0", "baby_tone4": "8.0", "baby_tone5": "8.0", "girl": "6.0", "girl_tone1": "8.0", "girl_tone2": "8.0", "girl_tone3": "8.0", "girl_tone4": "8.0", "girl_tone5": "8.0", "child": "10.0", "child_tone1": "10.0", "child_light_skin_tone": "10.0", "child_tone2": "10.0", "child_medium_light_skin_tone": "10.0", "child_tone3": "10.0", "child_medium_skin_tone": "10.0", "child_tone4": "10.0", "child_medium_dark_skin_tone": "10.0", "child_tone5": "10.0", "child_dark_skin_tone": "10.0", "boy": "6.0", "boy_tone1": "8.0", "boy_tone2": "8.0", "boy_tone3": "8.0", "boy_tone4": "8.0", "boy_tone5": "8.0", "woman": "6.0", "woman_tone1": "8.0", "woman_tone2": "8.0", "woman_tone3": "8.0", "woman_tone4": "8.0", "woman_tone5": "8.0", "adult": "10.0", "adult_tone1": "10.0", "adult_light_skin_tone": "10.0", "adult_tone2": "10.0", "adult_medium_light_skin_tone": "10.0", "adult_tone3": "10.0", "adult_medium_skin_tone": "10.0", "adult_tone4": "10.0", "adult_medium_dark_skin_tone": "10.0", "adult_tone5": "10.0", "adult_dark_skin_tone": "10.0", "man": "6.0", "man_tone1": "8.0", "man_tone2": "8.0", "man_tone3": "8.0", "man_tone4": "8.0", "man_tone5": "8.0", "blond_haired_person": "6.0", "person_with_blond_hair": "6.0", "blond_haired_person_tone1": "8.0", "person_with_blond_hair_tone1": "8.0", "blond_haired_person_tone2": "8.0", "person_with_blond_hair_tone2": "8.0", "blond_haired_person_tone3": "8.0", "person_with_blond_hair_tone3": "8.0", "blond_haired_person_tone4": "8.0", "person_with_blond_hair_tone4": "8.0", "blond_haired_person_tone5": "8.0", "person_with_blond_hair_tone5": "8.0", "blond-haired_woman": "6.0", "blond-haired_woman_tone1": "8.0", "blond-haired_woman_light_skin_tone": "8.0", "blond-haired_woman_tone2": "8.0", "blond-haired_woman_medium_light_skin_tone": "8.0", "blond-haired_woman_tone3": "8.0", "blond-haired_woman_medium_skin_tone": "8.0", "blond-haired_woman_tone4": "8.0", "blond-haired_woman_medium_dark_skin_tone": "8.0", "blond-haired_woman_tone5": "8.0", "blond-haired_woman_dark_skin_tone": "8.0", "blond-haired_man": "6.0", "blond-haired_man_tone1": "8.0", "blond-haired_man_light_skin_tone": "8.0", "blond-haired_man_tone2": "8.0", "blond-haired_man_medium_light_skin_tone": "8.0", "blond-haired_man_tone3": "8.0", "blond-haired_man_medium_skin_tone": "8.0", "blond-haired_man_tone4": "8.0", "blond-haired_man_medium_dark_skin_tone": "8.0", "blond-haired_man_tone5": "8.0", "blond-haired_man_dark_skin_tone": "8.0", "woman_red_haired": "11.0", "woman_red_haired_tone1": "11.0", "woman_red_haired_light_skin_tone": "11.0", "woman_red_haired_tone2": "11.0", "woman_red_haired_medium_light_skin_tone": "11.0", "woman_red_haired_tone3": "11.0", "woman_red_haired_medium_skin_tone": "11.0", "woman_red_haired_tone4": "11.0", "woman_red_haired_medium_dark_skin_tone": "11.0", "woman_red_haired_tone5": "11.0", "woman_red_haired_dark_skin_tone": "11.0", "man_red_haired": "11.0", "man_red_haired_tone1": "11.0", "man_red_haired_light_skin_tone": "11.0", "man_red_haired_tone2": "11.0", "man_red_haired_medium_light_skin_tone": "11.0", "man_red_haired_tone3": "11.0", "man_red_haired_medium_skin_tone": "11.0", "man_red_haired_tone4": "11.0", "man_red_haired_medium_dark_skin_tone": "11.0", "man_red_haired_tone5": "11.0", "man_red_haired_dark_skin_tone": "11.0", "woman_curly_haired": "11.0", "woman_curly_haired_tone1": "11.0", "woman_curly_haired_light_skin_tone": "11.0", "woman_curly_haired_tone2": "11.0", "woman_curly_haired_medium_light_skin_tone": "11.0", "woman_curly_haired_tone3": "11.0", "woman_curly_haired_medium_skin_tone": "11.0", "woman_curly_haired_tone4": "11.0", "woman_curly_haired_medium_dark_skin_tone": "11.0", "woman_curly_haired_tone5": "11.0", "woman_curly_haired_dark_skin_tone": "11.0", "man_curly_haired": "11.0", "man_curly_haired_tone1": "11.0", "man_curly_haired_light_skin_tone": "11.0", "man_curly_haired_tone2": "11.0", "man_curly_haired_medium_light_skin_tone": "11.0", "man_curly_haired_tone3": "11.0", "man_curly_haired_medium_skin_tone": "11.0", "man_curly_haired_tone4": "11.0", "man_curly_haired_medium_dark_skin_tone": "11.0", "man_curly_haired_tone5": "11.0", "man_curly_haired_dark_skin_tone": "11.0", "woman_white_haired": "11.0", "woman_white_haired_tone1": "11.0", "woman_white_haired_light_skin_tone": "11.0", "woman_white_haired_tone2": "11.0", "woman_white_haired_medium_light_skin_tone": "11.0", "woman_white_haired_tone3": "11.0", "woman_white_haired_medium_skin_tone": "11.0", "woman_white_haired_tone4": "11.0", "woman_white_haired_medium_dark_skin_tone": "11.0", "woman_white_haired_tone5": "11.0", "woman_white_haired_dark_skin_tone": "11.0", "man_white_haired": "11.0", "man_white_haired_tone1": "11.0", "man_white_haired_light_skin_tone": "11.0", "man_white_haired_tone2": "11.0", "man_white_haired_medium_light_skin_tone": "11.0", "man_white_haired_tone3": "11.0", "man_white_haired_medium_skin_tone": "11.0", "man_white_haired_tone4": "11.0", "man_white_haired_medium_dark_skin_tone": "11.0", "man_white_haired_tone5": "11.0", "man_white_haired_dark_skin_tone": "11.0", "woman_bald": "11.0", "woman_bald_tone1": "11.0", "woman_bald_light_skin_tone": "11.0", "woman_bald_tone2": "11.0", "woman_bald_medium_light_skin_tone": "11.0", "woman_bald_tone3": "11.0", "woman_bald_medium_skin_tone": "11.0", "woman_bald_tone4": "11.0", "woman_bald_medium_dark_skin_tone": "11.0", "woman_bald_tone5": "11.0", "woman_bald_dark_skin_tone": "11.0", "man_bald": "11.0", "man_bald_tone1": "11.0", "man_bald_light_skin_tone": "11.0", "man_bald_tone2": "11.0", "man_bald_medium_light_skin_tone": "11.0", "man_bald_tone3": "11.0", "man_bald_medium_skin_tone": "11.0", "man_bald_tone4": "11.0", "man_bald_medium_dark_skin_tone": "11.0", "man_bald_tone5": "11.0", "man_bald_dark_skin_tone": "11.0", "bearded_person": "10.0", "bearded_person_tone1": "10.0", "bearded_person_light_skin_tone": "10.0", "bearded_person_tone2": "10.0", "bearded_person_medium_light_skin_tone": "10.0", "bearded_person_tone3": "10.0", "bearded_person_medium_skin_tone": "10.0", "bearded_person_tone4": "10.0", "bearded_person_medium_dark_skin_tone": "10.0", "bearded_person_tone5": "10.0", "bearded_person_dark_skin_tone": "10.0", "older_woman": "6.0", "grandma": "6.0", "older_woman_tone1": "8.0", "grandma_tone1": "8.0", "older_woman_tone2": "8.0", "grandma_tone2": "8.0", "older_woman_tone3": "8.0", "grandma_tone3": "8.0", "older_woman_tone4": "8.0", "grandma_tone4": "8.0", "older_woman_tone5": "8.0", "grandma_tone5": "8.0", "older_adult": "10.0", "older_adult_tone1": "10.0", "older_adult_light_skin_tone": "10.0", "older_adult_tone2": "10.0", "older_adult_medium_light_skin_tone": "10.0", "older_adult_tone3": "10.0", "older_adult_medium_skin_tone": "10.0", "older_adult_tone4": "10.0", "older_adult_medium_dark_skin_tone": "10.0", "older_adult_tone5": "10.0", "older_adult_dark_skin_tone": "10.0", "older_man": "6.0", "older_man_tone1": "8.0", "older_man_tone2": "8.0", "older_man_tone3": "8.0", "older_man_tone4": "8.0", "older_man_tone5": "8.0", "man_with_chinese_cap": "6.0", "man_with_gua_pi_mao": "6.0", "man_with_chinese_cap_tone1": "8.0", "man_with_gua_pi_mao_tone1": "8.0", "man_with_chinese_cap_tone2": "8.0", "man_with_gua_pi_mao_tone2": "8.0", "man_with_chinese_cap_tone3": "8.0", "man_with_gua_pi_mao_tone3": "8.0", "man_with_chinese_cap_tone4": "8.0", "man_with_gua_pi_mao_tone4": "8.0", "man_with_chinese_cap_tone5": "8.0", "man_with_gua_pi_mao_tone5": "8.0", "person_wearing_turban": "6.0", "man_with_turban": "6.0", "person_wearing_turban_tone1": "8.0", "man_with_turban_tone1": "8.0", "person_wearing_turban_tone2": "8.0", "man_with_turban_tone2": "8.0", "person_wearing_turban_tone3": "8.0", "man_with_turban_tone3": "8.0", "person_wearing_turban_tone4": "8.0", "man_with_turban_tone4": "8.0", "person_wearing_turban_tone5": "8.0", "man_with_turban_tone5": "8.0", "woman_wearing_turban": "6.0", "woman_wearing_turban_tone1": "8.0", "woman_wearing_turban_light_skin_tone": "8.0", "woman_wearing_turban_tone2": "8.0", "woman_wearing_turban_medium_light_skin_tone": "8.0", "woman_wearing_turban_tone3": "8.0", "woman_wearing_turban_medium_skin_tone": "8.0", "woman_wearing_turban_tone4": "8.0", "woman_wearing_turban_medium_dark_skin_tone": "8.0", "woman_wearing_turban_tone5": "8.0", "woman_wearing_turban_dark_skin_tone": "8.0", "man_wearing_turban": "6.0", "man_wearing_turban_tone1": "8.0", "man_wearing_turban_light_skin_tone": "8.0", "man_wearing_turban_tone2": "8.0", "man_wearing_turban_medium_light_skin_tone": "8.0", "man_wearing_turban_tone3": "8.0", "man_wearing_turban_medium_skin_tone": "8.0", "man_wearing_turban_tone4": "8.0", "man_wearing_turban_medium_dark_skin_tone": "8.0", "man_wearing_turban_tone5": "8.0", "man_wearing_turban_dark_skin_tone": "8.0", "woman_with_headscarf": "10.0", "woman_with_headscarf_tone1": "10.0", "woman_with_headscarf_light_skin_tone": "10.0", "woman_with_headscarf_tone2": "10.0", "woman_with_headscarf_medium_light_skin_tone": "10.0", "woman_with_headscarf_tone3": "10.0", "woman_with_headscarf_medium_skin_tone": "10.0", "woman_with_headscarf_tone4": "10.0", "woman_with_headscarf_medium_dark_skin_tone": "10.0", "woman_with_headscarf_tone5": "10.0", "woman_with_headscarf_dark_skin_tone": "10.0", "police_officer": "6.0", "cop": "6.0", "police_officer_tone1": "8.0", "cop_tone1": "8.0", "police_officer_tone2": "8.0", "cop_tone2": "8.0", "police_officer_tone3": "8.0", "cop_tone3": "8.0", "police_officer_tone4": "8.0", "cop_tone4": "8.0", "police_officer_tone5": "8.0", "cop_tone5": "8.0", "woman_police_officer": "6.0", "woman_police_officer_tone1": "8.0", "woman_police_officer_light_skin_tone": "8.0", "woman_police_officer_tone2": "8.0", "woman_police_officer_medium_light_skin_tone": "8.0", "woman_police_officer_tone3": "8.0", "woman_police_officer_medium_skin_tone": "8.0", "woman_police_officer_tone4": "8.0", "woman_police_officer_medium_dark_skin_tone": "8.0", "woman_police_officer_tone5": "8.0", "woman_police_officer_dark_skin_tone": "8.0", "man_police_officer": "6.0", "man_police_officer_tone1": "8.0", "man_police_officer_light_skin_tone": "8.0", "man_police_officer_tone2": "8.0", "man_police_officer_medium_light_skin_tone": "8.0", "man_police_officer_tone3": "8.0", "man_police_officer_medium_skin_tone": "8.0", "man_police_officer_tone4": "8.0", "man_police_officer_medium_dark_skin_tone": "8.0", "man_police_officer_tone5": "8.0", "man_police_officer_dark_skin_tone": "8.0", "construction_worker": "6.0", "construction_worker_tone1": "8.0", "construction_worker_tone2": "8.0", "construction_worker_tone3": "8.0", "construction_worker_tone4": "8.0", "construction_worker_tone5": "8.0", "woman_construction_worker": "6.0", "woman_construction_worker_tone1": "8.0", "woman_construction_worker_light_skin_tone": "8.0", "woman_construction_worker_tone2": "8.0", "woman_construction_worker_medium_light_skin_tone": "8.0", "woman_construction_worker_tone3": "8.0", "woman_construction_worker_medium_skin_tone": "8.0", "woman_construction_worker_tone4": "8.0", "woman_construction_worker_medium_dark_skin_tone": "8.0", "woman_construction_worker_tone5": "8.0", "woman_construction_worker_dark_skin_tone": "8.0", "man_construction_worker": "6.0", "man_construction_worker_tone1": "8.0", "man_construction_worker_light_skin_tone": "8.0", "man_construction_worker_tone2": "8.0", "man_construction_worker_medium_light_skin_tone": "8.0", "man_construction_worker_tone3": "8.0", "man_construction_worker_medium_skin_tone": "8.0", "man_construction_worker_tone4": "8.0", "man_construction_worker_medium_dark_skin_tone": "8.0", "man_construction_worker_tone5": "8.0", "man_construction_worker_dark_skin_tone": "8.0", "guard": "6.0", "guardsman": "6.0", "guard_tone1": "8.0", "guardsman_tone1": "8.0", "guard_tone2": "8.0", "guardsman_tone2": "8.0", "guard_tone3": "8.0", "guardsman_tone3": "8.0", "guard_tone4": "8.0", "guardsman_tone4": "8.0", "guard_tone5": "8.0", "guardsman_tone5": "8.0", "woman_guard": "6.0", "woman_guard_tone1": "8.0", "woman_guard_light_skin_tone": "8.0", "woman_guard_tone2": "8.0", "woman_guard_medium_light_skin_tone": "8.0", "woman_guard_tone3": "8.0", "woman_guard_medium_skin_tone": "8.0", "woman_guard_tone4": "8.0", "woman_guard_medium_dark_skin_tone": "8.0", "woman_guard_tone5": "8.0", "woman_guard_dark_skin_tone": "8.0", "man_guard": "6.0", "man_guard_tone1": "8.0", "man_guard_light_skin_tone": "8.0", "man_guard_tone2": "8.0", "man_guard_medium_light_skin_tone": "8.0", "man_guard_tone3": "8.0", "man_guard_medium_skin_tone": "8.0", "man_guard_tone4": "8.0", "man_guard_medium_dark_skin_tone": "8.0", "man_guard_tone5": "8.0", "man_guard_dark_skin_tone": "8.0", "detective": "7.0", "spy": "7.0", "sleuth_or_spy": "7.0", "detective_tone1": "8.0", "spy_tone1": "8.0", "sleuth_or_spy_tone1": "8.0", "detective_tone2": "8.0", "spy_tone2": "8.0", "sleuth_or_spy_tone2": "8.0", "detective_tone3": "8.0", "spy_tone3": "8.0", "sleuth_or_spy_tone3": "8.0", "detective_tone4": "8.0", "spy_tone4": "8.0", "sleuth_or_spy_tone4": "8.0", "detective_tone5": "8.0", "spy_tone5": "8.0", "sleuth_or_spy_tone5": "8.0", "woman_detective": "7.0", "woman_detective_tone1": "8.0", "woman_detective_light_skin_tone": "8.0", "woman_detective_tone2": "8.0", "woman_detective_medium_light_skin_tone": "8.0", "woman_detective_tone3": "8.0", "woman_detective_medium_skin_tone": "8.0", "woman_detective_tone4": "8.0", "woman_detective_medium_dark_skin_tone": "8.0", "woman_detective_tone5": "8.0", "woman_detective_dark_skin_tone": "8.0", "man_detective": "7.0", "man_detective_tone1": "8.0", "man_detective_light_skin_tone": "8.0", "man_detective_tone2": "8.0", "man_detective_medium_light_skin_tone": "8.0", "man_detective_tone3": "8.0", "man_detective_medium_skin_tone": "8.0", "man_detective_tone4": "8.0", "man_detective_medium_dark_skin_tone": "8.0", "man_detective_tone5": "8.0", "man_detective_dark_skin_tone": "8.0", "woman_health_worker": "6.0", "woman_health_worker_tone1": "8.0", "woman_health_worker_light_skin_tone": "8.0", "woman_health_worker_tone2": "8.0", "woman_health_worker_medium_light_skin_tone": "8.0", "woman_health_worker_tone3": "8.0", "woman_health_worker_medium_skin_tone": "8.0", "woman_health_worker_tone4": "8.0", "woman_health_worker_medium_dark_skin_tone": "8.0", "woman_health_worker_tone5": "8.0", "woman_health_worker_dark_skin_tone": "8.0", "man_health_worker": "6.0", "man_health_worker_tone1": "8.0", "man_health_worker_light_skin_tone": "8.0", "man_health_worker_tone2": "8.0", "man_health_worker_medium_light_skin_tone": "8.0", "man_health_worker_tone3": "8.0", "man_health_worker_medium_skin_tone": "8.0", "man_health_worker_tone4": "8.0", "man_health_worker_medium_dark_skin_tone": "8.0", "man_health_worker_tone5": "8.0", "man_health_worker_dark_skin_tone": "8.0", "woman_farmer": "6.0", "woman_farmer_tone1": "8.0", "woman_farmer_light_skin_tone": "8.0", "woman_farmer_tone2": "8.0", "woman_farmer_medium_light_skin_tone": "8.0", "woman_farmer_tone3": "8.0", "woman_farmer_medium_skin_tone": "8.0", "woman_farmer_tone4": "8.0", "woman_farmer_medium_dark_skin_tone": "8.0", "woman_farmer_tone5": "8.0", "woman_farmer_dark_skin_tone": "8.0", "man_farmer": "6.0", "man_farmer_tone1": "8.0", "man_farmer_light_skin_tone": "8.0", "man_farmer_tone2": "8.0", "man_farmer_medium_light_skin_tone": "8.0", "man_farmer_tone3": "8.0", "man_farmer_medium_skin_tone": "8.0", "man_farmer_tone4": "8.0", "man_farmer_medium_dark_skin_tone": "8.0", "man_farmer_tone5": "8.0", "man_farmer_dark_skin_tone": "8.0", "woman_cook": "6.0", "woman_cook_tone1": "8.0", "woman_cook_light_skin_tone": "8.0", "woman_cook_tone2": "8.0", "woman_cook_medium_light_skin_tone": "8.0", "woman_cook_tone3": "8.0", "woman_cook_medium_skin_tone": "8.0", "woman_cook_tone4": "8.0", "woman_cook_medium_dark_skin_tone": "8.0", "woman_cook_tone5": "8.0", "woman_cook_dark_skin_tone": "8.0", "man_cook": "6.0", "man_cook_tone1": "8.0", "man_cook_light_skin_tone": "8.0", "man_cook_tone2": "8.0", "man_cook_medium_light_skin_tone": "8.0", "man_cook_tone3": "8.0", "man_cook_medium_skin_tone": "8.0", "man_cook_tone4": "8.0", "man_cook_medium_dark_skin_tone": "8.0", "man_cook_tone5": "8.0", "man_cook_dark_skin_tone": "8.0", "woman_student": "6.0", "woman_student_tone1": "8.0", "woman_student_light_skin_tone": "8.0", "woman_student_tone2": "8.0", "woman_student_medium_light_skin_tone": "8.0", "woman_student_tone3": "8.0", "woman_student_medium_skin_tone": "8.0", "woman_student_tone4": "8.0", "woman_student_medium_dark_skin_tone": "8.0", "woman_student_tone5": "8.0", "woman_student_dark_skin_tone": "8.0", "man_student": "6.0", "man_student_tone1": "8.0", "man_student_light_skin_tone": "8.0", "man_student_tone2": "8.0", "man_student_medium_light_skin_tone": "8.0", "man_student_tone3": "8.0", "man_student_medium_skin_tone": "8.0", "man_student_tone4": "8.0", "man_student_medium_dark_skin_tone": "8.0", "man_student_tone5": "8.0", "man_student_dark_skin_tone": "8.0", "woman_singer": "6.0", "woman_singer_tone1": "8.0", "woman_singer_light_skin_tone": "8.0", "woman_singer_tone2": "8.0", "woman_singer_medium_light_skin_tone": "8.0", "woman_singer_tone3": "8.0", "woman_singer_medium_skin_tone": "8.0", "woman_singer_tone4": "8.0", "woman_singer_medium_dark_skin_tone": "8.0", "woman_singer_tone5": "8.0", "woman_singer_dark_skin_tone": "8.0", "man_singer": "6.0", "man_singer_tone1": "8.0", "man_singer_light_skin_tone": "8.0", "man_singer_tone2": "8.0", "man_singer_medium_light_skin_tone": "8.0", "man_singer_tone3": "8.0", "man_singer_medium_skin_tone": "8.0", "man_singer_tone4": "8.0", "man_singer_medium_dark_skin_tone": "8.0", "man_singer_tone5": "8.0", "man_singer_dark_skin_tone": "8.0", "woman_teacher": "6.0", "woman_teacher_tone1": "8.0", "woman_teacher_light_skin_tone": "8.0", "woman_teacher_tone2": "8.0", "woman_teacher_medium_light_skin_tone": "8.0", "woman_teacher_tone3": "8.0", "woman_teacher_medium_skin_tone": "8.0", "woman_teacher_tone4": "8.0", "woman_teacher_medium_dark_skin_tone": "8.0", "woman_teacher_tone5": "8.0", "woman_teacher_dark_skin_tone": "8.0", "man_teacher": "6.0", "man_teacher_tone1": "8.0", "man_teacher_light_skin_tone": "8.0", "man_teacher_tone2": "8.0", "man_teacher_medium_light_skin_tone": "8.0", "man_teacher_tone3": "8.0", "man_teacher_medium_skin_tone": "8.0", "man_teacher_tone4": "8.0", "man_teacher_medium_dark_skin_tone": "8.0", "man_teacher_tone5": "8.0", "man_teacher_dark_skin_tone": "8.0", "woman_factory_worker": "6.0", "woman_factory_worker_tone1": "8.0", "woman_factory_worker_light_skin_tone": "8.0", "woman_factory_worker_tone2": "8.0", "woman_factory_worker_medium_light_skin_tone": "8.0", "woman_factory_worker_tone3": "8.0", "woman_factory_worker_medium_skin_tone": "8.0", "woman_factory_worker_tone4": "8.0", "woman_factory_worker_medium_dark_skin_tone": "8.0", "woman_factory_worker_tone5": "8.0", "woman_factory_worker_dark_skin_tone": "8.0", "man_factory_worker": "6.0", "man_factory_worker_tone1": "8.0", "man_factory_worker_light_skin_tone": "8.0", "man_factory_worker_tone2": "8.0", "man_factory_worker_medium_light_skin_tone": "8.0", "man_factory_worker_tone3": "8.0", "man_factory_worker_medium_skin_tone": "8.0", "man_factory_worker_tone4": "8.0", "man_factory_worker_medium_dark_skin_tone": "8.0", "man_factory_worker_tone5": "8.0", "man_factory_worker_dark_skin_tone": "8.0", "woman_technologist": "6.0", "woman_technologist_tone1": "8.0", "woman_technologist_light_skin_tone": "8.0", "woman_technologist_tone2": "8.0", "woman_technologist_medium_light_skin_tone": "8.0", "woman_technologist_tone3": "8.0", "woman_technologist_medium_skin_tone": "8.0", "woman_technologist_tone4": "8.0", "woman_technologist_medium_dark_skin_tone": "8.0", "woman_technologist_tone5": "8.0", "woman_technologist_dark_skin_tone": "8.0", "man_technologist": "6.0", "man_technologist_tone1": "8.0", "man_technologist_light_skin_tone": "8.0", "man_technologist_tone2": "8.0", "man_technologist_medium_light_skin_tone": "8.0", "man_technologist_tone3": "8.0", "man_technologist_medium_skin_tone": "8.0", "man_technologist_tone4": "8.0", "man_technologist_medium_dark_skin_tone": "8.0", "man_technologist_tone5": "8.0", "man_technologist_dark_skin_tone": "8.0", "woman_office_worker": "6.0", "woman_office_worker_tone1": "8.0", "woman_office_worker_light_skin_tone": "8.0", "woman_office_worker_tone2": "8.0", "woman_office_worker_medium_light_skin_tone": "8.0", "woman_office_worker_tone3": "8.0", "woman_office_worker_medium_skin_tone": "8.0", "woman_office_worker_tone4": "8.0", "woman_office_worker_medium_dark_skin_tone": "8.0", "woman_office_worker_tone5": "8.0", "woman_office_worker_dark_skin_tone": "8.0", "man_office_worker": "6.0", "man_office_worker_tone1": "8.0", "man_office_worker_light_skin_tone": "8.0", "man_office_worker_tone2": "8.0", "man_office_worker_medium_light_skin_tone": "8.0", "man_office_worker_tone3": "8.0", "man_office_worker_medium_skin_tone": "8.0", "man_office_worker_tone4": "8.0", "man_office_worker_medium_dark_skin_tone": "8.0", "man_office_worker_tone5": "8.0", "man_office_worker_dark_skin_tone": "8.0", "woman_mechanic": "6.0", "woman_mechanic_tone1": "8.0", "woman_mechanic_light_skin_tone": "8.0", "woman_mechanic_tone2": "8.0", "woman_mechanic_medium_light_skin_tone": "8.0", "woman_mechanic_tone3": "8.0", "woman_mechanic_medium_skin_tone": "8.0", "woman_mechanic_tone4": "8.0", "woman_mechanic_medium_dark_skin_tone": "8.0", "woman_mechanic_tone5": "8.0", "woman_mechanic_dark_skin_tone": "8.0", "man_mechanic": "6.0", "man_mechanic_tone1": "8.0", "man_mechanic_light_skin_tone": "8.0", "man_mechanic_tone2": "8.0", "man_mechanic_medium_light_skin_tone": "8.0", "man_mechanic_tone3": "8.0", "man_mechanic_medium_skin_tone": "8.0", "man_mechanic_tone4": "8.0", "man_mechanic_medium_dark_skin_tone": "8.0", "man_mechanic_tone5": "8.0", "man_mechanic_dark_skin_tone": "8.0", "woman_scientist": "6.0", "woman_scientist_tone1": "8.0", "woman_scientist_light_skin_tone": "8.0", "woman_scientist_tone2": "8.0", "woman_scientist_medium_light_skin_tone": "8.0", "woman_scientist_tone3": "8.0", "woman_scientist_medium_skin_tone": "8.0", "woman_scientist_tone4": "8.0", "woman_scientist_medium_dark_skin_tone": "8.0", "woman_scientist_tone5": "8.0", "woman_scientist_dark_skin_tone": "8.0", "man_scientist": "6.0", "man_scientist_tone1": "8.0", "man_scientist_light_skin_tone": "8.0", "man_scientist_tone2": "8.0", "man_scientist_medium_light_skin_tone": "8.0", "man_scientist_tone3": "8.0", "man_scientist_medium_skin_tone": "8.0", "man_scientist_tone4": "8.0", "man_scientist_medium_dark_skin_tone": "8.0", "man_scientist_tone5": "8.0", "man_scientist_dark_skin_tone": "8.0", "woman_artist": "6.0", "woman_artist_tone1": "8.0", "woman_artist_light_skin_tone": "8.0", "woman_artist_tone2": "8.0", "woman_artist_medium_light_skin_tone": "8.0", "woman_artist_tone3": "8.0", "woman_artist_medium_skin_tone": "8.0", "woman_artist_tone4": "8.0", "woman_artist_medium_dark_skin_tone": "8.0", "woman_artist_tone5": "8.0", "woman_artist_dark_skin_tone": "8.0", "man_artist": "6.0", "man_artist_tone1": "8.0", "man_artist_light_skin_tone": "8.0", "man_artist_tone2": "8.0", "man_artist_medium_light_skin_tone": "8.0", "man_artist_tone3": "8.0", "man_artist_medium_skin_tone": "8.0", "man_artist_tone4": "8.0", "man_artist_medium_dark_skin_tone": "8.0", "man_artist_tone5": "8.0", "man_artist_dark_skin_tone": "8.0", "woman_firefighter": "6.0", "woman_firefighter_tone1": "8.0", "woman_firefighter_light_skin_tone": "8.0", "woman_firefighter_tone2": "8.0", "woman_firefighter_medium_light_skin_tone": "8.0", "woman_firefighter_tone3": "8.0", "woman_firefighter_medium_skin_tone": "8.0", "woman_firefighter_tone4": "8.0", "woman_firefighter_medium_dark_skin_tone": "8.0", "woman_firefighter_tone5": "8.0", "woman_firefighter_dark_skin_tone": "8.0", "man_firefighter": "6.0", "man_firefighter_tone1": "8.0", "man_firefighter_light_skin_tone": "8.0", "man_firefighter_tone2": "8.0", "man_firefighter_medium_light_skin_tone": "8.0", "man_firefighter_tone3": "8.0", "man_firefighter_medium_skin_tone": "8.0", "man_firefighter_tone4": "8.0", "man_firefighter_medium_dark_skin_tone": "8.0", "man_firefighter_tone5": "8.0", "man_firefighter_dark_skin_tone": "8.0", "woman_pilot": "6.0", "woman_pilot_tone1": "8.0", "woman_pilot_light_skin_tone": "8.0", "woman_pilot_tone2": "8.0", "woman_pilot_medium_light_skin_tone": "8.0", "woman_pilot_tone3": "8.0", "woman_pilot_medium_skin_tone": "8.0", "woman_pilot_tone4": "8.0", "woman_pilot_medium_dark_skin_tone": "8.0", "woman_pilot_tone5": "8.0", "woman_pilot_dark_skin_tone": "8.0", "man_pilot": "6.0", "man_pilot_tone1": "8.0", "man_pilot_light_skin_tone": "8.0", "man_pilot_tone2": "8.0", "man_pilot_medium_light_skin_tone": "8.0", "man_pilot_tone3": "8.0", "man_pilot_medium_skin_tone": "8.0", "man_pilot_tone4": "8.0", "man_pilot_medium_dark_skin_tone": "8.0", "man_pilot_tone5": "8.0", "man_pilot_dark_skin_tone": "8.0", "woman_astronaut": "6.0", "woman_astronaut_tone1": "8.0", "woman_astronaut_light_skin_tone": "8.0", "woman_astronaut_tone2": "8.0", "woman_astronaut_medium_light_skin_tone": "8.0", "woman_astronaut_tone3": "8.0", "woman_astronaut_medium_skin_tone": "8.0", "woman_astronaut_tone4": "8.0", "woman_astronaut_medium_dark_skin_tone": "8.0", "woman_astronaut_tone5": "8.0", "woman_astronaut_dark_skin_tone": "8.0", "man_astronaut": "6.0", "man_astronaut_tone1": "8.0", "man_astronaut_light_skin_tone": "8.0", "man_astronaut_tone2": "8.0", "man_astronaut_medium_light_skin_tone": "8.0", "man_astronaut_tone3": "8.0", "man_astronaut_medium_skin_tone": "8.0", "man_astronaut_tone4": "8.0", "man_astronaut_medium_dark_skin_tone": "8.0", "man_astronaut_tone5": "8.0", "man_astronaut_dark_skin_tone": "8.0", "woman_judge": "6.0", "woman_judge_tone1": "8.0", "woman_judge_light_skin_tone": "8.0", "woman_judge_tone2": "8.0", "woman_judge_medium_light_skin_tone": "8.0", "woman_judge_tone3": "8.0", "woman_judge_medium_skin_tone": "8.0", "woman_judge_tone4": "8.0", "woman_judge_medium_dark_skin_tone": "8.0", "woman_judge_tone5": "8.0", "woman_judge_dark_skin_tone": "8.0", "man_judge": "6.0", "man_judge_tone1": "8.0", "man_judge_light_skin_tone": "8.0", "man_judge_tone2": "8.0", "man_judge_medium_light_skin_tone": "8.0", "man_judge_tone3": "8.0", "man_judge_medium_skin_tone": "8.0", "man_judge_tone4": "8.0", "man_judge_medium_dark_skin_tone": "8.0", "man_judge_tone5": "8.0", "man_judge_dark_skin_tone": "8.0", "bride_with_veil": "6.0", "bride_with_veil_tone1": "8.0", "bride_with_veil_tone2": "8.0", "bride_with_veil_tone3": "8.0", "bride_with_veil_tone4": "8.0", "bride_with_veil_tone5": "8.0", "man_in_tuxedo": "9.0", "man_in_tuxedo_tone1": "9.0", "tuxedo_tone1": "9.0", "man_in_tuxedo_tone2": "9.0", "tuxedo_tone2": "9.0", "man_in_tuxedo_tone3": "9.0", "tuxedo_tone3": "9.0", "man_in_tuxedo_tone4": "9.0", "tuxedo_tone4": "9.0", "man_in_tuxedo_tone5": "9.0", "tuxedo_tone5": "9.0", "princess": "6.0", "princess_tone1": "8.0", "princess_tone2": "8.0", "princess_tone3": "8.0", "princess_tone4": "8.0", "princess_tone5": "8.0", "prince": "9.0", "prince_tone1": "9.0", "prince_tone2": "9.0", "prince_tone3": "9.0", "prince_tone4": "9.0", "prince_tone5": "9.0", "mrs_claus": "9.0", "mother_christmas": "9.0", "mrs_claus_tone1": "9.0", "mother_christmas_tone1": "9.0", "mrs_claus_tone3": "9.0", "mother_christmas_tone3": "9.0", "mrs_claus_tone2": "9.0", "mother_christmas_tone2": "9.0", "mrs_claus_tone4": "9.0", "mother_christmas_tone4": "9.0", "mrs_claus_tone5": "9.0", "mother_christmas_tone5": "9.0", "santa": "6.0", "santa_tone1": "8.0", "santa_tone2": "8.0", "santa_tone3": "8.0", "santa_tone4": "8.0", "santa_tone5": "8.0", "superhero": "11.0", "superhero_tone1": "11.0", "superhero_light_skin_tone": "11.0", "superhero_tone2": "11.0", "superhero_medium_light_skin_tone": "11.0", "superhero_tone3": "11.0", "superhero_medium_skin_tone": "11.0", "superhero_tone4": "11.0", "superhero_medium_dark_skin_tone": "11.0", "superhero_tone5": "11.0", "superhero_dark_skin_tone": "11.0", "woman_superhero": "11.0", "woman_superhero_tone1": "11.0", "woman_superhero_light_skin_tone": "11.0", "woman_superhero_tone2": "11.0", "woman_superhero_medium_light_skin_tone": "11.0", "woman_superhero_tone3": "11.0", "woman_superhero_medium_skin_tone": "11.0", "woman_superhero_tone4": "11.0", "woman_superhero_medium_dark_skin_tone": "11.0", "woman_superhero_tone5": "11.0", "woman_superhero_dark_skin_tone": "11.0", "man_superhero": "11.0", "man_superhero_tone1": "11.0", "man_superhero_light_skin_tone": "11.0", "man_superhero_tone2": "11.0", "man_superhero_medium_light_skin_tone": "11.0", "man_superhero_tone3": "11.0", "man_superhero_medium_skin_tone": "11.0", "man_superhero_tone4": "11.0", "man_superhero_medium_dark_skin_tone": "11.0", "man_superhero_tone5": "11.0", "man_superhero_dark_skin_tone": "11.0", "supervillain": "11.0", "supervillain_tone1": "11.0", "supervillain_light_skin_tone": "11.0", "supervillain_tone2": "11.0", "supervillain_medium_light_skin_tone": "11.0", "supervillain_tone3": "11.0", "supervillain_medium_skin_tone": "11.0", "supervillain_tone4": "11.0", "supervillain_medium_dark_skin_tone": "11.0", "supervillain_tone5": "11.0", "supervillain_dark_skin_tone": "11.0", "woman_supervillain_tone1": "11.0", "woman_supervillain_light_skin_tone": "11.0", "woman_supervillain": "11.0", "woman_supervillain_tone2": "11.0", "woman_supervillain_medium_light_skin_tone": "11.0", "woman_supervillain_tone3": "11.0", "woman_supervillain_medium_skin_tone": "11.0", "woman_supervillain_tone4": "11.0", "woman_supervillain_medium_dark_skin_tone": "11.0", "woman_supervillain_tone5": "11.0", "woman_supervillain_dark_skin_tone": "11.0", "man_supervillain": "11.0", "man_supervillain_tone1": "11.0", "man_supervillain_light_skin_tone": "11.0", "man_supervillain_tone2": "11.0", "man_supervillain_medium_light_skin_tone": "11.0", "man_supervillain_tone3": "11.0", "man_supervillain_medium_skin_tone": "11.0", "man_supervillain_tone4": "11.0", "man_supervillain_medium_dark_skin_tone": "11.0", "man_supervillain_tone5": "11.0", "man_supervillain_dark_skin_tone": "11.0", "mage": "10.0", "mage_tone1": "10.0", "mage_light_skin_tone": "10.0", "mage_tone2": "10.0", "mage_medium_light_skin_tone": "10.0", "mage_tone3": "10.0", "mage_medium_skin_tone": "10.0", "mage_tone4": "10.0", "mage_medium_dark_skin_tone": "10.0", "mage_tone5": "10.0", "mage_dark_skin_tone": "10.0", "woman_mage": "10.0", "woman_mage_tone1": "10.0", "woman_mage_light_skin_tone": "10.0", "woman_mage_tone2": "10.0", "woman_mage_medium_light_skin_tone": "10.0", "woman_mage_tone3": "10.0", "woman_mage_medium_skin_tone": "10.0", "woman_mage_tone4": "10.0", "woman_mage_medium_dark_skin_tone": "10.0", "woman_mage_tone5": "10.0", "woman_mage_dark_skin_tone": "10.0", "man_mage": "10.0", "man_mage_tone1": "10.0", "man_mage_light_skin_tone": "10.0", "man_mage_tone2": "10.0", "man_mage_medium_light_skin_tone": "10.0", "man_mage_tone3": "10.0", "man_mage_medium_skin_tone": "10.0", "man_mage_tone4": "10.0", "man_mage_medium_dark_skin_tone": "10.0", "man_mage_tone5": "10.0", "man_mage_dark_skin_tone": "10.0", "elf": "10.0", "elf_tone1": "10.0", "elf_light_skin_tone": "10.0", "elf_tone2": "10.0", "elf_medium_light_skin_tone": "10.0", "elf_tone3": "10.0", "elf_medium_skin_tone": "10.0", "elf_tone4": "10.0", "elf_medium_dark_skin_tone": "10.0", "elf_tone5": "10.0", "elf_dark_skin_tone": "10.0", "woman_elf": "10.0", "woman_elf_tone1": "10.0", "woman_elf_light_skin_tone": "10.0", "woman_elf_tone2": "10.0", "woman_elf_medium_light_skin_tone": "10.0", "woman_elf_tone3": "10.0", "woman_elf_medium_skin_tone": "10.0", "woman_elf_tone4": "10.0", "woman_elf_medium_dark_skin_tone": "10.0", "woman_elf_tone5": "10.0", "woman_elf_dark_skin_tone": "10.0", "man_elf": "10.0", "man_elf_tone1": "10.0", "man_elf_light_skin_tone": "10.0", "man_elf_tone2": "10.0", "man_elf_medium_light_skin_tone": "10.0", "man_elf_tone3": "10.0", "man_elf_medium_skin_tone": "10.0", "man_elf_tone4": "10.0", "man_elf_medium_dark_skin_tone": "10.0", "man_elf_tone5": "10.0", "man_elf_dark_skin_tone": "10.0", "vampire": "10.0", "vampire_tone1": "10.0", "vampire_light_skin_tone": "10.0", "vampire_tone2": "10.0", "vampire_medium_light_skin_tone": "10.0", "vampire_tone3": "10.0", "vampire_medium_skin_tone": "10.0", "vampire_tone4": "10.0", "vampire_medium_dark_skin_tone": "10.0", "vampire_tone5": "10.0", "vampire_dark_skin_tone": "10.0", "woman_vampire": "10.0", "woman_vampire_tone1": "10.0", "woman_vampire_light_skin_tone": "10.0", "woman_vampire_tone2": "10.0", "woman_vampire_medium_light_skin_tone": "10.0", "woman_vampire_tone3": "10.0", "woman_vampire_medium_skin_tone": "10.0", "woman_vampire_tone4": "10.0", "woman_vampire_medium_dark_skin_tone": "10.0", "woman_vampire_tone5": "10.0", "woman_vampire_dark_skin_tone": "10.0", "man_vampire": "10.0", "man_vampire_tone1": "10.0", "man_vampire_light_skin_tone": "10.0", "man_vampire_tone2": "10.0", "man_vampire_medium_light_skin_tone": "10.0", "man_vampire_tone3": "10.0", "man_vampire_medium_skin_tone": "10.0", "man_vampire_tone4": "10.0", "man_vampire_medium_dark_skin_tone": "10.0", "man_vampire_tone5": "10.0", "man_vampire_dark_skin_tone": "10.0", "zombie": "10.0", "woman_zombie": "10.0", "man_zombie": "10.0", "genie": "10.0", "woman_genie": "10.0", "man_genie": "10.0", "merperson": "10.0", "merperson_tone1": "10.0", "merperson_light_skin_tone": "10.0", "merperson_tone2": "10.0", "merperson_medium_light_skin_tone": "10.0", "merperson_tone3": "10.0", "merperson_medium_skin_tone": "10.0", "merperson_tone4": "10.0", "merperson_medium_dark_skin_tone": "10.0", "merperson_tone5": "10.0", "merperson_dark_skin_tone": "10.0", "mermaid": "10.0", "mermaid_tone1": "10.0", "mermaid_light_skin_tone": "10.0", "mermaid_tone2": "10.0", "mermaid_medium_light_skin_tone": "10.0", "mermaid_tone3": "10.0", "mermaid_medium_skin_tone": "10.0", "mermaid_tone4": "10.0", "mermaid_medium_dark_skin_tone": "10.0", "mermaid_tone5": "10.0", "mermaid_dark_skin_tone": "10.0", "merman": "10.0", "merman_tone1": "10.0", "merman_light_skin_tone": "10.0", "merman_tone2": "10.0", "merman_medium_light_skin_tone": "10.0", "merman_tone3": "10.0", "merman_medium_skin_tone": "10.0", "merman_tone4": "10.0", "merman_medium_dark_skin_tone": "10.0", "merman_tone5": "10.0", "merman_dark_skin_tone": "10.0", "fairy": "10.0", "fairy_tone1": "10.0", "fairy_light_skin_tone": "10.0", "fairy_tone2": "10.0", "fairy_medium_light_skin_tone": "10.0", "fairy_tone3": "10.0", "fairy_medium_skin_tone": "10.0", "fairy_tone4": "10.0", "fairy_medium_dark_skin_tone": "10.0", "fairy_tone5": "10.0", "fairy_dark_skin_tone": "10.0", "woman_fairy": "10.0", "woman_fairy_tone1": "10.0", "woman_fairy_light_skin_tone": "10.0", "woman_fairy_tone2": "10.0", "woman_fairy_medium_light_skin_tone": "10.0", "woman_fairy_tone3": "10.0", "woman_fairy_medium_skin_tone": "10.0", "woman_fairy_tone4": "10.0", "woman_fairy_medium_dark_skin_tone": "10.0", "woman_fairy_tone5": "10.0", "woman_fairy_dark_skin_tone": "10.0", "man_fairy": "10.0", "man_fairy_tone1": "10.0", "man_fairy_light_skin_tone": "10.0", "man_fairy_tone2": "10.0", "man_fairy_medium_light_skin_tone": "10.0", "man_fairy_tone3": "10.0", "man_fairy_medium_skin_tone": "10.0", "man_fairy_tone4": "10.0", "man_fairy_medium_dark_skin_tone": "10.0", "man_fairy_tone5": "10.0", "man_fairy_dark_skin_tone": "10.0", "angel": "6.0", "angel_tone1": "8.0", "angel_tone2": "8.0", "angel_tone3": "8.0", "angel_tone4": "8.0", "angel_tone5": "8.0", "pregnant_woman": "9.0", "expecting_woman": "9.0", "pregnant_woman_tone1": "9.0", "expecting_woman_tone1": "9.0", "pregnant_woman_tone2": "9.0", "expecting_woman_tone2": "9.0", "pregnant_woman_tone3": "9.0", "expecting_woman_tone3": "9.0", "pregnant_woman_tone4": "9.0", "expecting_woman_tone4": "9.0", "pregnant_woman_tone5": "9.0", "expecting_woman_tone5": "9.0", "breast_feeding": "10.0", "breast_feeding_tone1": "10.0", "breast_feeding_light_skin_tone": "10.0", "breast_feeding_tone2": "10.0", "breast_feeding_medium_light_skin_tone": "10.0", "breast_feeding_tone3": "10.0", "breast_feeding_medium_skin_tone": "10.0", "breast_feeding_tone4": "10.0", "breast_feeding_medium_dark_skin_tone": "10.0", "breast_feeding_tone5": "10.0", "breast_feeding_dark_skin_tone": "10.0", "person_bowing": "6.0", "bow": "6.0", "person_bowing_tone1": "8.0", "bow_tone1": "8.0", "person_bowing_tone2": "8.0", "bow_tone2": "8.0", "person_bowing_tone3": "8.0", "bow_tone3": "8.0", "person_bowing_tone4": "8.0", "bow_tone4": "8.0", "person_bowing_tone5": "8.0", "bow_tone5": "8.0", "woman_bowing": "6.0", "woman_bowing_tone1": "8.0", "woman_bowing_light_skin_tone": "8.0", "woman_bowing_tone2": "8.0", "woman_bowing_medium_light_skin_tone": "8.0", "woman_bowing_tone3": "8.0", "woman_bowing_medium_skin_tone": "8.0", "woman_bowing_tone4": "8.0", "woman_bowing_medium_dark_skin_tone": "8.0", "woman_bowing_tone5": "8.0", "woman_bowing_dark_skin_tone": "8.0", "man_bowing": "6.0", "man_bowing_tone1": "8.0", "man_bowing_light_skin_tone": "8.0", "man_bowing_tone2": "8.0", "man_bowing_medium_light_skin_tone": "8.0", "man_bowing_tone3": "8.0", "man_bowing_medium_skin_tone": "8.0", "man_bowing_tone4": "8.0", "man_bowing_medium_dark_skin_tone": "8.0", "man_bowing_tone5": "8.0", "man_bowing_dark_skin_tone": "8.0", "person_tipping_hand": "6.0", "information_desk_person": "6.0", "person_tipping_hand_tone1": "8.0", "information_desk_person_tone1": "8.0", "person_tipping_hand_tone2": "8.0", "information_desk_person_tone2": "8.0", "person_tipping_hand_tone3": "8.0", "information_desk_person_tone3": "8.0", "person_tipping_hand_tone4": "8.0", "information_desk_person_tone4": "8.0", "person_tipping_hand_tone5": "8.0", "information_desk_person_tone5": "8.0", "woman_tipping_hand": "6.0", "woman_tipping_hand_tone1": "8.0", "woman_tipping_hand_light_skin_tone": "8.0", "woman_tipping_hand_tone2": "8.0", "woman_tipping_hand_medium_light_skin_tone": "8.0", "woman_tipping_hand_tone3": "8.0", "woman_tipping_hand_medium_skin_tone": "8.0", "woman_tipping_hand_tone4": "8.0", "woman_tipping_hand_medium_dark_skin_tone": "8.0", "woman_tipping_hand_tone5": "8.0", "woman_tipping_hand_dark_skin_tone": "8.0", "man_tipping_hand": "6.0", "man_tipping_hand_tone1": "8.0", "man_tipping_hand_light_skin_tone": "8.0", "man_tipping_hand_tone2": "8.0", "man_tipping_hand_medium_light_skin_tone": "8.0", "man_tipping_hand_tone3": "8.0", "man_tipping_hand_medium_skin_tone": "8.0", "man_tipping_hand_tone4": "8.0", "man_tipping_hand_medium_dark_skin_tone": "8.0", "man_tipping_hand_tone5": "8.0", "man_tipping_hand_dark_skin_tone": "8.0", "person_gesturing_no": "6.0", "no_good": "6.0", "person_gesturing_no_tone1": "8.0", "no_good_tone1": "8.0", "person_gesturing_no_tone2": "8.0", "no_good_tone2": "8.0", "person_gesturing_no_tone3": "8.0", "no_good_tone3": "8.0", "person_gesturing_no_tone4": "8.0", "no_good_tone4": "8.0", "person_gesturing_no_tone5": "8.0", "no_good_tone5": "8.0", "woman_gesturing_no": "6.0", "woman_gesturing_no_tone1": "8.0", "woman_gesturing_no_light_skin_tone": "8.0", "woman_gesturing_no_tone2": "8.0", "woman_gesturing_no_medium_light_skin_tone": "8.0", "woman_gesturing_no_tone3": "8.0", "woman_gesturing_no_medium_skin_tone": "8.0", "woman_gesturing_no_tone4": "8.0", "woman_gesturing_no_medium_dark_skin_tone": "8.0", "woman_gesturing_no_tone5": "8.0", "woman_gesturing_no_dark_skin_tone": "8.0", "man_gesturing_no": "6.0", "man_gesturing_no_tone1": "8.0", "man_gesturing_no_light_skin_tone": "8.0", "man_gesturing_no_tone2": "8.0", "man_gesturing_no_medium_light_skin_tone": "8.0", "man_gesturing_no_tone3": "8.0", "man_gesturing_no_medium_skin_tone": "8.0", "man_gesturing_no_tone4": "8.0", "man_gesturing_no_medium_dark_skin_tone": "8.0", "man_gesturing_no_tone5": "8.0", "man_gesturing_no_dark_skin_tone": "8.0", "person_gesturing_ok": "6.0", "ok_woman": "6.0", "person_gesturing_ok_tone1": "8.0", "ok_woman_tone1": "8.0", "person_gesturing_ok_tone2": "8.0", "ok_woman_tone2": "8.0", "person_gesturing_ok_tone3": "8.0", "ok_woman_tone3": "8.0", "person_gesturing_ok_tone4": "8.0", "ok_woman_tone4": "8.0", "person_gesturing_ok_tone5": "8.0", "ok_woman_tone5": "8.0", "woman_gesturing_ok": "6.0", "woman_gesturing_ok_tone1": "8.0", "woman_gesturing_ok_light_skin_tone": "8.0", "woman_gesturing_ok_tone2": "8.0", "woman_gesturing_ok_medium_light_skin_tone": "8.0", "woman_gesturing_ok_tone3": "8.0", "woman_gesturing_ok_medium_skin_tone": "8.0", "woman_gesturing_ok_tone4": "8.0", "woman_gesturing_ok_medium_dark_skin_tone": "8.0", "woman_gesturing_ok_tone5": "8.0", "woman_gesturing_ok_dark_skin_tone": "8.0", "man_gesturing_ok": "6.0", "man_gesturing_ok_tone1": "8.0", "man_gesturing_ok_light_skin_tone": "8.0", "man_gesturing_ok_tone2": "8.0", "man_gesturing_ok_medium_light_skin_tone": "8.0", "man_gesturing_ok_tone3": "8.0", "man_gesturing_ok_medium_skin_tone": "8.0", "man_gesturing_ok_tone4": "8.0", "man_gesturing_ok_medium_dark_skin_tone": "8.0", "man_gesturing_ok_tone5": "8.0", "man_gesturing_ok_dark_skin_tone": "8.0", "person_raising_hand": "6.0", "raising_hand": "6.0", "person_raising_hand_tone1": "8.0", "raising_hand_tone1": "8.0", "person_raising_hand_tone2": "8.0", "raising_hand_tone2": "8.0", "person_raising_hand_tone3": "8.0", "raising_hand_tone3": "8.0", "person_raising_hand_tone4": "8.0", "raising_hand_tone4": "8.0", "person_raising_hand_tone5": "8.0", "raising_hand_tone5": "8.0", "woman_raising_hand": "6.0", "woman_raising_hand_tone1": "8.0", "woman_raising_hand_light_skin_tone": "8.0", "woman_raising_hand_tone2": "8.0", "woman_raising_hand_medium_light_skin_tone": "8.0", "woman_raising_hand_tone3": "8.0", "woman_raising_hand_medium_skin_tone": "8.0", "woman_raising_hand_tone4": "8.0", "woman_raising_hand_medium_dark_skin_tone": "8.0", "woman_raising_hand_tone5": "8.0", "woman_raising_hand_dark_skin_tone": "8.0", "man_raising_hand": "6.0", "man_raising_hand_tone1": "8.0", "man_raising_hand_light_skin_tone": "8.0", "man_raising_hand_tone2": "8.0", "man_raising_hand_medium_light_skin_tone": "8.0", "man_raising_hand_tone3": "8.0", "man_raising_hand_medium_skin_tone": "8.0", "man_raising_hand_tone4": "8.0", "man_raising_hand_medium_dark_skin_tone": "8.0", "man_raising_hand_tone5": "8.0", "man_raising_hand_dark_skin_tone": "8.0", "person_facepalming": "9.0", "face_palm": "9.0", "facepalm": "9.0", "person_facepalming_tone1": "9.0", "face_palm_tone1": "9.0", "facepalm_tone1": "9.0", "person_facepalming_tone2": "9.0", "face_palm_tone2": "9.0", "facepalm_tone2": "9.0", "person_facepalming_tone3": "9.0", "face_palm_tone3": "9.0", "facepalm_tone3": "9.0", "person_facepalming_tone4": "9.0", "face_palm_tone4": "9.0", "facepalm_tone4": "9.0", "person_facepalming_tone5": "9.0", "face_palm_tone5": "9.0", "facepalm_tone5": "9.0", "woman_facepalming": "9.0", "woman_facepalming_tone1": "9.0", "woman_facepalming_light_skin_tone": "9.0", "woman_facepalming_tone2": "9.0", "woman_facepalming_medium_light_skin_tone": "9.0", "woman_facepalming_tone3": "9.0", "woman_facepalming_medium_skin_tone": "9.0", "woman_facepalming_tone4": "9.0", "woman_facepalming_medium_dark_skin_tone": "9.0", "woman_facepalming_tone5": "9.0", "woman_facepalming_dark_skin_tone": "9.0", "man_facepalming": "9.0", "man_facepalming_tone1": "9.0", "man_facepalming_light_skin_tone": "9.0", "man_facepalming_tone2": "9.0", "man_facepalming_medium_light_skin_tone": "9.0", "man_facepalming_tone3": "9.0", "man_facepalming_medium_skin_tone": "9.0", "man_facepalming_tone4": "9.0", "man_facepalming_medium_dark_skin_tone": "9.0", "man_facepalming_tone5": "9.0", "man_facepalming_dark_skin_tone": "9.0", "person_shrugging": "9.0", "shrug": "9.0", "person_shrugging_tone1": "9.0", "shrug_tone1": "9.0", "person_shrugging_tone2": "9.0", "shrug_tone2": "9.0", "person_shrugging_tone3": "9.0", "shrug_tone3": "9.0", "person_shrugging_tone4": "9.0", "shrug_tone4": "9.0", "person_shrugging_tone5": "9.0", "shrug_tone5": "9.0", "woman_shrugging": "9.0", "woman_shrugging_tone1": "9.0", "woman_shrugging_light_skin_tone": "9.0", "woman_shrugging_tone2": "9.0", "woman_shrugging_medium_light_skin_tone": "9.0", "woman_shrugging_tone3": "9.0", "woman_shrugging_medium_skin_tone": "9.0", "woman_shrugging_tone4": "9.0", "woman_shrugging_medium_dark_skin_tone": "9.0", "woman_shrugging_tone5": "9.0", "woman_shrugging_dark_skin_tone": "9.0", "man_shrugging": "9.0", "man_shrugging_tone1": "9.0", "man_shrugging_light_skin_tone": "9.0", "man_shrugging_tone2": "9.0", "man_shrugging_medium_light_skin_tone": "9.0", "man_shrugging_tone3": "9.0", "man_shrugging_medium_skin_tone": "9.0", "man_shrugging_tone4": "9.0", "man_shrugging_medium_dark_skin_tone": "9.0", "man_shrugging_tone5": "9.0", "man_shrugging_dark_skin_tone": "9.0", "person_pouting": "6.0", "person_with_pouting_face": "6.0", "person_pouting_tone1": "8.0", "person_with_pouting_face_tone1": "8.0", "person_pouting_tone2": "8.0", "person_with_pouting_face_tone2": "8.0", "person_pouting_tone3": "8.0", "person_with_pouting_face_tone3": "8.0", "person_pouting_tone4": "8.0", "person_with_pouting_face_tone4": "8.0", "person_pouting_tone5": "8.0", "person_with_pouting_face_tone5": "8.0", "woman_pouting": "6.0", "woman_pouting_tone1": "8.0", "woman_pouting_light_skin_tone": "8.0", "woman_pouting_tone2": "8.0", "woman_pouting_medium_light_skin_tone": "8.0", "woman_pouting_tone3": "8.0", "woman_pouting_medium_skin_tone": "8.0", "woman_pouting_tone4": "8.0", "woman_pouting_medium_dark_skin_tone": "8.0", "woman_pouting_tone5": "8.0", "woman_pouting_dark_skin_tone": "8.0", "man_pouting": "6.0", "man_pouting_tone1": "8.0", "man_pouting_light_skin_tone": "8.0", "man_pouting_tone2": "8.0", "man_pouting_medium_light_skin_tone": "8.0", "man_pouting_tone3": "8.0", "man_pouting_medium_skin_tone": "8.0", "man_pouting_tone4": "8.0", "man_pouting_medium_dark_skin_tone": "8.0", "man_pouting_tone5": "8.0", "man_pouting_dark_skin_tone": "8.0", "person_frowning": "6.0", "person_frowning_tone1": "8.0", "person_frowning_tone2": "8.0", "person_frowning_tone3": "8.0", "person_frowning_tone4": "8.0", "person_frowning_tone5": "8.0", "woman_frowning": "6.0", "woman_frowning_tone1": "8.0", "woman_frowning_light_skin_tone": "8.0", "woman_frowning_tone2": "8.0", "woman_frowning_medium_light_skin_tone": "8.0", "woman_frowning_tone3": "8.0", "woman_frowning_medium_skin_tone": "8.0", "woman_frowning_tone4": "8.0", "woman_frowning_medium_dark_skin_tone": "8.0", "woman_frowning_tone5": "8.0", "woman_frowning_dark_skin_tone": "8.0", "man_frowning": "6.0", "man_frowning_tone1": "8.0", "man_frowning_light_skin_tone": "8.0", "man_frowning_tone2": "8.0", "man_frowning_medium_light_skin_tone": "8.0", "man_frowning_tone3": "8.0", "man_frowning_medium_skin_tone": "8.0", "man_frowning_tone4": "8.0", "man_frowning_medium_dark_skin_tone": "8.0", "man_frowning_tone5": "8.0", "man_frowning_dark_skin_tone": "8.0", "person_getting_haircut": "6.0", "haircut": "6.0", "person_getting_haircut_tone1": "8.0", "haircut_tone1": "8.0", "person_getting_haircut_tone2": "8.0", "haircut_tone2": "8.0", "person_getting_haircut_tone3": "8.0", "haircut_tone3": "8.0", "person_getting_haircut_tone4": "8.0", "haircut_tone4": "8.0", "person_getting_haircut_tone5": "8.0", "haircut_tone5": "8.0", "woman_getting_haircut": "6.0", "woman_getting_haircut_tone1": "8.0", "woman_getting_haircut_light_skin_tone": "8.0", "woman_getting_haircut_tone2": "8.0", "woman_getting_haircut_medium_light_skin_tone": "8.0", "woman_getting_haircut_tone3": "8.0", "woman_getting_haircut_medium_skin_tone": "8.0", "woman_getting_haircut_tone4": "8.0", "woman_getting_haircut_medium_dark_skin_tone": "8.0", "woman_getting_haircut_tone5": "8.0", "woman_getting_haircut_dark_skin_tone": "8.0", "man_getting_haircut": "6.0", "man_getting_haircut_tone1": "8.0", "man_getting_haircut_light_skin_tone": "8.0", "man_getting_haircut_tone2": "8.0", "man_getting_haircut_medium_light_skin_tone": "8.0", "man_getting_haircut_tone3": "8.0", "man_getting_haircut_medium_skin_tone": "8.0", "man_getting_haircut_tone4": "8.0", "man_getting_haircut_medium_dark_skin_tone": "8.0", "man_getting_haircut_tone5": "8.0", "man_getting_haircut_dark_skin_tone": "8.0", "person_getting_massage": "6.0", "massage": "6.0", "person_getting_massage_tone1": "8.0", "massage_tone1": "8.0", "person_getting_massage_tone2": "8.0", "massage_tone2": "8.0", "person_getting_massage_tone3": "8.0", "massage_tone3": "8.0", "person_getting_massage_tone4": "8.0", "massage_tone4": "8.0", "person_getting_massage_tone5": "8.0", "massage_tone5": "8.0", "woman_getting_face_massage": "6.0", "woman_getting_face_massage_tone1": "8.0", "woman_getting_face_massage_light_skin_tone": "8.0", "woman_getting_face_massage_tone2": "8.0", "woman_getting_face_massage_medium_light_skin_tone": "8.0", "woman_getting_face_massage_tone3": "8.0", "woman_getting_face_massage_medium_skin_tone": "8.0", "woman_getting_face_massage_tone4": "8.0", "woman_getting_face_massage_medium_dark_skin_tone": "8.0", "woman_getting_face_massage_tone5": "8.0", "woman_getting_face_massage_dark_skin_tone": "8.0", "man_getting_face_massage": "6.0", "man_getting_face_massage_tone1": "8.0", "man_getting_face_massage_light_skin_tone": "8.0", "man_getting_face_massage_tone2": "8.0", "man_getting_face_massage_medium_light_skin_tone": "8.0", "man_getting_face_massage_tone3": "8.0", "man_getting_face_massage_medium_skin_tone": "8.0", "man_getting_face_massage_tone4": "8.0", "man_getting_face_massage_medium_dark_skin_tone": "8.0", "man_getting_face_massage_tone5": "8.0", "man_getting_face_massage_dark_skin_tone": "8.0", "person_in_steamy_room": "10.0", "person_in_steamy_room_tone1": "10.0", "person_in_steamy_room_light_skin_tone": "10.0", "person_in_steamy_room_tone2": "10.0", "person_in_steamy_room_medium_light_skin_tone": "10.0", "person_in_steamy_room_tone3": "10.0", "person_in_steamy_room_medium_skin_tone": "10.0", "person_in_steamy_room_tone4": "10.0", "person_in_steamy_room_medium_dark_skin_tone": "10.0", "person_in_steamy_room_tone5": "10.0", "person_in_steamy_room_dark_skin_tone": "10.0", "woman_in_steamy_room": "10.0", "woman_in_steamy_room_tone1": "10.0", "woman_in_steamy_room_light_skin_tone": "10.0", "woman_in_steamy_room_tone2": "10.0", "woman_in_steamy_room_medium_light_skin_tone": "10.0", "woman_in_steamy_room_tone3": "10.0", "woman_in_steamy_room_medium_skin_tone": "10.0", "woman_in_steamy_room_tone4": "10.0", "woman_in_steamy_room_medium_dark_skin_tone": "10.0", "woman_in_steamy_room_tone5": "10.0", "woman_in_steamy_room_dark_skin_tone": "10.0", "man_in_steamy_room": "10.0", "man_in_steamy_room_tone1": "10.0", "man_in_steamy_room_light_skin_tone": "10.0", "man_in_steamy_room_tone2": "10.0", "man_in_steamy_room_medium_light_skin_tone": "10.0", "man_in_steamy_room_tone3": "10.0", "man_in_steamy_room_medium_skin_tone": "10.0", "man_in_steamy_room_tone4": "10.0", "man_in_steamy_room_medium_dark_skin_tone": "10.0", "man_in_steamy_room_tone5": "10.0", "man_in_steamy_room_dark_skin_tone": "10.0", "nail_care": "6.0", "nail_care_tone1": "8.0", "nail_care_tone2": "8.0", "nail_care_tone3": "8.0", "nail_care_tone4": "8.0", "nail_care_tone5": "8.0", "selfie": "9.0", "selfie_tone1": "9.0", "selfie_tone2": "9.0", "selfie_tone3": "9.0", "selfie_tone4": "9.0", "selfie_tone5": "9.0", "dancer": "6.0", "dancer_tone1": "8.0", "dancer_tone2": "8.0", "dancer_tone3": "8.0", "dancer_tone4": "8.0", "dancer_tone5": "8.0", "man_dancing": "9.0", "male_dancer": "9.0", "man_dancing_tone1": "9.0", "male_dancer_tone1": "9.0", "man_dancing_tone2": "9.0", "male_dancer_tone2": "9.0", "man_dancing_tone3": "9.0", "male_dancer_tone3": "9.0", "man_dancing_tone5": "9.0", "male_dancer_tone5": "9.0", "man_dancing_tone4": "9.0", "male_dancer_tone4": "9.0", "people_with_bunny_ears_partying": "6.0", "dancers": "6.0", "women_with_bunny_ears_partying": "6.0", "men_with_bunny_ears_partying": "6.0", "levitate": "7.0", "man_in_business_suit_levitating": "7.0", "levitate_tone1": "8.0", "man_in_business_suit_levitating_tone1": "8.0", "man_in_business_suit_levitating_light_skin_tone": "8.0", "levitate_tone2": "8.0", "man_in_business_suit_levitating_tone2": "8.0", "man_in_business_suit_levitating_medium_light_skin_tone": "8.0", "levitate_tone3": "8.0", "man_in_business_suit_levitating_tone3": "8.0", "man_in_business_suit_levitating_medium_skin_tone": "8.0", "levitate_tone4": "8.0", "man_in_business_suit_levitating_tone4": "8.0", "man_in_business_suit_levitating_medium_dark_skin_tone": "8.0", "levitate_tone5": "8.0", "man_in_business_suit_levitating_tone5": "8.0", "man_in_business_suit_levitating_dark_skin_tone": "8.0", "person_walking": "6.0", "walking": "6.0", "person_walking_tone1": "8.0", "walking_tone1": "8.0", "person_walking_tone2": "8.0", "walking_tone2": "8.0", "person_walking_tone3": "8.0", "walking_tone3": "8.0", "person_walking_tone4": "8.0", "walking_tone4": "8.0", "person_walking_tone5": "8.0", "walking_tone5": "8.0", "woman_walking": "6.0", "woman_walking_tone1": "8.0", "woman_walking_light_skin_tone": "8.0", "woman_walking_tone2": "8.0", "woman_walking_medium_light_skin_tone": "8.0", "woman_walking_tone3": "8.0", "woman_walking_medium_skin_tone": "8.0", "woman_walking_tone4": "8.0", "woman_walking_medium_dark_skin_tone": "8.0", "woman_walking_tone5": "8.0", "woman_walking_dark_skin_tone": "8.0", "man_walking": "6.0", "man_walking_tone1": "8.0", "man_walking_light_skin_tone": "8.0", "man_walking_tone2": "8.0", "man_walking_medium_light_skin_tone": "8.0", "man_walking_tone3": "8.0", "man_walking_medium_skin_tone": "8.0", "man_walking_tone4": "8.0", "man_walking_medium_dark_skin_tone": "8.0", "man_walking_tone5": "8.0", "man_walking_dark_skin_tone": "8.0", "person_running": "6.0", "runner": "6.0", "person_running_tone1": "8.0", "runner_tone1": "8.0", "person_running_tone2": "8.0", "runner_tone2": "8.0", "person_running_tone3": "8.0", "runner_tone3": "8.0", "person_running_tone4": "8.0", "runner_tone4": "8.0", "person_running_tone5": "8.0", "runner_tone5": "8.0", "woman_running": "6.0", "woman_running_tone1": "8.0", "woman_running_light_skin_tone": "8.0", "woman_running_tone2": "8.0", "woman_running_medium_light_skin_tone": "8.0", "woman_running_tone3": "8.0", "woman_running_medium_skin_tone": "8.0", "woman_running_tone4": "8.0", "woman_running_medium_dark_skin_tone": "8.0", "woman_running_tone5": "8.0", "woman_running_dark_skin_tone": "8.0", "man_running": "6.0", "man_running_tone1": "8.0", "man_running_light_skin_tone": "8.0", "man_running_tone2": "8.0", "man_running_medium_light_skin_tone": "8.0", "man_running_tone3": "8.0", "man_running_medium_skin_tone": "8.0", "man_running_tone4": "8.0", "man_running_medium_dark_skin_tone": "8.0", "man_running_tone5": "8.0", "man_running_dark_skin_tone": "8.0", "couple": "6.0", "two_women_holding_hands": "6.0", "two_men_holding_hands": "6.0", "couple_with_heart": "6.0", "couple_with_heart_woman_man": "6.0", "couple_ww": "6.0", "couple_with_heart_ww": "6.0", "couple_mm": "6.0", "couple_with_heart_mm": "6.0", "couplekiss": "6.0", "kiss_woman_man": "6.0", "kiss_ww": "6.0", "couplekiss_ww": "6.0", "kiss_mm": "6.0", "couplekiss_mm": "6.0", "family": "6.0", "family_man_woman_boy": "6.0", "family_mwg": "6.0", "family_mwgb": "6.0", "family_mwbb": "6.0", "family_mwgg": "6.0", "family_wwb": "6.0", "family_wwg": "6.0", "family_wwgb": "6.0", "family_wwbb": "6.0", "family_wwgg": "6.0", "family_mmb": "6.0", "family_mmg": "6.0", "family_mmgb": "6.0", "family_mmbb": "6.0", "family_mmgg": "6.0", "family_woman_boy": "6.0", "family_woman_girl": "6.0", "family_woman_girl_boy": "6.0", "family_woman_boy_boy": "6.0", "family_woman_girl_girl": "6.0", "family_man_boy": "6.0", "family_man_girl": "6.0", "family_man_girl_boy": "6.0", "family_man_boy_boy": "6.0", "family_man_girl_girl": "6.0", "coat": "10.0", "womans_clothes": "6.0", "shirt": "6.0", "jeans": "6.0", "necktie": "6.0", "dress": "6.0", "bikini": "6.0", "kimono": "6.0", "lab_coat": "11.0", "high_heel": "6.0", "sandal": "6.0", "boot": "6.0", "mans_shoe": "6.0", "athletic_shoe": "6.0", "hiking_boot": "11.0", "womans_flat_shoe": "11.0", "socks": "10.0", "gloves": "10.0", "scarf": "10.0", "tophat": "6.0", "billed_cap": "10.0", "womans_hat": "6.0", "mortar_board": "6.0", "helmet_with_cross": "5.2", "helmet_with_white_cross": "5.2", "crown": "6.0", "pouch": "6.0", "purse": "6.0", "handbag": "6.0", "briefcase": "6.0", "school_satchel": "6.0", "eyeglasses": "6.0", "dark_sunglasses": "7.0", "goggles": "11.0", "closed_umbrella": "6.0", "red_haired": "11.0", "curly_haired": "11.0", "white_haired": "11.0", "bald": "11.0", "regional_indicator_z": "6.0", "regional_indicator_y": "6.0", "regional_indicator_x": "6.0", "regional_indicator_w": "6.0", "regional_indicator_v": "6.0", "regional_indicator_u": "6.0", "regional_indicator_t": "6.0", "regional_indicator_s": "6.0", "regional_indicator_r": "6.0", "regional_indicator_q": "6.0", "regional_indicator_p": "6.0", "regional_indicator_o": "6.0", "regional_indicator_n": "6.0", "regional_indicator_m": "6.0", "regional_indicator_l": "6.0", "regional_indicator_k": "6.0", "regional_indicator_j": "6.0", "regional_indicator_i": "6.0", "regional_indicator_h": "6.0", "regional_indicator_g": "6.0", "regional_indicator_f": "6.0", "regional_indicator_e": "6.0", "regional_indicator_d": "6.0", "regional_indicator_c": "6.0", "regional_indicator_b": "6.0", "regional_indicator_a": "6.0", "red_car": "6.0", "taxi": "6.0", "blue_car": "6.0", "bus": "6.0", "trolleybus": "6.0", "race_car": "7.0", "racing_car": "7.0", "police_car": "6.0", "ambulance": "6.0", "fire_engine": "6.0", "minibus": "6.0", "truck": "6.0", "articulated_lorry": "6.0", "tractor": "6.0", "scooter": "9.0", "bike": "6.0", "motor_scooter": "9.0", "motorbike": "9.0", "motorcycle": "7.0", "racing_motorcycle": "7.0", "rotating_light": "6.0", "oncoming_police_car": "6.0", "oncoming_bus": "6.0", "oncoming_automobile": "6.0", "oncoming_taxi": "6.0", "aerial_tramway": "6.0", "mountain_cableway": "6.0", "suspension_railway": "6.0", "railway_car": "6.0", "train": "6.0", "mountain_railway": "6.0", "monorail": "6.0", "bullettrain_side": "6.0", "bullettrain_front": "6.0", "light_rail": "6.0", "steam_locomotive": "6.0", "train2": "6.0", "metro": "6.0", "tram": "6.0", "station": "6.0", "airplane_departure": "7.0", "airplane_arriving": "7.0", "airplane_small": "7.0", "small_airplane": "7.0", "seat": "6.0", "luggage": "11.0", "satellite_orbital": "7.0", "rocket": "6.0", "flying_saucer": "10.0", "helicopter": "6.0", "canoe": "9.0", "kayak": "9.0", "sailboat": "5.2", "speedboat": "6.0", "motorboat": "7.0", "cruise_ship": "7.0", "passenger_ship": "7.0", "ferry": "5.2", "ship": "6.0", "fuelpump": "5.2", "construction": "6.0", "vertical_traffic_light": "6.0", "traffic_light": "6.0", "busstop": "6.0", "map": "7.0", "world_map": "7.0", "moyai": "6.0", "statue_of_liberty": "6.0", "tokyo_tower": "6.0", "european_castle": "6.0", "japanese_castle": "6.0", "stadium": "7.0", "ferris_wheel": "6.0", "roller_coaster": "6.0", "carousel_horse": "6.0", "fountain": "5.2", "beach_umbrella": "5.2", "umbrella_on_ground": "5.2", "beach": "7.0", "beach_with_umbrella": "7.0", "island": "7.0", "desert_island": "7.0", "desert": "7.0", "volcano": "6.0", "mountain": "5.2", "mountain_snow": "7.0", "snow_capped_mountain": "7.0", "mount_fuji": "6.0", "camping": "7.0", "tent": "5.2", "house": "6.0", "house_with_garden": "6.0", "homes": "7.0", "house_buildings": "7.0", "house_abandoned": "7.0", "derelict_house_building": "7.0", "construction_site": "7.0", "building_construction": "7.0", "factory": "6.0", "office": "6.0", "department_store": "6.0", "post_office": "6.0", "european_post_office": "6.0", "hospital": "6.0", "bank": "6.0", "hotel": "6.0", "convenience_store": "6.0", "school": "6.0", "love_hotel": "6.0", "wedding": "6.0", "classical_building": "7.0", "church": "5.2", "mosque": "8.0", "synagogue": "8.0", "kaaba": "8.0", "shinto_shrine": "5.2", "railway_track": "7.0", "railroad_track": "7.0", "motorway": "7.0", "japan": "6.0", "rice_scene": "6.0", "park": "7.0", "national_park": "7.0", "sunrise": "6.0", "sunrise_over_mountains": "6.0", "stars": "6.0", "sparkler": "6.0", "fireworks": "6.0", "firecracker": "11.0", "city_sunset": "6.0", "city_sunrise": "6.0", "city_dusk": "6.0", "cityscape": "7.0", "night_with_stars": "6.0", "milky_way": "6.0", "bridge_at_night": "6.0", "lock": "6.0", "unlock": "6.0", "foggy": "6.0", "flag_white": "7.0", "waving_white_flag": "7.0", "flag_black": "7.0", "waving_black_flag": "7.0", "checkered_flag": "6.0", "triangular_flag_on_post": "6.0", "rainbow_flag": "7.0", "gay_pride_flag": "7.0", "pirate_flag": "11.0", "flag_af": "6.0", "af": "6.0", "flag_ax": "6.0", "ax": "6.0", "flag_al": "6.0", "al": "6.0", "flag_dz": "6.0", "dz": "6.0", "flag_as": "6.0", "as": "6.0", "flag_ad": "6.0", "ad": "6.0", "flag_ao": "6.0", "ao": "6.0", "flag_ai": "6.0", "ai": "6.0", "flag_aq": "6.0", "aq": "6.0", "flag_ag": "6.0", "ag": "6.0", "flag_ar": "6.0", "ar": "6.0", "flag_am": "6.0", "am": "6.0", "flag_aw": "6.0", "aw": "6.0", "flag_au": "6.0", "au": "6.0", "flag_at": "6.0", "at": "6.0", "flag_az": "6.0", "az": "6.0", "flag_bs": "6.0", "bs": "6.0", "flag_bh": "6.0", "bh": "6.0", "flag_bd": "6.0", "bd": "6.0", "flag_bb": "6.0", "bb": "6.0", "flag_by": "6.0", "by": "6.0", "flag_be": "6.0", "be": "6.0", "flag_bz": "6.0", "bz": "6.0", "flag_bj": "6.0", "bj": "6.0", "flag_bm": "6.0", "bm": "6.0", "flag_bt": "6.0", "bt": "6.0", "flag_bo": "6.0", "bo": "6.0", "flag_ba": "6.0", "ba": "6.0", "flag_bw": "6.0", "bw": "6.0", "flag_br": "6.0", "br": "6.0", "flag_io": "6.0", "io": "6.0", "flag_vg": "6.0", "vg": "6.0", "flag_bn": "6.0", "bn": "6.0", "flag_bg": "6.0", "bg": "6.0", "flag_bf": "6.0", "bf": "6.0", "flag_bi": "6.0", "bi": "6.0", "flag_kh": "6.0", "kh": "6.0", "flag_cm": "6.0", "cm": "6.0", "flag_ca": "6.0", "ca": "6.0", "flag_ic": "6.0", "ic": "6.0", "flag_cv": "6.0", "cv": "6.0", "flag_bq": "6.0", "bq": "6.0", "flag_ky": "6.0", "ky": "6.0", "flag_cf": "6.0", "cf": "6.0", "flag_td": "6.0", "td": "6.0", "flag_cl": "6.0", "chile": "6.0", "flag_cn": "6.0", "cn": "6.0", "flag_cx": "6.0", "cx": "6.0", "flag_cc": "6.0", "cc": "6.0", "flag_co": "6.0", "co": "6.0", "flag_km": "6.0", "km": "6.0", "flag_cg": "6.0", "cg": "6.0", "flag_cd": "6.0", "congo": "6.0", "flag_ck": "6.0", "ck": "6.0", "flag_cr": "6.0", "cr": "6.0", "flag_ci": "6.0", "ci": "6.0", "flag_hr": "6.0", "hr": "6.0", "flag_cu": "6.0", "cu": "6.0", "flag_cw": "6.0", "cw": "6.0", "flag_cy": "6.0", "cy": "6.0", "flag_cz": "6.0", "cz": "6.0", "flag_dk": "6.0", "dk": "6.0", "flag_dj": "6.0", "dj": "6.0", "flag_dm": "6.0", "dm": "6.0", "flag_do": "6.0", "do": "6.0", "flag_ec": "6.0", "ec": "6.0", "flag_eg": "6.0", "eg": "6.0", "flag_sv": "6.0", "sv": "6.0", "flag_gq": "6.0", "gq": "6.0", "flag_er": "6.0", "er": "6.0", "flag_ee": "6.0", "ee": "6.0", "flag_et": "6.0", "et": "6.0", "flag_eu": "6.0", "eu": "6.0", "flag_fk": "6.0", "fk": "6.0", "flag_fo": "6.0", "fo": "6.0", "flag_fj": "6.0", "fj": "6.0", "flag_fi": "6.0", "fi": "6.0", "flag_fr": "6.0", "fr": "6.0", "flag_gf": "6.0", "gf": "6.0", "flag_pf": "6.0", "pf": "6.0", "flag_tf": "6.0", "tf": "6.0", "flag_ga": "6.0", "ga": "6.0", "flag_gm": "6.0", "gm": "6.0", "flag_ge": "6.0", "ge": "6.0", "flag_de": "6.0", "de": "6.0", "flag_gh": "6.0", "gh": "6.0", "flag_gi": "6.0", "gi": "6.0", "flag_gr": "6.0", "gr": "6.0", "flag_gl": "6.0", "gl": "6.0", "flag_gd": "6.0", "gd": "6.0", "flag_gp": "6.0", "gp": "6.0", "flag_gu": "6.0", "gu": "6.0", "flag_gt": "6.0", "gt": "6.0", "flag_gg": "6.0", "gg": "6.0", "flag_gn": "6.0", "gn": "6.0", "flag_gw": "6.0", "gw": "6.0", "flag_gy": "6.0", "gy": "6.0", "flag_ht": "6.0", "ht": "6.0", "flag_hn": "6.0", "hn": "6.0", "flag_hk": "6.0", "hk": "6.0", "flag_hu": "6.0", "hu": "6.0", "flag_is": "6.0", "is": "6.0", "flag_in": "6.0", "in": "6.0", "flag_id": "6.0", "indonesia": "6.0", "flag_ir": "6.0", "ir": "6.0", "flag_iq": "6.0", "iq": "6.0", "flag_ie": "6.0", "ie": "6.0", "flag_im": "6.0", "im": "6.0", "flag_il": "6.0", "il": "6.0", "flag_it": "6.0", "it": "6.0", "flag_jm": "6.0", "jm": "6.0", "flag_jp": "6.0", "jp": "6.0", "crossed_flags": "6.0", "flag_je": "6.0", "je": "6.0", "flag_jo": "6.0", "jo": "6.0", "flag_kz": "6.0", "kz": "6.0", "flag_ke": "6.0", "ke": "6.0", "flag_ki": "6.0", "ki": "6.0", "flag_xk": "6.0", "xk": "6.0", "flag_kw": "6.0", "kw": "6.0", "flag_kg": "6.0", "kg": "6.0", "flag_la": "6.0", "la": "6.0", "flag_lv": "6.0", "lv": "6.0", "flag_lb": "6.0", "lb": "6.0", "flag_ls": "6.0", "ls": "6.0", "flag_lr": "6.0", "lr": "6.0", "flag_ly": "6.0", "ly": "6.0", "flag_li": "6.0", "li": "6.0", "flag_lt": "6.0", "lt": "6.0", "flag_lu": "6.0", "lu": "6.0", "flag_mo": "6.0", "mo": "6.0", "flag_mk": "6.0", "mk": "6.0", "flag_mg": "6.0", "mg": "6.0", "flag_mw": "6.0", "mw": "6.0", "flag_my": "6.0", "my": "6.0", "flag_mv": "6.0", "mv": "6.0", "flag_ml": "6.0", "ml": "6.0", "flag_mt": "6.0", "mt": "6.0", "flag_mh": "6.0", "mh": "6.0", "flag_mq": "6.0", "mq": "6.0", "flag_mr": "6.0", "mr": "6.0", "flag_mu": "6.0", "mu": "6.0", "flag_yt": "6.0", "yt": "6.0", "flag_mx": "6.0", "mx": "6.0", "flag_fm": "6.0", "fm": "6.0", "flag_md": "6.0", "md": "6.0", "flag_mc": "6.0", "mc": "6.0", "flag_mn": "6.0", "mn": "6.0", "flag_me": "6.0", "me": "6.0", "flag_ms": "6.0", "ms": "6.0", "flag_ma": "6.0", "ma": "6.0", "flag_mz": "6.0", "mz": "6.0", "flag_mm": "6.0", "mm": "6.0", "flag_na": "6.0", "na": "6.0", "flag_nr": "6.0", "nr": "6.0", "flag_np": "6.0", "np": "6.0", "flag_nl": "6.0", "nl": "6.0", "flag_nc": "6.0", "nc": "6.0", "flag_nz": "6.0", "nz": "6.0", "flag_ni": "6.0", "ni": "6.0", "flag_ne": "6.0", "ne": "6.0", "flag_ng": "6.0", "nigeria": "6.0", "flag_nu": "6.0", "nu": "6.0", "flag_nf": "6.0", "nf": "6.0", "flag_kp": "6.0", "kp": "6.0", "flag_mp": "6.0", "mp": "6.0", "flag_no": "6.0", "no": "6.0", "flag_om": "6.0", "om": "6.0", "flag_pk": "6.0", "pk": "6.0", "flag_pw": "6.0", "pw": "6.0", "flag_ps": "6.0", "ps": "6.0", "flag_pa": "6.0", "pa": "6.0", "flag_pg": "6.0", "pg": "6.0", "flag_py": "6.0", "py": "6.0", "flag_pe": "6.0", "pe": "6.0", "flag_ph": "6.0", "ph": "6.0", "flag_pn": "6.0", "pn": "6.0", "flag_pl": "6.0", "pl": "6.0", "flag_pt": "6.0", "pt": "6.0", "flag_pr": "6.0", "pr": "6.0", "flag_qa": "6.0", "qa": "6.0", "flag_re": "6.0", "re": "6.0", "flag_ro": "6.0", "ro": "6.0", "flag_ru": "6.0", "ru": "6.0", "flag_rw": "6.0", "rw": "6.0", "flag_ws": "6.0", "ws": "6.0", "flag_sm": "6.0", "sm": "6.0", "flag_st": "6.0", "st": "6.0", "flag_sa": "6.0", "saudiarabia": "6.0", "saudi": "6.0", "flag_sn": "6.0", "sn": "6.0", "flag_rs": "6.0", "rs": "6.0", "flag_sc": "6.0", "sc": "6.0", "flag_sl": "6.0", "sl": "6.0", "flag_sg": "6.0", "sg": "6.0", "flag_sx": "6.0", "sx": "6.0", "flag_sk": "6.0", "sk": "6.0", "flag_si": "6.0", "si": "6.0", "flag_gs": "6.0", "gs": "6.0", "flag_sb": "6.0", "sb": "6.0", "flag_so": "6.0", "so": "6.0", "flag_za": "6.0", "za": "6.0", "flag_kr": "6.0", "kr": "6.0", "flag_ss": "6.0", "ss": "6.0", "flag_es": "6.0", "es": "6.0", "flag_lk": "6.0", "lk": "6.0", "flag_bl": "6.0", "bl": "6.0", "flag_sh": "6.0", "sh": "6.0", "flag_kn": "6.0", "kn": "6.0", "flag_lc": "6.0", "lc": "6.0", "flag_pm": "6.0", "pm": "6.0", "flag_vc": "6.0", "vc": "6.0", "flag_sd": "6.0", "sd": "6.0", "flag_sr": "6.0", "sr": "6.0", "flag_sz": "6.0", "sz": "6.0", "flag_se": "6.0", "se": "6.0", "flag_ch": "6.0", "ch": "6.0", "flag_sy": "6.0", "sy": "6.0", "flag_tw": "6.0", "tw": "6.0", "flag_tj": "6.0", "tj": "6.0", "flag_tz": "6.0", "tz": "6.0", "flag_th": "6.0", "th": "6.0", "flag_tl": "6.0", "tl": "6.0", "flag_tg": "6.0", "tg": "6.0", "flag_tk": "6.0", "tk": "6.0", "flag_to": "6.0", "to": "6.0", "flag_tt": "6.0", "tt": "6.0", "flag_tn": "6.0", "tn": "6.0", "flag_tr": "6.0", "tr": "6.0", "flag_tm": "6.0", "turkmenistan": "6.0", "flag_tc": "6.0", "tc": "6.0", "flag_vi": "6.0", "vi": "6.0", "flag_tv": "6.0", "tuvalu": "6.0", "flag_ug": "6.0", "ug": "6.0", "flag_ua": "6.0", "ua": "6.0", "flag_ae": "6.0", "ae": "6.0", "flag_gb": "6.0", "gb": "6.0", "england": "7.0", "scotland": "7.0", "wales": "7.0", "flag_us": "6.0", "us": "6.0", "flag_uy": "6.0", "uy": "6.0", "flag_uz": "6.0", "uz": "6.0", "flag_vu": "6.0", "vu": "6.0", "flag_va": "6.0", "va": "6.0", "flag_ve": "6.0", "ve": "6.0", "flag_vn": "6.0", "vn": "6.0", "flag_wf": "6.0", "wf": "6.0", "flag_eh": "6.0", "eh": "6.0", "flag_ye": "6.0", "ye": "6.0", "flag_zm": "6.0", "zm": "6.0", "flag_zw": "6.0", "zw": "6.0", "flag_ac": "6.0", "ac": "6.0", "flag_bv": "6.0", "bv": "6.0", "flag_cp": "6.0", "cp": "6.0", "flag_ea": "6.0", "ea": "6.0", "flag_dg": "6.0", "dg": "6.0", "flag_hm": "6.0", "hm": "6.0", "flag_mf": "6.0", "mf": "6.0", "flag_sj": "6.0", "sj": "6.0", "flag_ta": "6.0", "ta": "6.0", "flag_um": "6.0", "um": "6.0", "united_nations": "6.0", "tone1": "8.0", "tone2": "8.0", "tone3": "8.0", "tone4": "8.0", "tone5": "8.0", "large_blue_circle": "6.0", "ten": "6.0", "wrestlers_tone1": "9.0", "wrestling_tone1": "9.0", "wrestlers_tone2": "9.0", "wrestling_tone2": "9.0", "wrestlers_tone3": "9.0", "wrestling_tone3": "9.0", "wrestlers_tone4": "9.0", "wrestling_tone4": "9.0", "wrestlers_tone5": "9.0", "wrestling_tone5": "9.0", "handshake_tone1": "9.0", "shaking_hands_tone1": "9.0", "handshake_tone2": "9.0", "shaking_hands_tone2": "9.0", "handshake_tone3": "9.0", "shaking_hands_tone3": "9.0", "handshake_tone4": "9.0", "shaking_hands_tone4": "9.0", "handshake_tone5": "9.0", "shaking_hands_tone5": "9.0" }tanuki_emoji-0.9.0/vendor/emoji-unicode-version/README.md0000644000004100000410000000307014545323276023227 0ustar www-datawww-data[![npm](https://img.shields.io/npm/v/emoji-unicode-version.svg?style=flat-square)](https://www.npmjs.com/package/emoji-unicode-version) # emoji-unicode-version Get the unicode version for a given emoji name. Useful for testing native unicode emoji support. Test a single emoji and assume any other emoji with that same version is supported. ``` npm install emoji-unicode-version ``` # Usage ```js const emojiNameToUnicodeVersion = require('emoji-unicode-version'); // 6.1 console.log(emojiNameToUnicodeVersion('grinning')); // 9.0 console.log(emojiNameToUnicodeVersion('rofl')); ``` ### Get version from unicode ```js const emojiNameToUnicodeVersion = require('emoji-unicode-version'); const emojione = require('emojione'); function unicodeToName(emojiUnicode) { const emojiShortName = emojione.toShort(emojiUnicode); const emojiName = emojiShortName.slice(1, emojiShortName.length - 1); return emojiName; } // grinning, 6.1 console.log(emojiNameToUnicodeVersion(unicodeToName('😀'))); // rofl, 9.0 console.log(emojiNameToUnicodeVersion(unicodeToName('🤣'))); ``` # About Emoji name list is pulled from [EmojiOne](https://github.com/Ranks/emojione) We grab the emoji unicode versions from [Emojipedia](http://emojipedia.org/unicode-6.1/). [ZWJ sequences](http://emojipedia.org/emoji-zwj-sequences/) use the unicode version for the highest individual emoji in the sequence. Also See - http://unicode.org/emoji/charts-beta/full-emoji-list.html - http://www.unicode.org/Public/emoji/5.0/emoji-data.txt - http://unicode.org/Public/emoji/5.0/emoji-zwj-sequences.txt tanuki_emoji-0.9.0/Dangerfile0000644000004100000410000000076714545323276016236 0ustar www-datawww-data# frozen_string_literal: true require 'gitlab-dangerfiles' Gitlab::Dangerfiles.for_project(self) do |dangerfiles| dangerfiles.import_plugins excluded_dangerfiles = [] # Skip changelog check when preparing a new release. This check fails because # CHANGELOG.md gets modified by the update-changelog job. excluded_dangerfiles << 'changelog' if plugins[Danger::Helper].modified_files.include?('lib/tanuki_emoji/version.rb') dangerfiles.import_dangerfiles(except: excluded_dangerfiles) end