Convert Figma logo to code with AI

ikatyang logoemoji-cheat-sheet

A markdown version emoji cheat sheet

12,276
4,430
12,276
70

Top Related Projects

The missing emoji library for Java :heart:

2,235

:love_letter: Find the emoji that echoes your mind.

2,363

Find relevant emoji from text on the command-line :open_mouth: :sparkles: :raised_hands: :horse: :boom: :see_no_evil:

[Archived] The world's largest independent emoji font. Maintained at https://github.com/joypixels/emoji-toolkit.

Quick Overview

The ikatyang/emoji-cheat-sheet is a comprehensive GitHub repository that provides a cheat sheet for various emoji characters and their corresponding Unicode codes. This repository serves as a valuable resource for developers, designers, and anyone who needs to work with emojis in their projects.

Pros

  • Extensive Coverage: The repository contains a wide range of emojis, covering a diverse set of categories and subcategories, making it a one-stop-shop for emoji-related information.
  • Easy Navigation: The cheat sheet is organized in a user-friendly manner, with clear categorization and search functionality, allowing users to quickly find the desired emoji.
  • Regularly Updated: The repository is actively maintained, with new emojis being added as they are released, ensuring the cheat sheet stays up-to-date.
  • Community Contribution: The project encourages community involvement, with contributors able to submit new emojis or suggest improvements, fostering a collaborative environment.

Cons

  • Limited Functionality: The repository is primarily a reference guide and does not provide any programmatic functionality or integration with other tools or platforms.
  • Potential Duplication: As the repository grows, there may be some duplication or overlap of information, which could make it slightly less efficient for users to navigate.
  • Dependency on External Resources: The cheat sheet relies on external resources, such as the Unicode Consortium, for the latest emoji updates, which could potentially introduce delays or inconsistencies.
  • Lack of Offline Access: The cheat sheet is primarily web-based, which means users need an internet connection to access the information, limiting its usefulness in offline scenarios.

Getting Started

To use the ikatyang/emoji-cheat-sheet, simply visit the GitHub repository and browse the available emojis. The cheat sheet is organized into various categories, such as "Smileys & Emotion", "People & Body", and "Animals & Nature", making it easy to find the desired emoji.

You can also use the search functionality to quickly locate a specific emoji by name or keyword. Once you've found the emoji you're looking for, you can copy the corresponding Unicode code or the emoji itself, depending on your needs.

Competitor Comparisons

The missing emoji library for Java :heart:

Pros of emoji-java

  • Provides a Java library for emoji manipulation and parsing
  • Offers methods for converting between emoji aliases, Unicode, and HTML entities
  • Includes functionality for detecting and extracting emojis from text

Cons of emoji-java

  • Limited to Java programming language
  • May require more setup and integration compared to a simple cheat sheet
  • Less frequently updated compared to emoji-cheat-sheet

Code Comparison

emoji-java:

EmojiParser.parseToUnicode(":smile:");
EmojiParser.parseToAliases("😄");
Emoji emoji = EmojiManager.getForAlias("smile");

emoji-cheat-sheet:

| :smile: | `:smile:` |
| 😄 | `:smile:` |

Summary

emoji-java is a Java library for emoji manipulation, offering programmatic access to emoji data and conversion methods. emoji-cheat-sheet, on the other hand, is a comprehensive markdown document listing emojis with their corresponding shortcodes, making it easier for quick reference and copy-pasting.

While emoji-java provides more functionality for developers working with emojis in Java applications, emoji-cheat-sheet serves as a simple, language-agnostic reference guide that can be easily integrated into various projects or used for quick lookups.

2,235

:love_letter: Find the emoji that echoes your mind.

Pros of emoji

  • Interactive web-based interface for easy emoji browsing and copying
  • Includes a search functionality for quick emoji lookup
  • Provides emoji categories for organized browsing

Cons of emoji

  • Limited to GitHub-supported emojis only
  • Less comprehensive documentation compared to emoji-cheat-sheet
  • No markdown-friendly format for easy integration into documentation

Code Comparison

emoji-cheat-sheet:

| :bowtie: `:bowtie:` | :smile: `:smile:` | :laughing: `:laughing:` |
|---|---|---|
| :blush: `:blush:` | :smiley: `:smiley:` | :relaxed: `:relaxed:` |

emoji:

<div class="emoji-wrapper">
  <button data-clipboard-text=":bowtie:" class="emoji-button">
    <span class="emoji">🤵</span>
    <span class="name">bowtie</span>
  </button>
</div>

The emoji-cheat-sheet repository provides a markdown table format, making it easy to integrate into documentation. In contrast, the emoji repository uses HTML and JavaScript to create an interactive web interface for browsing and copying emojis.

While emoji-cheat-sheet offers a more comprehensive list of emojis and their corresponding shortcodes, emoji focuses on providing a user-friendly interface for GitHub-supported emojis. The choice between the two depends on whether you need a quick reference for documentation or an interactive tool for emoji selection.

2,363

Find relevant emoji from text on the command-line :open_mouth: :sparkles: :raised_hands: :horse: :boom: :see_no_evil:

Pros of emoj

  • Command-line interface for quick emoji lookup and insertion
  • Fuzzy search functionality for finding emojis
  • Supports copying emojis to clipboard for easy use

Cons of emoj

  • Limited to command-line usage, not ideal for web or GUI applications
  • Smaller emoji database compared to emoji-cheat-sheet
  • Requires Node.js installation to run

Code comparison

emoji-cheat-sheet:

| :bowtie: `:bowtie:` | :smile: `:smile:` | :laughing: `:laughing:` |
|---|---|---|
| :blush: `:blush:` | :smiley: `:smiley:` | :relaxed: `:relaxed:` |

emoj:

#!/usr/bin/env node
'use strict';
const meow = require('meow');
const emoj = require('.');

const cli = meow(`
	Usage
	  $ emoj [text]

Summary

emoji-cheat-sheet is a comprehensive markdown-based emoji reference, ideal for documentation and web projects. It offers a wide range of emojis with their corresponding shortcodes.

emoj is a command-line tool focused on quick emoji lookup and insertion. It's more suitable for developers who prefer working in the terminal and need fast emoji access.

Both projects serve different purposes and cater to different user needs. emoji-cheat-sheet is better for reference and documentation, while emoj excels in command-line efficiency for quick emoji usage.

[Archived] The world's largest independent emoji font. Maintained at https://github.com/joypixels/emoji-toolkit.

Pros of EmojiOne

  • Comprehensive emoji library with support for multiple platforms and formats
  • Offers commercial licensing options for businesses and enterprises
  • Provides high-quality vector images for scalable emoji rendering

Cons of EmojiOne

  • Less frequently updated compared to emoji-cheat-sheet
  • Requires more setup and integration effort for developers
  • Limited free usage options, with most features behind a paywall

Code Comparison

emoji-cheat-sheet:

| :smile: | :laughing: | :blush: | :smiley: | :relaxed: |
| :smirk: | :heart_eyes: | :kissing_heart: | :kissing_closed_eyes: | :flushed: |

EmojiOne:

import { emojione } from 'emojione';

const text = "Hello! :smile: How are you? :blush:";
const convertedText = emojione.toImage(text);

The emoji-cheat-sheet provides a simple markdown-based reference for emoji codes, while EmojiOne offers a more robust JavaScript library for converting emoji shortcodes to images. emoji-cheat-sheet is better suited for quick reference and documentation, whereas EmojiOne is more appropriate for implementing emoji support in applications and websites.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

emoji-cheat-sheet

Up to Date

This cheat sheet is automatically generated from GitHub Emoji API and Unicode Full Emoji List.

Table of Contents

Smileys & Emotion

Face Smiling

icoshortcodeicoshortcode
top:grinning::grinning::smiley::smiley:top
top:smile::smile::grin::grin:top
top:laughing::laughing:
:satisfied:
:sweat_smile::sweat_smile:top
top:rofl::rofl::joy::joy:top
top:slightly_smiling_face::slightly_smiling_face::upside_down_face::upside_down_face:top
top:wink::wink::blush::blush:top
top:innocent::innocent:top

Face Affection

icoshortcodeicoshortcode
top:smiling_face_with_three_hearts::smiling_face_with_three_hearts::heart_eyes::heart_eyes:top
top:star_struck::star_struck::kissing_heart::kissing_heart:top
top:kissing::kissing::relaxed::relaxed:top
top:kissing_closed_eyes::kissing_closed_eyes::kissing_smiling_eyes::kissing_smiling_eyes:top
top:smiling_face_with_tear::smiling_face_with_tear:top

Face Tongue

icoshortcodeicoshortcode
top:yum::yum::stuck_out_tongue::stuck_out_tongue:top
top:stuck_out_tongue_winking_eye::stuck_out_tongue_winking_eye::zany_face::zany_face:top
top:stuck_out_tongue_closed_eyes::stuck_out_tongue_closed_eyes::money_mouth_face::money_mouth_face:top

Face Hand

icoshortcodeicoshortcode
top:hugs::hugs::hand_over_mouth::hand_over_mouth:top
top:shushing_face::shushing_face::thinking::thinking:top

Face Neutral Skeptical

icoshortcodeicoshortcode
top:zipper_mouth_face::zipper_mouth_face::raised_eyebrow::raised_eyebrow:top
top:neutral_face::neutral_face::expressionless::expressionless:top
top:no_mouth::no_mouth::face_in_clouds::face_in_clouds:top
top:smirk::smirk::unamused::unamused:top
top:roll_eyes::roll_eyes::grimacing::grimacing:top
top:face_exhaling::face_exhaling::lying_face::lying_face:top

Face Sleepy

icoshortcodeicoshortcode
top:relieved::relieved::pensive::pensive:top
top:sleepy::sleepy::drooling_face::drooling_face:top
top:sleeping::sleeping:top

Face Unwell

icoshortcodeicoshortcode
top:mask::mask::face_with_thermometer::face_with_thermometer:top
top:face_with_head_bandage::face_with_head_bandage::nauseated_face::nauseated_face:top
top:vomiting_face::vomiting_face::sneezing_face::sneezing_face:top
top:hot_face::hot_face::cold_face::cold_face:top
top:woozy_face::woozy_face::dizzy_face::dizzy_face:top
top:face_with_spiral_eyes::face_with_spiral_eyes::exploding_head::exploding_head:top

Face Hat

icoshortcodeicoshortcode
top:cowboy_hat_face::cowboy_hat_face::partying_face::partying_face:top
top:disguised_face::disguised_face:top

Face Glasses

icoshortcodeicoshortcode
top:sunglasses::sunglasses::nerd_face::nerd_face:top
top:monocle_face::monocle_face:top

Face Concerned

icoshortcodeicoshortcode
top:confused::confused::worried::worried:top
top:slightly_frowning_face::slightly_frowning_face::frowning_face::frowning_face:top
top:open_mouth::open_mouth::hushed::hushed:top
top:astonished::astonished::flushed::flushed:top
top:pleading_face::pleading_face::frowning::frowning:top
top:anguished::anguished::fearful::fearful:top
top:cold_sweat::cold_sweat::disappointed_relieved::disappointed_relieved:top
top:cry::cry::sob::sob:top
top:scream::scream::confounded::confounded:top
top:persevere::persevere::disappointed::disappointed:top
top:sweat::sweat::weary::weary:top
top:tired_face::tired_face::yawning_face::yawning_face:top

Face Negative

icoshortcodeicoshortcode
top:triumph::triumph::pout::pout:
:rage:
top
top:angry::angry::cursing_face::cursing_face:top
top:smiling_imp::smiling_imp::imp::imp:top
top:skull::skull::skull_and_crossbones::skull_and_crossbones:top

Face Costume

icoshortcodeicoshortcode
top:hankey::hankey:
:poop:
:shit:
:clown_face::clown_face:top
top:japanese_ogre::japanese_ogre::japanese_goblin::japanese_goblin:top
top:ghost::ghost::alien::alien:top
top:space_invader::space_invader::robot::robot:top

Cat Face

icoshortcodeicoshortcode
top:smiley_cat::smiley_cat::smile_cat::smile_cat:top
top:joy_cat::joy_cat::heart_eyes_cat::heart_eyes_cat:top
top:smirk_cat::smirk_cat::kissing_cat::kissing_cat:top
top:scream_cat::scream_cat::crying_cat_face::crying_cat_face:top
top:pouting_cat::pouting_cat:top

Monkey Face

icoshortcodeicoshortcode
top:see_no_evil::see_no_evil::hear_no_evil::hear_no_evil:top
top:speak_no_evil::speak_no_evil:top

Heart

icoshortcodeicoshortcode
top:love_letter::love_letter::cupid::cupid:top
top:gift_heart::gift_heart::sparkling_heart::sparkling_heart:top
top:heartpulse::heartpulse::heartbeat::heartbeat:top
top:revolving_hearts::revolving_hearts::two_hearts::two_hearts:top
top:heart_decoration::heart_decoration::heavy_heart_exclamation::heavy_heart_exclamation:top
top:broken_heart::broken_heart::heart_on_fire::heart_on_fire:top
top:mending_heart::mending_heart::heart::heart:top
top:orange_heart::orange_heart::yellow_heart::yellow_heart:top
top:green_heart::green_heart::blue_heart::blue_heart:top
top:purple_heart::purple_heart::brown_heart::brown_heart:top
top:black_heart::black_heart::white_heart::white_heart:top

Emotion

icoshortcodeicoshortcode
top:kiss::kiss::100::100:top
top:anger::anger::boom::boom:
:collision:
top
top:dizzy::dizzy::sweat_drops::sweat_drops:top
top:dash::dash::hole::hole:top
top:speech_balloon::speech_balloon::eye_speech_bubble::eye_speech_bubble:top
top:left_speech_bubble::left_speech_bubble::right_anger_bubble::right_anger_bubble:top
top:thought_balloon::thought_balloon::zzz::zzz:top

People & Body

Hand Fingers Open

icoshortcodeicoshortcode
top:wave::wave::raised_back_of_hand::raised_back_of_hand:top
top:raised_hand_with_fingers_splayed::raised_hand_with_fingers_splayed::hand::hand:
:raised_hand:
top
top:vulcan_salute::vulcan_salute:top

Hand Fingers Partial

icoshortcodeicoshortcode
top:ok_hand::ok_hand::pinched_fingers::pinched_fingers:top
top:pinching_hand::pinching_hand::v::v:top
top:crossed_fingers::crossed_fingers::love_you_gesture::love_you_gesture:top
top:metal::metal::call_me_hand::call_me_hand:top

Hand Single Finger

icoshortcodeicoshortcode
top:point_left::point_left::point_right::point_right:top
top:point_up_2::point_up_2::fu::fu:
:middle_finger:
top
top:point_down::point_down::point_up::point_up:top

Hand Fingers Closed

icoshortcodeicoshortcode
top:+1::+1:
:thumbsup:
:-1::-1:
:thumbsdown:
top
top:fist::fist:
:fist_raised:
:facepunch::facepunch:
:fist_oncoming:
:punch:
top
top:fist_left::fist_left::fist_right::fist_right:top

Hands

icoshortcodeicoshortcode
top:clap::clap::raised_hands::raised_hands:top
top:open_hands::open_hands::palms_up_together::palms_up_together:top
top:handshake::handshake::pray::pray:top

Hand Prop

icoshortcodeicoshortcode
top:writing_hand::writing_hand::nail_care::nail_care:top
top:selfie::selfie:top

Body Parts

icoshortcodeicoshortcode
top:muscle::muscle::mechanical_arm::mechanical_arm:top
top:mechanical_leg::mechanical_leg::leg::leg:top
top:foot::foot::ear::ear:top
top:ear_with_hearing_aid::ear_with_hearing_aid::nose::nose:top
top:brain::brain::anatomical_heart::anatomical_heart:top
top:lungs::lungs::tooth::tooth:top
top:bone::bone::eyes::eyes:top
top:eye::eye::tongue::tongue:top
top:lips::lips:top

Person

icoshortcodeicoshortcode
top:baby::baby::child::child:top
top:boy::boy::girl::girl:top
top:adult::adult::blond_haired_person::blond_haired_person:top
top:man::man::bearded_person::bearded_person:top
top:man_beard::man_beard::woman_beard::woman_beard:top
top:red_haired_man::red_haired_man::curly_haired_man::curly_haired_man:top
top:white_haired_man::white_haired_man::bald_man::bald_man:top
top:woman::woman::red_haired_woman::red_haired_woman:top
top:person_red_hair::person_red_hair::curly_haired_woman::curly_haired_woman:top
top:person_curly_hair::person_curly_hair::white_haired_woman::white_haired_woman:top
top:person_white_hair::person_white_hair::bald_woman::bald_woman:top
top:person_bald::person_bald::blond_haired_woman::blond_haired_woman:
:blonde_woman:
top
top:blond_haired_man::blond_haired_man::older_adult::older_adult:top
top:older_man::older_man::older_woman::older_woman:top

Person Gesture

icoshortcodeicoshortcode
top:frowning_person::frowning_person::frowning_man::frowning_man:top
top:frowning_woman::frowning_woman::pouting_face::pouting_face:top
top:pouting_man::pouting_man::pouting_woman::pouting_woman:top
top:no_good::no_good::ng_man::ng_man:
:no_good_man:
top
top:ng_woman::ng_woman:
:no_good_woman:
:ok_person::ok_person:top
top:ok_man::ok_man::ok_woman::ok_woman:top
top:information_desk_person::information_desk_person:
:tipping_hand_person:
:sassy_man::sassy_man:
:tipping_hand_man:
top
top:sassy_woman::sassy_woman:
:tipping_hand_woman:
:raising_hand::raising_hand:top
top:raising_hand_man::raising_hand_man::raising_hand_woman::raising_hand_woman:top
top:deaf_person::deaf_person::deaf_man::deaf_man:top
top:deaf_woman::deaf_woman::bow::bow:top
top:bowing_man::bowing_man::bowing_woman::bowing_woman:top
top:facepalm::facepalm::man_facepalming::man_facepalming:top
top:woman_facepalming::woman_facepalming::shrug::shrug:top
top:man_shrugging::man_shrugging::woman_shrugging::woman_shrugging:top

Person Role

icoshortcodeicoshortcode
top:health_worker::health_worker::man_health_worker::man_health_worker:top
top:woman_health_worker::woman_health_worker::student::student:top
top:man_student::man_student::woman_student::woman_student:top
top:teacher::teacher::man_teacher::man_teacher:top
top:woman_teacher::woman_teacher::judge::judge:top
top:man_judge::man_judge::woman_judge::woman_judge:top
top:farmer::farmer::man_farmer::man_farmer:top
top:woman_farmer::woman_farmer::cook::cook:top
top:man_cook::man_cook::woman_cook::woman_cook:top
top:mechanic::mechanic::man_mechanic::man_mechanic:top
top:woman_mechanic::woman_mechanic::factory_worker::factory_worker:top
top:man_factory_worker::man_factory_worker::woman_factory_worker::woman_factory_worker:top
top:office_worker::office_worker::man_office_worker::man_office_worker:top
top:woman_office_worker::woman_office_worker::scientist::scientist:top
top:man_scientist::man_scientist::woman_scientist::woman_scientist:top
top:technologist::technologist::man_technologist::man_technologist:top
top:woman_technologist::woman_technologist::singer::singer:top
top:man_singer::man_singer::woman_singer::woman_singer:top
top:artist::artist::man_artist::man_artist:top
top:woman_artist::woman_artist::pilot::pilot:top
top:man_pilot::man_pilot::woman_pilot::woman_pilot:top
top:astronaut::astronaut::man_astronaut::man_astronaut:top
top:woman_astronaut::woman_astronaut::firefighter::firefighter:top
top:man_firefighter::man_firefighter::woman_firefighter::woman_firefighter:top
top:cop::cop:
:police_officer:
:policeman::policeman:top
top:policewoman::policewoman::detective::detective:top
top:male_detective::male_detective::female_detective::female_detective:top
top:guard::guard::guardsman::guardsman:top
top:guardswoman::guardswoman::ninja::ninja:top
top:construction_worker::construction_worker::construction_worker_man::construction_worker_man:top
top:construction_worker_woman::construction_worker_woman::prince::prince:top
top:princess::princess::person_with_turban::person_with_turban:top
top:man_with_turban::man_with_turban::woman_with_turban::woman_with_turban:top
top:man_with_gua_pi_mao::man_with_gua_pi_mao::woman_with_headscarf::woman_with_headscarf:top
top:person_in_tuxedo::person_in_tuxedo::man_in_tuxedo::man_in_tuxedo:top
top:woman_in_tuxedo::woman_in_tuxedo::person_with_veil::person_with_veil:top
top:man_with_veil::man_with_veil::bride_with_veil::bride_with_veil:
:woman_with_veil:
top
top:pregnant_woman::pregnant_woman::breast_feeding::breast_feeding:top
top:woman_feeding_baby::woman_feeding_baby::man_feeding_baby::man_feeding_baby:top
top:person_feeding_baby::person_feeding_baby:top

Person Fantasy

icoshortcodeicoshortcode
top:angel::angel::santa::santa:top
top:mrs_claus::mrs_claus::mx_claus::mx_claus:top
top:superhero::superhero::superhero_man::superhero_man:top
top:superhero_woman::superhero_woman::supervillain::supervillain:top
top:supervillain_man::supervillain_man::supervillain_woman::supervillain_woman:top
top:mage::mage::mage_man::mage_man:top
top:mage_woman::mage_woman::fairy::fairy:top
top:fairy_man::fairy_man::fairy_woman::fairy_woman:top
top:vampire::vampire::vampire_man::vampire_man:top
top:vampire_woman::vampire_woman::merperson::merperson:top
top:merman::merman::mermaid::mermaid:top
top:elf::elf::elf_man::elf_man:top
top:elf_woman::elf_woman::genie::genie:top
top:genie_man::genie_man::genie_woman::genie_woman:top
top:zombie::zombie::zombie_man::zombie_man:top
top:zombie_woman::zombie_woman:top

Person Activity

icoshortcodeicoshortcode
top:massage::massage::massage_man::massage_man:top
top:massage_woman::massage_woman::haircut::haircut:top
top:haircut_man::haircut_man::haircut_woman::haircut_woman:top
top:walking::walking::walking_man::walking_man:top
top:walking_woman::walking_woman::standing_person::standing_person:top
top:standing_man::standing_man::standing_woman::standing_woman:top
top:kneeling_person::kneeling_person::kneeling_man::kneeling_man:top
top:kneeling_woman::kneeling_woman::person_with_probing_cane::person_with_probing_cane:top
top:man_with_probing_cane::man_with_probing_cane::woman_with_probing_cane::woman_with_probing_cane:top
top:person_in_motorized_wheelchair::person_in_motorized_wheelchair::man_in_motorized_wheelchair::man_in_motorized_wheelchair:top
top:woman_in_motorized_wheelchair::woman_in_motorized_wheelchair::person_in_manual_wheelchair::person_in_manual_wheelchair:top
top:man_in_manual_wheelchair::man_in_manual_wheelchair::woman_in_manual_wheelchair::woman_in_manual_wheelchair:top
top:runner::runner:
:running:
:running_man::running_man:top
top:running_woman::running_woman::dancer::dancer:
:woman_dancing:
top
top:man_dancing::man_dancing::business_suit_levitating::business_suit_levitating:top
top:dancers::dancers::dancing_men::dancing_men:top
top:dancing_women::dancing_women::sauna_person::sauna_person:top
top:sauna_man::sauna_man::sauna_woman::sauna_woman:top
top:climbing::climbing::climbing_man::climbing_man:top
top:climbing_woman::climbing_woman:top

Person Sport

icoshortcodeicoshortcode
top:person_fencing::person_fencing::horse_racing::horse_racing:top
top:skier::skier::snowboarder::snowboarder:top
top:golfing::golfing::golfing_man::golfing_man:top
top:golfing_woman::golfing_woman::surfer::surfer:top
top:surfing_man::surfing_man::surfing_woman::surfing_woman:top
top:rowboat::rowboat::rowing_man::rowing_man:top
top:rowing_woman::rowing_woman::swimmer::swimmer:top
top:swimming_man::swimming_man::swimming_woman::swimming_woman:top
top:bouncing_ball_person::bouncing_ball_person::basketball_man::basketball_man:
:bouncing_ball_man:
top
top:basketball_woman::basketball_woman:
:bouncing_ball_woman:
:weight_lifting::weight_lifting:top
top:weight_lifting_man::weight_lifting_man::weight_lifting_woman::weight_lifting_woman:top
top:bicyclist::bicyclist::biking_man::biking_man:top
top:biking_woman::biking_woman::mountain_bicyclist::mountain_bicyclist:top
top:mountain_biking_man::mountain_biking_man::mountain_biking_woman::mountain_biking_woman:top
top:cartwheeling::cartwheeling::man_cartwheeling::man_cartwheeling:top
top:woman_cartwheeling::woman_cartwheeling::wrestling::wrestling:top
top:men_wrestling::men_wrestling::women_wrestling::women_wrestling:top
top:water_polo::water_polo::man_playing_water_polo::man_playing_water_polo:top
top:woman_playing_water_polo::woman_playing_water_polo::handball_person::handball_person:top
top:man_playing_handball::man_playing_handball::woman_playing_handball::woman_playing_handball:top
top:juggling_person::juggling_person::man_juggling::man_juggling:top
top:woman_juggling::woman_juggling:top

Person Resting

icoshortcodeicoshortcode
top:lotus_position::lotus_position::lotus_position_man::lotus_position_man:top
top:lotus_position_woman::lotus_position_woman::bath::bath:top
top:sleeping_bed::sleeping_bed:top

Family

icoshortcodeicoshortcode
top:people_holding_hands::people_holding_hands::two_women_holding_hands::two_women_holding_hands:top
top:couple::couple::two_men_holding_hands::two_men_holding_hands:top
top:couplekiss::couplekiss::couplekiss_man_woman::couplekiss_man_woman:top
top:couplekiss_man_man::couplekiss_man_man::couplekiss_woman_woman::couplekiss_woman_woman:top
top:couple_with_heart::couple_with_heart::couple_with_heart_woman_man::couple_with_heart_woman_man:top
top:couple_with_heart_man_man::couple_with_heart_man_man::couple_with_heart_woman_woman::couple_with_heart_woman_woman:top
top:family_man_woman_boy::family_man_woman_boy::family_man_woman_girl::family_man_woman_girl:top
top:family_man_woman_girl_boy::family_man_woman_girl_boy::family_man_woman_boy_boy::family_man_woman_boy_boy:top
top:family_man_woman_girl_girl::family_man_woman_girl_girl::family_man_man_boy::family_man_man_boy:top
top:family_man_man_girl::family_man_man_girl::family_man_man_girl_boy::family_man_man_girl_boy:top
top:family_man_man_boy_boy::family_man_man_boy_boy::family_man_man_girl_girl::family_man_man_girl_girl:top
top:family_woman_woman_boy::family_woman_woman_boy::family_woman_woman_girl::family_woman_woman_girl:top
top:family_woman_woman_girl_boy::family_woman_woman_girl_boy::family_woman_woman_boy_boy::family_woman_woman_boy_boy:top
top:family_woman_woman_girl_girl::family_woman_woman_girl_girl::family_man_boy::family_man_boy:top
top:family_man_boy_boy::family_man_boy_boy::family_man_girl::family_man_girl:top
top:family_man_girl_boy::family_man_girl_boy::family_man_girl_girl::family_man_girl_girl:top
top:family_woman_boy::family_woman_boy::family_woman_boy_boy::family_woman_boy_boy:top
top:family_woman_girl::family_woman_girl::family_woman_girl_boy::family_woman_girl_boy:top
top:family_woman_girl_girl::family_woman_girl_girl:top

Person Symbol

icoshortcodeicoshortcode
top:speaking_head::speaking_head::bust_in_silhouette::bust_in_silhouette:top
top:busts_in_silhouette::busts_in_silhouette::people_hugging::people_hugging:top
top:family::family::footprints::footprints:top

Animals & Nature

Animal Mammal

icoshortcodeicoshortcode
top:monkey_face::monkey_face::monkey::monkey:top
top:gorilla::gorilla::orangutan::orangutan:top
top:dog::dog::dog2::dog2:top
top:guide_dog::guide_dog::service_dog::service_dog:top
top:poodle::poodle::wolf::wolf:top
top:fox_face::fox_face::raccoon::raccoon:top
top:cat::cat::cat2::cat2:top
top:black_cat::black_cat::lion::lion:top
top:tiger::tiger::tiger2::tiger2:top
top:leopard::leopard::horse::horse:top
top:racehorse::racehorse::unicorn::unicorn:top
top:zebra::zebra::deer::deer:top
top:bison::bison::cow::cow:top
top:ox::ox::water_buffalo::water_buffalo:top
top:cow2::cow2::pig::pig:top
top:pig2::pig2::boar::boar:top
top:pig_nose::pig_nose::ram::ram:top
top:sheep::sheep::goat::goat:top
top:dromedary_camel::dromedary_camel::camel::camel:top
top:llama::llama::giraffe::giraffe:top
top:elephant::elephant::mammoth::mammoth:top
top:rhinoceros::rhinoceros::hippopotamus::hippopotamus:top
top:mouse::mouse::mouse2::mouse2:top
top:rat::rat::hamster::hamster:top
top:rabbit::rabbit::rabbit2::rabbit2:top
top:chipmunk::chipmunk::beaver::beaver:top
top:hedgehog::hedgehog::bat::bat:top
top:bear::bear::polar_bear::polar_bear:top
top:koala::koala::panda_face::panda_face:top
top:sloth::sloth::otter::otter:top
top:skunk::skunk::kangaroo::kangaroo:top
top:badger::badger::feet::feet:
:paw_prints:
top

Animal Bird

icoshortcodeicoshortcode
top:turkey::turkey::chicken::chicken:top
top:rooster::rooster::hatching_chick::hatching_chick:top
top:baby_chick::baby_chick::hatched_chick::hatched_chick:top
top:bird::bird::penguin::penguin:top
top:dove::dove::eagle::eagle:top
top:duck::duck::swan::swan:top
top:owl::owl::dodo::dodo:top
top:feather::feather::flamingo::flamingo:top
top:peacock::peacock::parrot::parrot:top

Animal Amphibian

icoshortcode
top:frog::frog:top

Animal Reptile

icoshortcodeicoshortcode
top:crocodile::crocodile::turtle::turtle:top
top:lizard::lizard::snake::snake:top
top:dragon_face::dragon_face::dragon::dragon:top
top:sauropod::sauropod::t-rex::t-rex:top

Animal Marine

icoshortcodeicoshortcode
top:whale::whale::whale2::whale2:top
top:dolphin::dolphin:
:flipper:
:seal::seal:top
top:fish::fish::tropical_fish::tropical_fish:top
top:blowfish::blowfish::shark::shark:top
top:octopus::octopus::shell::shell:top

Animal Bug

icoshortcodeicoshortcode
top:snail::snail::butterfly::butterfly:top
top:bug::bug::ant::ant:top
top:bee::bee:
:honeybee:
:beetle::beetle:top
top:lady_beetle::lady_beetle::cricket::cricket:top
top:cockroach::cockroach::spider::spider:top
top:spider_web::spider_web::scorpion::scorpion:top
top:mosquito::mosquito::fly::fly:top
top:worm::worm::microbe::microbe:top

Plant Flower

icoshortcodeicoshortcode
top:bouquet::bouquet::cherry_blossom::cherry_blossom:top
top:white_flower::white_flower::rosette::rosette:top
top:rose::rose::wilted_flower::wilted_flower:top
top:hibiscus::hibiscus::sunflower::sunflower:top
top:blossom::blossom::tulip::tulip:top

Plant Other

icoshortcodeicoshortcode
top:seedling::seedling::potted_plant::potted_plant:top
top:evergreen_tree::evergreen_tree::deciduous_tree::deciduous_tree:top
top:palm_tree::palm_tree::cactus::cactus:top
top:ear_of_rice::ear_of_rice::herb::herb:top
top:shamrock::shamrock::four_leaf_clover::four_leaf_clover:top
top:maple_leaf::maple_leaf::fallen_leaf::fallen_leaf:top
top:leaves::leaves::mushroom::mushroom:top

Food & Drink

Food Fruit

icoshortcodeicoshortcode
top:grapes::grapes::melon::melon:top
top:watermelon::watermelon::mandarin::mandarin:
:orange:
:tangerine:
top
top:lemon::lemon::banana::banana:top
top:pineapple::pineapple::mango::mango:top
top:apple::apple::green_apple::green_apple:top
top:pear::pear::peach::peach:top
top:cherries::cherries::strawberry::strawberry:top
top:blueberries::blueberries::kiwi_fruit::kiwi_fruit:top
top:tomato::tomato::olive::olive:top
top:coconut::coconut:top

Food Vegetable

icoshortcodeicoshortcode
top:avocado::avocado::eggplant::eggplant:top
top:potato::potato::carrot::carrot:top
top:corn::corn::hot_pepper::hot_pepper:top
top:bell_pepper::bell_pepper::cucumber::cucumber:top
top:leafy_green::leafy_green::broccoli::broccoli:top
top:garlic::garlic::onion::onion:top
top:peanuts::peanuts::chestnut::chestnut:top

Food Prepared

icoshortcodeicoshortcode
top:bread::bread::croissant::croissant:top
top:baguette_bread::baguette_bread::flatbread::flatbread:top
top:pretzel::pretzel::bagel::bagel:top
top:pancakes::pancakes::waffle::waffle:top
top:cheese::cheese::meat_on_bone::meat_on_bone:top
top:poultry_leg::poultry_leg::cut_of_meat::cut_of_meat:top
top:bacon::bacon::hamburger::hamburger:top
top:fries::fries::pizza::pizza:top
top:hotdog::hotdog::sandwich::sandwich:top
top:taco::taco::burrito::burrito:top
top:tamale::tamale::stuffed_flatbread::stuffed_flatbread:top
top:falafel::falafel::egg::egg:top
top:fried_egg::fried_egg::shallow_pan_of_food::shallow_pan_of_food:top
top:stew::stew::fondue::fondue:top
top:bowl_with_spoon::bowl_with_spoon::green_salad::green_salad:top
top:popcorn::popcorn::butter::butter:top
top:salt::salt::canned_food::canned_food:top

Food Asian

icoshortcodeicoshortcode
top:bento::bento::rice_cracker::rice_cracker:top
top:rice_ball::rice_ball::rice::rice:top
top:curry::curry::ramen::ramen:top
top:spaghetti::spaghetti::sweet_potato::sweet_potato:top
top:oden::oden::sushi::sushi:top
top:fried_shrimp::fried_shrimp::fish_cake::fish_cake:top
top:moon_cake::moon_cake::dango::dango:top
top:dumpling::dumpling::fortune_cookie::fortune_cookie:top
top:takeout_box::takeout_box:top

Food Marine

icoshortcodeicoshortcode
top:crab::crab::lobster::lobster:top
top:shrimp::shrimp::squid::squid:top
top:oyster::oyster:top

Food Sweet

icoshortcodeicoshortcode
top:icecream::icecream::shaved_ice::shaved_ice:top
top:ice_cream::ice_cream::doughnut::doughnut:top
top:cookie::cookie::birthday::birthday:top
top:cake::cake::cupcake::cupcake:top
top:pie::pie::chocolate_bar::chocolate_bar:top
top:candy::candy::lollipop::lollipop:top
top:custard::custard::honey_pot::honey_pot:top

Drink

icoshortcodeicoshortcode
top:baby_bottle::baby_bottle::milk_glass::milk_glass:top
top:coffee::coffee::teapot::teapot:top
top:tea::tea::sake::sake:top
top:champagne::champagne::wine_glass::wine_glass:top
top:cocktail::cocktail::tropical_drink::tropical_drink:top
top:beer::beer::beers::beers:top
top:clinking_glasses::clinking_glasses::tumbler_glass::tumbler_glass:top
top:cup_with_straw::cup_with_straw::bubble_tea::bubble_tea:top
top:beverage_box::beverage_box::mate::mate:top
top:ice_cube::ice_cube:top

Dishware

icoshortcodeicoshortcode
top:chopsticks::chopsticks::plate_with_cutlery::plate_with_cutlery:top
top:fork_and_knife::fork_and_knife::spoon::spoon:top
top:hocho::hocho:
:knife:
:amphora::amphora:top

Travel & Places

Place Map

icoshortcodeicoshortcode
top:earth_africa::earth_africa::earth_americas::earth_americas:top
top:earth_asia::earth_asia::globe_with_meridians::globe_with_meridians:top
top:world_map::world_map::japan::japan:top
top:compass::compass:top

Place Geographic

icoshortcodeicoshortcode
top:mountain_snow::mountain_snow::mountain::mountain:top
top:volcano::volcano::mount_fuji::mount_fuji:top
top:camping::camping::beach_umbrella::beach_umbrella:top
top:desert::desert::desert_island::desert_island:top
top:national_park::national_park:top

Place Building

icoshortcodeicoshortcode
top:stadium::stadium::classical_building::classical_building:top
top:building_construction::building_construction::bricks::bricks:top
top:rock::rock::wood::wood:top
top:hut::hut::houses::houses:top
top:derelict_house::derelict_house::house::house:top
top:house_with_garden::house_with_garden::office::office:top
top:post_office::post_office::european_post_office::european_post_office:top
top:hospital::hospital::bank::bank:top
top:hotel::hotel::love_hotel::love_hotel:top
top:convenience_store::convenience_store::school::school:top
top:department_store::department_store::factory::factory:top
top:japanese_castle::japanese_castle::european_castle::european_castle:top
top:wedding::wedding::tokyo_tower::tokyo_tower:top
top:statue_of_liberty::statue_of_liberty:top

Place Religious

icoshortcodeicoshortcode
top:church::church::mosque::mosque:top
top:hindu_temple::hindu_temple::synagogue::synagogue:top
top:shinto_shrine::shinto_shrine::kaaba::kaaba:top

Place Other

icoshortcodeicoshortcode
top:fountain::fountain::tent::tent:top
top:foggy::foggy::night_with_stars::night_with_stars:top
top:cityscape::cityscape::sunrise_over_mountains::sunrise_over_mountains:top
top:sunrise::sunrise::city_sunset::city_sunset:top
top:city_sunrise::city_sunrise::bridge_at_night::bridge_at_night:top
top:hotsprings::hotsprings::carousel_horse::carousel_horse:top
top:ferris_wheel::ferris_wheel::roller_coaster::roller_coaster:top
top:barber::barber::circus_tent::circus_tent:top

Transport Ground

icoshortcodeicoshortcode
top:steam_locomotive::steam_locomotive::railway_car::railway_car:top
top:bullettrain_side::bullettrain_side::bullettrain_front::bullettrain_front:top
top:train2::train2::metro::metro:top
top:light_rail::light_rail::station::station:top
top:tram::tram::monorail::monorail:top
top:mountain_railway::mountain_railway::train::train:top
top:bus::bus::oncoming_bus::oncoming_bus:top
top:trolleybus::trolleybus::minibus::minibus:top
top:ambulance::ambulance::fire_engine::fire_engine:top
top:police_car::police_car::oncoming_police_car::oncoming_police_car:top
top:taxi::taxi::oncoming_taxi::oncoming_taxi:top
top:car::car:
:red_car:
:oncoming_automobile::oncoming_automobile:top
top:blue_car::blue_car::pickup_truck::pickup_truck:top
top:truck::truck::articulated_lorry::articulated_lorry:top
top:tractor::tractor::racing_car::racing_car:top
top:motorcycle::motorcycle::motor_scooter::motor_scooter:top
top:manual_wheelchair::manual_wheelchair::motorized_wheelchair::motorized_wheelchair:top
top:auto_rickshaw::auto_rickshaw::bike::bike:top
top:kick_scooter::kick_scooter::skateboard::skateboard:top
top:roller_skate::roller_skate::busstop::busstop:top
top:motorway::motorway::railway_track::railway_track:top
top:oil_drum::oil_drum::fuelpump::fuelpump:top
top:rotating_light::rotating_light::traffic_light::traffic_light:top
top:vertical_traffic_light::vertical_traffic_light::stop_sign::stop_sign:top
top:construction::construction:top

Transport Water

icoshortcodeicoshortcode
top:anchor::anchor::boat::boat:
:sailboat:
top
top:canoe::canoe::speedboat::speedboat:top
top:passenger_ship::passenger_ship::ferry::ferry:top
top:motor_boat::motor_boat::ship::ship:top

Transport Air

icoshortcodeicoshortcode
top:airplane::airplane::small_airplane::small_airplane:top
top:flight_departure::flight_departure::flight_arrival::flight_arrival:top
top:parachute::parachute::seat::seat:top
top:helicopter::helicopter::suspension_railway::suspension_railway:top
top:mountain_cableway::mountain_cableway::aerial_tramway::aerial_tramway:top
top:artificial_satellite::artificial_satellite::rocket::rocket:top
top:flying_saucer::flying_saucer:top

Hotel

icoshortcodeicoshortcode
top:bellhop_bell::bellhop_bell::luggage::luggage:top

Time

icoshortcodeicoshortcode
top:hourglass::hourglass::hourglass_flowing_sand::hourglass_flowing_sand:top
top:watch::watch::alarm_clock::alarm_clock:top
top:stopwatch::stopwatch::timer_clock::timer_clock:top
top:mantelpiece_clock::mantelpiece_clock::clock12::clock12:top
top:clock1230::clock1230::clock1::clock1:top
top:clock130::clock130::clock2::clock2:top
top:clock230::clock230::clock3::clock3:top
top:clock330::clock330::clock4::clock4:top
top:clock430::clock430::clock5::clock5:top
top:clock530::clock530::clock6::clock6:top
top:clock630::clock630::clock7::clock7:top
top:clock730::clock730::clock8::clock8:top
top:clock830::clock830::clock9::clock9:top
top:clock930::clock930::clock10::clock10:top
top:clock1030::clock1030::clock11::clock11:top
top:clock1130::clock1130:top

Sky & Weather

icoshortcodeicoshortcode
top:new_moon::new_moon::waxing_crescent_moon::waxing_crescent_moon:top
top:first_quarter_moon::first_quarter_moon::moon::moon:
:waxing_gibbous_moon:
top
top:full_moon::full_moon::waning_gibbous_moon::waning_gibbous_moon:top
top:last_quarter_moon::last_quarter_moon::waning_crescent_moon::waning_crescent_moon:top
top:crescent_moon::crescent_moon::new_moon_with_face::new_moon_with_face:top
top:first_quarter_moon_with_face::first_quarter_moon_with_face::last_quarter_moon_with_face::last_quarter_moon_with_face:top
top:thermometer::thermometer::sunny::sunny:top
top:full_moon_with_face::full_moon_with_face::sun_with_face::sun_with_face:top
top:ringed_planet::ringed_planet::star::star:top
top:star2::star2::stars::stars:top
top:milky_way::milky_way::cloud::cloud:top
top:partly_sunny::partly_sunny::cloud_with_lightning_and_rain::cloud_with_lightning_and_rain:top
top:sun_behind_small_cloud::sun_behind_small_cloud::sun_behind_large_cloud::sun_behind_large_cloud:top
top:sun_behind_rain_cloud::sun_behind_rain_cloud::cloud_with_rain::cloud_with_rain:top
top:cloud_with_snow::cloud_with_snow::cloud_with_lightning::cloud_with_lightning:top
top:tornado::tornado::fog::fog:top
top:wind_face::wind_face::cyclone::cyclone:top
top:rainbow::rainbow::closed_umbrella::closed_umbrella:top
top:open_umbrella::open_umbrella::umbrella::umbrella:top
top:parasol_on_ground::parasol_on_ground::zap::zap:top
top:snowflake::snowflake::snowman_with_snow::snowman_with_snow:top
top:snowman::snowman::comet::comet:top
top:fire::fire::droplet::droplet:top
top:ocean::ocean:top

Activities

Event

icoshortcodeicoshortcode
top:jack_o_lantern::jack_o_lantern::christmas_tree::christmas_tree:top
top:fireworks::fireworks::sparkler::sparkler:top
top:firecracker::firecracker::sparkles::sparkles:top
top:balloon::balloon::tada::tada:top
top:confetti_ball::confetti_ball::tanabata_tree::tanabata_tree:top
top:bamboo::bamboo::dolls::dolls:top
top:flags::flags::wind_chime::wind_chime:top
top:rice_scene::rice_scene::red_envelope::red_envelope:top
top:ribbon::ribbon::gift::gift:top
top:reminder_ribbon::reminder_ribbon::tickets::tickets:top
top:ticket::ticket:top

Award Medal

icoshortcodeicoshortcode
top:medal_military::medal_military::trophy::trophy:top
top:medal_sports::medal_sports::1st_place_medal::1st_place_medal:top
top:2nd_place_medal::2nd_place_medal::3rd_place_medal::3rd_place_medal:top

Sport

icoshortcodeicoshortcode
top:soccer::soccer::baseball::baseball:top
top:softball::softball::basketball::basketball:top
top:volleyball::volleyball::football::football:top
top:rugby_football::rugby_football::tennis::tennis:top
top:flying_disc::flying_disc::bowling::bowling:top
top:cricket_game::cricket_game::field_hockey::field_hockey:top
top:ice_hockey::ice_hockey::lacrosse::lacrosse:top
top:ping_pong::ping_pong::badminton::badminton:top
top:boxing_glove::boxing_glove::martial_arts_uniform::martial_arts_uniform:top
top:goal_net::goal_net::golf::golf:top
top:ice_skate::ice_skate::fishing_pole_and_fish::fishing_pole_and_fish:top
top:diving_mask::diving_mask::running_shirt_with_sash::running_shirt_with_sash:top
top:ski::ski::sled::sled:top
top:curling_stone::curling_stone:top

Game

icoshortcodeicoshortcode
top:dart::dart::yo_yo::yo_yo:top
top:kite::kite::gun::gun:top
top:8ball::8ball::crystal_ball::crystal_ball:top
top:magic_wand::magic_wand::video_game::video_game:top
top:joystick::joystick::slot_machine::slot_machine:top
top:game_die::game_die::jigsaw::jigsaw:top
top:teddy_bear::teddy_bear::pinata::pinata:top
top:nesting_dolls::nesting_dolls::spades::spades:top
top:hearts::hearts::diamonds::diamonds:top
top:clubs::clubs::chess_pawn::chess_pawn:top
top:black_joker::black_joker::mahjong::mahjong:top
top:flower_playing_cards::flower_playing_cards:top

Arts & Crafts

icoshortcodeicoshortcode
top:performing_arts::performing_arts::framed_picture::framed_picture:top
top:art::art::thread::thread:top
top:sewing_needle::sewing_needle::yarn::yarn:top
top:knot::knot:top

Objects

Clothing

icoshortcodeicoshortcode
top:eyeglasses::eyeglasses::dark_sunglasses::dark_sunglasses:top
top:goggles::goggles::lab_coat::lab_coat:top
top:safety_vest::safety_vest::necktie::necktie:top
top:shirt::shirt:
:tshirt:
:jeans::jeans:top
top:scarf::scarf::gloves::gloves:top
top:coat::coat::socks::socks:top
top:dress::dress::kimono::kimono:top
top:sari::sari::one_piece_swimsuit::one_piece_swimsuit:top
top:swim_brief::swim_brief::shorts::shorts:top
top:bikini::bikini::womans_clothes::womans_clothes:top
top:purse::purse::handbag::handbag:top
top:pouch::pouch::shopping::shopping:top
top:school_satchel::school_satchel::thong_sandal::thong_sandal:top
top:mans_shoe::mans_shoe:
:shoe:
:athletic_shoe::athletic_shoe:top
top:hiking_boot::hiking_boot::flat_shoe::flat_shoe:top
top:high_heel::high_heel::sandal::sandal:top
top:ballet_shoes::ballet_shoes::boot::boot:top
top:crown::crown::womans_hat::womans_hat:top
top:tophat::tophat::mortar_board::mortar_board:top
top:billed_cap::billed_cap::military_helmet::military_helmet:top
top:rescue_worker_helmet::rescue_worker_helmet::prayer_beads::prayer_beads:top
top:lipstick::lipstick::ring::ring:top
top:gem::gem:top

Sound

icoshortcodeicoshortcode
top:mute::mute::speaker::speaker:top
top:sound::sound::loud_sound::loud_sound:top
top:loudspeaker::loudspeaker::mega::mega:top
top:postal_horn::postal_horn::bell::bell:top
top:no_bell::no_bell:top

Music

icoshortcodeicoshortcode
top:musical_score::musical_score::musical_note::musical_note:top
top:notes::notes::studio_microphone::studio_microphone:top
top:level_slider::level_slider::control_knobs::control_knobs:top
top:microphone::microphone::headphones::headphones:top
top:radio::radio:top

Musical Instrument

icoshortcodeicoshortcode
top:saxophone::saxophone::accordion::accordion:top
top:guitar::guitar::musical_keyboard::musical_keyboard:top
top:trumpet::trumpet::violin::violin:top
top:banjo::banjo::drum::drum:top
top:long_drum::long_drum:top

Phone

icoshortcodeicoshortcode
top:iphone::iphone::calling::calling:top
top:phone::phone:
:telephone:
:telephone_receiver::telephone_receiver:top
top:pager::pager::fax::fax:top

Computer

icoshortcodeicoshortcode
top:battery::battery::electric_plug::electric_plug:top
top:computer::computer::desktop_computer::desktop_computer:top
top:printer::printer::keyboard::keyboard:top
top:computer_mouse::computer_mouse::trackball::trackball:top
top:minidisc::minidisc::floppy_disk::floppy_disk:top
top:cd::cd::dvd::dvd:top
top:abacus::abacus:top

Light & Video

icoshortcodeicoshortcode
top:movie_camera::movie_camera::film_strip::film_strip:top
top:film_projector::film_projector::clapper::clapper:top
top:tv::tv::camera::camera:top
top:camera_flash::camera_flash::video_camera::video_camera:top
top:vhs::vhs::mag::mag:top
top:mag_right::mag_right::candle::candle:top
top:bulb::bulb::flashlight::flashlight:top
top:izakaya_lantern::izakaya_lantern:
:lantern:
:diya_lamp::diya_lamp:top

Book Paper

icoshortcodeicoshortcode
top:notebook_with_decorative_cover::notebook_with_decorative_cover::closed_book::closed_book:top
top:book::book:
:open_book:
:green_book::green_book:top
top:blue_book::blue_book::orange_book::orange_book:top
top:books::books::notebook::notebook:top
top:ledger::ledger::page_with_curl::page_with_curl:top
top:scroll::scroll::page_facing_up::page_facing_up:top
top:newspaper::newspaper::newspaper_roll::newspaper_roll:top
top:bookmark_tabs::bookmark_tabs::bookmark::bookmark:top
top:label::label:top

Money

icoshortcodeicoshortcode
top:moneybag::moneybag::coin::coin:top
top:yen::yen::dollar::dollar:top
top:euro::euro::pound::pound:top
top:money_with_wings::money_with_wings::credit_card::credit_card:top
top:receipt::receipt::chart::chart:top

Mail

icoshortcodeicoshortcode
top:envelope::envelope::e-mail::e-mail:
:email:
top
top:incoming_envelope::incoming_envelope::envelope_with_arrow::envelope_with_arrow:top
top:outbox_tray::outbox_tray::inbox_tray::inbox_tray:top
top:package::package::mailbox::mailbox:top
top:mailbox_closed::mailbox_closed::mailbox_with_mail::mailbox_with_mail:top
top:mailbox_with_no_mail::mailbox_with_no_mail::postbox::postbox:top
top:ballot_box::ballot_box:top

Writing

icoshortcodeicoshortcode
top:pencil2::pencil2::black_nib::black_nib:top
top:fountain_pen::fountain_pen::pen::pen:top
top:paintbrush::paintbrush::crayon::crayon:top
top:memo::memo:
:pencil:
top

Office

icoshortcodeicoshortcode
top:briefcase::briefcase::file_folder::file_folder:top
top:open_file_folder::open_file_folder::card_index_dividers::card_index_dividers:top
top:date::date::calendar::calendar:top
top:spiral_notepad::spiral_notepad::spiral_calendar::spiral_calendar:top
top:card_index::card_index::chart_with_upwards_trend::chart_with_upwards_trend:top
top:chart_with_downwards_trend::chart_with_downwards_trend::bar_chart::bar_chart:top
top:clipboard::clipboard::pushpin::pushpin:top
top:round_pushpin::round_pushpin::paperclip::paperclip:top
top:paperclips::paperclips::straight_ruler::straight_ruler:top
top:triangular_ruler::triangular_ruler::scissors::scissors:top
top:card_file_box::card_file_box::file_cabinet::file_cabinet:top
top:wastebasket::wastebasket:top

Lock

icoshortcodeicoshortcode
top:lock::lock::unlock::unlock:top
top:lock_with_ink_pen::lock_with_ink_pen::closed_lock_with_key::closed_lock_with_key:top
top:key::key::old_key::old_key:top

Tool

icoshortcodeicoshortcode
top:hammer::hammer::axe::axe:top
top:pick::pick::hammer_and_pick::hammer_and_pick:top
top:hammer_and_wrench::hammer_and_wrench::dagger::dagger:top
top:crossed_swords::crossed_swords::bomb::bomb:top
top:boomerang::boomerang::bow_and_arrow::bow_and_arrow:top
top:shield::shield::carpentry_saw::carpentry_saw:top
top:wrench::wrench::screwdriver::screwdriver:top
top:nut_and_bolt::nut_and_bolt::gear::gear:top
top:clamp::clamp::balance_scale::balance_scale:top
top:probing_cane::probing_cane::link::link:top
top:chains::chains::hook::hook:top
top:toolbox::toolbox::magnet::magnet:top
top:ladder::ladder:top

Science

icoshortcodeicoshortcode
top:alembic::alembic::test_tube::test_tube:top
top:petri_dish::petri_dish::dna::dna:top
top:microscope::microscope::telescope::telescope:top
top:satellite::satellite:top

Medical

icoshortcodeicoshortcode
top:syringe::syringe::drop_of_blood::drop_of_blood:top
top:pill::pill::adhesive_bandage::adhesive_bandage:top
top:stethoscope::stethoscope:top

Household

icoshortcodeicoshortcode
top:door::door::elevator::elevator:top
top:mirror::mirror::window::window:top
top:bed::bed::couch_and_lamp::couch_and_lamp:top
top:chair::chair::toilet::toilet:top
top:plunger::plunger::shower::shower:top
top:bathtub::bathtub::mouse_trap::mouse_trap:top
top:razor::razor::lotion_bottle::lotion_bottle:top
top:safety_pin::safety_pin::broom::broom:top
top:basket::basket::roll_of_paper::roll_of_paper:top
top:bucket::bucket::soap::soap:top
top:toothbrush::toothbrush::sponge::sponge:top
top:fire_extinguisher::fire_extinguisher::shopping_cart::shopping_cart:top

Other Object

icoshortcodeicoshortcode
top:smoking::smoking::coffin::coffin:top
top:headstone::headstone::funeral_urn::funeral_urn:top
top:nazar_amulet::nazar_amulet::moyai::moyai:top
top:placard::placard:top

Symbols

Transport Sign

icoshortcodeicoshortcode
top:atm::atm::put_litter_in_its_place::put_litter_in_its_place:top
top:potable_water::potable_water::wheelchair::wheelchair:top
top:mens::mens::womens::womens:top
top:restroom::restroom::baby_symbol::baby_symbol:top
top:wc::wc::passport_control::passport_control:top
top:customs::customs::baggage_claim::baggage_claim:top
top:left_luggage::left_luggage:top

Warning

icoshortcodeicoshortcode
top:warning::warning::children_crossing::children_crossing:top
top:no_entry::no_entry::no_entry_sign::no_entry_sign:top
top:no_bicycles::no_bicycles::no_smoking::no_smoking:top
top:do_not_litter::do_not_litter::non-potable_water::non-potable_water:top
top:no_pedestrians::no_pedestrians::no_mobile_phones::no_mobile_phones:top
top:underage::underage::radioactive::radioactive:top
top:biohazard::biohazard:top

Arrow

icoshortcodeicoshortcode
top:arrow_up::arrow_up::arrow_upper_right::arrow_upper_right:top
top:arrow_right::arrow_right::arrow_lower_right::arrow_lower_right:top
top:arrow_down::arrow_down::arrow_lower_left::arrow_lower_left:top
top:arrow_left::arrow_left::arrow_upper_left::arrow_upper_left:top
top:arrow_up_down::arrow_up_down::left_right_arrow::left_right_arrow:top
top:leftwards_arrow_with_hook::leftwards_arrow_with_hook::arrow_right_hook::arrow_right_hook:top
top:arrow_heading_up::arrow_heading_up::arrow_heading_down::arrow_heading_down:top
top:arrows_clockwise::arrows_clockwise::arrows_counterclockwise::arrows_counterclockwise:top
top:back::back::end::end:top
top:on::on::soon::soon:top
top:top::top:top

Religion

icoshortcodeicoshortcode
top:place_of_worship::place_of_worship::atom_symbol::atom_symbol:top
top:om::om::star_of_david::star_of_david:top
top:wheel_of_dharma::wheel_of_dharma::yin_yang::yin_yang:top
top:latin_cross::latin_cross::orthodox_cross::orthodox_cross:top
top:star_and_crescent::star_and_crescent::peace_symbol::peace_symbol:top
top:menorah::menorah::six_pointed_star::six_pointed_star:top

Zodiac

icoshortcodeicoshortcode
top:aries::aries::taurus::taurus:top
top:gemini::gemini::cancer::cancer:top
top:leo::leo::virgo::virgo:top
top:libra::libra::scorpius::scorpius:top
top:sagittarius::sagittarius::capricorn::capricorn:top
top:aquarius::aquarius::pisces::pisces:top
top:ophiuchus::ophiuchus:top

Av Symbol

icoshortcodeicoshortcode
top:twisted_rightwards_arrows::twisted_rightwards_arrows::repeat::repeat:top
top:repeat_one::repeat_one::arrow_forward::arrow_forward:top
top:fast_forward::fast_forward::next_track_button::next_track_button:top
top:play_or_pause_button::play_or_pause_button::arrow_backward::arrow_backward:top
top:rewind::rewind::previous_track_button::previous_track_button:top
top:arrow_up_small::arrow_up_small::arrow_double_up::arrow_double_up:top
top:arrow_down_small::arrow_down_small::arrow_double_down::arrow_double_down:top
top:pause_button::pause_button::stop_button::stop_button:top
top:record_button::record_button::eject_button::eject_button:top
top:cinema::cinema::low_brightness::low_brightness:top
top:high_brightness::high_brightness::signal_strength::signal_strength:top
top:vibration_mode::vibration_mode::mobile_phone_off::mobile_phone_off:top

Gender

icoshortcodeicoshortcode
top:female_sign::female_sign::male_sign::male_sign:top
top:transgender_symbol::transgender_symbol:top

Math

icoshortcodeicoshortcode
top:heavy_multiplication_x::heavy_multiplication_x::heavy_plus_sign::heavy_plus_sign:top
top:heavy_minus_sign::heavy_minus_sign::heavy_division_sign::heavy_division_sign:top
top:infinity::infinity:top

Punctuation

icoshortcodeicoshortcode
top:bangbang::bangbang::interrobang::interrobang:top
top:question::question::grey_question::grey_question:top
top:grey_exclamation::grey_exclamation::exclamation::exclamation:
:heavy_exclamation_mark:
top
top:wavy_dash::wavy_dash:top

Currency

icoshortcodeicoshortcode
top:currency_exchange::currency_exchange::heavy_dollar_sign::heavy_dollar_sign:top

Other Symbol

icoshortcodeicoshortcode
top:medical_symbol::medical_symbol::recycle::recycle:top
top:fleur_de_lis::fleur_de_lis::trident::trident:top
top:name_badge::name_badge::beginner::beginner:top
top:o::o::white_check_mark::white_check_mark:top
top:ballot_box_with_check::ballot_box_with_check::heavy_check_mark::heavy_check_mark:top
top:x::x::negative_squared_cross_mark::negative_squared_cross_mark:top
top:curly_loop::curly_loop::loop::loop:top
top:part_alternation_mark::part_alternation_mark::eight_spoked_asterisk::eight_spoked_asterisk:top
top:eight_pointed_black_star::eight_pointed_black_star::sparkle::sparkle:top
top:copyright::copyright::registered::registered:top
top:tm::tm:top

Keycap

icoshortcodeicoshortcode
top:hash::hash::asterisk::asterisk:top
top:zero::zero::one::one:top
top:two::two::three::three:top
top:four::four::five::five:top
top:six::six::seven::seven:top
top:eight::eight::nine::nine:top
top:keycap_ten::keycap_ten:top

Alphanum

icoshortcodeicoshortcode
top:capital_abcd::capital_abcd::abcd::abcd:top
top:1234::1234::symbols::symbols:top
top:abc::abc::a::a:top
top:ab::ab::b::b:top
top:cl::cl::cool::cool:top
top:free::free::information_source::information_source:top
top:id::id::m::m:top
top:new::new::ng::ng:top
top:o2::o2::ok::ok:top
top:parking::parking::sos::sos:top
top:up::up::vs::vs:top
top:koko::koko::sa::sa:top
top:u6708::u6708::u6709::u6709:top
top:u6307::u6307::ideograph_advantage::ideograph_advantage:top
top:u5272::u5272::u7121::u7121:top
top:u7981::u7981::accept::accept:top
top:u7533::u7533::u5408::u5408:top
top:u7a7a::u7a7a::congratulations::congratulations:top
top:secret::secret::u55b6::u55b6:top
top:u6e80::u6e80:top

Geometric

icoshortcodeicoshortcode
top:red_circle::red_circle::orange_circle::orange_circle:top
top:yellow_circle::yellow_circle::green_circle::green_circle:top
top:large_blue_circle::large_blue_circle::purple_circle::purple_circle:top
top:brown_circle::brown_circle::black_circle::black_circle:top
top:white_circle::white_circle::red_square::red_square:top
top:orange_square::orange_square::yellow_square::yellow_square:top
top:green_square::green_square::blue_square::blue_square:top
top:purple_square::purple_square::brown_square::brown_square:top
top:black_large_square::black_large_square::white_large_square::white_large_square:top
top:black_medium_square::black_medium_square::white_medium_square::white_medium_square:top
top:black_medium_small_square::black_medium_small_square::white_medium_small_square::white_medium_small_square:top
top:black_small_square::black_small_square::white_small_square::white_small_square:top
top:large_orange_diamond::large_orange_diamond::large_blue_diamond::large_blue_diamond:top
top:small_orange_diamond::small_orange_diamond::small_blue_diamond::small_blue_diamond:top
top:small_red_triangle::small_red_triangle::small_red_triangle_down::small_red_triangle_down:top
top:diamond_shape_with_a_dot_inside::diamond_shape_with_a_dot_inside::radio_button::radio_button:top
top:white_square_button::white_square_button::black_square_button::black_square_button:top

Flags

Flag

icoshortcodeicoshortcode
top:checkered_flag::checkered_flag::triangular_flag_on_post::triangular_flag_on_post:top
top:crossed_flags::crossed_flags::black_flag::black_flag:top
top:white_flag::white_flag::rainbow_flag::rainbow_flag:top
top:transgender_flag::transgender_flag::pirate_flag::pirate_flag:top

Country Flag

icoshortcodeicoshortcode
top:ascension_island::ascension_island::andorra::andorra:top
top:united_arab_emirates::united_arab_emirates::afghanistan::afghanistan:top
top:antigua_barbuda::antigua_barbuda::anguilla::anguilla:top
top:albania::albania::armenia::armenia:top
top:angola::angola::antarctica::antarctica:top
top:argentina::argentina::american_samoa::american_samoa:top
top:austria::austria::australia::australia:top
top:aruba::aruba::aland_islands::aland_islands:top
top:azerbaijan::azerbaijan::bosnia_herzegovina::bosnia_herzegovina:top
top:barbados::barbados::bangladesh::bangladesh:top
top:belgium::belgium::burkina_faso::burkina_faso:top
top:bulgaria::bulgaria::bahrain::bahrain:top
top:burundi::burundi::benin::benin:top
top:st_barthelemy::st_barthelemy::bermuda::bermuda:top
top:brunei::brunei::bolivia::bolivia:top
top:caribbean_netherlands::caribbean_netherlands::brazil::brazil:top
top:bahamas::bahamas::bhutan::bhutan:top
top:bouvet_island::bouvet_island::botswana::botswana:top
top:belarus::belarus::belize::belize:top
top:canada::canada::cocos_islands::cocos_islands:top
top:congo_kinshasa::congo_kinshasa::central_african_republic::central_african_republic:top
top:congo_brazzaville::congo_brazzaville::switzerland::switzerland:top
top:cote_divoire::cote_divoire::cook_islands::cook_islands:top
top:chile::chile::cameroon::cameroon:top
top:cn::cn::colombia::colombia:top
top:clipperton_island::clipperton_island::costa_rica::costa_rica:top
top:cuba::cuba::cape_verde::cape_verde:top
top:curacao::curacao::christmas_island::christmas_island:top
top:cyprus::cyprus::czech_republic::czech_republic:top
top:de::de::diego_garcia::diego_garcia:top
top:djibouti::djibouti::denmark::denmark:top
top:dominica::dominica::dominican_republic::dominican_republic:top
top:algeria::algeria::ceuta_melilla::ceuta_melilla:top
top:ecuador::ecuador::estonia::estonia:top
top:egypt::egypt::western_sahara::western_sahara:top
top:eritrea::eritrea::es::es:top
top:ethiopia::ethiopia::eu::eu:
:european_union:
top
top:finland::finland::fiji::fiji:top
top:falkland_islands::falkland_islands::micronesia::micronesia:top
top:faroe_islands::faroe_islands::fr::fr:top
top:gabon::gabon::gb::gb:
:uk:
top
top:grenada::grenada::georgia::georgia:top
top:french_guiana::french_guiana::guernsey::guernsey:top
top:ghana::ghana::gibraltar::gibraltar:top
top:greenland::greenland::gambia::gambia:top
top:guinea::guinea::guadeloupe::guadeloupe:top
top:equatorial_guinea::equatorial_guinea::greece::greece:top
top:south_georgia_south_sandwich_islands::south_georgia_south_sandwich_islands::guatemala::guatemala:top
top:guam::guam::guinea_bissau::guinea_bissau:top
top:guyana::guyana::hong_kong::hong_kong:top
top:heard_mcdonald_islands::heard_mcdonald_islands::honduras::honduras:top
top:croatia::croatia::haiti::haiti:top
top:hungary::hungary::canary_islands::canary_islands:top
top:indonesia::indonesia::ireland::ireland:top
top:israel::israel::isle_of_man::isle_of_man:top
top:india::india::british_indian_ocean_territory::british_indian_ocean_territory:top
top:iraq::iraq::iran::iran:top
top:iceland::iceland::it::it:top
top:jersey::jersey::jamaica::jamaica:top
top:jordan::jordan::jp::jp:top
top:kenya::kenya::kyrgyzstan::kyrgyzstan:top
top:cambodia::cambodia::kiribati::kiribati:top
top:comoros::comoros::st_kitts_nevis::st_kitts_nevis:top
top:north_korea::north_korea::kr::kr:top
top:kuwait::kuwait::cayman_islands::cayman_islands:top
top:kazakhstan::kazakhstan::laos::laos:top
top:lebanon::lebanon::st_lucia::st_lucia:top
top:liechtenstein::liechtenstein::sri_lanka::sri_lanka:top
top:liberia::liberia::lesotho::lesotho:top
top:lithuania::lithuania::luxembourg::luxembourg:top
top:latvia::latvia::libya::libya:top
top:morocco::morocco::monaco::monaco:top
top:moldova::moldova::montenegro::montenegro:top
top:st_martin::st_martin::madagascar::madagascar:top
top:marshall_islands::marshall_islands::macedonia::macedonia:top
top:mali::mali::myanmar::myanmar:top
top:mongolia::mongolia::macau::macau:top
top:northern_mariana_islands::northern_mariana_islands::martinique::martinique:top
top:mauritania::mauritania::montserrat::montserrat:top
top:malta::malta::mauritius::mauritius:top
top:maldives::maldives::malawi::malawi:top
top:mexico::mexico::malaysia::malaysia:top
top:mozambique::mozambique::namibia::namibia:top
top:new_caledonia::new_caledonia::niger::niger:top
top:norfolk_island::norfolk_island::nigeria::nigeria:top
top:nicaragua::nicaragua::netherlands::netherlands:top
top:norway::norway::nepal::nepal:top
top:nauru::nauru::niue::niue:top
top:new_zealand::new_zealand::oman::oman:top
top:panama::panama::peru::peru:top
top:french_polynesia::french_polynesia::papua_new_guinea::papua_new_guinea:top
top:philippines::philippines::pakistan::pakistan:top
top:poland::poland::st_pierre_miquelon::st_pierre_miquelon:top
top:pitcairn_islands::pitcairn_islands::puerto_rico::puerto_rico:top
top:palestinian_territories::palestinian_territories::portugal::portugal:top
top:palau::palau::paraguay::paraguay:top
top:qatar::qatar::reunion::reunion:top
top:romania::romania::serbia::serbia:top
top:ru::ru::rwanda::rwanda:top
top:saudi_arabia::saudi_arabia::solomon_islands::solomon_islands:top
top:seychelles::seychelles::sudan::sudan:top
top:sweden::sweden::singapore::singapore:top
top:st_helena::st_helena::slovenia::slovenia:top
top:svalbard_jan_mayen::svalbard_jan_mayen::slovakia::slovakia:top
top:sierra_leone::sierra_leone::san_marino::san_marino:top
top:senegal::senegal::somalia::somalia:top
top:suriname::suriname::south_sudan::south_sudan:top
top:sao_tome_principe::sao_tome_principe::el_salvador::el_salvador:top
top:sint_maarten::sint_maarten::syria::syria:top
top:swaziland::swaziland::tristan_da_cunha::tristan_da_cunha:top
top:turks_caicos_islands::turks_caicos_islands::chad::chad:top
top:french_southern_territories::french_southern_territories::togo::togo:top
top:thailand::thailand::tajikistan::tajikistan:top
top:tokelau::tokelau::timor_leste::timor_leste:top
top:turkmenistan::turkmenistan::tunisia::tunisia:top
top:tonga::tonga::tr::tr:top
top:trinidad_tobago::trinidad_tobago::tuvalu::tuvalu:top
top:taiwan::taiwan::tanzania::tanzania:top
top:ukraine::ukraine::uganda::uganda:top
top:us_outlying_islands::us_outlying_islands::united_nations::united_nations:top
top:us::us::uruguay::uruguay:top
top:uzbekistan::uzbekistan::vatican_city::vatican_city:top
top:st_vincent_grenadines::st_vincent_grenadines::venezuela::venezuela:top
top:british_virgin_islands::british_virgin_islands::us_virgin_islands::us_virgin_islands:top
top:vietnam::vietnam::vanuatu::vanuatu:top
top:wallis_futuna::wallis_futuna::samoa::samoa:top
top:kosovo::kosovo::yemen::yemen:top
top:mayotte::mayotte::south_africa::south_africa:top
top:zambia::zambia::zimbabwe::zimbabwe:top

Subdivision Flag

icoshortcodeicoshortcode
top:england::england::scotland::scotland:top
top:wales::wales:top

GitHub Custom Emoji

icoshortcodeicoshortcode
top:accessibility::accessibility::atom::atom:top
top:basecamp::basecamp::basecampy::basecampy:top
top:bowtie::bowtie::dependabot::dependabot:top
top:electron::electron::feelsgood::feelsgood:top
top:finnadie::finnadie::fishsticks::fishsticks:top
top:goberserk::goberserk::godmode::godmode:top
top:hurtrealbad::hurtrealbad::neckbeard::neckbeard:top
top:octocat::octocat::rage1::rage1:top
top:rage2::rage2::rage3::rage3:top
top:rage4::rage4::shipit::shipit:top
top:suspect::suspect::trollface::trollface:top