e4u-emoji 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +68 -0
- data/VERSION +1 -0
- data/lib/e4u/emoji.rb +35 -0
- data/lib/e4u/emoji/docomo.rb +839 -0
- data/lib/e4u/emoji/google.rb +839 -0
- data/lib/e4u/emoji/kddi.rb +839 -0
- data/lib/e4u/emoji/softbank.rb +839 -0
- data/spec/e4u-emoji_spec.rb +31 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- data/table_maker.rb +44 -0
- metadata +90 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 fistfvck
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= e4u-emoji
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2009 fistfvck. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "e4u-emoji"
|
8
|
+
gem.summary = %Q{Emoji implementation using E4U}
|
9
|
+
gem.description = %Q{Emoji implementation using E4U}
|
10
|
+
gem.email = "fistfvck@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/fistfvck/e4u-emoji"
|
12
|
+
gem.authors = ["fistfvck"]
|
13
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
14
|
+
gem.add_development_dependency "e4u"
|
15
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
+
end
|
17
|
+
Jeweler::GemcutterTasks.new
|
18
|
+
rescue LoadError
|
19
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'spec/rake/spectask'
|
23
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
24
|
+
spec.libs << 'lib' << 'spec'
|
25
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
26
|
+
end
|
27
|
+
|
28
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
29
|
+
spec.libs << 'lib' << 'spec'
|
30
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
31
|
+
spec.rcov = true
|
32
|
+
end
|
33
|
+
|
34
|
+
task :spec => :check_dependencies
|
35
|
+
|
36
|
+
task :default => :spec
|
37
|
+
|
38
|
+
require 'rake/rdoctask'
|
39
|
+
Rake::RDocTask.new do |rdoc|
|
40
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
41
|
+
|
42
|
+
rdoc.rdoc_dir = 'rdoc'
|
43
|
+
rdoc.title = "e4u-emoji #{version}"
|
44
|
+
rdoc.rdoc_files.include('README*')
|
45
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
46
|
+
end
|
47
|
+
|
48
|
+
require 'table_maker'
|
49
|
+
task :data => ['lib/e4u/emoji/docomo.rb',
|
50
|
+
'lib/e4u/emoji/kddi.rb',
|
51
|
+
'lib/e4u/emoji/softbank.rb',
|
52
|
+
'lib/e4u/emoji/google.rb',]
|
53
|
+
|
54
|
+
file 'lib/e4u/emoji/docomo.rb' do
|
55
|
+
make_emoji_table 'lib/e4u/emoji/docomo.rb', :docomo, 'DOCOMO_TABLE'
|
56
|
+
end
|
57
|
+
|
58
|
+
file 'lib/e4u/emoji/kddi.rb' do
|
59
|
+
make_emoji_table 'lib/e4u/emoji/kddi.rb', :kddi, 'KDDI_TABLE'
|
60
|
+
end
|
61
|
+
|
62
|
+
file 'lib/e4u/emoji/softbank.rb' do
|
63
|
+
make_emoji_table 'lib/e4u/emoji/softbank.rb', :softbank, 'SOFTBANK_TABLE'
|
64
|
+
end
|
65
|
+
|
66
|
+
file 'lib/e4u/emoji/google.rb' do
|
67
|
+
make_emoji_table 'lib/e4u/emoji/google.rb', :google, 'GOOGLE_TABLE'
|
68
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/lib/e4u/emoji.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'e4u/emoji/docomo'
|
2
|
+
require 'e4u/emoji/kddi'
|
3
|
+
require 'e4u/emoji/softbank'
|
4
|
+
require 'e4u/emoji/google'
|
5
|
+
|
6
|
+
module E4U
|
7
|
+
@emoji = {}
|
8
|
+
def self.create carrier
|
9
|
+
carrier = :kddi if carrier == :au
|
10
|
+
carrier = :softbank if carrier == :iphone
|
11
|
+
@emoji[carrier] ||= Emoji.new(carrier)
|
12
|
+
end
|
13
|
+
|
14
|
+
class Emoji
|
15
|
+
def initialize carrier
|
16
|
+
@table = case carrier
|
17
|
+
when :docomo
|
18
|
+
DOCOMO_TABLE
|
19
|
+
when :au, :kddi
|
20
|
+
KDDI_TABLE
|
21
|
+
when :softbank, :iphone
|
22
|
+
SOFTBANK_TABLE
|
23
|
+
when :google
|
24
|
+
GOOGLE_TABLE
|
25
|
+
else
|
26
|
+
raise ArgumentError
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def method_missing method, *args
|
31
|
+
raise NoMethodError unless @table[method]
|
32
|
+
@table[method]
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,839 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
module E4U
|
3
|
+
class Emoji
|
4
|
+
DOCOMO_TABLE = {
|
5
|
+
:airplane => [0xE662].pack('U').freeze,
|
6
|
+
:alarm_clock => [0xE6BA].pack('U').freeze,
|
7
|
+
:alien_monster => "[\345\256\207\345\256\231\344\272\272]",
|
8
|
+
:ambulance => "[\346\225\221\346\200\245\350\273\212]",
|
9
|
+
:american_football => "[\343\203\225\343\203\203\343\203\210\343\203\234\343\203\274\343\203\253]",
|
10
|
+
:anchor => [0xE661].pack('U').freeze,
|
11
|
+
:anger_symbol => [0xE6FC].pack('U').freeze,
|
12
|
+
:angry_face => [0xE6F1].pack('U').freeze,
|
13
|
+
:anguished_cat_face => [0xE6F3].pack('U').freeze,
|
14
|
+
:anguished_face => [0xE6F3].pack('U').freeze,
|
15
|
+
:ant => "[\343\202\242\343\203\252]",
|
16
|
+
:antenna_with_bars => "[\343\203\220\343\203\2523]",
|
17
|
+
:aquarius => [0xE650].pack('U').freeze,
|
18
|
+
:aries => [0xE646].pack('U').freeze,
|
19
|
+
:arrow_pointing_rightwards_then_curving_downwards => [0xE700].pack('U').freeze,
|
20
|
+
:arrow_pointing_rightwards_then_curving_upwards => [0xE6F5].pack('U').freeze,
|
21
|
+
:artist_palette => [0xE67B].pack('U').freeze,
|
22
|
+
:astonished_face => [0xE6F4].pack('U').freeze,
|
23
|
+
:athletic_shoe => [0xE699].pack('U').freeze,
|
24
|
+
:aubergine => "[\343\203\212\343\202\271]",
|
25
|
+
:automated_teller_machine => [0xE668].pack('U').freeze,
|
26
|
+
:automobile => [0xE65E].pack('U').freeze,
|
27
|
+
:baby => "[\350\265\244\343\201\241\343\202\203\343\202\223]",
|
28
|
+
:baby_angel => "[\345\244\251\344\275\277]",
|
29
|
+
:baby_chick => [0xE74F].pack('U').freeze,
|
30
|
+
:baby_symbol => "[\350\265\244\343\201\241\343\202\203\343\202\223]",
|
31
|
+
:back_with_leftwards_arrow_above => "[\342\206\220BACK]",
|
32
|
+
:bactrian_camel => "[\343\203\251\343\202\257\343\203\200]",
|
33
|
+
:balloon => "[\351\242\250\350\210\271]",
|
34
|
+
:ballot_box_with_check => "[\343\203\201\343\202\247\343\203\203\343\202\257\343\203\236\343\203\274\343\202\257]",
|
35
|
+
:banana => [0xE744].pack('U').freeze,
|
36
|
+
:bank => [0xE667].pack('U').freeze,
|
37
|
+
:banknote_with_dollar_sign => [0xE715].pack('U').freeze,
|
38
|
+
:banknote_with_yen_sign => [0xE6D6].pack('U').freeze,
|
39
|
+
:bar_chart => "[\343\202\260\343\203\251\343\203\225]",
|
40
|
+
:barber_pole => "[\345\272\212\345\261\213]",
|
41
|
+
:baseball => [0xE653].pack('U').freeze,
|
42
|
+
:basketball_and_hoop => [0xE658].pack('U').freeze,
|
43
|
+
:bath => [0xE6F7].pack('U').freeze,
|
44
|
+
:battery => "[\351\233\273\346\261\240]",
|
45
|
+
:bear_face => "[\343\202\257\343\203\236]",
|
46
|
+
:beating_heart => [0xE6ED].pack('U').freeze,
|
47
|
+
:beer_mug => [0xE672].pack('U').freeze,
|
48
|
+
:bell => [0xE713].pack('U').freeze,
|
49
|
+
:bento_box => "[\345\274\201\345\275\223]",
|
50
|
+
:bicycle => [0xE71D].pack('U').freeze,
|
51
|
+
:bikini => "[\343\203\223\343\202\255\343\203\213]",
|
52
|
+
:billiards => "[\343\203\223\343\203\252\343\203\244\343\203\274\343\203\211]",
|
53
|
+
:bird => [0xE74F].pack('U').freeze,
|
54
|
+
:birthday_cake => [0xE686].pack('U').freeze,
|
55
|
+
:black_club_suit => [0xE690].pack('U').freeze,
|
56
|
+
:black_diamond_suit => [0xE68F].pack('U').freeze,
|
57
|
+
:black_down_pointing_double_triangle => "\342\226\274",
|
58
|
+
:black_heart_suit => [0xE68D].pack('U').freeze,
|
59
|
+
:black_large_square => "\342\226\240",
|
60
|
+
:black_left_pointing_double_triangle => "[<<]",
|
61
|
+
:black_left_pointing_triangle => "[<]",
|
62
|
+
:black_medium_small_square => "\342\226\240",
|
63
|
+
:black_medium_square => "\342\226\240",
|
64
|
+
:black_nib => [0xE6AE].pack('U').freeze,
|
65
|
+
:black_question_mark_ornament => "[\357\274\237]",
|
66
|
+
:black_right_pointing_double_triangle => "[>>]",
|
67
|
+
:black_right_pointing_triangle => "[>]",
|
68
|
+
:black_rightwards_arrow => "[\342\206\222]",
|
69
|
+
:black_scissors => [0xE675].pack('U').freeze,
|
70
|
+
:black_small_square => "\342\226\240",
|
71
|
+
:black_spade_suit => [0xE68E].pack('U').freeze,
|
72
|
+
:black_square_button => [0xE69C].pack('U').freeze,
|
73
|
+
:black_sun_with_rays => [0xE63E].pack('U').freeze,
|
74
|
+
:black_telephone => [0xE687].pack('U').freeze,
|
75
|
+
:black_universal_recycling_symbol => [0xE735].pack('U').freeze,
|
76
|
+
:black_up_pointing_double_triangle => "\342\226\262",
|
77
|
+
:blossom => "[\350\212\261]",
|
78
|
+
:blowfish => [0xE751].pack('U').freeze,
|
79
|
+
:blue_book => [0xE683].pack('U').freeze,
|
80
|
+
:blue_heart => [0xE6EC].pack('U').freeze,
|
81
|
+
:boar => "[\343\202\244\343\203\216\343\202\267\343\202\267]",
|
82
|
+
:bomb => [0xE6FE].pack('U').freeze,
|
83
|
+
:bookmark => "[\343\203\226\343\203\203\343\202\257\343\203\236\343\203\274\343\202\257]",
|
84
|
+
:bookmark_tabs => [0xE689].pack('U').freeze,
|
85
|
+
:books => [0xE683].pack('U').freeze,
|
86
|
+
:bouncing_happy => "[\343\202\204\343\201\243\343\201\237\343\203\274]",
|
87
|
+
:bouquet => "[\350\212\261\346\235\237]",
|
88
|
+
:bowling => "[\343\203\234\343\203\274\343\203\252\343\203\263\343\202\260]",
|
89
|
+
:boy => [0xE6F0].pack('U').freeze,
|
90
|
+
:bread => [0xE74D].pack('U').freeze,
|
91
|
+
:bride_with_veil => "[\350\212\261\345\253\201]",
|
92
|
+
:bridge_at_night => [0xE6B3].pack('U').freeze,
|
93
|
+
:briefcase => [0xE682].pack('U').freeze,
|
94
|
+
:broken_heart => [0xE6EE].pack('U').freeze,
|
95
|
+
:bug => "[\343\202\262\343\202\270\343\202\262\343\202\270]",
|
96
|
+
:bus_stop => "[\343\203\220\343\202\271\345\201\234]",
|
97
|
+
:bust_in_silhouette => [0xE6B1].pack('U').freeze,
|
98
|
+
:cactus => "[\343\202\265\343\203\234\343\203\206\343\203\263]",
|
99
|
+
:calendar => "[\343\202\253\343\203\254\343\203\263\343\203\200\343\203\274]",
|
100
|
+
:camera => [0xE681].pack('U').freeze,
|
101
|
+
:cancer => [0xE649].pack('U').freeze,
|
102
|
+
:candy => "[\343\202\255\343\203\243\343\203\263\343\203\207\343\202\243]",
|
103
|
+
:capricorn => [0xE64F].pack('U').freeze,
|
104
|
+
:card_index => [0xE683].pack('U').freeze,
|
105
|
+
:carousel_horse => [0xE679].pack('U').freeze,
|
106
|
+
:carp_streamer => "[\343\201\223\343\201\204\343\201\256\343\201\274\343\202\212]",
|
107
|
+
:cat_face => [0xE6A2].pack('U').freeze,
|
108
|
+
:cat_face_kissing => [0xE726].pack('U').freeze,
|
109
|
+
:cat_face_with_heart_shaped_eyes => [0xE726].pack('U').freeze,
|
110
|
+
:cat_face_with_open_mouth => [0xE6F0].pack('U').freeze,
|
111
|
+
:cat_face_with_tightly_closed_lips => [0xE753].pack('U').freeze,
|
112
|
+
:chart_with_downwards_trend => "[\343\202\260\343\203\251\343\203\225]",
|
113
|
+
:chart_with_upwards_trend => "[\343\202\260\343\203\251\343\203\225]",
|
114
|
+
:chart_with_upwards_trend_and_yen_sign => "[\346\240\252\344\276\241]",
|
115
|
+
:cheering_megaphone => "[\343\203\241\343\202\254\343\203\233\343\203\263]",
|
116
|
+
:chequered_flag => [0xE659].pack('U').freeze,
|
117
|
+
:cherries => [0xE742].pack('U').freeze,
|
118
|
+
:cherry_blossom => [0xE748].pack('U').freeze,
|
119
|
+
:chestnut => "[\346\240\227]",
|
120
|
+
:chicken => "[\343\203\213\343\203\257\343\203\210\343\203\252]",
|
121
|
+
:chocolate_bar => "[\343\203\201\343\203\247\343\202\263]",
|
122
|
+
:christmas_tree => [0xE6A4].pack('U').freeze,
|
123
|
+
:church => "[\346\225\231\344\274\232]",
|
124
|
+
:cinema => [0xE677].pack('U').freeze,
|
125
|
+
:circled_ideograph_accept => "[\345\217\257]",
|
126
|
+
:circled_ideograph_advantage => "[\345\276\227]",
|
127
|
+
:circled_ideograph_congratulation => "[\347\245\235]",
|
128
|
+
:circled_ideograph_secret => [0xE734].pack('U').freeze,
|
129
|
+
:circled_latin_capital_letter_m => [0xE65C].pack('U').freeze,
|
130
|
+
:circus_tent => [0xE67D].pack('U').freeze,
|
131
|
+
:cityscape_at_dusk => "[\345\244\225\347\204\274\343\201\221]",
|
132
|
+
:clapper_board => [0xE6AC].pack('U').freeze,
|
133
|
+
:clapping_hands_sign => "[\346\213\215\346\211\213]",
|
134
|
+
:clinking_beer_mugs => [0xE672].pack('U').freeze,
|
135
|
+
:clipboard => [0xE689].pack('U').freeze,
|
136
|
+
:clock_face_eight_oclock => [0xE6BA].pack('U').freeze,
|
137
|
+
:clock_face_eleven_oclock => [0xE6BA].pack('U').freeze,
|
138
|
+
:clock_face_five_oclock => [0xE6BA].pack('U').freeze,
|
139
|
+
:clock_face_four_oclock => [0xE6BA].pack('U').freeze,
|
140
|
+
:clock_face_nine_oclock => [0xE6BA].pack('U').freeze,
|
141
|
+
:clock_face_one_oclock => [0xE6BA].pack('U').freeze,
|
142
|
+
:clock_face_seven_oclock => [0xE6BA].pack('U').freeze,
|
143
|
+
:clock_face_six_oclock => [0xE6BA].pack('U').freeze,
|
144
|
+
:clock_face_ten_oclock => [0xE6BA].pack('U').freeze,
|
145
|
+
:clock_face_three_oclock => [0xE6BA].pack('U').freeze,
|
146
|
+
:clock_face_twelve_oclock => [0xE6BA].pack('U').freeze,
|
147
|
+
:clock_face_two_oclock => [0xE6BA].pack('U').freeze,
|
148
|
+
:clockwise_downwards_and_upwards_open_circle_arrows => [0xE735].pack('U').freeze,
|
149
|
+
:closed_book => [0xE683].pack('U').freeze,
|
150
|
+
:closed_lock_with_key => [0xE6D9].pack('U').freeze,
|
151
|
+
:closed_mailbox_with_lowered_flag => [0xE665].pack('U').freeze,
|
152
|
+
:closed_mailbox_with_raised_flag => [0xE665].pack('U').freeze,
|
153
|
+
:closed_umbrella => [0xE645].pack('U').freeze,
|
154
|
+
:cloud => [0xE63F].pack('U').freeze,
|
155
|
+
:cocktail_glass => [0xE671].pack('U').freeze,
|
156
|
+
:collision_symbol => [0xE705].pack('U').freeze,
|
157
|
+
:confetti_ball => "[\343\202\252\343\203\241\343\203\207\343\203\210\343\202\246]",
|
158
|
+
:confounded_face => [0xE6F3].pack('U').freeze,
|
159
|
+
:construction_sign => "[\345\267\245\344\272\213\344\270\255]",
|
160
|
+
:construction_worker => "[\345\267\245\344\272\213\347\217\276\345\240\264\343\201\256\344\272\272]",
|
161
|
+
:convenience_store => [0xE66A].pack('U').freeze,
|
162
|
+
:cooked_rice => [0xE74C].pack('U').freeze,
|
163
|
+
:cookie => "[\343\202\257\343\203\203\343\202\255\343\203\274]",
|
164
|
+
:cooking => "[\343\203\225\343\203\251\343\202\244\343\203\221\343\203\263]",
|
165
|
+
:cool_face => "B-)",
|
166
|
+
:copyright_sign => [0xE731].pack('U').freeze,
|
167
|
+
:couple_with_heart => [0xE6ED].pack('U').freeze,
|
168
|
+
:cow_face => "[\347\211\233]",
|
169
|
+
:crab => "[\343\202\253\343\203\213]",
|
170
|
+
:credit_card => "[\343\202\253\343\203\274\343\203\211]",
|
171
|
+
:crescent_moon => [0xE69F].pack('U').freeze,
|
172
|
+
:cross_mark => "[\303\227]",
|
173
|
+
:crossed_flags => "[\347\245\235\346\227\245]",
|
174
|
+
:crown => [0xE71A].pack('U').freeze,
|
175
|
+
:crying_cat_face => [0xE72E].pack('U').freeze,
|
176
|
+
:crying_face => [0xE72E].pack('U').freeze,
|
177
|
+
:crystal_ball => "[\345\215\240\343\201\204]",
|
178
|
+
:curly_loop => [0xE70A].pack('U').freeze,
|
179
|
+
:currency_exchange => "[$\357\277\245]",
|
180
|
+
:curry_and_rice => "[\343\202\253\343\203\254\343\203\274]",
|
181
|
+
:custard => "[\343\203\227\343\203\252\343\203\263]",
|
182
|
+
:cyclone => [0xE643].pack('U').freeze,
|
183
|
+
:dancer => "[\343\203\200\343\203\263\343\202\271]",
|
184
|
+
:dango => "[\343\201\240\343\202\223\343\201\224]",
|
185
|
+
:dash_symbol => [0xE708].pack('U').freeze,
|
186
|
+
:delivery_truck => "[\343\203\210\343\203\251\343\203\203\343\202\257]",
|
187
|
+
:department_store => "[\343\203\207\343\203\221\343\203\274\343\203\210]",
|
188
|
+
:diamond_shape_with_a_dot_inside => [0xE6F8].pack('U').freeze,
|
189
|
+
:direct_hit => "[\347\232\204\344\270\255]",
|
190
|
+
:disappointed_but_relieved_face => [0xE723].pack('U').freeze,
|
191
|
+
:disappointed_face => [0xE6F2].pack('U').freeze,
|
192
|
+
:dizzy_face => [0xE6F4].pack('U').freeze,
|
193
|
+
:dizzy_symbol => "[\343\202\257\343\203\251\343\202\257\343\203\251]",
|
194
|
+
:dog_face => [0xE6A1].pack('U').freeze,
|
195
|
+
:dolphin => "[\343\202\244\343\203\253\343\202\253]",
|
196
|
+
:door => [0xE714].pack('U').freeze,
|
197
|
+
:double_curly_loop => [0xE6DF].pack('U').freeze,
|
198
|
+
:double_exclamation_mark => [0xE704].pack('U').freeze,
|
199
|
+
:doughnut => "[\343\203\211\343\203\274\343\203\212\343\203\204]",
|
200
|
+
:down_pointing_red_triangle => "\342\226\274",
|
201
|
+
:down_pointing_small_red_triangle => "\342\226\274",
|
202
|
+
:downwards_black_arrow => "[\342\206\223]",
|
203
|
+
:dragon_face => "[\350\276\260]",
|
204
|
+
:dress => "[\343\203\211\343\203\254\343\202\271]",
|
205
|
+
:drop_of_water => [0xE707].pack('U').freeze,
|
206
|
+
:dvd => [0xE68C].pack('U').freeze,
|
207
|
+
:e_mail_symbol => [0xE6D3].pack('U').freeze,
|
208
|
+
:ear => [0xE692].pack('U').freeze,
|
209
|
+
:ear_of_maize => "[\343\201\250\343\201\206\343\202\202\343\202\215\343\201\223\343\201\227]",
|
210
|
+
:ear_of_rice => "[\347\250\262\347\251\202]",
|
211
|
+
:earth_globe_asia_australia => "[\345\234\260\347\220\203]",
|
212
|
+
:eight_pointed_black_star => [0xE6F8].pack('U').freeze,
|
213
|
+
:eight_spoked_asterisk => [0xE6F8].pack('U').freeze,
|
214
|
+
:electric_light_bulb => [0xE6FB].pack('U').freeze,
|
215
|
+
:electric_plug => "[\343\202\263\343\203\263\343\202\273\343\203\263\343\203\210]",
|
216
|
+
:electric_torch => [0xE6FB].pack('U').freeze,
|
217
|
+
:elephant => "[\343\202\276\343\202\246]",
|
218
|
+
:em_space => [0x3013].pack('U').freeze,
|
219
|
+
:emoji_compatibility_symbol_1 => [0xE6D1].pack('U').freeze,
|
220
|
+
:emoji_compatibility_symbol_10 => [0xE6A9].pack('U').freeze,
|
221
|
+
:emoji_compatibility_symbol_11 => [0xE6AA].pack('U').freeze,
|
222
|
+
:emoji_compatibility_symbol_12 => [0xE6AB].pack('U').freeze,
|
223
|
+
:emoji_compatibility_symbol_13 => [0xE6AF].pack('U').freeze,
|
224
|
+
:emoji_compatibility_symbol_14 => [0xE6B0].pack('U').freeze,
|
225
|
+
:emoji_compatibility_symbol_15 => [0xE6B4].pack('U').freeze,
|
226
|
+
:emoji_compatibility_symbol_16 => [0xE6B5].pack('U').freeze,
|
227
|
+
:emoji_compatibility_symbol_17 => [0xE6B6].pack('U').freeze,
|
228
|
+
:emoji_compatibility_symbol_18 => [0xE6BB].pack('U').freeze,
|
229
|
+
:emoji_compatibility_symbol_19 => [0xE6BC].pack('U').freeze,
|
230
|
+
:emoji_compatibility_symbol_2 => [0xE6D2].pack('U').freeze,
|
231
|
+
:emoji_compatibility_symbol_20 => [0xE6BD].pack('U').freeze,
|
232
|
+
:emoji_compatibility_symbol_21 => [0xE6BE].pack('U').freeze,
|
233
|
+
:emoji_compatibility_symbol_22 => [0xE6BF].pack('U').freeze,
|
234
|
+
:emoji_compatibility_symbol_23 => [0xE6C0].pack('U').freeze,
|
235
|
+
:emoji_compatibility_symbol_24 => [0xE6C1].pack('U').freeze,
|
236
|
+
:emoji_compatibility_symbol_25 => [0xE6C2].pack('U').freeze,
|
237
|
+
:emoji_compatibility_symbol_26 => [0xE6C3].pack('U').freeze,
|
238
|
+
:emoji_compatibility_symbol_27 => [0xE6C4].pack('U').freeze,
|
239
|
+
:emoji_compatibility_symbol_28 => [0xE6C5].pack('U').freeze,
|
240
|
+
:emoji_compatibility_symbol_29 => [0xE6C6].pack('U').freeze,
|
241
|
+
:emoji_compatibility_symbol_3 => [0xE6D4].pack('U').freeze,
|
242
|
+
:emoji_compatibility_symbol_30 => [0xE6C7].pack('U').freeze,
|
243
|
+
:emoji_compatibility_symbol_31 => [0xE6C8].pack('U').freeze,
|
244
|
+
:emoji_compatibility_symbol_32 => [0xE6C9].pack('U').freeze,
|
245
|
+
:emoji_compatibility_symbol_33 => [0xE6CA].pack('U').freeze,
|
246
|
+
:emoji_compatibility_symbol_34 => [0xE6CB].pack('U').freeze,
|
247
|
+
:emoji_compatibility_symbol_35 => [0xE6CC].pack('U').freeze,
|
248
|
+
:emoji_compatibility_symbol_36 => [0xE6CD].pack('U').freeze,
|
249
|
+
:emoji_compatibility_symbol_37 => "[EZ]",
|
250
|
+
:emoji_compatibility_symbol_38 => "[ezplus]",
|
251
|
+
:emoji_compatibility_symbol_39 => "[EZ\343\203\212\343\203\223]",
|
252
|
+
:emoji_compatibility_symbol_4 => [0xE6D5].pack('U').freeze,
|
253
|
+
:emoji_compatibility_symbol_40 => "[EZ\343\203\240\343\203\274\343\203\223\343\203\274]",
|
254
|
+
:emoji_compatibility_symbol_41 => "[C\343\203\241\343\203\274\343\203\253]",
|
255
|
+
:emoji_compatibility_symbol_42 => "[Java]",
|
256
|
+
:emoji_compatibility_symbol_43 => "[BREW]",
|
257
|
+
:emoji_compatibility_symbol_44 => "[EZ\347\235\200\343\201\206\343\201\237]",
|
258
|
+
:emoji_compatibility_symbol_45 => "[EZ\343\203\212\343\203\223]",
|
259
|
+
:emoji_compatibility_symbol_46 => "[WIN]",
|
260
|
+
:emoji_compatibility_symbol_47 => "[\343\203\227\343\203\254\343\203\237\343\202\242\343\203\240]",
|
261
|
+
:emoji_compatibility_symbol_48 => "[\343\202\252\343\203\274\343\203\227\343\203\263\343\202\246\343\202\247\343\203\226]",
|
262
|
+
:emoji_compatibility_symbol_49 => "[PDC]",
|
263
|
+
:emoji_compatibility_symbol_5 => [0xE70C].pack('U').freeze,
|
264
|
+
:emoji_compatibility_symbol_50 => "J-Sky1",
|
265
|
+
:emoji_compatibility_symbol_51 => "J-Sky2",
|
266
|
+
:emoji_compatibility_symbol_52 => "vodafone1",
|
267
|
+
:emoji_compatibility_symbol_53 => "vodafone2",
|
268
|
+
:emoji_compatibility_symbol_54 => "[v",
|
269
|
+
:emoji_compatibility_symbol_55 => "oda",
|
270
|
+
:emoji_compatibility_symbol_56 => "fone]",
|
271
|
+
:emoji_compatibility_symbol_57 => "J-PHONE SHOP",
|
272
|
+
:emoji_compatibility_symbol_58 => "SKY WEB",
|
273
|
+
:emoji_compatibility_symbol_59 => "SKY WALKER",
|
274
|
+
:emoji_compatibility_symbol_6 => [0xE70D].pack('U').freeze,
|
275
|
+
:emoji_compatibility_symbol_60 => "SKY MELODY",
|
276
|
+
:emoji_compatibility_symbol_61 => "J-PHONE 1",
|
277
|
+
:emoji_compatibility_symbol_62 => "J-PHONE 2",
|
278
|
+
:emoji_compatibility_symbol_63 => "J-PHONE 3",
|
279
|
+
:emoji_compatibility_symbol_64 => [0x3013].pack('U').freeze,
|
280
|
+
:emoji_compatibility_symbol_66 => [0xE6E1].pack('U').freeze,
|
281
|
+
:emoji_compatibility_symbol_7 => [0xE6A6].pack('U').freeze,
|
282
|
+
:emoji_compatibility_symbol_8 => [0xE6A7].pack('U').freeze,
|
283
|
+
:emoji_compatibility_symbol_9 => [0xE6A8].pack('U').freeze,
|
284
|
+
:en_space => [0x3013].pack('U').freeze,
|
285
|
+
:end_with_leftwards_arrow_above => [0xE6B9].pack('U').freeze,
|
286
|
+
:envelope => [0xE6D3].pack('U').freeze,
|
287
|
+
:envelope_with_downwards_arrow_above => [0xE6CF].pack('U').freeze,
|
288
|
+
:european_castle => "[\345\237\216]",
|
289
|
+
:exasperated_face => [0xE723].pack('U').freeze,
|
290
|
+
:exclamation_question_mark => [0xE703].pack('U').freeze,
|
291
|
+
:expressionless_face => [0xE725].pack('U').freeze,
|
292
|
+
:extraterrestrial_alien => "[UFO]",
|
293
|
+
:eyeglasses => [0xE69A].pack('U').freeze,
|
294
|
+
:eyes => [0xE691].pack('U').freeze,
|
295
|
+
:face_kissing => [0xE726].pack('U').freeze,
|
296
|
+
:face_massage => "[\343\202\250\343\202\271\343\203\206]",
|
297
|
+
:face_savouring_delicious_food => [0xE752].pack('U').freeze,
|
298
|
+
:face_screaming_in_fear => [0xE757].pack('U').freeze,
|
299
|
+
:face_throwing_a_kiss => [0xE726].pack('U').freeze,
|
300
|
+
:face_with_cold_sweat => [0xE723].pack('U').freeze,
|
301
|
+
:face_with_heart_shaped_eyes => [0xE726].pack('U').freeze,
|
302
|
+
:face_with_look_of_triumph => [0xE753].pack('U').freeze,
|
303
|
+
:face_with_mask => "[\351\242\250\351\202\252\343\201\262\343\201\215]",
|
304
|
+
:face_with_no_good_gesture => [0xE72F].pack('U').freeze,
|
305
|
+
:face_with_ok_gesture => [0xE70B].pack('U').freeze,
|
306
|
+
:face_with_rolling_eyes => "[\343\202\257\343\203\251\343\202\257\343\203\251]",
|
307
|
+
:face_with_slanted_mouth => "[\343\203\240\343\203\240\343\203\240]",
|
308
|
+
:face_with_stuck_out_tongue => [0xE728].pack('U').freeze,
|
309
|
+
:face_with_unbalanced_eyes => "[\343\202\250\343\203\203?]",
|
310
|
+
:factory => "[\345\267\245\345\240\264]",
|
311
|
+
:fallen_leaf => [0xE747].pack('U').freeze,
|
312
|
+
:family => "[\345\256\266\346\227\217]",
|
313
|
+
:father_christmas => "[\343\202\265\343\203\263\343\202\277]",
|
314
|
+
:fax_machine => [0xE6D0].pack('U').freeze,
|
315
|
+
:fearful_face => [0xE757].pack('U').freeze,
|
316
|
+
:ferris_wheel => "[\350\246\263\350\246\247\350\273\212]",
|
317
|
+
:file_folder => "[\343\203\225\343\202\251\343\203\253\343\203\200]",
|
318
|
+
:fire => "[\347\202\216]",
|
319
|
+
:fire_engine => "[\346\266\210\351\230\262\350\273\212]",
|
320
|
+
:firework_sparkler => "[\347\267\232\351\246\231\350\212\261\347\201\253]",
|
321
|
+
:fireworks => "[\350\212\261\347\201\253]",
|
322
|
+
:first_quarter_moon_symbol => [0xE69E].pack('U').freeze,
|
323
|
+
:first_quarter_moon_with_face => [0xE69E].pack('U').freeze,
|
324
|
+
:fish => [0xE751].pack('U').freeze,
|
325
|
+
:fish_cake_with_swirl_design => [0xE643].pack('U').freeze,
|
326
|
+
:fishing_pole_and_fish => [0xE751].pack('U').freeze,
|
327
|
+
:fisted_hand_sign => [0xE6FD].pack('U').freeze,
|
328
|
+
:flag_in_hole => [0xE654].pack('U').freeze,
|
329
|
+
:flexed_biceps => "[\345\212\233\343\201\223\343\201\266]",
|
330
|
+
:floppy_disk => "[\343\203\225\343\203\255\343\203\203\343\203\224\343\203\274]",
|
331
|
+
:flower_playing_cards => "[\350\212\261\346\234\255]",
|
332
|
+
:flushed_face => [0xE72A].pack('U').freeze,
|
333
|
+
:foggy => [0xE644].pack('U').freeze,
|
334
|
+
:footprints => [0xE698].pack('U').freeze,
|
335
|
+
:fork_and_knife => [0xE66F].pack('U').freeze,
|
336
|
+
:fountain => "[\345\231\264\346\260\264]",
|
337
|
+
:four_leaf_clover => [0xE741].pack('U').freeze,
|
338
|
+
:four_per_em_space => [0x3013].pack('U').freeze,
|
339
|
+
:french_fries => "[\343\203\235\343\203\206\343\203\210]",
|
340
|
+
:fried_shrimp => "[\343\202\250\343\203\223\343\203\225\343\203\251\343\202\244]",
|
341
|
+
:frog_face => "[\343\202\253\343\202\250\343\203\253]",
|
342
|
+
:front_facing_baby_chick => [0xE74F].pack('U').freeze,
|
343
|
+
:fuel_pump => [0xE66B].pack('U').freeze,
|
344
|
+
:full_moon_symbol => [0xE6A0].pack('U').freeze,
|
345
|
+
:game_die => "[\343\202\265\343\202\244\343\202\263\343\203\255]",
|
346
|
+
:geek => "8-|",
|
347
|
+
:gem_stone => [0xE71B].pack('U').freeze,
|
348
|
+
:gemini => [0xE648].pack('U').freeze,
|
349
|
+
:ghost => "[\343\201\212\345\214\226\343\201\221]",
|
350
|
+
:girl => [0xE6F0].pack('U').freeze,
|
351
|
+
:glowing_star => "[\342\230\206]",
|
352
|
+
:google => "[Google]",
|
353
|
+
:graduation_cap => "[\345\215\222\346\245\255\345\274\217]",
|
354
|
+
:grapes => "[\343\203\226\343\203\211\343\202\246]",
|
355
|
+
:green_apple => [0xE745].pack('U').freeze,
|
356
|
+
:green_book => [0xE683].pack('U').freeze,
|
357
|
+
:green_heart => [0xE6EC].pack('U').freeze,
|
358
|
+
:growing_heart => [0xE6ED].pack('U').freeze,
|
359
|
+
:guardsman => "[\350\241\233\345\205\265]",
|
360
|
+
:guitar => "[\343\202\256\343\202\277\343\203\274]",
|
361
|
+
:haircut => [0xE675].pack('U').freeze,
|
362
|
+
:hamburger => [0xE673].pack('U').freeze,
|
363
|
+
:hammer => "[\343\203\217\343\203\263\343\203\236\343\203\274]",
|
364
|
+
:hamster_face => "[\343\203\217\343\203\240\343\202\271\343\202\277\343\203\274]",
|
365
|
+
:handbag => [0xE682].pack('U').freeze,
|
366
|
+
:happy_and_crying_cat_face => [0xE72A].pack('U').freeze,
|
367
|
+
:happy_and_crying_face => [0xE72A].pack('U').freeze,
|
368
|
+
:happy_cat_face_with_grin => [0xE753].pack('U').freeze,
|
369
|
+
:happy_face => [0xE6F0].pack('U').freeze,
|
370
|
+
:happy_face_with_grin => [0xE753].pack('U').freeze,
|
371
|
+
:happy_face_with_open_mouth => [0xE6F0].pack('U').freeze,
|
372
|
+
:happy_face_with_open_mouth_and_closed_eyes => [0xE72A].pack('U').freeze,
|
373
|
+
:happy_face_with_open_mouth_and_cold_sweat => [0xE722].pack('U').freeze,
|
374
|
+
:happy_face_with_open_mouth_and_raised_eyebrows => [0xE6F0].pack('U').freeze,
|
375
|
+
:happy_face_with_wide_mouth_and_raised_eyebrows => [0xE6F0].pack('U').freeze,
|
376
|
+
:hash_key => [0xE6E0].pack('U').freeze,
|
377
|
+
:hatching_chick => [0xE74F].pack('U').freeze,
|
378
|
+
:headphone => [0xE67A].pack('U').freeze,
|
379
|
+
:hear_no_evil_monkey => "|(\343\203\273\303\227\343\203\273)|",
|
380
|
+
:heart_decoration => [0xE6F8].pack('U').freeze,
|
381
|
+
:heart_with_arrow => [0xE6EC].pack('U').freeze,
|
382
|
+
:heart_with_ribbon => [0xE6EC].pack('U').freeze,
|
383
|
+
:heavy_black_heart => [0xE6EC].pack('U').freeze,
|
384
|
+
:heavy_check_mark => "[\343\203\201\343\202\247\343\203\203\343\202\257\343\203\236\343\203\274\343\202\257]",
|
385
|
+
:heavy_division_sign => "[\303\267]",
|
386
|
+
:heavy_dollar_sign => [0xE715].pack('U').freeze,
|
387
|
+
:heavy_exclamation_mark_ornament => [0xE702].pack('U').freeze,
|
388
|
+
:heavy_large_circle => [0xE6A0].pack('U').freeze,
|
389
|
+
:heavy_minus_sign => "[\357\274\215]",
|
390
|
+
:heavy_multiplication_x => "[\303\227]",
|
391
|
+
:heavy_plus_sign => "[\357\274\213]",
|
392
|
+
:herb => [0xE741].pack('U').freeze,
|
393
|
+
:hibiscus => "[\343\203\217\343\202\244\343\203\223\343\202\271\343\202\253\343\202\271]",
|
394
|
+
:high_heeled_shoe => [0xE674].pack('U').freeze,
|
395
|
+
:high_speed_train => [0xE65D].pack('U').freeze,
|
396
|
+
:high_speed_train_with_bullet_nose => [0xE65D].pack('U').freeze,
|
397
|
+
:high_voltage_sign => [0xE642].pack('U').freeze,
|
398
|
+
:hocho => "[\345\214\205\344\270\201]",
|
399
|
+
:honey_pot => "[\343\203\217\343\203\201\343\203\237\343\203\204]",
|
400
|
+
:honeybee => "[\343\203\237\343\203\204\343\203\220\343\203\201]",
|
401
|
+
:horizontal_traffic_light => [0xE66D].pack('U').freeze,
|
402
|
+
:horse => [0xE754].pack('U').freeze,
|
403
|
+
:horse_face => [0xE754].pack('U').freeze,
|
404
|
+
:hospital => [0xE666].pack('U').freeze,
|
405
|
+
:hot_beverage => [0xE670].pack('U').freeze,
|
406
|
+
:hot_springs => [0xE6F7].pack('U').freeze,
|
407
|
+
:hotel => [0xE669].pack('U').freeze,
|
408
|
+
:hourglass => [0xE71C].pack('U').freeze,
|
409
|
+
:hourglass_with_flowing_sand => [0xE71C].pack('U').freeze,
|
410
|
+
:house_building => [0xE663].pack('U').freeze,
|
411
|
+
:house_with_garden => [0xE663].pack('U').freeze,
|
412
|
+
:hug_face => "\357\274\274(^-^)\357\274\217",
|
413
|
+
:hundred_points_symbol => "[100\347\202\271]",
|
414
|
+
:ice_cream => "[\343\202\242\343\202\244\343\202\271\343\202\257\343\203\252\343\203\274\343\203\240]",
|
415
|
+
:imp => "[\343\202\242\343\202\257\343\203\236]",
|
416
|
+
:inbox_tray => "[\345\217\227\344\277\241BOX]",
|
417
|
+
:incoming_envelope => [0xE6CF].pack('U').freeze,
|
418
|
+
:information_desk_person => "[\346\241\210\345\206\205]",
|
419
|
+
:information_source => "[\357\275\211]",
|
420
|
+
:injured_face => "[\346\200\252\346\210\221\343\202\222\343\201\227\343\201\237\351\241\224]",
|
421
|
+
:input_symbol_for_latin_capital_letters => "[ABCD]",
|
422
|
+
:input_symbol_for_latin_letters => "[ABC]",
|
423
|
+
:input_symbol_for_latin_small_letters => "[abcd]",
|
424
|
+
:input_symbol_for_numbers => "[1234]",
|
425
|
+
:input_symbol_for_symbols => "[\350\250\230\345\217\267]",
|
426
|
+
:izakaya_lantern => [0xE74B].pack('U').freeze,
|
427
|
+
:jack_o_lantern => "[\343\203\217\343\203\255\343\202\246\343\202\243\343\203\263]",
|
428
|
+
:japanese_castle => "[\345\237\216]",
|
429
|
+
:japanese_dolls => "[\343\201\262\343\201\252\347\245\255\343\202\212]",
|
430
|
+
:japanese_goblin => "[\345\244\251\347\213\227]",
|
431
|
+
:japanese_ogre => "[\343\201\252\343\201\276\343\201\257\343\201\222]",
|
432
|
+
:japanese_post_office => [0xE665].pack('U').freeze,
|
433
|
+
:japanese_symbol_for_beginner => "[\350\213\245\350\221\211\343\203\236\343\203\274\343\202\257]",
|
434
|
+
:jeans => [0xE711].pack('U').freeze,
|
435
|
+
:key => [0xE6D9].pack('U').freeze,
|
436
|
+
:keycap_0 => [0xE6EB].pack('U').freeze,
|
437
|
+
:keycap_1 => [0xE6E2].pack('U').freeze,
|
438
|
+
:keycap_2 => [0xE6E3].pack('U').freeze,
|
439
|
+
:keycap_3 => [0xE6E4].pack('U').freeze,
|
440
|
+
:keycap_4 => [0xE6E5].pack('U').freeze,
|
441
|
+
:keycap_5 => [0xE6E6].pack('U').freeze,
|
442
|
+
:keycap_6 => [0xE6E7].pack('U').freeze,
|
443
|
+
:keycap_7 => [0xE6E8].pack('U').freeze,
|
444
|
+
:keycap_8 => [0xE6E9].pack('U').freeze,
|
445
|
+
:keycap_9 => [0xE6EA].pack('U').freeze,
|
446
|
+
:keycap_ten => "[10]",
|
447
|
+
:kimono => "[\347\235\200\347\211\251]",
|
448
|
+
:kiss => [0xE6F9].pack('U').freeze,
|
449
|
+
:kiss_mark => [0xE6F9].pack('U').freeze,
|
450
|
+
:koala => "[\343\202\263\343\202\242\343\203\251]",
|
451
|
+
:lady_beetle => "[\343\201\246\343\202\223\343\201\250\343\201\206\350\231\253]",
|
452
|
+
:large_blue_circle => [0xE69C].pack('U').freeze,
|
453
|
+
:large_blue_diamond => "\342\227\206",
|
454
|
+
:large_orange_diamond => "\342\227\206",
|
455
|
+
:large_red_circle => [0xE69C].pack('U').freeze,
|
456
|
+
:leaf_fluttering_in_wind => "[\351\242\250\343\201\253\350\210\236\343\201\206\350\221\211]",
|
457
|
+
:ledger => [0xE683].pack('U').freeze,
|
458
|
+
:left_pointing_magnifying_glass => [0xE6DC].pack('U').freeze,
|
459
|
+
:left_right_arrow => [0xE73C].pack('U').freeze,
|
460
|
+
:leftwards_arrow_with_hook => [0xE6DA].pack('U').freeze,
|
461
|
+
:leftwards_black_arrow => "[\342\206\220]",
|
462
|
+
:leo => [0xE64A].pack('U').freeze,
|
463
|
+
:libra => [0xE64C].pack('U').freeze,
|
464
|
+
:link_symbol => "[\343\203\252\343\203\263\343\202\257]",
|
465
|
+
:lipstick => [0xE710].pack('U').freeze,
|
466
|
+
:lock => [0xE6D9].pack('U').freeze,
|
467
|
+
:lock_with_ink_pen => [0xE6D9].pack('U').freeze,
|
468
|
+
:lollipop => "[\343\202\255\343\203\243\343\203\263\343\203\207\343\202\243]",
|
469
|
+
:loudly_crying_face => [0xE72D].pack('U').freeze,
|
470
|
+
:love_hotel => [0xE669,0xE6EF].pack('U').freeze,
|
471
|
+
:love_letter => [0xE717].pack('U').freeze,
|
472
|
+
:mahjong_tile_red_dragon => "[\351\272\273\351\233\200]",
|
473
|
+
:man => [0xE6F0].pack('U').freeze,
|
474
|
+
:man_and_woman_holding_hands => "[\343\202\253\343\203\203\343\203\227\343\203\253]",
|
475
|
+
:man_with_gua_pi_mao => "[\344\270\255\345\233\275\344\272\272]",
|
476
|
+
:man_with_turban => "[\343\202\244\343\203\263\343\203\211\344\272\272]",
|
477
|
+
:mans_shoe => [0xE699].pack('U').freeze,
|
478
|
+
:maple_leaf => [0xE747].pack('U').freeze,
|
479
|
+
:meat_on_bone => "[\350\202\211]",
|
480
|
+
:medium_black_circle => [0xE69C].pack('U').freeze,
|
481
|
+
:medium_white_circle => [0xE69C].pack('U').freeze,
|
482
|
+
:melon => "[\343\203\241\343\203\255\343\203\263]",
|
483
|
+
:memo => [0xE689].pack('U').freeze,
|
484
|
+
:mens_symbol => "[\342\231\202]",
|
485
|
+
:metro => [0xE65C].pack('U').freeze,
|
486
|
+
:microphone => [0xE676].pack('U').freeze,
|
487
|
+
:milky_way => [0xE6B3].pack('U').freeze,
|
488
|
+
:minidisc => "[MD]",
|
489
|
+
:mobile_phone => [0xE688].pack('U').freeze,
|
490
|
+
:mobile_phone_off => "[\343\202\261\343\203\274\343\202\277\343\202\244OFF]",
|
491
|
+
:mobile_phone_with_rightwards_arrow_at_left => [0xE6CE].pack('U').freeze,
|
492
|
+
:money_bag => [0xE715].pack('U').freeze,
|
493
|
+
:money_with_wings => "[\351\243\233\343\202\223\343\201\247\343\201\204\343\201\217\343\201\212\351\207\221]",
|
494
|
+
:monkey => "[\343\202\265\343\203\253]",
|
495
|
+
:monkey_face => "[\343\202\265\343\203\253]",
|
496
|
+
:moon_viewing_ceremony => "[\343\201\212\346\234\210\350\246\213]",
|
497
|
+
:mount_fuji => [0xE740].pack('U').freeze,
|
498
|
+
:mouse_face => "[\343\203\215\343\202\272\343\203\237]",
|
499
|
+
:mouth => [0xE6F9].pack('U').freeze,
|
500
|
+
:movie_camera => [0xE677].pack('U').freeze,
|
501
|
+
:moyai => "[\343\203\242\343\202\242\343\202\244]",
|
502
|
+
:multiple_musical_notes => [0xE6FF].pack('U').freeze,
|
503
|
+
:mushroom => "[\343\202\255\343\203\216\343\202\263]",
|
504
|
+
:musical_keyboard => "[\343\203\224\343\202\242\343\203\216]",
|
505
|
+
:musical_note => [0xE6F6].pack('U').freeze,
|
506
|
+
:musical_score => [0xE6FF].pack('U').freeze,
|
507
|
+
:nail_polish => "[\343\203\236\343\203\213\343\202\255\343\203\245\343\202\242]",
|
508
|
+
:name_badge => "[\345\220\215\346\234\255]",
|
509
|
+
:necktie => "[\343\203\215\343\202\257\343\202\277\343\202\244]",
|
510
|
+
:negative_squared_ab => "[AB]",
|
511
|
+
:negative_squared_cross_mark => "[\303\227]",
|
512
|
+
:negative_squared_latin_capital_letter_a => "[A]",
|
513
|
+
:negative_squared_latin_capital_letter_b => "[B]",
|
514
|
+
:negative_squared_latin_capital_letter_o => "[O]",
|
515
|
+
:negative_squared_latin_capital_letter_p => [0xE66C].pack('U').freeze,
|
516
|
+
:nervous_face => "[\345\277\203\351\205\215\343\201\227\343\201\237\351\241\224]",
|
517
|
+
:new_moon_symbol => [0xE69C].pack('U').freeze,
|
518
|
+
:newspaper => "[\346\226\260\350\201\236]",
|
519
|
+
:night_with_stars => [0xE6B3].pack('U').freeze,
|
520
|
+
:no_entry => [0xE72F].pack('U').freeze,
|
521
|
+
:no_entry_sign => [0xE738].pack('U').freeze,
|
522
|
+
:no_one_under_eighteen_symbol => "[18\347\246\201]",
|
523
|
+
:no_smoking_symbol => [0xE680].pack('U').freeze,
|
524
|
+
:north_east_arrow => [0xE678].pack('U').freeze,
|
525
|
+
:north_west_arrow => [0xE697].pack('U').freeze,
|
526
|
+
:nose => "[\351\274\273]",
|
527
|
+
:notebook => [0xE683].pack('U').freeze,
|
528
|
+
:notebook_with_decorative_cover => [0xE683].pack('U').freeze,
|
529
|
+
:nut_and_bolt => "[\343\203\215\343\202\270]",
|
530
|
+
:octopus => "[\343\202\277\343\202\263]",
|
531
|
+
:oden => "[\343\201\212\343\201\247\343\202\223]",
|
532
|
+
:office_building => [0xE664].pack('U').freeze,
|
533
|
+
:ok_hand_sign => [0xE70B].pack('U').freeze,
|
534
|
+
:older_man => "[\343\201\212\343\201\230\343\201\204\343\201\225\343\202\223]",
|
535
|
+
:older_woman => "[\343\201\212\343\201\260\343\201\202\343\201\225\343\202\223]",
|
536
|
+
:on_with_exclamation_mark_with_left_right_arrow_above => [0xE6B8].pack('U').freeze,
|
537
|
+
:oncoming_bus => [0xE660].pack('U').freeze,
|
538
|
+
:open_book => [0xE683].pack('U').freeze,
|
539
|
+
:open_file_folder => "[\343\203\225\343\202\251\343\203\253\343\203\200]",
|
540
|
+
:open_hands_sign => [0xE695].pack('U').freeze,
|
541
|
+
:open_lock => [0xE6D9].pack('U').freeze,
|
542
|
+
:ophiuchus => "[\350\233\207\344\275\277\345\272\247]",
|
543
|
+
:optical_disc => [0xE68C].pack('U').freeze,
|
544
|
+
:orange_book => [0xE683].pack('U').freeze,
|
545
|
+
:outbox_tray => "[\351\200\201\344\277\241BOX]",
|
546
|
+
:package => [0xE685].pack('U').freeze,
|
547
|
+
:page_facing_up => [0xE689].pack('U').freeze,
|
548
|
+
:page_with_curl => [0xE689].pack('U').freeze,
|
549
|
+
:pager => [0xE65A].pack('U').freeze,
|
550
|
+
:palm_tree => "[\343\203\244\343\202\267]",
|
551
|
+
:panda_face => "[\343\203\221\343\203\263\343\203\200]",
|
552
|
+
:paperclip => [0xE730].pack('U').freeze,
|
553
|
+
:part_alternation_mark => "[\346\255\214\350\250\230\345\217\267]",
|
554
|
+
:party_popper => "[\343\202\257\343\203\251\343\203\203\343\202\253\343\203\274]",
|
555
|
+
:paw_prints => [0xE698].pack('U').freeze,
|
556
|
+
:peach => "[\343\203\242\343\203\242]",
|
557
|
+
:pedestrian => [0xE733].pack('U').freeze,
|
558
|
+
:pencil => [0xE719].pack('U').freeze,
|
559
|
+
:penguin => [0xE750].pack('U').freeze,
|
560
|
+
:pensive_face => [0xE720].pack('U').freeze,
|
561
|
+
:performing_arts => "[\346\274\224\345\212\207]",
|
562
|
+
:persevering_face => [0xE72B].pack('U').freeze,
|
563
|
+
:person_bowing_deeply => "m(_ _)m",
|
564
|
+
:person_frowning => [0xE6F3].pack('U').freeze,
|
565
|
+
:person_raising_both_hands_in_celebration => "\357\274\274(^o^)\357\274\217",
|
566
|
+
:person_raising_one_hand => "(^-^)/",
|
567
|
+
:person_with_folded_hands => "(>\344\272\272<)",
|
568
|
+
:person_with_pouting_face => [0xE6F1].pack('U').freeze,
|
569
|
+
:personal_computer => [0xE716].pack('U').freeze,
|
570
|
+
:pig_face => [0xE755].pack('U').freeze,
|
571
|
+
:pig_nose => [0xE755].pack('U').freeze,
|
572
|
+
:pile_of_poo => "[\343\202\246\343\203\263\343\203\201]",
|
573
|
+
:pill => "[\350\226\254]",
|
574
|
+
:pine_decoration => "[\351\226\200\346\235\276]",
|
575
|
+
:pineapple => "[\343\203\221\343\202\244\343\203\212\343\203\203\343\203\227\343\203\253]",
|
576
|
+
:pisces => [0xE651].pack('U').freeze,
|
577
|
+
:pistol => "[\343\203\224\343\202\271\343\203\210\343\203\253]",
|
578
|
+
:playing_card_black_joker => "[\343\202\270\343\203\247\343\203\274\343\202\253\343\203\274]",
|
579
|
+
:police_car => "[\343\203\221\343\203\210\343\202\253\343\203\274]",
|
580
|
+
:police_cars_revolving_light => "[\343\203\221\343\203\210\343\202\253\343\203\274]",
|
581
|
+
:police_officer => "[\350\255\246\345\256\230]",
|
582
|
+
:poodle => [0xE6A1].pack('U').freeze,
|
583
|
+
:postbox => [0xE665].pack('U').freeze,
|
584
|
+
:pot_of_food => "[\351\215\213]",
|
585
|
+
:pouch => [0xE6AD].pack('U').freeze,
|
586
|
+
:poultry_leg => "[\343\203\201\343\202\255\343\203\263]",
|
587
|
+
:pouting_cat_face => [0xE724].pack('U').freeze,
|
588
|
+
:pouting_face => [0xE724].pack('U').freeze,
|
589
|
+
:princess => "[\343\201\212\345\247\253\346\247\230]",
|
590
|
+
:public_address_loudspeaker => "[\343\202\271\343\203\224\343\203\274\343\202\253]",
|
591
|
+
:purple_heart => [0xE6EC].pack('U').freeze,
|
592
|
+
:purse => [0xE70F].pack('U').freeze,
|
593
|
+
:pushpin => "[\347\224\273\343\201\263\343\202\207\343\201\206]",
|
594
|
+
:rabbit_face => "[\343\202\246\343\202\265\343\202\256]",
|
595
|
+
:radio => "[\343\203\251\343\202\270\343\202\252]",
|
596
|
+
:radio_button => "[\343\203\251\343\202\270\343\202\252\343\203\234\343\202\277\343\203\263]",
|
597
|
+
:rainbow => "[\350\231\271]",
|
598
|
+
:raised_fist => [0xE693].pack('U').freeze,
|
599
|
+
:raised_hand => [0xE695].pack('U').freeze,
|
600
|
+
:recreational_vehicle => [0xE65F].pack('U').freeze,
|
601
|
+
:red_apple => [0xE745].pack('U').freeze,
|
602
|
+
:regional_indicator_symbol_letter_a => "[A]",
|
603
|
+
:regional_indicator_symbol_letter_b => "[B]",
|
604
|
+
:regional_indicator_symbol_letter_c => "[C]",
|
605
|
+
:regional_indicator_symbol_letter_d => "[D]",
|
606
|
+
:regional_indicator_symbol_letter_e => "[E]",
|
607
|
+
:regional_indicator_symbol_letter_f => "[F]",
|
608
|
+
:regional_indicator_symbol_letter_g => "[G]",
|
609
|
+
:regional_indicator_symbol_letter_h => "[H]",
|
610
|
+
:regional_indicator_symbol_letter_i => "[I]",
|
611
|
+
:regional_indicator_symbol_letter_j => "[J]",
|
612
|
+
:regional_indicator_symbol_letter_k => "[K]",
|
613
|
+
:regional_indicator_symbol_letter_l => "[L]",
|
614
|
+
:regional_indicator_symbol_letter_m => "[M]",
|
615
|
+
:regional_indicator_symbol_letter_n => "[N]",
|
616
|
+
:regional_indicator_symbol_letter_o => "[O]",
|
617
|
+
:regional_indicator_symbol_letter_p => "[P]",
|
618
|
+
:regional_indicator_symbol_letter_q => "[Q]",
|
619
|
+
:regional_indicator_symbol_letter_r => "[R]",
|
620
|
+
:regional_indicator_symbol_letter_s => "[S]",
|
621
|
+
:regional_indicator_symbol_letter_t => "[T]",
|
622
|
+
:regional_indicator_symbol_letter_u => "[U]",
|
623
|
+
:regional_indicator_symbol_letter_v => "[V]",
|
624
|
+
:regional_indicator_symbol_letter_w => "[W]",
|
625
|
+
:regional_indicator_symbol_letter_x => "[X]",
|
626
|
+
:regional_indicator_symbol_letter_y => "[Y]",
|
627
|
+
:regional_indicator_symbol_letter_z => "[Z]",
|
628
|
+
:regional_indicator_symbol_letters_cn => "[\344\270\255\345\233\275]",
|
629
|
+
:regional_indicator_symbol_letters_de => "[\343\203\211\343\202\244\343\203\204]",
|
630
|
+
:regional_indicator_symbol_letters_es => "[\343\202\271\343\203\232\343\202\244\343\203\263]",
|
631
|
+
:regional_indicator_symbol_letters_fr => "[\343\203\225\343\203\251\343\203\263\343\202\271]",
|
632
|
+
:regional_indicator_symbol_letters_gb => "[\343\202\244\343\202\256\343\203\252\343\202\271]",
|
633
|
+
:regional_indicator_symbol_letters_it => "[\343\202\244\343\202\277\343\203\252\343\202\242]",
|
634
|
+
:regional_indicator_symbol_letters_jp => "[\346\227\245\343\201\256\344\270\270]",
|
635
|
+
:regional_indicator_symbol_letters_kr => "[\351\237\223\345\233\275]",
|
636
|
+
:regional_indicator_symbol_letters_ru => "[\343\203\255\343\202\267\343\202\242]",
|
637
|
+
:regional_indicator_symbol_letters_us => "[USA]",
|
638
|
+
:registered_sign => [0xE736].pack('U').freeze,
|
639
|
+
:relieved_face => [0xE721].pack('U').freeze,
|
640
|
+
:restroom => [0xE66E].pack('U').freeze,
|
641
|
+
:revolving_hearts => [0xE6ED].pack('U').freeze,
|
642
|
+
:ribbon => [0xE684].pack('U').freeze,
|
643
|
+
:rice_ball => [0xE749].pack('U').freeze,
|
644
|
+
:rice_cracker => "[\343\201\233\343\202\223\343\201\271\343\201\204]",
|
645
|
+
:right_pointing_magnifying_glass => [0xE6DC].pack('U').freeze,
|
646
|
+
:rightwards_arrow_with_hook => "\342\224\224\342\206\222",
|
647
|
+
:ring => [0xE71B].pack('U').freeze,
|
648
|
+
:roasted_sweet_potato => "[\343\202\204\343\201\215\343\201\204\343\202\202]",
|
649
|
+
:robot => "[\343\203\255\343\203\234\343\203\203\343\203\210]",
|
650
|
+
:rock_on => "[\343\203\255\343\203\203\343\202\257\343\202\252\343\203\263]",
|
651
|
+
:rocket => "[\343\203\255\343\202\261\343\203\203\343\203\210]",
|
652
|
+
:roller_coaster => "[\343\202\270\343\202\247\343\203\203\343\203\210\343\202\263\343\203\274\343\202\271\343\202\277\343\203\274]",
|
653
|
+
:rose => "[\343\203\220\343\203\251]",
|
654
|
+
:round_pushpin => "[\347\224\273\343\201\263\343\202\207\343\201\206]",
|
655
|
+
:runner => [0xE733].pack('U').freeze,
|
656
|
+
:running_shirt_with_sash => [0xE652].pack('U').freeze,
|
657
|
+
:sagittarius => [0xE64E].pack('U').freeze,
|
658
|
+
:sailboat => [0xE6A3].pack('U').freeze,
|
659
|
+
:sake_bottle_and_cup => [0xE74B].pack('U').freeze,
|
660
|
+
:satellite_antenna => "[\343\202\242\343\203\263\343\203\206\343\203\212]",
|
661
|
+
:saxophone => "[\343\202\265\343\203\203\343\202\257\343\202\271]",
|
662
|
+
:school => [0xE73E].pack('U').freeze,
|
663
|
+
:school_satchel => "[\343\203\251\343\203\263\343\203\211\343\202\273\343\203\253]",
|
664
|
+
:scorpius => [0xE64D].pack('U').freeze,
|
665
|
+
:scroll => [0xE70A].pack('U').freeze,
|
666
|
+
:seat => [0xE6B2].pack('U').freeze,
|
667
|
+
:see_no_evil_monkey => "(/_\357\274\274)",
|
668
|
+
:seedling => [0xE746].pack('U').freeze,
|
669
|
+
:shaved_ice => "[\343\202\253\343\202\255\346\260\267]",
|
670
|
+
:sheep => "[\343\203\222\343\203\204\343\202\270]",
|
671
|
+
:ship => [0xE661].pack('U').freeze,
|
672
|
+
:shooting_star => "\342\230\206\345\275\241",
|
673
|
+
:shortcake => [0xE74A].pack('U').freeze,
|
674
|
+
:silhouette_of_japan => "[\346\227\245\346\234\254\345\234\260\345\233\263]",
|
675
|
+
:six_pointed_star_with_middle_dot => "[\345\215\240\343\201\204]",
|
676
|
+
:ski_and_ski_boot => [0xE657].pack('U').freeze,
|
677
|
+
:skull => "[\343\203\211\343\202\257\343\203\255]",
|
678
|
+
:sleeping_symbol => [0xE701].pack('U').freeze,
|
679
|
+
:sleepy_face => [0xE701].pack('U').freeze,
|
680
|
+
:slice_of_pizza => "[\343\203\224\343\202\266]",
|
681
|
+
:slot_machine => "[777]",
|
682
|
+
:small_blue_diamond => "\342\227\206",
|
683
|
+
:small_orange_diamond => "\342\227\206",
|
684
|
+
:smirking_face => [0xE72C].pack('U').freeze,
|
685
|
+
:smoking_symbol => [0xE67F].pack('U').freeze,
|
686
|
+
:snail => [0xE74E].pack('U').freeze,
|
687
|
+
:snake => "[\343\203\230\343\203\223]",
|
688
|
+
:snowboarder => [0xE712].pack('U').freeze,
|
689
|
+
:snowflake => "[\351\233\252\347\265\220\346\231\266]",
|
690
|
+
:snowman_without_snow => [0xE641].pack('U').freeze,
|
691
|
+
:soccer_ball => [0xE656].pack('U').freeze,
|
692
|
+
:soft_ice_cream => "[\343\202\275\343\203\225\343\203\210\343\202\257\343\203\252\343\203\274\343\203\240]",
|
693
|
+
:soon_with_rightwards_arrow_above => [0xE6B7].pack('U').freeze,
|
694
|
+
:south_east_arrow => [0xE696].pack('U').freeze,
|
695
|
+
:south_west_arrow => [0xE6A5].pack('U').freeze,
|
696
|
+
:spaghetti => "[\343\203\221\343\202\271\343\202\277]",
|
697
|
+
:sparkle => [0xE6FA].pack('U').freeze,
|
698
|
+
:sparkles => [0xE6FA].pack('U').freeze,
|
699
|
+
:sparkling_heart => [0xE6EC].pack('U').freeze,
|
700
|
+
:speak_no_evil_monkey => "(\343\203\273\303\227\343\203\273)",
|
701
|
+
:speaker_with_three_sound_waves => "[\343\202\271\343\203\224\343\203\274\343\202\253]",
|
702
|
+
:speech_balloon => "[\343\203\225\343\202\255\343\203\200\343\202\267]",
|
703
|
+
:speedboat => [0xE6A3].pack('U').freeze,
|
704
|
+
:spiral_shell => "[\345\267\273\350\262\235]",
|
705
|
+
:splashing_sweat_symbol => [0xE706].pack('U').freeze,
|
706
|
+
:spouting_whale => "[\343\202\257\343\202\270\343\203\251]",
|
707
|
+
:squared_cjk_unified_ideograph_5272 => "[\345\211\262]",
|
708
|
+
:squared_cjk_unified_ideograph_5408 => [0xE73A].pack('U').freeze,
|
709
|
+
:squared_cjk_unified_ideograph_55b6 => "[\345\226\266]",
|
710
|
+
:squared_cjk_unified_ideograph_6307 => "[\346\214\207]",
|
711
|
+
:squared_cjk_unified_ideograph_6708 => "[\346\234\210]",
|
712
|
+
:squared_cjk_unified_ideograph_6709 => "[\346\234\211]",
|
713
|
+
:squared_cjk_unified_ideograph_6e80 => [0xE73B].pack('U').freeze,
|
714
|
+
:squared_cjk_unified_ideograph_7121 => "[\347\204\241]",
|
715
|
+
:squared_cjk_unified_ideograph_7533 => "[\347\224\263]",
|
716
|
+
:squared_cjk_unified_ideograph_7981 => [0xE738].pack('U').freeze,
|
717
|
+
:squared_cjk_unified_ideograph_7a7a => [0xE739].pack('U').freeze,
|
718
|
+
:squared_cl => [0xE6DB].pack('U').freeze,
|
719
|
+
:squared_cool => "[COOL]",
|
720
|
+
:squared_free => [0xE6D7].pack('U').freeze,
|
721
|
+
:squared_id => [0xE6D8].pack('U').freeze,
|
722
|
+
:squared_katakana_koko => "[\343\202\263\343\202\263]",
|
723
|
+
:squared_katakana_sa => "[\343\202\265\343\203\274\343\203\223\343\202\271]",
|
724
|
+
:squared_new => [0xE6DD].pack('U').freeze,
|
725
|
+
:squared_ng => [0xE72F].pack('U').freeze,
|
726
|
+
:squared_ok => [0xE70B].pack('U').freeze,
|
727
|
+
:squared_sos => "[SOS]",
|
728
|
+
:squared_up_with_exclamation_mark => "[UP!]",
|
729
|
+
:squared_vs => "[VS]",
|
730
|
+
:station => "[\351\247\205]",
|
731
|
+
:statue_of_liberty => "[\350\207\252\347\224\261\343\201\256\345\245\263\347\245\236]",
|
732
|
+
:steaming_bowl => [0xE74C].pack('U').freeze,
|
733
|
+
:straight_ruler => "[\345\256\232\350\246\217]",
|
734
|
+
:strawberry => "[\343\202\244\343\203\201\343\202\264]",
|
735
|
+
:sun_behind_cloud => [0xE63E,0xE63F].pack('U').freeze,
|
736
|
+
:sunflower => "[\343\201\262\343\201\276\343\202\217\343\202\212]",
|
737
|
+
:sunrise => [0xE63E].pack('U').freeze,
|
738
|
+
:sunrise_over_mountains => [0xE63E].pack('U').freeze,
|
739
|
+
:sunset_over_buildings => [0xE63E].pack('U').freeze,
|
740
|
+
:surfer => [0xE712].pack('U').freeze,
|
741
|
+
:sushi => "[\343\201\231\343\201\227]",
|
742
|
+
:swimmer => "[\346\260\264\346\263\263]",
|
743
|
+
:sympathetic_face => "[\345\220\214\346\203\205\343\201\227\343\201\237\351\241\224]",
|
744
|
+
:syringe => "[\346\263\250\345\260\204]",
|
745
|
+
:t_shirt => [0xE70E].pack('U').freeze,
|
746
|
+
:tanabata_tree => "[\344\270\203\345\244\225]",
|
747
|
+
:tangerine => "[\343\201\277\343\201\213\343\202\223]",
|
748
|
+
:taurus => [0xE647].pack('U').freeze,
|
749
|
+
:taxi => [0xE65E].pack('U').freeze,
|
750
|
+
:teacup_without_handle => [0xE71E].pack('U').freeze,
|
751
|
+
:tear_off_calendar => "[\343\202\253\343\203\254\343\203\263\343\203\200\343\203\274]",
|
752
|
+
:telephone_receiver => [0xE687].pack('U').freeze,
|
753
|
+
:television => [0xE68A].pack('U').freeze,
|
754
|
+
:tennis_racquet_and_ball => [0xE655].pack('U').freeze,
|
755
|
+
:tent => "[\343\202\255\343\203\243\343\203\263\343\203\227]",
|
756
|
+
:thin_face => "[\347\264\260\343\201\204\351\241\224]",
|
757
|
+
:thinking => "[\350\200\203\343\201\210\344\270\255]",
|
758
|
+
:thumbs_down_sign => [0xE700].pack('U').freeze,
|
759
|
+
:thumbs_up_sign => [0xE727].pack('U').freeze,
|
760
|
+
:ticket => [0xE67E].pack('U').freeze,
|
761
|
+
:tiger_face => "[\343\203\210\343\203\251]",
|
762
|
+
:tired_face => [0xE72B].pack('U').freeze,
|
763
|
+
:toilet => [0xE66E].pack('U').freeze,
|
764
|
+
:tokyo_tower => "[\346\235\261\344\272\254\343\202\277\343\203\257\343\203\274]",
|
765
|
+
:tomato => "[\343\203\210\343\203\236\343\203\210]",
|
766
|
+
:tongue => [0xE728].pack('U').freeze,
|
767
|
+
:top_hat => [0xE67C].pack('U').freeze,
|
768
|
+
:top_with_upwards_arrow_above => "[TOP]",
|
769
|
+
:trade_mark_sign => [0xE732].pack('U').freeze,
|
770
|
+
:train => [0xE65B].pack('U').freeze,
|
771
|
+
:triangular_flag_on_post => [0xE6DE].pack('U').freeze,
|
772
|
+
:triangular_ruler => "[\344\270\211\350\247\222\345\256\232\350\246\217]",
|
773
|
+
:trident_emblem => [0xE71A].pack('U').freeze,
|
774
|
+
:trophy => "[\343\203\210\343\203\255\343\203\225\343\202\243\343\203\274]",
|
775
|
+
:tropical_drink => [0xE671].pack('U').freeze,
|
776
|
+
:tropical_fish => [0xE751].pack('U').freeze,
|
777
|
+
:trumpet => "[\343\203\210\343\203\251\343\203\263\343\203\232\343\203\203\343\203\210]",
|
778
|
+
:tulip => [0xE743].pack('U').freeze,
|
779
|
+
:turtle => "[\343\202\253\343\203\241]",
|
780
|
+
:two_hearts => [0xE6EF].pack('U').freeze,
|
781
|
+
:umbrella_with_rain_drops => [0xE640].pack('U').freeze,
|
782
|
+
:up_down_arrow => [0xE73D].pack('U').freeze,
|
783
|
+
:up_pointing_red_triangle => "\342\226\262",
|
784
|
+
:up_pointing_small_red_triangle => "\342\226\262",
|
785
|
+
:upside_down_face => "[\351\200\206\347\253\213\343\201\241]",
|
786
|
+
:upwards_black_arrow => "[\342\206\221]",
|
787
|
+
:vibration_mode => "[\343\203\236\343\203\212\343\203\274\343\203\242\343\203\274\343\203\211]",
|
788
|
+
:victory_hand => [0xE694].pack('U').freeze,
|
789
|
+
:video_camera => [0xE677].pack('U').freeze,
|
790
|
+
:video_game => [0xE68B].pack('U').freeze,
|
791
|
+
:videocassette => "[\343\203\223\343\203\207\343\202\252]",
|
792
|
+
:violin => "[\343\203\220\343\202\244\343\202\252\343\203\252\343\203\263]",
|
793
|
+
:virgo => [0xE64B].pack('U').freeze,
|
794
|
+
:volcano => "[\347\201\253\345\261\261]",
|
795
|
+
:warning_sign => [0xE737].pack('U').freeze,
|
796
|
+
:watch => [0xE71F].pack('U').freeze,
|
797
|
+
:water_closet => [0xE66E].pack('U').freeze,
|
798
|
+
:water_wave => [0xE73F].pack('U').freeze,
|
799
|
+
:watermelon => "[\343\202\271\343\202\244\343\202\253]",
|
800
|
+
:waving_hand_sign => [0xE695].pack('U').freeze,
|
801
|
+
:wavy_dash => [0xE709].pack('U').freeze,
|
802
|
+
:waxing_gibbous_moon_symbol => [0xE69D].pack('U').freeze,
|
803
|
+
:wedding => "[\347\265\220\345\251\232\345\274\217]",
|
804
|
+
:western_person => "[\347\231\275\344\272\272]",
|
805
|
+
:wheelchair_symbol => [0xE69B].pack('U').freeze,
|
806
|
+
:white_down_pointing_backhand_index => "[\342\206\223]",
|
807
|
+
:white_exclamation_mark_ornament => [0xE702].pack('U').freeze,
|
808
|
+
:white_flower => "[\350\212\261\344\270\270]",
|
809
|
+
:white_heavy_check_mark => "[\343\203\201\343\202\247\343\203\203\343\202\257\343\203\236\343\203\274\343\202\257]",
|
810
|
+
:white_large_square => "\342\226\240",
|
811
|
+
:white_left_pointing_backhand_index => "[\342\206\220]",
|
812
|
+
:white_medium_small_square => "\342\226\240",
|
813
|
+
:white_medium_square => "\342\226\240",
|
814
|
+
:white_medium_star => "[\342\230\206]",
|
815
|
+
:white_question_mark_ornament => "[\357\274\237]",
|
816
|
+
:white_right_pointing_backhand_index => "[\342\206\222]",
|
817
|
+
:white_small_square => "\342\226\240",
|
818
|
+
:white_smiling_face => [0xE6F0].pack('U').freeze,
|
819
|
+
:white_square_button => [0xE69C].pack('U').freeze,
|
820
|
+
:white_up_pointing_backhand_index => "[\342\206\221]",
|
821
|
+
:white_up_pointing_index => "[\344\272\272\345\267\256\343\201\227\346\214\207]",
|
822
|
+
:wind_chime => "[\351\242\250\351\210\264]",
|
823
|
+
:wine_glass => [0xE756].pack('U').freeze,
|
824
|
+
:winking_face => [0xE729].pack('U').freeze,
|
825
|
+
:winking_face_with_stuck_out_tongue => [0xE728].pack('U').freeze,
|
826
|
+
:wolf_face => [0xE6A1].pack('U').freeze,
|
827
|
+
:woman => [0xE6F0].pack('U').freeze,
|
828
|
+
:woman_with_bunny_ears => "[\343\203\220\343\203\213\343\203\274]",
|
829
|
+
:womans_boots => "[\343\203\226\343\203\274\343\203\204]",
|
830
|
+
:womans_clothes => [0xE70E].pack('U').freeze,
|
831
|
+
:womans_hat => "[\345\270\275\345\255\220]",
|
832
|
+
:womans_sandal => [0xE674].pack('U').freeze,
|
833
|
+
:womens_symbol => "[\342\231\200]",
|
834
|
+
:wrapped_present => [0xE685].pack('U').freeze,
|
835
|
+
:wrench => [0xE718].pack('U').freeze,
|
836
|
+
:yellow_heart => [0xE6EC].pack('U').freeze,
|
837
|
+
}.freeze
|
838
|
+
end
|
839
|
+
end
|