Release v0.2.2 #286 from dillonzq/develop

This commit is contained in:
Dillon
2020-04-29 20:57:39 +08:00
committed by GitHub
17 changed files with 498 additions and 446 deletions

View File

@@ -212,6 +212,7 @@
} }
figure { figure {
margin: .5rem;
text-align: center; text-align: center;
.image-caption:not(:empty) { .image-caption:not(:empty) {

View File

@@ -33,7 +33,7 @@ header {
.header-title { .header-title {
font-family: $header-title-font-family; font-family: $header-title-font-family;
font-weight: bold; font-weight: bold;
margin: 0 .5rem; margin-right: .5rem;
min-width: 10%; min-width: 10%;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;

View File

@@ -54,135 +54,138 @@ code, pre, .highlight table, .highlight tr, .highlight td {
} }
} }
.highlight > .chroma { .highlight {
position: relative;
line-height: 1.4em; line-height: 1.4em;
margin: .5rem 0; margin: .5rem 0;
.code-header { > .chroma {
display: flex; position: relative;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
width: 100%;
font-family: $global-font-family;
font-weight: bold;
color: $code-info-color;
background: darken($code-background-color, 8%);
[theme=dark] & { .code-header {
color: $code-info-color-dark; display: flex;
background: darken($code-background-color-dark, 6%); justify-content: space-between;
} align-items: center;
box-sizing: border-box;
&:hover {
cursor: pointer;
}
.code-title {
width: 100%; width: 100%;
font-family: $global-font-family;
font-weight: bold;
color: $code-info-color;
background: darken($code-background-color, 8%);
[theme=dark] & {
color: $code-info-color-dark;
background: darken($code-background-color-dark, 6%);
}
&:hover {
cursor: pointer;
}
.code-title {
width: 100%;
padding: .4rem;
}
.code-title::after {
padding-left: .2rem;
content: 'Code';
}
@each $type, $text in $code-type-map {
&.#{$type} .code-title::after {
content: $text;
}
}
}
.lntd:first-child {
min-width: 1.6rem;
text-align: right;
}
.lntd:last-child {
width: 100%;
pre {
@include max-content(min-width);
}
}
.ln {
padding-right: .75rem;
}
.hl {
display: block;
background-color: darken($code-background-color, 10%);
[theme=dark] & {
background-color: darken($code-background-color-dark, 5%);
}
}
.ln, .lnt {
color: $global-font-secondary-color;
[theme=dark] & {
color: $global-font-secondary-color-dark;
}
}
.arrow {
padding: 0 .2rem;
@include transition(transform 0.2s ease);
}
.ellipses {
padding: .4rem; padding: .4rem;
} }
.code-title::after { .copy {
padding-left: .2rem; display: none;
content: 'Code'; padding: .4rem;
}
@each $type, $text in $code-type-map { &:hover {
&.#{$type} .code-title::after { cursor: pointer;
content: $text; color: $global-link-hover-color;
}
}
}
.lntd:first-child { [theme=dark] & {
min-width: 1.6rem; color: $global-link-hover-color-dark;
text-align: right; }
}
.lntd:last-child {
width: 100%;
pre {
@include max-content(min-width);
}
}
.ln {
padding-right: .75rem;
}
.hl {
display: block;
background-color: darken($code-background-color, 10%);
[theme=dark] & {
background-color: darken($code-background-color-dark, 5%);
}
}
.ln, .lnt {
color: $global-font-secondary-color;
[theme=dark] & {
color: $global-font-secondary-color-dark;
}
}
.arrow {
padding: 0 .2rem;
@include transition(transform 0.2s ease);
}
.ellipses {
padding: .4rem;
}
.copy {
display: none;
padding: .4rem;
&:hover {
cursor: pointer;
color: $global-link-hover-color;
[theme=dark] & {
color: $global-link-hover-color-dark;
}
}
}
.table-wrapper {
max-height: 0;
overflow-y: hidden;
@include details-transition-open;
}
&.open {
.code-header {
background: darken($code-background-color, 3%);
[theme=dark] & {
background: darken($code-background-color-dark, 3%);
} }
} }
.table-wrapper { .table-wrapper {
max-height: $MAX_LENGTH; max-height: 0;
@include details-transition-close; overflow-y: hidden;
@include details-transition-open;
} }
.arrow { &.open {
@include transform(rotate(90deg)); .code-header {
} background: darken($code-background-color, 3%);
.ellipses { [theme=dark] & {
display: none; background: darken($code-background-color-dark, 3%);
} }
}
.copy { .table-wrapper {
display: inline; max-height: $MAX_LENGTH;
@include details-transition-close;
}
.arrow {
@include transform(rotate(90deg));
}
.ellipses {
display: none;
}
.copy {
display: inline;
}
} }
} }

View File

@@ -58,7 +58,7 @@ $header-background-color-dark: #252627 !default;
// Font style of the header title // Font style of the header title
$header-title-font-family: $global-font-family !default; $header-title-font-family: $global-font-family !default;
$header-title-font-size: 1.25rem !default; $header-title-font-size: 1.5rem !default;
// Position of the header // Position of the header
$header-position-desktop: if($header-normal-mode-desktop, static, fixed) !default; $header-position-desktop: if($header-normal-mode-desktop, static, fixed) !default;

View File

@@ -12,4 +12,8 @@
[theme=dark] & { [theme=dark] & {
@import "themes/dark/index"; @import "themes/dark/index";
} }
div.mermaidTooltip {
z-index: 50;
}
} }

View File

@@ -1,14 +1,64 @@
// ========== Global ========== //
// Color of the border
$border-color: #f0f0f0; $border-color: #f0f0f0;
$border-color-dark: #363636; $border-color-dark: #363636;
// ========== Code ========== //
// Color of the code
$code-color: #E74C3C !default;
$code-color-dark: #E5BF78 !default;
// Color of the code background
$code-background-color: #f5f5f5 !default;
$code-background-color-dark: #272C34 !default;
@mixin overflow-wrap($value) {
word-wrap: $value;
overflow-wrap: $value;
}
@mixin line-break($value) {
-webkit-line-break: $value;
-ms-line-break: $value;
line-break: $value;
}
@mixin tab-size($value) {
-moz-tab-size: $value;
-o-tab-size: $value;
tab-size: $value;
}
.v[data-class=v] { .v[data-class=v] {
.vcards .vcard .vcontent.expand {
&::before, &::after {
z-index: 50;
}
}
.vwrap, .vwrap,
.vwrap .vheader .vinput, .vwrap .vheader .vinput,
.vcards .vcard .vh { .vcards .vcard .vh,
.vcards .vcard .vquote,
blockquote {
border-color: $border-color; border-color: $border-color;
[theme=dark] & { [theme=dark] & {
border-color: $border-color-dark; border-color: $border-color-dark;
} }
} }
code, pre, pre code {
font-size: 90%;
@include overflow-wrap(break-word);
@include line-break(anywhere);
@include tab-size(4);
color: $code-color;
background: $code-background-color;
[theme=dark] & {
color: $code-color-dark;
background: $code-background-color-dark;
}
}
} }

View File

@@ -44,13 +44,11 @@ This page enables `twemoji` to make emoji look beautiful everywhere.
Set `twemoji` to `true` in your [front matter](../theme-documentation-content#front-matter) or in the `params.page` part of the [site configuration](https://gohugo.io/getting-started/configuration/) to use :(far fa-grin-tongue-wink fa-fw): Twemoji. Set `twemoji` to `true` in your [front matter](../theme-documentation-content#front-matter) or in the `params.page` part of the [site configuration](https://gohugo.io/getting-started/configuration/) to use :(far fa-grin-tongue-wink fa-fw): Twemoji.
{{< /admonition >}} {{< /admonition >}}
## Emoji Cheat Sheet The following **cheat sheet** is a useful reference for emoji shorthand codes.
The following cheat sheet is a useful reference for emoji shorthand codes. ## Smileys & Emotion
### Smileys & Emotion ### Face Smiling
#### Face Smiling
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -62,7 +60,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :wink: | `wink` | :blush: | `blush` | | :wink: | `wink` | :blush: | `blush` |
| :innocent: | `innocent` | | | | :innocent: | `innocent` | | |
#### Face Affection ### Face Affection
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -70,7 +68,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :kissing: | `kissing` | :relaxed: | `relaxed` | | :kissing: | `kissing` | :relaxed: | `relaxed` |
| :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` | | :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` |
#### Face Tongue ### Face Tongue
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -78,13 +76,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` | | :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` |
| :money_mouth_face: | `money_mouth_face` | | | | :money_mouth_face: | `money_mouth_face` | | |
#### Face Hand ### Face Hand
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :hugs: | `hugs` | :thinking: | `thinking` | | :hugs: | `hugs` | :thinking: | `thinking` |
#### Face Neutral Skeptical ### Face Neutral Skeptical
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -94,7 +92,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` | | :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` |
| :lying_face: | `lying_face` | | | | :lying_face: | `lying_face` | | |
#### Face Sleepy ### Face Sleepy
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -102,7 +100,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :sleepy: | `sleepy` | :drooling_face: | `drooling_face` | | :sleepy: | `sleepy` | :drooling_face: | `drooling_face` |
| :sleeping: | `sleeping` | | | | :sleeping: | `sleeping` | | |
#### Face Unwell ### Face Unwell
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -110,19 +108,19 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` | | :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` |
| :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` | | :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` |
#### Face Hat ### Face Hat
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :cowboy_hat_face: | `cowboy_hat_face` | | | | :cowboy_hat_face: | `cowboy_hat_face` | | |
#### Face Glasses ### Face Glasses
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` | | :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` |
#### Face Concerned ### Face Concerned
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -138,7 +136,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :disappointed: | `disappointed` | :sweat: | `sweat` | | :disappointed: | `disappointed` | :sweat: | `sweat` |
| :weary: | `weary` | :tired_face: | `tired_face` | | :weary: | `weary` | :tired_face: | `tired_face` |
#### Face Negative ### Face Negative
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -147,7 +145,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :imp: | `imp` | :skull: | `skull` | | :imp: | `imp` | :skull: | `skull` |
| :skull_and_crossbones: | `skull_and_crossbones` | | | | :skull_and_crossbones: | `skull_and_crossbones` | | |
#### Face Costume ### Face Costume
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -156,7 +154,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :ghost: | `ghost` | :alien: | `alien` | | :ghost: | `ghost` | :alien: | `alien` |
| :space_invader: | `space_invader` | :robot: | `robot` | | :space_invader: | `space_invader` | :robot: | `robot` |
#### Cat Face ### Cat Face
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -166,14 +164,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` | | :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` |
| :pouting_cat: | `pouting_cat` | | | | :pouting_cat: | `pouting_cat` | | |
#### Monkey Face ### Monkey Face
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` | | :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` |
| :speak_no_evil: | `speak_no_evil` | | | | :speak_no_evil: | `speak_no_evil` | | |
#### Emotion ### Emotion
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -194,9 +192,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` | | :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` |
| :zzz: | `zzz` | | | | :zzz: | `zzz` | | |
### People & Body ## People & Body
#### Hand Fingers Open ### Hand Fingers Open
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -204,7 +202,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` | | :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` |
| :vulcan_salute: | `vulcan_salute` | | | | :vulcan_salute: | `vulcan_salute` | | |
#### Hand Fingers Partial ### Hand Fingers Partial
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -212,7 +210,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :crossed_fingers: | `crossed_fingers` | :metal: | `metal` | | :crossed_fingers: | `crossed_fingers` | :metal: | `metal` |
| :call_me_hand: | `call_me_hand` | | | | :call_me_hand: | `call_me_hand` | | |
#### Hand Single Finger ### Hand Single Finger
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -220,7 +218,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` | | :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` |
| :point_down: | `point_down` | :point_up: | `point_up` | | :point_down: | `point_down` | :point_up: | `point_up` |
#### Hand Fingers Closed ### Hand Fingers Closed
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -228,7 +226,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` | | :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` |
| :fist_left: | `fist_left` | :fist_right: | `fist_right` | | :fist_left: | `fist_left` | :fist_right: | `fist_right` |
#### Hands ### Hands
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -236,14 +234,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :open_hands: | `open_hands` | :handshake: | `handshake` | | :open_hands: | `open_hands` | :handshake: | `handshake` |
| :pray: | `pray` | | | | :pray: | `pray` | | |
#### Hand Prop ### Hand Prop
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :writing_hand: | `writing_hand` | :nail_care: | `nail_care` | | :writing_hand: | `writing_hand` | :nail_care: | `nail_care` |
| :selfie: | `selfie` | | | | :selfie: | `selfie` | | |
#### Body Parts ### Body Parts
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -252,7 +250,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :eye: | `eye` | :tongue: | `tongue` | | :eye: | `eye` | :tongue: | `tongue` |
| :lips: | `lips` | | | | :lips: | `lips` | | |
#### Person ### Person
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -262,7 +260,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :blonde_woman: | `blonde_woman` | :older_man: | `older_man` | | :blonde_woman: | `blonde_woman` | :older_man: | `older_man` |
| :older_woman: | `older_woman` | | | | :older_woman: | `older_woman` | | |
#### Person Gesture ### Person Gesture
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -276,7 +274,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` | | :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` |
| :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` | | :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` |
#### Person Role ### Person Role
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -305,14 +303,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` | | :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` |
| :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` | | :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` |
#### Person Fantasy ### Person Fantasy
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :angel: | `angel` | :santa: | `santa` | | :angel: | `angel` | :santa: | `santa` |
| :mrs_claus: | `mrs_claus` | | | | :mrs_claus: | `mrs_claus` | | |
#### Person Activity ### Person Activity
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -324,7 +322,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` | | :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` |
| :dancing_men: | `dancing_men` | | | | :dancing_men: | `dancing_men` | | |
#### Person Sport ### Person Sport
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -344,13 +342,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` | | :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` |
| :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` | | :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` |
#### Person Resting ### Person Resting
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bath: | `bath` | :sleeping_bed: | `sleeping_bed` | | :bath: | `bath` | :sleeping_bed: | `sleeping_bed` |
#### Family ### Family
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -372,16 +370,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` | | :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` |
| :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` | | :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` |
#### Person Symbol ### Person Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` | | :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` |
| :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` | | :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` |
### Animals & Nature ## Animals & Nature
#### Animal Mammal ### Animal Mammal
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -409,7 +407,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :koala: | `koala` | :panda_face: | `panda_face` | | :koala: | `koala` | :panda_face: | `panda_face` |
| :feet: | `feet` <br /> `paw_prints` | | | | :feet: | `feet` <br /> `paw_prints` | | |
#### Animal Bird ### Animal Bird
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -420,13 +418,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :dove: | `dove` | :eagle: | `eagle` | | :dove: | `dove` | :eagle: | `eagle` |
| :duck: | `duck` | :owl: | `owl` | | :duck: | `duck` | :owl: | `owl` |
#### Animal Amphibian ### Animal Amphibian
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :frog: | `frog` | | :frog: | `frog` |
#### Animal Reptile ### Animal Reptile
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -434,7 +432,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :lizard: | `lizard` | :snake: | `snake` | | :lizard: | `lizard` | :snake: | `snake` |
| :dragon_face: | `dragon_face` | :dragon: | `dragon` | | :dragon_face: | `dragon_face` | :dragon: | `dragon` |
#### Animal Marine ### Animal Marine
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -444,7 +442,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :shark: | `shark` | :octopus: | `octopus` | | :shark: | `shark` | :octopus: | `octopus` |
| :shell: | `shell` | | | | :shell: | `shell` | | |
#### Animal Bug ### Animal Bug
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -454,7 +452,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :spider: | `spider` | :spider_web: | `spider_web` | | :spider: | `spider` | :spider_web: | `spider_web` |
| :scorpion: | `scorpion` | | | | :scorpion: | `scorpion` | | |
#### Plant Flower ### Plant Flower
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -464,7 +462,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :hibiscus: | `hibiscus` | :sunflower: | `sunflower` | | :hibiscus: | `hibiscus` | :sunflower: | `sunflower` |
| :blossom: | `blossom` | :tulip: | `tulip` | | :blossom: | `blossom` | :tulip: | `tulip` |
#### Plant Other ### Plant Other
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -475,9 +473,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` | | :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` |
| :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` | | :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` |
### Food & Drink ## Food & Drink
#### Food Fruit ### Food Fruit
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -490,7 +488,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` | | :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` |
| :tomato: | `tomato` | | | | :tomato: | `tomato` | | |
#### Food Vegetable ### Food Vegetable
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -500,7 +498,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :cucumber: | `cucumber` | :mushroom: | `mushroom` | | :cucumber: | `cucumber` | :mushroom: | `mushroom` |
| :peanuts: | `peanuts` | :chestnut: | `chestnut` | | :peanuts: | `peanuts` | :chestnut: | `chestnut` |
#### Food Prepared ### Food Prepared
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -516,7 +514,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :stew: | `stew` | :green_salad: | `green_salad` | | :stew: | `stew` | :green_salad: | `green_salad` |
| :popcorn: | `popcorn` | | | | :popcorn: | `popcorn` | | |
#### Food Asian ### Food Asian
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -528,14 +526,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` | | :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` |
| :dango: | `dango` | | | | :dango: | `dango` | | |
#### Food Marine ### Food Marine
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :crab: | `crab` | :shrimp: | `shrimp` | | :crab: | `crab` | :shrimp: | `shrimp` |
| :squid: | `squid` | | | | :squid: | `squid` | | |
#### Food Sweet ### Food Sweet
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -546,7 +544,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :candy: | `candy` | :lollipop: | `lollipop` | | :candy: | `candy` | :lollipop: | `lollipop` |
| :custard: | `custard` | :honey_pot: | `honey_pot` | | :custard: | `custard` | :honey_pot: | `honey_pot` |
#### Drink ### Drink
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -558,7 +556,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :beers: | `beers` | :clinking_glasses: | `clinking_glasses` | | :beers: | `beers` | :clinking_glasses: | `clinking_glasses` |
| :tumbler_glass: | `tumbler_glass` | | | | :tumbler_glass: | `tumbler_glass` | | |
#### Dishware ### Dishware
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -566,9 +564,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` | | :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` |
| :amphora: | `amphora` | | | | :amphora: | `amphora` | | |
### Travel & Places ## Travel & Places
#### Place Map ### Place Map
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -576,7 +574,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` | | :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` |
| :world_map: | `world_map` | :japan: | `japan` | | :world_map: | `world_map` | :japan: | `japan` |
#### Place Geographic ### Place Geographic
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -586,7 +584,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :desert: | `desert` | :desert_island: | `desert_island` | | :desert: | `desert` | :desert_island: | `desert_island` |
| :national_park: | `national_park` | | | | :national_park: | `national_park` | | |
#### Place Building ### Place Building
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -603,7 +601,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` | | :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` |
| :statue_of_liberty: | `statue_of_liberty` | | | | :statue_of_liberty: | `statue_of_liberty` | | |
#### Place Religious ### Place Religious
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -611,7 +609,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` | | :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` |
| :kaaba: | `kaaba` | | | | :kaaba: | `kaaba` | | |
#### Place Other ### Place Other
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -624,7 +622,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` | | :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` |
| :barber: | `barber` | :circus_tent: | `circus_tent` | | :barber: | `barber` | :circus_tent: | `circus_tent` |
#### Transport Ground ### Transport Ground
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -651,7 +649,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` | | :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` |
| :construction: | `construction` | | | | :construction: | `construction` | | |
#### Transport Water ### Transport Water
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -660,7 +658,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :passenger_ship: | `passenger_ship` | :ferry: | `ferry` | | :passenger_ship: | `passenger_ship` | :ferry: | `ferry` |
| :motor_boat: | `motor_boat` | :ship: | `ship` | | :motor_boat: | `motor_boat` | :ship: | `ship` |
#### Transport Air ### Transport Air
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -671,13 +669,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` | | :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` |
| :rocket: | `rocket` | | | | :rocket: | `rocket` | | |
#### Hotel ### Hotel
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bellhop_bell: | `bellhop_bell` | | :bellhop_bell: | `bellhop_bell` |
#### Time ### Time
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -698,7 +696,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clock1030: | `clock1030` | :clock11: | `clock11` | | :clock1030: | `clock1030` | :clock11: | `clock11` |
| :clock1130: | `clock1130` | | | | :clock1130: | `clock1130` | | |
#### Sky & Weather ### Sky & Weather
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -726,9 +724,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :comet: | `comet` | :fire: | `fire` | | :comet: | `comet` | :fire: | `fire` |
| :droplet: | `droplet` | :ocean: | `ocean` | | :droplet: | `droplet` | :ocean: | `ocean` |
### Activities ## Activities
#### Event ### Event
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -743,7 +741,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` | | :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` |
| :ticket: | `ticket` | | | | :ticket: | `ticket` | | |
#### Award Medal ### Award Medal
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -751,7 +749,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` | | :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` |
| :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` | | :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` |
#### Sport ### Sport
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -767,7 +765,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` | | :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` |
| :ski: | `ski` | | | | :ski: | `ski` | | |
#### Game ### Game
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -779,16 +777,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clubs: | `clubs` | :black_joker: | `black_joker` | | :clubs: | `clubs` | :black_joker: | `black_joker` |
| :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` | | :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` |
#### Arts & Crafts ### Arts & Crafts
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` | | :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` |
| :art: | `art` | | | | :art: | `art` | | |
### Objects ## Objects
#### Clothing ### Clothing
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -807,7 +805,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` | | :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` |
| :ring: | `ring` | :gem: | `gem` | | :ring: | `ring` | :gem: | `gem` |
#### Sound ### Sound
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -817,7 +815,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :postal_horn: | `postal_horn` | :bell: | `bell` | | :postal_horn: | `postal_horn` | :bell: | `bell` |
| :no_bell: | `no_bell` | | | | :no_bell: | `no_bell` | | |
#### Music ### Music
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -827,7 +825,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :microphone: | `microphone` | :headphones: | `headphones` | | :microphone: | `microphone` | :headphones: | `headphones` |
| :radio: | `radio` | | | | :radio: | `radio` | | |
#### Musical Instrument ### Musical Instrument
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -835,7 +833,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` | | :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` |
| :violin: | `violin` | :drum: | `drum` | | :violin: | `violin` | :drum: | `drum` |
#### Phone ### Phone
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -843,7 +841,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` | | :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` |
| :pager: | `pager` | :fax: | `fax` | | :pager: | `pager` | :fax: | `fax` |
#### Computer ### Computer
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -854,7 +852,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` | | :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` |
| :cd: | `cd` | :dvd: | `dvd` | | :cd: | `cd` | :dvd: | `dvd` |
#### Light & Video ### Light & Video
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -867,7 +865,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :bulb: | `bulb` | :flashlight: | `flashlight` | | :bulb: | `bulb` | :flashlight: | `flashlight` |
| :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | | | :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | |
#### Book Paper ### Book Paper
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -881,7 +879,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` | | :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` |
| :label: | `label` | | | | :label: | `label` | | |
#### Money ### Money
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -890,7 +888,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :pound: | `pound` | :money_with_wings: | `money_with_wings` | | :pound: | `pound` | :money_with_wings: | `money_with_wings` |
| :credit_card: | `credit_card` | :chart: | `chart` | | :credit_card: | `credit_card` | :chart: | `chart` |
#### Mail ### Mail
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -902,7 +900,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` | | :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` |
| :ballot_box: | `ballot_box` | | | | :ballot_box: | `ballot_box` | | |
#### Writing ### Writing
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -911,7 +909,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :paintbrush: | `paintbrush` | :crayon: | `crayon` | | :paintbrush: | `paintbrush` | :crayon: | `crayon` |
| :memo: | `memo` <br /> `pencil` | | | | :memo: | `memo` <br /> `pencil` | | |
#### Office ### Office
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -928,7 +926,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` | | :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` |
| :wastebasket: | `wastebasket` | | | | :wastebasket: | `wastebasket` | | |
#### Lock ### Lock
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -936,7 +934,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` | | :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` |
| :key: | `key` | :old_key: | `old_key` | | :key: | `key` | :old_key: | `old_key` |
#### Tool ### Tool
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -949,20 +947,20 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clamp: | `clamp` | :balance_scale: | `balance_scale` | | :clamp: | `clamp` | :balance_scale: | `balance_scale` |
| :link: | `link` | :chains: | `chains` | | :link: | `link` | :chains: | `chains` |
#### Science ### Science
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :alembic: | `alembic` | :microscope: | `microscope` | | :alembic: | `alembic` | :microscope: | `microscope` |
| :telescope: | `telescope` | :satellite: | `satellite` | | :telescope: | `telescope` | :satellite: | `satellite` |
#### Medical ### Medical
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :syringe: | `syringe` | :pill: | `pill` | | :syringe: | `syringe` | :pill: | `pill` |
#### Household ### Household
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -971,16 +969,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :shower: | `shower` | :bathtub: | `bathtub` | | :shower: | `shower` | :bathtub: | `bathtub` |
| :shopping_cart: | `shopping_cart` | | | | :shopping_cart: | `shopping_cart` | | |
#### Other Object ### Other Object
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :smoking: | `smoking` | :coffin: | `coffin` | | :smoking: | `smoking` | :coffin: | `coffin` |
| :funeral_urn: | `funeral_urn` | :moyai: | `moyai` | | :funeral_urn: | `funeral_urn` | :moyai: | `moyai` |
### Symbols ## Symbols
#### Transport Sign ### Transport Sign
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -992,7 +990,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :customs: | `customs` | :baggage_claim: | `baggage_claim` | | :customs: | `customs` | :baggage_claim: | `baggage_claim` |
| :left_luggage: | `left_luggage` | | | | :left_luggage: | `left_luggage` | | |
#### Warning ### Warning
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1004,7 +1002,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :underage: | `underage` | :radioactive: | `radioactive` | | :underage: | `underage` | :radioactive: | `radioactive` |
| :biohazard: | `biohazard` | | | | :biohazard: | `biohazard` | | |
#### Arrow ### Arrow
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1020,7 +1018,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :on: | `on` | :soon: | `soon` | | :on: | `on` | :soon: | `soon` |
| :top: | `top` | | | | :top: | `top` | | |
#### Religion ### Religion
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1031,7 +1029,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` | | :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` |
| :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` | | :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` |
#### Zodiac ### Zodiac
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1043,7 +1041,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :aquarius: | `aquarius` | :pisces: | `pisces` | | :aquarius: | `aquarius` | :pisces: | `pisces` |
| :ophiuchus: | `ophiuchus` | | | | :ophiuchus: | `ophiuchus` | | |
#### Av Symbol ### Av Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1060,14 +1058,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` | | :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` |
| :mobile_phone_off: | `mobile_phone_off` | | | | :mobile_phone_off: | `mobile_phone_off` | | |
#### Math ### Math
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` | | :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` |
| :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` | | :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` |
#### Punctuation ### Punctuation
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1076,13 +1074,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` | | :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` |
| :wavy_dash: | `wavy_dash` | | | | :wavy_dash: | `wavy_dash` | | |
#### Currency ### Currency
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` | | :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` |
#### Keycap ### Keycap
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1094,7 +1092,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :eight: | `eight` | :nine: | `nine` | | :eight: | `eight` | :nine: | `nine` |
| :keycap_ten: | `keycap_ten` | | | | :keycap_ten: | `keycap_ten` | | |
#### Alphabet ### Alphabet
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1119,7 +1117,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :secret: | `secret` | :u55b6: | `u55b6` | | :secret: | `secret` | :u55b6: | `u55b6` |
| :u6e80: | `u6e80` | | | | :u6e80: | `u6e80` | | |
#### Geometric ### Geometric
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1135,7 +1133,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` | | :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` |
| :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` | | :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` |
#### Other Symbol ### Other Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1150,9 +1148,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :sparkle: | `sparkle` | :copyright: | `copyright` | | :sparkle: | `sparkle` | :copyright: | `copyright` |
| :registered: | `registered` | :tm: | `tm` | | :registered: | `registered` | :tm: | `tm` |
### Flags ## Flags
#### Common Flags ### Common Flags
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1160,7 +1158,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` | | :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` |
| :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` | | :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` |
#### Country and Region Flags ### Country and Region Flags
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |

View File

@@ -49,13 +49,11 @@ This page enables `twemoji` to make emoji look beautiful everywhere.
Set `twemoji` to `true` in your [front matter](../theme-documentation-content#front-matter) or in the `params.page` part of the [site configuration](https://gohugo.io/getting-started/configuration/) to use :(far fa-grin-tongue-wink fa-fw): Twemoji. Set `twemoji` to `true` in your [front matter](../theme-documentation-content#front-matter) or in the `params.page` part of the [site configuration](https://gohugo.io/getting-started/configuration/) to use :(far fa-grin-tongue-wink fa-fw): Twemoji.
{{< /admonition >}} {{< /admonition >}}
## Emoji Cheat Sheet The following **cheat sheet** is a useful reference for emoji shorthand codes.
The following cheat sheet is a useful reference for emoji shorthand codes. ## Smileys & Emotion
### Smileys & Emotion ### Face Smiling
#### Face Smiling
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -67,7 +65,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :wink: | `wink` | :blush: | `blush` | | :wink: | `wink` | :blush: | `blush` |
| :innocent: | `innocent` | | | | :innocent: | `innocent` | | |
#### Face Affection ### Face Affection
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -75,7 +73,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :kissing: | `kissing` | :relaxed: | `relaxed` | | :kissing: | `kissing` | :relaxed: | `relaxed` |
| :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` | | :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` |
#### Face Tongue ### Face Tongue
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -83,13 +81,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` | | :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` |
| :money_mouth_face: | `money_mouth_face` | | | | :money_mouth_face: | `money_mouth_face` | | |
#### Face Hand ### Face Hand
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :hugs: | `hugs` | :thinking: | `thinking` | | :hugs: | `hugs` | :thinking: | `thinking` |
#### Face Neutral Skeptical ### Face Neutral Skeptical
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -99,7 +97,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` | | :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` |
| :lying_face: | `lying_face` | | | | :lying_face: | `lying_face` | | |
#### Face Sleepy ### Face Sleepy
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -107,7 +105,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :sleepy: | `sleepy` | :drooling_face: | `drooling_face` | | :sleepy: | `sleepy` | :drooling_face: | `drooling_face` |
| :sleeping: | `sleeping` | | | | :sleeping: | `sleeping` | | |
#### Face Unwell ### Face Unwell
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -115,19 +113,19 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` | | :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` |
| :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` | | :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` |
#### Face Hat ### Face Hat
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :cowboy_hat_face: | `cowboy_hat_face` | | | | :cowboy_hat_face: | `cowboy_hat_face` | | |
#### Face Glasses ### Face Glasses
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` | | :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` |
#### Face Concerned ### Face Concerned
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -143,7 +141,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :disappointed: | `disappointed` | :sweat: | `sweat` | | :disappointed: | `disappointed` | :sweat: | `sweat` |
| :weary: | `weary` | :tired_face: | `tired_face` | | :weary: | `weary` | :tired_face: | `tired_face` |
#### Face Negative ### Face Negative
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -152,7 +150,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :imp: | `imp` | :skull: | `skull` | | :imp: | `imp` | :skull: | `skull` |
| :skull_and_crossbones: | `skull_and_crossbones` | | | | :skull_and_crossbones: | `skull_and_crossbones` | | |
#### Face Costume ### Face Costume
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -161,7 +159,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :ghost: | `ghost` | :alien: | `alien` | | :ghost: | `ghost` | :alien: | `alien` |
| :space_invader: | `space_invader` | :robot: | `robot` | | :space_invader: | `space_invader` | :robot: | `robot` |
#### Cat Face ### Cat Face
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -171,14 +169,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` | | :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` |
| :pouting_cat: | `pouting_cat` | | | | :pouting_cat: | `pouting_cat` | | |
#### Monkey Face ### Monkey Face
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` | | :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` |
| :speak_no_evil: | `speak_no_evil` | | | | :speak_no_evil: | `speak_no_evil` | | |
#### Emotion ### Emotion
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -199,9 +197,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` | | :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` |
| :zzz: | `zzz` | | | | :zzz: | `zzz` | | |
### People & Body ## People & Body
#### Hand Fingers Open ### Hand Fingers Open
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -209,7 +207,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` | | :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` |
| :vulcan_salute: | `vulcan_salute` | | | | :vulcan_salute: | `vulcan_salute` | | |
#### Hand Fingers Partial ### Hand Fingers Partial
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -217,7 +215,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :crossed_fingers: | `crossed_fingers` | :metal: | `metal` | | :crossed_fingers: | `crossed_fingers` | :metal: | `metal` |
| :call_me_hand: | `call_me_hand` | | | | :call_me_hand: | `call_me_hand` | | |
#### Hand Single Finger ### Hand Single Finger
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -225,7 +223,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` | | :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` |
| :point_down: | `point_down` | :point_up: | `point_up` | | :point_down: | `point_down` | :point_up: | `point_up` |
#### Hand Fingers Closed ### Hand Fingers Closed
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -233,7 +231,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` | | :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` |
| :fist_left: | `fist_left` | :fist_right: | `fist_right` | | :fist_left: | `fist_left` | :fist_right: | `fist_right` |
#### Hands ### Hands
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -241,14 +239,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :open_hands: | `open_hands` | :handshake: | `handshake` | | :open_hands: | `open_hands` | :handshake: | `handshake` |
| :pray: | `pray` | | | | :pray: | `pray` | | |
#### Hand Prop ### Hand Prop
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :writing_hand: | `writing_hand` | :nail_care: | `nail_care` | | :writing_hand: | `writing_hand` | :nail_care: | `nail_care` |
| :selfie: | `selfie` | | | | :selfie: | `selfie` | | |
#### Body Parts ### Body Parts
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -257,7 +255,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :eye: | `eye` | :tongue: | `tongue` | | :eye: | `eye` | :tongue: | `tongue` |
| :lips: | `lips` | | | | :lips: | `lips` | | |
#### Person ### Person
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -267,7 +265,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :blonde_woman: | `blonde_woman` | :older_man: | `older_man` | | :blonde_woman: | `blonde_woman` | :older_man: | `older_man` |
| :older_woman: | `older_woman` | | | | :older_woman: | `older_woman` | | |
#### Person Gesture ### Person Gesture
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -281,7 +279,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` | | :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` |
| :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` | | :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` |
#### Person Role ### Person Role
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -310,14 +308,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` | | :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` |
| :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` | | :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` |
#### Person Fantasy ### Person Fantasy
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :angel: | `angel` | :santa: | `santa` | | :angel: | `angel` | :santa: | `santa` |
| :mrs_claus: | `mrs_claus` | | | | :mrs_claus: | `mrs_claus` | | |
#### Person Activity ### Person Activity
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -329,7 +327,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` | | :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` |
| :dancing_men: | `dancing_men` | | | | :dancing_men: | `dancing_men` | | |
#### Person Sport ### Person Sport
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -349,13 +347,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` | | :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` |
| :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` | | :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` |
#### Person Resting ### Person Resting
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bath: | `bath` | :sleeping_bed: | `sleeping_bed` | | :bath: | `bath` | :sleeping_bed: | `sleeping_bed` |
#### Family ### Family
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -377,16 +375,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` | | :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` |
| :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` | | :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` |
#### Person Symbol ### Person Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` | | :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` |
| :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` | | :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` |
### Animals & Nature ## Animals & Nature
#### Animal Mammal ### Animal Mammal
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -414,7 +412,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :koala: | `koala` | :panda_face: | `panda_face` | | :koala: | `koala` | :panda_face: | `panda_face` |
| :feet: | `feet` <br /> `paw_prints` | | | | :feet: | `feet` <br /> `paw_prints` | | |
#### Animal Bird ### Animal Bird
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -425,13 +423,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :dove: | `dove` | :eagle: | `eagle` | | :dove: | `dove` | :eagle: | `eagle` |
| :duck: | `duck` | :owl: | `owl` | | :duck: | `duck` | :owl: | `owl` |
#### Animal Amphibian ### Animal Amphibian
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :frog: | `frog` | | :frog: | `frog` |
#### Animal Reptile ### Animal Reptile
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -439,7 +437,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :lizard: | `lizard` | :snake: | `snake` | | :lizard: | `lizard` | :snake: | `snake` |
| :dragon_face: | `dragon_face` | :dragon: | `dragon` | | :dragon_face: | `dragon_face` | :dragon: | `dragon` |
#### Animal Marine ### Animal Marine
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -449,7 +447,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :shark: | `shark` | :octopus: | `octopus` | | :shark: | `shark` | :octopus: | `octopus` |
| :shell: | `shell` | | | | :shell: | `shell` | | |
#### Animal Bug ### Animal Bug
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -459,7 +457,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :spider: | `spider` | :spider_web: | `spider_web` | | :spider: | `spider` | :spider_web: | `spider_web` |
| :scorpion: | `scorpion` | | | | :scorpion: | `scorpion` | | |
#### Plant Flower ### Plant Flower
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -469,7 +467,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :hibiscus: | `hibiscus` | :sunflower: | `sunflower` | | :hibiscus: | `hibiscus` | :sunflower: | `sunflower` |
| :blossom: | `blossom` | :tulip: | `tulip` | | :blossom: | `blossom` | :tulip: | `tulip` |
#### Plant Other ### Plant Other
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -480,9 +478,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` | | :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` |
| :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` | | :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` |
### Food & Drink ## Food & Drink
#### Food Fruit ### Food Fruit
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -495,7 +493,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` | | :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` |
| :tomato: | `tomato` | | | | :tomato: | `tomato` | | |
#### Food Vegetable ### Food Vegetable
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -505,7 +503,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :cucumber: | `cucumber` | :mushroom: | `mushroom` | | :cucumber: | `cucumber` | :mushroom: | `mushroom` |
| :peanuts: | `peanuts` | :chestnut: | `chestnut` | | :peanuts: | `peanuts` | :chestnut: | `chestnut` |
#### Food Prepared ### Food Prepared
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -521,7 +519,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :stew: | `stew` | :green_salad: | `green_salad` | | :stew: | `stew` | :green_salad: | `green_salad` |
| :popcorn: | `popcorn` | | | | :popcorn: | `popcorn` | | |
#### Food Asian ### Food Asian
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -533,14 +531,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` | | :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` |
| :dango: | `dango` | | | | :dango: | `dango` | | |
#### Food Marine ### Food Marine
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :crab: | `crab` | :shrimp: | `shrimp` | | :crab: | `crab` | :shrimp: | `shrimp` |
| :squid: | `squid` | | | | :squid: | `squid` | | |
#### Food Sweet ### Food Sweet
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -551,7 +549,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :candy: | `candy` | :lollipop: | `lollipop` | | :candy: | `candy` | :lollipop: | `lollipop` |
| :custard: | `custard` | :honey_pot: | `honey_pot` | | :custard: | `custard` | :honey_pot: | `honey_pot` |
#### Drink ### Drink
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -563,7 +561,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :beers: | `beers` | :clinking_glasses: | `clinking_glasses` | | :beers: | `beers` | :clinking_glasses: | `clinking_glasses` |
| :tumbler_glass: | `tumbler_glass` | | | | :tumbler_glass: | `tumbler_glass` | | |
#### Dishware ### Dishware
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -571,9 +569,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` | | :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` |
| :amphora: | `amphora` | | | | :amphora: | `amphora` | | |
### Travel & Places ## Travel & Places
#### Place Map ### Place Map
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -581,7 +579,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` | | :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` |
| :world_map: | `world_map` | :japan: | `japan` | | :world_map: | `world_map` | :japan: | `japan` |
#### Place Geographic ### Place Geographic
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -591,7 +589,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :desert: | `desert` | :desert_island: | `desert_island` | | :desert: | `desert` | :desert_island: | `desert_island` |
| :national_park: | `national_park` | | | | :national_park: | `national_park` | | |
#### Place Building ### Place Building
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -608,7 +606,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` | | :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` |
| :statue_of_liberty: | `statue_of_liberty` | | | | :statue_of_liberty: | `statue_of_liberty` | | |
#### Place Religious ### Place Religious
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -616,7 +614,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` | | :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` |
| :kaaba: | `kaaba` | | | | :kaaba: | `kaaba` | | |
#### Place Other ### Place Other
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -629,7 +627,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` | | :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` |
| :barber: | `barber` | :circus_tent: | `circus_tent` | | :barber: | `barber` | :circus_tent: | `circus_tent` |
#### Transport Ground ### Transport Ground
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -656,7 +654,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` | | :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` |
| :construction: | `construction` | | | | :construction: | `construction` | | |
#### Transport Water ### Transport Water
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -665,7 +663,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :passenger_ship: | `passenger_ship` | :ferry: | `ferry` | | :passenger_ship: | `passenger_ship` | :ferry: | `ferry` |
| :motor_boat: | `motor_boat` | :ship: | `ship` | | :motor_boat: | `motor_boat` | :ship: | `ship` |
#### Transport Air ### Transport Air
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -676,13 +674,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` | | :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` |
| :rocket: | `rocket` | | | | :rocket: | `rocket` | | |
#### Hotel ### Hotel
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bellhop_bell: | `bellhop_bell` | | :bellhop_bell: | `bellhop_bell` |
#### Time ### Time
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -703,7 +701,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clock1030: | `clock1030` | :clock11: | `clock11` | | :clock1030: | `clock1030` | :clock11: | `clock11` |
| :clock1130: | `clock1130` | | | | :clock1130: | `clock1130` | | |
#### Sky & Weather ### Sky & Weather
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -731,9 +729,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :comet: | `comet` | :fire: | `fire` | | :comet: | `comet` | :fire: | `fire` |
| :droplet: | `droplet` | :ocean: | `ocean` | | :droplet: | `droplet` | :ocean: | `ocean` |
### Activities ## Activities
#### Event ### Event
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -748,7 +746,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` | | :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` |
| :ticket: | `ticket` | | | | :ticket: | `ticket` | | |
#### Award Medal ### Award Medal
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -756,7 +754,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` | | :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` |
| :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` | | :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` |
#### Sport ### Sport
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -772,7 +770,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` | | :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` |
| :ski: | `ski` | | | | :ski: | `ski` | | |
#### Game ### Game
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -784,16 +782,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clubs: | `clubs` | :black_joker: | `black_joker` | | :clubs: | `clubs` | :black_joker: | `black_joker` |
| :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` | | :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` |
#### Arts & Crafts ### Arts & Crafts
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` | | :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` |
| :art: | `art` | | | | :art: | `art` | | |
### Objects ## Objects
#### Clothing ### Clothing
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -812,7 +810,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` | | :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` |
| :ring: | `ring` | :gem: | `gem` | | :ring: | `ring` | :gem: | `gem` |
#### Sound ### Sound
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -822,7 +820,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :postal_horn: | `postal_horn` | :bell: | `bell` | | :postal_horn: | `postal_horn` | :bell: | `bell` |
| :no_bell: | `no_bell` | | | | :no_bell: | `no_bell` | | |
#### Music ### Music
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -832,7 +830,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :microphone: | `microphone` | :headphones: | `headphones` | | :microphone: | `microphone` | :headphones: | `headphones` |
| :radio: | `radio` | | | | :radio: | `radio` | | |
#### Musical Instrument ### Musical Instrument
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -840,7 +838,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` | | :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` |
| :violin: | `violin` | :drum: | `drum` | | :violin: | `violin` | :drum: | `drum` |
#### Phone ### Phone
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -848,7 +846,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` | | :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` |
| :pager: | `pager` | :fax: | `fax` | | :pager: | `pager` | :fax: | `fax` |
#### Computer ### Computer
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -859,7 +857,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` | | :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` |
| :cd: | `cd` | :dvd: | `dvd` | | :cd: | `cd` | :dvd: | `dvd` |
#### Light & Video ### Light & Video
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -872,7 +870,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :bulb: | `bulb` | :flashlight: | `flashlight` | | :bulb: | `bulb` | :flashlight: | `flashlight` |
| :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | | | :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | |
#### Book Paper ### Book Paper
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -886,7 +884,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` | | :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` |
| :label: | `label` | | | | :label: | `label` | | |
#### Money ### Money
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -895,7 +893,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :pound: | `pound` | :money_with_wings: | `money_with_wings` | | :pound: | `pound` | :money_with_wings: | `money_with_wings` |
| :credit_card: | `credit_card` | :chart: | `chart` | | :credit_card: | `credit_card` | :chart: | `chart` |
#### Mail ### Mail
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -907,7 +905,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` | | :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` |
| :ballot_box: | `ballot_box` | | | | :ballot_box: | `ballot_box` | | |
#### Writing ### Writing
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -916,7 +914,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :paintbrush: | `paintbrush` | :crayon: | `crayon` | | :paintbrush: | `paintbrush` | :crayon: | `crayon` |
| :memo: | `memo` <br /> `pencil` | | | | :memo: | `memo` <br /> `pencil` | | |
#### Office ### Office
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -933,7 +931,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` | | :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` |
| :wastebasket: | `wastebasket` | | | | :wastebasket: | `wastebasket` | | |
#### Lock ### Lock
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -941,7 +939,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` | | :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` |
| :key: | `key` | :old_key: | `old_key` | | :key: | `key` | :old_key: | `old_key` |
#### Tool ### Tool
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -954,20 +952,20 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :clamp: | `clamp` | :balance_scale: | `balance_scale` | | :clamp: | `clamp` | :balance_scale: | `balance_scale` |
| :link: | `link` | :chains: | `chains` | | :link: | `link` | :chains: | `chains` |
#### Science ### Science
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :alembic: | `alembic` | :microscope: | `microscope` | | :alembic: | `alembic` | :microscope: | `microscope` |
| :telescope: | `telescope` | :satellite: | `satellite` | | :telescope: | `telescope` | :satellite: | `satellite` |
#### Medical ### Medical
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :syringe: | `syringe` | :pill: | `pill` | | :syringe: | `syringe` | :pill: | `pill` |
#### Household ### Household
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -976,16 +974,16 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :shower: | `shower` | :bathtub: | `bathtub` | | :shower: | `shower` | :bathtub: | `bathtub` |
| :shopping_cart: | `shopping_cart` | | | | :shopping_cart: | `shopping_cart` | | |
#### Other Object ### Other Object
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :smoking: | `smoking` | :coffin: | `coffin` | | :smoking: | `smoking` | :coffin: | `coffin` |
| :funeral_urn: | `funeral_urn` | :moyai: | `moyai` | | :funeral_urn: | `funeral_urn` | :moyai: | `moyai` |
### Symbols ## Symbols
#### Transport Sign ### Transport Sign
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -997,7 +995,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :customs: | `customs` | :baggage_claim: | `baggage_claim` | | :customs: | `customs` | :baggage_claim: | `baggage_claim` |
| :left_luggage: | `left_luggage` | | | | :left_luggage: | `left_luggage` | | |
#### Warning ### Warning
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1009,7 +1007,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :underage: | `underage` | :radioactive: | `radioactive` | | :underage: | `underage` | :radioactive: | `radioactive` |
| :biohazard: | `biohazard` | | | | :biohazard: | `biohazard` | | |
#### Arrow ### Arrow
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1025,7 +1023,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :on: | `on` | :soon: | `soon` | | :on: | `on` | :soon: | `soon` |
| :top: | `top` | | | | :top: | `top` | | |
#### Religion ### Religion
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1036,7 +1034,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` | | :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` |
| :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` | | :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` |
#### Zodiac ### Zodiac
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1048,7 +1046,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :aquarius: | `aquarius` | :pisces: | `pisces` | | :aquarius: | `aquarius` | :pisces: | `pisces` |
| :ophiuchus: | `ophiuchus` | | | | :ophiuchus: | `ophiuchus` | | |
#### Av Symbol ### Av Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1065,14 +1063,14 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` | | :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` |
| :mobile_phone_off: | `mobile_phone_off` | | | | :mobile_phone_off: | `mobile_phone_off` | | |
#### Math ### Math
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` | | :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` |
| :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` | | :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` |
#### Punctuation ### Punctuation
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1081,13 +1079,13 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` | | :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` |
| :wavy_dash: | `wavy_dash` | | | | :wavy_dash: | `wavy_dash` | | |
#### Currency ### Currency
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` | | :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` |
#### Keycap ### Keycap
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1099,7 +1097,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :eight: | `eight` | :nine: | `nine` | | :eight: | `eight` | :nine: | `nine` |
| :keycap_ten: | `keycap_ten` | | | | :keycap_ten: | `keycap_ten` | | |
#### Alphabet ### Alphabet
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1124,7 +1122,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :secret: | `secret` | :u55b6: | `u55b6` | | :secret: | `secret` | :u55b6: | `u55b6` |
| :u6e80: | `u6e80` | | | | :u6e80: | `u6e80` | | |
#### Geometric ### Geometric
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1140,7 +1138,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` | | :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` |
| :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` | | :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` |
#### Other Symbol ### Other Symbol
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1155,9 +1153,9 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :sparkle: | `sparkle` | :copyright: | `copyright` | | :sparkle: | `sparkle` | :copyright: | `copyright` |
| :registered: | `registered` | :tm: | `tm` | | :registered: | `registered` | :tm: | `tm` |
### Flags ## Flags
#### Common Flags ### Common Flags
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1165,7 +1163,7 @@ The following cheat sheet is a useful reference for emoji shorthand codes.
| :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` | | :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` |
| :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` | | :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` |
#### Country and Region Flags ### Country and Region Flags
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |

View File

@@ -45,13 +45,11 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
请在文章的[前置参数](../theme-documentation-content#front-matter) 或 [网站配置](../theme-documentation-basics#site-configuration) 的 `params.page` 部分中将 `twemoji` 设置为 `true` 来使用 :(far fa-grin-tongue-wink fa-fw): Twemoji. 请在文章的[前置参数](../theme-documentation-content#front-matter) 或 [网站配置](../theme-documentation-basics#site-configuration) 的 `params.page` 部分中将 `twemoji` 设置为 `true` 来使用 :(far fa-grin-tongue-wink fa-fw): Twemoji.
{{< /admonition >}} {{< /admonition >}}
## Emoji 符号清单 以下**符号清单**是 emoji 代码的非常有用的参考.
以下清单是 emoji 代码的非常有用的参考. ## 表情与情感
### 表情与情感 ### 笑脸表情
#### 笑脸表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -63,7 +61,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :wink: | `wink` | :blush: | `blush` | | :wink: | `wink` | :blush: | `blush` |
| :innocent: | `innocent` | | | | :innocent: | `innocent` | | |
#### 爱意表情 ### 爱意表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -71,7 +69,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :kissing: | `kissing` | :relaxed: | `relaxed` | | :kissing: | `kissing` | :relaxed: | `relaxed` |
| :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` | | :kissing_closed_eyes: | `kissing_closed_eyes` | :kissing_smiling_eyes: | `kissing_smiling_eyes` |
#### 吐舌头表情 ### 吐舌头表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -79,13 +77,13 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` | | :stuck_out_tongue_winking_eye: | `stuck_out_tongue_winking_eye` | :stuck_out_tongue_closed_eyes: | `stuck_out_tongue_closed_eyes` |
| :money_mouth_face: | `money_mouth_face` | | | | :money_mouth_face: | `money_mouth_face` | | |
#### 带手的表情 ### 带手的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :hugs: | `hugs` | :thinking: | `thinking` | | :hugs: | `hugs` | :thinking: | `thinking` |
#### 中性表情 ### 中性表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -95,7 +93,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` | | :roll_eyes: | `roll_eyes` | :grimacing: | `grimacing` |
| :lying_face: | `lying_face` | | | | :lying_face: | `lying_face` | | |
#### 困倦的表情 ### 困倦的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -103,7 +101,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :sleepy: | `sleepy` | :drooling_face: | `drooling_face` | | :sleepy: | `sleepy` | :drooling_face: | `drooling_face` |
| :sleeping: | `sleeping` | | | | :sleeping: | `sleeping` | | |
#### 不适的表情 ### 不适的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -111,19 +109,19 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` | | :face_with_head_bandage: | `face_with_head_bandage` | :nauseated_face: | `nauseated_face` |
| :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` | | :sneezing_face: | `sneezing_face` | :dizzy_face: | `dizzy_face` |
#### 戴帽子的表情 ### 戴帽子的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :cowboy_hat_face: | `cowboy_hat_face` | | | | :cowboy_hat_face: | `cowboy_hat_face` | | |
#### 戴眼镜的表情 ### 戴眼镜的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` | | :sunglasses: | `sunglasses` | :nerd_face: | `nerd_face` |
#### 担心的表情 ### 担心的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -139,7 +137,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :disappointed: | `disappointed` | :sweat: | `sweat` | | :disappointed: | `disappointed` | :sweat: | `sweat` |
| :weary: | `weary` | :tired_face: | `tired_face` | | :weary: | `weary` | :tired_face: | `tired_face` |
#### 否定的表情 ### 否定的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -148,7 +146,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :imp: | `imp` | :skull: | `skull` | | :imp: | `imp` | :skull: | `skull` |
| :skull_and_crossbones: | `skull_and_crossbones` | | | | :skull_and_crossbones: | `skull_and_crossbones` | | |
#### 特殊打扮的表情 ### 特殊打扮的表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -157,7 +155,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :ghost: | `ghost` | :alien: | `alien` | | :ghost: | `ghost` | :alien: | `alien` |
| :space_invader: | `space_invader` | :robot: | `robot` | | :space_invader: | `space_invader` | :robot: | `robot` |
#### 猫脸表情 ### 猫脸表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -167,14 +165,14 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` | | :scream_cat: | `scream_cat` | :crying_cat_face: | `crying_cat_face` |
| :pouting_cat: | `pouting_cat` | | | | :pouting_cat: | `pouting_cat` | | |
#### 猴脸表情 ### 猴脸表情
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` | | :see_no_evil: | `see_no_evil` | :hear_no_evil: | `hear_no_evil` |
| :speak_no_evil: | `speak_no_evil` | | | | :speak_no_evil: | `speak_no_evil` | | |
#### 情感 ### 情感
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -195,9 +193,9 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` | | :right_anger_bubble: | `right_anger_bubble` | :thought_balloon: | `thought_balloon` |
| :zzz: | `zzz` | | | | :zzz: | `zzz` | | |
### 人与身体 ## 人与身体
#### 张开手掌的手势 ### 张开手掌的手势
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -205,7 +203,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` | | :raised_hand_with_fingers_splayed: | `raised_hand_with_fingers_splayed` | :hand: | `hand` <br /> `raised_hand` |
| :vulcan_salute: | `vulcan_salute` | | | | :vulcan_salute: | `vulcan_salute` | | |
#### 部分手指的手势 ### 部分手指的手势
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -213,7 +211,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :crossed_fingers: | `crossed_fingers` | :metal: | `metal` | | :crossed_fingers: | `crossed_fingers` | :metal: | `metal` |
| :call_me_hand: | `call_me_hand` | | | | :call_me_hand: | `call_me_hand` | | |
#### 一根手指的手势 ### 一根手指的手势
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -221,7 +219,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` | | :point_up_2: | `point_up_2` | :fu: | `fu` <br /> `middle_finger` |
| :point_down: | `point_down` | :point_up: | `point_up` | | :point_down: | `point_down` | :point_up: | `point_up` |
#### 握紧的手势 ### 握紧的手势
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -229,7 +227,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` | | :fist: | `fist` <br /> `fist_raised` | :facepunch: | `facepunch` <br /> `fist_oncoming` <br /> `punch` |
| :fist_left: | `fist_left` | :fist_right: | `fist_right` | | :fist_left: | `fist_left` | :fist_right: | `fist_right` |
#### 两只手 ### 两只手
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -237,14 +235,14 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :open_hands: | `open_hands` | :handshake: | `handshake` | | :open_hands: | `open_hands` | :handshake: | `handshake` |
| :pray: | `pray` | | | | :pray: | `pray` | | |
#### 握住东西的手势 ### 握住东西的手势
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :writing_hand: | `writing_hand` | :nail_care: | `nail_care` | | :writing_hand: | `writing_hand` | :nail_care: | `nail_care` |
| :selfie: | `selfie` | | | | :selfie: | `selfie` | | |
#### 身体部位 ### 身体部位
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -253,7 +251,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :eye: | `eye` | :tongue: | `tongue` | | :eye: | `eye` | :tongue: | `tongue` |
| :lips: | `lips` | | | | :lips: | `lips` | | |
#### ### 人
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -263,7 +261,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :blonde_woman: | `blonde_woman` | :older_man: | `older_man` | | :blonde_woman: | `blonde_woman` | :older_man: | `older_man` |
| :older_woman: | `older_woman` | | | | :older_woman: | `older_woman` | | |
#### 身体动作 ### 身体动作
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -277,7 +275,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` | | :man_facepalming: | `man_facepalming` | :woman_facepalming: | `woman_facepalming` |
| :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` | | :man_shrugging: | `man_shrugging` | :woman_shrugging: | `woman_shrugging` |
#### 人物角色 ### 人物角色
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -306,14 +304,14 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` | | :man_with_gua_pi_mao: | `man_with_gua_pi_mao` | :man_in_tuxedo: | `man_in_tuxedo` |
| :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` | | :bride_with_veil: | `bride_with_veil` | :pregnant_woman: | `pregnant_woman` |
#### 幻想的人物 ### 幻想的人物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :angel: | `angel` | :santa: | `santa` | | :angel: | `angel` | :santa: | `santa` |
| :mrs_claus: | `mrs_claus` | | | | :mrs_claus: | `mrs_claus` | | |
#### 人物活动 ### 人物活动
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -325,7 +323,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` | | :business_suit_levitating: | `business_suit_levitating` | :dancers: | `dancers` <br /> `dancing_women` |
| :dancing_men: | `dancing_men` | | | | :dancing_men: | `dancing_men` | | |
#### 体育 ### 体育
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -345,13 +343,13 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` | | :man_playing_handball: | `man_playing_handball` | :woman_playing_handball: | `woman_playing_handball` |
| :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` | | :man_juggling: | `man_juggling` | :woman_juggling: | `woman_juggling` |
#### 休息 ### 休息
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bath: | `bath` | :sleeping_bed: | `sleeping_bed` | | :bath: | `bath` | :sleeping_bed: | `sleeping_bed` |
#### 家庭 ### 家庭
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -373,16 +371,16 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` | | :family_woman_boy_boy: | `family_woman_boy_boy` | :family_woman_girl: | `family_woman_girl` |
| :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` | | :family_woman_girl_boy: | `family_woman_girl_boy` | :family_woman_girl_girl: | `family_woman_girl_girl` |
#### 人物符号 ### 人物符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` | | :speaking_head: | `speaking_head` | :bust_in_silhouette: | `bust_in_silhouette` |
| :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` | | :busts_in_silhouette: | `busts_in_silhouette` | :footprints: | `footprints` |
### 动物与自然 ## 动物与自然
#### 哺乳动物 ### 哺乳动物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -410,7 +408,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :koala: | `koala` | :panda_face: | `panda_face` | | :koala: | `koala` | :panda_face: | `panda_face` |
| :feet: | `feet` <br /> `paw_prints` | | | | :feet: | `feet` <br /> `paw_prints` | | |
#### 鸟类 ### 鸟类
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -421,13 +419,13 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :dove: | `dove` | :eagle: | `eagle` | | :dove: | `dove` | :eagle: | `eagle` |
| :duck: | `duck` | :owl: | `owl` | | :duck: | `duck` | :owl: | `owl` |
#### 两栖动物 ### 两栖动物
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :frog: | `frog` | | :frog: | `frog` |
#### 爬虫类 ### 爬虫类
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -435,7 +433,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :lizard: | `lizard` | :snake: | `snake` | | :lizard: | `lizard` | :snake: | `snake` |
| :dragon_face: | `dragon_face` | :dragon: | `dragon` | | :dragon_face: | `dragon_face` | :dragon: | `dragon` |
#### 海洋动物 ### 海洋动物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -445,7 +443,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :shark: | `shark` | :octopus: | `octopus` | | :shark: | `shark` | :octopus: | `octopus` |
| :shell: | `shell` | | | | :shell: | `shell` | | |
#### 虫类 ### 虫类
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -455,7 +453,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :spider: | `spider` | :spider_web: | `spider_web` | | :spider: | `spider` | :spider_web: | `spider_web` |
| :scorpion: | `scorpion` | | | | :scorpion: | `scorpion` | | |
#### 花类植物 ### 花类植物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -465,7 +463,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :hibiscus: | `hibiscus` | :sunflower: | `sunflower` | | :hibiscus: | `hibiscus` | :sunflower: | `sunflower` |
| :blossom: | `blossom` | :tulip: | `tulip` | | :blossom: | `blossom` | :tulip: | `tulip` |
#### 其它植物 ### 其它植物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -476,9 +474,9 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` | | :four_leaf_clover: | `four_leaf_clover` | :maple_leaf: | `maple_leaf` |
| :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` | | :fallen_leaf: | `fallen_leaf` | :leaves: | `leaves` |
### 食物与饮料 ## 食物与饮料
#### 水果 ### 水果
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -491,7 +489,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` | | :strawberry: | `strawberry` | :kiwi_fruit: | `kiwi_fruit` |
| :tomato: | `tomato` | | | | :tomato: | `tomato` | | |
#### 蔬菜 ### 蔬菜
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -501,7 +499,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :cucumber: | `cucumber` | :mushroom: | `mushroom` | | :cucumber: | `cucumber` | :mushroom: | `mushroom` |
| :peanuts: | `peanuts` | :chestnut: | `chestnut` | | :peanuts: | `peanuts` | :chestnut: | `chestnut` |
#### 快餐 ### 快餐
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -517,7 +515,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :stew: | `stew` | :green_salad: | `green_salad` | | :stew: | `stew` | :green_salad: | `green_salad` |
| :popcorn: | `popcorn` | | | | :popcorn: | `popcorn` | | |
#### 亚洲食物 ### 亚洲食物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -529,14 +527,14 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` | | :fried_shrimp: | `fried_shrimp` | :fish_cake: | `fish_cake` |
| :dango: | `dango` | | | | :dango: | `dango` | | |
#### 海鲜 ### 海鲜
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :crab: | `crab` | :shrimp: | `shrimp` | | :crab: | `crab` | :shrimp: | `shrimp` |
| :squid: | `squid` | | | | :squid: | `squid` | | |
#### 甜点 ### 甜点
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -547,7 +545,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :candy: | `candy` | :lollipop: | `lollipop` | | :candy: | `candy` | :lollipop: | `lollipop` |
| :custard: | `custard` | :honey_pot: | `honey_pot` | | :custard: | `custard` | :honey_pot: | `honey_pot` |
#### 饮料 ### 饮料
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -559,7 +557,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :beers: | `beers` | :clinking_glasses: | `clinking_glasses` | | :beers: | `beers` | :clinking_glasses: | `clinking_glasses` |
| :tumbler_glass: | `tumbler_glass` | | | | :tumbler_glass: | `tumbler_glass` | | |
#### 餐具 ### 餐具
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -567,9 +565,9 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` | | :spoon: | `spoon` | :hocho: | `hocho` <br /> `knife` |
| :amphora: | `amphora` | | | | :amphora: | `amphora` | | |
### 旅游与地理 ## 旅游与地理
#### 地图 ### 地图
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -577,7 +575,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` | | :earth_asia: | `earth_asia` | :globe_with_meridians: | `globe_with_meridians` |
| :world_map: | `world_map` | :japan: | `japan` | | :world_map: | `world_map` | :japan: | `japan` |
#### 地理现象 ### 地理现象
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -587,7 +585,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :desert: | `desert` | :desert_island: | `desert_island` | | :desert: | `desert` | :desert_island: | `desert_island` |
| :national_park: | `national_park` | | | | :national_park: | `national_park` | | |
#### 建筑物 ### 建筑物
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -604,7 +602,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` | | :wedding: | `wedding` | :tokyo_tower: | `tokyo_tower` |
| :statue_of_liberty: | `statue_of_liberty` | | | | :statue_of_liberty: | `statue_of_liberty` | | |
#### 宗教建筑 ### 宗教建筑
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -612,7 +610,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` | | :synagogue: | `synagogue` | :shinto_shrine: | `shinto_shrine` |
| :kaaba: | `kaaba` | | | | :kaaba: | `kaaba` | | |
#### 其它地点 ### 其它地点
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -625,7 +623,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` | | :ferris_wheel: | `ferris_wheel` | :roller_coaster: | `roller_coaster` |
| :barber: | `barber` | :circus_tent: | `circus_tent` | | :barber: | `barber` | :circus_tent: | `circus_tent` |
#### 陆路运输 ### 陆路运输
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -652,7 +650,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` | | :vertical_traffic_light: | `vertical_traffic_light` | :stop_sign: | `stop_sign` |
| :construction: | `construction` | | | | :construction: | `construction` | | |
#### 水路运输 ### 水路运输
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -661,7 +659,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :passenger_ship: | `passenger_ship` | :ferry: | `ferry` | | :passenger_ship: | `passenger_ship` | :ferry: | `ferry` |
| :motor_boat: | `motor_boat` | :ship: | `ship` | | :motor_boat: | `motor_boat` | :ship: | `ship` |
#### 空中运输 ### 空中运输
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -672,13 +670,13 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` | | :aerial_tramway: | `aerial_tramway` | :artificial_satellite: | `artificial_satellite` |
| :rocket: | `rocket` | | | | :rocket: | `rocket` | | |
#### 旅馆 ### 旅馆
| icon | code | icon | code | | icon | code | icon | code |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :bellhop_bell: | `bellhop_bell` | | :bellhop_bell: | `bellhop_bell` |
#### 时间 ### 时间
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -699,7 +697,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :clock1030: | `clock1030` | :clock11: | `clock11` | | :clock1030: | `clock1030` | :clock11: | `clock11` |
| :clock1130: | `clock1130` | | | | :clock1130: | `clock1130` | | |
#### 天空与天气 ### 天空与天气
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -727,9 +725,9 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :comet: | `comet` | :fire: | `fire` | | :comet: | `comet` | :fire: | `fire` |
| :droplet: | `droplet` | :ocean: | `ocean` | | :droplet: | `droplet` | :ocean: | `ocean` |
### 活动 ## 活动
#### 事件 ### 事件
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -744,7 +742,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` | | :reminder_ribbon: | `reminder_ribbon` | :tickets: | `tickets` |
| :ticket: | `ticket` | | | | :ticket: | `ticket` | | |
#### 奖杯与奖牌 ### 奖杯与奖牌
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -752,7 +750,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` | | :medal_sports: | `medal_sports` | :1st_place_medal: | `1st_place_medal` |
| :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` | | :2nd_place_medal: | `2nd_place_medal` | :3rd_place_medal: | `3rd_place_medal` |
#### 体育运动 ### 体育运动
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -768,7 +766,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` | | :fishing_pole_and_fish: | `fishing_pole_and_fish` | :running_shirt_with_sash: | `running_shirt_with_sash` |
| :ski: | `ski` | | | | :ski: | `ski` | | |
#### 游戏 ### 游戏
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -780,16 +778,16 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :clubs: | `clubs` | :black_joker: | `black_joker` | | :clubs: | `clubs` | :black_joker: | `black_joker` |
| :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` | | :mahjong: | `mahjong` | :flower_playing_cards: | `flower_playing_cards` |
#### 艺术与工艺 ### 艺术与工艺
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` | | :performing_arts: | `performing_arts` | :framed_picture: | `framed_picture` |
| :art: | `art` | | | | :art: | `art` | | |
### 物品 ## 物品
#### 服装 ### 服装
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -808,7 +806,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` | | :prayer_beads: | `prayer_beads` | :lipstick: | `lipstick` |
| :ring: | `ring` | :gem: | `gem` | | :ring: | `ring` | :gem: | `gem` |
#### 声音 ### 声音
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -818,7 +816,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :postal_horn: | `postal_horn` | :bell: | `bell` | | :postal_horn: | `postal_horn` | :bell: | `bell` |
| :no_bell: | `no_bell` | | | | :no_bell: | `no_bell` | | |
#### 音乐 ### 音乐
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -828,7 +826,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :microphone: | `microphone` | :headphones: | `headphones` | | :microphone: | `microphone` | :headphones: | `headphones` |
| :radio: | `radio` | | | | :radio: | `radio` | | |
#### 乐器 ### 乐器
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -836,7 +834,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` | | :musical_keyboard: | `musical_keyboard` | :trumpet: | `trumpet` |
| :violin: | `violin` | :drum: | `drum` | | :violin: | `violin` | :drum: | `drum` |
#### 电话 ### 电话
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -844,7 +842,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` | | :phone: | `phone` <br /> `telephone` | :telephone_receiver: | `telephone_receiver` |
| :pager: | `pager` | :fax: | `fax` | | :pager: | `pager` | :fax: | `fax` |
#### 电脑 ### 电脑
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -855,7 +853,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` | | :minidisc: | `minidisc` | :floppy_disk: | `floppy_disk` |
| :cd: | `cd` | :dvd: | `dvd` | | :cd: | `cd` | :dvd: | `dvd` |
#### 灯光与影像 ### 灯光与影像
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -868,7 +866,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :bulb: | `bulb` | :flashlight: | `flashlight` | | :bulb: | `bulb` | :flashlight: | `flashlight` |
| :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | | | :izakaya_lantern: | `izakaya_lantern` <br /> `lantern` | | |
#### 书与纸张 ### 书与纸张
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -882,7 +880,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` | | :bookmark_tabs: | `bookmark_tabs` | :bookmark: | `bookmark` |
| :label: | `label` | | | | :label: | `label` | | |
#### ### 钱
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -891,7 +889,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :pound: | `pound` | :money_with_wings: | `money_with_wings` | | :pound: | `pound` | :money_with_wings: | `money_with_wings` |
| :credit_card: | `credit_card` | :chart: | `chart` | | :credit_card: | `credit_card` | :chart: | `chart` |
#### 邮件 ### 邮件
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -903,7 +901,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` | | :mailbox_with_no_mail: | `mailbox_with_no_mail` | :postbox: | `postbox` |
| :ballot_box: | `ballot_box` | | | | :ballot_box: | `ballot_box` | | |
#### 书写 ### 书写
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -912,7 +910,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :paintbrush: | `paintbrush` | :crayon: | `crayon` | | :paintbrush: | `paintbrush` | :crayon: | `crayon` |
| :memo: | `memo` <br /> `pencil` | | | | :memo: | `memo` <br /> `pencil` | | |
#### 办公 ### 办公
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -929,7 +927,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` | | :card_file_box: | `card_file_box` | :file_cabinet: | `file_cabinet` |
| :wastebasket: | `wastebasket` | | | | :wastebasket: | `wastebasket` | | |
#### ### 锁
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -937,7 +935,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` | | :lock_with_ink_pen: | `lock_with_ink_pen` | :closed_lock_with_key: | `closed_lock_with_key` |
| :key: | `key` | :old_key: | `old_key` | | :key: | `key` | :old_key: | `old_key` |
#### 工具 ### 工具
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -950,20 +948,20 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :clamp: | `clamp` | :balance_scale: | `balance_scale` | | :clamp: | `clamp` | :balance_scale: | `balance_scale` |
| :link: | `link` | :chains: | `chains` | | :link: | `link` | :chains: | `chains` |
#### 科学 ### 科学
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :alembic: | `alembic` | :microscope: | `microscope` | | :alembic: | `alembic` | :microscope: | `microscope` |
| :telescope: | `telescope` | :satellite: | `satellite` | | :telescope: | `telescope` | :satellite: | `satellite` |
#### 医疗 ### 医疗
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :syringe: | `syringe` | :pill: | `pill` | | :syringe: | `syringe` | :pill: | `pill` |
#### 生活用品 ### 生活用品
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -972,16 +970,16 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :shower: | `shower` | :bathtub: | `bathtub` | | :shower: | `shower` | :bathtub: | `bathtub` |
| :shopping_cart: | `shopping_cart` | | | | :shopping_cart: | `shopping_cart` | | |
#### 其它物品 ### 其它物品
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :smoking: | `smoking` | :coffin: | `coffin` | | :smoking: | `smoking` | :coffin: | `coffin` |
| :funeral_urn: | `funeral_urn` | :moyai: | `moyai` | | :funeral_urn: | `funeral_urn` | :moyai: | `moyai` |
### 符号 ## 符号
#### 交通标识 ### 交通标识
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -993,7 +991,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :customs: | `customs` | :baggage_claim: | `baggage_claim` | | :customs: | `customs` | :baggage_claim: | `baggage_claim` |
| :left_luggage: | `left_luggage` | | | | :left_luggage: | `left_luggage` | | |
#### 警告 ### 警告
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1005,7 +1003,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :underage: | `underage` | :radioactive: | `radioactive` | | :underage: | `underage` | :radioactive: | `radioactive` |
| :biohazard: | `biohazard` | | | | :biohazard: | `biohazard` | | |
#### 箭头 ### 箭头
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1021,7 +1019,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :on: | `on` | :soon: | `soon` | | :on: | `on` | :soon: | `soon` |
| :top: | `top` | | | | :top: | `top` | | |
#### 宗教 ### 宗教
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1032,7 +1030,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` | | :star_and_crescent: | `star_and_crescent` | :peace_symbol: | `peace_symbol` |
| :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` | | :menorah: | `menorah` | :six_pointed_star: | `six_pointed_star` |
#### 生肖 ### 生肖
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1044,7 +1042,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :aquarius: | `aquarius` | :pisces: | `pisces` | | :aquarius: | `aquarius` | :pisces: | `pisces` |
| :ophiuchus: | `ophiuchus` | | | | :ophiuchus: | `ophiuchus` | | |
#### 影像符号 ### 影像符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1061,14 +1059,14 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` | | :signal_strength: | `signal_strength` | :vibration_mode: | `vibration_mode` |
| :mobile_phone_off: | `mobile_phone_off` | | | | :mobile_phone_off: | `mobile_phone_off` | | |
#### 数学 ### 数学
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` | | :heavy_multiplication_x: | `heavy_multiplication_x` | :heavy_plus_sign: | `heavy_plus_sign` |
| :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` | | :heavy_minus_sign: | `heavy_minus_sign` | :heavy_division_sign: | `heavy_division_sign` |
#### 标点符号 ### 标点符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1077,13 +1075,13 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` | | :grey_exclamation: | `grey_exclamation` | :exclamation: | `exclamation` <br /> `heavy_exclamation_mark` |
| :wavy_dash: | `wavy_dash` | | | | :wavy_dash: | `wavy_dash` | | |
#### 货币 ### 货币
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
| :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` | | :currency_exchange: | `currency_exchange` | :heavy_dollar_sign: | `heavy_dollar_sign` |
#### 按键符号 ### 按键符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1095,7 +1093,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :eight: | `eight` | :nine: | `nine` | | :eight: | `eight` | :nine: | `nine` |
| :keycap_ten: | `keycap_ten` | | | | :keycap_ten: | `keycap_ten` | | |
#### 字母符号 ### 字母符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1120,7 +1118,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :secret: | `secret` | :u55b6: | `u55b6` | | :secret: | `secret` | :u55b6: | `u55b6` |
| :u6e80: | `u6e80` | | | | :u6e80: | `u6e80` | | |
#### 几何符号 ### 几何符号
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1136,7 +1134,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` | | :diamond_shape_with_a_dot_inside: | `diamond_shape_with_a_dot_inside` | :radio_button: | `radio_button` |
| :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` | | :white_square_button: | `white_square_button` | :black_square_button: | `black_square_button` |
#### 其它符合 ### 其它符合
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1151,9 +1149,9 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :sparkle: | `sparkle` | :copyright: | `copyright` | | :sparkle: | `sparkle` | :copyright: | `copyright` |
| :registered: | `registered` | :tm: | `tm` | | :registered: | `registered` | :tm: | `tm` |
### 旗帜 ## 旗帜
#### 常用旗帜 ### 常用旗帜
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |
@@ -1161,7 +1159,7 @@ Emoji 可以通过多种方式在 Hugo 项目中启用.
| :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` | | :crossed_flags: | `crossed_flags` | :black_flag: | `black_flag` |
| :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` | | :white_flag: | `white_flag` | :rainbow_flag: | `rainbow_flag` |
#### 国家和地区旗帜 ### 国家和地区旗帜
| 图标 | 代码 | 图标 | 代码 | | 图标 | 代码 | 图标 | 代码 |
| :-: | - | :-: | - | | :-: | - | :-: | - |

View File

@@ -941,7 +941,7 @@ Translations strings are used for common default values used in the theme. Trans
To override these values, create a new file in your local i18n folder `i18n/<languageCode>.toml` and inspire yourself from `themes/LoveIt/i18n/en.toml`. To override these values, create a new file in your local i18n folder `i18n/<languageCode>.toml` and inspire yourself from `themes/LoveIt/i18n/en.toml`.
By the way, as these translations could be used by other people, please take the time to propose a translation by [:(fas fa-code-branch fa-fw): :(fas fa-code-branch fa-fw): making a PR](https://github.com/dillonzq/LoveIt/pulls) to the theme! By the way, as these translations could be used by other people, please take the time to propose a translation by [:(fas fa-code-branch fa-fw): making a PR](https://github.com/dillonzq/LoveIt/pulls) to the theme!
## 5 Search ## 5 Search

View File

@@ -946,7 +946,7 @@ Translations strings are used for common default values used in the theme. Trans
To override these values, create a new file in your local i18n folder `i18n/<languageCode>.toml` and inspire yourself from `themes/LoveIt/i18n/en.toml`. To override these values, create a new file in your local i18n folder `i18n/<languageCode>.toml` and inspire yourself from `themes/LoveIt/i18n/en.toml`.
By the way, as these translations could be used by other people, please take the time to propose a translation by [:(fas fa-code-branch fa-fw): :(fas fa-code-branch fa-fw): making a PR](https://github.com/dillonzq/LoveIt/pulls) to the theme! By the way, as these translations could be used by other people, please take the time to propose a translation by [:(fas fa-code-branch fa-fw): making a PR](https://github.com/dillonzq/LoveIt/pulls) to the theme!
## 5 Search ## 5 Search

View File

@@ -10,7 +10,7 @@
{{- end -}} {{- end -}}
{{- $params := .Params | merge .Site.Params.page -}} {{- $params := .Params | merge .Site.Params.page -}}
{{- .Scratch.Set "version" "0.2.1" -}} {{- .Scratch.Set "version" "0.2.2" -}}
{{- if eq hugo.Environment "production" -}} {{- if eq hugo.Environment "production" -}}
{{- .Scratch.Set "cdn" .Site.Params.cdn -}} {{- .Scratch.Set "cdn" .Site.Params.cdn -}}

View File

@@ -1 +1 @@
.v[data-class=v] .vwrap,.v[data-class=v] .vwrap .vheader .vinput,.v[data-class=v] .vcards .vcard .vh{border-color:#f0f0f0}[theme=dark] .v[data-class=v] .vwrap,[theme=dark] .v[data-class=v] .vwrap .vheader .vinput,[theme=dark] .v[data-class=v] .vcards .vcard .vh{border-color:#363636} .v[data-class=v] .vcards .vcard .vcontent.expand::before,.v[data-class=v] .vcards .vcard .vcontent.expand::after{z-index:50}.v[data-class=v] .vwrap,.v[data-class=v] .vwrap .vheader .vinput,.v[data-class=v] .vcards .vcard .vh,.v[data-class=v] .vcards .vcard .vquote,.v[data-class=v] blockquote{border-color:#f0f0f0}[theme=dark] .v[data-class=v] .vwrap,[theme=dark] .v[data-class=v] .vwrap .vheader .vinput,[theme=dark] .v[data-class=v] .vcards .vcard .vh,[theme=dark] .v[data-class=v] .vcards .vcard .vquote,[theme=dark] .v[data-class=v] blockquote{border-color:#363636}.v[data-class=v] code,.v[data-class=v] pre,.v[data-class=v] pre code{font-size:90%;word-wrap:break-word;overflow-wrap:break-word;-webkit-line-break:anywhere;-ms-line-break:anywhere;line-break:anywhere;-moz-tab-size:4;-o-tab-size:4;tab-size:4;color:#E74C3C;background:#f5f5f5}[theme=dark] .v[data-class=v] code,[theme=dark] .v[data-class=v] pre,[theme=dark] .v[data-class=v] pre code{color:#E5BF78;background:#272C34}