emot 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +87 -0
- data/Rakefile +7 -0
- data/bin/emot +5 -0
- data/emot.gemspec +26 -0
- data/lib/emot.rb +34 -0
- data/lib/emot/cli.rb +54 -0
- data/lib/emot/map.rb +892 -0
- data/lib/emot/symbol_ext.rb +11 -0
- data/lib/emot/version.rb +3 -0
- data/spec/cli_spec.rb +56 -0
- data/spec/emot_spec.rb +50 -0
- data/spec/spec_helper.rb +2 -0
- metadata +121 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 001797275c3bf9b521b76221a99bf6aa4484d624
|
4
|
+
data.tar.gz: 8041a17dbfe92147dd7ebe568fa6a3e83dcc63ec
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9930a182f836d26ac87cf9ea4a46fffd6c108546fcbe53a26b101a3ad914cff4d16b326ffa88711d98027d5cd8eea9fcf19b6864998edfc0d3b5ef4a93945296
|
7
|
+
data.tar.gz: 041d5b2365bc0bea869ed046e433d8ddfe97ff1d59b69cb38c47dd58d827aaa2caf1026047e13ff61e495bfcfe2a6e35cfba143ec4ed1809e5f8c1e70423da37
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 kyoendo
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
# Emot
|
2
|
+
|
3
|
+
Yet another emoji handler. It contains 870 emojis with its name and codepoint(but not contains emoji fonts or images). All names of emojis are from [Emoji cheat sheet for Campfire and GitHub](http://www.emoji-cheat-sheet.com/ "Emoji cheat sheet for Campfire and GitHub").
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'emot'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install emot
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
With Mac Terminal, `emot` command works as follows;
|
22
|
+
|
23
|
+
% emot show sunflower # display the emoji with its codepoint.
|
24
|
+
|
25
|
+
% emot show # display all named emojis with its names and codepoints.
|
26
|
+
|
27
|
+
% emot icons # display all emoji icons.
|
28
|
+
|
29
|
+
% emot names # display available names for emojis.
|
30
|
+
|
31
|
+
See `emot help` for more info.
|
32
|
+
|
33
|
+
With Ruby,
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
require 'emot'
|
37
|
+
|
38
|
+
Emot.icon(:sunflower) # => 🌻
|
39
|
+
|
40
|
+
Emot.unicode(:sunflower) # => "U+1F33B"
|
41
|
+
```
|
42
|
+
|
43
|
+
Also, you can get Symbol#~ for emoji output.
|
44
|
+
|
45
|
+
```ruby
|
46
|
+
require "emot"
|
47
|
+
|
48
|
+
puts ~:smile
|
49
|
+
puts ~:beginner
|
50
|
+
puts ~:shit
|
51
|
+
puts ~:jack_o_lantern
|
52
|
+
puts ~:'+1'
|
53
|
+
puts ~:"I broken_heart you!"
|
54
|
+
puts ~:"The pencil is mightier than gun"
|
55
|
+
puts ~:"dango is better than sunflower"
|
56
|
+
puts ~:"疲れたら beer を飲もう!"
|
57
|
+
puts ~:"fish + hocho => sushi"
|
58
|
+
puts ~:".fush + .hocho => sushi" # escape emoji with prefix dot.
|
59
|
+
|
60
|
+
# >> 😄
|
61
|
+
# >> 🔰
|
62
|
+
# >> 💩
|
63
|
+
# >> 🎃
|
64
|
+
# >> 👍
|
65
|
+
# >> I 💔 you!
|
66
|
+
# >> The 📝 is mightier than 🔫
|
67
|
+
# >> 🍡 is better than 🌻
|
68
|
+
# >> 疲れたら 🍺 を飲もう!
|
69
|
+
# >> 🐟 + 🔪 => 🍣
|
70
|
+
# >> fush + hocho => 🍣
|
71
|
+
```
|
72
|
+
|
73
|
+
## Thank you
|
74
|
+
|
75
|
+
[jugyo/named_emoji](https://github.com/jugyo/named_emoji "jugyo/named_emoji") inspired me to create emot.
|
76
|
+
|
77
|
+
I built the mapping table of emoji name and unicode using [github/gemoji](https://github.com/github/gemoji "github/gemoji").
|
78
|
+
|
79
|
+
Thank you!
|
80
|
+
|
81
|
+
## Contributing
|
82
|
+
|
83
|
+
1. Fork it ( https://github.com/[my-github-username]/emot/fork )
|
84
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
85
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
86
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
87
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/emot
ADDED
data/emot.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'emot/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "emot"
|
8
|
+
spec.version = Emot::VERSION
|
9
|
+
spec.authors = ["kyoendo"]
|
10
|
+
spec.email = ["postagie@gmail.com"]
|
11
|
+
spec.summary = %q{Yet another emoji handler.}
|
12
|
+
spec.description = %q{Yet another emoji handler.}
|
13
|
+
spec.homepage = "https://github.com/melborne/emot"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.required_ruby_version = '>=2.0.0'
|
22
|
+
spec.add_dependency "thor"
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
data/lib/emot.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require "emot/version"
|
2
|
+
require "emot/map"
|
3
|
+
require "emot/symbol_ext"
|
4
|
+
require "emot/cli"
|
5
|
+
|
6
|
+
module Emot
|
7
|
+
def icon(name)
|
8
|
+
build_icon( MAP[name.intern] )
|
9
|
+
end
|
10
|
+
alias :emoji :icon
|
11
|
+
|
12
|
+
def unicode(name)
|
13
|
+
build_unicode( MAP[name.intern] )
|
14
|
+
end
|
15
|
+
|
16
|
+
def list
|
17
|
+
Hash[
|
18
|
+
MAP.map do |name, codes|
|
19
|
+
[name, [build_icon(codes), build_unicode(codes)]]
|
20
|
+
end.sort_by(&:last)
|
21
|
+
]
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
def build_icon(codes)
|
26
|
+
codes.map { |code| code.to_i(16) }.pack("U*") if codes
|
27
|
+
end
|
28
|
+
|
29
|
+
def build_unicode(codes)
|
30
|
+
codes.map { |code| "U+#{code}" }.join(" ") if codes
|
31
|
+
end
|
32
|
+
|
33
|
+
extend self
|
34
|
+
end
|
data/lib/emot/cli.rb
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
require "thor"
|
2
|
+
|
3
|
+
module Emot
|
4
|
+
class CLI < Thor
|
5
|
+
desc "show [NAME]", "show emoji icon and unicode for NAME"
|
6
|
+
option :only, aliases:'-o', desc:"set 'name', 'code' or 'icon'"
|
7
|
+
option :inline, aliases:'-i', default:false, type: :boolean
|
8
|
+
def show(name=nil)
|
9
|
+
case name
|
10
|
+
when nil, 'all'
|
11
|
+
list =
|
12
|
+
Emot.list.map do |name, (icon, code)|
|
13
|
+
case options[:only]
|
14
|
+
when 'name'
|
15
|
+
"%s %s" % [icon, c(name)]
|
16
|
+
when 'code', 'unicode'
|
17
|
+
"%s %s" % [icon, code]
|
18
|
+
when 'emoji', 'icon'
|
19
|
+
"%s" % [icon]
|
20
|
+
when 'nameonly'
|
21
|
+
"%s" % [c(name)]
|
22
|
+
else
|
23
|
+
"%s %s (%s)" % [icon ,c(name), code]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
puts (options[:inline] ? list.join(" ") : list)
|
27
|
+
puts "\e[33m#{list.size}\e[0m #{c('emojis')}"
|
28
|
+
else
|
29
|
+
icon, code = Emot.list[name.intern]
|
30
|
+
if icon
|
31
|
+
print "%s %s (%s)\n" % [icon, c(name), code]
|
32
|
+
else
|
33
|
+
puts "No emoji for '#{name}'"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
desc "icons", "show all emoji icons"
|
39
|
+
def icons
|
40
|
+
CLI.start(['show', '--only', 'emoji', '--inline', false])
|
41
|
+
end
|
42
|
+
|
43
|
+
desc "names", "show all available names for emoji"
|
44
|
+
def names
|
45
|
+
CLI.start(['show', '--only', 'nameonly'])
|
46
|
+
end
|
47
|
+
|
48
|
+
no_tasks do
|
49
|
+
def c(str, color=32)
|
50
|
+
"\e[#{color}m#{str}\e[0m"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
data/lib/emot/map.rb
ADDED
@@ -0,0 +1,892 @@
|
|
1
|
+
module Emot
|
2
|
+
MAP = {
|
3
|
+
:"+1" => ["1F44D"],
|
4
|
+
:"-1" => ["1F44E"],
|
5
|
+
:"100" => ["1F4AF"],
|
6
|
+
:"1234" => ["1F522"],
|
7
|
+
:"8ball" => ["1F3B1"],
|
8
|
+
:"a" => ["1F170"],
|
9
|
+
:"ab" => ["1F18E"],
|
10
|
+
:"abc" => ["1F524"],
|
11
|
+
:"abcd" => ["1F521"],
|
12
|
+
:"accept" => ["1F251"],
|
13
|
+
:"aerial_tramway" => ["1F6A1"],
|
14
|
+
:"airplane" => ["2708", "FE0F"],
|
15
|
+
:"alarm_clock" => ["23F0"],
|
16
|
+
:"alien" => ["1F47D"],
|
17
|
+
:"ambulance" => ["1F691"],
|
18
|
+
:"anchor" => ["2693", "FE0F"],
|
19
|
+
:"angel" => ["1F47C"],
|
20
|
+
:"anger" => ["1F4A2"],
|
21
|
+
:"angry" => ["1F620"],
|
22
|
+
:"anguished" => ["1F627"],
|
23
|
+
:"ant" => ["1F41C"],
|
24
|
+
:"apple" => ["1F34E"],
|
25
|
+
:"aquarius" => ["2652", "FE0F"],
|
26
|
+
:"aries" => ["2648", "FE0F"],
|
27
|
+
:"arrow_backward" => ["25C0", "FE0F"],
|
28
|
+
:"arrow_double_down" => ["23EC"],
|
29
|
+
:"arrow_double_up" => ["23EB"],
|
30
|
+
:"arrow_down" => ["2B07", "FE0F"],
|
31
|
+
:"arrow_down_small" => ["1F53D"],
|
32
|
+
:"arrow_forward" => ["25B6", "FE0F"],
|
33
|
+
:"arrow_heading_down" => ["2935", "FE0F"],
|
34
|
+
:"arrow_heading_up" => ["2934", "FE0F"],
|
35
|
+
:"arrow_left" => ["2B05", "FE0F"],
|
36
|
+
:"arrow_lower_left" => ["2199", "FE0F"],
|
37
|
+
:"arrow_lower_right" => ["2198", "FE0F"],
|
38
|
+
:"arrow_right" => ["27A1", "FE0F"],
|
39
|
+
:"arrow_right_hook" => ["21AA", "FE0F"],
|
40
|
+
:"arrow_up" => ["2B06", "FE0F"],
|
41
|
+
:"arrow_up_down" => ["2195", "FE0F"],
|
42
|
+
:"arrow_up_small" => ["1F53C"],
|
43
|
+
:"arrow_upper_left" => ["2196", "FE0F"],
|
44
|
+
:"arrow_upper_right" => ["2197", "FE0F"],
|
45
|
+
:"arrows_clockwise" => ["1F503"],
|
46
|
+
:"arrows_counterclockwise" => ["1F504"],
|
47
|
+
:"art" => ["1F3A8"],
|
48
|
+
:"articulated_lorry" => ["1F69B"],
|
49
|
+
:"astonished" => ["1F632"],
|
50
|
+
:"athletic_shoe" => ["1F45F"],
|
51
|
+
:"atm" => ["1F3E7"],
|
52
|
+
:"b" => ["1F171"],
|
53
|
+
:"baby" => ["1F476"],
|
54
|
+
:"baby_bottle" => ["1F37C"],
|
55
|
+
:"baby_chick" => ["1F424"],
|
56
|
+
:"baby_symbol" => ["1F6BC"],
|
57
|
+
:"back" => ["1F519"],
|
58
|
+
:"baggage_claim" => ["1F6C4"],
|
59
|
+
:"balloon" => ["1F388"],
|
60
|
+
:"ballot_box_with_check" => ["2611", "FE0F"],
|
61
|
+
:"bamboo" => ["1F38D"],
|
62
|
+
:"banana" => ["1F34C"],
|
63
|
+
:"bangbang" => ["203C", "FE0F"],
|
64
|
+
:"bank" => ["1F3E6"],
|
65
|
+
:"bar_chart" => ["1F4CA"],
|
66
|
+
:"barber" => ["1F488"],
|
67
|
+
:"baseball" => ["26BE", "FE0F"],
|
68
|
+
:"basketball" => ["1F3C0"],
|
69
|
+
:"bath" => ["1F6C0"],
|
70
|
+
:"bathtub" => ["1F6C1"],
|
71
|
+
:"battery" => ["1F50B"],
|
72
|
+
:"bear" => ["1F43B"],
|
73
|
+
:"bee" => ["1F41D"],
|
74
|
+
:"beer" => ["1F37A"],
|
75
|
+
:"beers" => ["1F37B"],
|
76
|
+
:"beetle" => ["1F41E"],
|
77
|
+
:"beginner" => ["1F530"],
|
78
|
+
:"bell" => ["1F514"],
|
79
|
+
:"bento" => ["1F371"],
|
80
|
+
:"bicyclist" => ["1F6B4"],
|
81
|
+
:"bike" => ["1F6B2"],
|
82
|
+
:"bikini" => ["1F459"],
|
83
|
+
:"bird" => ["1F426"],
|
84
|
+
:"birthday" => ["1F382"],
|
85
|
+
:"black_circle" => ["26AB", "FE0F"],
|
86
|
+
:"black_joker" => ["1F0CF"],
|
87
|
+
:"black_large_square" => ["2B1B", "FE0F"],
|
88
|
+
:"black_medium_small_square" => ["25FE", "FE0F"],
|
89
|
+
:"black_medium_square" => ["25FC", "FE0F"],
|
90
|
+
:"black_nib" => ["2712", "FE0F"],
|
91
|
+
:"black_small_square" => ["25AA", "FE0F"],
|
92
|
+
:"black_square_button" => ["1F532"],
|
93
|
+
:"blossom" => ["1F33C"],
|
94
|
+
:"blowfish" => ["1F421"],
|
95
|
+
:"blue_book" => ["1F4D8"],
|
96
|
+
:"blue_car" => ["1F699"],
|
97
|
+
:"blue_heart" => ["1F499"],
|
98
|
+
:"blush" => ["1F60A"],
|
99
|
+
:"boar" => ["1F417"],
|
100
|
+
:"boat" => ["26F5", "FE0F"],
|
101
|
+
:"bomb" => ["1F4A3"],
|
102
|
+
:"book" => ["1F4D6"],
|
103
|
+
:"bookmark" => ["1F516"],
|
104
|
+
:"bookmark_tabs" => ["1F4D1"],
|
105
|
+
:"books" => ["1F4DA"],
|
106
|
+
:"boom" => ["1F4A5"],
|
107
|
+
:"boot" => ["1F462"],
|
108
|
+
:"bouquet" => ["1F490"],
|
109
|
+
:"bow" => ["1F647"],
|
110
|
+
:"bowling" => ["1F3B3"],
|
111
|
+
# "bowtie" => nil,
|
112
|
+
:"boy" => ["1F466"],
|
113
|
+
:"bread" => ["1F35E"],
|
114
|
+
:"bride_with_veil" => ["1F470"],
|
115
|
+
:"bridge_at_night" => ["1F309"],
|
116
|
+
:"briefcase" => ["1F4BC"],
|
117
|
+
:"broken_heart" => ["1F494"],
|
118
|
+
:"bug" => ["1F41B"],
|
119
|
+
:"bulb" => ["1F4A1"],
|
120
|
+
:"bullettrain_front" => ["1F685"],
|
121
|
+
:"bullettrain_side" => ["1F684"],
|
122
|
+
:"bus" => ["1F68C"],
|
123
|
+
:"busstop" => ["1F68F"],
|
124
|
+
:"bust_in_silhouette" => ["1F464"],
|
125
|
+
:"busts_in_silhouette" => ["1F465"],
|
126
|
+
:"cactus" => ["1F335"],
|
127
|
+
:"cake" => ["1F370"],
|
128
|
+
:"calendar" => ["1F4C6"],
|
129
|
+
:"calling" => ["1F4F2"],
|
130
|
+
:"camel" => ["1F42B"],
|
131
|
+
:"camera" => ["1F4F7"],
|
132
|
+
:"cancer" => ["264B", "FE0F"],
|
133
|
+
:"candy" => ["1F36C"],
|
134
|
+
:"capital_abcd" => ["1F520"],
|
135
|
+
:"capricorn" => ["2651", "FE0F"],
|
136
|
+
:"car" => ["1F697"],
|
137
|
+
:"card_index" => ["1F4C7"],
|
138
|
+
:"carousel_horse" => ["1F3A0"],
|
139
|
+
:"cat" => ["1F431"],
|
140
|
+
:"cat2" => ["1F408"],
|
141
|
+
:"cd" => ["1F4BF"],
|
142
|
+
:"chart" => ["1F4B9"],
|
143
|
+
:"chart_with_downwards_trend" => ["1F4C9"],
|
144
|
+
:"chart_with_upwards_trend" => ["1F4C8"],
|
145
|
+
:"checkered_flag" => ["1F3C1"],
|
146
|
+
:"cherries" => ["1F352"],
|
147
|
+
:"cherry_blossom" => ["1F338"],
|
148
|
+
:"chestnut" => ["1F330"],
|
149
|
+
:"chicken" => ["1F414"],
|
150
|
+
:"children_crossing" => ["1F6B8"],
|
151
|
+
:"chocolate_bar" => ["1F36B"],
|
152
|
+
:"christmas_tree" => ["1F384"],
|
153
|
+
:"church" => ["26EA", "FE0F"],
|
154
|
+
:"cinema" => ["1F3A6"],
|
155
|
+
:"circus_tent" => ["1F3AA"],
|
156
|
+
:"city_sunrise" => ["1F307"],
|
157
|
+
:"city_sunset" => ["1F306"],
|
158
|
+
:"cl" => ["1F191"],
|
159
|
+
:"clap" => ["1F44F"],
|
160
|
+
:"clapper" => ["1F3AC"],
|
161
|
+
:"clipboard" => ["1F4CB"],
|
162
|
+
:"clock1" => ["1F550"],
|
163
|
+
:"clock10" => ["1F559"],
|
164
|
+
:"clock1030" => ["1F565"],
|
165
|
+
:"clock11" => ["1F55A"],
|
166
|
+
:"clock1130" => ["1F566"],
|
167
|
+
:"clock12" => ["1F55B"],
|
168
|
+
:"clock1230" => ["1F567"],
|
169
|
+
:"clock130" => ["1F55C"],
|
170
|
+
:"clock2" => ["1F551"],
|
171
|
+
:"clock230" => ["1F55D"],
|
172
|
+
:"clock3" => ["1F552"],
|
173
|
+
:"clock330" => ["1F55E"],
|
174
|
+
:"clock4" => ["1F553"],
|
175
|
+
:"clock430" => ["1F55F"],
|
176
|
+
:"clock5" => ["1F554"],
|
177
|
+
:"clock530" => ["1F560"],
|
178
|
+
:"clock6" => ["1F555"],
|
179
|
+
:"clock630" => ["1F561"],
|
180
|
+
:"clock7" => ["1F556"],
|
181
|
+
:"clock730" => ["1F562"],
|
182
|
+
:"clock8" => ["1F557"],
|
183
|
+
:"clock830" => ["1F563"],
|
184
|
+
:"clock9" => ["1F558"],
|
185
|
+
:"clock930" => ["1F564"],
|
186
|
+
:"closed_book" => ["1F4D5"],
|
187
|
+
:"closed_lock_with_key" => ["1F510"],
|
188
|
+
:"closed_umbrella" => ["1F302"],
|
189
|
+
:"cloud" => ["2601", "FE0F"],
|
190
|
+
:"clubs" => ["2663", "FE0F"],
|
191
|
+
:"cn" => ["1F1E8", "1F1F3"],
|
192
|
+
:"cocktail" => ["1F378"],
|
193
|
+
:"coffee" => ["2615", "FE0F"],
|
194
|
+
:"cold_sweat" => ["1F630"],
|
195
|
+
:"collision" => ["1F4A5"],
|
196
|
+
:"computer" => ["1F4BB"],
|
197
|
+
:"confetti_ball" => ["1F38A"],
|
198
|
+
:"confounded" => ["1F616"],
|
199
|
+
:"confused" => ["1F615"],
|
200
|
+
:"congratulations" => ["3297", "FE0F"],
|
201
|
+
:"construction" => ["1F6A7"],
|
202
|
+
:"construction_worker" => ["1F477"],
|
203
|
+
:"convenience_store" => ["1F3EA"],
|
204
|
+
:"cookie" => ["1F36A"],
|
205
|
+
:"cool" => ["1F192"],
|
206
|
+
:"cop" => ["1F46E"],
|
207
|
+
:"copyright" => ["A9"],
|
208
|
+
:"corn" => ["1F33D"],
|
209
|
+
:"couple" => ["1F46B"],
|
210
|
+
:"couple_with_heart" => ["1F491"],
|
211
|
+
:"couplekiss" => ["1F48F"],
|
212
|
+
:"cow" => ["1F42E"],
|
213
|
+
:"cow2" => ["1F404"],
|
214
|
+
:"credit_card" => ["1F4B3"],
|
215
|
+
:"crescent_moon" => ["1F319"],
|
216
|
+
:"crocodile" => ["1F40A"],
|
217
|
+
:"crossed_flags" => ["1F38C"],
|
218
|
+
:"crown" => ["1F451"],
|
219
|
+
:"cry" => ["1F622"],
|
220
|
+
:"crying_cat_face" => ["1F63F"],
|
221
|
+
:"crystal_ball" => ["1F52E"],
|
222
|
+
:"cupid" => ["1F498"],
|
223
|
+
:"curly_loop" => ["27B0"],
|
224
|
+
:"currency_exchange" => ["1F4B1"],
|
225
|
+
:"curry" => ["1F35B"],
|
226
|
+
:"custard" => ["1F36E"],
|
227
|
+
:"customs" => ["1F6C3"],
|
228
|
+
:"cyclone" => ["1F300"],
|
229
|
+
:"dancer" => ["1F483"],
|
230
|
+
:"dancers" => ["1F46F"],
|
231
|
+
:"dango" => ["1F361"],
|
232
|
+
:"dart" => ["1F3AF"],
|
233
|
+
:"dash" => ["1F4A8"],
|
234
|
+
:"date" => ["1F4C5"],
|
235
|
+
:"de" => ["1F1E9", "1F1EA"],
|
236
|
+
:"deciduous_tree" => ["1F333"],
|
237
|
+
:"department_store" => ["1F3EC"],
|
238
|
+
:"diamond_shape_with_a_dot_inside" => ["1F4A0"],
|
239
|
+
:"diamonds" => ["2666", "FE0F"],
|
240
|
+
:"disappointed" => ["1F61E"],
|
241
|
+
:"disappointed_relieved" => ["1F625"],
|
242
|
+
:"dizzy" => ["1F4AB"],
|
243
|
+
:"dizzy_face" => ["1F635"],
|
244
|
+
:"do_not_litter" => ["1F6AF"],
|
245
|
+
:"dog" => ["1F436"],
|
246
|
+
:"dog2" => ["1F415"],
|
247
|
+
:"dollar" => ["1F4B5"],
|
248
|
+
:"dolls" => ["1F38E"],
|
249
|
+
:"dolphin" => ["1F42C"],
|
250
|
+
:"door" => ["1F6AA"],
|
251
|
+
:"doughnut" => ["1F369"],
|
252
|
+
:"dragon" => ["1F409"],
|
253
|
+
:"dragon_face" => ["1F432"],
|
254
|
+
:"dress" => ["1F457"],
|
255
|
+
:"dromedary_camel" => ["1F42A"],
|
256
|
+
:"droplet" => ["1F4A7"],
|
257
|
+
:"dvd" => ["1F4C0"],
|
258
|
+
:"e-mail" => ["1F4E7"],
|
259
|
+
:"ear" => ["1F442"],
|
260
|
+
:"ear_of_rice" => ["1F33E"],
|
261
|
+
:"earth_africa" => ["1F30D"],
|
262
|
+
:"earth_americas" => ["1F30E"],
|
263
|
+
:"earth_asia" => ["1F30F"],
|
264
|
+
:"egg" => ["1F373"],
|
265
|
+
:"eggplant" => ["1F346"],
|
266
|
+
:"eight" => ["38", "FE0F", "20E3"],
|
267
|
+
:"eight_pointed_black_star" => ["2734", "FE0F"],
|
268
|
+
:"eight_spoked_asterisk" => ["2733", "FE0F"],
|
269
|
+
:"electric_plug" => ["1F50C"],
|
270
|
+
:"elephant" => ["1F418"],
|
271
|
+
:"email" => ["2709", "FE0F"],
|
272
|
+
:"end" => ["1F51A"],
|
273
|
+
:"envelope" => ["2709", "FE0F"],
|
274
|
+
:"envelope_with_arrow" => ["1F4E9"],
|
275
|
+
:"es" => ["1F1EA", "1F1F8"],
|
276
|
+
:"euro" => ["1F4B6"],
|
277
|
+
:"european_castle" => ["1F3F0"],
|
278
|
+
:"european_post_office" => ["1F3E4"],
|
279
|
+
:"evergreen_tree" => ["1F332"],
|
280
|
+
:"exclamation" => ["2757", "FE0F"],
|
281
|
+
:"expressionless" => ["1F611"],
|
282
|
+
:"eyeglasses" => ["1F453"],
|
283
|
+
:"eyes" => ["1F440"],
|
284
|
+
:"facepunch" => ["1F44A"],
|
285
|
+
:"factory" => ["1F3ED"],
|
286
|
+
:"fallen_leaf" => ["1F342"],
|
287
|
+
:"family" => ["1F46A"],
|
288
|
+
:"fast_forward" => ["23E9"],
|
289
|
+
:"fax" => ["1F4E0"],
|
290
|
+
:"fearful" => ["1F628"],
|
291
|
+
# "feelsgood" => nil,
|
292
|
+
:"feet" => ["1F43E"],
|
293
|
+
:"ferris_wheel" => ["1F3A1"],
|
294
|
+
:"file_folder" => ["1F4C1"],
|
295
|
+
# "finnadie" => nil,
|
296
|
+
:"fire" => ["1F525"],
|
297
|
+
:"fire_engine" => ["1F692"],
|
298
|
+
:"fireworks" => ["1F386"],
|
299
|
+
:"first_quarter_moon" => ["1F313"],
|
300
|
+
:"first_quarter_moon_with_face" => ["1F31B"],
|
301
|
+
:"fish" => ["1F41F"],
|
302
|
+
:"fish_cake" => ["1F365"],
|
303
|
+
:"fishing_pole_and_fish" => ["1F3A3"],
|
304
|
+
:"fist" => ["270A"],
|
305
|
+
:"five" => ["35", "FE0F", "20E3"],
|
306
|
+
:"flags" => ["1F38F"],
|
307
|
+
:"flashlight" => ["1F526"],
|
308
|
+
:"flipper" => ["1F42C"],
|
309
|
+
:"floppy_disk" => ["1F4BE"],
|
310
|
+
:"flower_playing_cards" => ["1F3B4"],
|
311
|
+
:"flushed" => ["1F633"],
|
312
|
+
:"foggy" => ["1F301"],
|
313
|
+
:"football" => ["1F3C8"],
|
314
|
+
:"footprints" => ["1F463"],
|
315
|
+
:"fork_and_knife" => ["1F374"],
|
316
|
+
:"fountain" => ["26F2", "FE0F"],
|
317
|
+
:"four" => ["34", "FE0F", "20E3"],
|
318
|
+
:"four_leaf_clover" => ["1F340"],
|
319
|
+
:"fr" => ["1F1EB", "1F1F7"],
|
320
|
+
:"free" => ["1F193"],
|
321
|
+
:"fried_shrimp" => ["1F364"],
|
322
|
+
:"fries" => ["1F35F"],
|
323
|
+
:"frog" => ["1F438"],
|
324
|
+
:"frowning" => ["1F626"],
|
325
|
+
# "fu" => nil,
|
326
|
+
:"fuelpump" => ["26FD", "FE0F"],
|
327
|
+
:"full_moon" => ["1F315"],
|
328
|
+
:"full_moon_with_face" => ["1F31D"],
|
329
|
+
:"game_die" => ["1F3B2"],
|
330
|
+
:"gb" => ["1F1EC", "1F1E7"],
|
331
|
+
:"gem" => ["1F48E"],
|
332
|
+
:"gemini" => ["264A", "FE0F"],
|
333
|
+
:"ghost" => ["1F47B"],
|
334
|
+
:"gift" => ["1F381"],
|
335
|
+
:"gift_heart" => ["1F49D"],
|
336
|
+
:"girl" => ["1F467"],
|
337
|
+
:"globe_with_meridians" => ["1F310"],
|
338
|
+
:"goat" => ["1F410"],
|
339
|
+
# "goberserk" => nil,
|
340
|
+
# "godmode" => nil,
|
341
|
+
:"golf" => ["26F3", "FE0F"],
|
342
|
+
:"grapes" => ["1F347"],
|
343
|
+
:"green_apple" => ["1F34F"],
|
344
|
+
:"green_book" => ["1F4D7"],
|
345
|
+
:"green_heart" => ["1F49A"],
|
346
|
+
:"grey_exclamation" => ["2755"],
|
347
|
+
:"grey_question" => ["2754"],
|
348
|
+
:"grimacing" => ["1F62C"],
|
349
|
+
:"grin" => ["1F601"],
|
350
|
+
:"grinning" => ["1F600"],
|
351
|
+
:"guardsman" => ["1F482"],
|
352
|
+
:"guitar" => ["1F3B8"],
|
353
|
+
:"gun" => ["1F52B"],
|
354
|
+
:"haircut" => ["1F487"],
|
355
|
+
:"hamburger" => ["1F354"],
|
356
|
+
:"hammer" => ["1F528"],
|
357
|
+
:"hamster" => ["1F439"],
|
358
|
+
:"hand" => ["270B"],
|
359
|
+
:"handbag" => ["1F45C"],
|
360
|
+
:"hankey" => ["1F4A9"],
|
361
|
+
:"hash" => ["23", "FE0F", "20E3"],
|
362
|
+
:"hatched_chick" => ["1F425"],
|
363
|
+
:"hatching_chick" => ["1F423"],
|
364
|
+
:"headphones" => ["1F3A7"],
|
365
|
+
:"hear_no_evil" => ["1F649"],
|
366
|
+
:"heart" => ["2764", "FE0F"],
|
367
|
+
:"heart_decoration" => ["1F49F"],
|
368
|
+
:"heart_eyes" => ["1F60D"],
|
369
|
+
:"heart_eyes_cat" => ["1F63B"],
|
370
|
+
:"heartbeat" => ["1F493"],
|
371
|
+
:"heartpulse" => ["1F497"],
|
372
|
+
:"hearts" => ["2665", "FE0F"],
|
373
|
+
:"heavy_check_mark" => ["2714", "FE0F"],
|
374
|
+
:"heavy_division_sign" => ["2797"],
|
375
|
+
:"heavy_dollar_sign" => ["1F4B2"],
|
376
|
+
:"heavy_exclamation_mark" => ["2757", "FE0F"],
|
377
|
+
:"heavy_minus_sign" => ["2796"],
|
378
|
+
:"heavy_multiplication_x" => ["2716", "FE0F"],
|
379
|
+
:"heavy_plus_sign" => ["2795"],
|
380
|
+
:"helicopter" => ["1F681"],
|
381
|
+
:"herb" => ["1F33F"],
|
382
|
+
:"hibiscus" => ["1F33A"],
|
383
|
+
:"high_brightness" => ["1F506"],
|
384
|
+
:"high_heel" => ["1F460"],
|
385
|
+
:"hocho" => ["1F52A"],
|
386
|
+
:"honey_pot" => ["1F36F"],
|
387
|
+
:"honeybee" => ["1F41D"],
|
388
|
+
:"horse" => ["1F434"],
|
389
|
+
:"horse_racing" => ["1F3C7"],
|
390
|
+
:"hospital" => ["1F3E5"],
|
391
|
+
:"hotel" => ["1F3E8"],
|
392
|
+
:"hotsprings" => ["2668", "FE0F"],
|
393
|
+
:"hourglass" => ["231B", "FE0F"],
|
394
|
+
:"hourglass_flowing_sand" => ["23F3"],
|
395
|
+
:"house" => ["1F3E0"],
|
396
|
+
:"house_with_garden" => ["1F3E1"],
|
397
|
+
# "hurtrealbad" => nil,
|
398
|
+
:"hushed" => ["1F62F"],
|
399
|
+
:"ice_cream" => ["1F368"],
|
400
|
+
:"icecream" => ["1F366"],
|
401
|
+
:"id" => ["1F194"],
|
402
|
+
:"ideograph_advantage" => ["1F250"],
|
403
|
+
:"imp" => ["1F47F"],
|
404
|
+
:"inbox_tray" => ["1F4E5"],
|
405
|
+
:"incoming_envelope" => ["1F4E8"],
|
406
|
+
:"information_desk_person" => ["1F481"],
|
407
|
+
:"information_source" => ["2139", "FE0F"],
|
408
|
+
:"innocent" => ["1F607"],
|
409
|
+
:"interrobang" => ["2049", "FE0F"],
|
410
|
+
:"iphone" => ["1F4F1"],
|
411
|
+
:"it" => ["1F1EE", "1F1F9"],
|
412
|
+
:"izakaya_lantern" => ["1F3EE"],
|
413
|
+
:"jack_o_lantern" => ["1F383"],
|
414
|
+
:"japan" => ["1F5FE"],
|
415
|
+
:"japanese_castle" => ["1F3EF"],
|
416
|
+
:"japanese_goblin" => ["1F47A"],
|
417
|
+
:"japanese_ogre" => ["1F479"],
|
418
|
+
:"jeans" => ["1F456"],
|
419
|
+
:"joy" => ["1F602"],
|
420
|
+
:"joy_cat" => ["1F639"],
|
421
|
+
:"jp" => ["1F1EF", "1F1F5"],
|
422
|
+
:"key" => ["1F511"],
|
423
|
+
:"keycap_ten" => ["1F51F"],
|
424
|
+
:"kimono" => ["1F458"],
|
425
|
+
:"kiss" => ["1F48B"],
|
426
|
+
:"kissing" => ["1F617"],
|
427
|
+
:"kissing_cat" => ["1F63D"],
|
428
|
+
:"kissing_closed_eyes" => ["1F61A"],
|
429
|
+
:"kissing_heart" => ["1F618"],
|
430
|
+
:"kissing_smiling_eyes" => ["1F619"],
|
431
|
+
:"knife" => ["1F52A"],
|
432
|
+
:"koala" => ["1F428"],
|
433
|
+
:"koko" => ["1F201"],
|
434
|
+
:"kr" => ["1F1F0", "1F1F7"],
|
435
|
+
:"lantern" => ["1F3EE"],
|
436
|
+
:"large_blue_circle" => ["1F535"],
|
437
|
+
:"large_blue_diamond" => ["1F537"],
|
438
|
+
:"large_orange_diamond" => ["1F536"],
|
439
|
+
:"last_quarter_moon" => ["1F317"],
|
440
|
+
:"last_quarter_moon_with_face" => ["1F31C"],
|
441
|
+
:"laughing" => ["1F606"],
|
442
|
+
:"leaves" => ["1F343"],
|
443
|
+
:"ledger" => ["1F4D2"],
|
444
|
+
:"left_luggage" => ["1F6C5"],
|
445
|
+
:"left_right_arrow" => ["2194", "FE0F"],
|
446
|
+
:"leftwards_arrow_with_hook" => ["21A9", "FE0F"],
|
447
|
+
:"lemon" => ["1F34B"],
|
448
|
+
:"leo" => ["264C", "FE0F"],
|
449
|
+
:"leopard" => ["1F406"],
|
450
|
+
:"libra" => ["264E", "FE0F"],
|
451
|
+
:"light_rail" => ["1F688"],
|
452
|
+
:"link" => ["1F517"],
|
453
|
+
:"lips" => ["1F444"],
|
454
|
+
:"lipstick" => ["1F484"],
|
455
|
+
:"lock" => ["1F512"],
|
456
|
+
:"lock_with_ink_pen" => ["1F50F"],
|
457
|
+
:"lollipop" => ["1F36D"],
|
458
|
+
:"loop" => ["27BF"],
|
459
|
+
:"loud_sound" => ["1F50A"],
|
460
|
+
:"loudspeaker" => ["1F4E2"],
|
461
|
+
:"love_hotel" => ["1F3E9"],
|
462
|
+
:"love_letter" => ["1F48C"],
|
463
|
+
:"low_brightness" => ["1F505"],
|
464
|
+
:"m" => ["24C2", "FE0F"],
|
465
|
+
:"mag" => ["1F50D"],
|
466
|
+
:"mag_right" => ["1F50E"],
|
467
|
+
:"mahjong" => ["1F004", "FE0F"],
|
468
|
+
:"mailbox" => ["1F4EB"],
|
469
|
+
:"mailbox_closed" => ["1F4EA"],
|
470
|
+
:"mailbox_with_mail" => ["1F4EC"],
|
471
|
+
:"mailbox_with_no_mail" => ["1F4ED"],
|
472
|
+
:"man" => ["1F468"],
|
473
|
+
:"man_with_gua_pi_mao" => ["1F472"],
|
474
|
+
:"man_with_turban" => ["1F473"],
|
475
|
+
:"mans_shoe" => ["1F45E"],
|
476
|
+
:"maple_leaf" => ["1F341"],
|
477
|
+
:"mask" => ["1F637"],
|
478
|
+
:"massage" => ["1F486"],
|
479
|
+
:"meat_on_bone" => ["1F356"],
|
480
|
+
:"mega" => ["1F4E3"],
|
481
|
+
:"melon" => ["1F348"],
|
482
|
+
:"memo" => ["1F4DD"],
|
483
|
+
:"mens" => ["1F6B9"],
|
484
|
+
# "metal" => nil,
|
485
|
+
:"metro" => ["1F687"],
|
486
|
+
:"microphone" => ["1F3A4"],
|
487
|
+
:"microscope" => ["1F52C"],
|
488
|
+
:"milky_way" => ["1F30C"],
|
489
|
+
:"minibus" => ["1F690"],
|
490
|
+
:"minidisc" => ["1F4BD"],
|
491
|
+
:"mobile_phone_off" => ["1F4F4"],
|
492
|
+
:"money_with_wings" => ["1F4B8"],
|
493
|
+
:"moneybag" => ["1F4B0"],
|
494
|
+
:"monkey" => ["1F412"],
|
495
|
+
:"monkey_face" => ["1F435"],
|
496
|
+
:"monorail" => ["1F69D"],
|
497
|
+
:"moon" => ["1F314"],
|
498
|
+
:"mortar_board" => ["1F393"],
|
499
|
+
:"mount_fuji" => ["1F5FB"],
|
500
|
+
:"mountain_bicyclist" => ["1F6B5"],
|
501
|
+
:"mountain_cableway" => ["1F6A0"],
|
502
|
+
:"mountain_railway" => ["1F69E"],
|
503
|
+
:"mouse" => ["1F42D"],
|
504
|
+
:"mouse2" => ["1F401"],
|
505
|
+
:"movie_camera" => ["1F3A5"],
|
506
|
+
:"moyai" => ["1F5FF"],
|
507
|
+
:"muscle" => ["1F4AA"],
|
508
|
+
:"mushroom" => ["1F344"],
|
509
|
+
:"musical_keyboard" => ["1F3B9"],
|
510
|
+
:"musical_note" => ["1F3B5"],
|
511
|
+
:"musical_score" => ["1F3BC"],
|
512
|
+
:"mute" => ["1F507"],
|
513
|
+
:"nail_care" => ["1F485"],
|
514
|
+
:"name_badge" => ["1F4DB"],
|
515
|
+
# "neckbeard" => nil,
|
516
|
+
:"necktie" => ["1F454"],
|
517
|
+
:"negative_squared_cross_mark" => ["274E"],
|
518
|
+
:"neutral_face" => ["1F610"],
|
519
|
+
:"new" => ["1F195"],
|
520
|
+
:"new_moon" => ["1F311"],
|
521
|
+
:"new_moon_with_face" => ["1F31A"],
|
522
|
+
:"newspaper" => ["1F4F0"],
|
523
|
+
:"ng" => ["1F196"],
|
524
|
+
:"night_with_stars" => ["1F303"],
|
525
|
+
:"nine" => ["39", "FE0F", "20E3"],
|
526
|
+
:"no_bell" => ["1F515"],
|
527
|
+
:"no_bicycles" => ["1F6B3"],
|
528
|
+
:"no_entry" => ["26D4", "FE0F"],
|
529
|
+
:"no_entry_sign" => ["1F6AB"],
|
530
|
+
:"no_good" => ["1F645"],
|
531
|
+
:"no_mobile_phones" => ["1F4F5"],
|
532
|
+
:"no_mouth" => ["1F636"],
|
533
|
+
:"no_pedestrians" => ["1F6B7"],
|
534
|
+
:"no_smoking" => ["1F6AD"],
|
535
|
+
:"non-potable_water" => ["1F6B1"],
|
536
|
+
:"nose" => ["1F443"],
|
537
|
+
:"notebook" => ["1F4D3"],
|
538
|
+
:"notebook_with_decorative_cover" => ["1F4D4"],
|
539
|
+
:"notes" => ["1F3B6"],
|
540
|
+
:"nut_and_bolt" => ["1F529"],
|
541
|
+
:"o" => ["2B55", "FE0F"],
|
542
|
+
:"o2" => ["1F17E"],
|
543
|
+
:"ocean" => ["1F30A"],
|
544
|
+
# "octocat" => nil,
|
545
|
+
:"octopus" => ["1F419"],
|
546
|
+
:"oden" => ["1F362"],
|
547
|
+
:"office" => ["1F3E2"],
|
548
|
+
:"ok" => ["1F197"],
|
549
|
+
:"ok_hand" => ["1F44C"],
|
550
|
+
:"ok_woman" => ["1F646"],
|
551
|
+
:"older_man" => ["1F474"],
|
552
|
+
:"older_woman" => ["1F475"],
|
553
|
+
:"on" => ["1F51B"],
|
554
|
+
:"oncoming_automobile" => ["1F698"],
|
555
|
+
:"oncoming_bus" => ["1F68D"],
|
556
|
+
:"oncoming_police_car" => ["1F694"],
|
557
|
+
:"oncoming_taxi" => ["1F696"],
|
558
|
+
:"one" => ["31", "FE0F", "20E3"],
|
559
|
+
:"open_book" => ["1F4D6"],
|
560
|
+
:"open_file_folder" => ["1F4C2"],
|
561
|
+
:"open_hands" => ["1F450"],
|
562
|
+
:"open_mouth" => ["1F62E"],
|
563
|
+
:"ophiuchus" => ["26CE"],
|
564
|
+
:"orange_book" => ["1F4D9"],
|
565
|
+
:"outbox_tray" => ["1F4E4"],
|
566
|
+
:"ox" => ["1F402"],
|
567
|
+
:"package" => ["1F4E6"],
|
568
|
+
:"page_facing_up" => ["1F4C4"],
|
569
|
+
:"page_with_curl" => ["1F4C3"],
|
570
|
+
:"pager" => ["1F4DF"],
|
571
|
+
:"palm_tree" => ["1F334"],
|
572
|
+
:"panda_face" => ["1F43C"],
|
573
|
+
:"paperclip" => ["1F4CE"],
|
574
|
+
:"parking" => ["1F17F", "FE0F"],
|
575
|
+
:"part_alternation_mark" => ["303D", "FE0F"],
|
576
|
+
:"partly_sunny" => ["26C5", "FE0F"],
|
577
|
+
:"passport_control" => ["1F6C2"],
|
578
|
+
:"paw_prints" => ["1F43E"],
|
579
|
+
:"peach" => ["1F351"],
|
580
|
+
:"pear" => ["1F350"],
|
581
|
+
:"pencil" => ["1F4DD"],
|
582
|
+
:"pencil2" => ["270F", "FE0F"],
|
583
|
+
:"penguin" => ["1F427"],
|
584
|
+
:"pensive" => ["1F614"],
|
585
|
+
:"performing_arts" => ["1F3AD"],
|
586
|
+
:"persevere" => ["1F623"],
|
587
|
+
:"person_frowning" => ["1F64D"],
|
588
|
+
:"person_with_blond_hair" => ["1F471"],
|
589
|
+
:"person_with_pouting_face" => ["1F64E"],
|
590
|
+
:"phone" => ["260E", "FE0F"],
|
591
|
+
:"pig" => ["1F437"],
|
592
|
+
:"pig2" => ["1F416"],
|
593
|
+
:"pig_nose" => ["1F43D"],
|
594
|
+
:"pill" => ["1F48A"],
|
595
|
+
:"pineapple" => ["1F34D"],
|
596
|
+
:"pisces" => ["2653", "FE0F"],
|
597
|
+
:"pizza" => ["1F355"],
|
598
|
+
:"point_down" => ["1F447"],
|
599
|
+
:"point_left" => ["1F448"],
|
600
|
+
:"point_right" => ["1F449"],
|
601
|
+
:"point_up" => ["261D", "FE0F"],
|
602
|
+
:"point_up_2" => ["1F446"],
|
603
|
+
:"police_car" => ["1F693"],
|
604
|
+
:"poodle" => ["1F429"],
|
605
|
+
:"poop" => ["1F4A9"],
|
606
|
+
:"post_office" => ["1F3E3"],
|
607
|
+
:"postal_horn" => ["1F4EF"],
|
608
|
+
:"postbox" => ["1F4EE"],
|
609
|
+
:"potable_water" => ["1F6B0"],
|
610
|
+
:"pouch" => ["1F45D"],
|
611
|
+
:"poultry_leg" => ["1F357"],
|
612
|
+
:"pound" => ["1F4B7"],
|
613
|
+
:"pouting_cat" => ["1F63E"],
|
614
|
+
:"pray" => ["1F64F"],
|
615
|
+
:"princess" => ["1F478"],
|
616
|
+
:"punch" => ["1F44A"],
|
617
|
+
:"purple_heart" => ["1F49C"],
|
618
|
+
:"purse" => ["1F45B"],
|
619
|
+
:"pushpin" => ["1F4CC"],
|
620
|
+
:"put_litter_in_its_place" => ["1F6AE"],
|
621
|
+
:"question" => ["2753"],
|
622
|
+
:"rabbit" => ["1F430"],
|
623
|
+
:"rabbit2" => ["1F407"],
|
624
|
+
:"racehorse" => ["1F40E"],
|
625
|
+
:"radio" => ["1F4FB"],
|
626
|
+
:"radio_button" => ["1F518"],
|
627
|
+
:"rage" => ["1F621"],
|
628
|
+
# "rage1" => nil,
|
629
|
+
# "rage2" => nil,
|
630
|
+
# "rage3" => nil,
|
631
|
+
# "rage4" => nil,
|
632
|
+
:"railway_car" => ["1F683"],
|
633
|
+
:"rainbow" => ["1F308"],
|
634
|
+
:"raised_hand" => ["270B"],
|
635
|
+
:"raised_hands" => ["1F64C"],
|
636
|
+
:"raising_hand" => ["1F64B"],
|
637
|
+
:"ram" => ["1F40F"],
|
638
|
+
:"ramen" => ["1F35C"],
|
639
|
+
:"rat" => ["1F400"],
|
640
|
+
:"recycle" => ["267B", "FE0F"],
|
641
|
+
:"red_car" => ["1F697"],
|
642
|
+
:"red_circle" => ["1F534"],
|
643
|
+
:"registered" => ["AE"],
|
644
|
+
:"relaxed" => ["263A", "FE0F"],
|
645
|
+
:"relieved" => ["1F60C"],
|
646
|
+
:"repeat" => ["1F501"],
|
647
|
+
:"repeat_one" => ["1F502"],
|
648
|
+
:"restroom" => ["1F6BB"],
|
649
|
+
:"revolving_hearts" => ["1F49E"],
|
650
|
+
:"rewind" => ["23EA"],
|
651
|
+
:"ribbon" => ["1F380"],
|
652
|
+
:"rice" => ["1F35A"],
|
653
|
+
:"rice_ball" => ["1F359"],
|
654
|
+
:"rice_cracker" => ["1F358"],
|
655
|
+
:"rice_scene" => ["1F391"],
|
656
|
+
:"ring" => ["1F48D"],
|
657
|
+
:"rocket" => ["1F680"],
|
658
|
+
:"roller_coaster" => ["1F3A2"],
|
659
|
+
:"rooster" => ["1F413"],
|
660
|
+
:"rose" => ["1F339"],
|
661
|
+
:"rotating_light" => ["1F6A8"],
|
662
|
+
:"round_pushpin" => ["1F4CD"],
|
663
|
+
:"rowboat" => ["1F6A3"],
|
664
|
+
:"ru" => ["1F1F7", "1F1FA"],
|
665
|
+
:"rugby_football" => ["1F3C9"],
|
666
|
+
:"runner" => ["1F3C3"],
|
667
|
+
:"running" => ["1F3C3"],
|
668
|
+
:"running_shirt_with_sash" => ["1F3BD"],
|
669
|
+
:"sa" => ["1F202"],
|
670
|
+
:"sagittarius" => ["2650", "FE0F"],
|
671
|
+
:"sailboat" => ["26F5", "FE0F"],
|
672
|
+
:"sake" => ["1F376"],
|
673
|
+
:"sandal" => ["1F461"],
|
674
|
+
:"santa" => ["1F385"],
|
675
|
+
:"satellite" => ["1F4E1"],
|
676
|
+
:"satisfied" => ["1F606"],
|
677
|
+
:"saxophone" => ["1F3B7"],
|
678
|
+
:"school" => ["1F3EB"],
|
679
|
+
:"school_satchel" => ["1F392"],
|
680
|
+
:"scissors" => ["2702", "FE0F"],
|
681
|
+
:"scorpius" => ["264F", "FE0F"],
|
682
|
+
:"scream" => ["1F631"],
|
683
|
+
:"scream_cat" => ["1F640"],
|
684
|
+
:"scroll" => ["1F4DC"],
|
685
|
+
:"seat" => ["1F4BA"],
|
686
|
+
:"secret" => ["3299", "FE0F"],
|
687
|
+
:"see_no_evil" => ["1F648"],
|
688
|
+
:"seedling" => ["1F331"],
|
689
|
+
:"seven" => ["37", "FE0F", "20E3"],
|
690
|
+
:"shaved_ice" => ["1F367"],
|
691
|
+
:"sheep" => ["1F411"],
|
692
|
+
:"shell" => ["1F41A"],
|
693
|
+
:"ship" => ["1F6A2"],
|
694
|
+
# "shipit" => nil,
|
695
|
+
:"shirt" => ["1F455"],
|
696
|
+
:"shit" => ["1F4A9"],
|
697
|
+
:"shoe" => ["1F45E"],
|
698
|
+
:"shower" => ["1F6BF"],
|
699
|
+
:"signal_strength" => ["1F4F6"],
|
700
|
+
:"six" => ["36", "FE0F", "20E3"],
|
701
|
+
:"six_pointed_star" => ["1F52F"],
|
702
|
+
:"ski" => ["1F3BF"],
|
703
|
+
:"skull" => ["1F480"],
|
704
|
+
:"sleeping" => ["1F634"],
|
705
|
+
:"sleepy" => ["1F62A"],
|
706
|
+
:"slot_machine" => ["1F3B0"],
|
707
|
+
:"small_blue_diamond" => ["1F539"],
|
708
|
+
:"small_orange_diamond" => ["1F538"],
|
709
|
+
:"small_red_triangle" => ["1F53A"],
|
710
|
+
:"small_red_triangle_down" => ["1F53B"],
|
711
|
+
:"smile" => ["1F604"],
|
712
|
+
:"smile_cat" => ["1F638"],
|
713
|
+
:"smiley" => ["1F603"],
|
714
|
+
:"smiley_cat" => ["1F63A"],
|
715
|
+
:"smiling_imp" => ["1F608"],
|
716
|
+
:"smirk" => ["1F60F"],
|
717
|
+
:"smirk_cat" => ["1F63C"],
|
718
|
+
:"smoking" => ["1F6AC"],
|
719
|
+
:"snail" => ["1F40C"],
|
720
|
+
:"snake" => ["1F40D"],
|
721
|
+
:"snowboarder" => ["1F3C2"],
|
722
|
+
:"snowflake" => ["2744", "FE0F"],
|
723
|
+
:"snowman" => ["26C4", "FE0F"],
|
724
|
+
:"sob" => ["1F62D"],
|
725
|
+
:"soccer" => ["26BD", "FE0F"],
|
726
|
+
:"soon" => ["1F51C"],
|
727
|
+
:"sos" => ["1F198"],
|
728
|
+
:"sound" => ["1F509"],
|
729
|
+
:"space_invader" => ["1F47E"],
|
730
|
+
:"spades" => ["2660", "FE0F"],
|
731
|
+
:"spaghetti" => ["1F35D"],
|
732
|
+
:"sparkle" => ["2747", "FE0F"],
|
733
|
+
:"sparkler" => ["1F387"],
|
734
|
+
:"sparkles" => ["2728"],
|
735
|
+
:"sparkling_heart" => ["1F496"],
|
736
|
+
:"speak_no_evil" => ["1F64A"],
|
737
|
+
:"speaker" => ["1F508"],
|
738
|
+
:"speech_balloon" => ["1F4AC"],
|
739
|
+
:"speedboat" => ["1F6A4"],
|
740
|
+
# "squirrel" => nil,
|
741
|
+
:"star" => ["2B50", "FE0F"],
|
742
|
+
:"star2" => ["1F31F"],
|
743
|
+
:"stars" => ["1F320"],
|
744
|
+
:"station" => ["1F689"],
|
745
|
+
:"statue_of_liberty" => ["1F5FD"],
|
746
|
+
:"steam_locomotive" => ["1F682"],
|
747
|
+
:"stew" => ["1F372"],
|
748
|
+
:"straight_ruler" => ["1F4CF"],
|
749
|
+
:"strawberry" => ["1F353"],
|
750
|
+
:"stuck_out_tongue" => ["1F61B"],
|
751
|
+
:"stuck_out_tongue_closed_eyes" => ["1F61D"],
|
752
|
+
:"stuck_out_tongue_winking_eye" => ["1F61C"],
|
753
|
+
:"sun_with_face" => ["1F31E"],
|
754
|
+
:"sunflower" => ["1F33B"],
|
755
|
+
:"sunglasses" => ["1F60E"],
|
756
|
+
:"sunny" => ["2600", "FE0F"],
|
757
|
+
:"sunrise" => ["1F305"],
|
758
|
+
:"sunrise_over_mountains" => ["1F304"],
|
759
|
+
:"surfer" => ["1F3C4"],
|
760
|
+
:"sushi" => ["1F363"],
|
761
|
+
# "suspect" => nil,
|
762
|
+
:"suspension_railway" => ["1F69F"],
|
763
|
+
:"sweat" => ["1F613"],
|
764
|
+
:"sweat_drops" => ["1F4A6"],
|
765
|
+
:"sweat_smile" => ["1F605"],
|
766
|
+
:"sweet_potato" => ["1F360"],
|
767
|
+
:"swimmer" => ["1F3CA"],
|
768
|
+
:"symbols" => ["1F523"],
|
769
|
+
:"syringe" => ["1F489"],
|
770
|
+
:"tada" => ["1F389"],
|
771
|
+
:"tanabata_tree" => ["1F38B"],
|
772
|
+
:"tangerine" => ["1F34A"],
|
773
|
+
:"taurus" => ["2649", "FE0F"],
|
774
|
+
:"taxi" => ["1F695"],
|
775
|
+
:"tea" => ["1F375"],
|
776
|
+
:"telephone" => ["260E", "FE0F"],
|
777
|
+
:"telephone_receiver" => ["1F4DE"],
|
778
|
+
:"telescope" => ["1F52D"],
|
779
|
+
:"tennis" => ["1F3BE"],
|
780
|
+
:"tent" => ["26FA", "FE0F"],
|
781
|
+
:"thought_balloon" => ["1F4AD"],
|
782
|
+
:"three" => ["33", "FE0F", "20E3"],
|
783
|
+
:"thumbsdown" => ["1F44E"],
|
784
|
+
:"thumbsup" => ["1F44D"],
|
785
|
+
:"ticket" => ["1F3AB"],
|
786
|
+
:"tiger" => ["1F42F"],
|
787
|
+
:"tiger2" => ["1F405"],
|
788
|
+
:"tired_face" => ["1F62B"],
|
789
|
+
:"tm" => ["2122"],
|
790
|
+
:"toilet" => ["1F6BD"],
|
791
|
+
:"tokyo_tower" => ["1F5FC"],
|
792
|
+
:"tomato" => ["1F345"],
|
793
|
+
:"tongue" => ["1F445"],
|
794
|
+
:"top" => ["1F51D"],
|
795
|
+
:"tophat" => ["1F3A9"],
|
796
|
+
:"tractor" => ["1F69C"],
|
797
|
+
:"traffic_light" => ["1F6A5"],
|
798
|
+
:"train" => ["1F68B"],
|
799
|
+
:"train2" => ["1F686"],
|
800
|
+
:"tram" => ["1F68A"],
|
801
|
+
:"triangular_flag_on_post" => ["1F6A9"],
|
802
|
+
:"triangular_ruler" => ["1F4D0"],
|
803
|
+
:"trident" => ["1F531"],
|
804
|
+
:"triumph" => ["1F624"],
|
805
|
+
:"trolleybus" => ["1F68E"],
|
806
|
+
# "trollface" => nil,
|
807
|
+
:"trophy" => ["1F3C6"],
|
808
|
+
:"tropical_drink" => ["1F379"],
|
809
|
+
:"tropical_fish" => ["1F420"],
|
810
|
+
:"truck" => ["1F69A"],
|
811
|
+
:"trumpet" => ["1F3BA"],
|
812
|
+
:"tshirt" => ["1F455"],
|
813
|
+
:"tulip" => ["1F337"],
|
814
|
+
:"turtle" => ["1F422"],
|
815
|
+
:"tv" => ["1F4FA"],
|
816
|
+
:"twisted_rightwards_arrows" => ["1F500"],
|
817
|
+
:"two" => ["32", "FE0F", "20E3"],
|
818
|
+
:"two_hearts" => ["1F495"],
|
819
|
+
:"two_men_holding_hands" => ["1F46C"],
|
820
|
+
:"two_women_holding_hands" => ["1F46D"],
|
821
|
+
:"u5272" => ["1F239"],
|
822
|
+
:"u5408" => ["1F234"],
|
823
|
+
:"u55b6" => ["1F23A"],
|
824
|
+
:"u6307" => ["1F22F", "FE0F"],
|
825
|
+
:"u6708" => ["1F237"],
|
826
|
+
:"u6709" => ["1F236"],
|
827
|
+
:"u6e80" => ["1F235"],
|
828
|
+
:"u7121" => ["1F21A", "FE0F"],
|
829
|
+
:"u7533" => ["1F238"],
|
830
|
+
:"u7981" => ["1F232"],
|
831
|
+
:"u7a7a" => ["1F233"],
|
832
|
+
:"uk" => ["1F1EC", "1F1E7"],
|
833
|
+
:"umbrella" => ["2614", "FE0F"],
|
834
|
+
:"unamused" => ["1F612"],
|
835
|
+
:"underage" => ["1F51E"],
|
836
|
+
:"unlock" => ["1F513"],
|
837
|
+
:"up" => ["1F199"],
|
838
|
+
:"us" => ["1F1FA", "1F1F8"],
|
839
|
+
:"v" => ["270C", "FE0F"],
|
840
|
+
:"vertical_traffic_light" => ["1F6A6"],
|
841
|
+
:"vhs" => ["1F4FC"],
|
842
|
+
:"vibration_mode" => ["1F4F3"],
|
843
|
+
:"video_camera" => ["1F4F9"],
|
844
|
+
:"video_game" => ["1F3AE"],
|
845
|
+
:"violin" => ["1F3BB"],
|
846
|
+
:"virgo" => ["264D", "FE0F"],
|
847
|
+
:"volcano" => ["1F30B"],
|
848
|
+
:"vs" => ["1F19A"],
|
849
|
+
:"walking" => ["1F6B6"],
|
850
|
+
:"waning_crescent_moon" => ["1F318"],
|
851
|
+
:"waning_gibbous_moon" => ["1F316"],
|
852
|
+
:"warning" => ["26A0", "FE0F"],
|
853
|
+
:"watch" => ["231A", "FE0F"],
|
854
|
+
:"water_buffalo" => ["1F403"],
|
855
|
+
:"watermelon" => ["1F349"],
|
856
|
+
:"wave" => ["1F44B"],
|
857
|
+
:"wavy_dash" => ["3030"],
|
858
|
+
:"waxing_crescent_moon" => ["1F312"],
|
859
|
+
:"waxing_gibbous_moon" => ["1F314"],
|
860
|
+
:"wc" => ["1F6BE"],
|
861
|
+
:"weary" => ["1F629"],
|
862
|
+
:"wedding" => ["1F492"],
|
863
|
+
:"whale" => ["1F433"],
|
864
|
+
:"whale2" => ["1F40B"],
|
865
|
+
:"wheelchair" => ["267F", "FE0F"],
|
866
|
+
:"white_check_mark" => ["2705"],
|
867
|
+
:"white_circle" => ["26AA", "FE0F"],
|
868
|
+
:"white_flower" => ["1F4AE"],
|
869
|
+
:"white_large_square" => ["2B1C", "FE0F"],
|
870
|
+
:"white_medium_small_square" => ["25FD", "FE0F"],
|
871
|
+
:"white_medium_square" => ["25FB", "FE0F"],
|
872
|
+
:"white_small_square" => ["25AB", "FE0F"],
|
873
|
+
:"white_square_button" => ["1F533"],
|
874
|
+
:"wind_chime" => ["1F390"],
|
875
|
+
:"wine_glass" => ["1F377"],
|
876
|
+
:"wink" => ["1F609"],
|
877
|
+
:"wolf" => ["1F43A"],
|
878
|
+
:"woman" => ["1F469"],
|
879
|
+
:"womans_clothes" => ["1F45A"],
|
880
|
+
:"womans_hat" => ["1F452"],
|
881
|
+
:"womens" => ["1F6BA"],
|
882
|
+
:"worried" => ["1F61F"],
|
883
|
+
:"wrench" => ["1F527"],
|
884
|
+
:"x" => ["274C"],
|
885
|
+
:"yellow_heart" => ["1F49B"],
|
886
|
+
:"yen" => ["1F4B4"],
|
887
|
+
:"yum" => ["1F60B"],
|
888
|
+
:"zap" => ["26A1", "FE0F"],
|
889
|
+
:"zero" => ["30", "FE0F", "20E3"],
|
890
|
+
:"zzz" => ["1F4A4"]
|
891
|
+
}.freeze
|
892
|
+
end
|