emoji 0.1
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/COPYING +18 -0
- data/Changelog +5 -0
- data/LICENSE +674 -0
- data/README +787 -0
- data/lib/emoji.rb +3206 -0
- metadata +59 -0
data/lib/emoji.rb
ADDED
@@ -0,0 +1,3206 @@
|
|
1
|
+
class Emoji
|
2
|
+
def self.create type
|
3
|
+
case type
|
4
|
+
when :iphone
|
5
|
+
# The iPhone implements the Softbank Unicode private space
|
6
|
+
Softbank.new
|
7
|
+
when :softbank
|
8
|
+
Softbank.new
|
9
|
+
when :docomo
|
10
|
+
DoCoMo.new
|
11
|
+
when :kddi
|
12
|
+
KDDI.new
|
13
|
+
when :au
|
14
|
+
# Known as "Au by KDDI"
|
15
|
+
KDDI.new
|
16
|
+
when :google
|
17
|
+
Google.new
|
18
|
+
else
|
19
|
+
raise "Not supported."
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def convert_unicode_to_hex(unicode)
|
24
|
+
return [unicode.to_i(16)].pack("U")
|
25
|
+
end
|
26
|
+
|
27
|
+
def warning(character)
|
28
|
+
STDERR.puts "WARNING: Emoji character \"#{character}\" not supported."
|
29
|
+
end
|
30
|
+
|
31
|
+
def get_this_method
|
32
|
+
return caller[0][/`([^']*)'/, 1]
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
class DoCoMo < Emoji
|
37
|
+
def black_sun_with_rays; return convert_unicode_to_hex("E488"); end
|
38
|
+
def cloud; return convert_unicode_to_hex("E48D"); end
|
39
|
+
def umbrella_with_rain_drops; return convert_unicode_to_hex("E48C"); end
|
40
|
+
def snowman_without_snow; return convert_unicode_to_hex("E485"); end
|
41
|
+
def high_voltage_sign; return convert_unicode_to_hex("E487"); end
|
42
|
+
def cyclone; return convert_unicode_to_hex("E469"); end
|
43
|
+
def foggy; return convert_unicode_to_hex("E598"); end
|
44
|
+
def closed_umbrella; return convert_unicode_to_hex("EAE8"); end
|
45
|
+
def night_with_stars; return convert_unicode_to_hex("EAF1"); end
|
46
|
+
def sunrise_over_mountains; return convert_unicode_to_hex("EAF4"); end
|
47
|
+
def sunrise; return convert_unicode_to_hex("EAF4"); end
|
48
|
+
def cityscape_at_dusk; return convert_unicode_to_hex("E5DA"); end
|
49
|
+
def sunset_over_buildings; return convert_unicode_to_hex("E5DA"); end
|
50
|
+
def rainbow; return convert_unicode_to_hex("EAF2"); end
|
51
|
+
def snowflake; return convert_unicode_to_hex("E48A"); end
|
52
|
+
def sun_behind_cloud; return convert_unicode_to_hex("E48E"); end
|
53
|
+
def bridge_at_night; return convert_unicode_to_hex("E4BF"); end
|
54
|
+
|
55
|
+
def new_moon_symbol; return convert_unicode_to_hex("E5A8"); end
|
56
|
+
def waxing_gibbous_moon_symbol; return convert_unicode_to_hex("E5A9"); end
|
57
|
+
def first_quarter_moon_symbol; return convert_unicode_to_hex("E5AA"); end
|
58
|
+
def crescent_moon; return convert_unicode_to_hex("E486"); end
|
59
|
+
def full_moon_symbol; warning(get_this_method); return nil; end
|
60
|
+
def first_quarter_moon_with_face; return convert_unicode_to_hex("E489"); end
|
61
|
+
|
62
|
+
def soon_with_right_arrow_above; warning(get_this_method); return nil; end
|
63
|
+
def on_with_double_pointing_arrow_above; warning(get_this_method); return nil; end
|
64
|
+
def end_with_left_arrow_above; warning(get_this_method); return nil; end
|
65
|
+
def hourglass_with_flowing_sand; return convert_unicode_to_hex("E47C"); end
|
66
|
+
def hourglass; return convert_unicode_to_hex("E57B"); end
|
67
|
+
def watch; return convert_unicode_to_hex("E57A"); end
|
68
|
+
def clock_face_one_oclock; return convert_unicode_to_hex("E594"); end
|
69
|
+
def clock_face_two_oclock; return convert_unicode_to_hex("E594"); end
|
70
|
+
def clock_face_three_oclock; return convert_unicode_to_hex("E594"); end
|
71
|
+
def clock_face_four_oclock; return convert_unicode_to_hex("E594"); end
|
72
|
+
def clock_face_five_oclock; return convert_unicode_to_hex("E594"); end
|
73
|
+
def clock_face_six_oclock; return convert_unicode_to_hex("E594"); end
|
74
|
+
def clock_face_seven_oclock; return convert_unicode_to_hex("E594"); end
|
75
|
+
def clock_face_eight_oclock; return convert_unicode_to_hex("E594"); end
|
76
|
+
def clock_face_nine_oclock; return convert_unicode_to_hex("E594"); end
|
77
|
+
def clock_face_ten_oclock; return convert_unicode_to_hex("E594"); end
|
78
|
+
def clock_face_eleven_oclock; return convert_unicode_to_hex("E594"); end
|
79
|
+
def clock_face_twelve_oclock; return convert_unicode_to_hex("E594"); end
|
80
|
+
|
81
|
+
def alarm_clock; return convert_unicode_to_hex("E594"); end
|
82
|
+
|
83
|
+
def aries; return convert_unicode_to_hex("E48F"); end
|
84
|
+
def taurus; return convert_unicode_to_hex("E490"); end
|
85
|
+
def gemini; return convert_unicode_to_hex("E491"); end
|
86
|
+
def cancer; return convert_unicode_to_hex("E492"); end
|
87
|
+
def leo; return convert_unicode_to_hex("E493"); end
|
88
|
+
def virgo; return convert_unicode_to_hex("E494"); end
|
89
|
+
def libra; return convert_unicode_to_hex("E495"); end
|
90
|
+
def scorpius; return convert_unicode_to_hex("E496"); end
|
91
|
+
def sagittarius; return convert_unicode_to_hex("E497"); end
|
92
|
+
def capricorn; return convert_unicode_to_hex("E498"); end
|
93
|
+
def aquarius; return convert_unicode_to_hex("E499"); end
|
94
|
+
def pisces; return convert_unicode_to_hex("E49A"); end
|
95
|
+
def ophiuchus; return convert_unicode_to_hex("E49B"); end
|
96
|
+
|
97
|
+
def water_wave; return convert_unicode_to_hex("EB7C"); end
|
98
|
+
def earth_globe_asia_australia; return convert_unicode_to_hex("E5B3"); end
|
99
|
+
def volcano; return convert_unicode_to_hex("EB53"); end
|
100
|
+
def milky_way; return convert_unicode_to_hex("EB5F"); end
|
101
|
+
|
102
|
+
def four_leaf_clover; return convert_unicode_to_hex("E513"); end
|
103
|
+
def tulip; return convert_unicode_to_hex("E4E4"); end
|
104
|
+
def seedling; return convert_unicode_to_hex("EB7D"); end
|
105
|
+
def maple_leaf; return convert_unicode_to_hex("E4CE"); end
|
106
|
+
def cherry_blossom; return convert_unicode_to_hex("E4CA"); end
|
107
|
+
def rose; return convert_unicode_to_hex("E5BA"); end
|
108
|
+
def fallen_leaf; return convert_unicode_to_hex("E5CD"); end
|
109
|
+
def leaf_fluttering_in_wind; return convert_unicode_to_hex("E5CD"); end
|
110
|
+
def hibiscus; return convert_unicode_to_hex("EA94"); end
|
111
|
+
def sunflower; return convert_unicode_to_hex("E4E3"); end
|
112
|
+
def palm_tree; return convert_unicode_to_hex("E4E2"); end
|
113
|
+
def cactus; return convert_unicode_to_hex("EA96"); end
|
114
|
+
def ear_of_rice; warning(get_this_method); return nil; end
|
115
|
+
def ear_of_maize; return convert_unicode_to_hex("EB36"); end
|
116
|
+
def mushroom; return convert_unicode_to_hex("EB37"); end
|
117
|
+
def chestnut; return convert_unicode_to_hex("EB38"); end
|
118
|
+
def blossom; return convert_unicode_to_hex("EB49"); end
|
119
|
+
def herb; return convert_unicode_to_hex("EB82"); end
|
120
|
+
|
121
|
+
def cherries; return convert_unicode_to_hex("E4D2"); end
|
122
|
+
def banana; return convert_unicode_to_hex("EB35"); end
|
123
|
+
def apple_1; return convert_unicode_to_hex("EAB9"); end
|
124
|
+
def tangerine; return convert_unicode_to_hex("EABA"); end
|
125
|
+
def strawberry; return convert_unicode_to_hex("E4D4"); end
|
126
|
+
def watermelon; return convert_unicode_to_hex("E4CD"); end
|
127
|
+
def tomato; return convert_unicode_to_hex("EABB"); end
|
128
|
+
def aubergine; return convert_unicode_to_hex("EABC"); end
|
129
|
+
def melon; return convert_unicode_to_hex("EB32"); end
|
130
|
+
def pineapple; return convert_unicode_to_hex("EB33"); end
|
131
|
+
def grapes; return convert_unicode_to_hex("EB34"); end
|
132
|
+
def peach; return convert_unicode_to_hex("EB39"); end
|
133
|
+
def apple_2; return convert_unicode_to_hex("EB5A"); end
|
134
|
+
|
135
|
+
|
136
|
+
def eyes; return convert_unicode_to_hex("E5A4"); end
|
137
|
+
def ear; return convert_unicode_to_hex("E5A5"); end
|
138
|
+
def nose; return convert_unicode_to_hex("EAD0"); end
|
139
|
+
def mouth; return convert_unicode_to_hex("EAD1"); end
|
140
|
+
def tongue; return convert_unicode_to_hex("EB47"); end
|
141
|
+
|
142
|
+
def lipstick; return convert_unicode_to_hex("E509"); end
|
143
|
+
def nail_care; return convert_unicode_to_hex("EAA0"); end
|
144
|
+
def face_massage; return convert_unicode_to_hex("E50B"); end
|
145
|
+
def haircut; return convert_unicode_to_hex("EAA1"); end
|
146
|
+
def barber_pole; return convert_unicode_to_hex("EAA2"); end
|
147
|
+
|
148
|
+
def bust_in_silhouette; warning(get_this_method); return nil; end
|
149
|
+
|
150
|
+
def boys_head; return convert_unicode_to_hex("E4FC"); end
|
151
|
+
def girls_head; return convert_unicode_to_hex("E4FA"); end
|
152
|
+
def mans_head; return convert_unicode_to_hex("E4FC"); end
|
153
|
+
def womans_head; return convert_unicode_to_hex("E4FA"); end
|
154
|
+
def family; return convert_unicode_to_hex("E501"); end
|
155
|
+
def couple; warning(get_this_method); return nil; end
|
156
|
+
def police_officer; return convert_unicode_to_hex("E5DD"); end
|
157
|
+
def woman_with_bunny_ears; return convert_unicode_to_hex("EADB"); end
|
158
|
+
def bride_with_veil; return convert_unicode_to_hex("EAE9"); end
|
159
|
+
def western_person; return convert_unicode_to_hex("EB13"); end
|
160
|
+
def man_with_gua_pi_mao; return convert_unicode_to_hex("EB14"); end
|
161
|
+
def man_with_turban; return convert_unicode_to_hex("EB15"); end
|
162
|
+
def older_man; return convert_unicode_to_hex("EB16"); end
|
163
|
+
def older_woman; return convert_unicode_to_hex("EB17"); end
|
164
|
+
def baby; return convert_unicode_to_hex("EB18"); end
|
165
|
+
def construction_worker; return convert_unicode_to_hex("EB19"); end
|
166
|
+
|
167
|
+
def princess; return convert_unicode_to_hex("EB1A"); end
|
168
|
+
def ogre; return convert_unicode_to_hex("EB44"); end
|
169
|
+
def goblin; return convert_unicode_to_hex("EB45"); end
|
170
|
+
def ghost; return convert_unicode_to_hex("E4CB"); end
|
171
|
+
def cherub; return convert_unicode_to_hex("E5BF"); end
|
172
|
+
def extraterrestrial_alien; return convert_unicode_to_hex("E50E"); end
|
173
|
+
def alien_monster; return convert_unicode_to_hex("E4EC"); end
|
174
|
+
def imp; return convert_unicode_to_hex("E4EF"); end
|
175
|
+
def skull; return convert_unicode_to_hex("E4F8"); end
|
176
|
+
|
177
|
+
def information_desk_person; warning(get_this_method); return nil; end
|
178
|
+
def guardsman; warning(get_this_method); return nil; end
|
179
|
+
def dancer; return convert_unicode_to_hex("EB1C"); end
|
180
|
+
|
181
|
+
def dog_face; return convert_unicode_to_hex("E4E1"); end
|
182
|
+
def cat_face; return convert_unicode_to_hex("E4DB"); end
|
183
|
+
def snail; return convert_unicode_to_hex("EB7E"); end
|
184
|
+
def baby_chick; return convert_unicode_to_hex("E4E0"); end
|
185
|
+
def front_facing_baby_chick; return convert_unicode_to_hex("EB76"); end
|
186
|
+
def hatching_chick; return convert_unicode_to_hex("E5DB"); end
|
187
|
+
def penguin; return convert_unicode_to_hex("E4DC"); end
|
188
|
+
def fish; return convert_unicode_to_hex("E49A"); end
|
189
|
+
def horse_face; return convert_unicode_to_hex("E4D8"); end
|
190
|
+
def pig_face; return convert_unicode_to_hex("E4DE"); end
|
191
|
+
def tiger_face; return convert_unicode_to_hex("E5C0"); end
|
192
|
+
def bear_face; return convert_unicode_to_hex("E5C1"); end
|
193
|
+
def mouse_face; return convert_unicode_to_hex("E5C2"); end
|
194
|
+
def spouting_whale; return convert_unicode_to_hex("E470"); end
|
195
|
+
def monkey_face; return convert_unicode_to_hex("E4D9"); end
|
196
|
+
def octopus; return convert_unicode_to_hex("E5C7"); end
|
197
|
+
def spiral_shell; return convert_unicode_to_hex("EAEC"); end
|
198
|
+
def dolphin; return convert_unicode_to_hex("EB1B"); end
|
199
|
+
def bird; return convert_unicode_to_hex("E4E0"); end
|
200
|
+
def tropical_fish; return convert_unicode_to_hex("EB1D"); end
|
201
|
+
def hamster_face; warning(get_this_method); return nil; end
|
202
|
+
def bug; return convert_unicode_to_hex("EB1E"); end
|
203
|
+
def elephant; return convert_unicode_to_hex("EB1F"); end
|
204
|
+
def koala; return convert_unicode_to_hex("EB20"); end
|
205
|
+
def monkey; return convert_unicode_to_hex("E4D9"); end
|
206
|
+
def sheep; return convert_unicode_to_hex("E48F"); end
|
207
|
+
def wolf_face; return convert_unicode_to_hex("E4E1"); end
|
208
|
+
def cow_face; return convert_unicode_to_hex("EB21"); end
|
209
|
+
def rabbit_face; return convert_unicode_to_hex("E4D7"); end
|
210
|
+
def snake; return convert_unicode_to_hex("EB22"); end
|
211
|
+
def chicken; return convert_unicode_to_hex("EB23"); end
|
212
|
+
def boar; return convert_unicode_to_hex("EB24"); end
|
213
|
+
def camel; return convert_unicode_to_hex("EB25"); end
|
214
|
+
def frog_face; return convert_unicode_to_hex("E4DA"); end
|
215
|
+
def poodle; return convert_unicode_to_hex("E4DF"); end
|
216
|
+
def blowfish; return convert_unicode_to_hex("E4D3"); end
|
217
|
+
def ant; return convert_unicode_to_hex("E4DD"); end
|
218
|
+
def paw_prints; return convert_unicode_to_hex("E4EE"); end
|
219
|
+
def turtle; return convert_unicode_to_hex("E5D4"); end
|
220
|
+
def dragon_face; return convert_unicode_to_hex("EB3F"); end
|
221
|
+
def panda_face; return convert_unicode_to_hex("EB46"); end
|
222
|
+
def pig_nose; return convert_unicode_to_hex("EB48"); end
|
223
|
+
def honeybee; return convert_unicode_to_hex("EB57"); end
|
224
|
+
def ladybug; return convert_unicode_to_hex("EB58"); end
|
225
|
+
|
226
|
+
|
227
|
+
def angry_face; return convert_unicode_to_hex("E472"); end
|
228
|
+
def anguished_face; return convert_unicode_to_hex("EB67"); end
|
229
|
+
def astonished_face; return convert_unicode_to_hex("EACA"); end
|
230
|
+
def disappointed_face; return convert_unicode_to_hex("EAC0"); end
|
231
|
+
def dizzy_face; return convert_unicode_to_hex("E5AE"); end
|
232
|
+
def exasperated_face; return convert_unicode_to_hex("EACB"); end
|
233
|
+
def expressionless_face; return convert_unicode_to_hex("EAC9"); end
|
234
|
+
def face_with_heart_shaped_eyes; return convert_unicode_to_hex("E5C4"); end
|
235
|
+
def face_with_look_of_triumph; return convert_unicode_to_hex("EAC1"); end
|
236
|
+
def winking_face_with_stuck_out_tongue; return convert_unicode_to_hex("E4E7"); end
|
237
|
+
def face_with_stuck_out_tongue; return convert_unicode_to_hex("E4E7"); end
|
238
|
+
def face_savoring_delicious_food; return convert_unicode_to_hex("EACD"); end
|
239
|
+
def face_throwing_a_kiss; return convert_unicode_to_hex("EACF"); end
|
240
|
+
def face_kissing; return convert_unicode_to_hex("EACE"); end
|
241
|
+
def face_with_mask; return convert_unicode_to_hex("EAC7"); end
|
242
|
+
def flushed_face; return convert_unicode_to_hex("EAC8"); end
|
243
|
+
def happy_face_with_open_mouth; return convert_unicode_to_hex("E471"); end
|
244
|
+
def happy_face_with_open_mouth_and_cold_sweat; return convert_unicode_to_hex("E471"); end
|
245
|
+
def happy_face_with_open_mouth_and_closed_eyes; return convert_unicode_to_hex("EAC5"); end
|
246
|
+
def happy_face_with_grin; return convert_unicode_to_hex("EB80"); end
|
247
|
+
def happy_and_crying_face; return convert_unicode_to_hex("EB64"); end
|
248
|
+
def happy_face_with_wide_mouth_and_raised_eyebrows; return convert_unicode_to_hex("EACD"); end
|
249
|
+
def white_smiling_face; return convert_unicode_to_hex("E4FB"); end
|
250
|
+
def happy_face_with_open_mouth_and_raised_eyebrows; return convert_unicode_to_hex("E471"); end
|
251
|
+
def crying_face; return convert_unicode_to_hex("EB69"); end
|
252
|
+
def loudly_crying_face; return convert_unicode_to_hex("E473"); end
|
253
|
+
def fearful_face; return convert_unicode_to_hex("EAC6"); end
|
254
|
+
def persevering_face; return convert_unicode_to_hex("EAC2"); end
|
255
|
+
def pouting_face; return convert_unicode_to_hex("EB5D"); end
|
256
|
+
def relieved_face; return convert_unicode_to_hex("EAC5"); end
|
257
|
+
def confounded_face; return convert_unicode_to_hex("EAC3"); end
|
258
|
+
def pensive_face; return convert_unicode_to_hex("EAC0"); end
|
259
|
+
def face_screaming_in_fear; return convert_unicode_to_hex("E5C5"); end
|
260
|
+
def sleepy_face; return convert_unicode_to_hex("EAC4"); end
|
261
|
+
def smirking_face; return convert_unicode_to_hex("EABF"); end
|
262
|
+
def face_with_cold_sweat; return convert_unicode_to_hex("E5C6"); end
|
263
|
+
def disappointed_but_relieved_face; return convert_unicode_to_hex("E5C6"); end
|
264
|
+
def tired_face; return convert_unicode_to_hex("E474"); end
|
265
|
+
def winking_face; return convert_unicode_to_hex("E5C3"); end
|
266
|
+
|
267
|
+
def cat_face_with_open_mouth; return convert_unicode_to_hex("EB61"); end
|
268
|
+
def happy_cat_face_with_grin; return convert_unicode_to_hex("EB7F"); end
|
269
|
+
def happy_and_crying_cat_face; return convert_unicode_to_hex("EB63"); end
|
270
|
+
def cat_face_kissing; return convert_unicode_to_hex("EB60"); end
|
271
|
+
def cat_face_with_heart_shaped_eyes; return convert_unicode_to_hex("EB65"); end
|
272
|
+
def crying_cat_face; return convert_unicode_to_hex("EB68"); end
|
273
|
+
def pouting_cat_face; return convert_unicode_to_hex("EB5E"); end
|
274
|
+
def cat_face_with_tightly_closed_lips; return convert_unicode_to_hex("EB6A"); end
|
275
|
+
def anguished_cat_face; return convert_unicode_to_hex("EB66"); end
|
276
|
+
|
277
|
+
def face_with_no_good_gesture; return convert_unicode_to_hex("EAD7"); end
|
278
|
+
def face_with_ok_gesture; return convert_unicode_to_hex("EAD8"); end
|
279
|
+
def person_bowing_deeply; return convert_unicode_to_hex("EAD9"); end
|
280
|
+
def see_no_evil_monkey; return convert_unicode_to_hex("EB50"); end
|
281
|
+
def speak_no_evil_monkey; return convert_unicode_to_hex("EB51"); end
|
282
|
+
def hear_no_evil_monkey; return convert_unicode_to_hex("EB52"); end
|
283
|
+
def person_raising_one_hand; return convert_unicode_to_hex("EB85"); end
|
284
|
+
def person_raising_both_hands_in_cheers; return convert_unicode_to_hex("EB86"); end
|
285
|
+
def person_frowning; return convert_unicode_to_hex("EB87"); end
|
286
|
+
def person_with_pouting_face; return convert_unicode_to_hex("EB88"); end
|
287
|
+
def person_with_folded_hands; return convert_unicode_to_hex("EAD2"); end
|
288
|
+
|
289
|
+
|
290
|
+
def house_building; return convert_unicode_to_hex("E4AB"); end
|
291
|
+
def house_with_yard; return convert_unicode_to_hex("EB09"); end
|
292
|
+
def office_building; return convert_unicode_to_hex("E4AD"); end
|
293
|
+
def japanese_post_office; return convert_unicode_to_hex("E5DE"); end
|
294
|
+
def hospital; return convert_unicode_to_hex("E5DF"); end
|
295
|
+
def bank; return convert_unicode_to_hex("E4AA"); end
|
296
|
+
def atm; return convert_unicode_to_hex("E4A3"); end
|
297
|
+
def hotel; return convert_unicode_to_hex("EA81"); end
|
298
|
+
def love_hotel; return convert_unicode_to_hex("EAF3"); end
|
299
|
+
def convenience_store; return convert_unicode_to_hex("E4A4"); end
|
300
|
+
def school; return convert_unicode_to_hex("EA80"); end
|
301
|
+
def church; return convert_unicode_to_hex("E5BB"); end
|
302
|
+
def fountain; return convert_unicode_to_hex("E5CF"); end
|
303
|
+
def department_store; return convert_unicode_to_hex("EAF6"); end
|
304
|
+
def japanese_castle; return convert_unicode_to_hex("EAF7"); end
|
305
|
+
def western_castle; return convert_unicode_to_hex("EAF8"); end
|
306
|
+
def factory; return convert_unicode_to_hex("EAF9"); end
|
307
|
+
def anchor; return convert_unicode_to_hex("E4A9"); end
|
308
|
+
def izakaya_lantern; return convert_unicode_to_hex("E4BD"); end
|
309
|
+
|
310
|
+
def emoji_compatibility_symbol_1; return convert_unicode_to_hex("E5BD"); end
|
311
|
+
def emoji_compatibility_symbol_2; return convert_unicode_to_hex("E4C0"); end
|
312
|
+
def emoji_compatibility_symbol_3; warning(get_this_method); return nil; end
|
313
|
+
def emoji_compatibility_symbol_4; return convert_unicode_to_hex("E572"); end
|
314
|
+
def emoji_compatibility_symbol_5; return convert_unicode_to_hex("EB6C"); end
|
315
|
+
|
316
|
+
def wrench; return convert_unicode_to_hex("E587"); end
|
317
|
+
def hammer; return convert_unicode_to_hex("E5CB"); end
|
318
|
+
def nut_and_bolt; return convert_unicode_to_hex("E581"); end
|
319
|
+
|
320
|
+
def mans_shoe; return convert_unicode_to_hex("E5B7"); end
|
321
|
+
def sneaker; return convert_unicode_to_hex("EB2B"); end
|
322
|
+
def high_heeled_shoe; return convert_unicode_to_hex("E51A"); end
|
323
|
+
def womans_sandal; return convert_unicode_to_hex("E51A"); end
|
324
|
+
def womans_boots; return convert_unicode_to_hex("EA9F"); end
|
325
|
+
def eyeglasses; return convert_unicode_to_hex("E4FE"); end
|
326
|
+
def t_shirt; return convert_unicode_to_hex("E5B6"); end
|
327
|
+
def jeans; return convert_unicode_to_hex("EB77"); end
|
328
|
+
def crown; return convert_unicode_to_hex("E5C9"); end
|
329
|
+
def necktie; return convert_unicode_to_hex("EA93"); end
|
330
|
+
def womans_hat; return convert_unicode_to_hex("EA9E"); end
|
331
|
+
def dress; return convert_unicode_to_hex("EB6B"); end
|
332
|
+
def kimono; return convert_unicode_to_hex("EAA3"); end
|
333
|
+
def bikini; return convert_unicode_to_hex("EAA4"); end
|
334
|
+
def womans_clothes; return convert_unicode_to_hex("E50D"); end
|
335
|
+
def purse; return convert_unicode_to_hex("E504"); end
|
336
|
+
|
337
|
+
def money_bag; return convert_unicode_to_hex("E4C7"); end
|
338
|
+
def currency_exchange; warning(get_this_method); return nil; end
|
339
|
+
def chart_with_upwards_trend_and_yen_symbol; return convert_unicode_to_hex("E5DC"); end
|
340
|
+
def heavy_dollar_sign; return convert_unicode_to_hex("E579"); end
|
341
|
+
def credit_card; return convert_unicode_to_hex("E57C"); end
|
342
|
+
def banknote_with_yen_sign; return convert_unicode_to_hex("E57D"); end
|
343
|
+
def banknote_with_dollar_sign; return convert_unicode_to_hex("E585"); end
|
344
|
+
def money_with_wings; return convert_unicode_to_hex("EB5B"); end
|
345
|
+
|
346
|
+
def emoji_compatibility_symbol_6; return convert_unicode_to_hex("EB11"); end
|
347
|
+
def emoji_compatibility_symbol_7; return convert_unicode_to_hex("EB0E"); end
|
348
|
+
def emoji_compatibility_symbol_8; return convert_unicode_to_hex("E5D5"); end
|
349
|
+
def emoji_compatibility_symbol_9; return convert_unicode_to_hex("EAFA"); end
|
350
|
+
def emoji_compatibility_symbol_10; return convert_unicode_to_hex("EB10"); end
|
351
|
+
def emoji_compatibility_symbol_11; return convert_unicode_to_hex("EB0F"); end
|
352
|
+
def emoji_compatibility_symbol_12; return convert_unicode_to_hex("E4CC"); end
|
353
|
+
def emoji_compatibility_symbol_13; return convert_unicode_to_hex("EB12"); end
|
354
|
+
def emoji_compatibility_symbol_14; return convert_unicode_to_hex("E5D6"); end
|
355
|
+
def emoji_compatibility_symbol_15; return convert_unicode_to_hex("E573"); end
|
356
|
+
|
357
|
+
def camera; return convert_unicode_to_hex("E515"); end
|
358
|
+
def handbag; return convert_unicode_to_hex("E49C"); end
|
359
|
+
def pouch; warning(get_this_method); return nil; end
|
360
|
+
def bell; return convert_unicode_to_hex("E512"); end
|
361
|
+
def door; warning(get_this_method); return nil; end
|
362
|
+
def dung; return convert_unicode_to_hex("E4F5"); end
|
363
|
+
def pistol; return convert_unicode_to_hex("E50A"); end
|
364
|
+
def fire; return convert_unicode_to_hex("E47B"); end
|
365
|
+
def crystal_ball; return convert_unicode_to_hex("EA8F"); end
|
366
|
+
def six_pointed_star_with_middle_dot; return convert_unicode_to_hex("EA8F"); end
|
367
|
+
def video_camera; return convert_unicode_to_hex("E57E"); end
|
368
|
+
def knife; return convert_unicode_to_hex("E57F"); end
|
369
|
+
def flashlight; return convert_unicode_to_hex("E583"); end
|
370
|
+
def battery; return convert_unicode_to_hex("E584"); end
|
371
|
+
def scroll; return convert_unicode_to_hex("E55F"); end
|
372
|
+
def electric_plug; return convert_unicode_to_hex("E589"); end
|
373
|
+
def book_1; return convert_unicode_to_hex("E565"); end
|
374
|
+
def book_2; return convert_unicode_to_hex("E566"); end
|
375
|
+
def book_3; return convert_unicode_to_hex("E567"); end
|
376
|
+
def vertical_closed_book; return convert_unicode_to_hex("E568"); end
|
377
|
+
def books; return convert_unicode_to_hex("E56F"); end
|
378
|
+
def name_badge; return convert_unicode_to_hex("E51D"); end
|
379
|
+
|
380
|
+
def bath; return convert_unicode_to_hex("E5D8"); end
|
381
|
+
def restroom; return convert_unicode_to_hex("E4A5"); end
|
382
|
+
def toilet; return convert_unicode_to_hex("E4A5"); end
|
383
|
+
def water_closet; return convert_unicode_to_hex("E4A5"); end
|
384
|
+
|
385
|
+
def syringe; return convert_unicode_to_hex("E510"); end
|
386
|
+
def pill; return convert_unicode_to_hex("EA9A"); end
|
387
|
+
|
388
|
+
def negative_squared_latin_capital_letter_a; return convert_unicode_to_hex("EB26"); end
|
389
|
+
def negative_squared_latin_capital_letter_b; return convert_unicode_to_hex("EB27"); end
|
390
|
+
def negative_squared_ab; return convert_unicode_to_hex("EB29"); end
|
391
|
+
def negative_squared_latin_capital_letter_o; return convert_unicode_to_hex("EB28"); end
|
392
|
+
|
393
|
+
def ribbon; return convert_unicode_to_hex("E59F"); end
|
394
|
+
def wrapped_present; return convert_unicode_to_hex("E4CF"); end
|
395
|
+
def birthday_cake; return convert_unicode_to_hex("E5A0"); end
|
396
|
+
def christmas_tree; return convert_unicode_to_hex("E4C9"); end
|
397
|
+
def santa_claus; return convert_unicode_to_hex("EAF0"); end
|
398
|
+
def crossed_flags; return convert_unicode_to_hex("E5D9"); end
|
399
|
+
def fireworks; return convert_unicode_to_hex("E5CC"); end
|
400
|
+
def balloon; return convert_unicode_to_hex("EA9B"); end
|
401
|
+
def party_popper; return convert_unicode_to_hex("EA9C"); end
|
402
|
+
def pine_decoration; return convert_unicode_to_hex("EAE3"); end
|
403
|
+
def girls_doll_festival; return convert_unicode_to_hex("EAE4"); end
|
404
|
+
def graduation_cap; return convert_unicode_to_hex("EAE5"); end
|
405
|
+
def school_satchel; return convert_unicode_to_hex("EAE6"); end
|
406
|
+
def carp_streamer; return convert_unicode_to_hex("EAE7"); end
|
407
|
+
def firework_sparkler; return convert_unicode_to_hex("EAEB"); end
|
408
|
+
def wind_chime; return convert_unicode_to_hex("EAED"); end
|
409
|
+
def jack_o_lantern; return convert_unicode_to_hex("EAEE"); end
|
410
|
+
def confetti_ball; return convert_unicode_to_hex("E46F"); end
|
411
|
+
def tanabata_tree; return convert_unicode_to_hex("EB3D"); end
|
412
|
+
def moon_viewing_ceremony; return convert_unicode_to_hex("EAEF"); end
|
413
|
+
|
414
|
+
def pager; return convert_unicode_to_hex("E59B"); end
|
415
|
+
def black_telephone; return convert_unicode_to_hex("E596"); end
|
416
|
+
def telephone_receiver; return convert_unicode_to_hex("E51E"); end
|
417
|
+
def mobile_phone; return convert_unicode_to_hex("E588"); end
|
418
|
+
def phone_with_arrow; return convert_unicode_to_hex("EB08"); end
|
419
|
+
def memo; return convert_unicode_to_hex("EA92"); end
|
420
|
+
def fax; return convert_unicode_to_hex("E520"); end
|
421
|
+
def envelope; return convert_unicode_to_hex("E521"); end
|
422
|
+
def incoming_envelope; return convert_unicode_to_hex("E591"); end
|
423
|
+
def envelope_with_arrow; return convert_unicode_to_hex("EB62"); end
|
424
|
+
def mailbox; return convert_unicode_to_hex("E51B"); end
|
425
|
+
def mailbox_with_raised_flag; return convert_unicode_to_hex("EB0A"); end
|
426
|
+
def postbox; return convert_unicode_to_hex("E51B"); end
|
427
|
+
def public_address_loudspeaker; return convert_unicode_to_hex("E511"); end
|
428
|
+
def cheering_megaphone; return convert_unicode_to_hex("E511"); end
|
429
|
+
def satellite_antenna; return convert_unicode_to_hex("E4A8"); end
|
430
|
+
def speech_balloon; return convert_unicode_to_hex("E4FD"); end
|
431
|
+
def outbox_tray; return convert_unicode_to_hex("E592"); end
|
432
|
+
def inbox_tray; return convert_unicode_to_hex("E593"); end
|
433
|
+
def package; return convert_unicode_to_hex("E51F"); end
|
434
|
+
|
435
|
+
def latin_capital_letters_input_symbol; return convert_unicode_to_hex("EAFD"); end
|
436
|
+
def latin_small_letters_input_symbol; return convert_unicode_to_hex("EAFE"); end
|
437
|
+
def numbers_input_symbol; return convert_unicode_to_hex("EAFF"); end
|
438
|
+
def symbols_input_symbol; return convert_unicode_to_hex("EB00"); end
|
439
|
+
def latin_letters_input_symbol; return convert_unicode_to_hex("EB55"); end
|
440
|
+
|
441
|
+
def black_nib; return convert_unicode_to_hex("EB03"); end
|
442
|
+
def seat; warning(get_this_method); return nil; end
|
443
|
+
def computer; return convert_unicode_to_hex("E5B8"); end
|
444
|
+
def pencil; return convert_unicode_to_hex("E4A1"); end
|
445
|
+
def paperclip; return convert_unicode_to_hex("E4A0"); end
|
446
|
+
def briefcase; return convert_unicode_to_hex("E5CE"); end
|
447
|
+
def mini_disc; return convert_unicode_to_hex("E582"); end
|
448
|
+
def floppy_disk; return convert_unicode_to_hex("E562"); end
|
449
|
+
def black_scissors; return convert_unicode_to_hex("E516"); end
|
450
|
+
def round_pushpin; return convert_unicode_to_hex("E560"); end
|
451
|
+
def page_with_curl; return convert_unicode_to_hex("E561"); end
|
452
|
+
def page_facing_up; return convert_unicode_to_hex("E569"); end
|
453
|
+
def calendar; return convert_unicode_to_hex("E563"); end
|
454
|
+
def file_folder; return convert_unicode_to_hex("E58F"); end
|
455
|
+
def open_file_folder; return convert_unicode_to_hex("E590"); end
|
456
|
+
def notebook; return convert_unicode_to_hex("E56B"); end
|
457
|
+
def open_book; return convert_unicode_to_hex("E49F"); end
|
458
|
+
def notebook_with_decorative_cover; return convert_unicode_to_hex("E49D"); end
|
459
|
+
def clipboard; return convert_unicode_to_hex("E564"); end
|
460
|
+
def tear_off_calendar; return convert_unicode_to_hex("E56A"); end
|
461
|
+
def bar_chart; return convert_unicode_to_hex("E574"); end
|
462
|
+
def chart_with_upwards_trend; return convert_unicode_to_hex("E575"); end
|
463
|
+
def chart_with_downwards_trend; return convert_unicode_to_hex("E576"); end
|
464
|
+
def card_index; return convert_unicode_to_hex("E56C"); end
|
465
|
+
def pushpin; return convert_unicode_to_hex("E56D"); end
|
466
|
+
def ledger; return convert_unicode_to_hex("E56E"); end
|
467
|
+
def straight_ruler; return convert_unicode_to_hex("E570"); end
|
468
|
+
def triangular_ruler; return convert_unicode_to_hex("E4A2"); end
|
469
|
+
def bookmark_tabs; return convert_unicode_to_hex("EB0B"); end
|
470
|
+
|
471
|
+
def footprints; return convert_unicode_to_hex("EB2A"); end
|
472
|
+
|
473
|
+
|
474
|
+
def running_shirt_with_sash; warning(get_this_method); return nil; end
|
475
|
+
def baseball; return convert_unicode_to_hex("E4BA"); end
|
476
|
+
def flag_in_hole; return convert_unicode_to_hex("E599"); end
|
477
|
+
def tennis; return convert_unicode_to_hex("E4B7"); end
|
478
|
+
def soccer_ball; return convert_unicode_to_hex("E4B6"); end
|
479
|
+
def skiing; return convert_unicode_to_hex("EAAC"); end
|
480
|
+
def basketball; return convert_unicode_to_hex("E59A"); end
|
481
|
+
def checkered_flag; return convert_unicode_to_hex("E4B9"); end
|
482
|
+
def snowboarder; return convert_unicode_to_hex("E4B8"); end
|
483
|
+
def runner; return convert_unicode_to_hex("E46B"); end
|
484
|
+
def surfer; return convert_unicode_to_hex("EB41"); end
|
485
|
+
def trophy; return convert_unicode_to_hex("E5D3"); end
|
486
|
+
def horse_racing; return convert_unicode_to_hex("E4D8"); end
|
487
|
+
def american_football; return convert_unicode_to_hex("E4BB"); end
|
488
|
+
def swimmer; return convert_unicode_to_hex("EADE"); end
|
489
|
+
|
490
|
+
def train; return convert_unicode_to_hex("E4B5"); end
|
491
|
+
def subway; return convert_unicode_to_hex("E5BC"); end
|
492
|
+
def circled_latin_capital_letter_m; return convert_unicode_to_hex("E5BC"); end
|
493
|
+
def high_speed_train; return convert_unicode_to_hex("E4B0"); end
|
494
|
+
def high_speed_train_with_bullet_nose; return convert_unicode_to_hex("E4B0"); end
|
495
|
+
def automobile_1; return convert_unicode_to_hex("E4B1"); end
|
496
|
+
def recreational_vehicle; return convert_unicode_to_hex("E4B1"); end
|
497
|
+
def bus_2; return convert_unicode_to_hex("E4AF"); end
|
498
|
+
def bus_stop; return convert_unicode_to_hex("E4A7"); end
|
499
|
+
def ship; return convert_unicode_to_hex("EA82"); end
|
500
|
+
def airplane; return convert_unicode_to_hex("E4B3"); end
|
501
|
+
def sailboat; return convert_unicode_to_hex("E4B4"); end
|
502
|
+
def bicycle; return convert_unicode_to_hex("E4AE"); end
|
503
|
+
def station; return convert_unicode_to_hex("EB6D"); end
|
504
|
+
def rocket; return convert_unicode_to_hex("E5C8"); end
|
505
|
+
def speedboat; return convert_unicode_to_hex("E4B4"); end
|
506
|
+
def taxi_1; return convert_unicode_to_hex("E4B1"); end
|
507
|
+
def pedestrian; return convert_unicode_to_hex("EB72"); end
|
508
|
+
def truck; return convert_unicode_to_hex("E4B2"); end
|
509
|
+
def fire_engine; return convert_unicode_to_hex("EADF"); end
|
510
|
+
def ambulance; return convert_unicode_to_hex("EAE0"); end
|
511
|
+
def police_car_1; return convert_unicode_to_hex("EAE1"); end
|
512
|
+
|
513
|
+
def fuel_pump; return convert_unicode_to_hex("E571"); end
|
514
|
+
def negative_squared_latin_capital_letter_p; return convert_unicode_to_hex("E4A6"); end
|
515
|
+
|
516
|
+
def horizontal_traffic_light; return convert_unicode_to_hex("E46A"); end
|
517
|
+
def construction_sign; return convert_unicode_to_hex("E5D7"); end
|
518
|
+
def police_cars_revolving_light; return convert_unicode_to_hex("EB73"); end
|
519
|
+
|
520
|
+
def hot_springs; return convert_unicode_to_hex("E4BC"); end
|
521
|
+
def tent; return convert_unicode_to_hex("E5D0"); end
|
522
|
+
def carousel_horse; warning(get_this_method); return nil; end
|
523
|
+
def ferris_wheel; return convert_unicode_to_hex("E46D"); end
|
524
|
+
def roller_coaster; return convert_unicode_to_hex("EAE2"); end
|
525
|
+
def fishing; return convert_unicode_to_hex("EB42"); end
|
526
|
+
def microphone; return convert_unicode_to_hex("E503"); end
|
527
|
+
def movies; return convert_unicode_to_hex("E517"); end
|
528
|
+
def cinema; return convert_unicode_to_hex("E517"); end
|
529
|
+
def headphone; return convert_unicode_to_hex("E508"); end
|
530
|
+
def art; return convert_unicode_to_hex("E59C"); end
|
531
|
+
def top_hat; return convert_unicode_to_hex("EAF5"); end
|
532
|
+
def event; return convert_unicode_to_hex("E59E"); end
|
533
|
+
def ticket; return convert_unicode_to_hex("E49E"); end
|
534
|
+
def movie_shooting_clapboard; return convert_unicode_to_hex("E4BE"); end
|
535
|
+
def performing_arts; return convert_unicode_to_hex("E59D"); end
|
536
|
+
|
537
|
+
def video_game; return convert_unicode_to_hex("E4C6"); end
|
538
|
+
def mahjong_tile_red_dragon; return convert_unicode_to_hex("E5D1"); end
|
539
|
+
def direct_hit; return convert_unicode_to_hex("E4C5"); end
|
540
|
+
def slot_machine; return convert_unicode_to_hex("E46E"); end
|
541
|
+
def billiards; return convert_unicode_to_hex("EADD"); end
|
542
|
+
def game_die; return convert_unicode_to_hex("E4C8"); end
|
543
|
+
def bowling; return convert_unicode_to_hex("EB43"); end
|
544
|
+
def flower_playing_cards; return convert_unicode_to_hex("EB6E"); end
|
545
|
+
def playing_card_black_joker; return convert_unicode_to_hex("EB6F"); end
|
546
|
+
|
547
|
+
def musical_note; return convert_unicode_to_hex("E5BE"); end
|
548
|
+
def multiple_musical_notes; return convert_unicode_to_hex("E505"); end
|
549
|
+
def saxophone; warning(get_this_method); return nil; end
|
550
|
+
def guitar; return convert_unicode_to_hex("E506"); end
|
551
|
+
def musical_keyboard; return convert_unicode_to_hex("EB40"); end
|
552
|
+
def trumpet; return convert_unicode_to_hex("EADC"); end
|
553
|
+
def violin; return convert_unicode_to_hex("E507"); end
|
554
|
+
def musical_score; return convert_unicode_to_hex("EACC"); end
|
555
|
+
def part_alternation_mark; warning(get_this_method); return nil; end
|
556
|
+
|
557
|
+
def television; return convert_unicode_to_hex("E502"); end
|
558
|
+
def optical_disk; return convert_unicode_to_hex("E50C"); end
|
559
|
+
def dvd; return convert_unicode_to_hex("E50C"); end
|
560
|
+
def radio; return convert_unicode_to_hex("E5B9"); end
|
561
|
+
def video_cassette_tape; return convert_unicode_to_hex("E580"); end
|
562
|
+
def speaker_with_three_sound_waves; return convert_unicode_to_hex("E511"); end
|
563
|
+
def newspaper; return convert_unicode_to_hex("E58B"); end
|
564
|
+
|
565
|
+
def kiss_mark; return convert_unicode_to_hex("E4EB"); end
|
566
|
+
def love_letter; return convert_unicode_to_hex("EB78"); end
|
567
|
+
def ring; return convert_unicode_to_hex("E514"); end
|
568
|
+
def gem_stone; return convert_unicode_to_hex("E514"); end
|
569
|
+
def kiss; return convert_unicode_to_hex("E5CA"); end
|
570
|
+
def bouquet; return convert_unicode_to_hex("EA95"); end
|
571
|
+
def couple_with_heart; return convert_unicode_to_hex("EADA"); end
|
572
|
+
def wedding; return convert_unicode_to_hex("E5BB"); end
|
573
|
+
|
574
|
+
def hash_key; return convert_unicode_to_hex("EB84"); end
|
575
|
+
def keycap_1; return convert_unicode_to_hex("E522"); end
|
576
|
+
def keycap_2; return convert_unicode_to_hex("E523"); end
|
577
|
+
def keycap_3; return convert_unicode_to_hex("E524"); end
|
578
|
+
def keycap_4; return convert_unicode_to_hex("E525"); end
|
579
|
+
def keycap_5; return convert_unicode_to_hex("E526"); end
|
580
|
+
def keycap_6; return convert_unicode_to_hex("E527"); end
|
581
|
+
def keycap_7; return convert_unicode_to_hex("E528"); end
|
582
|
+
def keycap_8; return convert_unicode_to_hex("E529"); end
|
583
|
+
def keycap_9; return convert_unicode_to_hex("E52A"); end
|
584
|
+
def keycap_0; return convert_unicode_to_hex("E5AC"); end
|
585
|
+
def keycap_ten; return convert_unicode_to_hex("E52B"); end
|
586
|
+
def antenna_with_bars; return convert_unicode_to_hex("EA84"); end
|
587
|
+
def vibration_mode; return convert_unicode_to_hex("EA90"); end
|
588
|
+
def mobile_phone_off; return convert_unicode_to_hex("EA91"); end
|
589
|
+
|
590
|
+
|
591
|
+
def hamburger; return convert_unicode_to_hex("E4D6"); end
|
592
|
+
def rice_ball; return convert_unicode_to_hex("E4D5"); end
|
593
|
+
def shortcake; return convert_unicode_to_hex("E4D0"); end
|
594
|
+
def steaming_bowl; return convert_unicode_to_hex("E5B4"); end
|
595
|
+
def bread; return convert_unicode_to_hex("EAAF"); end
|
596
|
+
def cooking; return convert_unicode_to_hex("E4D1"); end
|
597
|
+
def soft_ice_cream; return convert_unicode_to_hex("EAB0"); end
|
598
|
+
def french_fries; return convert_unicode_to_hex("EAB1"); end
|
599
|
+
def dumpling; return convert_unicode_to_hex("EAB2"); end
|
600
|
+
def rice_cracker; return convert_unicode_to_hex("EAB3"); end
|
601
|
+
def cooked_rice; return convert_unicode_to_hex("EAB4"); end
|
602
|
+
def spaghetti; return convert_unicode_to_hex("EAB5"); end
|
603
|
+
def curry_and_rice; return convert_unicode_to_hex("EAB6"); end
|
604
|
+
def seafood_casserole; return convert_unicode_to_hex("EAB7"); end
|
605
|
+
def sushi; return convert_unicode_to_hex("EAB8"); end
|
606
|
+
def lunchbox; return convert_unicode_to_hex("EABD"); end
|
607
|
+
def pot_of_food; return convert_unicode_to_hex("EABE"); end
|
608
|
+
def shaved_ice; return convert_unicode_to_hex("EAEA"); end
|
609
|
+
def meat_on_bone; return convert_unicode_to_hex("E4C4"); end
|
610
|
+
def fish_cake_with_swirl_design; return convert_unicode_to_hex("E4ED"); end
|
611
|
+
def roasted_sweet_potato; return convert_unicode_to_hex("EB3A"); end
|
612
|
+
def slice_of_pizza; return convert_unicode_to_hex("EB3B"); end
|
613
|
+
def poultry_leg; return convert_unicode_to_hex("EB3C"); end
|
614
|
+
def ice_cream; return convert_unicode_to_hex("EB4A"); end
|
615
|
+
def doughnut; return convert_unicode_to_hex("EB4B"); end
|
616
|
+
def cookie; return convert_unicode_to_hex("EB4C"); end
|
617
|
+
def chocolate_bar; return convert_unicode_to_hex("EB4D"); end
|
618
|
+
def candy; return convert_unicode_to_hex("EB4E"); end
|
619
|
+
def lollipop; return convert_unicode_to_hex("EB4F"); end
|
620
|
+
def custard; return convert_unicode_to_hex("EB56"); end
|
621
|
+
def honey_pot; return convert_unicode_to_hex("EB59"); end
|
622
|
+
def fried_shrimp; return convert_unicode_to_hex("EB70"); end
|
623
|
+
def fork_and_knife; return convert_unicode_to_hex("E4AC"); end
|
624
|
+
|
625
|
+
def hot_beverage; return convert_unicode_to_hex("E597"); end
|
626
|
+
def cocktail_glass; return convert_unicode_to_hex("E4C2"); end
|
627
|
+
def beer_mug; return convert_unicode_to_hex("E4C3"); end
|
628
|
+
def teacup_without_handle; return convert_unicode_to_hex("EAAE"); end
|
629
|
+
def sake_bottle_and_cup; return convert_unicode_to_hex("EA97"); end
|
630
|
+
def wine_glass; return convert_unicode_to_hex("E4C1"); end
|
631
|
+
def clinking_beer_mugs; return convert_unicode_to_hex("EA98"); end
|
632
|
+
def tropical_drink; return convert_unicode_to_hex("EB3E"); end
|
633
|
+
|
634
|
+
|
635
|
+
def north_east_arrow; return convert_unicode_to_hex("E555"); end
|
636
|
+
def south_east_arrow; return convert_unicode_to_hex("E54D"); end
|
637
|
+
def north_west_arrow; return convert_unicode_to_hex("E54C"); end
|
638
|
+
def south_west_arrow; return convert_unicode_to_hex("E556"); end
|
639
|
+
def arrow_pointing_rightwards_then_curving_upwards; return convert_unicode_to_hex("EB2D"); end
|
640
|
+
def arrow_pointing_rightwards_then_curving_downwards; return convert_unicode_to_hex("EB2E"); end
|
641
|
+
def left_right_arrow; return convert_unicode_to_hex("EB7A"); end
|
642
|
+
def up_down_arrow; return convert_unicode_to_hex("EB7B"); end
|
643
|
+
def upwards_black_arrow; return convert_unicode_to_hex("E53F"); end
|
644
|
+
def downwards_black_arrow; return convert_unicode_to_hex("E540"); end
|
645
|
+
def black_rightwards_arrow; return convert_unicode_to_hex("E552"); end
|
646
|
+
def leftwards_black_arrow; return convert_unicode_to_hex("E553"); end
|
647
|
+
|
648
|
+
def black_right_pointing_triangle; return convert_unicode_to_hex("E52E"); end
|
649
|
+
def black_left_pointing_triangle; return convert_unicode_to_hex("E52D"); end
|
650
|
+
def black_right_pointing_double_triangle; return convert_unicode_to_hex("E530"); end
|
651
|
+
def black_left_pointing_double_triangle; return convert_unicode_to_hex("E52F"); end
|
652
|
+
def black_up_pointing_double_triangle; return convert_unicode_to_hex("E545"); end
|
653
|
+
def black_down_pointing_double_triangle; return convert_unicode_to_hex("E544"); end
|
654
|
+
def up_pointing_triangle_1; return convert_unicode_to_hex("E55A"); end
|
655
|
+
def down_pointing_triangle_1; return convert_unicode_to_hex("E55B"); end
|
656
|
+
def up_pointing_small_triangle_1; return convert_unicode_to_hex("E543"); end
|
657
|
+
def down_pointing_small_triangle_1; return convert_unicode_to_hex("E542"); end
|
658
|
+
|
659
|
+
def heavy_exclamation_mark_ornament; return convert_unicode_to_hex("E482"); end
|
660
|
+
def exclamation_question_mark; return convert_unicode_to_hex("EB2F"); end
|
661
|
+
def double_exclamation_mark; return convert_unicode_to_hex("EB30"); end
|
662
|
+
def black_question_mark_ornament; return convert_unicode_to_hex("E483"); end
|
663
|
+
def white_question_mark_ornament; return convert_unicode_to_hex("E483"); end
|
664
|
+
def white_exclamation_mark_ornament; return convert_unicode_to_hex("E482"); end
|
665
|
+
|
666
|
+
def wavy_dash; warning(get_this_method); return nil; end
|
667
|
+
def looped_length_mark; return convert_unicode_to_hex("EB31"); end
|
668
|
+
|
669
|
+
def heavy_black_heart; return convert_unicode_to_hex("E595"); end
|
670
|
+
def beating_heart; return convert_unicode_to_hex("EB75"); end
|
671
|
+
def broken_heart; return convert_unicode_to_hex("E477"); end
|
672
|
+
def two_hearts; return convert_unicode_to_hex("E478"); end
|
673
|
+
def sparkling_heart; return convert_unicode_to_hex("EAA6"); end
|
674
|
+
def growing_heart; return convert_unicode_to_hex("EB75"); end
|
675
|
+
def heart_with_arrow; return convert_unicode_to_hex("E4EA"); end
|
676
|
+
def heart_1; return convert_unicode_to_hex("EAA7"); end
|
677
|
+
def heart_2; return convert_unicode_to_hex("EAA8"); end
|
678
|
+
def heart_3; return convert_unicode_to_hex("EAA9"); end
|
679
|
+
def heart_4; return convert_unicode_to_hex("EAAA"); end
|
680
|
+
def heart_with_ribbon; return convert_unicode_to_hex("EB54"); end
|
681
|
+
def revolving_hearts; return convert_unicode_to_hex("E5AF"); end
|
682
|
+
def heart_decoration; return convert_unicode_to_hex("E595"); end
|
683
|
+
|
684
|
+
def black_heart_suit; return convert_unicode_to_hex("EAA5"); end
|
685
|
+
def black_spade_suit; return convert_unicode_to_hex("E5A1"); end
|
686
|
+
def black_diamond_suit; return convert_unicode_to_hex("E5A2"); end
|
687
|
+
def black_club_suit; return convert_unicode_to_hex("E5A3"); end
|
688
|
+
|
689
|
+
def smoking_symbol; return convert_unicode_to_hex("E47D"); end
|
690
|
+
def no_smoking_symbol; return convert_unicode_to_hex("E47E"); end
|
691
|
+
def wheelchair_symbol; return convert_unicode_to_hex("E47F"); end
|
692
|
+
def japanese_symbol_for_beginner; return convert_unicode_to_hex("E480"); end
|
693
|
+
def trident_emblem; return convert_unicode_to_hex("E5C9"); end
|
694
|
+
def triangular_flag_on_post; return convert_unicode_to_hex("EB2C"); end
|
695
|
+
def warning_sign; return convert_unicode_to_hex("E481"); end
|
696
|
+
def no_entry; return convert_unicode_to_hex("E484"); end
|
697
|
+
def black_universal_recycling_symbol; return convert_unicode_to_hex("EB79"); end
|
698
|
+
def mens_symbol; warning(get_this_method); return nil; end
|
699
|
+
def womens_symbol; warning(get_this_method); return nil; end
|
700
|
+
def baby_symbol; return convert_unicode_to_hex("EB18"); end
|
701
|
+
def heavy_large_circle; return convert_unicode_to_hex("EAAD"); end
|
702
|
+
def cross_mark; return convert_unicode_to_hex("E550"); end
|
703
|
+
def negative_squared_cross_mark; return convert_unicode_to_hex("E551"); end
|
704
|
+
def no_entry_sign; return convert_unicode_to_hex("E541"); end
|
705
|
+
def heavy_check_mark; return convert_unicode_to_hex("E557"); end
|
706
|
+
def white_heavy_check_mark; return convert_unicode_to_hex("E55E"); end
|
707
|
+
def link_symbol; return convert_unicode_to_hex("E58A"); end
|
708
|
+
def em_space; return convert_unicode_to_hex("E58C"); end
|
709
|
+
def en_space; return convert_unicode_to_hex("E58D"); end
|
710
|
+
def four_per_em_space; return convert_unicode_to_hex("E58E"); end
|
711
|
+
|
712
|
+
def free_sign; return convert_unicode_to_hex("E578"); end
|
713
|
+
def no_one_under_eighteen_sign; return convert_unicode_to_hex("EA83"); end
|
714
|
+
def ok_sign; return convert_unicode_to_hex("E5AD"); end
|
715
|
+
def no_good_sign; warning(get_this_method); return nil; end
|
716
|
+
def copyright_sign; return convert_unicode_to_hex("E558"); end
|
717
|
+
def registered_sign; return convert_unicode_to_hex("E559"); end
|
718
|
+
def trade_mark_sign; return convert_unicode_to_hex("E54E"); end
|
719
|
+
def vs_sign; return convert_unicode_to_hex("E5D2"); end
|
720
|
+
def new_sign; return convert_unicode_to_hex("E5B5"); end
|
721
|
+
def up_sign; return convert_unicode_to_hex("E50F"); end
|
722
|
+
def cool_sign; return convert_unicode_to_hex("EA85"); end
|
723
|
+
def top_with_up_pointing_triangle_sign; warning(get_this_method); return nil; end
|
724
|
+
def information_source; return convert_unicode_to_hex("E533"); end
|
725
|
+
def sos_sign; return convert_unicode_to_hex("E4E8"); end
|
726
|
+
|
727
|
+
def squared_katakana_koko; warning(get_this_method); return nil; end
|
728
|
+
def squared_katakana_sa; return convert_unicode_to_hex("EA87"); end
|
729
|
+
|
730
|
+
def squared_cjk_unified_ideograph_7981; warning(get_this_method); return nil; end
|
731
|
+
def squared_cjk_unified_ideograph_7a7a; return convert_unicode_to_hex("EA8A"); end
|
732
|
+
def squared_cjk_unified_ideograph_5408; warning(get_this_method); return nil; end
|
733
|
+
def squared_cjk_unified_ideograph_6e80; return convert_unicode_to_hex("EA89"); end
|
734
|
+
def squared_cjk_unified_ideograph_6709; warning(get_this_method); return nil; end
|
735
|
+
def squared_cjk_unified_ideograph_7121; warning(get_this_method); return nil; end
|
736
|
+
def squared_cjk_unified_ideograph_6708; warning(get_this_method); return nil; end
|
737
|
+
def squared_cjk_unified_ideograph_7533; warning(get_this_method); return nil; end
|
738
|
+
def squared_cjk_unified_ideograph_5272; return convert_unicode_to_hex("EA86"); end
|
739
|
+
def squared_cjk_unified_ideograph_6307; return convert_unicode_to_hex("EA8B"); end
|
740
|
+
def squared_cjk_unified_ideograph_55b6; return convert_unicode_to_hex("EA8C"); end
|
741
|
+
|
742
|
+
def circled_ideograph_secret; return convert_unicode_to_hex("E4F1"); end
|
743
|
+
def circled_ideograph_congratulation; return convert_unicode_to_hex("EA99"); end
|
744
|
+
def circled_ideograph_advantage; return convert_unicode_to_hex("E4F7"); end
|
745
|
+
def circled_ideograph_accept; return convert_unicode_to_hex("EB01"); end
|
746
|
+
|
747
|
+
def heavy_plus_sign; return convert_unicode_to_hex("E53C"); end
|
748
|
+
def heavy_minus_sign; return convert_unicode_to_hex("E53D"); end
|
749
|
+
def heavy_multiplication_x; return convert_unicode_to_hex("E54F"); end
|
750
|
+
def heavy_division_sign; return convert_unicode_to_hex("E554"); end
|
751
|
+
|
752
|
+
def diamond_shape_with_a_dot_inside; warning(get_this_method); return nil; end
|
753
|
+
def electric_light_bulb; return convert_unicode_to_hex("E476"); end
|
754
|
+
def anger_sign; return convert_unicode_to_hex("E4E5"); end
|
755
|
+
def bomb; return convert_unicode_to_hex("E47A"); end
|
756
|
+
def sleeping_sign; return convert_unicode_to_hex("E475"); end
|
757
|
+
def collision_symbol; return convert_unicode_to_hex("E5B0"); end
|
758
|
+
def splashing_sweat; return convert_unicode_to_hex("E5B1"); end
|
759
|
+
def drip; return convert_unicode_to_hex("E4E6"); end
|
760
|
+
def dash_symbol; return convert_unicode_to_hex("E4F4"); end
|
761
|
+
def flexed_bicep; return convert_unicode_to_hex("E4E9"); end
|
762
|
+
def dizzy_symbol; return convert_unicode_to_hex("EB5C"); end
|
763
|
+
|
764
|
+
def sparkles; return convert_unicode_to_hex("EAAB"); end
|
765
|
+
def eight_pointed_black_star; return convert_unicode_to_hex("E479"); end
|
766
|
+
def eight_spoked_asterisk; return convert_unicode_to_hex("E53E"); end
|
767
|
+
def medium_white_circle; return convert_unicode_to_hex("E53A"); end
|
768
|
+
def medium_black_circle; return convert_unicode_to_hex("E53B"); end
|
769
|
+
def large_circle_1; return convert_unicode_to_hex("E54A"); end
|
770
|
+
def large_circle_2; return convert_unicode_to_hex("E54B"); end
|
771
|
+
def black_rounded_square; return convert_unicode_to_hex("E54B"); end
|
772
|
+
def white_rounded_square; return convert_unicode_to_hex("E54B"); end
|
773
|
+
def white_medium_star; return convert_unicode_to_hex("E48B"); end
|
774
|
+
def glowing_star; return convert_unicode_to_hex("E48B"); end
|
775
|
+
def shooting_star; return convert_unicode_to_hex("E468"); end
|
776
|
+
def white_large_square; return convert_unicode_to_hex("E548"); end
|
777
|
+
def black_large_square; return convert_unicode_to_hex("E549"); end
|
778
|
+
def white_small_square; return convert_unicode_to_hex("E531"); end
|
779
|
+
def black_small_square; return convert_unicode_to_hex("E532"); end
|
780
|
+
def white_medium_small_square; return convert_unicode_to_hex("E534"); end
|
781
|
+
def black_medium_small_square; return convert_unicode_to_hex("E535"); end
|
782
|
+
def white_medium_square; return convert_unicode_to_hex("E538"); end
|
783
|
+
def black_medium_square; return convert_unicode_to_hex("E539"); end
|
784
|
+
def large_diamond_1; return convert_unicode_to_hex("E546"); end
|
785
|
+
def large_diamond_2; return convert_unicode_to_hex("E547"); end
|
786
|
+
def small_diamond_1; return convert_unicode_to_hex("E536"); end
|
787
|
+
def small_diamond_2; return convert_unicode_to_hex("E537"); end
|
788
|
+
def sparkle; return convert_unicode_to_hex("E46C"); end
|
789
|
+
|
790
|
+
def white_flower; return convert_unicode_to_hex("E4F0"); end
|
791
|
+
def hundred_points_symbol; return convert_unicode_to_hex("E4F2"); end
|
792
|
+
|
793
|
+
def identification_sign; return convert_unicode_to_hex("EA88"); end
|
794
|
+
def clear_sign; return convert_unicode_to_hex("E5AB"); end
|
795
|
+
def leftwards_arrow_with_hook; return convert_unicode_to_hex("E55D"); end
|
796
|
+
def rightwards_arrow_with_hook; return convert_unicode_to_hex("E55C"); end
|
797
|
+
def left_pointing_magnifying_glass; return convert_unicode_to_hex("E518"); end
|
798
|
+
def right_pointing_magnifying_glass; return convert_unicode_to_hex("EB05"); end
|
799
|
+
def lock; return convert_unicode_to_hex("E51C"); end
|
800
|
+
def open_lock; return convert_unicode_to_hex("E51C"); end
|
801
|
+
def lock_with_ink_pen; return convert_unicode_to_hex("EB0C"); end
|
802
|
+
def closed_lock_with_key; return convert_unicode_to_hex("EAFC"); end
|
803
|
+
def key; return convert_unicode_to_hex("E519"); end
|
804
|
+
def ballot_box_with_check; return convert_unicode_to_hex("EB02"); end
|
805
|
+
def radio_button; return convert_unicode_to_hex("EB04"); end
|
806
|
+
def back_with_left_arrow_above; return convert_unicode_to_hex("EB06"); end
|
807
|
+
def bookmark; return convert_unicode_to_hex("EB07"); end
|
808
|
+
def double_clockwise_open_circle_arrows; return convert_unicode_to_hex("EB0D"); end
|
809
|
+
def e_mail_symbol; return convert_unicode_to_hex("EB71"); end
|
810
|
+
|
811
|
+
def raised_fist; return convert_unicode_to_hex("EB83"); end
|
812
|
+
def raised_hand; return convert_unicode_to_hex("E5A7"); end
|
813
|
+
def victory_hand; return convert_unicode_to_hex("E5A6"); end
|
814
|
+
|
815
|
+
def fisted_hand; return convert_unicode_to_hex("E4F3"); end
|
816
|
+
def thumbs_up_sign; return convert_unicode_to_hex("E4F9"); end
|
817
|
+
def white_up_pointing_index; return convert_unicode_to_hex("E4F6"); end
|
818
|
+
def white_up_pointing_backhand_index; return convert_unicode_to_hex("EA8D"); end
|
819
|
+
def white_down_pointing_backhand_index; return convert_unicode_to_hex("EA8E"); end
|
820
|
+
def white_left_pointing_backhand_index; return convert_unicode_to_hex("E4FF"); end
|
821
|
+
def white_right_pointing_backhand_index; return convert_unicode_to_hex("E500"); end
|
822
|
+
def waving_hand; return convert_unicode_to_hex("EAD6"); end
|
823
|
+
def clapping_hands; return convert_unicode_to_hex("EAD3"); end
|
824
|
+
def ok_hand_sign; return convert_unicode_to_hex("EAD4"); end
|
825
|
+
def thumbs_down_sign; return convert_unicode_to_hex("EAD5"); end
|
826
|
+
def open_hands; return convert_unicode_to_hex("EAD6"); end
|
827
|
+
end
|
828
|
+
|
829
|
+
class Softbank < Emoji
|
830
|
+
def black_sun_with_rays; return convert_unicode_to_hex("E04A"); end
|
831
|
+
def cloud; return convert_unicode_to_hex("E049"); end
|
832
|
+
def umbrella_with_rain_drops; return convert_unicode_to_hex("E04B"); end
|
833
|
+
def snowman_without_snow; return convert_unicode_to_hex("E048"); end
|
834
|
+
def high_voltage_sign; return convert_unicode_to_hex("E13D"); end
|
835
|
+
def cyclone; return convert_unicode_to_hex("E443"); end
|
836
|
+
def foggy; warning(get_this_method); return nil; end
|
837
|
+
def closed_umbrella; return convert_unicode_to_hex("E43C"); end
|
838
|
+
def night_with_stars; return convert_unicode_to_hex("E44B"); end
|
839
|
+
def sunrise_over_mountains; return convert_unicode_to_hex("E04D"); end
|
840
|
+
def sunrise; return convert_unicode_to_hex("E449"); end
|
841
|
+
def cityscape_at_dusk; return convert_unicode_to_hex("E146"); end
|
842
|
+
def sunset_over_buildings; return convert_unicode_to_hex("E44A"); end
|
843
|
+
def rainbow; return convert_unicode_to_hex("E44C"); end
|
844
|
+
def snowflake; warning(get_this_method); return nil; end
|
845
|
+
def sun_behind_cloud; return convert_unicode_to_hex("E04A"); end
|
846
|
+
def bridge_at_night; return convert_unicode_to_hex("E44B"); end
|
847
|
+
|
848
|
+
def new_moon_symbol; warning(get_this_method); return nil; end
|
849
|
+
def waxing_gibbous_moon_symbol; return convert_unicode_to_hex("E04C"); end
|
850
|
+
def first_quarter_moon_symbol; return convert_unicode_to_hex("E04C"); end
|
851
|
+
def crescent_moon; return convert_unicode_to_hex("E04C"); end
|
852
|
+
def full_moon_symbol; warning(get_this_method); return nil; end
|
853
|
+
def first_quarter_moon_with_face; return convert_unicode_to_hex("E04C"); end
|
854
|
+
|
855
|
+
def soon_with_right_arrow_above; warning(get_this_method); return nil; end
|
856
|
+
def on_with_double_pointing_arrow_above; warning(get_this_method); return nil; end
|
857
|
+
def end_with_left_arrow_above; warning(get_this_method); return nil; end
|
858
|
+
def hourglass_with_flowing_sand; warning(get_this_method); return nil; end
|
859
|
+
def hourglass; warning(get_this_method); return nil; end
|
860
|
+
def watch; warning(get_this_method); return nil; end
|
861
|
+
def clock_face_one_oclock; return convert_unicode_to_hex("E024"); end
|
862
|
+
def clock_face_two_oclock; return convert_unicode_to_hex("E025"); end
|
863
|
+
def clock_face_three_oclock; return convert_unicode_to_hex("E026"); end
|
864
|
+
def clock_face_four_oclock; return convert_unicode_to_hex("E027"); end
|
865
|
+
def clock_face_five_oclock; return convert_unicode_to_hex("E028"); end
|
866
|
+
def clock_face_six_oclock; return convert_unicode_to_hex("E029"); end
|
867
|
+
def clock_face_seven_oclock; return convert_unicode_to_hex("E02A"); end
|
868
|
+
def clock_face_eight_oclock; return convert_unicode_to_hex("E02B"); end
|
869
|
+
def clock_face_nine_oclock; return convert_unicode_to_hex("E02C"); end
|
870
|
+
def clock_face_ten_oclock; return convert_unicode_to_hex("E02D"); end
|
871
|
+
def clock_face_eleven_oclock; return convert_unicode_to_hex("E02E"); end
|
872
|
+
def clock_face_twelve_oclock; return convert_unicode_to_hex("E02F"); end
|
873
|
+
|
874
|
+
def alarm_clock; return convert_unicode_to_hex("E02D"); end
|
875
|
+
|
876
|
+
def aries; return convert_unicode_to_hex("E23F"); end
|
877
|
+
def taurus; return convert_unicode_to_hex("E240"); end
|
878
|
+
def gemini; return convert_unicode_to_hex("E241"); end
|
879
|
+
def cancer; return convert_unicode_to_hex("E242"); end
|
880
|
+
def leo; return convert_unicode_to_hex("E243"); end
|
881
|
+
def virgo; return convert_unicode_to_hex("E244"); end
|
882
|
+
def libra; return convert_unicode_to_hex("E245"); end
|
883
|
+
def scorpius; return convert_unicode_to_hex("E246"); end
|
884
|
+
def sagittarius; return convert_unicode_to_hex("E247"); end
|
885
|
+
def capricorn; return convert_unicode_to_hex("E248"); end
|
886
|
+
def aquarius; return convert_unicode_to_hex("E249"); end
|
887
|
+
def pisces; return convert_unicode_to_hex("E24A"); end
|
888
|
+
def ophiuchus; return convert_unicode_to_hex("E24B"); end
|
889
|
+
|
890
|
+
def water_wave; return convert_unicode_to_hex("E43E"); end
|
891
|
+
def earth_globe_asia_australia; warning(get_this_method); return nil; end
|
892
|
+
def volcano; warning(get_this_method); return nil; end
|
893
|
+
def milky_way; return convert_unicode_to_hex("E44B"); end
|
894
|
+
|
895
|
+
def four_leaf_clover; return convert_unicode_to_hex("E110"); end
|
896
|
+
def tulip; return convert_unicode_to_hex("E304"); end
|
897
|
+
def seedling; return convert_unicode_to_hex("E110"); end
|
898
|
+
def maple_leaf; return convert_unicode_to_hex("E118"); end
|
899
|
+
def cherry_blossom; return convert_unicode_to_hex("E030"); end
|
900
|
+
def rose; return convert_unicode_to_hex("E032"); end
|
901
|
+
def fallen_leaf; return convert_unicode_to_hex("E119"); end
|
902
|
+
def leaf_fluttering_in_wind; return convert_unicode_to_hex("E447"); end
|
903
|
+
def hibiscus; return convert_unicode_to_hex("E303"); end
|
904
|
+
def sunflower; return convert_unicode_to_hex("E305"); end
|
905
|
+
def palm_tree; return convert_unicode_to_hex("E307"); end
|
906
|
+
def cactus; return convert_unicode_to_hex("E308"); end
|
907
|
+
def ear_of_rice; return convert_unicode_to_hex("E444"); end
|
908
|
+
def ear_of_maize; warning(get_this_method); return nil; end
|
909
|
+
def mushroom; warning(get_this_method); return nil; end
|
910
|
+
def chestnut; warning(get_this_method); return nil; end
|
911
|
+
def blossom; return convert_unicode_to_hex("E305"); end
|
912
|
+
def herb; return convert_unicode_to_hex("E110"); end
|
913
|
+
|
914
|
+
def cherries; warning(get_this_method); return nil; end
|
915
|
+
def banana; warning(get_this_method); return nil; end
|
916
|
+
def apple_1; return convert_unicode_to_hex("E345"); end
|
917
|
+
def tangerine; return convert_unicode_to_hex("E346"); end
|
918
|
+
def strawberry; return convert_unicode_to_hex("E347"); end
|
919
|
+
def watermelon; return convert_unicode_to_hex("E348"); end
|
920
|
+
def tomato; return convert_unicode_to_hex("E349"); end
|
921
|
+
def aubergine; return convert_unicode_to_hex("E34A"); end
|
922
|
+
def melon; warning(get_this_method); return nil; end
|
923
|
+
def pineapple; warning(get_this_method); return nil; end
|
924
|
+
def grapes; warning(get_this_method); return nil; end
|
925
|
+
def peach; warning(get_this_method); return nil; end
|
926
|
+
def apple_2; return convert_unicode_to_hex("E345"); end
|
927
|
+
|
928
|
+
|
929
|
+
def eyes; return convert_unicode_to_hex("E419"); end
|
930
|
+
def ear; return convert_unicode_to_hex("E41B"); end
|
931
|
+
def nose; return convert_unicode_to_hex("E41A"); end
|
932
|
+
def mouth; return convert_unicode_to_hex("E41C"); end
|
933
|
+
def tongue; return convert_unicode_to_hex("E409"); end
|
934
|
+
|
935
|
+
def lipstick; return convert_unicode_to_hex("E31C"); end
|
936
|
+
def nail_care; return convert_unicode_to_hex("E31D"); end
|
937
|
+
def face_massage; return convert_unicode_to_hex("E31E"); end
|
938
|
+
def haircut; return convert_unicode_to_hex("E31F"); end
|
939
|
+
def barber_pole; return convert_unicode_to_hex("E320"); end
|
940
|
+
|
941
|
+
def bust_in_silhouette; warning(get_this_method); return nil; end
|
942
|
+
|
943
|
+
def boys_head; return convert_unicode_to_hex("E001"); end
|
944
|
+
def girls_head; return convert_unicode_to_hex("E002"); end
|
945
|
+
def mans_head; return convert_unicode_to_hex("E004"); end
|
946
|
+
def womans_head; return convert_unicode_to_hex("E005"); end
|
947
|
+
def family; warning(get_this_method); return nil; end
|
948
|
+
def couple; return convert_unicode_to_hex("E428"); end
|
949
|
+
def police_officer; return convert_unicode_to_hex("E152"); end
|
950
|
+
def woman_with_bunny_ears; return convert_unicode_to_hex("E429"); end
|
951
|
+
def bride_with_veil; warning(get_this_method); return nil; end
|
952
|
+
def western_person; return convert_unicode_to_hex("E515"); end
|
953
|
+
def man_with_gua_pi_mao; return convert_unicode_to_hex("E516"); end
|
954
|
+
def man_with_turban; return convert_unicode_to_hex("E517"); end
|
955
|
+
def older_man; return convert_unicode_to_hex("E518"); end
|
956
|
+
def older_woman; return convert_unicode_to_hex("E519"); end
|
957
|
+
def baby; return convert_unicode_to_hex("E51A"); end
|
958
|
+
def construction_worker; return convert_unicode_to_hex("E51B"); end
|
959
|
+
|
960
|
+
def princess; return convert_unicode_to_hex("E51C"); end
|
961
|
+
def ogre; warning(get_this_method); return nil; end
|
962
|
+
def goblin; warning(get_this_method); return nil; end
|
963
|
+
def ghost; return convert_unicode_to_hex("E11B"); end
|
964
|
+
def cherub; return convert_unicode_to_hex("E04E"); end
|
965
|
+
def extraterrestrial_alien; return convert_unicode_to_hex("E10C"); end
|
966
|
+
def alien_monster; return convert_unicode_to_hex("E12B"); end
|
967
|
+
def imp; return convert_unicode_to_hex("E11A"); end
|
968
|
+
def skull; return convert_unicode_to_hex("E11C"); end
|
969
|
+
|
970
|
+
def information_desk_person; return convert_unicode_to_hex("E253"); end
|
971
|
+
def guardsman; return convert_unicode_to_hex("E51E"); end
|
972
|
+
def dancer; return convert_unicode_to_hex("E51F"); end
|
973
|
+
|
974
|
+
def dog_face; return convert_unicode_to_hex("E052"); end
|
975
|
+
def cat_face; return convert_unicode_to_hex("E04F"); end
|
976
|
+
def snail; warning(get_this_method); return nil; end
|
977
|
+
def baby_chick; return convert_unicode_to_hex("E523"); end
|
978
|
+
def front_facing_baby_chick; return convert_unicode_to_hex("E523"); end
|
979
|
+
def hatching_chick; return convert_unicode_to_hex("E523"); end
|
980
|
+
def penguin; return convert_unicode_to_hex("E055"); end
|
981
|
+
def fish; return convert_unicode_to_hex("E019"); end
|
982
|
+
def horse_face; return convert_unicode_to_hex("E01A"); end
|
983
|
+
def pig_face; return convert_unicode_to_hex("E10B"); end
|
984
|
+
def tiger_face; return convert_unicode_to_hex("E050"); end
|
985
|
+
def bear_face; return convert_unicode_to_hex("E051"); end
|
986
|
+
def mouse_face; return convert_unicode_to_hex("E053"); end
|
987
|
+
def spouting_whale; return convert_unicode_to_hex("E054"); end
|
988
|
+
def monkey_face; return convert_unicode_to_hex("E109"); end
|
989
|
+
def octopus; return convert_unicode_to_hex("E10A"); end
|
990
|
+
def spiral_shell; return convert_unicode_to_hex("E441"); end
|
991
|
+
def dolphin; return convert_unicode_to_hex("E520"); end
|
992
|
+
def bird; return convert_unicode_to_hex("E521"); end
|
993
|
+
def tropical_fish; return convert_unicode_to_hex("E522"); end
|
994
|
+
def hamster_face; return convert_unicode_to_hex("E524"); end
|
995
|
+
def bug; return convert_unicode_to_hex("E525"); end
|
996
|
+
def elephant; return convert_unicode_to_hex("E526"); end
|
997
|
+
def koala; return convert_unicode_to_hex("E527"); end
|
998
|
+
def monkey; return convert_unicode_to_hex("E528"); end
|
999
|
+
def sheep; return convert_unicode_to_hex("E529"); end
|
1000
|
+
def wolf_face; return convert_unicode_to_hex("E52A"); end
|
1001
|
+
def cow_face; return convert_unicode_to_hex("E52B"); end
|
1002
|
+
def rabbit_face; return convert_unicode_to_hex("E52C"); end
|
1003
|
+
def snake; return convert_unicode_to_hex("E52D"); end
|
1004
|
+
def chicken; return convert_unicode_to_hex("E52E"); end
|
1005
|
+
def boar; return convert_unicode_to_hex("E52F"); end
|
1006
|
+
def camel; return convert_unicode_to_hex("E530"); end
|
1007
|
+
def frog_face; return convert_unicode_to_hex("E531"); end
|
1008
|
+
def poodle; return convert_unicode_to_hex("E052"); end
|
1009
|
+
def blowfish; return convert_unicode_to_hex("E019"); end
|
1010
|
+
def ant; warning(get_this_method); return nil; end
|
1011
|
+
def paw_prints; return convert_unicode_to_hex("E536"); end
|
1012
|
+
def turtle; warning(get_this_method); return nil; end
|
1013
|
+
def dragon_face; warning(get_this_method); return nil; end
|
1014
|
+
def panda_face; warning(get_this_method); return nil; end
|
1015
|
+
def pig_nose; return convert_unicode_to_hex("E10B"); end
|
1016
|
+
def honeybee; warning(get_this_method); return nil; end
|
1017
|
+
def ladybug; warning(get_this_method); return nil; end
|
1018
|
+
|
1019
|
+
|
1020
|
+
def angry_face; return convert_unicode_to_hex("E059"); end
|
1021
|
+
def anguished_face; return convert_unicode_to_hex("E403"); end
|
1022
|
+
def astonished_face; return convert_unicode_to_hex("E410"); end
|
1023
|
+
def disappointed_face; return convert_unicode_to_hex("E058"); end
|
1024
|
+
def dizzy_face; return convert_unicode_to_hex("E406"); end
|
1025
|
+
def exasperated_face; return convert_unicode_to_hex("E40F"); end
|
1026
|
+
def expressionless_face; return convert_unicode_to_hex("E40E"); end
|
1027
|
+
def face_with_heart_shaped_eyes; return convert_unicode_to_hex("E106"); end
|
1028
|
+
def face_with_look_of_triumph; return convert_unicode_to_hex("E404"); end
|
1029
|
+
def winking_face_with_stuck_out_tongue; return convert_unicode_to_hex("E105"); end
|
1030
|
+
def face_with_stuck_out_tongue; return convert_unicode_to_hex("E409"); end
|
1031
|
+
def face_savoring_delicious_food; return convert_unicode_to_hex("E056"); end
|
1032
|
+
def face_throwing_a_kiss; return convert_unicode_to_hex("E418"); end
|
1033
|
+
def face_kissing; return convert_unicode_to_hex("E417"); end
|
1034
|
+
def face_with_mask; return convert_unicode_to_hex("E40C"); end
|
1035
|
+
def flushed_face; return convert_unicode_to_hex("E40D"); end
|
1036
|
+
def happy_face_with_open_mouth; return convert_unicode_to_hex("E057"); end
|
1037
|
+
def happy_face_with_open_mouth_and_cold_sweat; return convert_unicode_to_hex("E415"); end
|
1038
|
+
def happy_face_with_open_mouth_and_closed_eyes; return convert_unicode_to_hex("E40A"); end
|
1039
|
+
def happy_face_with_grin; return convert_unicode_to_hex("E404"); end
|
1040
|
+
def happy_and_crying_face; return convert_unicode_to_hex("E412"); end
|
1041
|
+
def happy_face_with_wide_mouth_and_raised_eyebrows; return convert_unicode_to_hex("E056"); end
|
1042
|
+
def white_smiling_face; return convert_unicode_to_hex("E414"); end
|
1043
|
+
def happy_face_with_open_mouth_and_raised_eyebrows; return convert_unicode_to_hex("E415"); end
|
1044
|
+
def crying_face; return convert_unicode_to_hex("E413"); end
|
1045
|
+
def loudly_crying_face; return convert_unicode_to_hex("E411"); end
|
1046
|
+
def fearful_face; return convert_unicode_to_hex("E40B"); end
|
1047
|
+
def persevering_face; return convert_unicode_to_hex("E406"); end
|
1048
|
+
def pouting_face; return convert_unicode_to_hex("E416"); end
|
1049
|
+
def relieved_face; return convert_unicode_to_hex("E40A"); end
|
1050
|
+
def confounded_face; return convert_unicode_to_hex("E407"); end
|
1051
|
+
def pensive_face; return convert_unicode_to_hex("E403"); end
|
1052
|
+
def face_screaming_in_fear; return convert_unicode_to_hex("E107"); end
|
1053
|
+
def sleepy_face; return convert_unicode_to_hex("E408"); end
|
1054
|
+
def smirking_face; return convert_unicode_to_hex("E402"); end
|
1055
|
+
def face_with_cold_sweat; return convert_unicode_to_hex("E108"); end
|
1056
|
+
def disappointed_but_relieved_face; return convert_unicode_to_hex("E401"); end
|
1057
|
+
def tired_face; return convert_unicode_to_hex("E406"); end
|
1058
|
+
def winking_face; return convert_unicode_to_hex("E405"); end
|
1059
|
+
|
1060
|
+
def cat_face_with_open_mouth; return convert_unicode_to_hex("E057"); end
|
1061
|
+
def happy_cat_face_with_grin; return convert_unicode_to_hex("E404"); end
|
1062
|
+
def happy_and_crying_cat_face; return convert_unicode_to_hex("E412"); end
|
1063
|
+
def cat_face_kissing; return convert_unicode_to_hex("E418"); end
|
1064
|
+
def cat_face_with_heart_shaped_eyes; return convert_unicode_to_hex("E106"); end
|
1065
|
+
def crying_cat_face; return convert_unicode_to_hex("E413"); end
|
1066
|
+
def pouting_cat_face; return convert_unicode_to_hex("E416"); end
|
1067
|
+
def cat_face_with_tightly_closed_lips; return convert_unicode_to_hex("E404"); end
|
1068
|
+
def anguished_cat_face; return convert_unicode_to_hex("E403"); end
|
1069
|
+
|
1070
|
+
def face_with_no_good_gesture; return convert_unicode_to_hex("E423"); end
|
1071
|
+
def face_with_ok_gesture; return convert_unicode_to_hex("E424"); end
|
1072
|
+
def person_bowing_deeply; return convert_unicode_to_hex("E426"); end
|
1073
|
+
def see_no_evil_monkey; warning(get_this_method); return nil; end
|
1074
|
+
def speak_no_evil_monkey; warning(get_this_method); return nil; end
|
1075
|
+
def hear_no_evil_monkey; warning(get_this_method); return nil; end
|
1076
|
+
def person_raising_one_hand; return convert_unicode_to_hex("E012"); end
|
1077
|
+
def person_raising_both_hands_in_cheers; return convert_unicode_to_hex("E427"); end
|
1078
|
+
def person_frowning; return convert_unicode_to_hex("E403"); end
|
1079
|
+
def person_with_pouting_face; return convert_unicode_to_hex("E416"); end
|
1080
|
+
def person_with_folded_hands; return convert_unicode_to_hex("E41D"); end
|
1081
|
+
|
1082
|
+
|
1083
|
+
def house_building; return convert_unicode_to_hex("E036"); end
|
1084
|
+
def house_with_yard; return convert_unicode_to_hex("E036"); end
|
1085
|
+
def office_building; return convert_unicode_to_hex("E038"); end
|
1086
|
+
def japanese_post_office; return convert_unicode_to_hex("E153"); end
|
1087
|
+
def hospital; return convert_unicode_to_hex("E155"); end
|
1088
|
+
def bank; return convert_unicode_to_hex("E14D"); end
|
1089
|
+
def atm; return convert_unicode_to_hex("E154"); end
|
1090
|
+
def hotel; return convert_unicode_to_hex("E158"); end
|
1091
|
+
def love_hotel; return convert_unicode_to_hex("E501"); end
|
1092
|
+
def convenience_store; return convert_unicode_to_hex("E156"); end
|
1093
|
+
def school; return convert_unicode_to_hex("E157"); end
|
1094
|
+
def church; return convert_unicode_to_hex("E037"); end
|
1095
|
+
def fountain; return convert_unicode_to_hex("E121"); end
|
1096
|
+
def department_store; return convert_unicode_to_hex("E504"); end
|
1097
|
+
def japanese_castle; return convert_unicode_to_hex("E505"); end
|
1098
|
+
def western_castle; return convert_unicode_to_hex("E506"); end
|
1099
|
+
def factory; return convert_unicode_to_hex("E508"); end
|
1100
|
+
def anchor; return convert_unicode_to_hex("E202"); end
|
1101
|
+
def izakaya_lantern; return convert_unicode_to_hex("E30B"); end
|
1102
|
+
|
1103
|
+
def emoji_compatibility_symbol_1; return convert_unicode_to_hex("E03B"); end
|
1104
|
+
def emoji_compatibility_symbol_2; return convert_unicode_to_hex("E509"); end
|
1105
|
+
def emoji_compatibility_symbol_3; return convert_unicode_to_hex("E51D"); end
|
1106
|
+
def emoji_compatibility_symbol_4; warning(get_this_method); return nil; end
|
1107
|
+
def emoji_compatibility_symbol_5; warning(get_this_method); return nil; end
|
1108
|
+
|
1109
|
+
def wrench; warning(get_this_method); return nil; end
|
1110
|
+
def hammer; return convert_unicode_to_hex("E116"); end
|
1111
|
+
def nut_and_bolt; warning(get_this_method); return nil; end
|
1112
|
+
|
1113
|
+
def mans_shoe; return convert_unicode_to_hex("E007"); end
|
1114
|
+
def sneaker; return convert_unicode_to_hex("E007"); end
|
1115
|
+
def high_heeled_shoe; return convert_unicode_to_hex("E13E"); end
|
1116
|
+
def womans_sandal; return convert_unicode_to_hex("E31A"); end
|
1117
|
+
def womans_boots; return convert_unicode_to_hex("E31B"); end
|
1118
|
+
def eyeglasses; warning(get_this_method); return nil; end
|
1119
|
+
def t_shirt; return convert_unicode_to_hex("E006"); end
|
1120
|
+
def jeans; warning(get_this_method); return nil; end
|
1121
|
+
def crown; return convert_unicode_to_hex("E10E"); end
|
1122
|
+
def necktie; return convert_unicode_to_hex("E302"); end
|
1123
|
+
def womans_hat; return convert_unicode_to_hex("E318"); end
|
1124
|
+
def dress; return convert_unicode_to_hex("E319"); end
|
1125
|
+
def kimono; return convert_unicode_to_hex("E321"); end
|
1126
|
+
def bikini; return convert_unicode_to_hex("E322"); end
|
1127
|
+
def womans_clothes; return convert_unicode_to_hex("E006"); end
|
1128
|
+
def purse; warning(get_this_method); return nil; end
|
1129
|
+
|
1130
|
+
def money_bag; return convert_unicode_to_hex("E12F"); end
|
1131
|
+
def currency_exchange; return convert_unicode_to_hex("E149"); end
|
1132
|
+
def chart_with_upwards_trend_and_yen_symbol; return convert_unicode_to_hex("E14A"); end
|
1133
|
+
def heavy_dollar_sign; return convert_unicode_to_hex("E12F"); end
|
1134
|
+
def credit_card; warning(get_this_method); return nil; end
|
1135
|
+
def banknote_with_yen_sign; warning(get_this_method); return nil; end
|
1136
|
+
def banknote_with_dollar_sign; return convert_unicode_to_hex("E12F"); end
|
1137
|
+
def money_with_wings; warning(get_this_method); return nil; end
|
1138
|
+
|
1139
|
+
def emoji_compatibility_symbol_6; return convert_unicode_to_hex("E513"); end
|
1140
|
+
def emoji_compatibility_symbol_7; return convert_unicode_to_hex("E50E"); end
|
1141
|
+
def emoji_compatibility_symbol_8; return convert_unicode_to_hex("E511"); end
|
1142
|
+
def emoji_compatibility_symbol_9; return convert_unicode_to_hex("E50D"); end
|
1143
|
+
def emoji_compatibility_symbol_10; return convert_unicode_to_hex("E510"); end
|
1144
|
+
def emoji_compatibility_symbol_11; return convert_unicode_to_hex("E50F"); end
|
1145
|
+
def emoji_compatibility_symbol_12; return convert_unicode_to_hex("E50B"); end
|
1146
|
+
def emoji_compatibility_symbol_13; return convert_unicode_to_hex("E514"); end
|
1147
|
+
def emoji_compatibility_symbol_14; return convert_unicode_to_hex("E512"); end
|
1148
|
+
def emoji_compatibility_symbol_15; return convert_unicode_to_hex("E50C"); end
|
1149
|
+
|
1150
|
+
def camera; return convert_unicode_to_hex("E008"); end
|
1151
|
+
def handbag; return convert_unicode_to_hex("E323"); end
|
1152
|
+
def pouch; warning(get_this_method); return nil; end
|
1153
|
+
def bell; return convert_unicode_to_hex("E325"); end
|
1154
|
+
def door; warning(get_this_method); return nil; end
|
1155
|
+
def dung; return convert_unicode_to_hex("E05A"); end
|
1156
|
+
def pistol; return convert_unicode_to_hex("E113"); end
|
1157
|
+
def fire; return convert_unicode_to_hex("E11D"); end
|
1158
|
+
def crystal_ball; return convert_unicode_to_hex("E23E"); end
|
1159
|
+
def six_pointed_star_with_middle_dot; return convert_unicode_to_hex("E23E"); end
|
1160
|
+
def video_camera; return convert_unicode_to_hex("E03D"); end
|
1161
|
+
def knife; warning(get_this_method); return nil; end
|
1162
|
+
def flashlight; warning(get_this_method); return nil; end
|
1163
|
+
def battery; warning(get_this_method); return nil; end
|
1164
|
+
def scroll; warning(get_this_method); return nil; end
|
1165
|
+
def electric_plug; warning(get_this_method); return nil; end
|
1166
|
+
def book_1; return convert_unicode_to_hex("E148"); end
|
1167
|
+
def book_2; return convert_unicode_to_hex("E148"); end
|
1168
|
+
def book_3; return convert_unicode_to_hex("E148"); end
|
1169
|
+
def vertical_closed_book; return convert_unicode_to_hex("E148"); end
|
1170
|
+
def books; return convert_unicode_to_hex("E148"); end
|
1171
|
+
def name_badge; warning(get_this_method); return nil; end
|
1172
|
+
|
1173
|
+
def bath; return convert_unicode_to_hex("E13F"); end
|
1174
|
+
def restroom; return convert_unicode_to_hex("E151"); end
|
1175
|
+
def toilet; return convert_unicode_to_hex("E140"); end
|
1176
|
+
def water_closet; return convert_unicode_to_hex("E309"); end
|
1177
|
+
|
1178
|
+
def syringe; return convert_unicode_to_hex("E13B"); end
|
1179
|
+
def pill; return convert_unicode_to_hex("E30F"); end
|
1180
|
+
|
1181
|
+
def negative_squared_latin_capital_letter_a; return convert_unicode_to_hex("E532"); end
|
1182
|
+
def negative_squared_latin_capital_letter_b; return convert_unicode_to_hex("E533"); end
|
1183
|
+
def negative_squared_ab; return convert_unicode_to_hex("E534"); end
|
1184
|
+
def negative_squared_latin_capital_letter_o; return convert_unicode_to_hex("E535"); end
|
1185
|
+
|
1186
|
+
def ribbon; return convert_unicode_to_hex("E314"); end
|
1187
|
+
def wrapped_present; return convert_unicode_to_hex("E112"); end
|
1188
|
+
def birthday_cake; return convert_unicode_to_hex("E34B"); end
|
1189
|
+
def christmas_tree; return convert_unicode_to_hex("E033"); end
|
1190
|
+
def santa_claus; return convert_unicode_to_hex("E448"); end
|
1191
|
+
def crossed_flags; return convert_unicode_to_hex("E143"); end
|
1192
|
+
def fireworks; return convert_unicode_to_hex("E117"); end
|
1193
|
+
def balloon; return convert_unicode_to_hex("E310"); end
|
1194
|
+
def party_popper; return convert_unicode_to_hex("E312"); end
|
1195
|
+
def pine_decoration; return convert_unicode_to_hex("E436"); end
|
1196
|
+
def girls_doll_festival; return convert_unicode_to_hex("E438"); end
|
1197
|
+
def graduation_cap; return convert_unicode_to_hex("E439"); end
|
1198
|
+
def school_satchel; return convert_unicode_to_hex("E43A"); end
|
1199
|
+
def carp_streamer; return convert_unicode_to_hex("E43B"); end
|
1200
|
+
def firework_sparkler; return convert_unicode_to_hex("E440"); end
|
1201
|
+
def wind_chime; return convert_unicode_to_hex("E442"); end
|
1202
|
+
def jack_o_lantern; return convert_unicode_to_hex("E445"); end
|
1203
|
+
def confetti_ball; warning(get_this_method); return nil; end
|
1204
|
+
def tanabata_tree; warning(get_this_method); return nil; end
|
1205
|
+
def moon_viewing_ceremony; return convert_unicode_to_hex("E446"); end
|
1206
|
+
|
1207
|
+
def pager; warning(get_this_method); return nil; end
|
1208
|
+
def black_telephone; return convert_unicode_to_hex("E009"); end
|
1209
|
+
def telephone_receiver; return convert_unicode_to_hex("E009"); end
|
1210
|
+
def mobile_phone; return convert_unicode_to_hex("E00A"); end
|
1211
|
+
def phone_with_arrow; return convert_unicode_to_hex("E104"); end
|
1212
|
+
def memo; return convert_unicode_to_hex("E301"); end
|
1213
|
+
def fax; return convert_unicode_to_hex("E00B"); end
|
1214
|
+
def envelope; return convert_unicode_to_hex("E103"); end
|
1215
|
+
def incoming_envelope; return convert_unicode_to_hex("E103"); end
|
1216
|
+
def envelope_with_arrow; return convert_unicode_to_hex("E103"); end
|
1217
|
+
def mailbox; return convert_unicode_to_hex("E101"); end
|
1218
|
+
def mailbox_with_raised_flag; return convert_unicode_to_hex("E101"); end
|
1219
|
+
def postbox; return convert_unicode_to_hex("E102"); end
|
1220
|
+
def public_address_loudspeaker; return convert_unicode_to_hex("E142"); end
|
1221
|
+
def cheering_megaphone; return convert_unicode_to_hex("E317"); end
|
1222
|
+
def satellite_antenna; return convert_unicode_to_hex("E14B"); end
|
1223
|
+
def speech_balloon; warning(get_this_method); return nil; end
|
1224
|
+
def outbox_tray; warning(get_this_method); return nil; end
|
1225
|
+
def inbox_tray; warning(get_this_method); return nil; end
|
1226
|
+
def package; return convert_unicode_to_hex("E112"); end
|
1227
|
+
|
1228
|
+
def latin_capital_letters_input_symbol; warning(get_this_method); return nil; end
|
1229
|
+
def latin_small_letters_input_symbol; warning(get_this_method); return nil; end
|
1230
|
+
def numbers_input_symbol; warning(get_this_method); return nil; end
|
1231
|
+
def symbols_input_symbol; warning(get_this_method); return nil; end
|
1232
|
+
def latin_letters_input_symbol; warning(get_this_method); return nil; end
|
1233
|
+
|
1234
|
+
def black_nib; warning(get_this_method); return nil; end
|
1235
|
+
def seat; return convert_unicode_to_hex("E11F"); end
|
1236
|
+
def computer; return convert_unicode_to_hex("E00C"); end
|
1237
|
+
def pencil; return convert_unicode_to_hex("E301"); end
|
1238
|
+
def paperclip; warning(get_this_method); return nil; end
|
1239
|
+
def briefcase; return convert_unicode_to_hex("E11E"); end
|
1240
|
+
def mini_disc; return convert_unicode_to_hex("E316"); end
|
1241
|
+
def floppy_disk; return convert_unicode_to_hex("E316"); end
|
1242
|
+
def black_scissors; return convert_unicode_to_hex("E313"); end
|
1243
|
+
def round_pushpin; warning(get_this_method); return nil; end
|
1244
|
+
def page_with_curl; return convert_unicode_to_hex("E301"); end
|
1245
|
+
def page_facing_up; return convert_unicode_to_hex("E301"); end
|
1246
|
+
def calendar; warning(get_this_method); return nil; end
|
1247
|
+
def file_folder; warning(get_this_method); return nil; end
|
1248
|
+
def open_file_folder; warning(get_this_method); return nil; end
|
1249
|
+
def notebook; return convert_unicode_to_hex("E148"); end
|
1250
|
+
def open_book; return convert_unicode_to_hex("E148"); end
|
1251
|
+
def notebook_with_decorative_cover; return convert_unicode_to_hex("E148"); end
|
1252
|
+
def clipboard; return convert_unicode_to_hex("E301"); end
|
1253
|
+
def tear_off_calendar; warning(get_this_method); return nil; end
|
1254
|
+
def bar_chart; return convert_unicode_to_hex("E14A"); end
|
1255
|
+
def chart_with_upwards_trend; return convert_unicode_to_hex("E14A"); end
|
1256
|
+
def chart_with_downwards_trend; warning(get_this_method); return nil; end
|
1257
|
+
def card_index; return convert_unicode_to_hex("E148"); end
|
1258
|
+
def pushpin; warning(get_this_method); return nil; end
|
1259
|
+
def ledger; return convert_unicode_to_hex("E148"); end
|
1260
|
+
def straight_ruler; warning(get_this_method); return nil; end
|
1261
|
+
def triangular_ruler; warning(get_this_method); return nil; end
|
1262
|
+
def bookmark_tabs; return convert_unicode_to_hex("E301"); end
|
1263
|
+
|
1264
|
+
def footprints; return convert_unicode_to_hex("E536"); end
|
1265
|
+
|
1266
|
+
|
1267
|
+
def running_shirt_with_sash; warning(get_this_method); return nil; end
|
1268
|
+
def baseball; return convert_unicode_to_hex("E016"); end
|
1269
|
+
def flag_in_hole; return convert_unicode_to_hex("E014"); end
|
1270
|
+
def tennis; return convert_unicode_to_hex("E015"); end
|
1271
|
+
def soccer_ball; return convert_unicode_to_hex("E018"); end
|
1272
|
+
def skiing; return convert_unicode_to_hex("E013"); end
|
1273
|
+
def basketball; return convert_unicode_to_hex("E42A"); end
|
1274
|
+
def checkered_flag; return convert_unicode_to_hex("E132"); end
|
1275
|
+
def snowboarder; warning(get_this_method); return nil; end
|
1276
|
+
def runner; return convert_unicode_to_hex("E115"); end
|
1277
|
+
def surfer; return convert_unicode_to_hex("E017"); end
|
1278
|
+
def trophy; return convert_unicode_to_hex("E131"); end
|
1279
|
+
def horse_racing; return convert_unicode_to_hex("E134"); end
|
1280
|
+
def american_football; return convert_unicode_to_hex("E42B"); end
|
1281
|
+
def swimmer; return convert_unicode_to_hex("E42D"); end
|
1282
|
+
|
1283
|
+
def train; return convert_unicode_to_hex("E01E"); end
|
1284
|
+
def subway; return convert_unicode_to_hex("E434"); end
|
1285
|
+
def circled_latin_capital_letter_m; return convert_unicode_to_hex("E434"); end
|
1286
|
+
def high_speed_train; return convert_unicode_to_hex("E435"); end
|
1287
|
+
def high_speed_train_with_bullet_nose; return convert_unicode_to_hex("E01F"); end
|
1288
|
+
def automobile_1; return convert_unicode_to_hex("E01B"); end
|
1289
|
+
def recreational_vehicle; return convert_unicode_to_hex("E42E"); end
|
1290
|
+
def bus_2; return convert_unicode_to_hex("E159"); end
|
1291
|
+
def bus_stop; return convert_unicode_to_hex("E150"); end
|
1292
|
+
def ship; return convert_unicode_to_hex("E202"); end
|
1293
|
+
def airplane; return convert_unicode_to_hex("E01D"); end
|
1294
|
+
def sailboat; return convert_unicode_to_hex("E01C"); end
|
1295
|
+
def bicycle; return convert_unicode_to_hex("E136"); end
|
1296
|
+
def station; return convert_unicode_to_hex("E039"); end
|
1297
|
+
def rocket; return convert_unicode_to_hex("E10D"); end
|
1298
|
+
def speedboat; return convert_unicode_to_hex("E135"); end
|
1299
|
+
def taxi_1; return convert_unicode_to_hex("E15A"); end
|
1300
|
+
def pedestrian; return convert_unicode_to_hex("E201"); end
|
1301
|
+
def truck; return convert_unicode_to_hex("E42F"); end
|
1302
|
+
def fire_engine; return convert_unicode_to_hex("E430"); end
|
1303
|
+
def ambulance; return convert_unicode_to_hex("E431"); end
|
1304
|
+
def police_car_1; return convert_unicode_to_hex("E432"); end
|
1305
|
+
|
1306
|
+
def fuel_pump; return convert_unicode_to_hex("E03A"); end
|
1307
|
+
def negative_squared_latin_capital_letter_p; return convert_unicode_to_hex("E14F"); end
|
1308
|
+
|
1309
|
+
def horizontal_traffic_light; return convert_unicode_to_hex("E14E"); end
|
1310
|
+
def construction_sign; return convert_unicode_to_hex("E137"); end
|
1311
|
+
def police_cars_revolving_light; return convert_unicode_to_hex("E432"); end
|
1312
|
+
|
1313
|
+
def hot_springs; return convert_unicode_to_hex("E123"); end
|
1314
|
+
def tent; return convert_unicode_to_hex("E122"); end
|
1315
|
+
def carousel_horse; warning(get_this_method); return nil; end
|
1316
|
+
def ferris_wheel; return convert_unicode_to_hex("E124"); end
|
1317
|
+
def roller_coaster; return convert_unicode_to_hex("E433"); end
|
1318
|
+
def fishing; return convert_unicode_to_hex("E019"); end
|
1319
|
+
def microphone; return convert_unicode_to_hex("E03C"); end
|
1320
|
+
def movies; return convert_unicode_to_hex("E03D"); end
|
1321
|
+
def cinema; return convert_unicode_to_hex("E507"); end
|
1322
|
+
def headphone; return convert_unicode_to_hex("E30A"); end
|
1323
|
+
def art; return convert_unicode_to_hex("E502"); end
|
1324
|
+
def top_hat; return convert_unicode_to_hex("E503"); end
|
1325
|
+
def event; warning(get_this_method); return nil; end
|
1326
|
+
def ticket; return convert_unicode_to_hex("E125"); end
|
1327
|
+
def movie_shooting_clapboard; return convert_unicode_to_hex("E324"); end
|
1328
|
+
def performing_arts; return convert_unicode_to_hex("E503"); end
|
1329
|
+
|
1330
|
+
def video_game; warning(get_this_method); return nil; end
|
1331
|
+
def mahjong_tile_red_dragon; return convert_unicode_to_hex("E12D"); end
|
1332
|
+
def direct_hit; return convert_unicode_to_hex("E130"); end
|
1333
|
+
def slot_machine; return convert_unicode_to_hex("E133"); end
|
1334
|
+
def billiards; return convert_unicode_to_hex("E42C"); end
|
1335
|
+
def game_die; warning(get_this_method); return nil; end
|
1336
|
+
def bowling; warning(get_this_method); return nil; end
|
1337
|
+
def flower_playing_cards; warning(get_this_method); return nil; end
|
1338
|
+
def playing_card_black_joker; warning(get_this_method); return nil; end
|
1339
|
+
|
1340
|
+
def musical_note; return convert_unicode_to_hex("E03E"); end
|
1341
|
+
def multiple_musical_notes; return convert_unicode_to_hex("E326"); end
|
1342
|
+
def saxophone; return convert_unicode_to_hex("E040"); end
|
1343
|
+
def guitar; return convert_unicode_to_hex("E041"); end
|
1344
|
+
def musical_keyboard; warning(get_this_method); return nil; end
|
1345
|
+
def trumpet; return convert_unicode_to_hex("E042"); end
|
1346
|
+
def violin; warning(get_this_method); return nil; end
|
1347
|
+
def musical_score; return convert_unicode_to_hex("E326"); end
|
1348
|
+
def part_alternation_mark; return convert_unicode_to_hex("E12C"); end
|
1349
|
+
|
1350
|
+
def television; return convert_unicode_to_hex("E12A"); end
|
1351
|
+
def optical_disk; return convert_unicode_to_hex("E126"); end
|
1352
|
+
def dvd; return convert_unicode_to_hex("E127"); end
|
1353
|
+
def radio; return convert_unicode_to_hex("E128"); end
|
1354
|
+
def video_cassette_tape; return convert_unicode_to_hex("E129"); end
|
1355
|
+
def speaker_with_three_sound_waves; return convert_unicode_to_hex("E141"); end
|
1356
|
+
def newspaper; warning(get_this_method); return nil; end
|
1357
|
+
|
1358
|
+
def kiss_mark; return convert_unicode_to_hex("E003"); end
|
1359
|
+
def love_letter; return convert_unicode_to_hex("E103"); end
|
1360
|
+
def ring; return convert_unicode_to_hex("E034"); end
|
1361
|
+
def gem_stone; return convert_unicode_to_hex("E035"); end
|
1362
|
+
def kiss; return convert_unicode_to_hex("E111"); end
|
1363
|
+
def bouquet; return convert_unicode_to_hex("E306"); end
|
1364
|
+
def couple_with_heart; return convert_unicode_to_hex("E425"); end
|
1365
|
+
def wedding; return convert_unicode_to_hex("E43D"); end
|
1366
|
+
|
1367
|
+
def hash_key; return convert_unicode_to_hex("E210"); end
|
1368
|
+
def keycap_1; return convert_unicode_to_hex("E21C"); end
|
1369
|
+
def keycap_2; return convert_unicode_to_hex("E21D"); end
|
1370
|
+
def keycap_3; return convert_unicode_to_hex("E21E"); end
|
1371
|
+
def keycap_4; return convert_unicode_to_hex("E21F"); end
|
1372
|
+
def keycap_5; return convert_unicode_to_hex("E220"); end
|
1373
|
+
def keycap_6; return convert_unicode_to_hex("E221"); end
|
1374
|
+
def keycap_7; return convert_unicode_to_hex("E222"); end
|
1375
|
+
def keycap_8; return convert_unicode_to_hex("E223"); end
|
1376
|
+
def keycap_9; return convert_unicode_to_hex("E224"); end
|
1377
|
+
def keycap_0; return convert_unicode_to_hex("E225"); end
|
1378
|
+
def keycap_ten; warning(get_this_method); return nil; end
|
1379
|
+
def antenna_with_bars; return convert_unicode_to_hex("E20B"); end
|
1380
|
+
def vibration_mode; return convert_unicode_to_hex("E250"); end
|
1381
|
+
def mobile_phone_off; return convert_unicode_to_hex("E251"); end
|
1382
|
+
|
1383
|
+
|
1384
|
+
def hamburger; return convert_unicode_to_hex("E120"); end
|
1385
|
+
def rice_ball; return convert_unicode_to_hex("E342"); end
|
1386
|
+
def shortcake; return convert_unicode_to_hex("E046"); end
|
1387
|
+
def steaming_bowl; return convert_unicode_to_hex("E340"); end
|
1388
|
+
def bread; return convert_unicode_to_hex("E339"); end
|
1389
|
+
def cooking; return convert_unicode_to_hex("E147"); end
|
1390
|
+
def soft_ice_cream; return convert_unicode_to_hex("E33A"); end
|
1391
|
+
def french_fries; return convert_unicode_to_hex("E33B"); end
|
1392
|
+
def dumpling; return convert_unicode_to_hex("E33C"); end
|
1393
|
+
def rice_cracker; return convert_unicode_to_hex("E33D"); end
|
1394
|
+
def cooked_rice; return convert_unicode_to_hex("E33E"); end
|
1395
|
+
def spaghetti; return convert_unicode_to_hex("E33F"); end
|
1396
|
+
def curry_and_rice; return convert_unicode_to_hex("E341"); end
|
1397
|
+
def seafood_casserole; return convert_unicode_to_hex("E343"); end
|
1398
|
+
def sushi; return convert_unicode_to_hex("E344"); end
|
1399
|
+
def lunchbox; return convert_unicode_to_hex("E34C"); end
|
1400
|
+
def pot_of_food; return convert_unicode_to_hex("E34D"); end
|
1401
|
+
def shaved_ice; return convert_unicode_to_hex("E43F"); end
|
1402
|
+
def meat_on_bone; warning(get_this_method); return nil; end
|
1403
|
+
def fish_cake_with_swirl_design; warning(get_this_method); return nil; end
|
1404
|
+
def roasted_sweet_potato; warning(get_this_method); return nil; end
|
1405
|
+
def slice_of_pizza; warning(get_this_method); return nil; end
|
1406
|
+
def poultry_leg; warning(get_this_method); return nil; end
|
1407
|
+
def ice_cream; warning(get_this_method); return nil; end
|
1408
|
+
def doughnut; warning(get_this_method); return nil; end
|
1409
|
+
def cookie; warning(get_this_method); return nil; end
|
1410
|
+
def chocolate_bar; warning(get_this_method); return nil; end
|
1411
|
+
def candy; warning(get_this_method); return nil; end
|
1412
|
+
def lollipop; warning(get_this_method); return nil; end
|
1413
|
+
def custard; warning(get_this_method); return nil; end
|
1414
|
+
def honey_pot; warning(get_this_method); return nil; end
|
1415
|
+
def fried_shrimp; warning(get_this_method); return nil; end
|
1416
|
+
def fork_and_knife; return convert_unicode_to_hex("E043"); end
|
1417
|
+
|
1418
|
+
def hot_beverage; return convert_unicode_to_hex("E045"); end
|
1419
|
+
def cocktail_glass; return convert_unicode_to_hex("E044"); end
|
1420
|
+
def beer_mug; return convert_unicode_to_hex("E047"); end
|
1421
|
+
def teacup_without_handle; return convert_unicode_to_hex("E338"); end
|
1422
|
+
def sake_bottle_and_cup; return convert_unicode_to_hex("E30B"); end
|
1423
|
+
def wine_glass; return convert_unicode_to_hex("E044"); end
|
1424
|
+
def clinking_beer_mugs; return convert_unicode_to_hex("E30C"); end
|
1425
|
+
def tropical_drink; return convert_unicode_to_hex("E044"); end
|
1426
|
+
|
1427
|
+
|
1428
|
+
def north_east_arrow; return convert_unicode_to_hex("E236"); end
|
1429
|
+
def south_east_arrow; return convert_unicode_to_hex("E238"); end
|
1430
|
+
def north_west_arrow; return convert_unicode_to_hex("E237"); end
|
1431
|
+
def south_west_arrow; return convert_unicode_to_hex("E239"); end
|
1432
|
+
def arrow_pointing_rightwards_then_curving_upwards; return convert_unicode_to_hex("E236"); end
|
1433
|
+
def arrow_pointing_rightwards_then_curving_downwards; return convert_unicode_to_hex("E238"); end
|
1434
|
+
def left_right_arrow; warning(get_this_method); return nil; end
|
1435
|
+
def up_down_arrow; warning(get_this_method); return nil; end
|
1436
|
+
def upwards_black_arrow; return convert_unicode_to_hex("E232"); end
|
1437
|
+
def downwards_black_arrow; return convert_unicode_to_hex("E233"); end
|
1438
|
+
def black_rightwards_arrow; return convert_unicode_to_hex("E234"); end
|
1439
|
+
def leftwards_black_arrow; return convert_unicode_to_hex("E235"); end
|
1440
|
+
|
1441
|
+
def black_right_pointing_triangle; return convert_unicode_to_hex("E23A"); end
|
1442
|
+
def black_left_pointing_triangle; return convert_unicode_to_hex("E23B"); end
|
1443
|
+
def black_right_pointing_double_triangle; return convert_unicode_to_hex("E23C"); end
|
1444
|
+
def black_left_pointing_double_triangle; return convert_unicode_to_hex("E23D"); end
|
1445
|
+
def black_up_pointing_double_triangle; warning(get_this_method); return nil; end
|
1446
|
+
def black_down_pointing_double_triangle; warning(get_this_method); return nil; end
|
1447
|
+
def up_pointing_triangle_1; warning(get_this_method); return nil; end
|
1448
|
+
def down_pointing_triangle_1; warning(get_this_method); return nil; end
|
1449
|
+
def up_pointing_small_triangle_1; warning(get_this_method); return nil; end
|
1450
|
+
def down_pointing_small_triangle_1; warning(get_this_method); return nil; end
|
1451
|
+
|
1452
|
+
def heavy_exclamation_mark_ornament; return convert_unicode_to_hex("E021"); end
|
1453
|
+
def exclamation_question_mark; warning(get_this_method); return nil; end
|
1454
|
+
def double_exclamation_mark; warning(get_this_method); return nil; end
|
1455
|
+
def black_question_mark_ornament; return convert_unicode_to_hex("E020"); end
|
1456
|
+
def white_question_mark_ornament; return convert_unicode_to_hex("E336"); end
|
1457
|
+
def white_exclamation_mark_ornament; return convert_unicode_to_hex("E337"); end
|
1458
|
+
|
1459
|
+
def wavy_dash; warning(get_this_method); return nil; end
|
1460
|
+
def looped_length_mark; warning(get_this_method); return nil; end
|
1461
|
+
|
1462
|
+
def heavy_black_heart; return convert_unicode_to_hex("E022"); end
|
1463
|
+
def beating_heart; return convert_unicode_to_hex("E327"); end
|
1464
|
+
def broken_heart; return convert_unicode_to_hex("E023"); end
|
1465
|
+
def two_hearts; return convert_unicode_to_hex("E327"); end
|
1466
|
+
def sparkling_heart; return convert_unicode_to_hex("E327"); end
|
1467
|
+
def growing_heart; return convert_unicode_to_hex("E328"); end
|
1468
|
+
def heart_with_arrow; return convert_unicode_to_hex("E329"); end
|
1469
|
+
def heart_1; return convert_unicode_to_hex("E32A"); end
|
1470
|
+
def heart_2; return convert_unicode_to_hex("E32B"); end
|
1471
|
+
def heart_3; return convert_unicode_to_hex("E32C"); end
|
1472
|
+
def heart_4; return convert_unicode_to_hex("E32D"); end
|
1473
|
+
def heart_with_ribbon; return convert_unicode_to_hex("E437"); end
|
1474
|
+
def revolving_hearts; return convert_unicode_to_hex("E327"); end
|
1475
|
+
def heart_decoration; return convert_unicode_to_hex("E204"); end
|
1476
|
+
|
1477
|
+
def black_heart_suit; return convert_unicode_to_hex("E20C"); end
|
1478
|
+
def black_spade_suit; return convert_unicode_to_hex("E20E"); end
|
1479
|
+
def black_diamond_suit; return convert_unicode_to_hex("E20D"); end
|
1480
|
+
def black_club_suit; return convert_unicode_to_hex("E20F"); end
|
1481
|
+
|
1482
|
+
def smoking_symbol; return convert_unicode_to_hex("E30E"); end
|
1483
|
+
def no_smoking_symbol; return convert_unicode_to_hex("E208"); end
|
1484
|
+
def wheelchair_symbol; return convert_unicode_to_hex("E20A"); end
|
1485
|
+
def japanese_symbol_for_beginner; return convert_unicode_to_hex("E209"); end
|
1486
|
+
def trident_emblem; return convert_unicode_to_hex("E031"); end
|
1487
|
+
def triangular_flag_on_post; warning(get_this_method); return nil; end
|
1488
|
+
def warning_sign; return convert_unicode_to_hex("E252"); end
|
1489
|
+
def no_entry; return convert_unicode_to_hex("E137"); end
|
1490
|
+
def black_universal_recycling_symbol; warning(get_this_method); return nil; end
|
1491
|
+
def mens_symbol; return convert_unicode_to_hex("E138"); end
|
1492
|
+
def womens_symbol; return convert_unicode_to_hex("E139"); end
|
1493
|
+
def baby_symbol; return convert_unicode_to_hex("E13A"); end
|
1494
|
+
def heavy_large_circle; return convert_unicode_to_hex("E332"); end
|
1495
|
+
def cross_mark; return convert_unicode_to_hex("E333"); end
|
1496
|
+
def negative_squared_cross_mark; return convert_unicode_to_hex("E333"); end
|
1497
|
+
def no_entry_sign; warning(get_this_method); return nil; end
|
1498
|
+
def heavy_check_mark; warning(get_this_method); return nil; end
|
1499
|
+
def white_heavy_check_mark; warning(get_this_method); return nil; end
|
1500
|
+
def link_symbol; warning(get_this_method); return nil; end
|
1501
|
+
def em_space; warning(get_this_method); return nil; end
|
1502
|
+
def en_space; warning(get_this_method); return nil; end
|
1503
|
+
def four_per_em_space; warning(get_this_method); return nil; end
|
1504
|
+
|
1505
|
+
def free_sign; warning(get_this_method); return nil; end
|
1506
|
+
def no_one_under_eighteen_sign; return convert_unicode_to_hex("E207"); end
|
1507
|
+
def ok_sign; return convert_unicode_to_hex("E24D"); end
|
1508
|
+
def no_good_sign; warning(get_this_method); return nil; end
|
1509
|
+
def copyright_sign; return convert_unicode_to_hex("E24E"); end
|
1510
|
+
def registered_sign; return convert_unicode_to_hex("E24F"); end
|
1511
|
+
def trade_mark_sign; return convert_unicode_to_hex("E537"); end
|
1512
|
+
def vs_sign; return convert_unicode_to_hex("E12E"); end
|
1513
|
+
def new_sign; return convert_unicode_to_hex("E212"); end
|
1514
|
+
def up_sign; return convert_unicode_to_hex("E213"); end
|
1515
|
+
def cool_sign; return convert_unicode_to_hex("E214"); end
|
1516
|
+
def top_with_up_pointing_triangle_sign; return convert_unicode_to_hex("E24C"); end
|
1517
|
+
def information_source; warning(get_this_method); return nil; end
|
1518
|
+
def sos_sign; warning(get_this_method); return nil; end
|
1519
|
+
|
1520
|
+
def squared_katakana_koko; return convert_unicode_to_hex("E203"); end
|
1521
|
+
def squared_katakana_sa; return convert_unicode_to_hex("E228"); end
|
1522
|
+
|
1523
|
+
def squared_cjk_unified_ideograph_7981; warning(get_this_method); return nil; end
|
1524
|
+
def squared_cjk_unified_ideograph_7a7a; return convert_unicode_to_hex("E22B"); end
|
1525
|
+
def squared_cjk_unified_ideograph_5408; warning(get_this_method); return nil; end
|
1526
|
+
def squared_cjk_unified_ideograph_6e80; return convert_unicode_to_hex("E22A"); end
|
1527
|
+
def squared_cjk_unified_ideograph_6709; return convert_unicode_to_hex("E215"); end
|
1528
|
+
def squared_cjk_unified_ideograph_7121; return convert_unicode_to_hex("E216"); end
|
1529
|
+
def squared_cjk_unified_ideograph_6708; return convert_unicode_to_hex("E217"); end
|
1530
|
+
def squared_cjk_unified_ideograph_7533; return convert_unicode_to_hex("E218"); end
|
1531
|
+
def squared_cjk_unified_ideograph_5272; return convert_unicode_to_hex("E227"); end
|
1532
|
+
def squared_cjk_unified_ideograph_6307; return convert_unicode_to_hex("E22C"); end
|
1533
|
+
def squared_cjk_unified_ideograph_55b6; return convert_unicode_to_hex("E22D"); end
|
1534
|
+
|
1535
|
+
def circled_ideograph_secret; return convert_unicode_to_hex("E315"); end
|
1536
|
+
def circled_ideograph_congratulation; return convert_unicode_to_hex("E30D"); end
|
1537
|
+
def circled_ideograph_advantage; return convert_unicode_to_hex("E226"); end
|
1538
|
+
def circled_ideograph_accept; warning(get_this_method); return nil; end
|
1539
|
+
|
1540
|
+
def heavy_plus_sign; warning(get_this_method); return nil; end
|
1541
|
+
def heavy_minus_sign; warning(get_this_method); return nil; end
|
1542
|
+
def heavy_multiplication_x; return convert_unicode_to_hex("E333"); end
|
1543
|
+
def heavy_division_sign; warning(get_this_method); return nil; end
|
1544
|
+
|
1545
|
+
def diamond_shape_with_a_dot_inside; warning(get_this_method); return nil; end
|
1546
|
+
def electric_light_bulb; return convert_unicode_to_hex("E10F"); end
|
1547
|
+
def anger_sign; return convert_unicode_to_hex("E334"); end
|
1548
|
+
def bomb; return convert_unicode_to_hex("E311"); end
|
1549
|
+
def sleeping_sign; return convert_unicode_to_hex("E13C"); end
|
1550
|
+
def collision_symbol; warning(get_this_method); return nil; end
|
1551
|
+
def splashing_sweat; return convert_unicode_to_hex("E331"); end
|
1552
|
+
def drip; return convert_unicode_to_hex("E331"); end
|
1553
|
+
def dash_symbol; return convert_unicode_to_hex("E330"); end
|
1554
|
+
def flexed_bicep; return convert_unicode_to_hex("E14C"); end
|
1555
|
+
def dizzy_symbol; return convert_unicode_to_hex("E407"); end
|
1556
|
+
|
1557
|
+
def sparkles; return convert_unicode_to_hex("E32E"); end
|
1558
|
+
def eight_pointed_black_star; return convert_unicode_to_hex("E205"); end
|
1559
|
+
def eight_spoked_asterisk; return convert_unicode_to_hex("E206"); end
|
1560
|
+
def medium_white_circle; return convert_unicode_to_hex("E219"); end
|
1561
|
+
def medium_black_circle; return convert_unicode_to_hex("E219"); end
|
1562
|
+
def large_circle_1; return convert_unicode_to_hex("E219"); end
|
1563
|
+
def large_circle_2; return convert_unicode_to_hex("E21A"); end
|
1564
|
+
def black_rounded_square; return convert_unicode_to_hex("E21A"); end
|
1565
|
+
def white_rounded_square; return convert_unicode_to_hex("E21B"); end
|
1566
|
+
def white_medium_star; return convert_unicode_to_hex("E32F"); end
|
1567
|
+
def glowing_star; return convert_unicode_to_hex("E335"); end
|
1568
|
+
def shooting_star; warning(get_this_method); return nil; end
|
1569
|
+
def white_large_square; return convert_unicode_to_hex("E21B"); end
|
1570
|
+
def black_large_square; return convert_unicode_to_hex("E21A"); end
|
1571
|
+
def white_small_square; return convert_unicode_to_hex("E21B"); end
|
1572
|
+
def black_small_square; return convert_unicode_to_hex("E21A"); end
|
1573
|
+
def white_medium_small_square; return convert_unicode_to_hex("E21B"); end
|
1574
|
+
def black_medium_small_square; return convert_unicode_to_hex("E21A"); end
|
1575
|
+
def white_medium_square; return convert_unicode_to_hex("E21B"); end
|
1576
|
+
def black_medium_square; return convert_unicode_to_hex("E21A"); end
|
1577
|
+
def large_diamond_1; return convert_unicode_to_hex("E21B"); end
|
1578
|
+
def large_diamond_2; return convert_unicode_to_hex("E21B"); end
|
1579
|
+
def small_diamond_1; return convert_unicode_to_hex("E21B"); end
|
1580
|
+
def small_diamond_2; return convert_unicode_to_hex("E21B"); end
|
1581
|
+
def sparkle; return convert_unicode_to_hex("E32E"); end
|
1582
|
+
|
1583
|
+
def white_flower; warning(get_this_method); return nil; end
|
1584
|
+
def hundred_points_symbol; warning(get_this_method); return nil; end
|
1585
|
+
|
1586
|
+
def identification_sign; return convert_unicode_to_hex("E229"); end
|
1587
|
+
def clear_sign; warning(get_this_method); return nil; end
|
1588
|
+
def leftwards_arrow_with_hook; warning(get_this_method); return nil; end
|
1589
|
+
def rightwards_arrow_with_hook; warning(get_this_method); return nil; end
|
1590
|
+
def left_pointing_magnifying_glass; return convert_unicode_to_hex("E114"); end
|
1591
|
+
def right_pointing_magnifying_glass; return convert_unicode_to_hex("E114"); end
|
1592
|
+
def lock; return convert_unicode_to_hex("E144"); end
|
1593
|
+
def open_lock; return convert_unicode_to_hex("E145"); end
|
1594
|
+
def lock_with_ink_pen; return convert_unicode_to_hex("E144"); end
|
1595
|
+
def closed_lock_with_key; return convert_unicode_to_hex("E144"); end
|
1596
|
+
def key; return convert_unicode_to_hex("E03F"); end
|
1597
|
+
def ballot_box_with_check; warning(get_this_method); return nil; end
|
1598
|
+
def radio_button; warning(get_this_method); return nil; end
|
1599
|
+
def back_with_left_arrow_above; return convert_unicode_to_hex("E235"); end
|
1600
|
+
def bookmark; warning(get_this_method); return nil; end
|
1601
|
+
def double_clockwise_open_circle_arrows; warning(get_this_method); return nil; end
|
1602
|
+
def e_mail_symbol; return convert_unicode_to_hex("E103"); end
|
1603
|
+
|
1604
|
+
def raised_fist; return convert_unicode_to_hex("E010"); end
|
1605
|
+
def raised_hand; return convert_unicode_to_hex("E012"); end
|
1606
|
+
def victory_hand; return convert_unicode_to_hex("E011"); end
|
1607
|
+
|
1608
|
+
def fisted_hand; return convert_unicode_to_hex("E00D"); end
|
1609
|
+
def thumbs_up_sign; return convert_unicode_to_hex("E00E"); end
|
1610
|
+
def white_up_pointing_index; return convert_unicode_to_hex("E00F"); end
|
1611
|
+
def white_up_pointing_backhand_index; return convert_unicode_to_hex("E22E"); end
|
1612
|
+
def white_down_pointing_backhand_index; return convert_unicode_to_hex("E22F"); end
|
1613
|
+
def white_left_pointing_backhand_index; return convert_unicode_to_hex("E230"); end
|
1614
|
+
def white_right_pointing_backhand_index; return convert_unicode_to_hex("E231"); end
|
1615
|
+
def waving_hand; return convert_unicode_to_hex("E41E"); end
|
1616
|
+
def clapping_hands; return convert_unicode_to_hex("E41F"); end
|
1617
|
+
def ok_hand_sign; return convert_unicode_to_hex("E420"); end
|
1618
|
+
def thumbs_down_sign; return convert_unicode_to_hex("E421"); end
|
1619
|
+
def open_hands; return convert_unicode_to_hex("E422"); end
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
class KDDI < Emoji
|
1623
|
+
def black_sun_with_rays; return convert_unicode_to_hex("E488"); end
|
1624
|
+
def cloud; return convert_unicode_to_hex("E48D"); end
|
1625
|
+
def umbrella_with_rain_drops; return convert_unicode_to_hex("E48C"); end
|
1626
|
+
def snowman_without_snow; return convert_unicode_to_hex("E485"); end
|
1627
|
+
def high_voltage_sign; return convert_unicode_to_hex("E487"); end
|
1628
|
+
def cyclone; return convert_unicode_to_hex("E469"); end
|
1629
|
+
def foggy; return convert_unicode_to_hex("E598"); end
|
1630
|
+
def closed_umbrella; return convert_unicode_to_hex("EAE8"); end
|
1631
|
+
def night_with_stars; return convert_unicode_to_hex("EAF1"); end
|
1632
|
+
def sunrise_over_mountains; return convert_unicode_to_hex("EAF4"); end
|
1633
|
+
def sunrise; return convert_unicode_to_hex("EAF4"); end
|
1634
|
+
def cityscape_at_dusk; return convert_unicode_to_hex("E5DA"); end
|
1635
|
+
def sunset_over_buildings; return convert_unicode_to_hex("E5DA"); end
|
1636
|
+
def rainbow; return convert_unicode_to_hex("EAF2"); end
|
1637
|
+
def snowflake; return convert_unicode_to_hex("E48A"); end
|
1638
|
+
def sun_behind_cloud; return convert_unicode_to_hex("E48E"); end
|
1639
|
+
def bridge_at_night; return convert_unicode_to_hex("E4BF"); end
|
1640
|
+
|
1641
|
+
def new_moon_symbol; return convert_unicode_to_hex("E5A8"); end
|
1642
|
+
def waxing_gibbous_moon_symbol; return convert_unicode_to_hex("E5A9"); end
|
1643
|
+
def first_quarter_moon_symbol; return convert_unicode_to_hex("E5AA"); end
|
1644
|
+
def crescent_moon; return convert_unicode_to_hex("E486"); end
|
1645
|
+
def full_moon_symbol; warning(get_this_method); return nil; end
|
1646
|
+
def first_quarter_moon_with_face; return convert_unicode_to_hex("E489"); end
|
1647
|
+
|
1648
|
+
def soon_with_right_arrow_above; warning(get_this_method); return nil; end
|
1649
|
+
def on_with_double_pointing_arrow_above; warning(get_this_method); return nil; end
|
1650
|
+
def end_with_left_arrow_above; warning(get_this_method); return nil; end
|
1651
|
+
def hourglass_with_flowing_sand; return convert_unicode_to_hex("E47C"); end
|
1652
|
+
def hourglass; return convert_unicode_to_hex("E57B"); end
|
1653
|
+
def watch; return convert_unicode_to_hex("E57A"); end
|
1654
|
+
def clock_face_one_oclock; return convert_unicode_to_hex("E594"); end
|
1655
|
+
def clock_face_two_oclock; return convert_unicode_to_hex("E594"); end
|
1656
|
+
def clock_face_three_oclock; return convert_unicode_to_hex("E594"); end
|
1657
|
+
def clock_face_four_oclock; return convert_unicode_to_hex("E594"); end
|
1658
|
+
def clock_face_five_oclock; return convert_unicode_to_hex("E594"); end
|
1659
|
+
def clock_face_six_oclock; return convert_unicode_to_hex("E594"); end
|
1660
|
+
def clock_face_seven_oclock; return convert_unicode_to_hex("E594"); end
|
1661
|
+
def clock_face_eight_oclock; return convert_unicode_to_hex("E594"); end
|
1662
|
+
def clock_face_nine_oclock; return convert_unicode_to_hex("E594"); end
|
1663
|
+
def clock_face_ten_oclock; return convert_unicode_to_hex("E594"); end
|
1664
|
+
def clock_face_eleven_oclock; return convert_unicode_to_hex("E594"); end
|
1665
|
+
def clock_face_twelve_oclock; return convert_unicode_to_hex("E594"); end
|
1666
|
+
|
1667
|
+
def alarm_clock; return convert_unicode_to_hex("E594"); end
|
1668
|
+
|
1669
|
+
def aries; return convert_unicode_to_hex("E48F"); end
|
1670
|
+
def taurus; return convert_unicode_to_hex("E490"); end
|
1671
|
+
def gemini; return convert_unicode_to_hex("E491"); end
|
1672
|
+
def cancer; return convert_unicode_to_hex("E492"); end
|
1673
|
+
def leo; return convert_unicode_to_hex("E493"); end
|
1674
|
+
def virgo; return convert_unicode_to_hex("E494"); end
|
1675
|
+
def libra; return convert_unicode_to_hex("E495"); end
|
1676
|
+
def scorpius; return convert_unicode_to_hex("E496"); end
|
1677
|
+
def sagittarius; return convert_unicode_to_hex("E497"); end
|
1678
|
+
def capricorn; return convert_unicode_to_hex("E498"); end
|
1679
|
+
def aquarius; return convert_unicode_to_hex("E499"); end
|
1680
|
+
def pisces; return convert_unicode_to_hex("E49A"); end
|
1681
|
+
def ophiuchus; return convert_unicode_to_hex("E49B"); end
|
1682
|
+
|
1683
|
+
def water_wave; return convert_unicode_to_hex("EB7C"); end
|
1684
|
+
def earth_globe_asia_australia; return convert_unicode_to_hex("E5B3"); end
|
1685
|
+
def volcano; return convert_unicode_to_hex("EB53"); end
|
1686
|
+
def milky_way; return convert_unicode_to_hex("EB5F"); end
|
1687
|
+
|
1688
|
+
def four_leaf_clover; return convert_unicode_to_hex("E513"); end
|
1689
|
+
def tulip; return convert_unicode_to_hex("E4E4"); end
|
1690
|
+
def seedling; return convert_unicode_to_hex("EB7D"); end
|
1691
|
+
def maple_leaf; return convert_unicode_to_hex("E4CE"); end
|
1692
|
+
def cherry_blossom; return convert_unicode_to_hex("E4CA"); end
|
1693
|
+
def rose; return convert_unicode_to_hex("E5BA"); end
|
1694
|
+
def fallen_leaf; return convert_unicode_to_hex("E5CD"); end
|
1695
|
+
def leaf_fluttering_in_wind; return convert_unicode_to_hex("E5CD"); end
|
1696
|
+
def hibiscus; return convert_unicode_to_hex("EA94"); end
|
1697
|
+
def sunflower; return convert_unicode_to_hex("E4E3"); end
|
1698
|
+
def palm_tree; return convert_unicode_to_hex("E4E2"); end
|
1699
|
+
def cactus; return convert_unicode_to_hex("EA96"); end
|
1700
|
+
def ear_of_rice; warning(get_this_method); return nil; end
|
1701
|
+
def ear_of_maize; return convert_unicode_to_hex("EB36"); end
|
1702
|
+
def mushroom; return convert_unicode_to_hex("EB37"); end
|
1703
|
+
def chestnut; return convert_unicode_to_hex("EB38"); end
|
1704
|
+
def blossom; return convert_unicode_to_hex("EB49"); end
|
1705
|
+
def herb; return convert_unicode_to_hex("EB82"); end
|
1706
|
+
|
1707
|
+
def cherries; return convert_unicode_to_hex("E4D2"); end
|
1708
|
+
def banana; return convert_unicode_to_hex("EB35"); end
|
1709
|
+
def apple_1; return convert_unicode_to_hex("EAB9"); end
|
1710
|
+
def tangerine; return convert_unicode_to_hex("EABA"); end
|
1711
|
+
def strawberry; return convert_unicode_to_hex("E4D4"); end
|
1712
|
+
def watermelon; return convert_unicode_to_hex("E4CD"); end
|
1713
|
+
def tomato; return convert_unicode_to_hex("EABB"); end
|
1714
|
+
def aubergine; return convert_unicode_to_hex("EABC"); end
|
1715
|
+
def melon; return convert_unicode_to_hex("EB32"); end
|
1716
|
+
def pineapple; return convert_unicode_to_hex("EB33"); end
|
1717
|
+
def grapes; return convert_unicode_to_hex("EB34"); end
|
1718
|
+
def peach; return convert_unicode_to_hex("EB39"); end
|
1719
|
+
def apple_2; return convert_unicode_to_hex("EB5A"); end
|
1720
|
+
|
1721
|
+
|
1722
|
+
def eyes; return convert_unicode_to_hex("E5A4"); end
|
1723
|
+
def ear; return convert_unicode_to_hex("E5A5"); end
|
1724
|
+
def nose; return convert_unicode_to_hex("EAD0"); end
|
1725
|
+
def mouth; return convert_unicode_to_hex("EAD1"); end
|
1726
|
+
def tongue; return convert_unicode_to_hex("EB47"); end
|
1727
|
+
|
1728
|
+
def lipstick; return convert_unicode_to_hex("E509"); end
|
1729
|
+
def nail_care; return convert_unicode_to_hex("EAA0"); end
|
1730
|
+
def face_massage; return convert_unicode_to_hex("E50B"); end
|
1731
|
+
def haircut; return convert_unicode_to_hex("EAA1"); end
|
1732
|
+
def barber_pole; return convert_unicode_to_hex("EAA2"); end
|
1733
|
+
|
1734
|
+
def bust_in_silhouette; warning(get_this_method); return nil; end
|
1735
|
+
|
1736
|
+
def boys_head; return convert_unicode_to_hex("E4FC"); end
|
1737
|
+
def girls_head; return convert_unicode_to_hex("E4FA"); end
|
1738
|
+
def mans_head; return convert_unicode_to_hex("E4FC"); end
|
1739
|
+
def womans_head; return convert_unicode_to_hex("E4FA"); end
|
1740
|
+
def family; return convert_unicode_to_hex("E501"); end
|
1741
|
+
def couple; warning(get_this_method); return nil; end
|
1742
|
+
def police_officer; return convert_unicode_to_hex("E5DD"); end
|
1743
|
+
def woman_with_bunny_ears; return convert_unicode_to_hex("EADB"); end
|
1744
|
+
def bride_with_veil; return convert_unicode_to_hex("EAE9"); end
|
1745
|
+
def western_person; return convert_unicode_to_hex("EB13"); end
|
1746
|
+
def man_with_gua_pi_mao; return convert_unicode_to_hex("EB14"); end
|
1747
|
+
def man_with_turban; return convert_unicode_to_hex("EB15"); end
|
1748
|
+
def older_man; return convert_unicode_to_hex("EB16"); end
|
1749
|
+
def older_woman; return convert_unicode_to_hex("EB17"); end
|
1750
|
+
def baby; return convert_unicode_to_hex("EB18"); end
|
1751
|
+
def construction_worker; return convert_unicode_to_hex("EB19"); end
|
1752
|
+
|
1753
|
+
def princess; return convert_unicode_to_hex("EB1A"); end
|
1754
|
+
def ogre; return convert_unicode_to_hex("EB44"); end
|
1755
|
+
def goblin; return convert_unicode_to_hex("EB45"); end
|
1756
|
+
def ghost; return convert_unicode_to_hex("E4CB"); end
|
1757
|
+
def cherub; return convert_unicode_to_hex("E5BF"); end
|
1758
|
+
def extraterrestrial_alien; return convert_unicode_to_hex("E50E"); end
|
1759
|
+
def alien_monster; return convert_unicode_to_hex("E4EC"); end
|
1760
|
+
def imp; return convert_unicode_to_hex("E4EF"); end
|
1761
|
+
def skull; return convert_unicode_to_hex("E4F8"); end
|
1762
|
+
|
1763
|
+
def information_desk_person; warning(get_this_method); return nil; end
|
1764
|
+
def guardsman; warning(get_this_method); return nil; end
|
1765
|
+
def dancer; return convert_unicode_to_hex("EB1C"); end
|
1766
|
+
|
1767
|
+
def dog_face; return convert_unicode_to_hex("E4E1"); end
|
1768
|
+
def cat_face; return convert_unicode_to_hex("E4DB"); end
|
1769
|
+
def snail; return convert_unicode_to_hex("EB7E"); end
|
1770
|
+
def baby_chick; return convert_unicode_to_hex("E4E0"); end
|
1771
|
+
def front_facing_baby_chick; return convert_unicode_to_hex("EB76"); end
|
1772
|
+
def hatching_chick; return convert_unicode_to_hex("E5DB"); end
|
1773
|
+
def penguin; return convert_unicode_to_hex("E4DC"); end
|
1774
|
+
def fish; return convert_unicode_to_hex("E49A"); end
|
1775
|
+
def horse_face; return convert_unicode_to_hex("E4D8"); end
|
1776
|
+
def pig_face; return convert_unicode_to_hex("E4DE"); end
|
1777
|
+
def tiger_face; return convert_unicode_to_hex("E5C0"); end
|
1778
|
+
def bear_face; return convert_unicode_to_hex("E5C1"); end
|
1779
|
+
def mouse_face; return convert_unicode_to_hex("E5C2"); end
|
1780
|
+
def spouting_whale; return convert_unicode_to_hex("E470"); end
|
1781
|
+
def monkey_face; return convert_unicode_to_hex("E4D9"); end
|
1782
|
+
def octopus; return convert_unicode_to_hex("E5C7"); end
|
1783
|
+
def spiral_shell; return convert_unicode_to_hex("EAEC"); end
|
1784
|
+
def dolphin; return convert_unicode_to_hex("EB1B"); end
|
1785
|
+
def bird; return convert_unicode_to_hex("E4E0"); end
|
1786
|
+
def tropical_fish; return convert_unicode_to_hex("EB1D"); end
|
1787
|
+
def hamster_face; warning(get_this_method); return nil; end
|
1788
|
+
def bug; return convert_unicode_to_hex("EB1E"); end
|
1789
|
+
def elephant; return convert_unicode_to_hex("EB1F"); end
|
1790
|
+
def koala; return convert_unicode_to_hex("EB20"); end
|
1791
|
+
def monkey; return convert_unicode_to_hex("E4D9"); end
|
1792
|
+
def sheep; return convert_unicode_to_hex("E48F"); end
|
1793
|
+
def wolf_face; return convert_unicode_to_hex("E4E1"); end
|
1794
|
+
def cow_face; return convert_unicode_to_hex("EB21"); end
|
1795
|
+
def rabbit_face; return convert_unicode_to_hex("E4D7"); end
|
1796
|
+
def snake; return convert_unicode_to_hex("EB22"); end
|
1797
|
+
def chicken; return convert_unicode_to_hex("EB23"); end
|
1798
|
+
def boar; return convert_unicode_to_hex("EB24"); end
|
1799
|
+
def camel; return convert_unicode_to_hex("EB25"); end
|
1800
|
+
def frog_face; return convert_unicode_to_hex("E4DA"); end
|
1801
|
+
def poodle; return convert_unicode_to_hex("E4DF"); end
|
1802
|
+
def blowfish; return convert_unicode_to_hex("E4D3"); end
|
1803
|
+
def ant; return convert_unicode_to_hex("E4DD"); end
|
1804
|
+
def paw_prints; return convert_unicode_to_hex("E4EE"); end
|
1805
|
+
def turtle; return convert_unicode_to_hex("E5D4"); end
|
1806
|
+
def dragon_face; return convert_unicode_to_hex("EB3F"); end
|
1807
|
+
def panda_face; return convert_unicode_to_hex("EB46"); end
|
1808
|
+
def pig_nose; return convert_unicode_to_hex("EB48"); end
|
1809
|
+
def honeybee; return convert_unicode_to_hex("EB57"); end
|
1810
|
+
def ladybug; return convert_unicode_to_hex("EB58"); end
|
1811
|
+
|
1812
|
+
|
1813
|
+
def angry_face; return convert_unicode_to_hex("E472"); end
|
1814
|
+
def anguished_face; return convert_unicode_to_hex("EB67"); end
|
1815
|
+
def astonished_face; return convert_unicode_to_hex("EACA"); end
|
1816
|
+
def disappointed_face; return convert_unicode_to_hex("EAC0"); end
|
1817
|
+
def dizzy_face; return convert_unicode_to_hex("E5AE"); end
|
1818
|
+
def exasperated_face; return convert_unicode_to_hex("EACB"); end
|
1819
|
+
def expressionless_face; return convert_unicode_to_hex("EAC9"); end
|
1820
|
+
def face_with_heart_shaped_eyes; return convert_unicode_to_hex("E5C4"); end
|
1821
|
+
def face_with_look_of_triumph; return convert_unicode_to_hex("EAC1"); end
|
1822
|
+
def winking_face_with_stuck_out_tongue; return convert_unicode_to_hex("E4E7"); end
|
1823
|
+
def face_with_stuck_out_tongue; return convert_unicode_to_hex("E4E7"); end
|
1824
|
+
def face_savoring_delicious_food; return convert_unicode_to_hex("EACD"); end
|
1825
|
+
def face_throwing_a_kiss; return convert_unicode_to_hex("EACF"); end
|
1826
|
+
def face_kissing; return convert_unicode_to_hex("EACE"); end
|
1827
|
+
def face_with_mask; return convert_unicode_to_hex("EAC7"); end
|
1828
|
+
def flushed_face; return convert_unicode_to_hex("EAC8"); end
|
1829
|
+
def happy_face_with_open_mouth; return convert_unicode_to_hex("E471"); end
|
1830
|
+
def happy_face_with_open_mouth_and_cold_sweat; return convert_unicode_to_hex("E471"); end
|
1831
|
+
def happy_face_with_open_mouth_and_closed_eyes; return convert_unicode_to_hex("EAC5"); end
|
1832
|
+
def happy_face_with_grin; return convert_unicode_to_hex("EB80"); end
|
1833
|
+
def happy_and_crying_face; return convert_unicode_to_hex("EB64"); end
|
1834
|
+
def happy_face_with_wide_mouth_and_raised_eyebrows; return convert_unicode_to_hex("EACD"); end
|
1835
|
+
def white_smiling_face; return convert_unicode_to_hex("E4FB"); end
|
1836
|
+
def happy_face_with_open_mouth_and_raised_eyebrows; return convert_unicode_to_hex("E471"); end
|
1837
|
+
def crying_face; return convert_unicode_to_hex("EB69"); end
|
1838
|
+
def loudly_crying_face; return convert_unicode_to_hex("E473"); end
|
1839
|
+
def fearful_face; return convert_unicode_to_hex("EAC6"); end
|
1840
|
+
def persevering_face; return convert_unicode_to_hex("EAC2"); end
|
1841
|
+
def pouting_face; return convert_unicode_to_hex("EB5D"); end
|
1842
|
+
def relieved_face; return convert_unicode_to_hex("EAC5"); end
|
1843
|
+
def confounded_face; return convert_unicode_to_hex("EAC3"); end
|
1844
|
+
def pensive_face; return convert_unicode_to_hex("EAC0"); end
|
1845
|
+
def face_screaming_in_fear; return convert_unicode_to_hex("E5C5"); end
|
1846
|
+
def sleepy_face; return convert_unicode_to_hex("EAC4"); end
|
1847
|
+
def smirking_face; return convert_unicode_to_hex("EABF"); end
|
1848
|
+
def face_with_cold_sweat; return convert_unicode_to_hex("E5C6"); end
|
1849
|
+
def disappointed_but_relieved_face; return convert_unicode_to_hex("E5C6"); end
|
1850
|
+
def tired_face; return convert_unicode_to_hex("E474"); end
|
1851
|
+
def winking_face; return convert_unicode_to_hex("E5C3"); end
|
1852
|
+
|
1853
|
+
def cat_face_with_open_mouth; return convert_unicode_to_hex("EB61"); end
|
1854
|
+
def happy_cat_face_with_grin; return convert_unicode_to_hex("EB7F"); end
|
1855
|
+
def happy_and_crying_cat_face; return convert_unicode_to_hex("EB63"); end
|
1856
|
+
def cat_face_kissing; return convert_unicode_to_hex("EB60"); end
|
1857
|
+
def cat_face_with_heart_shaped_eyes; return convert_unicode_to_hex("EB65"); end
|
1858
|
+
def crying_cat_face; return convert_unicode_to_hex("EB68"); end
|
1859
|
+
def pouting_cat_face; return convert_unicode_to_hex("EB5E"); end
|
1860
|
+
def cat_face_with_tightly_closed_lips; return convert_unicode_to_hex("EB6A"); end
|
1861
|
+
def anguished_cat_face; return convert_unicode_to_hex("EB66"); end
|
1862
|
+
|
1863
|
+
def face_with_no_good_gesture; return convert_unicode_to_hex("EAD7"); end
|
1864
|
+
def face_with_ok_gesture; return convert_unicode_to_hex("EAD8"); end
|
1865
|
+
def person_bowing_deeply; return convert_unicode_to_hex("EAD9"); end
|
1866
|
+
def see_no_evil_monkey; return convert_unicode_to_hex("EB50"); end
|
1867
|
+
def speak_no_evil_monkey; return convert_unicode_to_hex("EB51"); end
|
1868
|
+
def hear_no_evil_monkey; return convert_unicode_to_hex("EB52"); end
|
1869
|
+
def person_raising_one_hand; return convert_unicode_to_hex("EB85"); end
|
1870
|
+
def person_raising_both_hands_in_cheers; return convert_unicode_to_hex("EB86"); end
|
1871
|
+
def person_frowning; return convert_unicode_to_hex("EB87"); end
|
1872
|
+
def person_with_pouting_face; return convert_unicode_to_hex("EB88"); end
|
1873
|
+
def person_with_folded_hands; return convert_unicode_to_hex("EAD2"); end
|
1874
|
+
|
1875
|
+
|
1876
|
+
def house_building; return convert_unicode_to_hex("E4AB"); end
|
1877
|
+
def house_with_yard; return convert_unicode_to_hex("EB09"); end
|
1878
|
+
def office_building; return convert_unicode_to_hex("E4AD"); end
|
1879
|
+
def japanese_post_office; return convert_unicode_to_hex("E5DE"); end
|
1880
|
+
def hospital; return convert_unicode_to_hex("E5DF"); end
|
1881
|
+
def bank; return convert_unicode_to_hex("E4AA"); end
|
1882
|
+
def atm; return convert_unicode_to_hex("E4A3"); end
|
1883
|
+
def hotel; return convert_unicode_to_hex("EA81"); end
|
1884
|
+
def love_hotel; return convert_unicode_to_hex("EAF3"); end
|
1885
|
+
def convenience_store; return convert_unicode_to_hex("E4A4"); end
|
1886
|
+
def school; return convert_unicode_to_hex("EA80"); end
|
1887
|
+
def church; return convert_unicode_to_hex("E5BB"); end
|
1888
|
+
def fountain; return convert_unicode_to_hex("E5CF"); end
|
1889
|
+
def department_store; return convert_unicode_to_hex("EAF6"); end
|
1890
|
+
def japanese_castle; return convert_unicode_to_hex("EAF7"); end
|
1891
|
+
def western_castle; return convert_unicode_to_hex("EAF8"); end
|
1892
|
+
def factory; return convert_unicode_to_hex("EAF9"); end
|
1893
|
+
def anchor; return convert_unicode_to_hex("E4A9"); end
|
1894
|
+
def izakaya_lantern; return convert_unicode_to_hex("E4BD"); end
|
1895
|
+
|
1896
|
+
def emoji_compatibility_symbol_1; return convert_unicode_to_hex("E5BD"); end
|
1897
|
+
def emoji_compatibility_symbol_2; return convert_unicode_to_hex("E4C0"); end
|
1898
|
+
def emoji_compatibility_symbol_3; warning(get_this_method); return nil; end
|
1899
|
+
def emoji_compatibility_symbol_4; return convert_unicode_to_hex("E572"); end
|
1900
|
+
def emoji_compatibility_symbol_5; return convert_unicode_to_hex("EB6C"); end
|
1901
|
+
|
1902
|
+
def wrench; return convert_unicode_to_hex("E587"); end
|
1903
|
+
def hammer; return convert_unicode_to_hex("E5CB"); end
|
1904
|
+
def nut_and_bolt; return convert_unicode_to_hex("E581"); end
|
1905
|
+
|
1906
|
+
def mans_shoe; return convert_unicode_to_hex("E5B7"); end
|
1907
|
+
def sneaker; return convert_unicode_to_hex("EB2B"); end
|
1908
|
+
def high_heeled_shoe; return convert_unicode_to_hex("E51A"); end
|
1909
|
+
def womans_sandal; return convert_unicode_to_hex("E51A"); end
|
1910
|
+
def womans_boots; return convert_unicode_to_hex("EA9F"); end
|
1911
|
+
def eyeglasses; return convert_unicode_to_hex("E4FE"); end
|
1912
|
+
def t_shirt; return convert_unicode_to_hex("E5B6"); end
|
1913
|
+
def jeans; return convert_unicode_to_hex("EB77"); end
|
1914
|
+
def crown; return convert_unicode_to_hex("E5C9"); end
|
1915
|
+
def necktie; return convert_unicode_to_hex("EA93"); end
|
1916
|
+
def womans_hat; return convert_unicode_to_hex("EA9E"); end
|
1917
|
+
def dress; return convert_unicode_to_hex("EB6B"); end
|
1918
|
+
def kimono; return convert_unicode_to_hex("EAA3"); end
|
1919
|
+
def bikini; return convert_unicode_to_hex("EAA4"); end
|
1920
|
+
def womans_clothes; return convert_unicode_to_hex("E50D"); end
|
1921
|
+
def purse; return convert_unicode_to_hex("E504"); end
|
1922
|
+
|
1923
|
+
def money_bag; return convert_unicode_to_hex("E4C7"); end
|
1924
|
+
def currency_exchange; warning(get_this_method); return nil; end
|
1925
|
+
def chart_with_upwards_trend_and_yen_symbol; return convert_unicode_to_hex("E5DC"); end
|
1926
|
+
def heavy_dollar_sign; return convert_unicode_to_hex("E579"); end
|
1927
|
+
def credit_card; return convert_unicode_to_hex("E57C"); end
|
1928
|
+
def banknote_with_yen_sign; return convert_unicode_to_hex("E57D"); end
|
1929
|
+
def banknote_with_dollar_sign; return convert_unicode_to_hex("E585"); end
|
1930
|
+
def money_with_wings; return convert_unicode_to_hex("EB5B"); end
|
1931
|
+
|
1932
|
+
def emoji_compatibility_symbol_6; return convert_unicode_to_hex("EB11"); end
|
1933
|
+
def emoji_compatibility_symbol_7; return convert_unicode_to_hex("EB0E"); end
|
1934
|
+
def emoji_compatibility_symbol_8; return convert_unicode_to_hex("E5D5"); end
|
1935
|
+
def emoji_compatibility_symbol_9; return convert_unicode_to_hex("EAFA"); end
|
1936
|
+
def emoji_compatibility_symbol_10; return convert_unicode_to_hex("EB10"); end
|
1937
|
+
def emoji_compatibility_symbol_11; return convert_unicode_to_hex("EB0F"); end
|
1938
|
+
def emoji_compatibility_symbol_12; return convert_unicode_to_hex("E4CC"); end
|
1939
|
+
def emoji_compatibility_symbol_13; return convert_unicode_to_hex("EB12"); end
|
1940
|
+
def emoji_compatibility_symbol_14; return convert_unicode_to_hex("E5D6"); end
|
1941
|
+
def emoji_compatibility_symbol_15; return convert_unicode_to_hex("E573"); end
|
1942
|
+
|
1943
|
+
def camera; return convert_unicode_to_hex("E515"); end
|
1944
|
+
def handbag; return convert_unicode_to_hex("E49C"); end
|
1945
|
+
def pouch; warning(get_this_method); return nil; end
|
1946
|
+
def bell; return convert_unicode_to_hex("E512"); end
|
1947
|
+
def door; warning(get_this_method); return nil; end
|
1948
|
+
def dung; return convert_unicode_to_hex("E4F5"); end
|
1949
|
+
def pistol; return convert_unicode_to_hex("E50A"); end
|
1950
|
+
def fire; return convert_unicode_to_hex("E47B"); end
|
1951
|
+
def crystal_ball; return convert_unicode_to_hex("EA8F"); end
|
1952
|
+
def six_pointed_star_with_middle_dot; return convert_unicode_to_hex("EA8F"); end
|
1953
|
+
def video_camera; return convert_unicode_to_hex("E57E"); end
|
1954
|
+
def knife; return convert_unicode_to_hex("E57F"); end
|
1955
|
+
def flashlight; return convert_unicode_to_hex("E583"); end
|
1956
|
+
def battery; return convert_unicode_to_hex("E584"); end
|
1957
|
+
def scroll; return convert_unicode_to_hex("E55F"); end
|
1958
|
+
def electric_plug; return convert_unicode_to_hex("E589"); end
|
1959
|
+
def book_1; return convert_unicode_to_hex("E565"); end
|
1960
|
+
def book_2; return convert_unicode_to_hex("E566"); end
|
1961
|
+
def book_3; return convert_unicode_to_hex("E567"); end
|
1962
|
+
def vertical_closed_book; return convert_unicode_to_hex("E568"); end
|
1963
|
+
def books; return convert_unicode_to_hex("E56F"); end
|
1964
|
+
def name_badge; return convert_unicode_to_hex("E51D"); end
|
1965
|
+
|
1966
|
+
def bath; return convert_unicode_to_hex("E5D8"); end
|
1967
|
+
def restroom; return convert_unicode_to_hex("E4A5"); end
|
1968
|
+
def toilet; return convert_unicode_to_hex("E4A5"); end
|
1969
|
+
def water_closet; return convert_unicode_to_hex("E4A5"); end
|
1970
|
+
|
1971
|
+
def syringe; return convert_unicode_to_hex("E510"); end
|
1972
|
+
def pill; return convert_unicode_to_hex("EA9A"); end
|
1973
|
+
|
1974
|
+
def negative_squared_latin_capital_letter_a; return convert_unicode_to_hex("EB26"); end
|
1975
|
+
def negative_squared_latin_capital_letter_b; return convert_unicode_to_hex("EB27"); end
|
1976
|
+
def negative_squared_ab; return convert_unicode_to_hex("EB29"); end
|
1977
|
+
def negative_squared_latin_capital_letter_o; return convert_unicode_to_hex("EB28"); end
|
1978
|
+
|
1979
|
+
def ribbon; return convert_unicode_to_hex("E59F"); end
|
1980
|
+
def wrapped_present; return convert_unicode_to_hex("E4CF"); end
|
1981
|
+
def birthday_cake; return convert_unicode_to_hex("E5A0"); end
|
1982
|
+
def christmas_tree; return convert_unicode_to_hex("E4C9"); end
|
1983
|
+
def santa_claus; return convert_unicode_to_hex("EAF0"); end
|
1984
|
+
def crossed_flags; return convert_unicode_to_hex("E5D9"); end
|
1985
|
+
def fireworks; return convert_unicode_to_hex("E5CC"); end
|
1986
|
+
def balloon; return convert_unicode_to_hex("EA9B"); end
|
1987
|
+
def party_popper; return convert_unicode_to_hex("EA9C"); end
|
1988
|
+
def pine_decoration; return convert_unicode_to_hex("EAE3"); end
|
1989
|
+
def girls_doll_festival; return convert_unicode_to_hex("EAE4"); end
|
1990
|
+
def graduation_cap; return convert_unicode_to_hex("EAE5"); end
|
1991
|
+
def school_satchel; return convert_unicode_to_hex("EAE6"); end
|
1992
|
+
def carp_streamer; return convert_unicode_to_hex("EAE7"); end
|
1993
|
+
def firework_sparkler; return convert_unicode_to_hex("EAEB"); end
|
1994
|
+
def wind_chime; return convert_unicode_to_hex("EAED"); end
|
1995
|
+
def jack_o_lantern; return convert_unicode_to_hex("EAEE"); end
|
1996
|
+
def confetti_ball; return convert_unicode_to_hex("E46F"); end
|
1997
|
+
def tanabata_tree; return convert_unicode_to_hex("EB3D"); end
|
1998
|
+
def moon_viewing_ceremony; return convert_unicode_to_hex("EAEF"); end
|
1999
|
+
|
2000
|
+
def pager; return convert_unicode_to_hex("E59B"); end
|
2001
|
+
def black_telephone; return convert_unicode_to_hex("E596"); end
|
2002
|
+
def telephone_receiver; return convert_unicode_to_hex("E51E"); end
|
2003
|
+
def mobile_phone; return convert_unicode_to_hex("E588"); end
|
2004
|
+
def phone_with_arrow; return convert_unicode_to_hex("EB08"); end
|
2005
|
+
def memo; return convert_unicode_to_hex("EA92"); end
|
2006
|
+
def fax; return convert_unicode_to_hex("E520"); end
|
2007
|
+
def envelope; return convert_unicode_to_hex("E521"); end
|
2008
|
+
def incoming_envelope; return convert_unicode_to_hex("E591"); end
|
2009
|
+
def envelope_with_arrow; return convert_unicode_to_hex("EB62"); end
|
2010
|
+
def mailbox; return convert_unicode_to_hex("E51B"); end
|
2011
|
+
def mailbox_with_raised_flag; return convert_unicode_to_hex("EB0A"); end
|
2012
|
+
def postbox; return convert_unicode_to_hex("E51B"); end
|
2013
|
+
def public_address_loudspeaker; return convert_unicode_to_hex("E511"); end
|
2014
|
+
def cheering_megaphone; return convert_unicode_to_hex("E511"); end
|
2015
|
+
def satellite_antenna; return convert_unicode_to_hex("E4A8"); end
|
2016
|
+
def speech_balloon; return convert_unicode_to_hex("E4FD"); end
|
2017
|
+
def outbox_tray; return convert_unicode_to_hex("E592"); end
|
2018
|
+
def inbox_tray; return convert_unicode_to_hex("E593"); end
|
2019
|
+
def package; return convert_unicode_to_hex("E51F"); end
|
2020
|
+
|
2021
|
+
def latin_capital_letters_input_symbol; return convert_unicode_to_hex("EAFD"); end
|
2022
|
+
def latin_small_letters_input_symbol; return convert_unicode_to_hex("EAFE"); end
|
2023
|
+
def numbers_input_symbol; return convert_unicode_to_hex("EAFF"); end
|
2024
|
+
def symbols_input_symbol; return convert_unicode_to_hex("EB00"); end
|
2025
|
+
def latin_letters_input_symbol; return convert_unicode_to_hex("EB55"); end
|
2026
|
+
|
2027
|
+
def black_nib; return convert_unicode_to_hex("EB03"); end
|
2028
|
+
def seat; warning(get_this_method); return nil; end
|
2029
|
+
def computer; return convert_unicode_to_hex("E5B8"); end
|
2030
|
+
def pencil; return convert_unicode_to_hex("E4A1"); end
|
2031
|
+
def paperclip; return convert_unicode_to_hex("E4A0"); end
|
2032
|
+
def briefcase; return convert_unicode_to_hex("E5CE"); end
|
2033
|
+
def mini_disc; return convert_unicode_to_hex("E582"); end
|
2034
|
+
def floppy_disk; return convert_unicode_to_hex("E562"); end
|
2035
|
+
def black_scissors; return convert_unicode_to_hex("E516"); end
|
2036
|
+
def round_pushpin; return convert_unicode_to_hex("E560"); end
|
2037
|
+
def page_with_curl; return convert_unicode_to_hex("E561"); end
|
2038
|
+
def page_facing_up; return convert_unicode_to_hex("E569"); end
|
2039
|
+
def calendar; return convert_unicode_to_hex("E563"); end
|
2040
|
+
def file_folder; return convert_unicode_to_hex("E58F"); end
|
2041
|
+
def open_file_folder; return convert_unicode_to_hex("E590"); end
|
2042
|
+
def notebook; return convert_unicode_to_hex("E56B"); end
|
2043
|
+
def open_book; return convert_unicode_to_hex("E49F"); end
|
2044
|
+
def notebook_with_decorative_cover; return convert_unicode_to_hex("E49D"); end
|
2045
|
+
def clipboard; return convert_unicode_to_hex("E564"); end
|
2046
|
+
def tear_off_calendar; return convert_unicode_to_hex("E56A"); end
|
2047
|
+
def bar_chart; return convert_unicode_to_hex("E574"); end
|
2048
|
+
def chart_with_upwards_trend; return convert_unicode_to_hex("E575"); end
|
2049
|
+
def chart_with_downwards_trend; return convert_unicode_to_hex("E576"); end
|
2050
|
+
def card_index; return convert_unicode_to_hex("E56C"); end
|
2051
|
+
def pushpin; return convert_unicode_to_hex("E56D"); end
|
2052
|
+
def ledger; return convert_unicode_to_hex("E56E"); end
|
2053
|
+
def straight_ruler; return convert_unicode_to_hex("E570"); end
|
2054
|
+
def triangular_ruler; return convert_unicode_to_hex("E4A2"); end
|
2055
|
+
def bookmark_tabs; return convert_unicode_to_hex("EB0B"); end
|
2056
|
+
|
2057
|
+
def footprints; return convert_unicode_to_hex("EB2A"); end
|
2058
|
+
|
2059
|
+
|
2060
|
+
def running_shirt_with_sash; warning(get_this_method); return nil; end
|
2061
|
+
def baseball; return convert_unicode_to_hex("E4BA"); end
|
2062
|
+
def flag_in_hole; return convert_unicode_to_hex("E599"); end
|
2063
|
+
def tennis; return convert_unicode_to_hex("E4B7"); end
|
2064
|
+
def soccer_ball; return convert_unicode_to_hex("E4B6"); end
|
2065
|
+
def skiing; return convert_unicode_to_hex("EAAC"); end
|
2066
|
+
def basketball; return convert_unicode_to_hex("E59A"); end
|
2067
|
+
def checkered_flag; return convert_unicode_to_hex("E4B9"); end
|
2068
|
+
def snowboarder; return convert_unicode_to_hex("E4B8"); end
|
2069
|
+
def runner; return convert_unicode_to_hex("E46B"); end
|
2070
|
+
def surfer; return convert_unicode_to_hex("EB41"); end
|
2071
|
+
def trophy; return convert_unicode_to_hex("E5D3"); end
|
2072
|
+
def horse_racing; return convert_unicode_to_hex("E4D8"); end
|
2073
|
+
def american_football; return convert_unicode_to_hex("E4BB"); end
|
2074
|
+
def swimmer; return convert_unicode_to_hex("EADE"); end
|
2075
|
+
|
2076
|
+
def train; return convert_unicode_to_hex("E4B5"); end
|
2077
|
+
def subway; return convert_unicode_to_hex("E5BC"); end
|
2078
|
+
def circled_latin_capital_letter_m; return convert_unicode_to_hex("E5BC"); end
|
2079
|
+
def high_speed_train; return convert_unicode_to_hex("E4B0"); end
|
2080
|
+
def high_speed_train_with_bullet_nose; return convert_unicode_to_hex("E4B0"); end
|
2081
|
+
def automobile_1; return convert_unicode_to_hex("E4B1"); end
|
2082
|
+
def recreational_vehicle; return convert_unicode_to_hex("E4B1"); end
|
2083
|
+
def bus_2; return convert_unicode_to_hex("E4AF"); end
|
2084
|
+
def bus_stop; return convert_unicode_to_hex("E4A7"); end
|
2085
|
+
def ship; return convert_unicode_to_hex("EA82"); end
|
2086
|
+
def airplane; return convert_unicode_to_hex("E4B3"); end
|
2087
|
+
def sailboat; return convert_unicode_to_hex("E4B4"); end
|
2088
|
+
def bicycle; return convert_unicode_to_hex("E4AE"); end
|
2089
|
+
def station; return convert_unicode_to_hex("EB6D"); end
|
2090
|
+
def rocket; return convert_unicode_to_hex("E5C8"); end
|
2091
|
+
def speedboat; return convert_unicode_to_hex("E4B4"); end
|
2092
|
+
def taxi_1; return convert_unicode_to_hex("E4B1"); end
|
2093
|
+
def pedestrian; return convert_unicode_to_hex("EB72"); end
|
2094
|
+
def truck; return convert_unicode_to_hex("E4B2"); end
|
2095
|
+
def fire_engine; return convert_unicode_to_hex("EADF"); end
|
2096
|
+
def ambulance; return convert_unicode_to_hex("EAE0"); end
|
2097
|
+
def police_car_1; return convert_unicode_to_hex("EAE1"); end
|
2098
|
+
|
2099
|
+
def fuel_pump; return convert_unicode_to_hex("E571"); end
|
2100
|
+
def negative_squared_latin_capital_letter_p; return convert_unicode_to_hex("E4A6"); end
|
2101
|
+
|
2102
|
+
def horizontal_traffic_light; return convert_unicode_to_hex("E46A"); end
|
2103
|
+
def construction_sign; return convert_unicode_to_hex("E5D7"); end
|
2104
|
+
def police_cars_revolving_light; return convert_unicode_to_hex("EB73"); end
|
2105
|
+
|
2106
|
+
def hot_springs; return convert_unicode_to_hex("E4BC"); end
|
2107
|
+
def tent; return convert_unicode_to_hex("E5D0"); end
|
2108
|
+
def carousel_horse; warning(get_this_method); return nil; end
|
2109
|
+
def ferris_wheel; return convert_unicode_to_hex("E46D"); end
|
2110
|
+
def roller_coaster; return convert_unicode_to_hex("EAE2"); end
|
2111
|
+
def fishing; return convert_unicode_to_hex("EB42"); end
|
2112
|
+
def microphone; return convert_unicode_to_hex("E503"); end
|
2113
|
+
def movies; return convert_unicode_to_hex("E517"); end
|
2114
|
+
def cinema; return convert_unicode_to_hex("E517"); end
|
2115
|
+
def headphone; return convert_unicode_to_hex("E508"); end
|
2116
|
+
def art; return convert_unicode_to_hex("E59C"); end
|
2117
|
+
def top_hat; return convert_unicode_to_hex("EAF5"); end
|
2118
|
+
def event; return convert_unicode_to_hex("E59E"); end
|
2119
|
+
def ticket; return convert_unicode_to_hex("E49E"); end
|
2120
|
+
def movie_shooting_clapboard; return convert_unicode_to_hex("E4BE"); end
|
2121
|
+
def performing_arts; return convert_unicode_to_hex("E59D"); end
|
2122
|
+
|
2123
|
+
def video_game; return convert_unicode_to_hex("E4C6"); end
|
2124
|
+
def mahjong_tile_red_dragon; return convert_unicode_to_hex("E5D1"); end
|
2125
|
+
def direct_hit; return convert_unicode_to_hex("E4C5"); end
|
2126
|
+
def slot_machine; return convert_unicode_to_hex("E46E"); end
|
2127
|
+
def billiards; return convert_unicode_to_hex("EADD"); end
|
2128
|
+
def game_die; return convert_unicode_to_hex("E4C8"); end
|
2129
|
+
def bowling; return convert_unicode_to_hex("EB43"); end
|
2130
|
+
def flower_playing_cards; return convert_unicode_to_hex("EB6E"); end
|
2131
|
+
def playing_card_black_joker; return convert_unicode_to_hex("EB6F"); end
|
2132
|
+
|
2133
|
+
def musical_note; return convert_unicode_to_hex("E5BE"); end
|
2134
|
+
def multiple_musical_notes; return convert_unicode_to_hex("E505"); end
|
2135
|
+
def saxophone; warning(get_this_method); return nil; end
|
2136
|
+
def guitar; return convert_unicode_to_hex("E506"); end
|
2137
|
+
def musical_keyboard; return convert_unicode_to_hex("EB40"); end
|
2138
|
+
def trumpet; return convert_unicode_to_hex("EADC"); end
|
2139
|
+
def violin; return convert_unicode_to_hex("E507"); end
|
2140
|
+
def musical_score; return convert_unicode_to_hex("EACC"); end
|
2141
|
+
def part_alternation_mark; warning(get_this_method); return nil; end
|
2142
|
+
|
2143
|
+
def television; return convert_unicode_to_hex("E502"); end
|
2144
|
+
def optical_disk; return convert_unicode_to_hex("E50C"); end
|
2145
|
+
def dvd; return convert_unicode_to_hex("E50C"); end
|
2146
|
+
def radio; return convert_unicode_to_hex("E5B9"); end
|
2147
|
+
def video_cassette_tape; return convert_unicode_to_hex("E580"); end
|
2148
|
+
def speaker_with_three_sound_waves; return convert_unicode_to_hex("E511"); end
|
2149
|
+
def newspaper; return convert_unicode_to_hex("E58B"); end
|
2150
|
+
|
2151
|
+
def kiss_mark; return convert_unicode_to_hex("E4EB"); end
|
2152
|
+
def love_letter; return convert_unicode_to_hex("EB78"); end
|
2153
|
+
def ring; return convert_unicode_to_hex("E514"); end
|
2154
|
+
def gem_stone; return convert_unicode_to_hex("E514"); end
|
2155
|
+
def kiss; return convert_unicode_to_hex("E5CA"); end
|
2156
|
+
def bouquet; return convert_unicode_to_hex("EA95"); end
|
2157
|
+
def couple_with_heart; return convert_unicode_to_hex("EADA"); end
|
2158
|
+
def wedding; return convert_unicode_to_hex("E5BB"); end
|
2159
|
+
|
2160
|
+
def hash_key; return convert_unicode_to_hex("EB84"); end
|
2161
|
+
def keycap_1; return convert_unicode_to_hex("E522"); end
|
2162
|
+
def keycap_2; return convert_unicode_to_hex("E523"); end
|
2163
|
+
def keycap_3; return convert_unicode_to_hex("E524"); end
|
2164
|
+
def keycap_4; return convert_unicode_to_hex("E525"); end
|
2165
|
+
def keycap_5; return convert_unicode_to_hex("E526"); end
|
2166
|
+
def keycap_6; return convert_unicode_to_hex("E527"); end
|
2167
|
+
def keycap_7; return convert_unicode_to_hex("E528"); end
|
2168
|
+
def keycap_8; return convert_unicode_to_hex("E529"); end
|
2169
|
+
def keycap_9; return convert_unicode_to_hex("E52A"); end
|
2170
|
+
def keycap_0; return convert_unicode_to_hex("E5AC"); end
|
2171
|
+
def keycap_ten; return convert_unicode_to_hex("E52B"); end
|
2172
|
+
def antenna_with_bars; return convert_unicode_to_hex("EA84"); end
|
2173
|
+
def vibration_mode; return convert_unicode_to_hex("EA90"); end
|
2174
|
+
def mobile_phone_off; return convert_unicode_to_hex("EA91"); end
|
2175
|
+
|
2176
|
+
|
2177
|
+
def hamburger; return convert_unicode_to_hex("E4D6"); end
|
2178
|
+
def rice_ball; return convert_unicode_to_hex("E4D5"); end
|
2179
|
+
def shortcake; return convert_unicode_to_hex("E4D0"); end
|
2180
|
+
def steaming_bowl; return convert_unicode_to_hex("E5B4"); end
|
2181
|
+
def bread; return convert_unicode_to_hex("EAAF"); end
|
2182
|
+
def cooking; return convert_unicode_to_hex("E4D1"); end
|
2183
|
+
def soft_ice_cream; return convert_unicode_to_hex("EAB0"); end
|
2184
|
+
def french_fries; return convert_unicode_to_hex("EAB1"); end
|
2185
|
+
def dumpling; return convert_unicode_to_hex("EAB2"); end
|
2186
|
+
def rice_cracker; return convert_unicode_to_hex("EAB3"); end
|
2187
|
+
def cooked_rice; return convert_unicode_to_hex("EAB4"); end
|
2188
|
+
def spaghetti; return convert_unicode_to_hex("EAB5"); end
|
2189
|
+
def curry_and_rice; return convert_unicode_to_hex("EAB6"); end
|
2190
|
+
def seafood_casserole; return convert_unicode_to_hex("EAB7"); end
|
2191
|
+
def sushi; return convert_unicode_to_hex("EAB8"); end
|
2192
|
+
def lunchbox; return convert_unicode_to_hex("EABD"); end
|
2193
|
+
def pot_of_food; return convert_unicode_to_hex("EABE"); end
|
2194
|
+
def shaved_ice; return convert_unicode_to_hex("EAEA"); end
|
2195
|
+
def meat_on_bone; return convert_unicode_to_hex("E4C4"); end
|
2196
|
+
def fish_cake_with_swirl_design; return convert_unicode_to_hex("E4ED"); end
|
2197
|
+
def roasted_sweet_potato; return convert_unicode_to_hex("EB3A"); end
|
2198
|
+
def slice_of_pizza; return convert_unicode_to_hex("EB3B"); end
|
2199
|
+
def poultry_leg; return convert_unicode_to_hex("EB3C"); end
|
2200
|
+
def ice_cream; return convert_unicode_to_hex("EB4A"); end
|
2201
|
+
def doughnut; return convert_unicode_to_hex("EB4B"); end
|
2202
|
+
def cookie; return convert_unicode_to_hex("EB4C"); end
|
2203
|
+
def chocolate_bar; return convert_unicode_to_hex("EB4D"); end
|
2204
|
+
def candy; return convert_unicode_to_hex("EB4E"); end
|
2205
|
+
def lollipop; return convert_unicode_to_hex("EB4F"); end
|
2206
|
+
def custard; return convert_unicode_to_hex("EB56"); end
|
2207
|
+
def honey_pot; return convert_unicode_to_hex("EB59"); end
|
2208
|
+
def fried_shrimp; return convert_unicode_to_hex("EB70"); end
|
2209
|
+
def fork_and_knife; return convert_unicode_to_hex("E4AC"); end
|
2210
|
+
|
2211
|
+
def hot_beverage; return convert_unicode_to_hex("E597"); end
|
2212
|
+
def cocktail_glass; return convert_unicode_to_hex("E4C2"); end
|
2213
|
+
def beer_mug; return convert_unicode_to_hex("E4C3"); end
|
2214
|
+
def teacup_without_handle; return convert_unicode_to_hex("EAAE"); end
|
2215
|
+
def sake_bottle_and_cup; return convert_unicode_to_hex("EA97"); end
|
2216
|
+
def wine_glass; return convert_unicode_to_hex("E4C1"); end
|
2217
|
+
def clinking_beer_mugs; return convert_unicode_to_hex("EA98"); end
|
2218
|
+
def tropical_drink; return convert_unicode_to_hex("EB3E"); end
|
2219
|
+
|
2220
|
+
|
2221
|
+
def north_east_arrow; return convert_unicode_to_hex("E555"); end
|
2222
|
+
def south_east_arrow; return convert_unicode_to_hex("E54D"); end
|
2223
|
+
def north_west_arrow; return convert_unicode_to_hex("E54C"); end
|
2224
|
+
def south_west_arrow; return convert_unicode_to_hex("E556"); end
|
2225
|
+
def arrow_pointing_rightwards_then_curving_upwards; return convert_unicode_to_hex("EB2D"); end
|
2226
|
+
def arrow_pointing_rightwards_then_curving_downwards; return convert_unicode_to_hex("EB2E"); end
|
2227
|
+
def left_right_arrow; return convert_unicode_to_hex("EB7A"); end
|
2228
|
+
def up_down_arrow; return convert_unicode_to_hex("EB7B"); end
|
2229
|
+
def upwards_black_arrow; return convert_unicode_to_hex("E53F"); end
|
2230
|
+
def downwards_black_arrow; return convert_unicode_to_hex("E540"); end
|
2231
|
+
def black_rightwards_arrow; return convert_unicode_to_hex("E552"); end
|
2232
|
+
def leftwards_black_arrow; return convert_unicode_to_hex("E553"); end
|
2233
|
+
|
2234
|
+
def black_right_pointing_triangle; return convert_unicode_to_hex("E52E"); end
|
2235
|
+
def black_left_pointing_triangle; return convert_unicode_to_hex("E52D"); end
|
2236
|
+
def black_right_pointing_double_triangle; return convert_unicode_to_hex("E530"); end
|
2237
|
+
def black_left_pointing_double_triangle; return convert_unicode_to_hex("E52F"); end
|
2238
|
+
def black_up_pointing_double_triangle; return convert_unicode_to_hex("E545"); end
|
2239
|
+
def black_down_pointing_double_triangle; return convert_unicode_to_hex("E544"); end
|
2240
|
+
def up_pointing_triangle_1; return convert_unicode_to_hex("E55A"); end
|
2241
|
+
def down_pointing_triangle_1; return convert_unicode_to_hex("E55B"); end
|
2242
|
+
def up_pointing_small_triangle_1; return convert_unicode_to_hex("E543"); end
|
2243
|
+
def down_pointing_small_triangle_1; return convert_unicode_to_hex("E542"); end
|
2244
|
+
|
2245
|
+
def heavy_exclamation_mark_ornament; return convert_unicode_to_hex("E482"); end
|
2246
|
+
def exclamation_question_mark; return convert_unicode_to_hex("EB2F"); end
|
2247
|
+
def double_exclamation_mark; return convert_unicode_to_hex("EB30"); end
|
2248
|
+
def black_question_mark_ornament; return convert_unicode_to_hex("E483"); end
|
2249
|
+
def white_question_mark_ornament; return convert_unicode_to_hex("E483"); end
|
2250
|
+
def white_exclamation_mark_ornament; return convert_unicode_to_hex("E482"); end
|
2251
|
+
|
2252
|
+
def wavy_dash; warning(get_this_method); return nil; end
|
2253
|
+
def looped_length_mark; return convert_unicode_to_hex("EB31"); end
|
2254
|
+
|
2255
|
+
def heavy_black_heart; return convert_unicode_to_hex("E595"); end
|
2256
|
+
def beating_heart; return convert_unicode_to_hex("EB75"); end
|
2257
|
+
def broken_heart; return convert_unicode_to_hex("E477"); end
|
2258
|
+
def two_hearts; return convert_unicode_to_hex("E478"); end
|
2259
|
+
def sparkling_heart; return convert_unicode_to_hex("EAA6"); end
|
2260
|
+
def growing_heart; return convert_unicode_to_hex("EB75"); end
|
2261
|
+
def heart_with_arrow; return convert_unicode_to_hex("E4EA"); end
|
2262
|
+
def heart_1; return convert_unicode_to_hex("EAA7"); end
|
2263
|
+
def heart_2; return convert_unicode_to_hex("EAA8"); end
|
2264
|
+
def heart_3; return convert_unicode_to_hex("EAA9"); end
|
2265
|
+
def heart_4; return convert_unicode_to_hex("EAAA"); end
|
2266
|
+
def heart_with_ribbon; return convert_unicode_to_hex("EB54"); end
|
2267
|
+
def revolving_hearts; return convert_unicode_to_hex("E5AF"); end
|
2268
|
+
def heart_decoration; return convert_unicode_to_hex("E595"); end
|
2269
|
+
|
2270
|
+
def black_heart_suit; return convert_unicode_to_hex("EAA5"); end
|
2271
|
+
def black_spade_suit; return convert_unicode_to_hex("E5A1"); end
|
2272
|
+
def black_diamond_suit; return convert_unicode_to_hex("E5A2"); end
|
2273
|
+
def black_club_suit; return convert_unicode_to_hex("E5A3"); end
|
2274
|
+
|
2275
|
+
def smoking_symbol; return convert_unicode_to_hex("E47D"); end
|
2276
|
+
def no_smoking_symbol; return convert_unicode_to_hex("E47E"); end
|
2277
|
+
def wheelchair_symbol; return convert_unicode_to_hex("E47F"); end
|
2278
|
+
def japanese_symbol_for_beginner; return convert_unicode_to_hex("E480"); end
|
2279
|
+
def trident_emblem; return convert_unicode_to_hex("E5C9"); end
|
2280
|
+
def triangular_flag_on_post; return convert_unicode_to_hex("EB2C"); end
|
2281
|
+
def warning_sign; return convert_unicode_to_hex("E481"); end
|
2282
|
+
def no_entry; return convert_unicode_to_hex("E484"); end
|
2283
|
+
def black_universal_recycling_symbol; return convert_unicode_to_hex("EB79"); end
|
2284
|
+
def mens_symbol; warning(get_this_method); return nil; end
|
2285
|
+
def womens_symbol; warning(get_this_method); return nil; end
|
2286
|
+
def baby_symbol; return convert_unicode_to_hex("EB18"); end
|
2287
|
+
def heavy_large_circle; return convert_unicode_to_hex("EAAD"); end
|
2288
|
+
def cross_mark; return convert_unicode_to_hex("E550"); end
|
2289
|
+
def negative_squared_cross_mark; return convert_unicode_to_hex("E551"); end
|
2290
|
+
def no_entry_sign; return convert_unicode_to_hex("E541"); end
|
2291
|
+
def heavy_check_mark; return convert_unicode_to_hex("E557"); end
|
2292
|
+
def white_heavy_check_mark; return convert_unicode_to_hex("E55E"); end
|
2293
|
+
def link_symbol; return convert_unicode_to_hex("E58A"); end
|
2294
|
+
def em_space; return convert_unicode_to_hex("E58C"); end
|
2295
|
+
def en_space; return convert_unicode_to_hex("E58D"); end
|
2296
|
+
def four_per_em_space; return convert_unicode_to_hex("E58E"); end
|
2297
|
+
|
2298
|
+
def free_sign; return convert_unicode_to_hex("E578"); end
|
2299
|
+
def no_one_under_eighteen_sign; return convert_unicode_to_hex("EA83"); end
|
2300
|
+
def ok_sign; return convert_unicode_to_hex("E5AD"); end
|
2301
|
+
def no_good_sign; warning(get_this_method); return nil; end
|
2302
|
+
def copyright_sign; return convert_unicode_to_hex("E558"); end
|
2303
|
+
def registered_sign; return convert_unicode_to_hex("E559"); end
|
2304
|
+
def trade_mark_sign; return convert_unicode_to_hex("E54E"); end
|
2305
|
+
def vs_sign; return convert_unicode_to_hex("E5D2"); end
|
2306
|
+
def new_sign; return convert_unicode_to_hex("E5B5"); end
|
2307
|
+
def up_sign; return convert_unicode_to_hex("E50F"); end
|
2308
|
+
def cool_sign; return convert_unicode_to_hex("EA85"); end
|
2309
|
+
def top_with_up_pointing_triangle_sign; warning(get_this_method); return nil; end
|
2310
|
+
def information_source; return convert_unicode_to_hex("E533"); end
|
2311
|
+
def sos_sign; return convert_unicode_to_hex("E4E8"); end
|
2312
|
+
|
2313
|
+
def squared_katakana_koko; warning(get_this_method); return nil; end
|
2314
|
+
def squared_katakana_sa; return convert_unicode_to_hex("EA87"); end
|
2315
|
+
|
2316
|
+
def squared_cjk_unified_ideograph_7981; warning(get_this_method); return nil; end
|
2317
|
+
def squared_cjk_unified_ideograph_7a7a; return convert_unicode_to_hex("EA8A"); end
|
2318
|
+
def squared_cjk_unified_ideograph_5408; warning(get_this_method); return nil; end
|
2319
|
+
def squared_cjk_unified_ideograph_6e80; return convert_unicode_to_hex("EA89"); end
|
2320
|
+
def squared_cjk_unified_ideograph_6709; warning(get_this_method); return nil; end
|
2321
|
+
def squared_cjk_unified_ideograph_7121; warning(get_this_method); return nil; end
|
2322
|
+
def squared_cjk_unified_ideograph_6708; warning(get_this_method); return nil; end
|
2323
|
+
def squared_cjk_unified_ideograph_7533; warning(get_this_method); return nil; end
|
2324
|
+
def squared_cjk_unified_ideograph_5272; return convert_unicode_to_hex("EA86"); end
|
2325
|
+
def squared_cjk_unified_ideograph_6307; return convert_unicode_to_hex("EA8B"); end
|
2326
|
+
def squared_cjk_unified_ideograph_55b6; return convert_unicode_to_hex("EA8C"); end
|
2327
|
+
|
2328
|
+
def circled_ideograph_secret; return convert_unicode_to_hex("E4F1"); end
|
2329
|
+
def circled_ideograph_congratulation; return convert_unicode_to_hex("EA99"); end
|
2330
|
+
def circled_ideograph_advantage; return convert_unicode_to_hex("E4F7"); end
|
2331
|
+
def circled_ideograph_accept; return convert_unicode_to_hex("EB01"); end
|
2332
|
+
|
2333
|
+
def heavy_plus_sign; return convert_unicode_to_hex("E53C"); end
|
2334
|
+
def heavy_minus_sign; return convert_unicode_to_hex("E53D"); end
|
2335
|
+
def heavy_multiplication_x; return convert_unicode_to_hex("E54F"); end
|
2336
|
+
def heavy_division_sign; return convert_unicode_to_hex("E554"); end
|
2337
|
+
|
2338
|
+
def diamond_shape_with_a_dot_inside; warning(get_this_method); return nil; end
|
2339
|
+
def electric_light_bulb; return convert_unicode_to_hex("E476"); end
|
2340
|
+
def anger_sign; return convert_unicode_to_hex("E4E5"); end
|
2341
|
+
def bomb; return convert_unicode_to_hex("E47A"); end
|
2342
|
+
def sleeping_sign; return convert_unicode_to_hex("E475"); end
|
2343
|
+
def collision_symbol; return convert_unicode_to_hex("E5B0"); end
|
2344
|
+
def splashing_sweat; return convert_unicode_to_hex("E5B1"); end
|
2345
|
+
def drip; return convert_unicode_to_hex("E4E6"); end
|
2346
|
+
def dash_symbol; return convert_unicode_to_hex("E4F4"); end
|
2347
|
+
def flexed_bicep; return convert_unicode_to_hex("E4E9"); end
|
2348
|
+
def dizzy_symbol; return convert_unicode_to_hex("EB5C"); end
|
2349
|
+
|
2350
|
+
def sparkles; return convert_unicode_to_hex("EAAB"); end
|
2351
|
+
def eight_pointed_black_star; return convert_unicode_to_hex("E479"); end
|
2352
|
+
def eight_spoked_asterisk; return convert_unicode_to_hex("E53E"); end
|
2353
|
+
def medium_white_circle; return convert_unicode_to_hex("E53A"); end
|
2354
|
+
def medium_black_circle; return convert_unicode_to_hex("E53B"); end
|
2355
|
+
def large_circle_1; return convert_unicode_to_hex("E54A"); end
|
2356
|
+
def large_circle_2; return convert_unicode_to_hex("E54B"); end
|
2357
|
+
def black_rounded_square; return convert_unicode_to_hex("E54B"); end
|
2358
|
+
def white_rounded_square; return convert_unicode_to_hex("E54B"); end
|
2359
|
+
def white_medium_star; return convert_unicode_to_hex("E48B"); end
|
2360
|
+
def glowing_star; return convert_unicode_to_hex("E48B"); end
|
2361
|
+
def shooting_star; return convert_unicode_to_hex("E468"); end
|
2362
|
+
def white_large_square; return convert_unicode_to_hex("E548"); end
|
2363
|
+
def black_large_square; return convert_unicode_to_hex("E549"); end
|
2364
|
+
def white_small_square; return convert_unicode_to_hex("E531"); end
|
2365
|
+
def black_small_square; return convert_unicode_to_hex("E532"); end
|
2366
|
+
def white_medium_small_square; return convert_unicode_to_hex("E534"); end
|
2367
|
+
def black_medium_small_square; return convert_unicode_to_hex("E535"); end
|
2368
|
+
def white_medium_square; return convert_unicode_to_hex("E538"); end
|
2369
|
+
def black_medium_square; return convert_unicode_to_hex("E539"); end
|
2370
|
+
def large_diamond_1; return convert_unicode_to_hex("E546"); end
|
2371
|
+
def large_diamond_2; return convert_unicode_to_hex("E547"); end
|
2372
|
+
def small_diamond_1; return convert_unicode_to_hex("E536"); end
|
2373
|
+
def small_diamond_2; return convert_unicode_to_hex("E537"); end
|
2374
|
+
def sparkle; return convert_unicode_to_hex("E46C"); end
|
2375
|
+
|
2376
|
+
def white_flower; return convert_unicode_to_hex("E4F0"); end
|
2377
|
+
def hundred_points_symbol; return convert_unicode_to_hex("E4F2"); end
|
2378
|
+
|
2379
|
+
def identification_sign; return convert_unicode_to_hex("EA88"); end
|
2380
|
+
def clear_sign; return convert_unicode_to_hex("E5AB"); end
|
2381
|
+
def leftwards_arrow_with_hook; return convert_unicode_to_hex("E55D"); end
|
2382
|
+
def rightwards_arrow_with_hook; return convert_unicode_to_hex("E55C"); end
|
2383
|
+
def left_pointing_magnifying_glass; return convert_unicode_to_hex("E518"); end
|
2384
|
+
def right_pointing_magnifying_glass; return convert_unicode_to_hex("EB05"); end
|
2385
|
+
def lock; return convert_unicode_to_hex("E51C"); end
|
2386
|
+
def open_lock; return convert_unicode_to_hex("E51C"); end
|
2387
|
+
def lock_with_ink_pen; return convert_unicode_to_hex("EB0C"); end
|
2388
|
+
def closed_lock_with_key; return convert_unicode_to_hex("EAFC"); end
|
2389
|
+
def key; return convert_unicode_to_hex("E519"); end
|
2390
|
+
def ballot_box_with_check; return convert_unicode_to_hex("EB02"); end
|
2391
|
+
def radio_button; return convert_unicode_to_hex("EB04"); end
|
2392
|
+
def back_with_left_arrow_above; return convert_unicode_to_hex("EB06"); end
|
2393
|
+
def bookmark; return convert_unicode_to_hex("EB07"); end
|
2394
|
+
def double_clockwise_open_circle_arrows; return convert_unicode_to_hex("EB0D"); end
|
2395
|
+
def e_mail_symbol; return convert_unicode_to_hex("EB71"); end
|
2396
|
+
|
2397
|
+
def raised_fist; return convert_unicode_to_hex("EB83"); end
|
2398
|
+
def raised_hand; return convert_unicode_to_hex("E5A7"); end
|
2399
|
+
def victory_hand; return convert_unicode_to_hex("E5A6"); end
|
2400
|
+
|
2401
|
+
def fisted_hand; return convert_unicode_to_hex("E4F3"); end
|
2402
|
+
def thumbs_up_sign; return convert_unicode_to_hex("E4F9"); end
|
2403
|
+
def white_up_pointing_index; return convert_unicode_to_hex("E4F6"); end
|
2404
|
+
def white_up_pointing_backhand_index; return convert_unicode_to_hex("EA8D"); end
|
2405
|
+
def white_down_pointing_backhand_index; return convert_unicode_to_hex("EA8E"); end
|
2406
|
+
def white_left_pointing_backhand_index; return convert_unicode_to_hex("E4FF"); end
|
2407
|
+
def white_right_pointing_backhand_index; return convert_unicode_to_hex("E500"); end
|
2408
|
+
def waving_hand; return convert_unicode_to_hex("EAD6"); end
|
2409
|
+
def clapping_hands; return convert_unicode_to_hex("EAD3"); end
|
2410
|
+
def ok_hand_sign; return convert_unicode_to_hex("EAD4"); end
|
2411
|
+
def thumbs_down_sign; return convert_unicode_to_hex("EAD5"); end
|
2412
|
+
def open_hands; return convert_unicode_to_hex("EAD6"); end
|
2413
|
+
end
|
2414
|
+
|
2415
|
+
class Google < Emoji
|
2416
|
+
def black_sun_with_rays; return convert_unicode_to_hex("FE000"); end
|
2417
|
+
def cloud; return convert_unicode_to_hex("FE001"); end
|
2418
|
+
def umbrella_with_rain_drops; return convert_unicode_to_hex("FE002"); end
|
2419
|
+
def snowman_without_snow; return convert_unicode_to_hex("FE003"); end
|
2420
|
+
def high_voltage_sign; return convert_unicode_to_hex("FE004"); end
|
2421
|
+
def cyclone; return convert_unicode_to_hex("FE005"); end
|
2422
|
+
def foggy; return convert_unicode_to_hex("FE006"); end
|
2423
|
+
def closed_umbrella; return convert_unicode_to_hex("FE007"); end
|
2424
|
+
def night_with_stars; return convert_unicode_to_hex("FE008"); end
|
2425
|
+
def sunrise_over_mountains; return convert_unicode_to_hex("FE009"); end
|
2426
|
+
def sunrise; return convert_unicode_to_hex("FE00A"); end
|
2427
|
+
def cityscape_at_dusk; return convert_unicode_to_hex("FE00B"); end
|
2428
|
+
def sunset_over_buildings; return convert_unicode_to_hex("FE00C"); end
|
2429
|
+
def rainbow; return convert_unicode_to_hex("FE00D"); end
|
2430
|
+
def snowflake; return convert_unicode_to_hex("FE00E"); end
|
2431
|
+
def sun_behind_cloud; return convert_unicode_to_hex("FE00F"); end
|
2432
|
+
def bridge_at_night; return convert_unicode_to_hex("FE010"); end
|
2433
|
+
|
2434
|
+
def new_moon_symbol; return convert_unicode_to_hex("FE011"); end
|
2435
|
+
def waxing_gibbous_moon_symbol; return convert_unicode_to_hex("FE012"); end
|
2436
|
+
def first_quarter_moon_symbol; return convert_unicode_to_hex("FE013"); end
|
2437
|
+
def crescent_moon; return convert_unicode_to_hex("FE014"); end
|
2438
|
+
def full_moon_symbol; return convert_unicode_to_hex("FE015"); end
|
2439
|
+
def first_quarter_moon_with_face; return convert_unicode_to_hex("FE016"); end
|
2440
|
+
|
2441
|
+
def soon_with_right_arrow_above; return convert_unicode_to_hex("FE018"); end
|
2442
|
+
def on_with_double_pointing_arrow_above; return convert_unicode_to_hex("FE019"); end
|
2443
|
+
def end_with_left_arrow_above; return convert_unicode_to_hex("FE01A"); end
|
2444
|
+
def hourglass_with_flowing_sand; return convert_unicode_to_hex("FE01B"); end
|
2445
|
+
def hourglass; return convert_unicode_to_hex("FE01C"); end
|
2446
|
+
def watch; return convert_unicode_to_hex("FE01D"); end
|
2447
|
+
def clock_face_one_oclock; return convert_unicode_to_hex("FE01E"); end
|
2448
|
+
def clock_face_two_oclock; return convert_unicode_to_hex("FE01F"); end
|
2449
|
+
def clock_face_three_oclock; return convert_unicode_to_hex("FE020"); end
|
2450
|
+
def clock_face_four_oclock; return convert_unicode_to_hex("FE021"); end
|
2451
|
+
def clock_face_five_oclock; return convert_unicode_to_hex("FE022"); end
|
2452
|
+
def clock_face_six_oclock; return convert_unicode_to_hex("FE023"); end
|
2453
|
+
def clock_face_seven_oclock; return convert_unicode_to_hex("FE024"); end
|
2454
|
+
def clock_face_eight_oclock; return convert_unicode_to_hex("FE025"); end
|
2455
|
+
def clock_face_nine_oclock; return convert_unicode_to_hex("FE026"); end
|
2456
|
+
def clock_face_ten_oclock; return convert_unicode_to_hex("FE027"); end
|
2457
|
+
def clock_face_eleven_oclock; return convert_unicode_to_hex("FE028"); end
|
2458
|
+
def clock_face_twelve_oclock; return convert_unicode_to_hex("FE029"); end
|
2459
|
+
|
2460
|
+
def alarm_clock; return convert_unicode_to_hex("FE02A"); end
|
2461
|
+
|
2462
|
+
def aries; return convert_unicode_to_hex("FE02B"); end
|
2463
|
+
def taurus; return convert_unicode_to_hex("FE02C"); end
|
2464
|
+
def gemini; return convert_unicode_to_hex("FE02D"); end
|
2465
|
+
def cancer; return convert_unicode_to_hex("FE02E"); end
|
2466
|
+
def leo; return convert_unicode_to_hex("FE02F"); end
|
2467
|
+
def virgo; return convert_unicode_to_hex("FE030"); end
|
2468
|
+
def libra; return convert_unicode_to_hex("FE031"); end
|
2469
|
+
def scorpius; return convert_unicode_to_hex("FE032"); end
|
2470
|
+
def sagittarius; return convert_unicode_to_hex("FE033"); end
|
2471
|
+
def capricorn; return convert_unicode_to_hex("FE034"); end
|
2472
|
+
def aquarius; return convert_unicode_to_hex("FE035"); end
|
2473
|
+
def pisces; return convert_unicode_to_hex("FE036"); end
|
2474
|
+
def ophiuchus; return convert_unicode_to_hex("FE037"); end
|
2475
|
+
|
2476
|
+
def water_wave; return convert_unicode_to_hex("FE038"); end
|
2477
|
+
def earth_globe_asia_australia; return convert_unicode_to_hex("FE039"); end
|
2478
|
+
def volcano; return convert_unicode_to_hex("FE03A"); end
|
2479
|
+
def milky_way; return convert_unicode_to_hex("FE03B"); end
|
2480
|
+
|
2481
|
+
def four_leaf_clover; return convert_unicode_to_hex("FE03C"); end
|
2482
|
+
def tulip; return convert_unicode_to_hex("FE03D"); end
|
2483
|
+
def seedling; return convert_unicode_to_hex("FE03E"); end
|
2484
|
+
def maple_leaf; return convert_unicode_to_hex("FE03F"); end
|
2485
|
+
def cherry_blossom; return convert_unicode_to_hex("FE040"); end
|
2486
|
+
def rose; return convert_unicode_to_hex("FE041"); end
|
2487
|
+
def fallen_leaf; return convert_unicode_to_hex("FE042"); end
|
2488
|
+
def leaf_fluttering_in_wind; return convert_unicode_to_hex("FE043"); end
|
2489
|
+
def hibiscus; return convert_unicode_to_hex("FE045"); end
|
2490
|
+
def sunflower; return convert_unicode_to_hex("FE046"); end
|
2491
|
+
def palm_tree; return convert_unicode_to_hex("FE047"); end
|
2492
|
+
def cactus; return convert_unicode_to_hex("FE048"); end
|
2493
|
+
def ear_of_rice; return convert_unicode_to_hex("FE049"); end
|
2494
|
+
def ear_of_maize; return convert_unicode_to_hex("FE04A"); end
|
2495
|
+
def mushroom; return convert_unicode_to_hex("FE04B"); end
|
2496
|
+
def chestnut; return convert_unicode_to_hex("FE04C"); end
|
2497
|
+
def blossom; return convert_unicode_to_hex("FE04D"); end
|
2498
|
+
def herb; return convert_unicode_to_hex("FE04E"); end
|
2499
|
+
|
2500
|
+
def cherries; return convert_unicode_to_hex("FE04F"); end
|
2501
|
+
def banana; return convert_unicode_to_hex("FE050"); end
|
2502
|
+
def apple_1; return convert_unicode_to_hex("FE051"); end
|
2503
|
+
def tangerine; return convert_unicode_to_hex("FE052"); end
|
2504
|
+
def strawberry; return convert_unicode_to_hex("FE053"); end
|
2505
|
+
def watermelon; return convert_unicode_to_hex("FE054"); end
|
2506
|
+
def tomato; return convert_unicode_to_hex("FE055"); end
|
2507
|
+
def aubergine; return convert_unicode_to_hex("FE056"); end
|
2508
|
+
def melon; return convert_unicode_to_hex("FE057"); end
|
2509
|
+
def pineapple; return convert_unicode_to_hex("FE058"); end
|
2510
|
+
def grapes; return convert_unicode_to_hex("FE059"); end
|
2511
|
+
def peach; return convert_unicode_to_hex("FE05A"); end
|
2512
|
+
def apple_2; return convert_unicode_to_hex("FE05B"); end
|
2513
|
+
|
2514
|
+
|
2515
|
+
def eyes; return convert_unicode_to_hex("FE190"); end
|
2516
|
+
def ear; return convert_unicode_to_hex("FE191"); end
|
2517
|
+
def nose; return convert_unicode_to_hex("FE192"); end
|
2518
|
+
def mouth; return convert_unicode_to_hex("FE193"); end
|
2519
|
+
def tongue; return convert_unicode_to_hex("FE194"); end
|
2520
|
+
|
2521
|
+
def lipstick; return convert_unicode_to_hex("FE195"); end
|
2522
|
+
def nail_care; return convert_unicode_to_hex("FE196"); end
|
2523
|
+
def face_massage; return convert_unicode_to_hex("FE197"); end
|
2524
|
+
def haircut; return convert_unicode_to_hex("FE198"); end
|
2525
|
+
def barber_pole; return convert_unicode_to_hex("FE199"); end
|
2526
|
+
|
2527
|
+
def bust_in_silhouette; return convert_unicode_to_hex("FE19A"); end
|
2528
|
+
|
2529
|
+
def boys_head; return convert_unicode_to_hex("FE19B"); end
|
2530
|
+
def girls_head; return convert_unicode_to_hex("FE19C"); end
|
2531
|
+
def mans_head; return convert_unicode_to_hex("FE19D"); end
|
2532
|
+
def womans_head; return convert_unicode_to_hex("FE19E"); end
|
2533
|
+
def family; return convert_unicode_to_hex("FE19F"); end
|
2534
|
+
def couple; return convert_unicode_to_hex("FE1A0"); end
|
2535
|
+
def police_officer; return convert_unicode_to_hex("FE1A1"); end
|
2536
|
+
def woman_with_bunny_ears; return convert_unicode_to_hex("FE1A2"); end
|
2537
|
+
def bride_with_veil; return convert_unicode_to_hex("FE1A3"); end
|
2538
|
+
def western_person; return convert_unicode_to_hex("FE1A4"); end
|
2539
|
+
def man_with_gua_pi_mao; return convert_unicode_to_hex("FE1A5"); end
|
2540
|
+
def man_with_turban; return convert_unicode_to_hex("FE1A6"); end
|
2541
|
+
def older_man; return convert_unicode_to_hex("FE1A7"); end
|
2542
|
+
def older_woman; return convert_unicode_to_hex("FE1A8"); end
|
2543
|
+
def baby; return convert_unicode_to_hex("FE1A9"); end
|
2544
|
+
def construction_worker; return convert_unicode_to_hex("FE1AA"); end
|
2545
|
+
|
2546
|
+
def princess; return convert_unicode_to_hex("FE1AB"); end
|
2547
|
+
def ogre; return convert_unicode_to_hex("FE1AC"); end
|
2548
|
+
def goblin; return convert_unicode_to_hex("FE1AD"); end
|
2549
|
+
def ghost; return convert_unicode_to_hex("FE1AE"); end
|
2550
|
+
def cherub; return convert_unicode_to_hex("FE1AF"); end
|
2551
|
+
def extraterrestrial_alien; return convert_unicode_to_hex("FE1B0"); end
|
2552
|
+
def alien_monster; return convert_unicode_to_hex("FE1B1"); end
|
2553
|
+
def imp; return convert_unicode_to_hex("FE1B2"); end
|
2554
|
+
def skull; return convert_unicode_to_hex("FE1B3"); end
|
2555
|
+
|
2556
|
+
def information_desk_person; return convert_unicode_to_hex("FE1B4"); end
|
2557
|
+
def guardsman; return convert_unicode_to_hex("FE1B5"); end
|
2558
|
+
def dancer; return convert_unicode_to_hex("FE1B6"); end
|
2559
|
+
|
2560
|
+
def dog_face; return convert_unicode_to_hex("FE1B7"); end
|
2561
|
+
def cat_face; return convert_unicode_to_hex("FE1B8"); end
|
2562
|
+
def snail; return convert_unicode_to_hex("FE1B9"); end
|
2563
|
+
def baby_chick; return convert_unicode_to_hex("FE1BA"); end
|
2564
|
+
def front_facing_baby_chick; return convert_unicode_to_hex("FE1BB"); end
|
2565
|
+
def hatching_chick; return convert_unicode_to_hex("FE1DD"); end
|
2566
|
+
def penguin; return convert_unicode_to_hex("FE1BC"); end
|
2567
|
+
def fish; return convert_unicode_to_hex("FE1BD"); end
|
2568
|
+
def horse_face; return convert_unicode_to_hex("FE1BE"); end
|
2569
|
+
def pig_face; return convert_unicode_to_hex("FE1BF"); end
|
2570
|
+
def tiger_face; return convert_unicode_to_hex("FE1C0"); end
|
2571
|
+
def bear_face; return convert_unicode_to_hex("FE1C1"); end
|
2572
|
+
def mouse_face; return convert_unicode_to_hex("FE1C2"); end
|
2573
|
+
def spouting_whale; return convert_unicode_to_hex("FE1C3"); end
|
2574
|
+
def monkey_face; return convert_unicode_to_hex("FE1C4"); end
|
2575
|
+
def octopus; return convert_unicode_to_hex("FE1C5"); end
|
2576
|
+
def spiral_shell; return convert_unicode_to_hex("FE1C6"); end
|
2577
|
+
def dolphin; return convert_unicode_to_hex("FE1C7"); end
|
2578
|
+
def bird; return convert_unicode_to_hex("FE1C8"); end
|
2579
|
+
def tropical_fish; return convert_unicode_to_hex("FE1C9"); end
|
2580
|
+
def hamster_face; return convert_unicode_to_hex("FE1CA"); end
|
2581
|
+
def bug; return convert_unicode_to_hex("FE1CB"); end
|
2582
|
+
def elephant; return convert_unicode_to_hex("FE1CC"); end
|
2583
|
+
def koala; return convert_unicode_to_hex("FE1CD"); end
|
2584
|
+
def monkey; return convert_unicode_to_hex("FE1CE"); end
|
2585
|
+
def sheep; return convert_unicode_to_hex("FE1CF"); end
|
2586
|
+
def wolf_face; return convert_unicode_to_hex("FE1D0"); end
|
2587
|
+
def cow_face; return convert_unicode_to_hex("FE1D1"); end
|
2588
|
+
def rabbit_face; return convert_unicode_to_hex("FE1D2"); end
|
2589
|
+
def snake; return convert_unicode_to_hex("FE1D3"); end
|
2590
|
+
def chicken; return convert_unicode_to_hex("FE1D4"); end
|
2591
|
+
def boar; return convert_unicode_to_hex("FE1D5"); end
|
2592
|
+
def camel; return convert_unicode_to_hex("FE1D6"); end
|
2593
|
+
def frog_face; return convert_unicode_to_hex("FE1D7"); end
|
2594
|
+
def poodle; return convert_unicode_to_hex("FE1D8"); end
|
2595
|
+
def blowfish; return convert_unicode_to_hex("FE1D9"); end
|
2596
|
+
def ant; return convert_unicode_to_hex("FE1DA"); end
|
2597
|
+
def paw_prints; return convert_unicode_to_hex("FE1DB"); end
|
2598
|
+
def turtle; return convert_unicode_to_hex("FE1DC"); end
|
2599
|
+
def dragon_face; return convert_unicode_to_hex("FE1DE"); end
|
2600
|
+
def panda_face; return convert_unicode_to_hex("FE1DF"); end
|
2601
|
+
def pig_nose; return convert_unicode_to_hex("FE1E0"); end
|
2602
|
+
def honeybee; return convert_unicode_to_hex("FE1E1"); end
|
2603
|
+
def ladybug; return convert_unicode_to_hex("FE1E2"); end
|
2604
|
+
|
2605
|
+
|
2606
|
+
def angry_face; return convert_unicode_to_hex("FE320"); end
|
2607
|
+
def anguished_face; return convert_unicode_to_hex("FE321"); end
|
2608
|
+
def astonished_face; return convert_unicode_to_hex("FE322"); end
|
2609
|
+
def disappointed_face; return convert_unicode_to_hex("FE323"); end
|
2610
|
+
def dizzy_face; return convert_unicode_to_hex("FE324"); end
|
2611
|
+
def exasperated_face; return convert_unicode_to_hex("FE325"); end
|
2612
|
+
def expressionless_face; return convert_unicode_to_hex("FE326"); end
|
2613
|
+
def face_with_heart_shaped_eyes; return convert_unicode_to_hex("FE327"); end
|
2614
|
+
def face_with_look_of_triumph; return convert_unicode_to_hex("FE328"); end
|
2615
|
+
def winking_face_with_stuck_out_tongue; return convert_unicode_to_hex("FE329"); end
|
2616
|
+
def face_with_stuck_out_tongue; return convert_unicode_to_hex("FE32A"); end
|
2617
|
+
def face_savoring_delicious_food; return convert_unicode_to_hex("FE32B"); end
|
2618
|
+
def face_throwing_a_kiss; return convert_unicode_to_hex("FE32C"); end
|
2619
|
+
def face_kissing; return convert_unicode_to_hex("FE32D"); end
|
2620
|
+
def face_with_mask; return convert_unicode_to_hex("FE32E"); end
|
2621
|
+
def flushed_face; return convert_unicode_to_hex("FE32F"); end
|
2622
|
+
def happy_face_with_open_mouth; return convert_unicode_to_hex("FE330"); end
|
2623
|
+
def happy_face_with_open_mouth_and_cold_sweat; return convert_unicode_to_hex("FE331"); end
|
2624
|
+
def happy_face_with_open_mouth_and_closed_eyes; return convert_unicode_to_hex("FE332"); end
|
2625
|
+
def happy_face_with_grin; return convert_unicode_to_hex("FE333"); end
|
2626
|
+
def happy_and_crying_face; return convert_unicode_to_hex("FE334"); end
|
2627
|
+
def happy_face_with_wide_mouth_and_raised_eyebrows; return convert_unicode_to_hex("FE335"); end
|
2628
|
+
def white_smiling_face; return convert_unicode_to_hex("FE336"); end
|
2629
|
+
def happy_face_with_open_mouth_and_raised_eyebrows; return convert_unicode_to_hex("FE338"); end
|
2630
|
+
def crying_face; return convert_unicode_to_hex("FE339"); end
|
2631
|
+
def loudly_crying_face; return convert_unicode_to_hex("FE33A"); end
|
2632
|
+
def fearful_face; return convert_unicode_to_hex("FE33B"); end
|
2633
|
+
def persevering_face; return convert_unicode_to_hex("FE33C"); end
|
2634
|
+
def pouting_face; return convert_unicode_to_hex("FE33D"); end
|
2635
|
+
def relieved_face; return convert_unicode_to_hex("FE33E"); end
|
2636
|
+
def confounded_face; return convert_unicode_to_hex("FE33F"); end
|
2637
|
+
def pensive_face; return convert_unicode_to_hex("FE340"); end
|
2638
|
+
def face_screaming_in_fear; return convert_unicode_to_hex("FE341"); end
|
2639
|
+
def sleepy_face; return convert_unicode_to_hex("FE342"); end
|
2640
|
+
def smirking_face; return convert_unicode_to_hex("FE343"); end
|
2641
|
+
def face_with_cold_sweat; return convert_unicode_to_hex("FE344"); end
|
2642
|
+
def disappointed_but_relieved_face; return convert_unicode_to_hex("FE345"); end
|
2643
|
+
def tired_face; return convert_unicode_to_hex("FE346"); end
|
2644
|
+
def winking_face; return convert_unicode_to_hex("FE347"); end
|
2645
|
+
|
2646
|
+
def cat_face_with_open_mouth; return convert_unicode_to_hex("FE348"); end
|
2647
|
+
def happy_cat_face_with_grin; return convert_unicode_to_hex("FE349"); end
|
2648
|
+
def happy_and_crying_cat_face; return convert_unicode_to_hex("FE34A"); end
|
2649
|
+
def cat_face_kissing; return convert_unicode_to_hex("FE34B"); end
|
2650
|
+
def cat_face_with_heart_shaped_eyes; return convert_unicode_to_hex("FE34C"); end
|
2651
|
+
def crying_cat_face; return convert_unicode_to_hex("FE34D"); end
|
2652
|
+
def pouting_cat_face; return convert_unicode_to_hex("FE34E"); end
|
2653
|
+
def cat_face_with_tightly_closed_lips; return convert_unicode_to_hex("FE34F"); end
|
2654
|
+
def anguished_cat_face; return convert_unicode_to_hex("FE350"); end
|
2655
|
+
|
2656
|
+
def face_with_no_good_gesture; return convert_unicode_to_hex("FE351"); end
|
2657
|
+
def face_with_ok_gesture; return convert_unicode_to_hex("FE352"); end
|
2658
|
+
def person_bowing_deeply; return convert_unicode_to_hex("FE353"); end
|
2659
|
+
def see_no_evil_monkey; return convert_unicode_to_hex("FE354"); end
|
2660
|
+
def speak_no_evil_monkey; return convert_unicode_to_hex("FE355"); end
|
2661
|
+
def hear_no_evil_monkey; return convert_unicode_to_hex("FE356"); end
|
2662
|
+
def person_raising_one_hand; return convert_unicode_to_hex("FE357"); end
|
2663
|
+
def person_raising_both_hands_in_cheers; return convert_unicode_to_hex("FE358"); end
|
2664
|
+
def person_frowning; return convert_unicode_to_hex("FE359"); end
|
2665
|
+
def person_with_pouting_face; return convert_unicode_to_hex("FE35A"); end
|
2666
|
+
def person_with_folded_hands; return convert_unicode_to_hex("FE35B"); end
|
2667
|
+
|
2668
|
+
|
2669
|
+
def house_building; return convert_unicode_to_hex("FE4B0"); end
|
2670
|
+
def house_with_yard; return convert_unicode_to_hex("FE4B1"); end
|
2671
|
+
def office_building; return convert_unicode_to_hex("FE4B2"); end
|
2672
|
+
def japanese_post_office; return convert_unicode_to_hex("FE4B3"); end
|
2673
|
+
def hospital; return convert_unicode_to_hex("FE4B4"); end
|
2674
|
+
def bank; return convert_unicode_to_hex("FE4B5"); end
|
2675
|
+
def atm; return convert_unicode_to_hex("FE4B6"); end
|
2676
|
+
def hotel; return convert_unicode_to_hex("FE4B7"); end
|
2677
|
+
def love_hotel; return convert_unicode_to_hex("FE4B8"); end
|
2678
|
+
def convenience_store; return convert_unicode_to_hex("FE4B9"); end
|
2679
|
+
def school; return convert_unicode_to_hex("FE4BA"); end
|
2680
|
+
def church; return convert_unicode_to_hex("FE4BB"); end
|
2681
|
+
def fountain; return convert_unicode_to_hex("FE4BC"); end
|
2682
|
+
def department_store; return convert_unicode_to_hex("FE4BD"); end
|
2683
|
+
def japanese_castle; return convert_unicode_to_hex("FE4BE"); end
|
2684
|
+
def western_castle; return convert_unicode_to_hex("FE4BF"); end
|
2685
|
+
def factory; return convert_unicode_to_hex("FE4C0"); end
|
2686
|
+
def anchor; return convert_unicode_to_hex("FE4C1"); end
|
2687
|
+
def izakaya_lantern; return convert_unicode_to_hex("FE4C2"); end
|
2688
|
+
|
2689
|
+
def emoji_compatibility_symbol_1; return convert_unicode_to_hex("FE4C3"); end
|
2690
|
+
def emoji_compatibility_symbol_2; return convert_unicode_to_hex("FE4C4"); end
|
2691
|
+
def emoji_compatibility_symbol_3; return convert_unicode_to_hex("FE4C6"); end
|
2692
|
+
def emoji_compatibility_symbol_4; return convert_unicode_to_hex("FE4C7"); end
|
2693
|
+
def emoji_compatibility_symbol_5; return convert_unicode_to_hex("FE4C8"); end
|
2694
|
+
|
2695
|
+
def wrench; return convert_unicode_to_hex("FE4C9"); end
|
2696
|
+
def hammer; return convert_unicode_to_hex("FE4CA"); end
|
2697
|
+
def nut_and_bolt; return convert_unicode_to_hex("FE4CB"); end
|
2698
|
+
|
2699
|
+
def mans_shoe; return convert_unicode_to_hex("FE4CC"); end
|
2700
|
+
def sneaker; return convert_unicode_to_hex("FE4CD"); end
|
2701
|
+
def high_heeled_shoe; return convert_unicode_to_hex("FE4D6"); end
|
2702
|
+
def womans_sandal; return convert_unicode_to_hex("FE4D7"); end
|
2703
|
+
def womans_boots; return convert_unicode_to_hex("FE4D8"); end
|
2704
|
+
def eyeglasses; return convert_unicode_to_hex("FE4CE"); end
|
2705
|
+
def t_shirt; return convert_unicode_to_hex("FE4CF"); end
|
2706
|
+
def jeans; return convert_unicode_to_hex("FE4D0"); end
|
2707
|
+
def crown; return convert_unicode_to_hex("FE4D1"); end
|
2708
|
+
def necktie; return convert_unicode_to_hex("FE4D3"); end
|
2709
|
+
def womans_hat; return convert_unicode_to_hex("FE4D4"); end
|
2710
|
+
def dress; return convert_unicode_to_hex("FE4D5"); end
|
2711
|
+
def kimono; return convert_unicode_to_hex("FE4D9"); end
|
2712
|
+
def bikini; return convert_unicode_to_hex("FE4DA"); end
|
2713
|
+
def womans_clothes; return convert_unicode_to_hex("FE4DB"); end
|
2714
|
+
def purse; return convert_unicode_to_hex("FE4DC"); end
|
2715
|
+
|
2716
|
+
def money_bag; return convert_unicode_to_hex("FE4DD"); end
|
2717
|
+
def currency_exchange; return convert_unicode_to_hex("FE4DE"); end
|
2718
|
+
def chart_with_upwards_trend_and_yen_symbol; return convert_unicode_to_hex("FE4DF"); end
|
2719
|
+
def heavy_dollar_sign; return convert_unicode_to_hex("FE4E0"); end
|
2720
|
+
def credit_card; return convert_unicode_to_hex("FE4E1"); end
|
2721
|
+
def banknote_with_yen_sign; return convert_unicode_to_hex("FE4E2"); end
|
2722
|
+
def banknote_with_dollar_sign; return convert_unicode_to_hex("FE4E3"); end
|
2723
|
+
def money_with_wings; return convert_unicode_to_hex("FE4E4"); end
|
2724
|
+
|
2725
|
+
def emoji_compatibility_symbol_6; return convert_unicode_to_hex("FE4ED"); end
|
2726
|
+
def emoji_compatibility_symbol_7; return convert_unicode_to_hex("FE4E8"); end
|
2727
|
+
def emoji_compatibility_symbol_8; return convert_unicode_to_hex("FE4EB"); end
|
2728
|
+
def emoji_compatibility_symbol_9; return convert_unicode_to_hex("FE4E7"); end
|
2729
|
+
def emoji_compatibility_symbol_10; return convert_unicode_to_hex("FE4EA"); end
|
2730
|
+
def emoji_compatibility_symbol_11; return convert_unicode_to_hex("FE4E9"); end
|
2731
|
+
def emoji_compatibility_symbol_12; return convert_unicode_to_hex("FE4E5"); end
|
2732
|
+
def emoji_compatibility_symbol_13; return convert_unicode_to_hex("FE4EE"); end
|
2733
|
+
def emoji_compatibility_symbol_14; return convert_unicode_to_hex("FE4EC"); end
|
2734
|
+
def emoji_compatibility_symbol_15; return convert_unicode_to_hex("FE4E6"); end
|
2735
|
+
|
2736
|
+
def camera; return convert_unicode_to_hex("FE4EF"); end
|
2737
|
+
def handbag; return convert_unicode_to_hex("FE4F0"); end
|
2738
|
+
def pouch; return convert_unicode_to_hex("FE4F1"); end
|
2739
|
+
def bell; return convert_unicode_to_hex("FE4F2"); end
|
2740
|
+
def door; return convert_unicode_to_hex("FE4F3"); end
|
2741
|
+
def dung; return convert_unicode_to_hex("FE4F4"); end
|
2742
|
+
def pistol; return convert_unicode_to_hex("FE4F5"); end
|
2743
|
+
def fire; return convert_unicode_to_hex("FE4F6"); end
|
2744
|
+
def crystal_ball; return convert_unicode_to_hex("FE4F7"); end
|
2745
|
+
def six_pointed_star_with_middle_dot; return convert_unicode_to_hex("FE4F8"); end
|
2746
|
+
def video_camera; return convert_unicode_to_hex("FE4F9"); end
|
2747
|
+
def knife; return convert_unicode_to_hex("FE4FA"); end
|
2748
|
+
def flashlight; return convert_unicode_to_hex("FE4FB"); end
|
2749
|
+
def battery; return convert_unicode_to_hex("FE4FC"); end
|
2750
|
+
def scroll; return convert_unicode_to_hex("FE4FD"); end
|
2751
|
+
def electric_plug; return convert_unicode_to_hex("FE4FE"); end
|
2752
|
+
def book_1; return convert_unicode_to_hex("FE4FF"); end
|
2753
|
+
def book_2; return convert_unicode_to_hex("FE500"); end
|
2754
|
+
def book_3; return convert_unicode_to_hex("FE501"); end
|
2755
|
+
def vertical_closed_book; return convert_unicode_to_hex("FE502"); end
|
2756
|
+
def books; return convert_unicode_to_hex("FE503"); end
|
2757
|
+
def name_badge; return convert_unicode_to_hex("FE504"); end
|
2758
|
+
|
2759
|
+
def bath; return convert_unicode_to_hex("FE505"); end
|
2760
|
+
def restroom; return convert_unicode_to_hex("FE506"); end
|
2761
|
+
def toilet; return convert_unicode_to_hex("FE507"); end
|
2762
|
+
def water_closet; return convert_unicode_to_hex("FE508"); end
|
2763
|
+
|
2764
|
+
def syringe; return convert_unicode_to_hex("FE509"); end
|
2765
|
+
def pill; return convert_unicode_to_hex("FE50A"); end
|
2766
|
+
|
2767
|
+
def negative_squared_latin_capital_letter_a; return convert_unicode_to_hex("FE50B"); end
|
2768
|
+
def negative_squared_latin_capital_letter_b; return convert_unicode_to_hex("FE50C"); end
|
2769
|
+
def negative_squared_ab; return convert_unicode_to_hex("FE50D"); end
|
2770
|
+
def negative_squared_latin_capital_letter_o; return convert_unicode_to_hex("FE50E"); end
|
2771
|
+
|
2772
|
+
def ribbon; return convert_unicode_to_hex("FE50F"); end
|
2773
|
+
def wrapped_present; return convert_unicode_to_hex("FE510"); end
|
2774
|
+
def birthday_cake; return convert_unicode_to_hex("FE511"); end
|
2775
|
+
def christmas_tree; return convert_unicode_to_hex("FE512"); end
|
2776
|
+
def santa_claus; return convert_unicode_to_hex("FE513"); end
|
2777
|
+
def crossed_flags; return convert_unicode_to_hex("FE514"); end
|
2778
|
+
def fireworks; return convert_unicode_to_hex("FE515"); end
|
2779
|
+
def balloon; return convert_unicode_to_hex("FE516"); end
|
2780
|
+
def party_popper; return convert_unicode_to_hex("FE517"); end
|
2781
|
+
def pine_decoration; return convert_unicode_to_hex("FE518"); end
|
2782
|
+
def girls_doll_festival; return convert_unicode_to_hex("FE519"); end
|
2783
|
+
def graduation_cap; return convert_unicode_to_hex("FE51A"); end
|
2784
|
+
def school_satchel; return convert_unicode_to_hex("FE51B"); end
|
2785
|
+
def carp_streamer; return convert_unicode_to_hex("FE51C"); end
|
2786
|
+
def firework_sparkler; return convert_unicode_to_hex("FE51D"); end
|
2787
|
+
def wind_chime; return convert_unicode_to_hex("FE51E"); end
|
2788
|
+
def jack_o_lantern; return convert_unicode_to_hex("FE51F"); end
|
2789
|
+
def confetti_ball; return convert_unicode_to_hex("FE520"); end
|
2790
|
+
def tanabata_tree; return convert_unicode_to_hex("FE521"); end
|
2791
|
+
def moon_viewing_ceremony; return convert_unicode_to_hex("FE017"); end
|
2792
|
+
|
2793
|
+
def pager; return convert_unicode_to_hex("FE522"); end
|
2794
|
+
def black_telephone; return convert_unicode_to_hex("FE523"); end
|
2795
|
+
def telephone_receiver; return convert_unicode_to_hex("FE524"); end
|
2796
|
+
def mobile_phone; return convert_unicode_to_hex("FE525"); end
|
2797
|
+
def phone_with_arrow; return convert_unicode_to_hex("FE526"); end
|
2798
|
+
def memo; return convert_unicode_to_hex("FE527"); end
|
2799
|
+
def fax; return convert_unicode_to_hex("FE528"); end
|
2800
|
+
def envelope; return convert_unicode_to_hex("FE529"); end
|
2801
|
+
def incoming_envelope; return convert_unicode_to_hex("FE52A"); end
|
2802
|
+
def envelope_with_arrow; return convert_unicode_to_hex("FE52B"); end
|
2803
|
+
def mailbox; return convert_unicode_to_hex("FE52C"); end
|
2804
|
+
def mailbox_with_raised_flag; return convert_unicode_to_hex("FE52D"); end
|
2805
|
+
def postbox; return convert_unicode_to_hex("FE52E"); end
|
2806
|
+
def public_address_loudspeaker; return convert_unicode_to_hex("FE52F"); end
|
2807
|
+
def cheering_megaphone; return convert_unicode_to_hex("FE530"); end
|
2808
|
+
def satellite_antenna; return convert_unicode_to_hex("FE531"); end
|
2809
|
+
def speech_balloon; return convert_unicode_to_hex("FE532"); end
|
2810
|
+
def outbox_tray; return convert_unicode_to_hex("FE533"); end
|
2811
|
+
def inbox_tray; return convert_unicode_to_hex("FE534"); end
|
2812
|
+
def package; return convert_unicode_to_hex("FE535"); end
|
2813
|
+
|
2814
|
+
def latin_capital_letters_input_symbol; return convert_unicode_to_hex("FEB7C"); end
|
2815
|
+
def latin_small_letters_input_symbol; return convert_unicode_to_hex("FEB7D"); end
|
2816
|
+
def numbers_input_symbol; return convert_unicode_to_hex("FEB7E"); end
|
2817
|
+
def symbols_input_symbol; return convert_unicode_to_hex("FEB7F"); end
|
2818
|
+
def latin_letters_input_symbol; return convert_unicode_to_hex("FEB80"); end
|
2819
|
+
|
2820
|
+
def black_nib; return convert_unicode_to_hex("FE536"); end
|
2821
|
+
def seat; return convert_unicode_to_hex("FE537"); end
|
2822
|
+
def computer; return convert_unicode_to_hex("FE538"); end
|
2823
|
+
def pencil; return convert_unicode_to_hex("FE539"); end
|
2824
|
+
def paperclip; return convert_unicode_to_hex("FE53A"); end
|
2825
|
+
def briefcase; return convert_unicode_to_hex("FE53B"); end
|
2826
|
+
def mini_disc; return convert_unicode_to_hex("FE53C"); end
|
2827
|
+
def floppy_disk; return convert_unicode_to_hex("FE53D"); end
|
2828
|
+
def black_scissors; return convert_unicode_to_hex("FE53E"); end
|
2829
|
+
def round_pushpin; return convert_unicode_to_hex("FE53F"); end
|
2830
|
+
def page_with_curl; return convert_unicode_to_hex("FE540"); end
|
2831
|
+
def page_facing_up; return convert_unicode_to_hex("FE541"); end
|
2832
|
+
def calendar; return convert_unicode_to_hex("FE542"); end
|
2833
|
+
def file_folder; return convert_unicode_to_hex("FE543"); end
|
2834
|
+
def open_file_folder; return convert_unicode_to_hex("FE544"); end
|
2835
|
+
def notebook; return convert_unicode_to_hex("FE545"); end
|
2836
|
+
def open_book; return convert_unicode_to_hex("FE546"); end
|
2837
|
+
def notebook_with_decorative_cover; return convert_unicode_to_hex("FE547"); end
|
2838
|
+
def clipboard; return convert_unicode_to_hex("FE548"); end
|
2839
|
+
def tear_off_calendar; return convert_unicode_to_hex("FE549"); end
|
2840
|
+
def bar_chart; return convert_unicode_to_hex("FE54A"); end
|
2841
|
+
def chart_with_upwards_trend; return convert_unicode_to_hex("FE54B"); end
|
2842
|
+
def chart_with_downwards_trend; return convert_unicode_to_hex("FE54C"); end
|
2843
|
+
def card_index; return convert_unicode_to_hex("FE54D"); end
|
2844
|
+
def pushpin; return convert_unicode_to_hex("FE54E"); end
|
2845
|
+
def ledger; return convert_unicode_to_hex("FE54F"); end
|
2846
|
+
def straight_ruler; return convert_unicode_to_hex("FE550"); end
|
2847
|
+
def triangular_ruler; return convert_unicode_to_hex("FE551"); end
|
2848
|
+
def bookmark_tabs; return convert_unicode_to_hex("FE552"); end
|
2849
|
+
|
2850
|
+
def footprints; return convert_unicode_to_hex("FE553"); end
|
2851
|
+
|
2852
|
+
|
2853
|
+
def running_shirt_with_sash; return convert_unicode_to_hex("FE7D0"); end
|
2854
|
+
def baseball; return convert_unicode_to_hex("FE7D1"); end
|
2855
|
+
def flag_in_hole; return convert_unicode_to_hex("FE7D2"); end
|
2856
|
+
def tennis; return convert_unicode_to_hex("FE7D3"); end
|
2857
|
+
def soccer_ball; return convert_unicode_to_hex("FE7D4"); end
|
2858
|
+
def skiing; return convert_unicode_to_hex("FE7D5"); end
|
2859
|
+
def basketball; return convert_unicode_to_hex("FE7D6"); end
|
2860
|
+
def checkered_flag; return convert_unicode_to_hex("FE7D7"); end
|
2861
|
+
def snowboarder; return convert_unicode_to_hex("FE7D8"); end
|
2862
|
+
def runner; return convert_unicode_to_hex("FE7D9"); end
|
2863
|
+
def surfer; return convert_unicode_to_hex("FE7DA"); end
|
2864
|
+
def trophy; return convert_unicode_to_hex("FE7DB"); end
|
2865
|
+
def horse_racing; return convert_unicode_to_hex("FE7DC"); end
|
2866
|
+
def american_football; return convert_unicode_to_hex("FE7DD"); end
|
2867
|
+
def swimmer; return convert_unicode_to_hex("FE7DE"); end
|
2868
|
+
|
2869
|
+
def train; return convert_unicode_to_hex("FE7DF"); end
|
2870
|
+
def subway; return convert_unicode_to_hex("FE7E0"); end
|
2871
|
+
def circled_latin_capital_letter_m; return convert_unicode_to_hex("FE7E1"); end
|
2872
|
+
def high_speed_train; return convert_unicode_to_hex("FE7E2"); end
|
2873
|
+
def high_speed_train_with_bullet_nose; return convert_unicode_to_hex("FE7E3"); end
|
2874
|
+
def automobile_1; return convert_unicode_to_hex("FE7E4"); end
|
2875
|
+
def recreational_vehicle; return convert_unicode_to_hex("FE7E5"); end
|
2876
|
+
def bus_2; return convert_unicode_to_hex("FE7E6"); end
|
2877
|
+
def bus_stop; return convert_unicode_to_hex("FE7E7"); end
|
2878
|
+
def ship; return convert_unicode_to_hex("FE7E8"); end
|
2879
|
+
def airplane; return convert_unicode_to_hex("FE7E9"); end
|
2880
|
+
def sailboat; return convert_unicode_to_hex("FE7EA"); end
|
2881
|
+
def bicycle; return convert_unicode_to_hex("FE7EB"); end
|
2882
|
+
def station; return convert_unicode_to_hex("FE7EC"); end
|
2883
|
+
def rocket; return convert_unicode_to_hex("FE7ED"); end
|
2884
|
+
def speedboat; return convert_unicode_to_hex("FE7EE"); end
|
2885
|
+
def taxi_1; return convert_unicode_to_hex("FE7EF"); end
|
2886
|
+
def pedestrian; return convert_unicode_to_hex("FE7F0"); end
|
2887
|
+
def truck; return convert_unicode_to_hex("FE7F1"); end
|
2888
|
+
def fire_engine; return convert_unicode_to_hex("FE7F2"); end
|
2889
|
+
def ambulance; return convert_unicode_to_hex("FE7F3"); end
|
2890
|
+
def police_car_1; return convert_unicode_to_hex("FE7F4"); end
|
2891
|
+
|
2892
|
+
def fuel_pump; return convert_unicode_to_hex("FE7F5"); end
|
2893
|
+
def negative_squared_latin_capital_letter_p; return convert_unicode_to_hex("FE7F6"); end
|
2894
|
+
|
2895
|
+
def horizontal_traffic_light; return convert_unicode_to_hex("FE7F7"); end
|
2896
|
+
def construction_sign; return convert_unicode_to_hex("FE7F8"); end
|
2897
|
+
def police_cars_revolving_light; return convert_unicode_to_hex("FE7F9"); end
|
2898
|
+
|
2899
|
+
def hot_springs; return convert_unicode_to_hex("FE7FA"); end
|
2900
|
+
def tent; return convert_unicode_to_hex("FE7FB"); end
|
2901
|
+
def carousel_horse; return convert_unicode_to_hex("FE7FC"); end
|
2902
|
+
def ferris_wheel; return convert_unicode_to_hex("FE7FD"); end
|
2903
|
+
def roller_coaster; return convert_unicode_to_hex("FE7FE"); end
|
2904
|
+
def fishing; return convert_unicode_to_hex("FE7FF"); end
|
2905
|
+
def microphone; return convert_unicode_to_hex("FE800"); end
|
2906
|
+
def movies; return convert_unicode_to_hex("FE801"); end
|
2907
|
+
def cinema; return convert_unicode_to_hex("FE802"); end
|
2908
|
+
def headphone; return convert_unicode_to_hex("FE803"); end
|
2909
|
+
def art; return convert_unicode_to_hex("FE804"); end
|
2910
|
+
def top_hat; return convert_unicode_to_hex("FE805"); end
|
2911
|
+
def event; return convert_unicode_to_hex("FE806"); end
|
2912
|
+
def ticket; return convert_unicode_to_hex("FE807"); end
|
2913
|
+
def movie_shooting_clapboard; return convert_unicode_to_hex("FE808"); end
|
2914
|
+
def performing_arts; return convert_unicode_to_hex("FE809"); end
|
2915
|
+
|
2916
|
+
def video_game; return convert_unicode_to_hex("FE80A"); end
|
2917
|
+
def mahjong_tile_red_dragon; return convert_unicode_to_hex("FE80B"); end
|
2918
|
+
def direct_hit; return convert_unicode_to_hex("FE80C"); end
|
2919
|
+
def slot_machine; return convert_unicode_to_hex("FE80D"); end
|
2920
|
+
def billiards; return convert_unicode_to_hex("FE80E"); end
|
2921
|
+
def game_die; return convert_unicode_to_hex("FE80F"); end
|
2922
|
+
def bowling; return convert_unicode_to_hex("FE810"); end
|
2923
|
+
def flower_playing_cards; return convert_unicode_to_hex("FE811"); end
|
2924
|
+
def playing_card_black_joker; return convert_unicode_to_hex("FE812"); end
|
2925
|
+
|
2926
|
+
def musical_note; return convert_unicode_to_hex("FE813"); end
|
2927
|
+
def multiple_musical_notes; return convert_unicode_to_hex("FE814"); end
|
2928
|
+
def saxophone; return convert_unicode_to_hex("FE815"); end
|
2929
|
+
def guitar; return convert_unicode_to_hex("FE816"); end
|
2930
|
+
def musical_keyboard; return convert_unicode_to_hex("FE817"); end
|
2931
|
+
def trumpet; return convert_unicode_to_hex("FE818"); end
|
2932
|
+
def violin; return convert_unicode_to_hex("FE819"); end
|
2933
|
+
def musical_score; return convert_unicode_to_hex("FE81A"); end
|
2934
|
+
def part_alternation_mark; return convert_unicode_to_hex("FE81B"); end
|
2935
|
+
|
2936
|
+
def television; return convert_unicode_to_hex("FE81C"); end
|
2937
|
+
def optical_disk; return convert_unicode_to_hex("FE81D"); end
|
2938
|
+
def dvd; return convert_unicode_to_hex("FE81E"); end
|
2939
|
+
def radio; return convert_unicode_to_hex("FE81F"); end
|
2940
|
+
def video_cassette_tape; return convert_unicode_to_hex("FE820"); end
|
2941
|
+
def speaker_with_three_sound_waves; return convert_unicode_to_hex("FE821"); end
|
2942
|
+
def newspaper; return convert_unicode_to_hex("FE822"); end
|
2943
|
+
|
2944
|
+
def kiss_mark; return convert_unicode_to_hex("FE823"); end
|
2945
|
+
def love_letter; return convert_unicode_to_hex("FE824"); end
|
2946
|
+
def ring; return convert_unicode_to_hex("FE825"); end
|
2947
|
+
def gem_stone; return convert_unicode_to_hex("FE826"); end
|
2948
|
+
def kiss; return convert_unicode_to_hex("FE827"); end
|
2949
|
+
def bouquet; return convert_unicode_to_hex("FE828"); end
|
2950
|
+
def couple_with_heart; return convert_unicode_to_hex("FE829"); end
|
2951
|
+
def wedding; return convert_unicode_to_hex("FE82A"); end
|
2952
|
+
|
2953
|
+
def hash_key; return convert_unicode_to_hex("FE82C"); end
|
2954
|
+
def keycap_1; return convert_unicode_to_hex("FE82E"); end
|
2955
|
+
def keycap_2; return convert_unicode_to_hex("FE82F"); end
|
2956
|
+
def keycap_3; return convert_unicode_to_hex("FE830"); end
|
2957
|
+
def keycap_4; return convert_unicode_to_hex("FE831"); end
|
2958
|
+
def keycap_5; return convert_unicode_to_hex("FE832"); end
|
2959
|
+
def keycap_6; return convert_unicode_to_hex("FE833"); end
|
2960
|
+
def keycap_7; return convert_unicode_to_hex("FE834"); end
|
2961
|
+
def keycap_8; return convert_unicode_to_hex("FE835"); end
|
2962
|
+
def keycap_9; return convert_unicode_to_hex("FE836"); end
|
2963
|
+
def keycap_0; return convert_unicode_to_hex("FE837"); end
|
2964
|
+
def keycap_ten; return convert_unicode_to_hex("FE83B"); end
|
2965
|
+
def antenna_with_bars; return convert_unicode_to_hex("FE838"); end
|
2966
|
+
def vibration_mode; return convert_unicode_to_hex("FE839"); end
|
2967
|
+
def mobile_phone_off; return convert_unicode_to_hex("FE83A"); end
|
2968
|
+
|
2969
|
+
|
2970
|
+
def hamburger; return convert_unicode_to_hex("FE960"); end
|
2971
|
+
def rice_ball; return convert_unicode_to_hex("FE961"); end
|
2972
|
+
def shortcake; return convert_unicode_to_hex("FE962"); end
|
2973
|
+
def steaming_bowl; return convert_unicode_to_hex("FE963"); end
|
2974
|
+
def bread; return convert_unicode_to_hex("FE964"); end
|
2975
|
+
def cooking; return convert_unicode_to_hex("FE965"); end
|
2976
|
+
def soft_ice_cream; return convert_unicode_to_hex("FE966"); end
|
2977
|
+
def french_fries; return convert_unicode_to_hex("FE967"); end
|
2978
|
+
def dumpling; return convert_unicode_to_hex("FE968"); end
|
2979
|
+
def rice_cracker; return convert_unicode_to_hex("FE969"); end
|
2980
|
+
def cooked_rice; return convert_unicode_to_hex("FE96A"); end
|
2981
|
+
def spaghetti; return convert_unicode_to_hex("FE96B"); end
|
2982
|
+
def curry_and_rice; return convert_unicode_to_hex("FE96C"); end
|
2983
|
+
def seafood_casserole; return convert_unicode_to_hex("FE96D"); end
|
2984
|
+
def sushi; return convert_unicode_to_hex("FE96E"); end
|
2985
|
+
def lunchbox; return convert_unicode_to_hex("FE96F"); end
|
2986
|
+
def pot_of_food; return convert_unicode_to_hex("FE970"); end
|
2987
|
+
def shaved_ice; return convert_unicode_to_hex("FE971"); end
|
2988
|
+
def meat_on_bone; return convert_unicode_to_hex("FE972"); end
|
2989
|
+
def fish_cake_with_swirl_design; return convert_unicode_to_hex("FE973"); end
|
2990
|
+
def roasted_sweet_potato; return convert_unicode_to_hex("FE974"); end
|
2991
|
+
def slice_of_pizza; return convert_unicode_to_hex("FE975"); end
|
2992
|
+
def poultry_leg; return convert_unicode_to_hex("FE976"); end
|
2993
|
+
def ice_cream; return convert_unicode_to_hex("FE977"); end
|
2994
|
+
def doughnut; return convert_unicode_to_hex("FE978"); end
|
2995
|
+
def cookie; return convert_unicode_to_hex("FE979"); end
|
2996
|
+
def chocolate_bar; return convert_unicode_to_hex("FE97A"); end
|
2997
|
+
def candy; return convert_unicode_to_hex("FE97B"); end
|
2998
|
+
def lollipop; return convert_unicode_to_hex("FE97C"); end
|
2999
|
+
def custard; return convert_unicode_to_hex("FE97D"); end
|
3000
|
+
def honey_pot; return convert_unicode_to_hex("FE97E"); end
|
3001
|
+
def fried_shrimp; return convert_unicode_to_hex("FE97F"); end
|
3002
|
+
def fork_and_knife; return convert_unicode_to_hex("FE980"); end
|
3003
|
+
|
3004
|
+
def hot_beverage; return convert_unicode_to_hex("FE981"); end
|
3005
|
+
def cocktail_glass; return convert_unicode_to_hex("FE982"); end
|
3006
|
+
def beer_mug; return convert_unicode_to_hex("FE983"); end
|
3007
|
+
def teacup_without_handle; return convert_unicode_to_hex("FE984"); end
|
3008
|
+
def sake_bottle_and_cup; return convert_unicode_to_hex("FE985"); end
|
3009
|
+
def wine_glass; return convert_unicode_to_hex("FE986"); end
|
3010
|
+
def clinking_beer_mugs; return convert_unicode_to_hex("FE987"); end
|
3011
|
+
def tropical_drink; return convert_unicode_to_hex("FE988"); end
|
3012
|
+
|
3013
|
+
|
3014
|
+
def north_east_arrow; return convert_unicode_to_hex("FEAF0"); end
|
3015
|
+
def south_east_arrow; return convert_unicode_to_hex("FEAF1"); end
|
3016
|
+
def north_west_arrow; return convert_unicode_to_hex("FEAF2"); end
|
3017
|
+
def south_west_arrow; return convert_unicode_to_hex("FEAF3"); end
|
3018
|
+
def arrow_pointing_rightwards_then_curving_upwards; return convert_unicode_to_hex("FEAF4"); end
|
3019
|
+
def arrow_pointing_rightwards_then_curving_downwards; return convert_unicode_to_hex("FEAF5"); end
|
3020
|
+
def left_right_arrow; return convert_unicode_to_hex("FEAF6"); end
|
3021
|
+
def up_down_arrow; return convert_unicode_to_hex("FEAF7"); end
|
3022
|
+
def upwards_black_arrow; return convert_unicode_to_hex("FEAF8"); end
|
3023
|
+
def downwards_black_arrow; return convert_unicode_to_hex("FEAF9"); end
|
3024
|
+
def black_rightwards_arrow; return convert_unicode_to_hex("FEAFA"); end
|
3025
|
+
def leftwards_black_arrow; return convert_unicode_to_hex("FEAFB"); end
|
3026
|
+
|
3027
|
+
def black_right_pointing_triangle; return convert_unicode_to_hex("FEAFC"); end
|
3028
|
+
def black_left_pointing_triangle; return convert_unicode_to_hex("FEAFD"); end
|
3029
|
+
def black_right_pointing_double_triangle; return convert_unicode_to_hex("FEAFE"); end
|
3030
|
+
def black_left_pointing_double_triangle; return convert_unicode_to_hex("FEAFF"); end
|
3031
|
+
def black_up_pointing_double_triangle; return convert_unicode_to_hex("FEB03"); end
|
3032
|
+
def black_down_pointing_double_triangle; return convert_unicode_to_hex("FEB02"); end
|
3033
|
+
def up_pointing_triangle_1; return convert_unicode_to_hex("FEB78"); end
|
3034
|
+
def down_pointing_triangle_1; return convert_unicode_to_hex("FEB79"); end
|
3035
|
+
def up_pointing_small_triangle_1; return convert_unicode_to_hex("FEB01"); end
|
3036
|
+
def down_pointing_small_triangle_1; return convert_unicode_to_hex("FEB00"); end
|
3037
|
+
|
3038
|
+
def heavy_exclamation_mark_ornament; return convert_unicode_to_hex("FEB04"); end
|
3039
|
+
def exclamation_question_mark; return convert_unicode_to_hex("FEB05"); end
|
3040
|
+
def double_exclamation_mark; return convert_unicode_to_hex("FEB06"); end
|
3041
|
+
def black_question_mark_ornament; return convert_unicode_to_hex("FEB09"); end
|
3042
|
+
def white_question_mark_ornament; return convert_unicode_to_hex("FEB0A"); end
|
3043
|
+
def white_exclamation_mark_ornament; return convert_unicode_to_hex("FEB0B"); end
|
3044
|
+
|
3045
|
+
def wavy_dash; return convert_unicode_to_hex("FEB07"); end
|
3046
|
+
def looped_length_mark; return convert_unicode_to_hex("FEB08"); end
|
3047
|
+
|
3048
|
+
def heavy_black_heart; return convert_unicode_to_hex("FEB0C"); end
|
3049
|
+
def beating_heart; return convert_unicode_to_hex("FEB0D"); end
|
3050
|
+
def broken_heart; return convert_unicode_to_hex("FEB0E"); end
|
3051
|
+
def two_hearts; return convert_unicode_to_hex("FEB0F"); end
|
3052
|
+
def sparkling_heart; return convert_unicode_to_hex("FEB10"); end
|
3053
|
+
def growing_heart; return convert_unicode_to_hex("FEB11"); end
|
3054
|
+
def heart_with_arrow; return convert_unicode_to_hex("FEB12"); end
|
3055
|
+
def heart_1; return convert_unicode_to_hex("FEB13"); end
|
3056
|
+
def heart_2; return convert_unicode_to_hex("FEB14"); end
|
3057
|
+
def heart_3; return convert_unicode_to_hex("FEB15"); end
|
3058
|
+
def heart_4; return convert_unicode_to_hex("FEB16"); end
|
3059
|
+
def heart_with_ribbon; return convert_unicode_to_hex("FEB17"); end
|
3060
|
+
def revolving_hearts; return convert_unicode_to_hex("FEB18"); end
|
3061
|
+
def heart_decoration; return convert_unicode_to_hex("FEB19"); end
|
3062
|
+
|
3063
|
+
def black_heart_suit; return convert_unicode_to_hex("FEB1A"); end
|
3064
|
+
def black_spade_suit; return convert_unicode_to_hex("FEB1B"); end
|
3065
|
+
def black_diamond_suit; return convert_unicode_to_hex("FEB1C"); end
|
3066
|
+
def black_club_suit; return convert_unicode_to_hex("FEB1D"); end
|
3067
|
+
|
3068
|
+
def smoking_symbol; return convert_unicode_to_hex("FEB1E"); end
|
3069
|
+
def no_smoking_symbol; return convert_unicode_to_hex("FEB1F"); end
|
3070
|
+
def wheelchair_symbol; return convert_unicode_to_hex("FEB20"); end
|
3071
|
+
def japanese_symbol_for_beginner; return convert_unicode_to_hex("FE044"); end
|
3072
|
+
def trident_emblem; return convert_unicode_to_hex("FE4D2"); end
|
3073
|
+
def triangular_flag_on_post; return convert_unicode_to_hex("FEB22"); end
|
3074
|
+
def warning_sign; return convert_unicode_to_hex("FEB23"); end
|
3075
|
+
def no_entry; return convert_unicode_to_hex("FEB26"); end
|
3076
|
+
def black_universal_recycling_symbol; return convert_unicode_to_hex("FEB2C"); end
|
3077
|
+
def mens_symbol; return convert_unicode_to_hex("FEB33"); end
|
3078
|
+
def womens_symbol; return convert_unicode_to_hex("FEB34"); end
|
3079
|
+
def baby_symbol; return convert_unicode_to_hex("FEB35"); end
|
3080
|
+
def heavy_large_circle; return convert_unicode_to_hex("FEB44"); end
|
3081
|
+
def cross_mark; return convert_unicode_to_hex("FEB45"); end
|
3082
|
+
def negative_squared_cross_mark; return convert_unicode_to_hex("FEB46"); end
|
3083
|
+
def no_entry_sign; return convert_unicode_to_hex("FEB48"); end
|
3084
|
+
def heavy_check_mark; return convert_unicode_to_hex("FEB49"); end
|
3085
|
+
def white_heavy_check_mark; return convert_unicode_to_hex("FEB4A"); end
|
3086
|
+
def link_symbol; return convert_unicode_to_hex("FEB4B"); end
|
3087
|
+
def em_space; return convert_unicode_to_hex("FEB4C"); end
|
3088
|
+
def en_space; return convert_unicode_to_hex("FEB4D"); end
|
3089
|
+
def four_per_em_space; return convert_unicode_to_hex("FEB4E"); end
|
3090
|
+
|
3091
|
+
def free_sign; return convert_unicode_to_hex("FEB21"); end
|
3092
|
+
def no_one_under_eighteen_sign; return convert_unicode_to_hex("FEB25"); end
|
3093
|
+
def ok_sign; return convert_unicode_to_hex("FEB27"); end
|
3094
|
+
def no_good_sign; return convert_unicode_to_hex("FEB28"); end
|
3095
|
+
def copyright_sign; return convert_unicode_to_hex("FEB29"); end
|
3096
|
+
def registered_sign; return convert_unicode_to_hex("FEB2D"); end
|
3097
|
+
def trade_mark_sign; return convert_unicode_to_hex("FEB2A"); end
|
3098
|
+
def vs_sign; return convert_unicode_to_hex("FEB32"); end
|
3099
|
+
def new_sign; return convert_unicode_to_hex("FEB36"); end
|
3100
|
+
def up_sign; return convert_unicode_to_hex("FEB37"); end
|
3101
|
+
def cool_sign; return convert_unicode_to_hex("FEB38"); end
|
3102
|
+
def top_with_up_pointing_triangle_sign; return convert_unicode_to_hex("FEB42"); end
|
3103
|
+
def information_source; return convert_unicode_to_hex("FEB47"); end
|
3104
|
+
def sos_sign; return convert_unicode_to_hex("FEB4F"); end
|
3105
|
+
|
3106
|
+
def squared_katakana_koko; return convert_unicode_to_hex("FEB24"); end
|
3107
|
+
def squared_katakana_sa; return convert_unicode_to_hex("FEB3F"); end
|
3108
|
+
|
3109
|
+
def squared_cjk_unified_ideograph_7981; return convert_unicode_to_hex("FEB2E"); end
|
3110
|
+
def squared_cjk_unified_ideograph_7a7a; return convert_unicode_to_hex("FEB2F"); end
|
3111
|
+
def squared_cjk_unified_ideograph_5408; return convert_unicode_to_hex("FEB30"); end
|
3112
|
+
def squared_cjk_unified_ideograph_6e80; return convert_unicode_to_hex("FEB31"); end
|
3113
|
+
def squared_cjk_unified_ideograph_6709; return convert_unicode_to_hex("FEB39"); end
|
3114
|
+
def squared_cjk_unified_ideograph_7121; return convert_unicode_to_hex("FEB3A"); end
|
3115
|
+
def squared_cjk_unified_ideograph_6708; return convert_unicode_to_hex("FEB3B"); end
|
3116
|
+
def squared_cjk_unified_ideograph_7533; return convert_unicode_to_hex("FEB3C"); end
|
3117
|
+
def squared_cjk_unified_ideograph_5272; return convert_unicode_to_hex("FEB3E"); end
|
3118
|
+
def squared_cjk_unified_ideograph_6307; return convert_unicode_to_hex("FEB40"); end
|
3119
|
+
def squared_cjk_unified_ideograph_55b6; return convert_unicode_to_hex("FEB41"); end
|
3120
|
+
|
3121
|
+
def circled_ideograph_secret; return convert_unicode_to_hex("FEB2B"); end
|
3122
|
+
def circled_ideograph_congratulation; return convert_unicode_to_hex("FEB43"); end
|
3123
|
+
def circled_ideograph_advantage; return convert_unicode_to_hex("FEB3D"); end
|
3124
|
+
def circled_ideograph_accept; return convert_unicode_to_hex("FEB50"); end
|
3125
|
+
|
3126
|
+
def heavy_plus_sign; return convert_unicode_to_hex("FEB51"); end
|
3127
|
+
def heavy_minus_sign; return convert_unicode_to_hex("FEB52"); end
|
3128
|
+
def heavy_multiplication_x; return convert_unicode_to_hex("FEB53"); end
|
3129
|
+
def heavy_division_sign; return convert_unicode_to_hex("FEB54"); end
|
3130
|
+
|
3131
|
+
def diamond_shape_with_a_dot_inside; return convert_unicode_to_hex("FEB55"); end
|
3132
|
+
def electric_light_bulb; return convert_unicode_to_hex("FEB56"); end
|
3133
|
+
def anger_sign; return convert_unicode_to_hex("FEB57"); end
|
3134
|
+
def bomb; return convert_unicode_to_hex("FEB58"); end
|
3135
|
+
def sleeping_sign; return convert_unicode_to_hex("FEB59"); end
|
3136
|
+
def collision_symbol; return convert_unicode_to_hex("FEB5A"); end
|
3137
|
+
def splashing_sweat; return convert_unicode_to_hex("FEB5B"); end
|
3138
|
+
def drip; return convert_unicode_to_hex("FEB5C"); end
|
3139
|
+
def dash_symbol; return convert_unicode_to_hex("FEB5D"); end
|
3140
|
+
def flexed_bicep; return convert_unicode_to_hex("FEB5E"); end
|
3141
|
+
def dizzy_symbol; return convert_unicode_to_hex("FEB5F"); end
|
3142
|
+
|
3143
|
+
def sparkles; return convert_unicode_to_hex("FEB60"); end
|
3144
|
+
def eight_pointed_black_star; return convert_unicode_to_hex("FEB61"); end
|
3145
|
+
def eight_spoked_asterisk; return convert_unicode_to_hex("FEB62"); end
|
3146
|
+
def medium_white_circle; return convert_unicode_to_hex("FEB65"); end
|
3147
|
+
def medium_black_circle; return convert_unicode_to_hex("FEB66"); end
|
3148
|
+
def large_circle_1; return convert_unicode_to_hex("FEB63"); end
|
3149
|
+
def large_circle_2; return convert_unicode_to_hex("FEB64"); end
|
3150
|
+
def black_rounded_square; return convert_unicode_to_hex("FEB64"); end
|
3151
|
+
def white_rounded_square; return convert_unicode_to_hex("FEB67"); end
|
3152
|
+
def white_medium_star; return convert_unicode_to_hex("FEB68"); end
|
3153
|
+
def glowing_star; return convert_unicode_to_hex("FEB69"); end
|
3154
|
+
def shooting_star; return convert_unicode_to_hex("FEB6A"); end
|
3155
|
+
def white_large_square; return convert_unicode_to_hex("FEB6B"); end
|
3156
|
+
def black_large_square; return convert_unicode_to_hex("FEB6C"); end
|
3157
|
+
def white_small_square; return convert_unicode_to_hex("FEB6D"); end
|
3158
|
+
def black_small_square; return convert_unicode_to_hex("FEB6E"); end
|
3159
|
+
def white_medium_small_square; return convert_unicode_to_hex("FEB6F"); end
|
3160
|
+
def black_medium_small_square; return convert_unicode_to_hex("FEB70"); end
|
3161
|
+
def white_medium_square; return convert_unicode_to_hex("FEB71"); end
|
3162
|
+
def black_medium_square; return convert_unicode_to_hex("FEB72"); end
|
3163
|
+
def large_diamond_1; return convert_unicode_to_hex("FEB73"); end
|
3164
|
+
def large_diamond_2; return convert_unicode_to_hex("FEB74"); end
|
3165
|
+
def small_diamond_1; return convert_unicode_to_hex("FEB75"); end
|
3166
|
+
def small_diamond_2; return convert_unicode_to_hex("FEB76"); end
|
3167
|
+
def sparkle; return convert_unicode_to_hex("FEB77"); end
|
3168
|
+
|
3169
|
+
def white_flower; return convert_unicode_to_hex("FEB7A"); end
|
3170
|
+
def hundred_points_symbol; return convert_unicode_to_hex("FEB7B"); end
|
3171
|
+
|
3172
|
+
def identification_sign; return convert_unicode_to_hex("FEB81"); end
|
3173
|
+
def clear_sign; return convert_unicode_to_hex("FEB84"); end
|
3174
|
+
def leftwards_arrow_with_hook; return convert_unicode_to_hex("FEB83"); end
|
3175
|
+
def rightwards_arrow_with_hook; return convert_unicode_to_hex("FEB88"); end
|
3176
|
+
def left_pointing_magnifying_glass; return convert_unicode_to_hex("FEB85"); end
|
3177
|
+
def right_pointing_magnifying_glass; return convert_unicode_to_hex("FEB8D"); end
|
3178
|
+
def lock; return convert_unicode_to_hex("FEB86"); end
|
3179
|
+
def open_lock; return convert_unicode_to_hex("FEB87"); end
|
3180
|
+
def lock_with_ink_pen; return convert_unicode_to_hex("FEB90"); end
|
3181
|
+
def closed_lock_with_key; return convert_unicode_to_hex("FEB8A"); end
|
3182
|
+
def key; return convert_unicode_to_hex("FEB82"); end
|
3183
|
+
def ballot_box_with_check; return convert_unicode_to_hex("FEB8B"); end
|
3184
|
+
def radio_button; return convert_unicode_to_hex("FEB8C"); end
|
3185
|
+
def back_with_left_arrow_above; return convert_unicode_to_hex("FEB8E"); end
|
3186
|
+
def bookmark; return convert_unicode_to_hex("FEB8F"); end
|
3187
|
+
def double_clockwise_open_circle_arrows; return convert_unicode_to_hex("FEB91"); end
|
3188
|
+
def e_mail_symbol; return convert_unicode_to_hex("FEB92"); end
|
3189
|
+
|
3190
|
+
def raised_fist; return convert_unicode_to_hex("FEB93"); end
|
3191
|
+
def raised_hand; return convert_unicode_to_hex("FEB95"); end
|
3192
|
+
def victory_hand; return convert_unicode_to_hex("FEB94"); end
|
3193
|
+
|
3194
|
+
def fisted_hand; return convert_unicode_to_hex("FEB96"); end
|
3195
|
+
def thumbs_up_sign; return convert_unicode_to_hex("FEB97"); end
|
3196
|
+
def white_up_pointing_index; return convert_unicode_to_hex("FEB98"); end
|
3197
|
+
def white_up_pointing_backhand_index; return convert_unicode_to_hex("FEB99"); end
|
3198
|
+
def white_down_pointing_backhand_index; return convert_unicode_to_hex("FEB9A"); end
|
3199
|
+
def white_left_pointing_backhand_index; return convert_unicode_to_hex("FEB9B"); end
|
3200
|
+
def white_right_pointing_backhand_index; return convert_unicode_to_hex("FEB9C"); end
|
3201
|
+
def waving_hand; return convert_unicode_to_hex("FEB9D"); end
|
3202
|
+
def clapping_hands; return convert_unicode_to_hex("FEB9E"); end
|
3203
|
+
def ok_hand_sign; return convert_unicode_to_hex("FEB9F"); end
|
3204
|
+
def thumbs_down_sign; return convert_unicode_to_hex("FEBA0"); end
|
3205
|
+
def open_hands; return convert_unicode_to_hex("FEBA1"); end
|
3206
|
+
end
|