e4u 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +88 -0
- data/VERSION +1 -0
- data/data/docomo/carrier_data.xml +285 -0
- data/data/emoji4unicode.xml +2172 -0
- data/data/kddi/carrier_data.xml +650 -0
- data/data/softbank/carrier_data.xml +488 -0
- data/lib/e4u.rb +30 -0
- data/lib/e4u/base.rb +77 -0
- data/lib/e4u/docomo.rb +37 -0
- data/lib/e4u/google.rb +60 -0
- data/lib/e4u/kddi.rb +69 -0
- data/lib/e4u/softbank.rb +35 -0
- data/lib/e4u/util.rb +25 -0
- data/spec/docomo_spec.rb +54 -0
- data/spec/e4u_spec.rb +14 -0
- data/spec/google_spec.rb +116 -0
- data/spec/kddi_spec.rb +80 -0
- data/spec/softbank_spec.rb +53 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- metadata +93 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 fistfvck
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= e4u
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2009 fistfvck. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "e4u"
|
8
|
+
gem.summary = %Q{Emoji4Unicode for Ruby}
|
9
|
+
gem.description = %Q{Emoji4Unicode for Ruby}
|
10
|
+
gem.email = "fistfvck@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/fistfvck/e4u"
|
12
|
+
gem.authors = ["fistfvck"]
|
13
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'spec/rake/spectask'
|
22
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
23
|
+
spec.libs << 'lib' << 'spec'
|
24
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
25
|
+
end
|
26
|
+
|
27
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
28
|
+
spec.libs << 'lib' << 'spec'
|
29
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
30
|
+
spec.rcov = true
|
31
|
+
end
|
32
|
+
|
33
|
+
task :spec => :check_dependencies
|
34
|
+
|
35
|
+
task :default => :spec
|
36
|
+
|
37
|
+
require 'rake/rdoctask'
|
38
|
+
Rake::RDocTask.new do |rdoc|
|
39
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
40
|
+
|
41
|
+
rdoc.rdoc_dir = 'rdoc'
|
42
|
+
rdoc.title = "e4u #{version}"
|
43
|
+
rdoc.rdoc_files.include('README*')
|
44
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
45
|
+
end
|
46
|
+
|
47
|
+
require 'pp'
|
48
|
+
desc "Download xml"
|
49
|
+
task :data => [:data_directories,
|
50
|
+
'data/emoji4unicode.xml',
|
51
|
+
'data/docomo/carrier_data.xml',
|
52
|
+
'data/kddi/carrier_data.xml',
|
53
|
+
'data/softbank/carrier_data.xml']
|
54
|
+
|
55
|
+
task :data_directories do
|
56
|
+
FileUtils.mkdir_p 'data'
|
57
|
+
FileUtils.mkdir_p 'data/docomo'
|
58
|
+
FileUtils.mkdir_p 'data/kddi'
|
59
|
+
FileUtils.mkdir_p 'data/softbank'
|
60
|
+
end
|
61
|
+
|
62
|
+
file 'data/emoji4unicode.xml' do
|
63
|
+
require 'open-uri'
|
64
|
+
File.open('data/emoji4unicode.xml','wb') do |out|
|
65
|
+
out.print open('http://emoji4unicode.googlecode.com/svn/trunk/data/emoji4unicode.xml').read
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
file 'data/docomo/carrier_data.xml' do
|
70
|
+
require 'open-uri'
|
71
|
+
File.open('data/docomo/carrier_data.xml','wb') do |out|
|
72
|
+
out.print open('http://emoji4unicode.googlecode.com/svn/trunk/data/docomo/carrier_data.xml').read
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
file 'data/kddi/carrier_data.xml' do
|
77
|
+
require 'open-uri'
|
78
|
+
File.open('data/kddi/carrier_data.xml','wb') do |out|
|
79
|
+
out.print open('http://emoji4unicode.googlecode.com/svn/trunk/data/kddi/carrier_data.xml').read
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
file 'data/softbank/carrier_data.xml' do
|
84
|
+
require 'open-uri'
|
85
|
+
File.open('data/softbank/carrier_data.xml','wb') do |out|
|
86
|
+
out.print open('http://emoji4unicode.googlecode.com/svn/trunk/data/softbank/carrier_data.xml').read
|
87
|
+
end
|
88
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,285 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<carrier_data>
|
3
|
+
<e jis="7541" name_en="Fine" name_ja="晴れ" unicode="E63E"/>
|
4
|
+
<e jis="7546" name_en="Cloudy" name_ja="曇り" unicode="E63F"/>
|
5
|
+
<e jis="7545" name_en="Rain" name_ja="雨" unicode="E640"/>
|
6
|
+
<e jis="753E" name_en="Snow" name_ja="雪" unicode="E641"/>
|
7
|
+
<e jis="7540" name_en="Thunder" name_ja="雷" unicode="E642"/>
|
8
|
+
<e jis="7522" name_en="Typhoon" name_ja="台風" unicode="E643"/>
|
9
|
+
<e jis="7837" name_en="Fog" name_ja="霧" unicode="E644"/>
|
10
|
+
<e jis="7A3E" name_en="Drizzle" name_ja="小雨" unicode="E645"/>
|
11
|
+
<e jis="7548" name_en="Aries" name_ja="牡羊座" unicode="E646"/>
|
12
|
+
<e jis="7549" name_en="Taurus" name_ja="牡牛座" unicode="E647"/>
|
13
|
+
<e jis="754A" name_en="Gemini" name_ja="双子座" unicode="E648"/>
|
14
|
+
<e jis="754B" name_en="Cancer" name_ja="蟹座" unicode="E649"/>
|
15
|
+
<e jis="754C" name_en="Leo" name_ja="獅子座" unicode="E64A"/>
|
16
|
+
<e jis="754D" name_en="Virgo" name_ja="乙女座" unicode="E64B"/>
|
17
|
+
<e jis="754E" name_en="Libra" name_ja="天秤座" unicode="E64C"/>
|
18
|
+
<e jis="754F" name_en="Scorpio" name_ja="蠍座" unicode="E64D"/>
|
19
|
+
<e jis="7550" name_en="Sagittarius" name_ja="射手座" unicode="E64E"/>
|
20
|
+
<e jis="7551" name_en="Capricorn" name_ja="山羊座" unicode="E64F"/>
|
21
|
+
<e jis="7552" name_en="Aquarius" name_ja="水瓶座" unicode="E650"/>
|
22
|
+
<e jis="7553" name_en="Pisces" name_ja="魚座" unicode="E651"/>
|
23
|
+
<e jis="7E21" name_en="Sports" name_ja="スポーツ" unicode="E652"/>
|
24
|
+
<e jis="7573" name_en="Baseball" name_ja="野球" unicode="E653"/>
|
25
|
+
<e jis="7838" name_en="Golf" name_ja="ゴルフ" unicode="E654"/>
|
26
|
+
<e jis="7570" name_en="Tennis" name_ja="テニス" unicode="E655"/>
|
27
|
+
<e jis="756F" name_en="Soccer" name_ja="サッカー" unicode="E656"/>
|
28
|
+
<e jis="7960" name_en="Ski" name_ja="スキー" unicode="E657"/>
|
29
|
+
<e jis="7839" name_en="Basketball" name_ja="バスケットボール" unicode="E658"/>
|
30
|
+
<e jis="7572" name_en="Motor sports" name_ja="モータースポーツ" unicode="E659"/>
|
31
|
+
<e jis="783A" name_en="Pager" name_ja="ポケットベル" unicode="E65A"/>
|
32
|
+
<e jis="756E" name_en="Train" name_ja="電車" unicode="E65B"/>
|
33
|
+
<e jis="786E" name_en="Subway" name_ja="地下鉄" unicode="E65C"/>
|
34
|
+
<e jis="7569" name_en="Bullet train" name_ja="新幹線" unicode="E65D"/>
|
35
|
+
<e jis="756A" name_en="Car (sedan)" name_ja="車(セダン)" unicode="E65E"/>
|
36
|
+
<e jis="7E22" name_en="Car (RV)" name_ja="車(RV)" unicode="E65F"/>
|
37
|
+
<e jis="7568" name_en="Bus" name_ja="バス" unicode="E660"/>
|
38
|
+
<e jis="7936" name_en="Ship" name_ja="船" unicode="E661"/>
|
39
|
+
<e jis="756C" name_en="Airplane" name_ja="飛行機" unicode="E662"/>
|
40
|
+
<e jis="7564" name_en="House" name_ja="家" unicode="E663"/>
|
41
|
+
<e jis="7566" name_en="Building" name_ja="ビル" unicode="E664"/>
|
42
|
+
<e jis="7932" name_en="Post office" name_ja="郵便局" unicode="E665"/>
|
43
|
+
<e jis="7933" name_en="Hospital" name_ja="病院" unicode="E666"/>
|
44
|
+
<e jis="7563" name_en="Bank" name_ja="銀行" unicode="E667"/>
|
45
|
+
<e jis="755C" name_en="ATM" name_ja="ATM" unicode="E668"/>
|
46
|
+
<e jis="7935" name_en="Hotel" name_ja="ホテル" unicode="E669"/>
|
47
|
+
<e jis="755D" name_en="Convenience store" name_ja="コンビニ" unicode="E66A"/>
|
48
|
+
<e jis="776E" name_en="Gas station" name_ja="ガソリンスタンド" unicode="E66B"/>
|
49
|
+
<e jis="755F" name_en="Parking" name_ja="駐車場" unicode="E66C"/>
|
50
|
+
<e jis="7523" name_en="Traffic signal" name_ja="信号" unicode="E66D"/>
|
51
|
+
<e jis="755E" name_en="Toilet" name_ja="トイレ" unicode="E66E"/>
|
52
|
+
<e jis="7565" name_en="Restaurant" name_ja="レストラン" unicode="E66F"/>
|
53
|
+
<e jis="7836" name_en="Café" name_ja="喫茶店" unicode="E670"/>
|
54
|
+
<e jis="757B" name_en="Bar" name_ja="バー" unicode="E671"/>
|
55
|
+
<e jis="757C" name_en="Beer" name_ja="ビール" unicode="E672"/>
|
56
|
+
<e jis="7631" name_en="Fast food" name_ja="ファーストフード" unicode="E673"/>
|
57
|
+
<e jis="7675" name_en="Boutique" name_ja="ブティック" unicode="E674"/>
|
58
|
+
<e jis="7671" name_en="Hairdresser" name_ja="美容院" unicode="E675"/>
|
59
|
+
<e jis="765E" name_en="Karaoke" name_ja="カラオケ" unicode="E676"/>
|
60
|
+
<e jis="7672" name_en="Movie" name_ja="映画" unicode="E677"/>
|
61
|
+
<e jis="7752" name_en="Diagonally upward toward right" name_ja="右斜め上" unicode="E678"/>
|
62
|
+
<e jis="7E23" name_en="Amusement park" name_ja="遊園地" unicode="E679"/>
|
63
|
+
<e jis="7663" name_en="Music" name_ja="音楽" unicode="E67A"/>
|
64
|
+
<e jis="783B" name_en="Art" name_ja="アート" unicode="E67B"/>
|
65
|
+
<e jis="7A4B" name_en="Drama" name_ja="演劇" unicode="E67C"/>
|
66
|
+
<e jis="783D" name_en="Event" name_ja="イベント" unicode="E67D"/>
|
67
|
+
<e jis="7557" name_en="Ticket" name_ja="チケット" unicode="E67E"/>
|
68
|
+
<e jis="7536" name_en="Smoking" name_ja="喫煙" unicode="E67F"/>
|
69
|
+
<e jis="7537" name_en="Non-smoking" name_ja="禁煙" unicode="E680"/>
|
70
|
+
<e jis="7670" name_en="Camera" name_ja="カメラ" unicode="E681"/>
|
71
|
+
<e jis="7555" name_en="Bag" name_ja="カバン" unicode="E682"/>
|
72
|
+
<e jis="7558" name_en="Book" name_ja="本" unicode="E683"/>
|
73
|
+
<e jis="783E" name_en="Ribbon" name_ja="リボン" unicode="E684"/>
|
74
|
+
<e jis="762A" name_en="Present" name_ja="プレゼント" unicode="E685"/>
|
75
|
+
<e jis="783F" name_en="Birthday" name_ja="バースデー" unicode="E686"/>
|
76
|
+
<e jis="7835" name_en="Phone" name_ja="電話" unicode="E687"/>
|
77
|
+
<e jis="7827" name_en="Mobile phone" name_ja="携帯電話" unicode="E688"/>
|
78
|
+
<e jis="7946" name_en="Memo" name_ja="メモ" unicode="E689"/>
|
79
|
+
<e jis="765D" name_en="TV" name_ja="TV" unicode="E68A"/>
|
80
|
+
<e jis="7621" name_en="Game" name_ja="ゲーム" unicode="E68B"/>
|
81
|
+
<e jis="7667" name_en="CD" name_ja="CD" unicode="E68C"/>
|
82
|
+
<e jis="7959" name_en="Heart" name_ja="ハート" unicode="E68D"/>
|
83
|
+
<e jis="7840" name_en="Spade" name_ja="スペード" unicode="E68E"/>
|
84
|
+
<e jis="7841" name_en="Diamond" name_ja="ダイヤ" unicode="E68F"/>
|
85
|
+
<e jis="7842" name_en="Club" name_ja="クラブ" unicode="E690"/>
|
86
|
+
<e jis="7843" name_en="Eyes" name_ja="目" unicode="E691"/>
|
87
|
+
<e jis="7844" name_en="Ear" name_ja="耳" unicode="E692"/>
|
88
|
+
<e jis="7B68" name_en="Hand (rock)" name_ja="手(グー)" unicode="E693"/>
|
89
|
+
<e jis="7845" name_en="Hand (scissors)" name_ja="手(チョキ)" unicode="E694"/>
|
90
|
+
<e jis="7846" name_en="Hand (paper)" name_ja="手(パー)" unicode="E695"/>
|
91
|
+
<e jis="774A" name_en="Diagonally downward toward right" name_ja="右斜め下" unicode="E696"/>
|
92
|
+
<e jis="7749" name_en="Diagonally upward toward left" name_ja="左斜め上" unicode="E697"/>
|
93
|
+
<e jis="7A6D" name_en="Foot" name_ja="足" unicode="E698"/>
|
94
|
+
<e jis="7A6E" name_en="Shoe" name_ja="くつ" unicode="E699"/>
|
95
|
+
<e jis="7659" name_en="Eyeglasses" name_ja="眼鏡" unicode="E69A"/>
|
96
|
+
<e jis="7538" name_en="Wheelchair" name_ja="車椅子" unicode="E69B"/>
|
97
|
+
<e jis="7847" name_en="New moon" name_ja="新月" unicode="E69C"/>
|
98
|
+
<e jis="7848" name_en="Waning moon" name_ja="やや欠け月" unicode="E69D"/>
|
99
|
+
<e jis="7849" name_en="Half moon" name_ja="半月" unicode="E69E"/>
|
100
|
+
<e jis="753F" name_en="Crescent moon" name_ja="三日月" unicode="E69F"/>
|
101
|
+
<e jis="7E24" name_en="Full moon" name_ja="満月" unicode="E6A0"/>
|
102
|
+
<e jis="763C" name_en="Dog" name_ja="犬" unicode="E6A1"/>
|
103
|
+
<e jis="7636" name_en="Cat" name_ja="猫" unicode="E6A2"/>
|
104
|
+
<e jis="756D" name_en="Resort" name_ja="リゾート" unicode="E6A3"/>
|
105
|
+
<e jis="7624" name_en="Christmas" name_ja="クリスマス" unicode="E6A4"/>
|
106
|
+
<e jis="7753" name_en="Diagonally downward toward left" name_ja="左斜め下" unicode="E6A5"/>
|
107
|
+
<e jis="222E" unicode="E6A6"/>
|
108
|
+
<e jis="222E" unicode="E6A7"/>
|
109
|
+
<e jis="222E" unicode="E6A8"/>
|
110
|
+
<e jis="222E" unicode="E6A9"/>
|
111
|
+
<e jis="222E" unicode="E6AA"/>
|
112
|
+
<e jis="222E" unicode="E6AB"/>
|
113
|
+
<e jis="7577" name_en="Clapboard" name_ja="カチンコ" unicode="E6AC"/>
|
114
|
+
<e jis="7E2B" name_en="Pouch" name_ja="ふくろ" unicode="E6AD"/>
|
115
|
+
<e jis="785C" name_en="Pen" name_ja="ペン" unicode="E6AE"/>
|
116
|
+
<e jis="222E" unicode="E6AF"/>
|
117
|
+
<e jis="222E" unicode="E6B0"/>
|
118
|
+
<e jis="7E2C" name_en="Silhouette" name_ja="人影" unicode="E6B1"/>
|
119
|
+
<e jis="7D57" name_en="Chair" name_ja="いす" unicode="E6B2"/>
|
120
|
+
<e jis="7A47" name_en="Night" name_ja="夜" unicode="E6B3"/>
|
121
|
+
<e jis="222E" unicode="E6B4"/>
|
122
|
+
<e jis="222E" unicode="E6B5"/>
|
123
|
+
<e jis="222E" unicode="E6B6"/>
|
124
|
+
<e jis="7E2D" name_en="Soon" name_ja="soon" unicode="E6B7"/>
|
125
|
+
<e jis="7E2E" name_en="on" name_ja="on" unicode="E6B8"/>
|
126
|
+
<e jis="7E2F" name_en="end" name_ja="end" unicode="E6B9"/>
|
127
|
+
<e jis="7833" name_en="Clock" name_ja="時計" unicode="E6BA"/>
|
128
|
+
<e jis="222E" unicode="E6BB"/>
|
129
|
+
<e jis="222E" unicode="E6BC"/>
|
130
|
+
<e jis="222E" unicode="E6BD"/>
|
131
|
+
<e jis="222E" unicode="E6BE"/>
|
132
|
+
<e jis="222E" unicode="E6BF"/>
|
133
|
+
<e jis="222E" unicode="E6C0"/>
|
134
|
+
<e jis="222E" unicode="E6C1"/>
|
135
|
+
<e jis="222E" unicode="E6C2"/>
|
136
|
+
<e jis="222E" unicode="E6C3"/>
|
137
|
+
<e jis="222E" unicode="E6C4"/>
|
138
|
+
<e jis="222E" unicode="E6C5"/>
|
139
|
+
<e jis="222E" unicode="E6C6"/>
|
140
|
+
<e jis="222E" unicode="E6C7"/>
|
141
|
+
<e jis="222E" unicode="E6C8"/>
|
142
|
+
<e jis="222E" unicode="E6C9"/>
|
143
|
+
<e jis="222E" unicode="E6CA"/>
|
144
|
+
<e jis="222E" unicode="E6CB"/>
|
145
|
+
<e jis="222E" unicode="E6CC"/>
|
146
|
+
<e jis="222E" unicode="E6CD"/>
|
147
|
+
<e jis="7861" name_en="Phone to" name_ja="phone to" unicode="E6CE"/>
|
148
|
+
<e jis="7B47" name_en="mail to" name_ja="mail to" unicode="E6CF"/>
|
149
|
+
<e jis="767B" name_en="fax to" name_ja="fax to" unicode="E6D0"/>
|
150
|
+
<e jis="7E25" name_en="i-mode" name_ja="iモード" unicode="E6D1"/>
|
151
|
+
<e jis="7E26" name_en="i-mode with frame" name_ja="iモード(枠付き)" unicode="E6D2"/>
|
152
|
+
<e jis="767C" name_en="Mail" name_ja="メール" unicode="E6D3"/>
|
153
|
+
<e jis="7E27" name_en="Provided by DOCOMO" name_ja="ドコモ提供" unicode="E6D4"/>
|
154
|
+
<e jis="7E28" name_en="docomo Point" name_ja="ドコモポイント" unicode="E6D5"/>
|
155
|
+
<e jis="777A" name_en="Fee charging" name_ja="有料" unicode="E6D6"/>
|
156
|
+
<e jis="7775" name_en="Free of charge" name_ja="無料" unicode="E6D7"/>
|
157
|
+
<e jis="793C" name_en="ID" name_ja="ID" unicode="E6D8"/>
|
158
|
+
<e jis="7674" name_en="Password" name_ja="パスワード" unicode="E6D9"/>
|
159
|
+
<e jis="775A" name_en="Continuing" name_ja="次項有" unicode="E6DA"/>
|
160
|
+
<e jis="784A" name_en="Clear" name_ja="クリア" unicode="E6DB"/>
|
161
|
+
<e jis="7673" name_en="Search" name_ja="サーチ(調べる)" unicode="E6DC"/>
|
162
|
+
<e jis="7867" name_en="New" name_ja="NEW" unicode="E6DD"/>
|
163
|
+
<e jis="7A6F" name_en="Location information" name_ja="位置情報" unicode="E6DE"/>
|
164
|
+
<e jis="7D5D" name_en="Free dial" name_ja="フリーダイヤル" unicode="E6DF"/>
|
165
|
+
<e jis="7B69" name_en="Sharp dial" name_ja="シャープダイヤル" unicode="E6E0"/>
|
166
|
+
<e jis="7729" name_en="MobileQ" name_ja="モバQ" unicode="E6E1"/>
|
167
|
+
<e jis="767D" name_en="1" name_ja="1" unicode="E6E2"/>
|
168
|
+
<e jis="767E" name_en="2" name_ja="2" unicode="E6E3"/>
|
169
|
+
<e jis="7721" name_en="3" name_ja="3" unicode="E6E4"/>
|
170
|
+
<e jis="7722" name_en="4" name_ja="4" unicode="E6E5"/>
|
171
|
+
<e jis="7723" name_en="5" name_ja="5" unicode="E6E6"/>
|
172
|
+
<e jis="7724" name_en="6" name_ja="6" unicode="E6E7"/>
|
173
|
+
<e jis="7725" name_en="7" name_ja="7" unicode="E6E8"/>
|
174
|
+
<e jis="7726" name_en="8" name_ja="8" unicode="E6E9"/>
|
175
|
+
<e jis="7727" name_en="9" name_ja="9" unicode="E6EA"/>
|
176
|
+
<e jis="784B" name_en="" name_ja="" unicode="E6EB"/>
|
177
|
+
<e jis="7834" name_en="Black heart" name_ja="黒ハート" unicode="E6EC"/>
|
178
|
+
<e jis="7B5A" name_en="Fluttering heart" name_ja="揺れるハート" unicode="E6ED"/>
|
179
|
+
<e jis="7530" name_en="Heartbreak" name_ja="失恋" unicode="E6EE"/>
|
180
|
+
<e jis="7531" name_en="Hearts" name_ja="ハートたち(複数ハート)" unicode="E6EF"/>
|
181
|
+
<e jis="752A" name_en="Happy face" name_ja="わーい(嬉しい顔)" unicode="E6F0"/>
|
182
|
+
<e jis="752B" name_en="Angry face" name_ja="ちっ(怒った顔)" unicode="E6F1"/>
|
183
|
+
<e jis="7974" name_en="Disappointed face" name_ja="がく~(落胆した顔)" unicode="E6F2"/>
|
184
|
+
<e jis="7977" name_en="Sad face" name_ja="もうやだ~(悲しい顔)" unicode="E6F3"/>
|
185
|
+
<e jis="784D" name_en="Dizzy" name_ja="ふらふら" unicode="E6F4"/>
|
186
|
+
<e jis="7A70" name_en="Good (upward arrow)" name_ja="グッド(上向き矢印)" unicode="E6F5"/>
|
187
|
+
<e jis="7870" name_en="Cheerful" name_ja="るんるん" unicode="E6F6"/>
|
188
|
+
<e jis="7575" name_en="Comfort (hot spring)" name_ja="いい気分(温泉)" unicode="E6F7"/>
|
189
|
+
<e jis="7E29" name_en="Cute" name_ja="かわいい" unicode="E6F8"/>
|
190
|
+
<e jis="7646" name_en="Kiss" name_ja="キスマーク" unicode="E6F9"/>
|
191
|
+
<e jis="795F" name_en="Shining new" name_ja="ぴかぴか(新しい)" unicode="E6FA"/>
|
192
|
+
<e jis="752F" name_en="Good idea" name_ja="ひらめき" unicode="E6FB"/>
|
193
|
+
<e jis="7640" name_en="Angry" name_ja="むかっ(怒り)" unicode="E6FC"/>
|
194
|
+
<e jis="764E" name_en="Punch" name_ja="パンチ" unicode="E6FD"/>
|
195
|
+
<e jis="7533" name_en="Bomb" name_ja="爆弾" unicode="E6FE"/>
|
196
|
+
<e jis="7660" name_en="Mood" name_ja="ムード" unicode="E6FF"/>
|
197
|
+
<e jis="7A71" name_en="Bad (downward arrow)" name_ja="バッド(下向き矢印)" unicode="E700"/>
|
198
|
+
<e jis="752E" name_en="Sleepy (sleep)" name_ja="眠い(睡眠)" unicode="E701"/>
|
199
|
+
<e jis="753B" name_en="Exclamation mark" name_ja="exclamation" unicode="E702"/>
|
200
|
+
<e jis="7A72" name_en="exclamation&question marks" name_ja="exclamation&question" unicode="E703"/>
|
201
|
+
<e jis="7A73" name_en="Two exclamation marks" name_ja="exclamation×2" unicode="E704"/>
|
202
|
+
<e jis="784F" name_en="Bump (collision)" name_ja="どんっ(衝撃)" unicode="E705"/>
|
203
|
+
<e jis="7850" name_en="Sweat" name_ja="あせあせ(飛び散る汗)" unicode="E706"/>
|
204
|
+
<e jis="7641" name_en="Cold sweat" name_ja="たらーっ(汗)" unicode="E707"/>
|
205
|
+
<e jis="764F" name_en="Dash (running dash)" name_ja="ダッシュ(走り出すさま)" unicode="E708"/>
|
206
|
+
<e jis="7E2A" name_en="Macron 1" name_ja="ー(長音記号1)" unicode="E709"/>
|
207
|
+
<e jis="7A74" name_en="Macron 2" name_ja="ー(長音記号2)" unicode="E70A"/>
|
208
|
+
<e jis="784C" name_en="Accept" name_ja="決定" unicode="E70B"/>
|
209
|
+
<e jis="7E30" name_en="i-αppli" name_ja="iアプリ" unicode="E70C"/>
|
210
|
+
<e jis="7E31" name_en="i-αppli (with border)" name_ja="iアプリ(枠付き)" unicode="E70D"/>
|
211
|
+
<e jis="7868" name_en="T-shirt (border)" name_ja="Tシャツ(ボーダー)" unicode="E70E"/>
|
212
|
+
<e jis="765F" name_en="Purse" name_ja="がま口財布" unicode="E70F"/>
|
213
|
+
<e jis="7664" name_en="Make-up" name_ja="化粧" unicode="E710"/>
|
214
|
+
<e jis="7B5C" name_en="Jeans" name_ja="ジーンズ" unicode="E711"/>
|
215
|
+
<e jis="7571" name_en="Snowboarding" name_ja="スノボ" unicode="E712"/>
|
216
|
+
<e jis="766D" name_en="Chapel" name_ja="チャペル" unicode="E713"/>
|
217
|
+
<e jis="7E32" name_en="Door" name_ja="ドア" unicode="E714"/>
|
218
|
+
<e jis="7622" name_en="Money bag" name_ja="ドル袋" unicode="E715"/>
|
219
|
+
<e jis="786A" name_en="Computer" name_ja="パソコン" unicode="E716"/>
|
220
|
+
<e jis="7B5D" name_en="Love letter" name_ja="ラブレター" unicode="E717"/>
|
221
|
+
<e jis="7826" name_en="Wrench" name_ja="レンチ" unicode="E718"/>
|
222
|
+
<e jis="755A" name_en="Pencil" name_ja="鉛筆" unicode="E719"/>
|
223
|
+
<e jis="787B" name_en="Crown" name_ja="王冠" unicode="E71A"/>
|
224
|
+
<e jis="766F" name_en="Ring" name_ja="指輪" unicode="E71B"/>
|
225
|
+
<e jis="7535" name_en="Sandglass" name_ja="砂時計" unicode="E71C"/>
|
226
|
+
<e jis="7567" name_en="Bicycle" name_ja="自転車" unicode="E71D"/>
|
227
|
+
<e jis="7962" name_en="Tea cup" name_ja="湯のみ" unicode="E71E"/>
|
228
|
+
<e jis="7777" name_en="Wrist watch" name_ja="腕時計" unicode="E71F"/>
|
229
|
+
<e jis="7E33" name_en="Thinking face" name_ja="考えてる顔" unicode="E720"/>
|
230
|
+
<e jis="7979" name_en="Relief face" name_ja="ほっとした顔" unicode="E721"/>
|
231
|
+
<e jis="7E34" name_en="Cold sweat" name_ja="冷や汗" unicode="E722"/>
|
232
|
+
<e jis="7878" name_en="Cold sweat 2" name_ja="冷や汗2" unicode="E723"/>
|
233
|
+
<e jis="7B42" name_en="Pouting face" name_ja="ぷっくっくな顔" unicode="E724"/>
|
234
|
+
<e jis="797D" name_en="Expressionless face" name_ja="ボケーっとした顔" unicode="E725"/>
|
235
|
+
<e jis="7876" name_en="Heart shaped eyes" name_ja="目がハート" unicode="E726"/>
|
236
|
+
<e jis="7654" name_en="Thumbs up" name_ja="指でOK" unicode="E727"/>
|
237
|
+
<e jis="7642" name_en="Sticking tongue out" name_ja="あっかんべー" unicode="E728"/>
|
238
|
+
<e jis="7875" name_en="Wink" name_ja="ウィンク" unicode="E729"/>
|
239
|
+
<e jis="7E35" name_en="Happy face" name_ja="うれしい顔" unicode="E72A"/>
|
240
|
+
<e jis="7976" name_en="Enduring face" name_ja="がまん顔" unicode="E72B"/>
|
241
|
+
<e jis="7973" name_en="Cat 2" name_ja="猫2" unicode="E72C"/>
|
242
|
+
<e jis="752C" name_en="Crying" name_ja="泣き顔" unicode="E72D"/>
|
243
|
+
<e jis="7B4E" name_en="Tear" name_ja="涙" unicode="E72E"/>
|
244
|
+
<e jis="7E36" name_en="NG (No good)" name_ja="NG" unicode="E72F"/>
|
245
|
+
<e jis="7559" name_en="Paper clip" name_ja="クリップ" unicode="E730"/>
|
246
|
+
<e jis="7755" name_en="Copyright" name_ja="コピーライト" unicode="E731"/>
|
247
|
+
<e jis="774B" name_en="Trademark" name_ja="トレードマーク" unicode="E732"/>
|
248
|
+
<e jis="7524" name_en="Running man" name_ja="走る人" unicode="E733"/>
|
249
|
+
<e jis="764C" name_en="Top secret" name_ja="マル秘" unicode="E734"/>
|
250
|
+
<e jis="7B5E" name_en="Recycle" name_ja="リサイクル" unicode="E735"/>
|
251
|
+
<e jis="7756" name_en="Registered trademark" name_ja="レジスタードトレードマーク" unicode="E736"/>
|
252
|
+
<e jis="753A" name_en="Danger / Caution" name_ja="危険・警告" unicode="E737"/>
|
253
|
+
<e jis="7E37" name_en="Prohibited" name_ja="禁止" unicode="E738"/>
|
254
|
+
<e jis="793E" name_en="Vacant" name_ja="空室・空席・空車" unicode="E739"/>
|
255
|
+
<e jis="7E38" name_en="Approved" name_ja="合格マーク" unicode="E73A"/>
|
256
|
+
<e jis="793D" name_en="Full" name_ja="満室・満席・満車" unicode="E73B"/>
|
257
|
+
<e jis="7B5F" name_en="Horizontal arrows" name_ja="矢印左右" unicode="E73C"/>
|
258
|
+
<e jis="7B60" name_en="Vertical arrows" name_ja="矢印上下" unicode="E73D"/>
|
259
|
+
<e jis="7934" name_en="School" name_ja="学校" unicode="E73E"/>
|
260
|
+
<e jis="7B61" name_en="Wave" name_ja="波" unicode="E73F"/>
|
261
|
+
<e jis="786F" name_en="Mount Fuji" name_ja="富士山" unicode="E740"/>
|
262
|
+
<e jis="766E" name_en="4-leaf clover" name_ja="クローバー" unicode="E741"/>
|
263
|
+
<e jis="762D" name_en="Cherries" name_ja="さくらんぼ" unicode="E742"/>
|
264
|
+
<e jis="763F" name_en="Tulip" name_ja="チューリップ" unicode="E743"/>
|
265
|
+
<e jis="7A78" name_en="Banana" name_ja="バナナ" unicode="E744"/>
|
266
|
+
<e jis="796D" name_en="Apple" name_ja="りんご" unicode="E745"/>
|
267
|
+
<e jis="7B62" name_en="Seedling" name_ja="芽" unicode="E746"/>
|
268
|
+
<e jis="7629" name_en="Maple leaf" name_ja="もみじ" unicode="E747"/>
|
269
|
+
<e jis="7625" name_en="Cherry blossom" name_ja="桜" unicode="E748"/>
|
270
|
+
<e jis="7630" name_en="Rice ball" name_ja="おにぎり" unicode="E749"/>
|
271
|
+
<e jis="762B" name_en="Short cake" name_ja="ショートケーキ" unicode="E74A"/>
|
272
|
+
<e jis="794B" name_en="Sake bottle (sake cup)" name_ja="とっくり(おちょこ付き)" unicode="E74B"/>
|
273
|
+
<e jis="7853" name_en="Bowl" name_ja="どんぶり" unicode="E74C"/>
|
274
|
+
<e jis="7963" name_en="Bread" name_ja="パン" unicode="E74D"/>
|
275
|
+
<e jis="7B63" name_en="Snail" name_ja="かたつむり" unicode="E74E"/>
|
276
|
+
<e jis="763B" name_en="Baby chick" name_ja="ひよこ" unicode="E74F"/>
|
277
|
+
<e jis="7637" name_en="Penguin" name_ja="ペンギン" unicode="E750"/>
|
278
|
+
<e jis="7A60" name_en="Fish" name_ja="魚" unicode="E751"/>
|
279
|
+
<e jis="7A23" name_en="Yumm!" name_ja="うまい!" unicode="E752"/>
|
280
|
+
<e jis="7B65" name_en="He he he" name_ja="ウッシッシ" unicode="E753"/>
|
281
|
+
<e jis="7633" name_en="Horse" name_ja="ウマ" unicode="E754"/>
|
282
|
+
<e jis="7639" name_en="Pig" name_ja="ブタ" unicode="E755"/>
|
283
|
+
<e jis="757A" name_en="Wine glass" name_ja="ワイングラス" unicode="E756"/>
|
284
|
+
<e jis="7877" name_en="Very thin" name_ja="げっそり" unicode="E757"/>
|
285
|
+
</carrier_data>
|
@@ -0,0 +1,2172 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Main authors: Darick Tong, Kat Momoi (revisions), Satoru Takabayashi (revisions)
|
3
|
+
Contributors: Markus Scherer, Mark Davis, Yasuo Kida, Peter Edberg
|
4
|
+
|
5
|
+
This data file contains suggested names for Emoji characters and notes.
|
6
|
+
Both of them are the work of the people listed above. -->
|
7
|
+
<emoji4unicode>
|
8
|
+
<category name="1. Nature">
|
9
|
+
<subcategory name="Weather and landscape symbols">
|
10
|
+
<e docomo="E63E" google="FE000" id="000" kddi="E488" name="BLACK SUN WITH RAYS" softbank="E04A" unicode="2600">
|
11
|
+
<desc>clear weather for Japanese mobile carriers, usually in red color</desc>
|
12
|
+
</e>
|
13
|
+
<e docomo="E63F" google="FE001" id="001" kddi="E48D" name="CLOUD" softbank="E049" unicode="2601"/>
|
14
|
+
<e docomo="E640" google="FE002" id="002" kddi="E48C" name="UMBRELLA WITH RAIN DROPS" softbank="E04B" unicode="2614"/>
|
15
|
+
<e docomo="E641" google="FE003" id="003" kddi="E485" name="SNOWMAN WITHOUT SNOW" softbank="E048" unicode="*26C4"/>
|
16
|
+
<e docomo="E642" google="FE004" id="004" kddi="E487" name="HIGH VOLTAGE SIGN" softbank="E13D" unicode="26A1">
|
17
|
+
<desc>
|
18
|
+
Unified with ARIB-9385=⚡ U+26A1 HIGH VOLTAGE SIGN following the pattern established by ARIB-9385
|
19
|
+
where the proposal says "different meaning but similar glyph"; see also ☇ U+2607 LIGHTNING.
|
20
|
+
</desc>
|
21
|
+
<ann>= lightning symbol</ann>
|
22
|
+
<ann>= thunder</ann>
|
23
|
+
</e>
|
24
|
+
<e docomo="E643" glyphRefID="4" google="FE005" id="005" img_from="docomo" kddi="E469" name="CYCLONE" softbank="E443" unicode="+1F300">
|
25
|
+
<ann>= typhoon, hurricane</ann>
|
26
|
+
</e>
|
27
|
+
<e docomo="E644" glyphRefID="5" google="FE006" id="006" img_from="docomo" kddi="E598" name="FOGGY" text_fallback="[霧]" unicode="+1F301"/>
|
28
|
+
<e docomo="E645" glyphRefID="6" google="FE007" id="007" img_from="docomo" kddi="EAE8" name="CLOSED UMBRELLA" softbank="E43C" unicode="+1F302"/>
|
29
|
+
<e docomo="E6B3" glyphRefID="7" google="FE008" id="008" img_from="kddi" kddi="EAF1" name="NIGHT WITH STARS" softbank="E44B" unicode="+1F303"/>
|
30
|
+
<e docomo=">E63E" glyphRefID="8" google="FE009" id="009" img_from="softbank" kddi=">EAF4" name="SUNRISE OVER MOUNTAINS" softbank="E04D" unicode="+1F304">
|
31
|
+
<desc>Softbank sunrise 1</desc>
|
32
|
+
</e>
|
33
|
+
<e docomo=">E63E" glyphRefID="9" google="FE00A" id="00A" img_from="softbank" kddi="EAF4" name="SUNRISE" softbank="E449" unicode="+1F305">
|
34
|
+
<desc>Sunrise over horizon (Softbank sunrise 2)</desc>
|
35
|
+
</e>
|
36
|
+
<e glyphRefID="10" google="FE00B" id="00B" img_from="kddi" kddi="E5DA" name="CITYSCAPE AT DUSK" softbank="E146" text_fallback="[夕焼け]"/>
|
37
|
+
<e docomo=">E63E" glyphRefID="11" google="FE00C" id="00C" img_from="softbank" kddi=">E5DA" name="SUNSET OVER BUILDINGS" softbank="E44A" unicode="+1F307"/>
|
38
|
+
<e glyphRefID="12" google="FE00D" id="00D" img_from="kddi" kddi="EAF2" name="RAINBOW" softbank="E44C" text_fallback="[虹]" unicode="+1F308"/>
|
39
|
+
<e google="FE00E" id="00E" kddi="E48A" name="SNOWFLAKE" text_fallback="[雪結晶]" unicode="2744"/>
|
40
|
+
<e docomo=">E63E+E63F" google="FE00F" id="00F" img_from="kddi" kddi="E48E" name="SUN BEHIND CLOUD" softbank=">E04A+E049" unicode="*26C5"/>
|
41
|
+
<e docomo=">E6B3" glyphRefID="13" google="FE010" id="010" img_from="kddi" kddi="E4BF" name="BRIDGE AT NIGHT" softbank=">E44B" unicode="+1F309"/>
|
42
|
+
<e docomo="E73F" glyphRefID="39" google="FE038" id="038" img_from="kddi" kddi="EB7C" name="WATER WAVE" softbank="E43E" unicode="+1F30A"/>
|
43
|
+
<e glyphRefID="41" google="FE03A" id="03A" img_from="kddi" kddi="EB53" name="VOLCANO" text_fallback="[火山]" unicode="+1F30B"/>
|
44
|
+
</subcategory>
|
45
|
+
<subcategory name="Astronomical symbols">
|
46
|
+
<e docomo=">E6B3" glyphRefID="42" google="FE03B" id="03B" img_from="kddi" kddi="EB5F" name="MILKY WAY" softbank=">E44B" unicode="+1F30C"/>
|
47
|
+
<e glyphRefID="40" google="FE039" id="039" img_from="kddi" kddi="E5B3" name="EARTH GLOBE ASIA-AUSTRALIA" text_fallback="[地球]" unicode="+1F30F"/>
|
48
|
+
</subcategory>
|
49
|
+
<subcategory name="Moon, sun, and star symbols">
|
50
|
+
<e docomo="E69C" glyphRefID="14" google="FE011" id="011" img_from="docomo" kddi="E5A8" name="NEW MOON SYMBOL" text_fallback="●" unicode="+1F311"/>
|
51
|
+
<e docomo="E69D" glyphRefID="15" google="FE012" id="012" img_from="docomo" kddi="E5A9" name="WAXING GIBBOUS MOON SYMBOL" softbank=">E04C" unicode="+1F314">
|
52
|
+
<ann>= waxing moon</ann>
|
53
|
+
</e>
|
54
|
+
<e docomo="E69E" glyphRefID="16" google="FE013" id="013" img_from="docomo" kddi="E5AA" name="FIRST QUARTER MOON SYMBOL" softbank=">E04C" unicode="+1F313">
|
55
|
+
<ann>= half moon</ann>
|
56
|
+
</e>
|
57
|
+
<e docomo="E69F" glyphRefID="17" google="FE014" id="014" img_from="kddi" kddi="E486" name="CRESCENT MOON" softbank="E04C" unicode="+1F319">
|
58
|
+
<ann>* may indicate either the first or last quarter moon</ann>
|
59
|
+
<ann>x (first quarter moon - 263D)</ann>
|
60
|
+
<ann>x (last quarter moon - 263E)</ann>
|
61
|
+
<desc>Not unified with ☽ U+263D or ☾ U+263E. (Japanese carriers don't pay attention which quarter moon their symbols refer to.)</desc>
|
62
|
+
</e>
|
63
|
+
<e docomo="E6A0" glyphRefID="18" google="FE015" id="015" img_from="docomo" name="FULL MOON SYMBOL" text_fallback="○" unicode="+1F315"/>
|
64
|
+
<e docomo=">E69E" glyphRefID="19" google="FE016" id="016" img_from="kddi" kddi="E489" name="FIRST QUARTER MOON WITH FACE" softbank=">E04C" unicode="+1F31B">
|
65
|
+
<desc>(KDDI's with face)</desc>
|
66
|
+
<ann>= half moon with face</ann>
|
67
|
+
</e>
|
68
|
+
<e glyphRefID="585" google="FEB69" id="B69" img_from="softbank" kddi=">E48B" name="GLOWING STAR" softbank="E335" text_fallback="[☆]" unicode="+1F31F">
|
69
|
+
<desc>Animated pulsating star in orange color</desc>
|
70
|
+
</e>
|
71
|
+
<e glyphRefID="586" google="FEB6A" id="B6A" img_from="kddi" kddi="E468" name="SHOOTING STAR" text_fallback="☆彡" unicode="+1F320">
|
72
|
+
<desc>Animated glowing star in blue color</desc>
|
73
|
+
</e>
|
74
|
+
</subcategory>
|
75
|
+
<subcategory name="User interface symbols">
|
76
|
+
<e docomo=">E6BA" glyphRefID="25" google="FE01E" id="01E" img_from="softbank" kddi=">E594" name="CLOCK FACE ONE OCLOCK" softbank="E024" unicode="+1F550"/>
|
77
|
+
<e docomo=">E6BA" glyphRefID="26" google="FE01F" id="01F" img_from="softbank" kddi=">E594" name="CLOCK FACE TWO OCLOCK" softbank="E025" unicode="+1F551"/>
|
78
|
+
<e docomo=">E6BA" glyphRefID="27" google="FE020" id="020" img_from="softbank" kddi=">E594" name="CLOCK FACE THREE OCLOCK" softbank="E026" unicode="+1F552"/>
|
79
|
+
<e docomo=">E6BA" glyphRefID="28" google="FE021" id="021" img_from="softbank" kddi=">E594" name="CLOCK FACE FOUR OCLOCK" softbank="E027" unicode="+1F553"/>
|
80
|
+
<e docomo=">E6BA" glyphRefID="29" google="FE022" id="022" img_from="softbank" kddi=">E594" name="CLOCK FACE FIVE OCLOCK" softbank="E028" unicode="+1F554"/>
|
81
|
+
<e docomo=">E6BA" glyphRefID="30" google="FE023" id="023" img_from="softbank" kddi=">E594" name="CLOCK FACE SIX OCLOCK" softbank="E029" unicode="+1F555"/>
|
82
|
+
<e docomo=">E6BA" glyphRefID="31" google="FE024" id="024" img_from="softbank" kddi=">E594" name="CLOCK FACE SEVEN OCLOCK" softbank="E02A" unicode="+1F556"/>
|
83
|
+
<e docomo=">E6BA" glyphRefID="32" google="FE025" id="025" img_from="softbank" kddi=">E594" name="CLOCK FACE EIGHT OCLOCK" softbank="E02B" unicode="+1F557"/>
|
84
|
+
<e docomo=">E6BA" glyphRefID="33" google="FE026" id="026" img_from="softbank" kddi=">E594" name="CLOCK FACE NINE OCLOCK" softbank="E02C" unicode="+1F558"/>
|
85
|
+
<e docomo=">E6BA" glyphRefID="34" google="FE027" id="027" img_from="softbank" kddi=">E594" name="CLOCK FACE TEN OCLOCK" softbank="E02D" unicode="+1F559">
|
86
|
+
<design>For the representative font, make it look like the rest of the SB clock series rather than making it look like the new alarm clock Emoji.</design>
|
87
|
+
</e>
|
88
|
+
<e docomo=">E6BA" glyphRefID="35" google="FE028" id="028" img_from="softbank" kddi=">E594" name="CLOCK FACE ELEVEN OCLOCK" softbank="E02E" unicode="+1F55A"/>
|
89
|
+
<e docomo=">E6BA" glyphRefID="36" google="FE029" id="029" img_from="softbank" kddi=">E594" name="CLOCK FACE TWELVE OCLOCK" softbank="E02F" unicode="+1F55B"/>
|
90
|
+
<e docomo="E71F" google="FE01D" id="01D" kddi="E57A" name="WATCH" text_fallback="[腕時計]" unicode="231A"/>
|
91
|
+
<e docomo=">E71C" google="FE01C" id="01C" kddi="E57B" name="HOURGLASS" text_fallback="[砂時計]" unicode="231B"/>
|
92
|
+
<e docomo="E6BA" glyphRefID="37" google="FE02A" id="02A" img_from="docomo" kddi="E594" name="ALARM CLOCK" softbank=">E02D" unicode="+23F0">
|
93
|
+
<desc>a general clock symbol</desc>
|
94
|
+
<design>Make the glyph look like an alarm clock.</design>
|
95
|
+
<ann>x (watch - 231A)</ann>
|
96
|
+
<ann>x (clock face one oclock - 1F550)</ann>
|
97
|
+
</e>
|
98
|
+
<e docomo="E71C" glyphRefID="24" google="FE01B" id="01B" img_from="kddi" kddi="E47C" name="HOURGLASS WITH FLOWING SAND" text_fallback="[砂時計]" unicode="+23F3">
|
99
|
+
<ann>x (hourglass - 231B)</ann>
|
100
|
+
<desc>Sometimes animated as by KDDI/AU. Might be allocated in the U+23xx Miscellaneous Technical block with U+231B HOURGLASS=e-01C.</desc>
|
101
|
+
</e>
|
102
|
+
</subcategory>
|
103
|
+
<subcategory name="Zodiacal symbol">
|
104
|
+
<e docomo="E646" google="FE02B" id="02B" kddi="E48F" name="ARIES" softbank="E23F" unicode="2648"/>
|
105
|
+
<e docomo="E647" google="FE02C" id="02C" kddi="E490" name="TAURUS" softbank="E240" unicode="2649"/>
|
106
|
+
<e docomo="E648" google="FE02D" id="02D" kddi="E491" name="GEMINI" softbank="E241" unicode="264A"/>
|
107
|
+
<e docomo="E649" google="FE02E" id="02E" kddi="E492" name="CANCER" softbank="E242" unicode="264B"/>
|
108
|
+
<e docomo="E64A" google="FE02F" id="02F" kddi="E493" name="LEO" softbank="E243" unicode="264C"/>
|
109
|
+
<e docomo="E64B" google="FE030" id="030" kddi="E494" name="VIRGO" softbank="E244" unicode="264D"/>
|
110
|
+
<e docomo="E64C" google="FE031" id="031" kddi="E495" name="LIBRA" softbank="E245" unicode="264E"/>
|
111
|
+
<e docomo="E64D" google="FE032" id="032" kddi="E496" name="SCORPIUS" softbank="E246" unicode="264F"/>
|
112
|
+
<e docomo="E64E" google="FE033" id="033" kddi="E497" name="SAGITTARIUS" softbank="E247" unicode="2650"/>
|
113
|
+
<e docomo="E64F" google="FE034" id="034" kddi="E498" name="CAPRICORN" softbank="E248" unicode="2651"/>
|
114
|
+
<e docomo="E650" google="FE035" id="035" kddi="E499" name="AQUARIUS" softbank="E249" unicode="2652"/>
|
115
|
+
<e docomo="E651" google="FE036" id="036" kddi="E49A" name="PISCES" softbank="E24A" unicode="2653"/>
|
116
|
+
<e glyphRefID="38" google="FE037" id="037" img_from="softbank" kddi="E49B" name="OPHIUCHUS" softbank="E24B" text_fallback="[蛇使座]" unicode="+26CE">
|
117
|
+
<desc>letter symbol /Serpentarius (13th zodiacal symbol, not counted as astrological sign)</desc>
|
118
|
+
</e>
|
119
|
+
</subcategory>
|
120
|
+
<subcategory name="Plant symbols">
|
121
|
+
<e docomo="E741" glyphRefID="43" google="FE03C" id="03C" img_from="docomo" kddi="E513" name="FOUR LEAF CLOVER" softbank="E110" unicode="+1F340">
|
122
|
+
<ann>x (shamrock - 2618)</ann>
|
123
|
+
<desc>Disunified from ☘ U+2618 SHAMROCK</desc>
|
124
|
+
</e>
|
125
|
+
<e docomo="E743" glyphRefID="44" google="FE03D" id="03D" img_from="softbank" kddi="E4E4" name="TULIP" softbank="E304" unicode="+1F337"/>
|
126
|
+
<e docomo="E746" glyphRefID="45" google="FE03E" id="03E" img_from="kddi" kddi="EB7D" name="SEEDLING" softbank=">E110" unicode="+1F331"/>
|
127
|
+
<e docomo="E747" glyphRefID="46" google="FE03F" id="03F" img_from="kddi" kddi="E4CE" name="MAPLE LEAF" softbank="E118" unicode="+1F341"/>
|
128
|
+
<e docomo="E748" glyphRefID="47" google="FE040" id="040" img_from="docomo" kddi="E4CA" name="CHERRY BLOSSOM" softbank="E030" unicode="+1F338">
|
129
|
+
<desc>SAKURA</desc>
|
130
|
+
</e>
|
131
|
+
<e glyphRefID="48" google="FE041" id="041" img_from="kddi" kddi="E5BA" name="ROSE" softbank="E032" text_fallback="[バラ]" unicode="+1F339"/>
|
132
|
+
<e docomo=">E747" glyphRefID="49" google="FE042" id="042" img_from="kddi" kddi="E5CD" name="FALLEN LEAF" softbank="E119" unicode="+1F342">
|
133
|
+
<desc>autumn leaf</desc>
|
134
|
+
<ann>= leaf</ann>
|
135
|
+
</e>
|
136
|
+
<e glyphRefID="50" google="FE043" id="043" img_from="softbank" kddi=">E5CD" name="LEAF FLUTTERING IN WIND" softbank="E447" text_fallback="[風に舞う葉]" unicode="+1F343">
|
137
|
+
<desc>animated Softbank symbol</desc>
|
138
|
+
</e>
|
139
|
+
<e glyphRefID="52" google="FE045" id="045" img_from="kddi" kddi="EA94" name="HIBISCUS" softbank="E303" text_fallback="[ハイビスカス]" unicode="+1F33A"/>
|
140
|
+
<e glyphRefID="53" google="FE046" id="046" img_from="softbank" kddi="E4E3" name="SUNFLOWER" softbank="E305" text_fallback="[ひまわり]" unicode="+1F33B"/>
|
141
|
+
<e glyphRefID="54" google="FE047" id="047" img_from="softbank" kddi="E4E2" name="PALM TREE" softbank="E307" text_fallback="[ヤシ]" unicode="+1F334"/>
|
142
|
+
<e glyphRefID="55" google="FE048" id="048" img_from="kddi" kddi="EA96" name="CACTUS" softbank="E308" text_fallback="[サボテン]" unicode="+1F335"/>
|
143
|
+
<e glyphRefID="56" google="FE049" id="049" img_from="softbank" name="EAR OF RICE" softbank="E444" text_fallback="[稲穂]" unicode="+1F33E"/>
|
144
|
+
<e glyphRefID="57" google="FE04A" id="04A" img_from="kddi" kddi="EB36" name="EAR OF MAIZE" text_fallback="[とうもろこし]" unicode="+1F33D"/>
|
145
|
+
<e glyphRefID="58" google="FE04B" id="04B" img_from="kddi" kddi="EB37" name="MUSHROOM" text_fallback="[キノコ]" unicode="+1F344"/>
|
146
|
+
<e glyphRefID="59" google="FE04C" id="04C" img_from="kddi" kddi="EB38" name="CHESTNUT" text_fallback="[栗]" unicode="+1F330"/>
|
147
|
+
<e glyphRefID="60" google="FE04D" id="04D" img_from="kddi" kddi="EB49" name="BLOSSOM" softbank=">E305" text_fallback="[花]" unicode="+1F33C">
|
148
|
+
<ann>= daisy</ann>
|
149
|
+
</e>
|
150
|
+
<e docomo=">E741" glyphRefID="61" google="FE04E" id="04E" img_from="kddi" kddi="EB82" name="HERB" softbank=">E110" unicode="+1F33F"/>
|
151
|
+
</subcategory>
|
152
|
+
<subcategory name="Fruit symbols">
|
153
|
+
<e docomo="E742" glyphRefID="62" google="FE04F" id="04F" img_from="kddi" kddi="E4D2" name="CHERRIES" text_fallback="[さくらんぼ]" unicode="+1F352"/>
|
154
|
+
<e docomo="E744" glyphRefID="63" google="FE050" id="050" img_from="kddi" kddi="EB35" name="BANANA" text_fallback="[バナナ]" unicode="+1F34C"/>
|
155
|
+
<e docomo="E745" glyphRefID="64" google="FE051" id="051" img_from="kddi" kddi="EAB9" name="RED APPLE" oldname="APPLE-1" softbank="E345" unicode="+1F34E">
|
156
|
+
<desc>Usually in red color</desc>
|
157
|
+
</e>
|
158
|
+
<e glyphRefID="65" google="FE052" id="052" img_from="kddi" kddi="EABA" name="TANGERINE" softbank="E346" text_fallback="[みかん]" unicode="+1F34A">
|
159
|
+
<desc>Mikan, Orange</desc>
|
160
|
+
</e>
|
161
|
+
<e glyphRefID="66" google="FE053" id="053" img_from="kddi" kddi="E4D4" name="STRAWBERRY" softbank="E347" text_fallback="[イチゴ]" unicode="+1F353"/>
|
162
|
+
<e glyphRefID="67" google="FE054" id="054" img_from="kddi" kddi="E4CD" name="WATERMELON" softbank="E348" text_fallback="[スイカ]" unicode="+1F349"/>
|
163
|
+
<e glyphRefID="68" google="FE055" id="055" img_from="kddi" kddi="EABB" name="TOMATO" softbank="E349" text_fallback="[トマト]" unicode="+1F345"/>
|
164
|
+
<e glyphRefID="69" google="FE056" id="056" img_from="kddi" kddi="EABC" name="AUBERGINE" softbank="E34A" text_fallback="[ナス]" unicode="+1F346">
|
165
|
+
<ann>= eggplant</ann>
|
166
|
+
</e>
|
167
|
+
<e glyphRefID="70" google="FE057" id="057" img_from="kddi" kddi="EB32" name="MELON" text_fallback="[メロン]" unicode="+1F348">
|
168
|
+
<desc>also honeydew melon</desc>
|
169
|
+
</e>
|
170
|
+
<e glyphRefID="71" google="FE058" id="058" img_from="kddi" kddi="EB33" name="PINEAPPLE" text_fallback="[パイナップル]" unicode="+1F34D"/>
|
171
|
+
<e glyphRefID="72" google="FE059" id="059" img_from="kddi" kddi="EB34" name="GRAPES" text_fallback="[ブドウ]" unicode="+1F347"/>
|
172
|
+
<e glyphRefID="73" google="FE05A" id="05A" img_from="kddi" kddi="EB39" name="PEACH" text_fallback="[モモ]" unicode="+1F351"/>
|
173
|
+
<e docomo=">E745" glyphRefID="74" google="FE05B" id="05B" img_from="kddi" kddi="EB5A" name="GREEN APPLE" oldname="APPLE-2" softbank=">E345" unicode="+1F34F">
|
174
|
+
<desc>Usually in green color</desc>
|
175
|
+
</e>
|
176
|
+
</subcategory>
|
177
|
+
</category>
|
178
|
+
<category name="2. Human/Living Things">
|
179
|
+
<subcategory name="Facial parts symbols">
|
180
|
+
<e docomo="E691" glyphRefID="75" google="FE190" id="190" img_from="kddi" kddi="E5A4" name="EYES" softbank="E419" unicode="+1F440"/>
|
181
|
+
<e docomo="E692" glyphRefID="76" google="FE191" id="191" img_from="kddi" kddi="E5A5" name="EAR" softbank="E41B" unicode="+1F442"/>
|
182
|
+
<e glyphRefID="77" google="FE192" id="192" img_from="kddi" kddi="EAD0" name="NOSE" softbank="E41A" text_fallback="[鼻]" unicode="+1F443"/>
|
183
|
+
<e docomo=">E6F9" glyphRefID="78" google="FE193" id="193" img_from="kddi" kddi="EAD1" name="MOUTH" softbank="E41C" unicode="+1F444"/>
|
184
|
+
<e docomo=">E728" glyphRefID="79" google="FE194" id="194" img_from="kddi" kddi="EB47" name="TONGUE" softbank=">E409" unicode="+1F445"/>
|
185
|
+
</subcategory>
|
186
|
+
<subcategory name="Personal care symbols">
|
187
|
+
<e docomo="E710" glyphRefID="80" google="FE195" id="195" img_from="kddi" kddi="E509" name="LIPSTICK" softbank="E31C" unicode="+1F484"/>
|
188
|
+
<e glyphRefID="81" google="FE196" id="196" img_from="kddi" kddi="EAA0" name="NAIL POLISH" oldname="NAIL CARE" softbank="E31D" text_fallback="[マニキュア]" unicode="+1F485">
|
189
|
+
<ann>= manicure, nail care</ann>
|
190
|
+
</e>
|
191
|
+
<e glyphRefID="82" google="FE197" id="197" img_from="kddi" kddi="E50B" name="FACE MASSAGE" softbank="E31E" text_fallback="[エステ]" unicode="+1F486"/>
|
192
|
+
<e docomo=">E675" glyphRefID="83" google="FE198" id="198" img_from="kddi" kddi="EAA1" name="HAIRCUT" softbank="E31F" unicode="+1F487">
|
193
|
+
<ann>* usually indicates a beauty parlor</ann>
|
194
|
+
<design>The glyph needs to represent a female as this Emoji refers to a beauty parlor.</design>
|
195
|
+
</e>
|
196
|
+
<e glyphRefID="84" google="FE199" id="199" img_from="kddi" kddi="EAA2" name="BARBER POLE" softbank="E320" text_fallback="[床屋]" unicode="+1F488"/>
|
197
|
+
</subcategory>
|
198
|
+
<subcategory name="Portrait and role symbols">
|
199
|
+
<e docomo="E6B1" glyphRefID="85" google="FE19A" id="19A" img_from="docomo" name="BUST IN SILHOUETTE" unicode="+1F464">
|
200
|
+
<ann>= guest account</ann>
|
201
|
+
</e>
|
202
|
+
<e docomo=">E6F0" glyphRefID="86" google="FE19B" id="19B" img_from="softbank" kddi="E4FC" name="BOY" oldname="BOYS HEAD" softbank="E001" unicode="+1F466">
|
203
|
+
<desc>? Need to examine cross mapping</desc>
|
204
|
+
</e>
|
205
|
+
<e docomo=">E6F0" glyphRefID="87" google="FE19C" id="19C" img_from="softbank" kddi="E4FA" name="GIRL" oldname="GIRLS HEAD" softbank="E002" unicode="+1F467"/>
|
206
|
+
<e docomo=">E6F0" glyphRefID="88" google="FE19D" id="19D" img_from="softbank" kddi=">E4FC" name="MAN" oldname="MANS HEAD" softbank="E004" unicode="+1F468"/>
|
207
|
+
<e docomo=">E6F0" glyphRefID="89" google="FE19E" id="19E" img_from="softbank" kddi=">E4FA" name="WOMAN" oldname="WOMANS HEAD" softbank="E005" unicode="+1F469"/>
|
208
|
+
<e glyphRefID="90" google="FE19F" id="19F" img_from="kddi" kddi="E501" name="FAMILY" text_fallback="[家族]" unicode="+1F46A"/>
|
209
|
+
<e glyphRefID="91" google="FE1A0" id="1A0" img_from="softbank" name="MAN AND WOMAN HOLDING HANDS" oldname="COUPLE" softbank="E428" text_fallback="[カップル]" unicode="+1F46B">
|
210
|
+
<desc>A couple holding hands</desc>
|
211
|
+
</e>
|
212
|
+
<e glyphRefID="92" google="FE1A1" id="1A1" img_from="kddi" kddi="E5DD" name="POLICE OFFICER" softbank="E152" text_fallback="[警官]" unicode="+1F46E">
|
213
|
+
<desc>represents the police (Note: there is also just a police cap icon by Softbank.)</desc>
|
214
|
+
</e>
|
215
|
+
<e glyphRefID="93" google="FE1A2" id="1A2" img_from="kddi" kddi="EADB" name="WOMAN WITH BUNNY EARS" softbank="E429" text_fallback="[バニー]" unicode="+1F46F">
|
216
|
+
<desc>a showgirl?</desc>
|
217
|
+
</e>
|
218
|
+
<e glyphRefID="94" google="FE1A3" id="1A3" img_from="kddi" kddi="EAE9" name="BRIDE WITH VEIL" text_fallback="[花嫁]" unicode="+1F470"/>
|
219
|
+
<e glyphRefID="95" google="FE1A4" id="1A4" img_from="kddi" kddi="EB13" name="WESTERN PERSON" softbank="E515" text_fallback="[白人]" unicode="+1F471">
|
220
|
+
<desc>both male and female icons exist</desc>
|
221
|
+
</e>
|
222
|
+
<e glyphRefID="96" google="FE1A5" id="1A5" img_from="kddi" kddi="EB14" name="MAN WITH GUA PI MAO" softbank="E516" text_fallback="[中国人]" unicode="+1F472">
|
223
|
+
<design>The glyph should show a skullcap</design>
|
224
|
+
</e>
|
225
|
+
<e glyphRefID="97" google="FE1A6" id="1A6" img_from="kddi" kddi="EB15" name="MAN WITH TURBAN" softbank="E517" text_fallback="[インド人]" unicode="+1F473"/>
|
226
|
+
<e glyphRefID="98" google="FE1A7" id="1A7" img_from="kddi" kddi="EB16" name="OLDER MAN" softbank="E518" text_fallback="[おじいさん]" unicode="+1F474"/>
|
227
|
+
<e glyphRefID="99" google="FE1A8" id="1A8" img_from="kddi" kddi="EB17" name="OLDER WOMAN" softbank="E519" text_fallback="[おばあさん]" unicode="+1F475"/>
|
228
|
+
<e glyphRefID="100" google="FE1A9" id="1A9" img_from="kddi" kddi="EB18" name="BABY" softbank="E51A" text_fallback="[赤ちゃん]" unicode="+1F476"/>
|
229
|
+
<e glyphRefID="101" google="FE1AA" id="1AA" img_from="kddi" kddi="EB19" name="CONSTRUCTION WORKER" softbank="E51B" text_fallback="[工事現場の人]" unicode="+1F477">
|
230
|
+
<desc>here this is male</desc>
|
231
|
+
</e>
|
232
|
+
</subcategory>
|
233
|
+
<subcategory name="Fairy tale symbols">
|
234
|
+
<e glyphRefID="102" google="FE1AB" id="1AB" img_from="kddi" kddi="EB1A" name="PRINCESS" softbank="E51C" text_fallback="[お姫様]" unicode="+1F478"/>
|
235
|
+
<e glyphRefID="103" google="FE1AC" id="1AC" img_from="kddi" kddi="EB44" name="JAPANESE OGRE" oldname="OGRE" text_fallback="[なまはげ]" unicode="+1F479">
|
236
|
+
<desc>In Japanese, "Oni" - could be a red or blue faced demon. Also refers to "Namahage" - a local year-end event in Akita.</desc>
|
237
|
+
</e>
|
238
|
+
<e glyphRefID="104" google="FE1AD" id="1AD" img_from="kddi" kddi="EB45" name="JAPANESE GOBLIN" oldname="GOBLIN" text_fallback="[天狗]" unicode="+1F47A">
|
239
|
+
<desc>In Japanese "Tengu" [天狗] (long-nosed goblin, braggart)</desc>
|
240
|
+
</e>
|
241
|
+
<e glyphRefID="105" google="FE1AE" id="1AE" img_from="kddi" kddi="E4CB" name="GHOST" softbank="E11B" text_fallback="[お化け]" unicode="+1F47B">
|
242
|
+
<desc>Ghost (cute)</desc>
|
243
|
+
</e>
|
244
|
+
<e glyphRefID="106" google="FE1AF" id="1AF" img_from="softbank" kddi="E5BF" name="BABY ANGEL" oldname="CHERUB" softbank="E04E" text_fallback="[天使]" unicode="+1F47C"/>
|
245
|
+
<e glyphRefID="107" google="FE1B0" id="1B0" img_from="kddi" kddi="E50E" name="EXTRATERRESTRIAL ALIEN" softbank="E10C" text_fallback="[UFO]" unicode="+1F47D">
|
246
|
+
<desc>Alien (big eyed type), or UFO</desc>
|
247
|
+
</e>
|
248
|
+
<e glyphRefID="108" google="FE1B1" id="1B1" img_from="kddi" kddi="E4EC" name="ALIEN MONSTER" softbank="E12B" text_fallback="[宇宙人]" unicode="+1F47E">
|
249
|
+
<desc>Alien (monster type)</desc>
|
250
|
+
</e>
|
251
|
+
<e glyphRefID="109" google="FE1B2" id="1B2" img_from="kddi" kddi="E4EF" name="IMP" softbank="E11A" text_fallback="[アクマ]" unicode="+1F47F">
|
252
|
+
<desc>Devil (cute)</desc>
|
253
|
+
</e>
|
254
|
+
<e glyphRefID="110" google="FE1B3" id="1B3" img_from="softbank" kddi="E4F8" name="SKULL" softbank="E11C" text_fallback="[ドクロ]" unicode="+1F480"/>
|
255
|
+
</subcategory>
|
256
|
+
<subcategory name="Role symbols">
|
257
|
+
<e glyphRefID="111" google="FE1B4" id="1B4" img_from="softbank" name="INFORMATION DESK PERSON" softbank="E253" text_fallback="[案内]" unicode="+1F481"/>
|
258
|
+
<e glyphRefID="112" google="FE1B5" id="1B5" img_from="softbank" name="GUARDSMAN" softbank="E51E" text_fallback="[衛兵]" unicode="+1F482"/>
|
259
|
+
<e glyphRefID="113" google="FE1B6" id="1B6" img_from="kddi" kddi="EB1C" name="DANCER" softbank="E51F" text_fallback="[ダンス]" unicode="+1F483">
|
260
|
+
<desc>Dancer (SoftBank = flamenco, KDDI = disco, oh well--it's their mapping)</desc>
|
261
|
+
</e>
|
262
|
+
</subcategory>
|
263
|
+
<subcategory name="Animal symbols">
|
264
|
+
<e docomo="E74E" glyphRefID="116" google="FE1B9" id="1B9" img_from="kddi" kddi="EB7E" name="SNAIL" text_fallback="[カタツムリ]" unicode="+1F40C">
|
265
|
+
<ann>* fifth of the signs of the Asian zodiac, used in Kazakhstan</ann>
|
266
|
+
</e>
|
267
|
+
<e glyphRefID="142" google="FE1D3" id="1D3" img_from="softbank" kddi="EB22" name="SNAKE" softbank="E52D" text_fallback="[ヘビ]" unicode="+1F40D">
|
268
|
+
<ann>* sixth of the signs of the Asian zodiac</ann>
|
269
|
+
</e>
|
270
|
+
<e docomo=">E754" glyphRefID="386" google="FE7DC" id="7DC" img_from="softbank" kddi=">E4D8" name="HORSE" softbank="E134" unicode="+1F40E">
|
271
|
+
<ann>* seventh of the signs of the Asian zodiac</ann>
|
272
|
+
</e>
|
273
|
+
<e glyphRefID="143" google="FE1D4" id="1D4" img_from="kddi" kddi="EB23" name="CHICKEN" softbank="E52E" text_fallback="[ニワトリ]" unicode="+1F414">
|
274
|
+
<ann>* tenth of the signs of the Asian zodiac, used in Persia</ann>
|
275
|
+
<ann>= hen</ann>
|
276
|
+
<ann>= poultry (on menus)</ann>
|
277
|
+
</e>
|
278
|
+
<e glyphRefID="144" google="FE1D5" id="1D5" img_from="kddi" kddi="EB24" name="BOAR" softbank="E52F" text_fallback="[イノシシ]" unicode="+1F417">
|
279
|
+
<ann>* twelfth of the signs of the Asian zodiac, used in Japan</ann>
|
280
|
+
</e>
|
281
|
+
<e glyphRefID="145" google="FE1D6" id="1D6" img_from="kddi" kddi="EB25" name="BACTRIAN CAMEL" softbank="E530" text_fallback="[ラクダ]" unicode="+1F42B">
|
282
|
+
<ann>* has two humps</ann>
|
283
|
+
</e>
|
284
|
+
<e glyphRefID="135" google="FE1CC" id="1CC" img_from="kddi" kddi="EB1F" name="ELEPHANT" softbank="E526" text_fallback="[ゾウ]" unicode="+1F418">
|
285
|
+
<ann>* twelfth of the signs of the Asian zodiac, used in Thailand</ann>
|
286
|
+
</e>
|
287
|
+
<e glyphRefID="136" google="FE1CD" id="1CD" img_from="kddi" kddi="EB20" name="KOALA" softbank="E527" text_fallback="[コアラ]" unicode="+1F428"/>
|
288
|
+
<e glyphRefID="137" google="FE1CE" id="1CE" img_from="softbank" kddi=">E4D9" name="MONKEY" softbank="E528" text_fallback="[サル]" unicode="+1F412">
|
289
|
+
<ann>* ninth of the signs of the Asian zodiac</ann>
|
290
|
+
</e>
|
291
|
+
<e glyphRefID="138" google="FE1CF" id="1CF" img_from="softbank" kddi=">E48F" name="SHEEP" softbank="E529" text_fallback="[ヒツジ]" unicode="+1F411">
|
292
|
+
<desc>Note Aries (sheep) by KDDI. Zodiac</desc>
|
293
|
+
<ann>* eighth of the signs of the Asian zodiac, used in Persia</ann>
|
294
|
+
</e>
|
295
|
+
<e glyphRefID="128" google="FE1C5" id="1C5" img_from="kddi" kddi="E5C7" name="OCTOPUS" softbank="E10A" text_fallback="[タコ]" unicode="+1F419"/>
|
296
|
+
<e glyphRefID="129" google="FE1C6" id="1C6" img_from="softbank" kddi="EAEC" name="SPIRAL SHELL" softbank="E441" text_fallback="[巻貝]" unicode="+1F41A"/>
|
297
|
+
<e glyphRefID="134" google="FE1CB" id="1CB" img_from="softbank" kddi="EB1E" name="BUG" softbank="E525" text_fallback="[ゲジゲジ]" unicode="+1F41B">
|
298
|
+
<desc>This Emoji may point to a centipede or hairy catepillar. It typically indicates something "distasteful".</desc>
|
299
|
+
</e>
|
300
|
+
<e glyphRefID="149" google="FE1DA" id="1DA" img_from="kddi" kddi="E4DD" name="ANT" text_fallback="[アリ]" unicode="+1F41C"/>
|
301
|
+
<e glyphRefID="156" google="FE1E1" id="1E1" img_from="kddi" kddi="EB57" name="HONEYBEE" text_fallback="[ミツバチ]" unicode="+1F41D"/>
|
302
|
+
<e glyphRefID="157" google="FE1E2" id="1E2" img_from="kddi" kddi="EB58" name="LADY BEETLE" oldname="LADYBUG" text_fallback="[てんとう虫]" unicode="+1F41E">
|
303
|
+
<ann>= ladybird, ladybug, coccinellids</ann>
|
304
|
+
</e>
|
305
|
+
<e google="FE1E3" id="1E3" img_from="google" in_proposal="no" kddi=">E492" name="CRAB" text_fallback="[カニ]"/>
|
306
|
+
<e docomo=">E751" glyphRefID="132" google="FE1C9" id="1C9" img_from="kddi" kddi="EB1D" name="TROPICAL FISH" softbank="E522" unicode="+1F420"/>
|
307
|
+
<e docomo=">E751" glyphRefID="148" google="FE1D9" id="1D9" img_from="kddi" kddi="E4D3" name="BLOWFISH" softbank=">E019" unicode="+1F421"/>
|
308
|
+
<e glyphRefID="151" google="FE1DC" id="1DC" img_from="kddi" kddi="E5D4" name="TURTLE" text_fallback="[カメ]" unicode="+1F422"/>
|
309
|
+
<e docomo="E74F" glyphRefID="117" google="FE1BA" id="1BA" img_from="kddi" kddi="E4E0" name="BABY CHICK" softbank="E523" unicode="+1F424"/>
|
310
|
+
<e docomo=">E74F" glyphRefID="118" google="FE1BB" id="1BB" img_from="kddi" kddi="EB76" name="FRONT-FACING BABY CHICK" softbank=">E523" unicode="+1F425">
|
311
|
+
<desc>chick facing you</desc>
|
312
|
+
</e>
|
313
|
+
<e docomo=">E74F" glyphRefID="131" google="FE1C8" id="1C8" img_from="softbank" kddi=">E4E0" name="BIRD" softbank="E521" unicode="+1F426"/>
|
314
|
+
<e docomo=">E74F" glyphRefID="152" google="FE1DD" id="1DD" img_from="kddi" kddi="E5DB" name="HATCHING CHICK" softbank=">E523" unicode="+1F423">
|
315
|
+
<desc>animated by KDDI</desc>
|
316
|
+
</e>
|
317
|
+
<e docomo="E750" glyphRefID="119" google="FE1BC" id="1BC" img_from="kddi" kddi="E4DC" name="PENGUIN" softbank="E055" unicode="+1F427"/>
|
318
|
+
<e docomo=">E6A1" glyphRefID="147" google="FE1D8" id="1D8" img_from="kddi" kddi="E4DF" name="POODLE" softbank=">E052" unicode="+1F429"/>
|
319
|
+
<e docomo="E751" glyphRefID="120" google="FE1BD" id="1BD" img_from="docomo" kddi=">E49A" name="FISH" softbank="E019" unicode="+1F41F"/>
|
320
|
+
<e glyphRefID="130" google="FE1C7" id="1C7" img_from="kddi" kddi="EB1B" name="DOLPHIN" softbank="E520" text_fallback="[イルカ]" unicode="+1F42C"/>
|
321
|
+
</subcategory>
|
322
|
+
<subcategory name="Animal faces">
|
323
|
+
<e glyphRefID="125" google="FE1C2" id="1C2" img_from="softbank" kddi="E5C2" name="MOUSE FACE" softbank="E053" text_fallback="[ネズミ]" unicode="+1F42D"/>
|
324
|
+
<e glyphRefID="123" google="FE1C0" id="1C0" img_from="kddi" kddi="E5C0" name="TIGER FACE" softbank="E050" text_fallback="[トラ]" unicode="+1F42F"/>
|
325
|
+
<e docomo="E6A2" glyphRefID="115" google="FE1B8" id="1B8" img_from="kddi" kddi="E4DB" name="CAT FACE" softbank="E04F" unicode="+1F431"/>
|
326
|
+
<e glyphRefID="126" google="FE1C3" id="1C3" img_from="softbank" kddi="E470" name="SPOUTING WHALE" softbank="E054" text_fallback="[クジラ]" unicode="+1F433"/>
|
327
|
+
<e docomo="E754" glyphRefID="121" google="FE1BE" id="1BE" img_from="kddi" kddi="E4D8" name="HORSE FACE" softbank="E01A" unicode="+1F434"/>
|
328
|
+
<e glyphRefID="127" google="FE1C4" id="1C4" img_from="kddi" kddi="E4D9" name="MONKEY FACE" softbank="E109" text_fallback="[サル]" unicode="+1F435"/>
|
329
|
+
<e docomo="E6A1" glyphRefID="114" google="FE1B7" id="1B7" img_from="kddi" kddi="E4E1" name="DOG FACE" softbank="E052" unicode="+1F436"/>
|
330
|
+
<e docomo="E755" glyphRefID="122" google="FE1BF" id="1BF" img_from="softbank" kddi="E4DE" name="PIG FACE" softbank="E10B" unicode="+1F437"/>
|
331
|
+
<e glyphRefID="124" google="FE1C1" id="1C1" img_from="kddi" kddi="E5C1" name="BEAR FACE" softbank="E051" text_fallback="[クマ]" unicode="+1F43B"/>
|
332
|
+
<e glyphRefID="133" google="FE1CA" id="1CA" img_from="softbank" name="HAMSTER FACE" softbank="E524" text_fallback="[ハムスター]" unicode="+1F439"/>
|
333
|
+
<e docomo=">E6A1" glyphRefID="139" google="FE1D0" id="1D0" img_from="softbank" kddi=">E4E1" name="WOLF FACE" softbank="E52A" unicode="+1F43A"/>
|
334
|
+
<e glyphRefID="140" google="FE1D1" id="1D1" img_from="kddi" kddi="EB21" name="COW FACE" softbank="E52B" text_fallback="[牛]" unicode="+1F42E"/>
|
335
|
+
<e glyphRefID="141" google="FE1D2" id="1D2" img_from="kddi" kddi="E4D7" name="RABBIT FACE" softbank="E52C" text_fallback="[ウサギ]" unicode="+1F430"/>
|
336
|
+
<e glyphRefID="146" google="FE1D7" id="1D7" img_from="kddi" kddi="E4DA" name="FROG FACE" softbank="E531" text_fallback="[カエル]" unicode="+1F438"/>
|
337
|
+
<e docomo=">E698" glyphRefID="150" google="FE1DB" id="1DB" img_from="kddi" kddi="E4EE" name="PAW PRINTS" softbank=">E536" unicode="+1F43E"/>
|
338
|
+
<e glyphRefID="153" google="FE1DE" id="1DE" img_from="kddi" kddi="EB3F" name="DRAGON FACE" text_fallback="[辰]" unicode="+1F432"/>
|
339
|
+
<e glyphRefID="154" google="FE1DF" id="1DF" img_from="kddi" kddi="EB46" name="PANDA FACE" text_fallback="[パンダ]" unicode="+1F43C"/>
|
340
|
+
<e docomo=">E755" glyphRefID="155" google="FE1E0" id="1E0" img_from="kddi" kddi="EB48" name="PIG NOSE" softbank=">E10B" unicode="+1F43D"/>
|
341
|
+
</subcategory>
|
342
|
+
</category>
|
343
|
+
<category name="3. Faces and Smiley's">
|
344
|
+
<subcategory name="Emoticons">
|
345
|
+
<e docomo="E6F1" glyphRefID="158" google="FE320" id="320" img_from="softbank" kddi="E472" name="ANGRY FACE" softbank="E059" unicode="+1F600"/>
|
346
|
+
<e docomo=">E6F3" glyphRefID="159" google="FE321" id="321" img_from="kddi" kddi="EB67" name="ANGUISHED FACE" softbank=">E403" unicode="+1F601">
|
347
|
+
<desc>Forms a pair with e-350.</desc>
|
348
|
+
</e>
|
349
|
+
<e docomo=">E6F4" glyphRefID="160" google="FE322" id="322" img_from="softbank" kddi="EACA" name="ASTONISHED FACE" softbank="E410" unicode="+1F602">
|
350
|
+
<desc>Surprise, astonishment</desc>
|
351
|
+
</e>
|
352
|
+
<e docomo="E6F2" glyphRefID="161" google="FE323" id="323" img_from="softbank" kddi=">EAC0" name="DISAPPOINTED FACE" softbank="E058" unicode="+1F603"/>
|
353
|
+
<e docomo="E6F4" glyphRefID="162" google="FE324" id="324" img_from="kddi" kddi="E5AE" name="DIZZY FACE" softbank=">E406" unicode="+1F604"/>
|
354
|
+
<e docomo=">E723" glyphRefID="163" google="FE325" id="325" img_from="softbank" kddi="EACB" name="EXASPERATED FACE" softbank="E40F" unicode="+1F605">
|
355
|
+
<desc>Exasperated, frustrated, impatient (sweating)</desc>
|
356
|
+
</e>
|
357
|
+
<e docomo="E725" glyphRefID="164" google="FE326" id="326" img_from="docomo" kddi="EAC9" name="EXPRESSIONLESS FACE" softbank="E40E" unicode="+1F606">
|
358
|
+
<desc>KDDI has side-look animation</desc>
|
359
|
+
</e>
|
360
|
+
<e docomo="E726" glyphRefID="165" google="FE327" id="327" img_from="docomo" kddi="E5C4" name="FACE WITH HEART-SHAPED EYES" oldname="FACE WITH HEART SHAPED EYES" softbank="E106" unicode="+1F607">
|
361
|
+
<desc>Forms a pair with e-34C. used to indicate the state of being in love</desc>
|
362
|
+
</e>
|
363
|
+
<e docomo=">E753" glyphRefID="166" google="FE328" id="328" img_from="kddi" kddi="EAC1" name="FACE WITH LOOK OF TRIUMPH" softbank=">E404" unicode="+1F608"/>
|
364
|
+
<e docomo="E728" glyphRefID="167" google="FE329" id="329" img_from="docomo" kddi="E4E7" name="WINKING FACE WITH STUCK-OUT TONGUE" oldname="WINKING FACE WITH STUCK OUT TONGUE" softbank="E105" unicode="+1F609"/>
|
365
|
+
<e docomo=">E728" glyphRefID="168" google="FE32A" id="32A" img_from="softbank" kddi=">E4E7" name="FACE WITH STUCK-OUT TONGUE" oldname="FACE WITH STUCK OUT TONGUE" softbank="E409" unicode="+1F60A">
|
366
|
+
<desc>with eyelids pulled down for additional effect</desc>
|
367
|
+
</e>
|
368
|
+
<e docomo="E752" glyphRefID="169" google="FE32B" id="32B" img_from="docomo" kddi=">EACD" name="FACE SAVOURING DELICIOUS FOOD" oldname="FACE SAVORING DELICIOUS FOOD" softbank=">E056" unicode="+1F60B">
|
369
|
+
<desc>tastes delicious</desc>
|
370
|
+
</e>
|
371
|
+
<e docomo=">E726" glyphRefID="170" google="FE32C" id="32C" img_from="softbank" kddi="EACF" name="FACE THROWING A KISS" softbank="E418" unicode="+1F60C">
|
372
|
+
<desc>kiss</desc>
|
373
|
+
</e>
|
374
|
+
<e docomo=">E726" glyphRefID="171" google="FE32D" id="32D" img_from="softbank" kddi="EACE" name="FACE KISSING" softbank="E417" unicode="+1F60D">
|
375
|
+
<desc>Forms a pair with e-34B. Puckered lips 2 (more forceful kiss, eyes squinting)</desc>
|
376
|
+
</e>
|
377
|
+
<e glyphRefID="172" google="FE32E" id="32E" img_from="softbank" kddi="EAC7" name="FACE WITH MASK" softbank="E40C" text_fallback="[風邪ひき]" unicode="+1F60E">
|
378
|
+
<desc>Under the weather (wearing a breathing mask)</desc>
|
379
|
+
</e>
|
380
|
+
<e docomo=">E72A" glyphRefID="173" google="FE32F" id="32F" img_from="softbank" kddi="EAC8" name="FLUSHED FACE" softbank="E40D" unicode="+1F60F">
|
381
|
+
<desc>red tinge around eyes</desc>
|
382
|
+
</e>
|
383
|
+
<e docomo="E6F0" glyphRefID="174" google="FE330" id="330" img_from="softbank" kddi="E471" name="HAPPY FACE WITH OPEN MOUTH" softbank="E057" unicode="+1F610">
|
384
|
+
<desc>May unify with ☺ U+263A WHITE SMILING FACE</desc>
|
385
|
+
</e>
|
386
|
+
<e docomo="E722" glyphRefID="175" google="FE331" id="331" img_from="docomo" kddi=">E471+E5B1" name="HAPPY FACE WITH OPEN MOUTH AND COLD SWEAT" softbank=">E415+E331" unicode="+1F611">
|
387
|
+
<desc>with cold sweat (made it!)</desc>
|
388
|
+
</e>
|
389
|
+
<e docomo="E72A" glyphRefID="176" google="FE332" id="332" img_from="docomo" kddi=">EAC5" name="HAPPY FACE WITH OPEN MOUTH AND CLOSED EYES" softbank=">E40A" unicode="+1F612">
|
390
|
+
<desc>Happy face 3 for DoCoMo</desc>
|
391
|
+
</e>
|
392
|
+
<e docomo="E753" glyphRefID="177" google="FE333" id="333" img_from="docomo" kddi="EB80" name="HAPPY FACE WITH GRIN" softbank="E404" unicode="+1F613">
|
393
|
+
<desc>Forms a pair with e-349. loudly laughing face with bare teeth</desc>
|
394
|
+
</e>
|
395
|
+
<e docomo=">E72A" glyphRefID="178" google="FE334" id="334" img_from="kddi" kddi="EB64" name="HAPPY AND CRYING FACE" softbank="E412" unicode="+1F614">
|
396
|
+
<desc>Forms a pair with e-34A. with tears of joy</desc>
|
397
|
+
</e>
|
398
|
+
<e docomo=">E6F0" glyphRefID="179" google="FE335" id="335" img_from="kddi" kddi="EACD" name="HAPPY FACE WITH WIDE MOUTH AND RAISED EYEBROWS" softbank="E056" unicode="+1F615">
|
399
|
+
<desc>smiling face</desc>
|
400
|
+
</e>
|
401
|
+
<e docomo=">E6F0" google="FE336" id="336" kddi="E4FB" name="WHITE SMILING FACE" softbank="E414" unicode="263A">
|
402
|
+
<desc>generic smiley</desc>
|
403
|
+
</e>
|
404
|
+
<e docomo=">E6F0" google="FE337" id="337" in_proposal="no" kddi=">EACD" name="HAPPY FACE" softbank=">E056" text_repr="☺">
|
405
|
+
<desc>Possibly unify with U+263A WHITE SMILING FACE</desc>
|
406
|
+
</e>
|
407
|
+
<e docomo=">E6F0" glyphRefID="180" google="FE338" id="338" img_from="softbank" kddi=">E471" name="HAPPY FACE WITH OPEN MOUTH AND RAISED EYEBROWS" softbank="E415" unicode="+1F616">
|
408
|
+
<desc>with open mouth</desc>
|
409
|
+
</e>
|
410
|
+
<e docomo="E72E" glyphRefID="181" google="FE339" id="339" img_from="docomo" kddi="EB69" name="CRYING FACE" softbank="E413" unicode="+1F617">
|
411
|
+
<desc>Forms a pair with e-34D. 1 or 2 tear drops</desc>
|
412
|
+
</e>
|
413
|
+
<e docomo="E72D" glyphRefID="182" google="FE33A" id="33A" img_from="docomo" kddi="E473" name="LOUDLY CRYING FACE" softbank="E411" unicode="+1F618">
|
414
|
+
<desc>lots of tears</desc>
|
415
|
+
</e>
|
416
|
+
<e docomo=">E757" glyphRefID="183" google="FE33B" id="33B" img_from="softbank" kddi="EAC6" name="FEARFUL FACE" softbank="E40B" unicode="+1F619">
|
417
|
+
<desc>Pale in fear</desc>
|
418
|
+
</e>
|
419
|
+
<e docomo="E72B" glyphRefID="184" google="FE33C" id="33C" img_from="docomo" kddi="EAC2" name="PERSEVERING FACE" softbank="E406" unicode="+1F61A">
|
420
|
+
<desc>failure, disappointment</desc>
|
421
|
+
</e>
|
422
|
+
<e docomo="E724" glyphRefID="185" google="FE33D" id="33D" img_from="kddi" kddi="EB5D" name="POUTING FACE" softbank="E416" unicode="+1F61B">
|
423
|
+
<desc>Forms a pair with e-34E.</desc>
|
424
|
+
</e>
|
425
|
+
<e docomo="E721" glyphRefID="186" google="FE33E" id="33E" img_from="softbank" kddi="EAC5" name="RELIEVED FACE" softbank="E40A" unicode="+1F61C"/>
|
426
|
+
<e docomo="E6F3" glyphRefID="187" google="FE33F" id="33F" img_from="softbank" kddi="EAC3" name="CONFOUNDED FACE" softbank="E407" unicode="+1F61D"/>
|
427
|
+
<e docomo="E720" glyphRefID="188" google="FE340" id="340" img_from="softbank" kddi="EAC0" name="PENSIVE FACE" softbank="E403" unicode="+1F61E"/>
|
428
|
+
<e docomo="E757" glyphRefID="189" google="FE341" id="341" img_from="docomo" kddi="E5C5" name="FACE SCREAMING IN FEAR" softbank="E107" unicode="+1F61F">
|
429
|
+
<desc>Shocking (like Edvard Munch's "The Scream")</desc>
|
430
|
+
</e>
|
431
|
+
<e docomo=">E701" glyphRefID="190" google="FE342" id="342" img_from="softbank" kddi="EAC4" name="SLEEPY FACE" softbank="E408" unicode="+1F620"/>
|
432
|
+
<e docomo="E72C" glyphRefID="191" google="FE343" id="343" img_from="docomo" kddi="EABF" name="SMIRKING FACE" softbank="E402" unicode="+1F621">
|
433
|
+
<desc>half smile in some cases</desc>
|
434
|
+
</e>
|
435
|
+
<e docomo="E723" glyphRefID="192" google="FE344" id="344" img_from="kddi" kddi="E5C6" name="FACE WITH COLD SWEAT" softbank="E108" unicode="+1F622">
|
436
|
+
<desc>with troubled look</desc>
|
437
|
+
</e>
|
438
|
+
<e docomo=">E723" glyphRefID="193" google="FE345" id="345" img_from="softbank" kddi=">E5C6" name="DISAPPOINTED BUT RELIEVED FACE" softbank="E401" unicode="+1F623"/>
|
439
|
+
<e docomo=">E72B" glyphRefID="194" google="FE346" id="346" img_from="kddi" kddi="E474" name="TIRED FACE" softbank=">E406" unicode="+1F624">
|
440
|
+
<desc>Enduring (exhausted) face</desc>
|
441
|
+
</e>
|
442
|
+
<e docomo="E729" glyphRefID="195" google="FE347" id="347" img_from="docomo" kddi="E5C3" name="WINKING FACE" softbank="E405" unicode="+1F625"/>
|
443
|
+
</subcategory>
|
444
|
+
<subcategory name="Emoticons with cat faces">
|
445
|
+
<e docomo=">E6F0" glyphRefID="196" google="FE348" id="348" img_from="kddi" kddi="EB61" name="CAT FACE WITH OPEN MOUTH" softbank=">E057" unicode="+1F62B">
|
446
|
+
<desc>Happy</desc>
|
447
|
+
</e>
|
448
|
+
<e docomo=">E753" glyphRefID="197" google="FE349" id="349" img_from="kddi" kddi="EB7F" name="HAPPY CAT FACE WITH GRIN" softbank=">E404" unicode="+1F62C">
|
449
|
+
<desc>Forms a pair with e-333. Hee hee hee</desc>
|
450
|
+
</e>
|
451
|
+
<e docomo=">E72A" glyphRefID="198" google="FE34A" id="34A" img_from="kddi" kddi="EB63" name="HAPPY AND CRYING CAT FACE" softbank=">E412" unicode="+1F62D">
|
452
|
+
<desc>Forms a pair with e-334. Tears of joy</desc>
|
453
|
+
</e>
|
454
|
+
<e docomo=">E726" glyphRefID="199" google="FE34B" id="34B" img_from="kddi" kddi="EB60" name="CAT FACE KISSING" softbank=">E418" unicode="+1F62E">
|
455
|
+
<desc>Forms a pair with e-32D. Kissing action.</desc>
|
456
|
+
</e>
|
457
|
+
<e docomo=">E726" glyphRefID="200" google="FE34C" id="34C" img_from="kddi" kddi="EB65" name="CAT FACE WITH HEART-SHAPED EYES" oldname="CAT FACE WITH HEART SHAPED EYES" softbank=">E106" unicode="+1F62F">
|
458
|
+
<desc>Forms a pair with e-327. Heart shaped eyes (in love)</desc>
|
459
|
+
</e>
|
460
|
+
<e docomo=">E72E" glyphRefID="201" google="FE34D" id="34D" img_from="kddi" kddi="EB68" name="CRYING CAT FACE" softbank=">E413" unicode="+1F630">
|
461
|
+
<desc>Forms a pair with e-339. Crying (one or two tears)</desc>
|
462
|
+
</e>
|
463
|
+
<e docomo=">E724" glyphRefID="202" google="FE34E" id="34E" img_from="kddi" kddi="EB5E" name="POUTING CAT FACE" softbank=">E416" unicode="+1F631">
|
464
|
+
<desc>Forms a pair with e-33D.</desc>
|
465
|
+
</e>
|
466
|
+
<e docomo=">E753" glyphRefID="203" google="FE34F" id="34F" img_from="kddi" kddi="EB6A" name="CAT FACE WITH TIGHTLY-CLOSED LIPS" oldname="CAT FACE WITH TIGHTLY CLOSED LIPS" softbank=">E404" unicode="+1F632">
|
467
|
+
<desc>Smart confidence</desc>
|
468
|
+
</e>
|
469
|
+
<e docomo=">E6F3" glyphRefID="204" google="FE350" id="350" img_from="kddi" kddi="EB66" name="ANGUISHED CAT FACE" softbank=">E403" unicode="+1F633">
|
470
|
+
<desc>Forms a pair with e-321.</desc>
|
471
|
+
</e>
|
472
|
+
</subcategory>
|
473
|
+
<subcategory name="Gesture symbols">
|
474
|
+
<e docomo=">E72F" glyphRefID="205" google="FE351" id="351" img_from="kddi" kddi="EAD7" name="FACE WITH NO GOOD GESTURE" softbank="E423" unicode="+1F634">
|
475
|
+
<desc>No good</desc>
|
476
|
+
</e>
|
477
|
+
<e docomo=">E70B" glyphRefID="206" google="FE352" id="352" img_from="softbank" kddi="EAD8" name="FACE WITH OK GESTURE" softbank="E424" unicode="+1F635">
|
478
|
+
<desc>OK (arms raised, making an "O") . A person or a cat</desc>
|
479
|
+
</e>
|
480
|
+
<e glyphRefID="207" google="FE353" id="353" img_from="softbank" kddi="EAD9" name="PERSON BOWING DEEPLY" softbank="E426" text_fallback="m(_ _)m" unicode="+1F636">
|
481
|
+
<desc>Very truly sorry, a cat or person</desc>
|
482
|
+
</e>
|
483
|
+
<e glyphRefID="208" google="FE354" id="354" img_from="kddi" kddi="EB50" name="SEE-NO-EVIL MONKEY" oldname="SEE NO EVIL MONKEY" text_fallback="(/_\)" unicode="+1F637"/>
|
484
|
+
<e glyphRefID="209" google="FE355" id="355" img_from="kddi" kddi="EB51" name="SPEAK-NO-EVIL MONKEY" oldname="SPEAK NO EVIL MONKEY" text_fallback="(・×・)" unicode="+1F639"/>
|
485
|
+
<e glyphRefID="210" google="FE356" id="356" img_from="kddi" kddi="EB52" name="HEAR-NO-EVIL MONKEY" oldname="HEAR NO EVIL MONKEY" text_fallback="|(・×・)|" unicode="+1F638"/>
|
486
|
+
<e glyphRefID="211" google="FE357" id="357" img_from="kddi" kddi="EB85" name="PERSON RAISING ONE HAND" softbank=">E012" text_fallback="(^-^)/" unicode="+1F63A">
|
487
|
+
<desc>act of raising a hand</desc>
|
488
|
+
</e>
|
489
|
+
<e glyphRefID="212" google="FE358" id="358" img_from="kddi" kddi="EB86" name="PERSON RAISING BOTH HANDS IN CELEBRATION" oldname="PERSON RAISING BOTH HANDS IN CHEERS" softbank="E427" text_fallback="\(^o^)/" unicode="+1F63B">
|
490
|
+
<desc>banzai, raising both hands</desc>
|
491
|
+
<ann>= banzai!</ann>
|
492
|
+
</e>
|
493
|
+
<e docomo=">E6F3" glyphRefID="213" google="FE359" id="359" img_from="kddi" kddi="EB87" name="PERSON FROWNING" softbank=">E403" unicode="+1F63C">
|
494
|
+
<desc>dejected</desc>
|
495
|
+
</e>
|
496
|
+
<e docomo=">E6F1" glyphRefID="214" google="FE35A" id="35A" img_from="kddi" kddi="EB88" name="PERSON WITH POUTING FACE" softbank=">E416" unicode="+1F63D">
|
497
|
+
<desc>cute pouting face</desc>
|
498
|
+
</e>
|
499
|
+
<e glyphRefID="215" google="FE35B" id="35B" img_from="kddi" kddi="EAD2" name="PERSON WITH FOLDED HANDS" softbank="E41D" text_fallback="(>人<)" unicode="+1F63E">
|
500
|
+
<desc>"Sorry" or "Please"</desc>
|
501
|
+
</e>
|
502
|
+
<e google="FE35C" id="35C" img_from="google" in_proposal="no" name="COOL FACE" text_fallback="B-)">
|
503
|
+
<desc>"smiley" with sun glasses</desc>
|
504
|
+
</e>
|
505
|
+
<e google="FE35D" id="35D" img_from="google" in_proposal="no" name="HUG FACE" text_fallback="\(^-^)/">
|
506
|
+
<desc>give me a hug</desc>
|
507
|
+
</e>
|
508
|
+
<e google="FE35E" id="35E" img_from="google" in_proposal="no" name="GEEK" text_fallback="8-|">
|
509
|
+
<desc>Geek/nerd with glasses</desc>
|
510
|
+
</e>
|
511
|
+
<e google="FE35F" id="35F" img_from="google" in_proposal="no" name="THINKING" text_fallback="[考え中]">
|
512
|
+
<desc>Thinking, pondering, etc.</desc>
|
513
|
+
</e>
|
514
|
+
<e google="FE360" id="360" img_from="google" in_proposal="no" name="BOUNCING HAPPY" text_fallback="[やったー]">
|
515
|
+
<desc>Happy and bouncing up and down.</desc>
|
516
|
+
</e>
|
517
|
+
<e google="FE361" id="361" img_from="google" in_proposal="no" name="FACE WITH ROLLING EYES" text_fallback="[クラクラ]">
|
518
|
+
<desc>Face with rolling eyes</desc>
|
519
|
+
</e>
|
520
|
+
<e google="FE362" id="362" img_from="google" in_proposal="no" name="FACE WITH SLANTED MOUTH" text_fallback="[ムムム]">
|
521
|
+
<desc>"smiley" with a slant mouth</desc>
|
522
|
+
</e>
|
523
|
+
<e google="FE363" id="363" img_from="google" in_proposal="no" name="FACE WITH UNBALANCED EYES" text_fallback="[エッ?]">
|
524
|
+
<desc>Huh "smiley" with unbalanced eyes</desc>
|
525
|
+
</e>
|
526
|
+
<e google="FE364" id="364" img_from="google" in_proposal="no" name="UPSIDE DOWN FACE" text_fallback="[逆立ち]">
|
527
|
+
<desc>"smiley" upsidedown</desc>
|
528
|
+
</e>
|
529
|
+
<e google="FE365" id="365" img_from="google" in_proposal="no" name="INJURED FACE" text_fallback="[怪我をした顔]"/>
|
530
|
+
<e google="FE366" id="366" img_from="google" in_proposal="no" name="NERVOUS FACE" text_fallback="[心配した顔]"/>
|
531
|
+
<e google="FE367" id="367" img_from="google" in_proposal="no" name="SYMPATHETIC FACE" text_fallback="[同情した顔]"/>
|
532
|
+
<e google="FE368" id="368" img_from="google" in_proposal="no" name="THIN FACE" text_fallback="[細い顔]"/>
|
533
|
+
<e google="FE369" id="369" img_from="google" in_proposal="no" name="ROBOT" text_fallback="[ロボット]"/>
|
534
|
+
</subcategory>
|
535
|
+
</category>
|
536
|
+
<category name="4. Artifacts">
|
537
|
+
<subcategory name="Building and map symbols">
|
538
|
+
<e docomo="E663" glyphRefID="216" google="FE4B0" id="4B0" img_from="docomo" kddi="E4AB" name="HOUSE BUILDING" softbank="E036" unicode="+1F3E0">
|
539
|
+
<desc>similar to English "house" = "building"</desc>
|
540
|
+
</e>
|
541
|
+
<e docomo=">E663" glyphRefID="217" google="FE4B1" id="4B1" img_from="kddi" kddi="EB09" name="HOUSE WITH GARDEN" oldname="HOUSE WITH YARD" softbank=">E036" unicode="+1F3E1">
|
542
|
+
<desc>similar to English "home" = "where one belongs to"</desc>
|
543
|
+
<ann>= home, house with yard</ann>
|
544
|
+
</e>
|
545
|
+
<e docomo="E664" glyphRefID="218" google="FE4B2" id="4B2" img_from="softbank" kddi="E4AD" name="OFFICE BUILDING" softbank="E038" unicode="+1F3E2"/>
|
546
|
+
<e docomo="E665" glyphRefID="219" google="FE4B3" id="4B3" img_from="docomo" kddi="E5DE" name="JAPANESE POST OFFICE" softbank="E153" unicode="+1F3E3">
|
547
|
+
<ann>x (postal mark - 3012)</ann>
|
548
|
+
<desc>* U+3012 POSTAL MARK = ARIB-9108</desc>
|
549
|
+
</e>
|
550
|
+
<e docomo="E666" glyphRefID="621" google="FE4B4" id="4B4" img_from="docomo" kddi="E5DF" name="HOSPITAL" softbank="E155" unicode="+1F3E5">
|
551
|
+
<desc>
|
552
|
+
disunified from U+26E8 (ARIB-9109: BLACK CROSS ON SHIELD) because all 3 carriers have a cross on a building while ARIB-9109 is a cross on a shield.
|
553
|
+
(Note: may be controversial in Islamic and Jewish cultures)
|
554
|
+
</desc>
|
555
|
+
</e>
|
556
|
+
<e docomo="E667" glyphRefID="220" google="FE4B5" id="4B5" img_from="softbank" kddi="E4AA" name="BANK" softbank="E14D" unicode="+1F3E6">
|
557
|
+
<desc>may contain "BK" or "Bank" letters; related to ⛻ U+26FB = ARIB-9144</desc>
|
558
|
+
</e>
|
559
|
+
<e docomo="E668" glyphRefID="221" google="FE4B6" id="4B6" img_from="docomo" kddi="E4A3" name="AUTOMATED TELLER MACHINE" oldname="ATM" softbank="E154" unicode="+1F3E7">
|
560
|
+
<ann>= ATM</ann>
|
561
|
+
</e>
|
562
|
+
<e docomo="E669" glyphRefID="222" google="FE4B7" id="4B7" img_from="docomo" kddi="EA81" name="HOTEL" softbank="E158" unicode="+1F3E8">
|
563
|
+
<desc>a building with "H"; related to U+1F157 = ARIB-9129</desc>
|
564
|
+
</e>
|
565
|
+
<e docomo=">E669+E6EF" glyphRefID="223" google="FE4B8" id="4B8" img_from="kddi" kddi="EAF3" name="LOVE HOTEL" softbank="E501" unicode="+1F3E9">
|
566
|
+
<desc>Note: usually Japanese love hotel</desc>
|
567
|
+
</e>
|
568
|
+
<e docomo="E66A" glyphRefID="224" google="FE4B9" id="4B9" img_from="kddi" kddi="E4A4" name="CONVENIENCE STORE" softbank="E156" unicode="+1F3EA">
|
569
|
+
<desc>Convenience Store (stylized "24" to indicate 24 hours)</desc>
|
570
|
+
</e>
|
571
|
+
<e docomo="E73E" glyphRefID="225" google="FE4BA" id="4BA" img_from="docomo" kddi="EA80" name="SCHOOL" softbank="E157" unicode="+1F3EB">
|
572
|
+
<desc>related to U+3246 = ARIB-9110</desc>
|
573
|
+
</e>
|
574
|
+
<e glyphRefID="226" google="FE4BB" id="4BB" img_from="softbank" kddi="E5BB" name="CHURCH" softbank="E037" text_fallback="[教会]" unicode="*26EA"/>
|
575
|
+
<e glyphRefID="227" google="FE4BC" id="4BC" kddi="E5CF" name="FOUNTAIN" softbank="E121" text_fallback="[噴水]" unicode="*26F2"/>
|
576
|
+
<e glyphRefID="228" google="FE4BD" id="4BD" img_from="kddi" kddi="EAF6" name="DEPARTMENT STORE" softbank="E504" text_fallback="[デパート]" unicode="+1F3EC"/>
|
577
|
+
<e glyphRefID="229" google="FE4BE" id="4BE" img_from="kddi" kddi="EAF7" name="JAPANESE CASTLE" softbank="E505" text_fallback="[城]" unicode="+1F3EF"/>
|
578
|
+
<e glyphRefID="230" google="FE4BF" id="4BF" img_from="kddi" kddi="EAF8" name="EUROPEAN CASTLE" oldname="WESTERN CASTLE" softbank="E506" text_fallback="[城]" unicode="+1F3F0"/>
|
579
|
+
<e glyphRefID="231" google="FE4C0" id="4C0" img_from="softbank" kddi="EAF9" name="FACTORY" softbank="E508" text_fallback="[工場]" unicode="+1F3ED">
|
580
|
+
<ann>= industrial production site</ann>
|
581
|
+
<ann>= date of production</ann>
|
582
|
+
</e>
|
583
|
+
<e docomo=">E661" google="FE4C1" id="4C1" kddi="E4A9" name="ANCHOR" softbank=">E202" unicode="2693">
|
584
|
+
<desc>nautical term, harbor (on maps)</desc>
|
585
|
+
</e>
|
586
|
+
<e docomo=">E74B" glyphRefID="232" google="FE4C2" id="4C2" img_from="kddi" kddi="E4BD" name="IZAKAYA LANTERN" softbank=">E30B" unicode="+1F3EE">
|
587
|
+
<ann>= japanese izakaya restaurant</ann>
|
588
|
+
<desc>Japanese izakaya restaurant for drinking, characteristic red lantern</desc>
|
589
|
+
</e>
|
590
|
+
</subcategory>
|
591
|
+
<subcategory name="Cultural symbols">
|
592
|
+
<e docomo="E740" glyphRefID="233" google="FE4C3" id="4C3" img_from="docomo" kddi="E5BD" name="MOUNT FUJI" oldname="EMOJI COMPATIBILITY SYMBOL-1" softbank="E03B" unicode="+1F5FB"/>
|
593
|
+
<e glyphRefID="234" google="FE4C4" id="4C4" img_from="softbank" kddi="E4C0" name="TOKYO TOWER" oldname="EMOJI COMPATIBILITY SYMBOL-2" softbank="E509" text_fallback="[東京タワー]" unicode="+1F5FC"/>
|
594
|
+
<e glyphRefID="235" google="FE4C6" id="4C6" img_from="softbank" name="STATUE OF LIBERTY" oldname="EMOJI COMPATIBILITY SYMBOL-3" softbank="E51D" text_fallback="[自由の女神]" unicode="+1F5FD"/>
|
595
|
+
<e glyphRefID="236" google="FE4C7" id="4C7" img_from="kddi" kddi="E572" name="SILHOUETTE OF JAPAN" oldname="EMOJI COMPATIBILITY SYMBOL-4" text_fallback="[日本地図]" unicode="+1F5FE"/>
|
596
|
+
<e glyphRefID="237" google="FE4C8" id="4C8" img_from="kddi" kddi="EB6C" name="MOYAI" oldname="EMOJI COMPATIBILITY SYMBOL-5" text_fallback="[モアイ]" unicode="+1F5FF">
|
597
|
+
<ann>* Japanese stone statue like Moai on Easter Island</ann>
|
598
|
+
<desc>Japanese stone statue like Moai on Easter Island, famous one in Shibuya, Tokyo</desc>
|
599
|
+
</e>
|
600
|
+
</subcategory>
|
601
|
+
<subcategory name="Clothing and accessories">
|
602
|
+
<e docomo=">E699" glyphRefID="241" google="FE4CC" id="4CC" img_from="kddi" kddi="E5B7" name="MANS SHOE" softbank=">E007" unicode="+1F45E"/>
|
603
|
+
<e docomo="E699" glyphRefID="242" google="FE4CD" id="4CD" img_from="kddi" kddi="EB2B" name="ATHLETIC SHOE" oldname="SNEAKER" softbank="E007" unicode="+1F45F">
|
604
|
+
<ann>= runner, sneaker, tennis shoe</ann>
|
605
|
+
</e>
|
606
|
+
<e docomo="E674" glyphRefID="251" google="FE4D6" id="4D6" img_from="docomo" kddi="E51A" name="HIGH-HEELED SHOE" softbank="E13E" unicode="+1F460"/>
|
607
|
+
<e docomo=">E674" glyphRefID="252" google="FE4D7" id="4D7" img_from="softbank" kddi=">E51A" name="WOMANS SANDAL" softbank="E31A" unicode="+1F461">
|
608
|
+
<desc>woman's sandal with open toe, slipper</desc>
|
609
|
+
</e>
|
610
|
+
<e glyphRefID="253" google="FE4D8" id="4D8" img_from="kddi" kddi="EA9F" name="WOMANS BOOTS" softbank="E31B" text_fallback="[ブーツ]" unicode="+1F462">
|
611
|
+
<desc>usually woman's boots</desc>
|
612
|
+
</e>
|
613
|
+
<e docomo="E698" glyphRefID="376" google="FE553" id="553" img_from="docomo" kddi="EB2A" name="FOOTPRINTS" softbank="E536" unicode="+1F463">
|
614
|
+
<desc>single or multiple footprints</desc>
|
615
|
+
</e>
|
616
|
+
<e docomo="E69A" glyphRefID="243" google="FE4CE" id="4CE" img_from="docomo" kddi="E4FE" name="EYEGLASSES" text_fallback="[メガネ]" unicode="+1F453"/>
|
617
|
+
<e docomo="E70E" glyphRefID="244" google="FE4CF" id="4CF" img_from="docomo" kddi="E5B6" name="T-SHIRT" softbank="E006" unicode="+1F455"/>
|
618
|
+
<e docomo="E711" glyphRefID="245" google="FE4D0" id="4D0" img_from="docomo" kddi="EB77" name="JEANS" text_fallback="[ジーンズ]" unicode="+1F456"/>
|
619
|
+
<e docomo="E71A" glyphRefID="246" google="FE4D1" id="4D1" img_from="kddi" kddi="E5C9" name="CROWN" softbank="E10E" unicode="+1F451">
|
620
|
+
<desc>Not the same as ♕ U+2655 WHITE CHESS KING</desc>
|
621
|
+
</e>
|
622
|
+
<e glyphRefID="248" google="FE4D3" id="4D3" img_from="kddi" kddi="EA93" name="NECKTIE" softbank="E302" text_fallback="[ネクタイ]" unicode="+1F454"/>
|
623
|
+
<e glyphRefID="249" google="FE4D4" id="4D4" img_from="kddi" kddi="EA9E" name="WOMANS HAT" softbank="E318" text_fallback="[帽子]" unicode="+1F452"/>
|
624
|
+
<e glyphRefID="250" google="FE4D5" id="4D5" img_from="kddi" kddi="EB6B" name="DRESS" softbank="E319" text_fallback="[ドレス]" unicode="+1F457"/>
|
625
|
+
<e glyphRefID="254" google="FE4D9" id="4D9" img_from="kddi" kddi="EAA3" name="KIMONO" softbank="E321" text_fallback="[着物]" unicode="+1F458"/>
|
626
|
+
<e glyphRefID="255" google="FE4DA" id="4DA" img_from="kddi" kddi="EAA4" name="BIKINI" softbank="E322" text_fallback="[ビキニ]" unicode="+1F459"/>
|
627
|
+
<e docomo=">E70E" glyphRefID="256" google="FE4DB" id="4DB" img_from="kddi" kddi="E50D" name="WOMANS CLOTHES" softbank=">E006" unicode="+1F45A"/>
|
628
|
+
<e docomo="E70F" glyphRefID="257" google="FE4DC" id="4DC" img_from="docomo" kddi="E504" name="PURSE" text_fallback="[財布]" unicode="+1F45B"/>
|
629
|
+
<e docomo="E682" glyphRefID="277" google="FE4F0" id="4F0" img_from="docomo" kddi="E49C" name="HANDBAG" softbank="E323" unicode="+1F45C"/>
|
630
|
+
<e docomo="E6AD" glyphRefID="278" google="FE4F1" id="4F1" img_from="docomo" name="POUCH" text_fallback="[ふくろ]" unicode="+1F45D"/>
|
631
|
+
</subcategory>
|
632
|
+
<subcategory name="Money symbols">
|
633
|
+
<e docomo="E715" glyphRefID="258" google="FE4DD" id="4DD" img_from="kddi" kddi="E4C7" name="MONEY BAG" softbank="E12F" unicode="+1F4B0">
|
634
|
+
<desc>a bag with a dollar or yen sign</desc>
|
635
|
+
<ann>* glyph may show any currency symbol instead of a dollar sign</ann>
|
636
|
+
</e>
|
637
|
+
<e glyphRefID="259" google="FE4DE" id="4DE" img_from="softbank" name="CURRENCY EXCHANGE" softbank="E149" text_fallback="[$¥]" unicode="+1F4B1">
|
638
|
+
<desc>$ and ¥ signs, exchange rate</desc>
|
639
|
+
</e>
|
640
|
+
<e glyphRefID="260" google="FE4DF" id="4DF" img_from="softbank" kddi="E5DC" name="CHART WITH UPWARDS TREND AND YEN SIGN" oldname="CHART WITH UPWARDS TREND AND YEN SYMBOL" softbank="E14A" text_fallback="[株価]" unicode="+1F4B9">
|
641
|
+
<desc>stock market, stock prices</desc>
|
642
|
+
</e>
|
643
|
+
<e docomo=">E715" glyphRefID="261" google="FE4E0" id="4E0" img_from="kddi" kddi="E579" name="HEAVY DOLLAR SIGN" softbank=">E12F" unicode="+1F4B2">
|
644
|
+
<desc>disunified from $ U+0024 DOLLAR SIGN</desc>
|
645
|
+
</e>
|
646
|
+
<e glyphRefID="262" google="FE4E1" id="4E1" img_from="kddi" kddi="E57C" name="CREDIT CARD" text_fallback="[カード]" unicode="+1F4B3"/>
|
647
|
+
<e docomo="E6D6" glyphRefID="263" google="FE4E2" id="4E2" img_from="kddi" kddi="E57D" name="BANKNOTE WITH YEN SIGN" text_fallback="¥" unicode="+1F4B4">
|
648
|
+
<desc>a check, a sign indicating "not free"</desc>
|
649
|
+
</e>
|
650
|
+
<e docomo=">E715" glyphRefID="264" google="FE4E3" id="4E3" img_from="kddi" kddi="E585" name="BANKNOTE WITH DOLLAR SIGN" softbank=">E12F" unicode="+1F4B5"/>
|
651
|
+
<e glyphRefID="265" google="FE4E4" id="4E4" img_from="kddi" kddi="EB5B" name="MONEY WITH WINGS" text_fallback="[飛んでいくお金]" unicode="+1F4B8"/>
|
652
|
+
</subcategory>
|
653
|
+
<subcategory name="Regional indicator symbols">
|
654
|
+
<e glyphRefID="689" id="554" name="REGIONAL INDICATOR SYMBOL LETTER A" text_fallback="[A]" unicode="+1F1E6"/>
|
655
|
+
<e glyphRefID="690" id="555" name="REGIONAL INDICATOR SYMBOL LETTER B" text_fallback="[B]" unicode="+1F1E7"/>
|
656
|
+
<e glyphRefID="691" id="556" name="REGIONAL INDICATOR SYMBOL LETTER C" text_fallback="[C]" unicode="+1F1E8"/>
|
657
|
+
<e glyphRefID="692" id="557" name="REGIONAL INDICATOR SYMBOL LETTER D" text_fallback="[D]" unicode="+1F1E9"/>
|
658
|
+
<e glyphRefID="693" id="558" name="REGIONAL INDICATOR SYMBOL LETTER E" text_fallback="[E]" unicode="+1F1EA"/>
|
659
|
+
<e glyphRefID="694" id="559" name="REGIONAL INDICATOR SYMBOL LETTER F" text_fallback="[F]" unicode="+1F1EB"/>
|
660
|
+
<e glyphRefID="695" id="55A" name="REGIONAL INDICATOR SYMBOL LETTER G" text_fallback="[G]" unicode="+1F1EC"/>
|
661
|
+
<e glyphRefID="696" id="55B" name="REGIONAL INDICATOR SYMBOL LETTER H" text_fallback="[H]" unicode="+1F1ED"/>
|
662
|
+
<e glyphRefID="697" id="55C" name="REGIONAL INDICATOR SYMBOL LETTER I" text_fallback="[I]" unicode="+1F1EE"/>
|
663
|
+
<e glyphRefID="698" id="55D" name="REGIONAL INDICATOR SYMBOL LETTER J" text_fallback="[J]" unicode="+1F1EF"/>
|
664
|
+
<e glyphRefID="699" id="55E" name="REGIONAL INDICATOR SYMBOL LETTER K" text_fallback="[K]" unicode="+1F1F0"/>
|
665
|
+
<e glyphRefID="700" id="55F" name="REGIONAL INDICATOR SYMBOL LETTER L" text_fallback="[L]" unicode="+1F1F1"/>
|
666
|
+
<e glyphRefID="701" id="560" name="REGIONAL INDICATOR SYMBOL LETTER M" text_fallback="[M]" unicode="+1F1F2"/>
|
667
|
+
<e glyphRefID="702" id="561" name="REGIONAL INDICATOR SYMBOL LETTER N" text_fallback="[N]" unicode="+1F1F3"/>
|
668
|
+
<e glyphRefID="703" id="562" name="REGIONAL INDICATOR SYMBOL LETTER O" text_fallback="[O]" unicode="+1F1F4"/>
|
669
|
+
<e glyphRefID="704" id="563" name="REGIONAL INDICATOR SYMBOL LETTER P" text_fallback="[P]" unicode="+1F1F5"/>
|
670
|
+
<e glyphRefID="705" id="564" name="REGIONAL INDICATOR SYMBOL LETTER Q" text_fallback="[Q]" unicode="+1F1F6"/>
|
671
|
+
<e glyphRefID="706" id="565" name="REGIONAL INDICATOR SYMBOL LETTER R" text_fallback="[R]" unicode="+1F1F7"/>
|
672
|
+
<e glyphRefID="707" id="566" name="REGIONAL INDICATOR SYMBOL LETTER S" text_fallback="[S]" unicode="+1F1F8"/>
|
673
|
+
<e glyphRefID="708" id="567" name="REGIONAL INDICATOR SYMBOL LETTER T" text_fallback="[T]" unicode="+1F1F9"/>
|
674
|
+
<e glyphRefID="709" id="568" name="REGIONAL INDICATOR SYMBOL LETTER U" text_fallback="[U]" unicode="+1F1FA"/>
|
675
|
+
<e glyphRefID="710" id="569" name="REGIONAL INDICATOR SYMBOL LETTER V" text_fallback="[V]" unicode="+1F1FB"/>
|
676
|
+
<e glyphRefID="711" id="56A" name="REGIONAL INDICATOR SYMBOL LETTER W" text_fallback="[W]" unicode="+1F1FC"/>
|
677
|
+
<e glyphRefID="712" id="56B" name="REGIONAL INDICATOR SYMBOL LETTER X" text_fallback="[X]" unicode="+1F1FD"/>
|
678
|
+
<e glyphRefID="713" id="56C" name="REGIONAL INDICATOR SYMBOL LETTER Y" text_fallback="[Y]" unicode="+1F1FE"/>
|
679
|
+
<e glyphRefID="714" id="56D" name="REGIONAL INDICATOR SYMBOL LETTER Z" text_fallback="[Z]" unicode="+1F1FF"/>
|
680
|
+
<e glyphRefID="274" google="FE4ED" id="4ED" img_from="kddi" kddi="EB11" name="REGIONAL INDICATOR SYMBOL LETTERS CN" softbank="E513" text_fallback="[中国]" unicode="1F1E8+1F1F3">
|
681
|
+
<desc>China</desc>
|
682
|
+
</e>
|
683
|
+
<e glyphRefID="269" google="FE4E8" id="4E8" img_from="kddi" kddi="EB0E" name="REGIONAL INDICATOR SYMBOL LETTERS DE" softbank="E50E" text_fallback="[ドイツ]" unicode="1F1E9+1F1EA">
|
684
|
+
<desc>Germany</desc>
|
685
|
+
</e>
|
686
|
+
<e glyphRefID="272" google="FE4EB" id="4EB" img_from="kddi" kddi="E5D5" name="REGIONAL INDICATOR SYMBOL LETTERS ES" softbank="E511" text_fallback="[スペイン]" unicode="1F1EA+1F1F8">
|
687
|
+
<desc>Spain</desc>
|
688
|
+
</e>
|
689
|
+
<e glyphRefID="268" google="FE4E7" id="4E7" img_from="kddi" kddi="EAFA" name="REGIONAL INDICATOR SYMBOL LETTERS FR" softbank="E50D" text_fallback="[フランス]" unicode="1F1EB+1F1F7">
|
690
|
+
<desc>France</desc>
|
691
|
+
</e>
|
692
|
+
<e glyphRefID="271" google="FE4EA" id="4EA" img_from="kddi" kddi="EB10" name="REGIONAL INDICATOR SYMBOL LETTERS GB" softbank="E510" text_fallback="[イギリス]" unicode="1F1FA+1F1F0">
|
693
|
+
<desc>U.K.</desc>
|
694
|
+
</e>
|
695
|
+
<e glyphRefID="270" google="FE4E9" id="4E9" img_from="kddi" kddi="EB0F" name="REGIONAL INDICATOR SYMBOL LETTERS IT" softbank="E50F" text_fallback="[イタリア]" unicode="1F1EE+1F1F9">
|
696
|
+
<desc>Italy</desc>
|
697
|
+
</e>
|
698
|
+
<e glyphRefID="266" google="FE4E5" id="4E5" img_from="kddi" kddi="E4CC" name="REGIONAL INDICATOR SYMBOL LETTERS JP" softbank="E50B" text_fallback="[日の丸]" unicode="1F1EF+1F1F5">
|
699
|
+
<desc>Japan, also a national holiday (in red)</desc>
|
700
|
+
</e>
|
701
|
+
<e glyphRefID="275" google="FE4EE" id="4EE" img_from="kddi" kddi="EB12" name="REGIONAL INDICATOR SYMBOL LETTERS KR" softbank="E514" text_fallback="[韓国]" unicode="1F1F0+1F1F7">
|
702
|
+
<desc>South Korea</desc>
|
703
|
+
</e>
|
704
|
+
<e glyphRefID="273" google="FE4EC" id="4EC" img_from="kddi" kddi="E5D6" name="REGIONAL INDICATOR SYMBOL LETTERS RU" softbank="E512" text_fallback="[ロシア]" unicode="1F1F7+1F1FA">
|
705
|
+
<desc>Russia</desc>
|
706
|
+
</e>
|
707
|
+
<e glyphRefID="267" google="FE4E6" id="4E6" img_from="kddi" kddi="E573" name="REGIONAL INDICATOR SYMBOL LETTERS US" softbank="E50C" text_fallback="[USA]" unicode="1F1FA+1F1F8">
|
708
|
+
<desc>U.S.A.</desc>
|
709
|
+
</e>
|
710
|
+
</subcategory>
|
711
|
+
<subcategory name="Tool symbols">
|
712
|
+
<e glyphRefID="283" google="FE4F6" id="4F6" img_from="kddi" kddi="E47B" name="FIRE" softbank="E11D" text_fallback="[炎]" unicode="+1F525"/>
|
713
|
+
<e docomo=">E6FB" glyphRefID="288" google="FE4FB" id="4FB" img_from="kddi" kddi="E583" name="ELECTRIC TORCH" oldname="FLASHLIGHT" text_fallback="[懐中電灯]" unicode="+1F526">
|
714
|
+
<ann>= flashlight</ann>
|
715
|
+
</e>
|
716
|
+
<e docomo="E718" glyphRefID="238" google="FE4C9" id="4C9" img_from="docomo" kddi="E587" name="WRENCH" text_fallback="[レンチ]" unicode="+1F527"/>
|
717
|
+
<e glyphRefID="239" google="FE4CA" id="4CA" img_from="kddi" kddi="E5CB" name="HAMMER" softbank="E116" text_fallback="[ハンマー]" unicode="+1F528">
|
718
|
+
<desc>mallet</desc>
|
719
|
+
</e>
|
720
|
+
<e glyphRefID="240" google="FE4CB" id="4CB" img_from="kddi" kddi="E581" name="NUT AND BOLT" text_fallback="[ネジ]" unicode="+1F529"/>
|
721
|
+
<e glyphRefID="287" google="FE4FA" id="4FA" img_from="kddi" kddi="E57F" name="HOCHO" oldname="KNIFE" text_fallback="[包丁]" unicode="+1F52A">
|
722
|
+
<ann>= Japanese kitchen knife</ann>
|
723
|
+
</e>
|
724
|
+
<e glyphRefID="282" google="FE4F5" id="4F5" img_from="kddi" kddi="E50A" name="PISTOL" softbank="E113" text_fallback="[ピストル]" unicode="+1F52B">
|
725
|
+
<desc>action genre</desc>
|
726
|
+
</e>
|
727
|
+
<e glyphRefID="284" google="FE4F7" id="4F7" img_from="kddi" kddi="EA8F" name="CRYSTAL BALL" softbank=">E23E" text_fallback="[占い]" unicode="+1F52E">
|
728
|
+
<desc>fortune telling, zodiacs</desc>
|
729
|
+
</e>
|
730
|
+
<e glyphRefID="285" google="FE4F8" id="4F8" img_from="softbank" kddi=">EA8F" name="SIX POINTED STAR WITH MIDDLE DOT" softbank="E23E" text_fallback="[占い]" unicode="+1F52F">
|
731
|
+
<desc>zodiacs, fortune telling</desc>
|
732
|
+
</e>
|
733
|
+
<e glyphRefID="51" google="FE044" id="044" img_from="kddi" kddi="E480" name="JAPANESE SYMBOL FOR BEGINNER" softbank="E209" text_fallback="[若葉マーク]" unicode="+1F530">
|
734
|
+
<desc>(In Japan) Known as the "wakaba" mark - young/green-yellow leaf. Originally referred to a newly licensed driver. Now it refers to any neophyte.</desc>
|
735
|
+
</e>
|
736
|
+
<e docomo=">E71A" glyphRefID="247" google="FE4D2" id="4D2" img_from="softbank" kddi=">E5C9" name="TRIDENT EMBLEM" softbank="E031" unicode="+1F531"/>
|
737
|
+
</subcategory>
|
738
|
+
<subcategory name="Medical symbols">
|
739
|
+
<e glyphRefID="302" google="FE509" id="509" img_from="kddi" kddi="E510" name="SYRINGE" softbank="E13B" text_fallback="[注射]" unicode="+1F489">
|
740
|
+
<desc>with blood</desc>
|
741
|
+
</e>
|
742
|
+
<e glyphRefID="303" google="FE50A" id="50A" img_from="kddi" kddi="EA9A" name="PILL" softbank="E30F" text_fallback="[薬]" unicode="+1F48A">
|
743
|
+
<desc>The carrier Emoji shows a capsule but the name is simply "medicine". So a more generic name is given. Also used for cold medicine.</desc>
|
744
|
+
</e>
|
745
|
+
</subcategory>
|
746
|
+
<subcategory name="White on black squared Latin letters">
|
747
|
+
<e glyphRefID="304" google="FE50B" id="50B" img_from="kddi" kddi="EB26" name="NEGATIVE SQUARED LATIN CAPITAL LETTER A" softbank="E532" text_fallback="[A]" unicode="+1F170">
|
748
|
+
<ann>= blood type A</ann>
|
749
|
+
</e>
|
750
|
+
<e glyphRefID="305" google="FE50C" id="50C" img_from="kddi" kddi="EB27" name="NEGATIVE SQUARED LATIN CAPITAL LETTER B" softbank="E533" text_fallback="[B]" unicode="+1F171">
|
751
|
+
<ann>= blood type B</ann>
|
752
|
+
</e>
|
753
|
+
<e glyphRefID="306" google="FE50D" id="50D" img_from="kddi" kddi="EB29" name="NEGATIVE SQUARED AB" softbank="E534" text_fallback="[AB]" unicode="+1F18E">
|
754
|
+
<ann>= blood type AB</ann>
|
755
|
+
</e>
|
756
|
+
<e glyphRefID="307" google="FE50E" id="50E" img_from="kddi" kddi="EB28" name="NEGATIVE SQUARED LATIN CAPITAL LETTER O" softbank="E535" text_fallback="[O]" unicode="+1F17E">
|
757
|
+
<ann>= blood type O</ann>
|
758
|
+
</e>
|
759
|
+
</subcategory>
|
760
|
+
<subcategory name="Celebration symbols">
|
761
|
+
<e docomo="E684" glyphRefID="308" google="FE50F" id="50F" img_from="docomo" kddi="E59F" name="RIBBON" softbank="E314" unicode="+1F380"/>
|
762
|
+
<e docomo="E685" glyphRefID="309" google="FE510" id="510" img_from="docomo" kddi="E4CF" name="WRAPPED PRESENT" softbank="E112" unicode="+1F381">
|
763
|
+
<ann>x (package - 1F4E6)</ann>
|
764
|
+
</e>
|
765
|
+
<e docomo="E686" glyphRefID="310" google="FE511" id="511" img_from="kddi" kddi="E5A0" name="BIRTHDAY CAKE" softbank="E34B" unicode="+1F382">
|
766
|
+
<desc>birthday</desc>
|
767
|
+
</e>
|
768
|
+
<e docomo="E6A4" glyphRefID="311" google="FE512" id="512" img_from="kddi" kddi="E4C9" name="CHRISTMAS TREE" softbank="E033" unicode="+1F384"/>
|
769
|
+
<e glyphRefID="312" google="FE513" id="513" img_from="kddi" kddi="EAF0" name="FATHER CHRISTMAS" oldname="SANTA CLAUS" softbank="E448" text_fallback="[サンタ]" unicode="+1F385">
|
770
|
+
<ann>= Santa Claus</ann>
|
771
|
+
</e>
|
772
|
+
<e glyphRefID="313" google="FE514" id="514" img_from="kddi" kddi="E5D9" name="CROSSED FLAGS" softbank="E143" text_fallback="[祝日]" unicode="+1F38C">
|
773
|
+
<ann>* Japanese national holiday</ann>
|
774
|
+
</e>
|
775
|
+
<e glyphRefID="314" google="FE515" id="515" img_from="kddi" kddi="E5CC" name="FIREWORKS" softbank="E117" text_fallback="[花火]" unicode="+1F386"/>
|
776
|
+
<e glyphRefID="315" google="FE516" id="516" img_from="kddi" kddi="EA9B" name="BALLOON" softbank="E310" text_fallback="[風船]" unicode="+1F388"/>
|
777
|
+
<e glyphRefID="316" google="FE517" id="517" img_from="kddi" kddi="EA9C" name="PARTY POPPER" softbank="E312" text_fallback="[クラッカー]" unicode="+1F389"/>
|
778
|
+
<e glyphRefID="317" google="FE518" id="518" img_from="kddi" kddi="EAE3" name="PINE DECORATION" softbank="E436" text_fallback="[門松]" unicode="+1F38D">
|
779
|
+
<ann>* Japanese new year's door decoration</ann>
|
780
|
+
<desc>(門松)</desc>
|
781
|
+
</e>
|
782
|
+
<e glyphRefID="318" google="FE519" id="519" img_from="kddi" kddi="EAE4" name="JAPANESE DOLLS" oldname="GIRLS DOLL FESTIVAL" softbank="E438" text_fallback="[ひな祭り]" unicode="+1F38E">
|
783
|
+
<desc>雛祭り: Japanese Hinamatsuri</desc>
|
784
|
+
<ann>* Japanese Hinamatsuri or girls' doll festival</ann>
|
785
|
+
</e>
|
786
|
+
<e glyphRefID="319" google="FE51A" id="51A" img_from="kddi" kddi="EAE5" name="GRADUATION CAP" softbank="E439" text_fallback="[卒業式]" unicode="+1F393">
|
787
|
+
<ann>* graduation ceremony</ann>
|
788
|
+
</e>
|
789
|
+
<e glyphRefID="320" google="FE51B" id="51B" img_from="kddi" kddi="EAE6" name="SCHOOL SATCHEL" softbank="E43A" text_fallback="[ランドセル]" unicode="+1F392">
|
790
|
+
<ann>* Japanese school entrance ceremony</ann>
|
791
|
+
</e>
|
792
|
+
<e glyphRefID="321" google="FE51C" id="51C" img_from="kddi" kddi="EAE7" name="CARP STREAMER" softbank="E43B" text_fallback="[こいのぼり]" unicode="+1F38F"/>
|
793
|
+
<e glyphRefID="322" google="FE51D" id="51D" img_from="kddi" kddi="EAEB" name="FIREWORK SPARKLER" softbank="E440" text_fallback="[線香花火]" unicode="+1F387">
|
794
|
+
<ann>* long, stick-like firework that looks like a burning incense stick</ann>
|
795
|
+
<desc>"Senkoo Hanabi" in Japanese</desc>
|
796
|
+
</e>
|
797
|
+
<e glyphRefID="323" google="FE51E" id="51E" img_from="kddi" kddi="EAED" name="WIND CHIME" softbank="E442" text_fallback="[風鈴]" unicode="+1F390">
|
798
|
+
<desc>Wind chime, wind bell (風鈴)</desc>
|
799
|
+
</e>
|
800
|
+
<e glyphRefID="324" google="FE51F" id="51F" img_from="kddi" kddi="EAEE" name="JACK-O-LANTERN" oldname="JACK O LANTERN" softbank="E445" text_fallback="[ハロウィン]" unicode="+1F383">
|
801
|
+
<ann>= Hallowe'en</ann>
|
802
|
+
</e>
|
803
|
+
<e glyphRefID="325" google="FE520" id="520" img_from="kddi" kddi="E46F" name="CONFETTI BALL" text_fallback="[オメデトウ]" unicode="+1F38A">
|
804
|
+
<ann>= congratulations</ann>
|
805
|
+
<desc>Ornamental bag or decorative ball that opens up. Sometimes used to express "Congratulations!"</desc>
|
806
|
+
</e>
|
807
|
+
<e glyphRefID="326" google="FE521" id="521" img_from="kddi" kddi="EB3D" name="TANABATA TREE" text_fallback="[七夕]" unicode="+1F38B">
|
808
|
+
<ann>= tanabata tree with wishing papers</ann>
|
809
|
+
<desc>(七夕笹飾り)</desc>
|
810
|
+
</e>
|
811
|
+
<e glyphRefID="20" google="FE017" id="017" img_from="kddi" kddi="EAEF" name="MOON VIEWING CEREMONY" softbank="E446" text_fallback="[お月見]" unicode="+1F391">
|
812
|
+
<desc>Moon viewing (お月見)</desc>
|
813
|
+
<ann>* Japanese Otsukimi harvest celebration</ann>
|
814
|
+
</e>
|
815
|
+
</subcategory>
|
816
|
+
<subcategory name="Communication symbols">
|
817
|
+
<e docomo="E65A" glyphRefID="327" google="FE522" id="522" img_from="docomo" kddi="E59B" name="PAGER" text_fallback="[ポケベル]" unicode="+1F4DF"/>
|
818
|
+
<e docomo="E687" google="FE523" id="523" kddi="E596" name="BLACK TELEPHONE" softbank="E009" unicode="260E"/>
|
819
|
+
<e docomo=">E687" glyphRefID="328" google="FE524" id="524" img_from="kddi" kddi="E51E" name="TELEPHONE RECEIVER" softbank=">E009" unicode="+1F4DE"/>
|
820
|
+
<e docomo="E688" glyphRefID="329" google="FE525" id="525" img_from="docomo" kddi="E588" name="MOBILE PHONE" softbank="E00A" unicode="+1F4F1"/>
|
821
|
+
<e docomo="E6CE" glyphRefID="330" google="FE526" id="526" img_from="docomo" kddi="EB08" name="MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT" oldname="PHONE WITH ARROW" softbank="E104" unicode="+1F4F2">
|
822
|
+
<ann>* making a phone call</ann>
|
823
|
+
</e>
|
824
|
+
<e docomo="E689" glyphRefID="331" google="FE527" id="527" img_from="docomo" kddi="EA92" name="MEMO" softbank="E301" unicode="+1F4DD"/>
|
825
|
+
<e docomo="E6D0" glyphRefID="332" google="FE528" id="528" img_from="kddi" kddi="E520" name="FAX MACHINE" oldname="FAX" softbank="E00B" unicode="+1F4E0"/>
|
826
|
+
<e docomo="E6D3" google="FE529" id="529" kddi="E521" name="ENVELOPE" softbank=">E103" unicode="2709">
|
827
|
+
<desc>mail</desc>
|
828
|
+
</e>
|
829
|
+
<e docomo=">E6CF" glyphRefID="333" google="FE52A" id="52A" img_from="kddi" kddi="E591" name="INCOMING ENVELOPE" softbank=">E103" unicode="+1F4E8">
|
830
|
+
<ann>x (envelope - 2709)</ann>
|
831
|
+
<desc>Mail (with cartoon movement marks). Might be allocated in the U+27xx Dingbats block with U+2709 ENVELOPE.</desc>
|
832
|
+
</e>
|
833
|
+
<e docomo="E6CF" glyphRefID="334" google="FE52B" id="52B" img_from="docomo" kddi="EB62" name="ENVELOPE WITH DOWNWARDS ARROW ABOVE" oldname="ENVELOPE WITH ARROW" softbank="E103" unicode="+1F4E9">
|
834
|
+
<ann>* sending mail</ann>
|
835
|
+
<desc>Might be allocated in the U+27xx Dingbats block with U+2709 ENVELOPE.</desc>
|
836
|
+
</e>
|
837
|
+
<e docomo=">E665" glyphRefID="335" google="FE52C" id="52C" img_from="kddi" kddi="E51B" name="CLOSED MAILBOX WITH LOWERED FLAG" softbank=">E101" unicode="+1F4EA">
|
838
|
+
<ann>= letter box, mail reception</ann>
|
839
|
+
<ann>= empty mailbox</ann>
|
840
|
+
</e>
|
841
|
+
<e docomo=">E665" glyphRefID="336" google="FE52D" id="52D" img_from="kddi" kddi="EB0A" name="CLOSED MAILBOX WITH RAISED FLAG" softbank="E101" unicode="+1F4EB">
|
842
|
+
<ann>= mailbox containing mail</ann>
|
843
|
+
</e>
|
844
|
+
<e docomo=">E665" glyphRefID="337" google="FE52E" id="52E" img_from="softbank" kddi=">E51B" name="POSTBOX" softbank="E102" unicode="+1F4EE">
|
845
|
+
<ann>= mailbox for sending mail</ann>
|
846
|
+
</e>
|
847
|
+
<e glyphRefID="452" google="FE822" id="822" img_from="kddi" kddi="E58B" name="NEWSPAPER" text_fallback="[新聞]" unicode="+1F4F0"/>
|
848
|
+
<e glyphRefID="338" google="FE52F" id="52F" img_from="softbank" kddi=">E511" name="PUBLIC ADDRESS LOUDSPEAKER" softbank="E142" text_fallback="[スピーカ]" unicode="+1F4E2">
|
849
|
+
<desc>used for sound volume, notification</desc>
|
850
|
+
</e>
|
851
|
+
<e glyphRefID="339" google="FE530" id="530" img_from="softbank" kddi=">E511" name="CHEERING MEGAPHONE" softbank="E317" text_fallback="[メガホン]" unicode="+1F4E3">
|
852
|
+
<desc>also used for a general megaphone</desc>
|
853
|
+
</e>
|
854
|
+
<e glyphRefID="340" google="FE531" id="531" img_from="kddi" kddi="E4A8" name="SATELLITE ANTENNA" softbank="E14B" text_fallback="[アンテナ]" unicode="+1F4E1">
|
855
|
+
<ann>= position indicator, news</ann>
|
856
|
+
</e>
|
857
|
+
<e glyphRefID="342" google="FE533" id="533" img_from="kddi" kddi="E592" name="OUTBOX TRAY" text_fallback="[送信BOX]" unicode="+1F4E4"/>
|
858
|
+
<e glyphRefID="343" google="FE534" id="534" img_from="kddi" kddi="E593" name="INBOX TRAY" text_fallback="[受信BOX]" unicode="+1F4E5"/>
|
859
|
+
<e docomo=">E685" glyphRefID="344" google="FE535" id="535" img_from="kddi" kddi="E51F" name="PACKAGE" softbank=">E112" unicode="+1F4E6">
|
860
|
+
<ann>x (wrapped present - 1F381)</ann>
|
861
|
+
</e>
|
862
|
+
<e docomo=">E6D3" glyphRefID="607" google="FEB92" id="B92" img_from="kddi" kddi="EB71" name="E-MAIL SYMBOL" softbank=">E103" unicode="+1F4E7">
|
863
|
+
<desc>Email (Envelope with "E")</desc>
|
864
|
+
<ann>* glyph may show an @-sign instead of an E</ann>
|
865
|
+
</e>
|
866
|
+
</subcategory>
|
867
|
+
<subcategory name="UI input status symbols">
|
868
|
+
<e glyphRefID="345" google="FEB7C" id="B7C" img_from="kddi" kddi="EAFD" name="INPUT SYMBOL FOR LATIN CAPITAL LETTERS" oldname="LATIN CAPITAL LETTERS INPUT SYMBOL" text_fallback="[ABCD]" unicode="+1F520">
|
869
|
+
<desc>Letters (ABCD, uppercase)</desc>
|
870
|
+
</e>
|
871
|
+
<e glyphRefID="346" google="FEB7D" id="B7D" img_from="kddi" kddi="EAFE" name="INPUT SYMBOL FOR LATIN SMALL LETTERS" oldname="LATIN SMALL LETTERS INPUT SYMBOL" text_fallback="[abcd]" unicode="+1F521">
|
872
|
+
<desc>Letters (abcd, lowercase)</desc>
|
873
|
+
</e>
|
874
|
+
<e glyphRefID="347" google="FEB7E" id="B7E" img_from="kddi" kddi="EAFF" name="INPUT SYMBOL FOR NUMBERS" oldname="NUMBERS INPUT SYMBOL" text_fallback="[1234]" unicode="+1F522">
|
875
|
+
<desc>Numbers (1234)</desc>
|
876
|
+
</e>
|
877
|
+
<e glyphRefID="348" google="FEB7F" id="B7F" img_from="kddi" kddi="EB00" name="INPUT SYMBOL FOR SYMBOLS" oldname="SYMBOLS INPUT SYMBOL" text_fallback="[記号]" unicode="+1F523">
|
878
|
+
<desc>Symbols (〒, ♪, @, %)</desc>
|
879
|
+
</e>
|
880
|
+
<e glyphRefID="349" google="FEB80" id="B80" img_from="kddi" kddi="EB55" name="INPUT SYMBOL FOR LATIN LETTERS" oldname="LATIN LETTERS INPUT SYMBOL" text_fallback="[ABC]" unicode="+1F524">
|
881
|
+
<ann>= English input (ABC)</ann>
|
882
|
+
<desc>English (ABC)</desc>
|
883
|
+
</e>
|
884
|
+
</subcategory>
|
885
|
+
<subcategory name="Office symbols">
|
886
|
+
<e docomo="E6AE" google="FE536" id="536" kddi="EB03" name="BLACK NIB" text_fallback="[ペン]" unicode="2712">
|
887
|
+
<desc>editing, Docomo has WHITE NIB.</desc>
|
888
|
+
</e>
|
889
|
+
<e docomo="E6B2" glyphRefID="350" google="FE537" id="537" img_from="docomo" name="SEAT" softbank="E11F" text_fallback="[いす]" unicode="+1F4BA">
|
890
|
+
<design>the glyph should look more like SoftBank #264</design>
|
891
|
+
</e>
|
892
|
+
<e docomo="E716" glyphRefID="351" google="FE538" id="538" img_from="docomo" kddi="E5B8" name="PERSONAL COMPUTER" softbank="E00C" unicode="+1F4BB"/>
|
893
|
+
<e docomo="E719" google="FE539" id="539" kddi="E4A1" name="PENCIL" softbank=">E301" unicode="270F">
|
894
|
+
<desc>Note: pencil directions are varied among Japanese carriers, could be solid or white</desc>
|
895
|
+
</e>
|
896
|
+
<e docomo="E730" glyphRefID="352" google="FE53A" id="53A" img_from="docomo" kddi="E4A0" name="PAPERCLIP" text_fallback="[クリップ]" unicode="+1F4CE"/>
|
897
|
+
<e docomo=">E682" glyphRefID="353" google="FE53B" id="53B" img_from="kddi" kddi="E5CE" name="BRIEFCASE" softbank="E11E" unicode="+1F4BC"/>
|
898
|
+
<e glyphRefID="354" google="FE53C" id="53C" img_from="kddi" kddi="E582" name="MINIDISC" oldname="MINI DISC" softbank="E316" text_fallback="[MD]" unicode="+1F4BD">
|
899
|
+
<desc>MD mini disc</desc>
|
900
|
+
</e>
|
901
|
+
<e glyphRefID="355" google="FE53D" id="53D" img_from="kddi" kddi="E562" name="FLOPPY DISK" softbank=">E316" text_fallback="[フロッピー]" unicode="+1F4BE">
|
902
|
+
<ann>= floppy disc, floppy, diskette</ann>
|
903
|
+
</e>
|
904
|
+
<e docomo="E68C" glyphRefID="447" google="FE81D" id="81D" img_from="docomo" kddi="E50C" name="OPTICAL DISC" oldname="OPTICAL DISK" softbank="E126" unicode="+1F4BF"/>
|
905
|
+
<e docomo=">E68C" glyphRefID="448" google="FE81E" id="81E" img_from="softbank" kddi=">E50C" name="DVD" softbank="E127" unicode="+1F4C0">
|
906
|
+
<ann>= digital video/versatile disc</ann>
|
907
|
+
</e>
|
908
|
+
<e docomo="E675" google="FE53E" id="53E" kddi="E516" name="BLACK SCISSORS" softbank="E313" unicode="2702"/>
|
909
|
+
<e glyphRefID="356" google="FE53F" id="53F" img_from="kddi" kddi="E560" name="ROUND PUSHPIN" text_fallback="[画びょう]" unicode="+1F4CD"/>
|
910
|
+
<e docomo=">E689" glyphRefID="357" google="FE540" id="540" img_from="kddi" kddi="E561" name="PAGE WITH CURL" softbank=">E301" unicode="+1F4C3"/>
|
911
|
+
<e docomo=">E689" glyphRefID="358" google="FE541" id="541" img_from="kddi" kddi="E569" name="PAGE FACING UP" softbank=">E301" unicode="+1F4C4"/>
|
912
|
+
<e glyphRefID="359" google="FE542" id="542" img_from="kddi" kddi="E563" name="CALENDAR" text_fallback="[カレンダー]" unicode="+1F4C5"/>
|
913
|
+
<e glyphRefID="360" google="FE543" id="543" img_from="kddi" kddi="E58F" name="FILE FOLDER" text_fallback="[フォルダ]" unicode="+1F4C1">
|
914
|
+
<desc>closed folder</desc>
|
915
|
+
</e>
|
916
|
+
<e glyphRefID="361" google="FE544" id="544" img_from="kddi" kddi="E590" name="OPEN FILE FOLDER" text_fallback="[フォルダ]" unicode="+1F4C2">
|
917
|
+
<desc>open folder</desc>
|
918
|
+
</e>
|
919
|
+
<e docomo=">E683" glyphRefID="362" google="FE545" id="545" img_from="kddi" kddi="E56B" name="NOTEBOOK" softbank=">E148" unicode="+1F4D3"/>
|
920
|
+
<e docomo="E683" glyphRefID="363" google="FE546" id="546" img_from="kddi" kddi="E49F" name="OPEN BOOK" softbank="E148" unicode="+1F4D6">
|
921
|
+
<desc>open book, open notebook</desc>
|
922
|
+
<ann>= read operator's manual</ann>
|
923
|
+
<ann>* similar to ISO/IEC 7000-0790 "Read operator's manual"</ann>
|
924
|
+
</e>
|
925
|
+
<e docomo=">E683" glyphRefID="364" google="FE547" id="547" img_from="kddi" kddi="E49D" name="NOTEBOOK WITH DECORATIVE COVER" softbank=">E148" unicode="+1F4D4"/>
|
926
|
+
<e docomo=">E683" glyphRefID="295" google="FE502" id="502" img_from="kddi" kddi="E568" name="CLOSED BOOK" oldname="VERTICAL CLOSED BOOK" softbank=">E148" unicode="+1F4D5">
|
927
|
+
<desc>vertical closed book</desc>
|
928
|
+
</e>
|
929
|
+
<e docomo=">E683" glyphRefID="292" google="FE4FF" id="4FF" img_from="kddi" kddi="E565" name="GREEN BOOK" oldname="BOOK-1" softbank=">E148" unicode="+1F4D7">
|
930
|
+
<desc>green colored book (closed)</desc>
|
931
|
+
</e>
|
932
|
+
<e docomo=">E683" glyphRefID="293" google="FE500" id="500" img_from="kddi" kddi="E566" name="BLUE BOOK" oldname="BOOK-2" softbank=">E148" unicode="+1F4D8">
|
933
|
+
<desc>blue colored book (closed)</desc>
|
934
|
+
</e>
|
935
|
+
<e docomo=">E683" glyphRefID="294" google="FE501" id="501" img_from="kddi" kddi="E567" name="ORANGE BOOK" oldname="BOOK-3" softbank=">E148" unicode="+1F4D9">
|
936
|
+
<desc>orange colored book (closed)</desc>
|
937
|
+
</e>
|
938
|
+
<e docomo=">E683" glyphRefID="296" google="FE503" id="503" img_from="kddi" kddi="E56F" name="BOOKS" softbank=">E148" unicode="+1F4DA">
|
939
|
+
<desc>multiple, a stack of books</desc>
|
940
|
+
</e>
|
941
|
+
<e glyphRefID="297" google="FE504" id="504" img_from="kddi" kddi="E51D" name="NAME BADGE" text_fallback="[名札]" unicode="+1F4DB"/>
|
942
|
+
<e docomo=">E70A" glyphRefID="290" google="FE4FD" id="4FD" img_from="kddi" kddi="E55F" name="SCROLL" text_fallback="[スクロール]" unicode="+1F4DC">
|
943
|
+
<desc>scroll a window on a computer</desc>
|
944
|
+
</e>
|
945
|
+
<e docomo=">E689" glyphRefID="365" google="FE548" id="548" img_from="kddi" kddi="E564" name="CLIPBOARD" softbank=">E301" unicode="+1F4CB"/>
|
946
|
+
<e glyphRefID="366" google="FE549" id="549" img_from="kddi" kddi="E56A" name="TEAR-OFF CALENDAR" oldname="TEAR OFF CALENDAR" text_fallback="[カレンダー]" unicode="+1F4C6"/>
|
947
|
+
<e glyphRefID="367" google="FE54A" id="54A" img_from="kddi" kddi="E574" name="BAR CHART" softbank=">E14A" text_fallback="[グラフ]" unicode="+1F4CA">
|
948
|
+
<desc>bar graph</desc>
|
949
|
+
</e>
|
950
|
+
<e glyphRefID="368" google="FE54B" id="54B" img_from="kddi" kddi="E575" name="CHART WITH UPWARDS TREND" softbank=">E14A" text_fallback="[グラフ]" unicode="+1F4C8"/>
|
951
|
+
<e glyphRefID="369" google="FE54C" id="54C" img_from="kddi" kddi="E576" name="CHART WITH DOWNWARDS TREND" text_fallback="[グラフ]" unicode="+1F4C9"/>
|
952
|
+
<e docomo=">E683" glyphRefID="370" google="FE54D" id="54D" img_from="kddi" kddi="E56C" name="CARD INDEX" softbank=">E148" unicode="+1F4C7"/>
|
953
|
+
<e glyphRefID="371" google="FE54E" id="54E" img_from="kddi" kddi="E56D" name="PUSHPIN" text_fallback="[画びょう]" unicode="+1F4CC"/>
|
954
|
+
<e docomo=">E683" glyphRefID="372" google="FE54F" id="54F" img_from="kddi" kddi="E56E" name="LEDGER" softbank=">E148" unicode="+1F4D2">
|
955
|
+
<desc>real estate original record book, financial books,</desc>
|
956
|
+
</e>
|
957
|
+
<e glyphRefID="373" google="FE550" id="550" img_from="kddi" kddi="E570" name="STRAIGHT RULER" text_fallback="[定規]" unicode="+1F4CF"/>
|
958
|
+
<e glyphRefID="374" google="FE551" id="551" img_from="kddi" kddi="E4A2" name="TRIANGULAR RULER" text_fallback="[三角定規]" unicode="+1F4D0"/>
|
959
|
+
<e docomo=">E689" glyphRefID="375" google="FE552" id="552" img_from="kddi" kddi="EB0B" name="BOOKMARK TABS" softbank=">E301" unicode="+1F4D1"/>
|
960
|
+
</subcategory>
|
961
|
+
</category>
|
962
|
+
<category name="5. Activities/Work/Entertainment">
|
963
|
+
<subcategory name="Sport symbols">
|
964
|
+
<e docomo="E652" glyphRefID="377" google="FE7D0" id="7D0" img_from="docomo" name="RUNNING SHIRT WITH SASH" unicode="+1F3BD">
|
965
|
+
<desc>any sports; a sash across a running shirt to identify runner's number and team</desc>
|
966
|
+
</e>
|
967
|
+
<e docomo="E653" google="FE7D1" id="7D1" img_from="docomo" kddi="E4BA" name="BASEBALL" softbank="E016" unicode="*26BE"/>
|
968
|
+
<e docomo="E654" glyphRefID="378" google="FE7D2" id="7D2" img_from="kddi" kddi="E599" name="FLAG IN HOLE" softbank="E014" unicode="*26F3">
|
969
|
+
<desc>Unified with U+26F3 = ARIB-9126; Amd 6 and Unicode 5.2. Golf (DoCoMo is golf club, others are the green and flag).</desc>
|
970
|
+
</e>
|
971
|
+
<e docomo="E655" glyphRefID="379" google="FE7D3" id="7D3" img_from="docomo" kddi="E4B7" name="TENNIS RACQUET AND BALL" oldname="TENNIS" softbank="E015" unicode="+1F3BE">
|
972
|
+
<desc>racket and ball, or player</desc>
|
973
|
+
<ann>= tennis</ann>
|
974
|
+
</e>
|
975
|
+
<e docomo="E656" google="FE7D4" id="7D4" img_from="docomo" kddi="E4B6" name="SOCCER BALL" softbank="E018" unicode="*26BD">
|
976
|
+
<desc>soccer ball, or player</desc>
|
977
|
+
</e>
|
978
|
+
<e docomo="E657" glyphRefID="622" google="FE7D5" id="7D5" img_from="kddi" kddi="EAAC" name="SKI AND SKI BOOT" oldname="SKIING" softbank="E013" unicode="+1F3BF">
|
979
|
+
<ann>= skiing</ann>
|
980
|
+
<ann>x (skier - 26F7)</ann>
|
981
|
+
<desc>ski and boots, or ski and poles. disunified from U+26F7 (ARIB-9138: SKIER) because U+26F7 is a person on a ski while all 3 carriers have a boot on a ski.</desc>
|
982
|
+
</e>
|
983
|
+
<e docomo="E658" glyphRefID="380" google="FE7D6" id="7D6" img_from="docomo" kddi="E59A" name="BASKETBALL AND HOOP" oldname="BASKETBALL" softbank="E42A" unicode="+1F3C0">
|
984
|
+
<desc>ball and hoop</desc>
|
985
|
+
<ann>= basketball</ann>
|
986
|
+
</e>
|
987
|
+
<e docomo="E659" glyphRefID="381" google="FE7D7" id="7D7" img_from="kddi" kddi="E4B9" name="CHEQUERED FLAG" oldname="CHECKERED FLAG" softbank="E132" unicode="+1F3C1">
|
988
|
+
<ann>= motor sports</ann>
|
989
|
+
<desc>motor sports, goal</desc>
|
990
|
+
</e>
|
991
|
+
<e docomo="E712" glyphRefID="382" google="FE7D8" id="7D8" img_from="docomo" kddi="E4B8" name="SNOWBOARDER" text_fallback="[スノボ]" unicode="+1F3C2">
|
992
|
+
<desc>snow boarding</desc>
|
993
|
+
</e>
|
994
|
+
<e docomo="E733" glyphRefID="383" google="FE7D9" id="7D9" img_from="kddi" kddi="E46B" name="RUNNER" softbank="E115" unicode="+1F3C3">
|
995
|
+
<ann>= running, marathon, track and fields</ann>
|
996
|
+
</e>
|
997
|
+
<e docomo=">E712" glyphRefID="384" google="FE7DA" id="7DA" img_from="kddi" kddi="EB41" name="SURFER" softbank="E017" unicode="+1F3C4">
|
998
|
+
<ann>= surfing</ann>
|
999
|
+
</e>
|
1000
|
+
<e glyphRefID="385" google="FE7DB" id="7DB" img_from="kddi" kddi="E5D3" name="TROPHY" softbank="E131" text_fallback="[トロフィー]" unicode="+1F3C6">
|
1001
|
+
<desc>a gold cup</desc>
|
1002
|
+
</e>
|
1003
|
+
<e glyphRefID="387" google="FE7DD" id="7DD" img_from="kddi" kddi="E4BB" name="AMERICAN FOOTBALL" softbank="E42B" text_fallback="[フットボール]" unicode="+1F3C8"/>
|
1004
|
+
<e glyphRefID="388" google="FE7DE" id="7DE" img_from="kddi" kddi="EADE" name="SWIMMER" softbank="E42D" text_fallback="[水泳]" unicode="+1F3CA">
|
1005
|
+
<desc>swimming</desc>
|
1006
|
+
</e>
|
1007
|
+
</subcategory>
|
1008
|
+
<subcategory name="Vehicles">
|
1009
|
+
<e docomo="E65B" glyphRefID="389" google="FE7DF" id="7DF" img_from="docomo" kddi="E4B5" name="TRAIN" softbank="E01E" unicode="+1F686">
|
1010
|
+
<ann>= intercity train</ann>
|
1011
|
+
</e>
|
1012
|
+
<e docomo=">E65C" glyphRefID="390" google="FE7E0" id="7E0" img_from="kddi" kddi="E5BC" name="METRO" softbank="E434" unicode="+1F687">
|
1013
|
+
<desc>(DoCoMo's is an "M" for metro)</desc>
|
1014
|
+
<ann>= subway, underground train</ann>
|
1015
|
+
</e>
|
1016
|
+
<e docomo="E65C" glyphRefID="391" google="FE7E1" id="7E1" img_from="docomo" kddi=">E5BC" name="CIRCLED LATIN CAPITAL LETTER M" softbank=">E434" unicode="24C2">
|
1017
|
+
<desc>
|
1018
|
+
Disunified from SUBWAY symbols from KDDI and Softbank.
|
1019
|
+
Was originally proposed as a new "METRO SIGN" symbol but then
|
1020
|
+
unified with Ⓜ U+24C2 CIRCLED LATIN CAPITAL LETTER M because
|
1021
|
+
several variants of a stylized "M" are found for different Metro systems, including a circled M.
|
1022
|
+
(Project issue 92.)
|
1023
|
+
</desc>
|
1024
|
+
</e>
|
1025
|
+
<e docomo="E65D" glyphRefID="392" google="FE7E2" id="7E2" img_from="docomo" kddi=">E4B0" name="HIGH-SPEED TRAIN" softbank="E435" unicode="+1F684"/>
|
1026
|
+
<e docomo=">E65D" glyphRefID="393" google="FE7E3" id="7E3" img_from="softbank" kddi="E4B0" name="HIGH-SPEED TRAIN WITH BULLET NOSE" softbank="E01F" unicode="+1F685">
|
1027
|
+
<desc>front facing for SoftBank, used in different phone sets; old-style Japanese high-speed train; Wikipedia/Shinkansen: "The first Shinkansen trains, the 0 series [...]. The last of these trains, with their classic bullet-nosed appearance, were retired on 30 November 2008."</desc>
|
1028
|
+
</e>
|
1029
|
+
<e docomo="E65E" glyphRefID="394" google="FE7E4" id="7E4" img_from="docomo" kddi="E4B1" name="AUTOMOBILE" oldname="AUTOMOBILE-1" softbank="E01B" unicode="+1F697">
|
1030
|
+
<desc>sedan</desc>
|
1031
|
+
</e>
|
1032
|
+
<e docomo="E65F" glyphRefID="395" google="FE7E5" id="7E5" img_from="softbank" kddi=">E4B1" name="RECREATIONAL VEHICLE" softbank="E42E" unicode="+1F699">
|
1033
|
+
<desc>wagon</desc>
|
1034
|
+
</e>
|
1035
|
+
<e docomo="E660" glyphRefID="396" google="FE7E6" id="7E6" img_from="docomo" kddi="E4AF" name="ONCOMING BUS" oldname="BUS-2" softbank="E159" unicode="+1F68D"/>
|
1036
|
+
<e glyphRefID="397" google="FE7E7" id="7E7" img_from="kddi" kddi="E4A7" name="BUS STOP" softbank="E150" text_fallback="[バス停]" unicode="+1F68F"/>
|
1037
|
+
<e docomo="E661" glyphRefID="398" google="FE7E8" id="7E8" img_from="docomo" kddi="EA82" name="SHIP" softbank="E202" unicode="+1F6A2">
|
1038
|
+
<ann>x (ferry - 26F4)</ann>
|
1039
|
+
</e>
|
1040
|
+
<e docomo="E662" google="FE7E9" id="7E9" kddi="E4B3" name="AIRPLANE" softbank="E01D" unicode="2708"/>
|
1041
|
+
<e docomo="E6A3" google="FE7EA" id="7EA" img_from="docomo" kddi="E4B4" name="SAILBOAT" softbank="E01C" unicode="*26F5"/>
|
1042
|
+
<e glyphRefID="400" google="FE7EC" id="7EC" img_from="kddi" kddi="EB6D" name="STATION" softbank="E039" text_fallback="[駅]" unicode="+1F689">
|
1043
|
+
<ann>= train, subway station</ann>
|
1044
|
+
</e>
|
1045
|
+
<e glyphRefID="401" google="FE7ED" id="7ED" img_from="kddi" kddi="E5C8" name="ROCKET" softbank="E10D" text_fallback="[ロケット]" unicode="+1F680"/>
|
1046
|
+
<e docomo=">E6A3" glyphRefID="402" google="FE7EE" id="7EE" img_from="softbank" kddi=">E4B4" name="SPEEDBOAT" softbank="E135" unicode="+1F6A4">
|
1047
|
+
<desc>motorboat racing</desc>
|
1048
|
+
</e>
|
1049
|
+
<e docomo=">E65E" glyphRefID="403" google="FE7EF" id="7EF" img_from="softbank" kddi=">E4B1" name="TAXI" oldname="TAXI-1" softbank="E15A" unicode="+1F695">
|
1050
|
+
<desc>a car with light sign on the roof</desc>
|
1051
|
+
</e>
|
1052
|
+
<e glyphRefID="405" google="FE7F1" id="7F1" img_from="kddi" kddi="E4B2" name="DELIVERY TRUCK" softbank="E42F" text_fallback="[トラック]" unicode="+1F69A"/>
|
1053
|
+
<e glyphRefID="406" google="FE7F2" id="7F2" img_from="kddi" kddi="EADF" name="FIRE ENGINE" softbank="E430" text_fallback="[消防車]" unicode="+1F692"/>
|
1054
|
+
<e glyphRefID="407" google="FE7F3" id="7F3" img_from="kddi" kddi="EAE0" name="AMBULANCE" softbank="E431" text_fallback="[救急車]" unicode="+1F691"/>
|
1055
|
+
<e glyphRefID="408" google="FE7F4" id="7F4" img_from="kddi" kddi="EAE1" name="POLICE CAR" oldname="POLICE CAR-1" softbank="E432" text_fallback="[パトカー]" unicode="+1F693"/>
|
1056
|
+
</subcategory>
|
1057
|
+
<subcategory name="Driving">
|
1058
|
+
<e docomo="E66B" glyphRefID="409" google="FE7F5" id="7F5" img_from="kddi" kddi="E571" name="FUEL PUMP" softbank="E03A" unicode="*26FD"/>
|
1059
|
+
<e docomo="E66C" glyphRefID="410" google="FE7F6" id="7F6" img_from="kddi" kddi="E4A6" name="NEGATIVE SQUARED LATIN CAPITAL LETTER P" softbank="E14F" unicode="*1F17F">
|
1060
|
+
<desc>"P" sign</desc>
|
1061
|
+
</e>
|
1062
|
+
</subcategory>
|
1063
|
+
<subcategory name="Traffic signs">
|
1064
|
+
<e docomo="E66D" glyphRefID="411" google="FE7F7" id="7F7" img_from="docomo" kddi="E46A" name="HORIZONTAL TRAFFIC LIGHT" softbank="E14E" unicode="+1F6A5"/>
|
1065
|
+
<e glyphRefID="412" google="FE7F8" id="7F8" img_from="kddi" kddi="E5D7" name="CONSTRUCTION SIGN" softbank="E137" text_fallback="[工事中]" unicode="+1F6A7"/>
|
1066
|
+
<e glyphRefID="413" google="FE7F9" id="7F9" img_from="kddi" kddi="EB73" name="POLICE CARS REVOLVING LIGHT" softbank=">E432" text_fallback="[パトカー]" unicode="+1F6A8">
|
1067
|
+
<ann>= rotating beacon</ann>
|
1068
|
+
</e>
|
1069
|
+
</subcategory>
|
1070
|
+
<subcategory name="Entertainment symbols">
|
1071
|
+
<e docomo="E6F7" google="FE7FA" id="7FA" kddi="E4BC" name="HOT SPRINGS" softbank="E123" unicode="2668">
|
1072
|
+
<desc>onsen</desc>
|
1073
|
+
</e>
|
1074
|
+
<e glyphRefID="414" google="FE7FB" id="7FB" img_from="kddi" kddi="E5D0" name="TENT" softbank="E122" text_fallback="[キャンプ]" unicode="*26FA">
|
1075
|
+
<desc>camp</desc>
|
1076
|
+
</e>
|
1077
|
+
<e docomo="E679" glyphRefID="415" google="FE7FC" id="7FC" img_from="docomo" name="CAROUSEL HORSE" unicode="+1F3A0">
|
1078
|
+
<ann>= amusement park</ann>
|
1079
|
+
</e>
|
1080
|
+
<e glyphRefID="416" google="FE7FD" id="7FD" img_from="kddi" kddi="E46D" name="FERRIS WHEEL" softbank="E124" text_fallback="[観覧車]" unicode="+1F3A1">
|
1081
|
+
<ann>= amusement park</ann>
|
1082
|
+
</e>
|
1083
|
+
<e glyphRefID="417" google="FE7FE" id="7FE" img_from="kddi" kddi="EAE2" name="ROLLER COASTER" softbank="E433" text_fallback="[ジェットコースター]" unicode="+1F3A2"/>
|
1084
|
+
<e docomo=">E751" glyphRefID="418" google="FE7FF" id="7FF" img_from="kddi" kddi="EB42" name="FISHING POLE AND FISH" oldname="FISHING" softbank=">E019" unicode="+1F3A3">
|
1085
|
+
<ann>= fishing</ann>
|
1086
|
+
</e>
|
1087
|
+
<e docomo="E676" glyphRefID="419" google="FE800" id="800" img_from="docomo" kddi="E503" name="MICROPHONE" softbank="E03C" unicode="+1F3A4">
|
1088
|
+
<ann>= karaoke</ann>
|
1089
|
+
</e>
|
1090
|
+
<e docomo="E677" glyphRefID="420" google="FE801" id="801" img_from="docomo" kddi="E517" name="MOVIE CAMERA" softbank="E03D" unicode="+1F3A5">
|
1091
|
+
<ann>= film, movies</ann>
|
1092
|
+
<desc>movie projector, video camera</desc>
|
1093
|
+
</e>
|
1094
|
+
<e docomo=">E677" glyphRefID="421" google="FE802" id="802" img_from="softbank" kddi=">E517" name="CINEMA" softbank="E507" unicode="+1F3A6">
|
1095
|
+
<ann>= movie theater, movie projector</ann>
|
1096
|
+
</e>
|
1097
|
+
<e docomo="E67A" glyphRefID="422" google="FE803" id="803" img_from="docomo" kddi="E508" name="HEADPHONE" softbank="E30A" unicode="+1F3A7">
|
1098
|
+
<ann>= music</ann>
|
1099
|
+
</e>
|
1100
|
+
<e docomo="E67B" glyphRefID="423" google="FE804" id="804" img_from="kddi" kddi="E59C" name="ARTIST PALETTE" oldname="ART" softbank="E502" unicode="+1F3A8">
|
1101
|
+
<ann>= art</ann>
|
1102
|
+
</e>
|
1103
|
+
<e docomo="E67C" glyphRefID="424" google="FE805" id="805" img_from="docomo" kddi="EAF5" name="TOP HAT" softbank="E503" unicode="+1F3A9">
|
1104
|
+
<ann>= drama, performing arts, theater</ann>
|
1105
|
+
</e>
|
1106
|
+
<e docomo="E67D" glyphRefID="425" google="FE806" id="806" img_from="docomo" kddi="E59E" name="CIRCUS TENT" oldname="EVENT" text_fallback="[イベント]" unicode="+1F3AA">
|
1107
|
+
<ann>= event</ann>
|
1108
|
+
</e>
|
1109
|
+
<e docomo="E67E" glyphRefID="426" google="FE807" id="807" img_from="docomo" kddi="E49E" name="TICKET" softbank="E125" unicode="+1F3AB">
|
1110
|
+
<ann>* indicates an event</ann>
|
1111
|
+
</e>
|
1112
|
+
<e docomo="E6AC" glyphRefID="427" google="FE808" id="808" img_from="kddi" kddi="E4BE" name="CLAPPER BOARD" oldname="MOVIE SHOOTING CLAPBOARD" softbank="E324" unicode="+1F3AC"/>
|
1113
|
+
<e glyphRefID="428" google="FE809" id="809" img_from="kddi" kddi="E59D" name="PERFORMING ARTS" softbank=">E503" text_fallback="[演劇]" unicode="+1F3AD"/>
|
1114
|
+
</subcategory>
|
1115
|
+
<subcategory name="Game symbols">
|
1116
|
+
<e docomo="E68B" glyphRefID="429" google="FE80A" id="80A" img_from="docomo" kddi="E4C6" name="VIDEO GAME" text_fallback="[ゲーム]" unicode="+1F3AE">
|
1117
|
+
<ann>= video game controller</ann>
|
1118
|
+
</e>
|
1119
|
+
<e google="FE80B" id="80B" kddi="E5D1" name="MAHJONG TILE RED DRAGON" softbank="E12D" text_fallback="[麻雀]" unicode="1F004"/>
|
1120
|
+
<e glyphRefID="430" google="FE80C" id="80C" img_from="kddi" kddi="E4C5" name="DIRECT HIT" softbank="E130" text_fallback="[的中]" unicode="+1F3AF">
|
1121
|
+
<ann>= archery target, hitting the target</ann>
|
1122
|
+
<ann>x (bullseye - 25CE)</ann>
|
1123
|
+
</e>
|
1124
|
+
<e glyphRefID="431" google="FE80D" id="80D" img_from="kddi" kddi="E46E" name="SLOT MACHINE" softbank="E133" text_fallback="[777]" unicode="+1F3B0">
|
1125
|
+
<desc>777</desc>
|
1126
|
+
</e>
|
1127
|
+
<e glyphRefID="432" google="FE80E" id="80E" img_from="kddi" kddi="EADD" name="BILLIARDS" softbank="E42C" text_fallback="[ビリヤード]" unicode="+1F3B1"/>
|
1128
|
+
<e glyphRefID="433" google="FE80F" id="80F" img_from="kddi" kddi="E4C8" name="GAME DIE" text_fallback="[サイコロ]" unicode="+1F3B2"/>
|
1129
|
+
<e glyphRefID="434" google="FE810" id="810" img_from="kddi" kddi="EB43" name="BOWLING" text_fallback="[ボーリング]" unicode="+1F3B3"/>
|
1130
|
+
<e glyphRefID="435" google="FE811" id="811" img_from="kddi" kddi="EB6E" name="FLOWER PLAYING CARDS" text_fallback="[花札]" unicode="+1F3B4">
|
1131
|
+
<ann>= flower cards</ann>
|
1132
|
+
<desc>(花札)</desc>
|
1133
|
+
</e>
|
1134
|
+
</subcategory>
|
1135
|
+
<subcategory name="Diamonds or Pentacles">
|
1136
|
+
<e glyphRefID="436" google="FE812" id="812" img_from="kddi" kddi="EB6F" name="PLAYING CARD BLACK JOKER" text_fallback="[ジョーカー]" unicode="+1F0CF"/>
|
1137
|
+
</subcategory>
|
1138
|
+
<subcategory name="Music symbols">
|
1139
|
+
<e docomo="E6F6" glyphRefID="437" google="FE813" id="813" img_from="kddi" kddi="E5BE" name="MUSICAL NOTE" softbank="E03E" unicode="+1F3B5">
|
1140
|
+
<ann>= music, being in good mood</ann>
|
1141
|
+
<ann>x (eighth note - 266A)</ann>
|
1142
|
+
<desc>Disunified from U+266A due to source separation rule (Shift_JIS).</desc>
|
1143
|
+
</e>
|
1144
|
+
<e docomo="E6FF" glyphRefID="438" google="FE814" id="814" img_from="docomo" kddi="E505" name="MULTIPLE MUSICAL NOTES" softbank="E326" unicode="+1F3B6">
|
1145
|
+
<ann>= dancing notes, mood, melody</ann>
|
1146
|
+
<desc>disunified from ♫ U+266B</desc>
|
1147
|
+
</e>
|
1148
|
+
<e glyphRefID="439" google="FE815" id="815" img_from="softbank" name="SAXOPHONE" softbank="E040" text_fallback="[サックス]" unicode="+1F3B7"/>
|
1149
|
+
<e glyphRefID="440" google="FE816" id="816" img_from="kddi" kddi="E506" name="GUITAR" softbank="E041" text_fallback="[ギター]" unicode="+1F3B8"/>
|
1150
|
+
<e glyphRefID="441" google="FE817" id="817" img_from="kddi" kddi="EB40" name="MUSICAL KEYBOARD" text_fallback="[ピアノ]" unicode="+1F3B9"/>
|
1151
|
+
<e glyphRefID="442" google="FE818" id="818" img_from="kddi" kddi="EADC" name="TRUMPET" softbank="E042" text_fallback="[トランペット]" unicode="+1F3BA"/>
|
1152
|
+
<e glyphRefID="443" google="FE819" id="819" img_from="kddi" kddi="E507" name="VIOLIN" text_fallback="[バイオリン]" unicode="+1F3BB"/>
|
1153
|
+
<e docomo=">E6FF" glyphRefID="444" google="FE81A" id="81A" img_from="kddi" kddi="EACC" name="MUSICAL SCORE" softbank=">E326" unicode="+1F3BC">
|
1154
|
+
<ann>x (musical symbol g clef - 1D11E)</ann>
|
1155
|
+
</e>
|
1156
|
+
<e glyphRefID="445" google="FE81B" id="81B" img_from="softbank" name="PART ALTERNATION MARK" softbank="E12C" text_fallback="[歌記号]" unicode="303D">
|
1157
|
+
<desc>Unified with U+303D. Part of JIS X 0213 set. indicator for the 1st vocal part of a song</desc>
|
1158
|
+
</e>
|
1159
|
+
</subcategory>
|
1160
|
+
<subcategory name="Audio and video">
|
1161
|
+
<e docomo="E681" glyphRefID="276" google="FE4EF" id="4EF" img_from="docomo" kddi="E515" name="CAMERA" softbank="E008" unicode="+1F4F7"/>
|
1162
|
+
<e docomo=">E677" glyphRefID="286" google="FE4F9" id="4F9" img_from="kddi" kddi="E57E" name="VIDEO CAMERA" softbank=">E03D" unicode="+1F4F9">
|
1163
|
+
<desc>handycam, videocam</desc>
|
1164
|
+
</e>
|
1165
|
+
<e docomo="E68A" glyphRefID="446" google="FE81C" id="81C" img_from="docomo" kddi="E502" name="TELEVISION" softbank="E12A" unicode="+1F4FA"/>
|
1166
|
+
<e glyphRefID="449" google="FE81F" id="81F" img_from="kddi" kddi="E5B9" name="RADIO" softbank="E128" text_fallback="[ラジオ]" unicode="+1F4FB"/>
|
1167
|
+
<e glyphRefID="450" google="FE820" id="820" img_from="kddi" kddi="E580" name="VIDEOCASSETTE" oldname="VIDEO CASSETTE TAPE" softbank="E129" text_fallback="[ビデオ]" unicode="+1F4FC"/>
|
1168
|
+
</subcategory>
|
1169
|
+
<subcategory name="Romance symbols">
|
1170
|
+
<e docomo="E6F9" glyphRefID="453" google="FE823" id="823" img_from="docomo" kddi="E4EB" name="KISS MARK" softbank="E003" unicode="+1F48B">
|
1171
|
+
<ann>= lips</ann>
|
1172
|
+
</e>
|
1173
|
+
<e docomo="E717" glyphRefID="454" google="FE824" id="824" img_from="docomo" kddi="EB78" name="LOVE LETTER" softbank=">E103+E328" unicode="+1F48C"/>
|
1174
|
+
<e docomo="E71B" glyphRefID="455" google="FE825" id="825" img_from="docomo" kddi="E514" name="RING" softbank="E034" unicode="+1F48D">
|
1175
|
+
<ann>= jewelry</ann>
|
1176
|
+
</e>
|
1177
|
+
<e docomo=">E71B" glyphRefID="456" google="FE826" id="826" img_from="softbank" kddi=">E514" name="GEM STONE" softbank="E035" unicode="+1F48E"/>
|
1178
|
+
<e docomo=">E6F9" glyphRefID="457" google="FE827" id="827" img_from="softbank" kddi="E5CA" name="KISS" softbank="E111" unicode="+1F48F">
|
1179
|
+
<ann>= two people kissing</ann>
|
1180
|
+
</e>
|
1181
|
+
<e glyphRefID="458" google="FE828" id="828" img_from="kddi" kddi="EA95" name="BOUQUET" softbank="E306" text_fallback="[花束]" unicode="+1F490"/>
|
1182
|
+
<e docomo=">E6ED" glyphRefID="459" google="FE829" id="829" img_from="kddi" kddi="EADA" name="COUPLE WITH HEART" softbank="E425" unicode="+1F491"/>
|
1183
|
+
<e glyphRefID="460" google="FE82A" id="82A" img_from="softbank" kddi=">E5BB" name="WEDDING" softbank="E43D" text_fallback="[結婚式]" unicode="+1F492">
|
1184
|
+
<ann>= wedding chapel</ann>
|
1185
|
+
</e>
|
1186
|
+
</subcategory>
|
1187
|
+
<subcategory name="Enclosed alphanumeric symbols">
|
1188
|
+
<e glyphRefID="545" google="FEB25" id="B25" img_from="kddi" kddi="EA83" name="NO ONE UNDER EIGHTEEN SYMBOL" softbank="E207" text_fallback="[18禁]" unicode="+1F51E">
|
1189
|
+
<desc>under 18 not permitted</desc>
|
1190
|
+
</e>
|
1191
|
+
<e docomo="E731" google="FEB29" id="B29" kddi="E558" name="COPYRIGHT SIGN" softbank="E24E" unicode="00A9"/>
|
1192
|
+
<e docomo="E736" google="FEB2D" id="B2D" kddi="E559" name="REGISTERED SIGN" softbank="E24F" unicode="00AE"/>
|
1193
|
+
<e docomo="E732" google="FEB2A" id="B2A" kddi="E54E" name="TRADE MARK SIGN" softbank="E537" unicode="2122"/>
|
1194
|
+
<e google="FEB47" id="B47" kddi="E533" name="INFORMATION SOURCE" text_fallback="[i]" unicode="2139">
|
1195
|
+
<desc>"i" = information</desc>
|
1196
|
+
</e>
|
1197
|
+
<e docomo="E6E0" glyphRefID="462" google="FE82C" id="82C" img_from="docomo" kddi="EB84" name="HASH KEY" softbank="E210" unicode="0023+20E3">
|
1198
|
+
<desc>pound key, number sign. Unify with ASCII # (U+0023) + (U+20E3)</desc>
|
1199
|
+
</e>
|
1200
|
+
<e docomo="E6E2" google="FE82E" id="82E" img_from="docomo" kddi="E522" name="KEYCAP 1" softbank="E21C" unicode="0031+20E3">
|
1201
|
+
<desc>Unify with ASCII 1 (U+0031) + (U+20E3)</desc>
|
1202
|
+
</e>
|
1203
|
+
<e docomo="E6E3" google="FE82F" id="82F" img_from="docomo" kddi="E523" name="KEYCAP 2" softbank="E21D" unicode="0032+20E3">
|
1204
|
+
<desc>Unify with ASCII 2 (U+0032) + (U+20E3)</desc>
|
1205
|
+
</e>
|
1206
|
+
<e docomo="E6E4" google="FE830" id="830" img_from="docomo" kddi="E524" name="KEYCAP 3" softbank="E21E" unicode="0033+20E3">
|
1207
|
+
<desc>Unify with ASCII 3 (U+0033) + (U+20E3)</desc>
|
1208
|
+
</e>
|
1209
|
+
<e docomo="E6E5" google="FE831" id="831" img_from="docomo" kddi="E525" name="KEYCAP 4" softbank="E21F" unicode="0034+20E3">
|
1210
|
+
<desc>Unify with ASCII 4 (U+0034) + (U+20E3)</desc>
|
1211
|
+
</e>
|
1212
|
+
<e docomo="E6E6" google="FE832" id="832" img_from="docomo" kddi="E526" name="KEYCAP 5" softbank="E220" unicode="0035+20E3">
|
1213
|
+
<desc>Unify with ASCII 5 (U+0035) + (U+20E3)</desc>
|
1214
|
+
</e>
|
1215
|
+
<e docomo="E6E7" google="FE833" id="833" img_from="docomo" kddi="E527" name="KEYCAP 6" softbank="E221" unicode="0036+20E3">
|
1216
|
+
<desc>Unify with ASCII 6 (U+0036) + (U+20E3)</desc>
|
1217
|
+
</e>
|
1218
|
+
<e docomo="E6E8" google="FE834" id="834" img_from="docomo" kddi="E528" name="KEYCAP 7" softbank="E222" unicode="0037+20E3">
|
1219
|
+
<desc>Unify with ASCII 7 (U+0037) + (U+20E3)</desc>
|
1220
|
+
</e>
|
1221
|
+
<e docomo="E6E9" google="FE835" id="835" img_from="docomo" kddi="E529" name="KEYCAP 8" softbank="E223" unicode="0038+20E3">
|
1222
|
+
<desc>Unify with ASCII 8 (U+0038) + (U+20E3)</desc>
|
1223
|
+
</e>
|
1224
|
+
<e docomo="E6EA" google="FE836" id="836" img_from="docomo" kddi="E52A" name="KEYCAP 9" softbank="E224" unicode="0039+20E3">
|
1225
|
+
<desc>Unify with ASCII 9 (U+0039) + (U+20E3)</desc>
|
1226
|
+
</e>
|
1227
|
+
<e docomo="E6EB" google="FE837" id="837" img_from="docomo" kddi="E5AC" name="KEYCAP 0" softbank="E225" unicode="0030+20E3">
|
1228
|
+
<desc>Unify with ASCII 0 (U+0030) + (U+20E3)</desc>
|
1229
|
+
</e>
|
1230
|
+
<e glyphRefID="467" google="FE83B" id="83B" img_from="kddi" kddi="E52B" name="KEYCAP TEN" text_fallback="[10]" unicode="+1F51F">
|
1231
|
+
<design>Should look like digits 10 enclosed by a keycap like  ⃣ U+20E3 COMBINING ENCLOSING KEYCAP.</design>
|
1232
|
+
<ann>x (combining enclosing keycap - 20E3)</ann>
|
1233
|
+
</e>
|
1234
|
+
</subcategory>
|
1235
|
+
<subcategory name="Communication symbols">
|
1236
|
+
<e glyphRefID="464" google="FE838" id="838" img_from="kddi" kddi="EA84" name="ANTENNA WITH BARS" softbank="E20B" text_fallback="[バリ3]" unicode="+1F4F6">
|
1237
|
+
<ann>= cellular reception</ann>
|
1238
|
+
<desc>(good reception)</desc>
|
1239
|
+
</e>
|
1240
|
+
<e glyphRefID="465" google="FE839" id="839" img_from="kddi" kddi="EA90" name="VIBRATION MODE" softbank="E250" text_fallback="[マナーモード]" unicode="+1F4F3">
|
1241
|
+
<desc>manner mode (in Japan)</desc>
|
1242
|
+
</e>
|
1243
|
+
<e glyphRefID="466" google="FE83A" id="83A" img_from="kddi" kddi="EA91" name="MOBILE PHONE OFF" softbank="E251" text_fallback="[ケータイOFF]" unicode="+1F4F4"/>
|
1244
|
+
</subcategory>
|
1245
|
+
</category>
|
1246
|
+
<category name="6. Foods">
|
1247
|
+
<subcategory name="Food symbols">
|
1248
|
+
<e docomo="E673" glyphRefID="468" google="FE960" id="960" img_from="docomo" kddi="E4D6" name="HAMBURGER" softbank="E120" unicode="+1F354">
|
1249
|
+
<ann>= fast food place</ann>
|
1250
|
+
</e>
|
1251
|
+
<e docomo="E749" glyphRefID="469" google="FE961" id="961" img_from="docomo" kddi="E4D5" name="RICE BALL" softbank="E342" unicode="+1F359">
|
1252
|
+
<desc>onigiri</desc>
|
1253
|
+
</e>
|
1254
|
+
<e docomo="E74A" glyphRefID="470" google="FE962" id="962" img_from="docomo" kddi="E4D0" name="SHORTCAKE" softbank="E046" unicode="+1F370"/>
|
1255
|
+
<e docomo="E74C" glyphRefID="471" google="FE963" id="963" img_from="docomo" kddi="E5B4" name="STEAMING BOWL" softbank="E340" unicode="+1F35C">
|
1256
|
+
<ann>= ramen noodles</ann>
|
1257
|
+
</e>
|
1258
|
+
<e docomo="E74D" glyphRefID="472" google="FE964" id="964" img_from="docomo" kddi="EAAF" name="BREAD" softbank="E339" unicode="+1F35E"/>
|
1259
|
+
<e glyphRefID="473" google="FE965" id="965" img_from="kddi" kddi="E4D1" name="COOKING" softbank="E147" text_fallback="[フライパン]" unicode="+1F373">
|
1260
|
+
<ann>= frying pan, cooking utensil</ann>
|
1261
|
+
</e>
|
1262
|
+
<e glyphRefID="474" google="FE966" id="966" img_from="kddi" kddi="EAB0" name="SOFT ICE CREAM" softbank="E33A" text_fallback="[ソフトクリーム]" unicode="+1F366"/>
|
1263
|
+
<e glyphRefID="475" google="FE967" id="967" img_from="kddi" kddi="EAB1" name="FRENCH FRIES" softbank="E33B" text_fallback="[ポテト]" unicode="+1F35F"/>
|
1264
|
+
<e glyphRefID="476" google="FE968" id="968" img_from="kddi" kddi="EAB2" name="DANGO" oldname="DUMPLING" softbank="E33C" text_fallback="[だんご]" unicode="+1F361">
|
1265
|
+
<ann>= mochi balls on skewer</ann>
|
1266
|
+
</e>
|
1267
|
+
<e glyphRefID="477" google="FE969" id="969" img_from="kddi" kddi="EAB3" name="RICE CRACKER" softbank="E33D" text_fallback="[せんべい]" unicode="+1F358">
|
1268
|
+
<desc>Japanese rice cracker (senbei)</desc>
|
1269
|
+
</e>
|
1270
|
+
<e docomo=">E74C" glyphRefID="478" google="FE96A" id="96A" img_from="kddi" kddi="EAB4" name="COOKED RICE" softbank="E33E" unicode="+1F35A">
|
1271
|
+
<ann>= bowl of rice</ann>
|
1272
|
+
</e>
|
1273
|
+
<e glyphRefID="479" google="FE96B" id="96B" img_from="kddi" kddi="EAB5" name="SPAGHETTI" softbank="E33F" text_fallback="[パスタ]" unicode="+1F35D"/>
|
1274
|
+
<e glyphRefID="480" google="FE96C" id="96C" img_from="kddi" kddi="EAB6" name="CURRY AND RICE" softbank="E341" text_fallback="[カレー]" unicode="+1F35B">
|
1275
|
+
<ann>= Japanese style curry</ann>
|
1276
|
+
</e>
|
1277
|
+
<e glyphRefID="481" google="FE96D" id="96D" img_from="kddi" kddi="EAB7" name="ODEN" oldname="SEAFOOD CASSEROLE" softbank="E343" text_fallback="[おでん]" unicode="+1F362">
|
1278
|
+
<desc>seafood hotchpotch, oden</desc>
|
1279
|
+
<ann>= seafood on skewer</ann>
|
1280
|
+
</e>
|
1281
|
+
<e glyphRefID="482" google="FE96E" id="96E" img_from="kddi" kddi="EAB8" name="SUSHI" softbank="E344" text_fallback="[すし]" unicode="+1F363">
|
1282
|
+
<desc>nigiri sushi</desc>
|
1283
|
+
</e>
|
1284
|
+
<e glyphRefID="483" google="FE96F" id="96F" img_from="kddi" kddi="EABD" name="BENTO BOX" oldname="LUNCHBOX" softbank="E34C" text_fallback="[弁当]" unicode="+1F371">
|
1285
|
+
<desc>obento</desc>
|
1286
|
+
</e>
|
1287
|
+
<e glyphRefID="484" google="FE970" id="970" img_from="kddi" kddi="EABE" name="POT OF FOOD" softbank="E34D" text_fallback="[鍋]" unicode="+1F372">
|
1288
|
+
<desc>hot pot, nabe</desc>
|
1289
|
+
</e>
|
1290
|
+
<e glyphRefID="485" google="FE971" id="971" img_from="kddi" kddi="EAEA" name="SHAVED ICE" softbank="E43F" text_fallback="[カキ氷]" unicode="+1F367"/>
|
1291
|
+
<e glyphRefID="486" google="FE972" id="972" img_from="kddi" kddi="E4C4" name="MEAT ON BONE" text_fallback="[肉]" unicode="+1F356">
|
1292
|
+
<desc>food</desc>
|
1293
|
+
</e>
|
1294
|
+
<e docomo=">E643" glyphRefID="487" google="FE973" id="973" img_from="kddi" kddi="E4ED" name="FISH CAKE WITH SWIRL DESIGN" text_fallback="[なると]" unicode="+1F365">
|
1295
|
+
<desc>topping for ramen noodles</desc>
|
1296
|
+
</e>
|
1297
|
+
<e glyphRefID="488" google="FE974" id="974" img_from="kddi" kddi="EB3A" name="ROASTED SWEET POTATO" text_fallback="[やきいも]" unicode="+1F360">
|
1298
|
+
<desc>焼き芋: Japanese yakiimo</desc>
|
1299
|
+
</e>
|
1300
|
+
<e glyphRefID="489" google="FE975" id="975" img_from="kddi" kddi="EB3B" name="SLICE OF PIZZA" text_fallback="[ピザ]" unicode="+1F355"/>
|
1301
|
+
<e glyphRefID="490" google="FE976" id="976" img_from="kddi" kddi="EB3C" name="POULTRY LEG" text_fallback="[チキン]" unicode="+1F357"/>
|
1302
|
+
<e glyphRefID="491" google="FE977" id="977" img_from="kddi" kddi="EB4A" name="ICE CREAM" text_fallback="[アイスクリーム]" unicode="+1F368"/>
|
1303
|
+
<e glyphRefID="492" google="FE978" id="978" img_from="kddi" kddi="EB4B" name="DOUGHNUT" text_fallback="[ドーナツ]" unicode="+1F369"/>
|
1304
|
+
<e glyphRefID="493" google="FE979" id="979" img_from="kddi" kddi="EB4C" name="COOKIE" text_fallback="[クッキー]" unicode="+1F36A">
|
1305
|
+
<ann>= biscuit</ann>
|
1306
|
+
</e>
|
1307
|
+
<e glyphRefID="494" google="FE97A" id="97A" img_from="kddi" kddi="EB4D" name="CHOCOLATE BAR" text_fallback="[チョコ]" unicode="+1F36B"/>
|
1308
|
+
<e glyphRefID="495" google="FE97B" id="97B" img_from="kddi" kddi="EB4E" name="CANDY" text_fallback="[キャンディ]" unicode="+1F36C"/>
|
1309
|
+
<e glyphRefID="496" google="FE97C" id="97C" img_from="kddi" kddi="EB4F" name="LOLLIPOP" text_fallback="[キャンディ]" unicode="+1F36D"/>
|
1310
|
+
<e glyphRefID="497" google="FE97D" id="97D" img_from="kddi" kddi="EB56" name="CUSTARD" text_fallback="[プリン]" unicode="+1F36E"/>
|
1311
|
+
<e glyphRefID="498" google="FE97E" id="97E" img_from="kddi" kddi="EB59" name="HONEY POT" text_fallback="[ハチミツ]" unicode="+1F36F"/>
|
1312
|
+
<e glyphRefID="499" google="FE97F" id="97F" img_from="kddi" kddi="EB70" name="FRIED SHRIMP" text_fallback="[エビフライ]" unicode="+1F364"/>
|
1313
|
+
<e docomo="E66F" glyphRefID="500" google="FE980" id="980" img_from="kddi" kddi="E4AC" name="FORK AND KNIFE" softbank="E043" unicode="+1F374">
|
1314
|
+
<ann>= restaurant, meal</ann>
|
1315
|
+
<ann>* glyph may show a fork and spoon</ann>
|
1316
|
+
<ann>* glyph may show a crossed fork and knife</ann>
|
1317
|
+
<ann>* glyph may show a fork and knife with a plate</ann>
|
1318
|
+
</e>
|
1319
|
+
</subcategory>
|
1320
|
+
<subcategory name="Beverage symbols">
|
1321
|
+
<e docomo="E670" google="FE981" id="981" kddi="E597" name="HOT BEVERAGE" softbank="E045" unicode="2615">
|
1322
|
+
<desc>café, coffee</desc>
|
1323
|
+
</e>
|
1324
|
+
<e docomo="E671" glyphRefID="501" google="FE982" id="982" img_from="docomo" kddi="E4C2" name="COCKTAIL GLASS" softbank="E044" unicode="+1F378">
|
1325
|
+
<desc>martini, bar</desc>
|
1326
|
+
</e>
|
1327
|
+
<e docomo="E672" glyphRefID="502" google="FE983" id="983" img_from="docomo" kddi="E4C3" name="BEER MUG" softbank="E047" unicode="+1F37A"/>
|
1328
|
+
<e docomo="E71E" glyphRefID="503" google="FE984" id="984" img_from="docomo" kddi="EAAE" name="TEACUP WITHOUT HANDLE" softbank="E338" unicode="+1F375">
|
1329
|
+
<ann>x (hot beverage - 2615)</ann>
|
1330
|
+
<ann>x (cup on black square - 26FE)</ann>
|
1331
|
+
<design>Make it look like a hot tea cup without a handle used typically in China, Japan, and Korea</design>
|
1332
|
+
</e>
|
1333
|
+
<e docomo="E74B" glyphRefID="504" google="FE985" id="985" img_from="docomo" kddi="EA97" name="SAKE BOTTLE AND CUP" softbank="E30B" unicode="+1F376">
|
1334
|
+
<desc>sake</desc>
|
1335
|
+
</e>
|
1336
|
+
<e docomo="E756" glyphRefID="505" google="FE986" id="986" img_from="docomo" kddi="E4C1" name="WINE GLASS" softbank=">E044" unicode="+1F377">
|
1337
|
+
<desc>wine</desc>
|
1338
|
+
</e>
|
1339
|
+
<e docomo=">E672" glyphRefID="506" google="FE987" id="987" img_from="kddi" kddi="EA98" name="CLINKING BEER MUGS" softbank="E30C" unicode="+1F37B">
|
1340
|
+
<ann>= cheers</ann>
|
1341
|
+
</e>
|
1342
|
+
<e docomo=">E671" glyphRefID="507" google="FE988" id="988" img_from="kddi" kddi="EB3E" name="TROPICAL DRINK" softbank=">E044" unicode="+1F379"/>
|
1343
|
+
</subcategory>
|
1344
|
+
</category>
|
1345
|
+
<category name="7. Abstract Concepts">
|
1346
|
+
<subcategory name="Arrows">
|
1347
|
+
<e docomo="E678" google="FEAF0" id="AF0" kddi="E555" name="NORTH EAST ARROW" softbank="E236" unicode="2197"/>
|
1348
|
+
<e docomo="E696" google="FEAF1" id="AF1" kddi="E54D" name="SOUTH EAST ARROW" softbank="E238" unicode="2198"/>
|
1349
|
+
<e docomo="E697" google="FEAF2" id="AF2" kddi="E54C" name="NORTH WEST ARROW" softbank="E237" unicode="2196"/>
|
1350
|
+
<e docomo="E6A5" google="FEAF3" id="AF3" kddi="E556" name="SOUTH WEST ARROW" softbank="E239" unicode="2199"/>
|
1351
|
+
<e docomo="E6F5" google="FEAF4" id="AF4" kddi="EB2D" name="ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS" softbank=">E236" unicode="2934">
|
1352
|
+
<desc>From the left curving upward ("Good")</desc>
|
1353
|
+
</e>
|
1354
|
+
<e docomo="E700" google="FEAF5" id="AF5" kddi="EB2E" name="ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS" softbank=">E238" unicode="2935">
|
1355
|
+
<desc>disunified from ↷ U+21B7. From the left curving downward ("Bad")</desc>
|
1356
|
+
</e>
|
1357
|
+
<e docomo="E73C" google="FEAF6" id="AF6" kddi="EB7A" name="LEFT RIGHT ARROW" text_fallback="⇔" unicode="2194"/>
|
1358
|
+
<e docomo="E73D" google="FEAF7" id="AF7" kddi="EB7B" name="UP DOWN ARROW" text_fallback="↑↓" unicode="2195"/>
|
1359
|
+
<e google="FEAF8" id="AF8" kddi="E53F" name="UPWARDS BLACK ARROW" softbank="E232" text_fallback="[↑]" unicode="2B06">
|
1360
|
+
<desc>disunified from U+2191 due to source separation rule (Shift_JIS).</desc>
|
1361
|
+
</e>
|
1362
|
+
<e google="FEAF9" id="AF9" kddi="E540" name="DOWNWARDS BLACK ARROW" softbank="E233" text_fallback="[↓]" unicode="2B07">
|
1363
|
+
<desc>disunified from U+2193 due to source separation rule (Shift_JIS).</desc>
|
1364
|
+
</e>
|
1365
|
+
<e google="FEAFA" id="AFA" kddi="E552" name="BLACK RIGHTWARDS ARROW" softbank="E234" text_fallback="[→]" unicode="27A1">
|
1366
|
+
<desc>disunified from U+2192 due to source separation rule (Shift_JIS).</desc>
|
1367
|
+
</e>
|
1368
|
+
<e google="FEAFB" id="AFB" kddi="E553" name="LEFTWARDS BLACK ARROW" softbank="E235" text_fallback="[←]" unicode="2B05">
|
1369
|
+
<desc>disunified from U+2190 due to source separation rule (Shift_JIS).</desc>
|
1370
|
+
</e>
|
1371
|
+
</subcategory>
|
1372
|
+
<subcategory name="User interface symbols">
|
1373
|
+
<e google="FEAFC" id="AFC" kddi="E52E" name="BLACK RIGHT-POINTING TRIANGLE" softbank="E23A" text_fallback="[>]" unicode="25B6">
|
1374
|
+
<desc>Play</desc>
|
1375
|
+
</e>
|
1376
|
+
<e google="FEAFD" id="AFD" kddi="E52D" name="BLACK LEFT-POINTING TRIANGLE" softbank="E23B" text_fallback="[<]" unicode="25C0">
|
1377
|
+
<desc>Reverse</desc>
|
1378
|
+
</e>
|
1379
|
+
<e glyphRefID="508" google="FEAFE" id="AFE" img_from="kddi" kddi="E530" name="BLACK RIGHT-POINTING DOUBLE TRIANGLE" softbank="E23C" text_fallback="[>>]" unicode="+23E9">
|
1380
|
+
<ann>= fast forward</ann>
|
1381
|
+
</e>
|
1382
|
+
<e glyphRefID="509" google="FEAFF" id="AFF" img_from="kddi" kddi="E52F" name="BLACK LEFT-POINTING DOUBLE TRIANGLE" softbank="E23D" text_fallback="[<<]" unicode="+23EA">
|
1383
|
+
<ann>= fast rewind</ann>
|
1384
|
+
</e>
|
1385
|
+
<e glyphRefID="513" google="FEB03" id="B03" img_from="kddi" kddi="E545" name="BLACK UP-POINTING DOUBLE TRIANGLE" text_fallback="▲" unicode="+23EB">
|
1386
|
+
<desc>Fast forward (up)</desc>
|
1387
|
+
</e>
|
1388
|
+
<e glyphRefID="512" google="FEB02" id="B02" img_from="kddi" kddi="E544" name="BLACK DOWN-POINTING DOUBLE TRIANGLE" text_fallback="▼" unicode="+23EC">
|
1389
|
+
<desc>Fast forward (down)</desc>
|
1390
|
+
</e>
|
1391
|
+
<e glyphRefID="590" google="FEB78" id="B78" img_from="kddi" kddi="E55A" name="UP-POINTING RED TRIANGLE" oldname="UP-POINTING TRIANGLE-1" text_fallback="▲" unicode="+1F53A">
|
1392
|
+
<desc>Triangle (pointing up). disunified from U+25B2 due to source separation rule (Shift_JIS).</desc>
|
1393
|
+
</e>
|
1394
|
+
<e glyphRefID="591" google="FEB79" id="B79" img_from="kddi" kddi="E55B" name="DOWN-POINTING RED TRIANGLE" oldname="DOWN-POINTING TRIANGLE-1" text_fallback="▼" unicode="+1F53B">
|
1395
|
+
<desc>Triangle (pointing down). disunified from U+25BC due to source separation rule (Shift_JIS).</desc>
|
1396
|
+
</e>
|
1397
|
+
<e glyphRefID="511" google="FEB01" id="B01" img_from="kddi" kddi="E543" name="UP-POINTING SMALL RED TRIANGLE" oldname="UP-POINTING SMALL TRIANGLE-1" text_fallback="▲" unicode="+1F53C">
|
1398
|
+
<ann>= play arrow up</ann>
|
1399
|
+
<desc>disunified from U+25B2 due to source separation rule (Shift_JIS).</desc>
|
1400
|
+
</e>
|
1401
|
+
<e glyphRefID="510" google="FEB00" id="B00" img_from="kddi" kddi="E542" name="DOWN-POINTING SMALL RED TRIANGLE" oldname="DOWN-POINTING SMALL TRIANGLE-1" text_fallback="▼" unicode="+1F53D">
|
1402
|
+
<ann>= play arrow down</ann>
|
1403
|
+
<desc>disunified from U+25BC due to source separation rule (Shift_JIS).</desc>
|
1404
|
+
</e>
|
1405
|
+
</subcategory>
|
1406
|
+
<subcategory name="Miscellaneous">
|
1407
|
+
<e docomo=">E6A0" google="FEB44" id="B44" kddi="EAAD" name="HEAVY LARGE CIRCLE" softbank="E332" unicode="*2B55">
|
1408
|
+
<desc>good; OK, approved; O in tic tac toe; disunified from ○ U+25CB WHITE CIRCLE because of Shift-JIS source separation</desc>
|
1409
|
+
<ann>* forms a pair with CROSS MARK</ann>
|
1410
|
+
<ann>* also used to mean good, correct or approved</ann>
|
1411
|
+
<ann>x (white circle - 25CB)</ann>
|
1412
|
+
<ann>x (large circle - 25EF)</ann>
|
1413
|
+
<ann>x (heavy circle - 2B58)</ann>
|
1414
|
+
</e>
|
1415
|
+
<e glyphRefID="539" google="FEB45" id="B45" img_from="kddi" kddi="E550" name="CROSS MARK" softbank="E333" text_fallback="[×]" unicode="+274C">
|
1416
|
+
<desc>bad; NO GOOD, not approved; X in tic tac toe. disunified from ✕ U+2715</desc>
|
1417
|
+
<ann>* forms a pair with 2B55 heavy large circle</ann>
|
1418
|
+
</e>
|
1419
|
+
<e glyphRefID="540" google="FEB46" id="B46" img_from="kddi" kddi="E551" name="NEGATIVE SQUARED CROSS MARK" softbank=">E333" text_fallback="[×]" unicode="+274E">
|
1420
|
+
<desc>Another X (orange background)</desc>
|
1421
|
+
</e>
|
1422
|
+
<e docomo="E702" google="FEB04" id="B04" kddi="E482" name="HEAVY EXCLAMATION MARK ORNAMENT" softbank="E021" unicode="2762"/>
|
1423
|
+
<e docomo="E703" google="FEB05" id="B05" kddi="EB2F" name="EXCLAMATION QUESTION MARK" text_fallback="!?" unicode="2049"/>
|
1424
|
+
<e docomo="E704" google="FEB06" id="B06" kddi="EB30" name="DOUBLE EXCLAMATION MARK" text_fallback="!!" unicode="203C"/>
|
1425
|
+
<e glyphRefID="515" google="FEB09" id="B09" img_from="kddi" kddi="E483" name="BLACK QUESTION MARK ORNAMENT" softbank="E020" text_fallback="[?]" unicode="+2753"/>
|
1426
|
+
<e glyphRefID="516" google="FEB0A" id="B0A" img_from="softbank" kddi=">E483" name="WHITE QUESTION MARK ORNAMENT" softbank="E336" text_fallback="[?]" unicode="+2754">
|
1427
|
+
<desc>moving question mark</desc>
|
1428
|
+
</e>
|
1429
|
+
<e docomo=">E702" glyphRefID="517" google="FEB0B" id="B0B" img_from="softbank" kddi=">E482" name="WHITE EXCLAMATION MARK ORNAMENT" softbank="E337" unicode="+2755">
|
1430
|
+
<desc>moving exclamation mark</desc>
|
1431
|
+
<ann>x (heavy exclamation mark ornament - 2762)</ann>
|
1432
|
+
<ann>x (heavy exclamation mark symbol - 2757)</ann>
|
1433
|
+
<ann>x (traffic warning - 26CE)</ann>
|
1434
|
+
</e>
|
1435
|
+
<e docomo="E709" google="FEB07" id="B07" name="WAVY DASH" unicode="3030">
|
1436
|
+
<desc>a wavy line, used as a wavy length mark</desc>
|
1437
|
+
</e>
|
1438
|
+
</subcategory>
|
1439
|
+
<subcategory name="Curly loop">
|
1440
|
+
<e docomo="E70A" glyphRefID="514" google="FEB08" id="B08" img_from="docomo" kddi="EB31" name="CURLY LOOP" oldname="LOOPED LENGTH MARK" text_fallback="~" unicode="+27B0">
|
1441
|
+
<desc>a line with a loop; new compatibility character, see e-B07=U+3030</desc>
|
1442
|
+
<ann>= kururi</ann>
|
1443
|
+
</e>
|
1444
|
+
<e docomo="E6DF" glyphRefID="461" google="FE82B" id="82B" img_from="docomo" in_proposal="yes" name="DOUBLE CURLY LOOP" oldname="EMOJI COMPATIBILITY SYMBOL-16" softbank="E211" text_fallback="[フリーダイヤル]" unicode="+27BF">
|
1445
|
+
<desc>Original name: FREE DIAL. Two loops. Occurs widely in print in Japan. Originally proposed for U+23xx.</desc>
|
1446
|
+
<ann>x (bamum letter phase-e nggurae - 16986)</ann>
|
1447
|
+
</e>
|
1448
|
+
</subcategory>
|
1449
|
+
<subcategory name="Heart symbols">
|
1450
|
+
<e docomo="E6EC" google="FEB0C" id="B0C" kddi="E595" name="HEAVY BLACK HEART" softbank="E022" unicode="2764"/>
|
1451
|
+
<e docomo="E6ED" glyphRefID="518" google="FEB0D" id="B0D" img_from="kddi" kddi="EB75" name="BEATING HEART" softbank="E327" unicode="+1F493">
|
1452
|
+
<desc>pulsating heart</desc>
|
1453
|
+
</e>
|
1454
|
+
<e docomo="E6EE" glyphRefID="519" google="FEB0E" id="B0E" img_from="docomo" kddi="E477" name="BROKEN HEART" softbank="E023" unicode="+1F494">
|
1455
|
+
<desc>breaking or broken heart</desc>
|
1456
|
+
</e>
|
1457
|
+
<e docomo="E6EF" glyphRefID="520" google="FEB0F" id="B0F" img_from="docomo" kddi="E478" name="TWO HEARTS" softbank=">E327" unicode="+1F495">
|
1458
|
+
<desc>two hearts</desc>
|
1459
|
+
</e>
|
1460
|
+
<e docomo=">E6EC" glyphRefID="521" google="FEB10" id="B10" img_from="kddi" kddi="EAA6" name="SPARKLING HEART" softbank=">E327" unicode="+1F496">
|
1461
|
+
<desc>sparkling heart</desc>
|
1462
|
+
</e>
|
1463
|
+
<e docomo=">E6ED" glyphRefID="522" google="FEB11" id="B11" img_from="softbank" kddi=">EB75" name="GROWING HEART" softbank="E328" unicode="+1F497">
|
1464
|
+
<desc>heart growing bigger</desc>
|
1465
|
+
</e>
|
1466
|
+
<e docomo=">E6EC" glyphRefID="523" google="FEB12" id="B12" img_from="kddi" kddi="E4EA" name="HEART WITH ARROW" softbank="E329" unicode="+1F498">
|
1467
|
+
<desc>heart with an arrow through it</desc>
|
1468
|
+
</e>
|
1469
|
+
<e docomo=">E6EC" glyphRefID="524" google="FEB13" id="B13" img_from="kddi" kddi="EAA7" name="BLUE HEART" oldname="HEART-1" softbank="E32A" unicode="+1F499">
|
1470
|
+
<desc>Heart with blue color</desc>
|
1471
|
+
</e>
|
1472
|
+
<e docomo=">E6EC" glyphRefID="525" google="FEB14" id="B14" img_from="kddi" kddi="EAA8" name="GREEN HEART" oldname="HEART-2" softbank="E32B" unicode="+1F49A">
|
1473
|
+
<desc>Heart with green color</desc>
|
1474
|
+
</e>
|
1475
|
+
<e docomo=">E6EC" glyphRefID="526" google="FEB15" id="B15" img_from="kddi" kddi="EAA9" name="YELLOW HEART" oldname="HEART-3" softbank="E32C" unicode="+1F49B">
|
1476
|
+
<desc>Heart with yellow color</desc>
|
1477
|
+
</e>
|
1478
|
+
<e docomo=">E6EC" glyphRefID="527" google="FEB16" id="B16" img_from="kddi" kddi="EAAA" name="PURPLE HEART" oldname="HEART-4" softbank="E32D" unicode="+1F49C">
|
1479
|
+
<desc>Heart with purple color</desc>
|
1480
|
+
</e>
|
1481
|
+
<e docomo=">E6EC" glyphRefID="528" google="FEB17" id="B17" img_from="kddi" kddi="EB54" name="HEART WITH RIBBON" softbank="E437" unicode="+1F49D">
|
1482
|
+
<desc>Valentine's (heart with ribbon, or candy with heart)</desc>
|
1483
|
+
</e>
|
1484
|
+
<e docomo=">E6ED" glyphRefID="529" google="FEB18" id="B18" img_from="kddi" kddi="E5AF" name="REVOLVING HEARTS" softbank=">E327" unicode="+1F49E">
|
1485
|
+
<desc>cute</desc>
|
1486
|
+
</e>
|
1487
|
+
<e docomo=">E6F8" glyphRefID="530" google="FEB19" id="B19" img_from="softbank" kddi=">E595" name="HEART DECORATION" softbank="E204" unicode="+1F49F">
|
1488
|
+
<desc>Note: Softbank ruled lines, sometimes mapped to cute heart mark in other carriers</desc>
|
1489
|
+
</e>
|
1490
|
+
</subcategory>
|
1491
|
+
<subcategory name="Cards">
|
1492
|
+
<e docomo="E68D" google="FEB1A" id="B1A" kddi="EAA5" name="BLACK HEART SUIT" softbank="E20C" unicode="2665"/>
|
1493
|
+
<e docomo="E68E" google="FEB1B" id="B1B" kddi="E5A1" name="BLACK SPADE SUIT" softbank="E20E" unicode="2660"/>
|
1494
|
+
<e docomo="E68F" google="FEB1C" id="B1C" kddi="E5A2" name="BLACK DIAMOND SUIT" softbank="E20D" unicode="2666"/>
|
1495
|
+
<e docomo="E690" google="FEB1D" id="B1D" kddi="E5A3" name="BLACK CLUB SUIT" softbank="E20F" unicode="2663"/>
|
1496
|
+
</subcategory>
|
1497
|
+
<subcategory name="Signage and other symbols">
|
1498
|
+
<e docomo="E67F" glyphRefID="531" google="FEB1E" id="B1E" img_from="docomo" kddi="E47D" name="SMOKING SYMBOL" softbank="E30E" unicode="+1F6AC"/>
|
1499
|
+
<e docomo="E680" glyphRefID="532" google="FEB1F" id="B1F" img_from="docomo" kddi="E47E" name="NO SMOKING SYMBOL" softbank="E208" unicode="+1F6AD"/>
|
1500
|
+
<e docomo="E69B" google="FEB20" id="B20" kddi="E47F" name="WHEELCHAIR SYMBOL" softbank="E20A" unicode="267F"/>
|
1501
|
+
<e docomo="E6DE" glyphRefID="533" google="FEB22" id="B22" img_from="docomo" kddi="EB2C" name="TRIANGULAR FLAG ON POST" text_fallback="[旗]" unicode="+1F6A9">
|
1502
|
+
<ann>= location information</ann>
|
1503
|
+
<desc>Location information, a flag</desc>
|
1504
|
+
</e>
|
1505
|
+
<e docomo="E737" glyphRefID="534" google="FEB23" id="B23" img_from="kddi" kddi="E481" name="WARNING SIGN" softbank="E252" unicode="26A0">
|
1506
|
+
<desc>Unified with U+26A0. Danger / Caution / Warning</desc>
|
1507
|
+
</e>
|
1508
|
+
<e docomo=">E72F" glyphRefID="535" google="FEB26" id="B26" img_from="kddi" kddi="E484" name="NO ENTRY" softbank=">E137" unicode="26D4">
|
1509
|
+
<desc>No entrance, no trespassing</desc>
|
1510
|
+
</e>
|
1511
|
+
<e docomo="E735" google="FEB2C" id="B2C" kddi="EB79" name="BLACK UNIVERSAL RECYCLING SYMBOL" text_fallback="↑↓" unicode="267B"/>
|
1512
|
+
<e docomo="E71D" glyphRefID="399" google="FE7EB" id="7EB" img_from="docomo" kddi="E4AE" name="BICYCLE" softbank="E136" unicode="+1F6B2"/>
|
1513
|
+
<e docomo=">E733" glyphRefID="404" google="FE7F0" id="7F0" img_from="kddi" kddi="EB72" name="PEDESTRIAN" softbank="E201" unicode="+1F6B6">
|
1514
|
+
<ann>= walking</ann>
|
1515
|
+
</e>
|
1516
|
+
<e glyphRefID="536" google="FEB33" id="B33" img_from="softbank" name="MENS SYMBOL" softbank="E138" text_fallback="[♂]" unicode="+1F6B9">
|
1517
|
+
<ann>= man symbol</ann>
|
1518
|
+
<ann>= men's restroom</ann>
|
1519
|
+
</e>
|
1520
|
+
<e glyphRefID="537" google="FEB34" id="B34" img_from="softbank" name="WOMENS SYMBOL" softbank="E139" text_fallback="[♀]" unicode="+1F6BA">
|
1521
|
+
<ann>= woman symbol</ann>
|
1522
|
+
<ann>= women's restroom</ann>
|
1523
|
+
</e>
|
1524
|
+
<e docomo=">E6F7" glyphRefID="298" google="FE505" id="505" img_from="kddi" kddi="E5D8" name="BATH" softbank="E13F" unicode="+1F6C0"/>
|
1525
|
+
<e docomo="E66E" glyphRefID="299" google="FE506" id="506" img_from="docomo" kddi="E4A5" name="RESTROOM" softbank="E151" unicode="+1F6BB">
|
1526
|
+
<ann>= man and woman symbol with divider</ann>
|
1527
|
+
</e>
|
1528
|
+
<e docomo=">E66E" glyphRefID="300" google="FE507" id="507" img_from="softbank" kddi=">E4A5" name="TOILET" softbank="E140" unicode="+1F6BD"/>
|
1529
|
+
<e docomo=">E66E" glyphRefID="301" google="FE508" id="508" img_from="softbank" kddi=">E4A5" name="WATER CLOSET" softbank="E309" unicode="+1F6BE"/>
|
1530
|
+
<e glyphRefID="538" google="FEB35" id="B35" img_from="softbank" kddi=">EB18" name="BABY SYMBOL" softbank="E13A" text_fallback="[赤ちゃん]" unicode="+1F6BC">
|
1531
|
+
<desc>used as a sign for a baby; Crawling Baby</desc>
|
1532
|
+
<ann>= baby on board, baby changing station</ann>
|
1533
|
+
</e>
|
1534
|
+
<e docomo="E714" glyphRefID="280" google="FE4F3" id="4F3" img_from="docomo" name="DOOR" text_fallback="[ドア]" unicode="+1F6AA"/>
|
1535
|
+
<e docomo=">E738" glyphRefID="541" google="FEB48" id="B48" img_from="kddi" kddi="E541" name="NO ENTRY SIGN" oldname="NO ENTRY SIGN" text_fallback="[禁止]" unicode="+1F6AB">
|
1536
|
+
<ann>x (combining enclosing circle backslash - 20E0)</ann>
|
1537
|
+
<ann>x (no entry - 26D4)</ann>
|
1538
|
+
<desc>Prohibited (circle with diagonal slash); Do not enter</desc>
|
1539
|
+
</e>
|
1540
|
+
<e google="FEB49" id="B49" kddi="E557" name="HEAVY CHECK MARK" text_fallback="[チェックマーク]" unicode="2714">
|
1541
|
+
<desc>Check mark (blue)</desc>
|
1542
|
+
</e>
|
1543
|
+
</subcategory>
|
1544
|
+
<subcategory name="Square Latin letters">
|
1545
|
+
<e docomo="E6DB" glyphRefID="596" google="FEB84" id="B84" img_from="docomo" kddi="E5AB" name="SQUARED CL" oldname="CLEAR SIGN" text_fallback="[CL]" unicode="+1F191">
|
1546
|
+
<desc>Clear ("CL" stamp)</desc>
|
1547
|
+
<ann>= clear</ann>
|
1548
|
+
</e>
|
1549
|
+
<e glyphRefID="551" google="FEB38" id="B38" img_from="kddi" kddi="EA85" name="SQUARED COOL" oldname="COOL SIGN" softbank="E214" text_fallback="[COOL]" unicode="+1F192">
|
1550
|
+
<desc>cool!; hip</desc>
|
1551
|
+
</e>
|
1552
|
+
<e docomo="E6D7" glyphRefID="544" google="FEB21" id="B21" img_from="docomo" kddi="E578" name="SQUARED FREE" oldname="FREE SIGN" text_fallback="[FREE]" unicode="+1F193">
|
1553
|
+
<ann>= free postage</ann>
|
1554
|
+
<desc>a letter sign Free of Charge</desc>
|
1555
|
+
</e>
|
1556
|
+
<e docomo="E6D8" glyphRefID="594" google="FEB81" id="B81" img_from="docomo" kddi="EA88" name="SQUARED ID" oldname="IDENTIFICATION SIGN" softbank="E229" unicode="+1F194">
|
1557
|
+
<desc>ID ("ID" stamp)</desc>
|
1558
|
+
<ann>= identification, ID</ann>
|
1559
|
+
</e>
|
1560
|
+
<e docomo="E6DD" glyphRefID="549" google="FEB36" id="B36" img_from="docomo" kddi="E5B5" name="SQUARED NEW" oldname="NEW SIGN" softbank="E212" unicode="+1F195">
|
1561
|
+
<desc>a stamp, seal, sign</desc>
|
1562
|
+
</e>
|
1563
|
+
<e docomo="E72F" glyphRefID="547" google="FEB28" id="B28" img_from="docomo" name="SQUARED NG" oldname="NO GOOD SIGN" text_fallback="[NG]" unicode="+1F196">
|
1564
|
+
<desc>no good, NG</desc>
|
1565
|
+
<ann>= no good</ann>
|
1566
|
+
</e>
|
1567
|
+
<e docomo="E70B" glyphRefID="546" google="FEB27" id="B27" img_from="docomo" kddi="E5AD" name="SQUARED OK" oldname="OK SIGN" softbank="E24D" unicode="+1F197">
|
1568
|
+
<desc>a stamp, seal, button for approval</desc>
|
1569
|
+
</e>
|
1570
|
+
<e glyphRefID="553" google="FEB4F" id="B4F" img_from="kddi" kddi="E4E8" name="SQUARED SOS" oldname="SOS SIGN" text_fallback="[SOS]" unicode="+1F198">
|
1571
|
+
<ann>= search, hunt for missing person</ann>
|
1572
|
+
</e>
|
1573
|
+
<e glyphRefID="550" google="FEB37" id="B37" img_from="kddi" kddi="E50F" name="SQUARED UP WITH EXCLAMATION MARK" oldname="UP SIGN" softbank="E213" text_fallback="[UP!]" unicode="+1F199">
|
1574
|
+
<ann>= new information, update</ann>
|
1575
|
+
<desc>site renewed, updated, new information</desc>
|
1576
|
+
</e>
|
1577
|
+
<e glyphRefID="548" google="FEB32" id="B32" img_from="kddi" kddi="E5D2" name="SQUARED VS" oldname="VS SIGN" softbank="E12E" text_fallback="[VS]" unicode="+1F19A">
|
1578
|
+
<ann>= versus</ann>
|
1579
|
+
</e>
|
1580
|
+
</subcategory>
|
1581
|
+
<subcategory name="Square katakanas">
|
1582
|
+
<e glyphRefID="554" google="FEB24" id="B24" img_from="softbank" name="SQUARED KATAKANA KOKO" softbank="E203" text_fallback="[ココ]" unicode="+1F201">
|
1583
|
+
<desc>KATAKANA LETTERS KOKO; destination, here</desc>
|
1584
|
+
<ann>= here sign</ann>
|
1585
|
+
<ann># <square> 30B3 30B3</ann>
|
1586
|
+
</e>
|
1587
|
+
<e glyphRefID="563" google="FEB3F" id="B3F" img_from="kddi" kddi="EA87" name="SQUARED KATAKANA SA" softbank="E228" text_fallback="[サービス]" unicode="+1F202">
|
1588
|
+
<desc>サ: KATAKANA LETTER SA; service charge; for free, on the house;</desc>
|
1589
|
+
<ann>= service sign</ann>
|
1590
|
+
<ann>x (circled katakana sa - 32DA)</ann>
|
1591
|
+
<ann># <square> 30B5</ann>
|
1592
|
+
</e>
|
1593
|
+
</subcategory>
|
1594
|
+
<subcategory name="Squared ideographs">
|
1595
|
+
<e docomo="E738" glyphRefID="555" google="FEB2E" id="B2E" img_from="docomo" name="SQUARED CJK UNIFIED IDEOGRAPH-7981" text_fallback="[禁]" unicode="+1F232">
|
1596
|
+
<desc>禁: IDEOGRAPH PROHIBITION</desc>
|
1597
|
+
<ann>= prohibited sign</ann>
|
1598
|
+
<ann># <square> 7981</ann>
|
1599
|
+
</e>
|
1600
|
+
<e docomo="E739" glyphRefID="556" google="FEB2F" id="B2F" img_from="docomo" kddi="EA8A" name="SQUARED CJK UNIFIED IDEOGRAPH-7A7A" softbank="E22B" unicode="+1F233">
|
1601
|
+
<desc>空: IDEOGRAPH EMPTY; Vacant, seats available</desc>
|
1602
|
+
<ann>= empty sign</ann>
|
1603
|
+
<ann># <square> 7A7A</ann>
|
1604
|
+
</e>
|
1605
|
+
<e docomo="E73A" glyphRefID="557" google="FEB30" id="B30" img_from="docomo" name="SQUARED CJK UNIFIED IDEOGRAPH-5408" text_fallback="[合]" unicode="+1F234">
|
1606
|
+
<desc>合: IDEOGRAPH MATCH; approved, passed as in an examination</desc>
|
1607
|
+
<ann>= passed sign</ann>
|
1608
|
+
<ann># <square> 5408</ann>
|
1609
|
+
</e>
|
1610
|
+
<e docomo="E73B" glyphRefID="558" google="FEB31" id="B31" img_from="docomo" kddi="EA89" name="SQUARED CJK UNIFIED IDEOGRAPH-6E80" softbank="E22A" unicode="+1F235">
|
1611
|
+
<desc>満: IDEOGRAPH FULL; fully occupied, full tank, etc.</desc>
|
1612
|
+
<ann>= full sign</ann>
|
1613
|
+
<ann># <square> 6E80</ann>
|
1614
|
+
</e>
|
1615
|
+
<e glyphRefID="559" google="FEB39" id="B39" img_from="softbank" name="SQUARED CJK UNIFIED IDEOGRAPH-6709" softbank="E215" text_fallback="[有]" unicode="+1F236">
|
1616
|
+
<desc>有: IDEOGRAPH EXISTENCE; available, in stock; charges apply</desc>
|
1617
|
+
<ann>= existence sign</ann>
|
1618
|
+
<ann>x (circled ideograph have - 3292)</ann>
|
1619
|
+
<ann># <square> 6709</ann>
|
1620
|
+
</e>
|
1621
|
+
<e google="FEB3A" id="B3A" name="SQUARED CJK UNIFIED IDEOGRAPH-7121" softbank="E216" text_fallback="[無]" unicode="*1F21A">
|
1622
|
+
<desc>無: IDEOGRAPH NON-EXISTENCE; out of stock, unavailable; free</desc>
|
1623
|
+
<ann>= non-existence sign</ann>
|
1624
|
+
<ann># <square> 7121</ann>
|
1625
|
+
</e>
|
1626
|
+
<e glyphRefID="560" google="FEB3B" id="B3B" img_from="softbank" name="SQUARED CJK UNIFIED IDEOGRAPH-6708" softbank="E217" text_fallback="[月]" unicode="+1F237">
|
1627
|
+
<desc>月: IDEOGRAPH MOON; monthly charge, monthly rate; month</desc>
|
1628
|
+
<ann>= monthly sign</ann>
|
1629
|
+
<ann>x (circled ideograph moon - 328A)</ann>
|
1630
|
+
<ann># <square> 6708</ann>
|
1631
|
+
</e>
|
1632
|
+
<e glyphRefID="561" google="FEB3C" id="B3C" img_from="softbank" name="SQUARED CJK UNIFIED IDEOGRAPH-7533" softbank="E218" text_fallback="[申]" unicode="+1F238">
|
1633
|
+
<desc>申: IDEOGRAPH SAYING "application needed, apply here"</desc>
|
1634
|
+
<ann>= application sign</ann>
|
1635
|
+
<ann># <square> 7533</ann>
|
1636
|
+
</e>
|
1637
|
+
<e glyphRefID="562" google="FEB3E" id="B3E" img_from="kddi" kddi="EA86" name="SQUARED CJK UNIFIED IDEOGRAPH-5272" softbank="E227" text_fallback="[割]" unicode="+1F239">
|
1638
|
+
<desc>割: IDEOGRAPH DIVIDE;</desc>
|
1639
|
+
<ann>= discount sign</ann>
|
1640
|
+
<ann># <square> 5272</ann>
|
1641
|
+
</e>
|
1642
|
+
<e google="FEB40" id="B40" kddi="EA8B" name="SQUARED CJK UNIFIED IDEOGRAPH-6307" softbank="E22C" text_fallback="[指]" unicode="*1F22F">
|
1643
|
+
<desc>指: IDEOGRAPH POINTING; reserved, designated 指定</desc>
|
1644
|
+
<ann>= reserved sign</ann>
|
1645
|
+
<ann>"reserved" in trains, theaters, etc.</ann>
|
1646
|
+
<ann># <square> 6307</ann>
|
1647
|
+
</e>
|
1648
|
+
<e glyphRefID="564" google="FEB41" id="B41" img_from="kddi" kddi="EA8C" name="SQUARED CJK UNIFIED IDEOGRAPH-55B6" softbank="E22D" text_fallback="[営]" unicode="+1F23A">
|
1649
|
+
<desc>営: IDEOGRAPH BUSINESS; open for business 営業中; business hours 営業時間; branch office 営業所</desc>
|
1650
|
+
<ann>= in business sign</ann>
|
1651
|
+
<ann># <square> 55B6</ann>
|
1652
|
+
</e>
|
1653
|
+
</subcategory>
|
1654
|
+
<subcategory name="Circled ideographs">
|
1655
|
+
<e docomo="E734" google="FEB2B" id="B2B" img_from="docomo" kddi="E4F1" name="CIRCLED IDEOGRAPH SECRET" softbank="E315" unicode="3299">
|
1656
|
+
<desc>秘: IDEOGRAPH SECRET (TOP SECRET SIGN)</desc>
|
1657
|
+
</e>
|
1658
|
+
<e google="FEB43" id="B43" kddi="EA99" name="CIRCLED IDEOGRAPH CONGRATULATION" softbank="E30D" text_fallback="[祝]" unicode="3297">
|
1659
|
+
<desc>祝: IDEOGRAPH CELEBRATION; celebration sign; congratulations; related to ㈷ U+3237 PARENTHESIZED IDEOGRAPH CONGRATULATION (= ARIB-9308)</desc>
|
1660
|
+
</e>
|
1661
|
+
<e glyphRefID="565" google="FEB3D" id="B3D" img_from="kddi" kddi="E4F7" name="CIRCLED IDEOGRAPH ADVANTAGE" softbank="E226" text_fallback="[得]" unicode="+1F250">
|
1662
|
+
<desc>得: IDEOGRAPH ADVANTAGE; good bargain; special tax break on public bonds</desc>
|
1663
|
+
<ann>= advantage sign</ann>
|
1664
|
+
<ann># <circle> 5F97</ann>
|
1665
|
+
</e>
|
1666
|
+
<e glyphRefID="566" google="FEB50" id="B50" img_from="kddi" kddi="EB01" name="CIRCLED IDEOGRAPH ACCEPT" text_fallback="[可]" unicode="+1F251">
|
1667
|
+
<desc>Han character 可; accepted, acceptable</desc>
|
1668
|
+
<ann>= accept sign</ann>
|
1669
|
+
<ann># <circle> 53EF</ann>
|
1670
|
+
</e>
|
1671
|
+
</subcategory>
|
1672
|
+
<subcategory name="Arithmetic symbols">
|
1673
|
+
<e glyphRefID="567" google="FEB51" id="B51" img_from="kddi" kddi="E53C" name="HEAVY PLUS SIGN" text_fallback="[+]" unicode="+2795">
|
1674
|
+
<desc>Not unified with CIRCLED PLUS</desc>
|
1675
|
+
</e>
|
1676
|
+
<e glyphRefID="568" google="FEB52" id="B52" img_from="kddi" kddi="E53D" name="HEAVY MINUS SIGN" text_fallback="[-]" unicode="+2796">
|
1677
|
+
<desc>Not unified with CIRCLED MINUS</desc>
|
1678
|
+
</e>
|
1679
|
+
<e google="FEB53" id="B53" img_from="kddi" kddi="E54F" name="HEAVY MULTIPLICATION X" softbank=">E333" text_fallback="[×]" unicode="2716">
|
1680
|
+
<desc>Unified with U+2716 in the Dingbats block</desc>
|
1681
|
+
</e>
|
1682
|
+
<e glyphRefID="569" google="FEB54" id="B54" img_from="kddi" kddi="E554" name="HEAVY DIVISION SIGN" text_fallback="[÷]" unicode="+2797">
|
1683
|
+
<desc>disunified from ÷ U+00F7</desc>
|
1684
|
+
</e>
|
1685
|
+
</subcategory>
|
1686
|
+
<subcategory name="Comic style symbols">
|
1687
|
+
<e docomo="E6F8" glyphRefID="570" google="FEB55" id="B55" img_from="docomo" name="DIAMOND SHAPE WITH A DOT INSIDE" unicode="+1F4A0">
|
1688
|
+
<desc>Cute (pink diamond shaped thing)</desc>
|
1689
|
+
<ann>= kawaii, cute</ann>
|
1690
|
+
</e>
|
1691
|
+
<e docomo="E6FB" glyphRefID="571" google="FEB56" id="B56" img_from="docomo" kddi="E476" name="ELECTRIC LIGHT BULB" softbank="E10F" unicode="+1F4A1">
|
1692
|
+
<ann>= idea</ann>
|
1693
|
+
</e>
|
1694
|
+
<e docomo="E6FC" glyphRefID="572" google="FEB57" id="B57" img_from="docomo" kddi="E4E5" name="ANGER SYMBOL" oldname="ANGER SIGN" softbank="E334" unicode="+1F4A2">
|
1695
|
+
<desc>Angry (comic book style symbol where a punch lands)</desc>
|
1696
|
+
</e>
|
1697
|
+
<e docomo="E6FE" glyphRefID="573" google="FEB58" id="B58" img_from="docomo" kddi="E47A" name="BOMB" softbank="E311" unicode="+1F4A3">
|
1698
|
+
<desc>Bomb (about to blow up)</desc>
|
1699
|
+
</e>
|
1700
|
+
<e docomo="E701" glyphRefID="574" google="FEB59" id="B59" img_from="docomo" kddi="E475" name="SLEEPING SYMBOL" oldname="SLEEPING SIGN" softbank="E13C" unicode="+1F4A4">
|
1701
|
+
<desc>Sleepy ("zzz")</desc>
|
1702
|
+
</e>
|
1703
|
+
<e docomo="E705" glyphRefID="575" google="FEB5A" id="B5A" img_from="kddi" kddi="E5B0" name="COLLISION SYMBOL" text_fallback="[ドンッ]" unicode="+1F4A5">
|
1704
|
+
<desc>Bump (collision)</desc>
|
1705
|
+
</e>
|
1706
|
+
<e docomo="E706" glyphRefID="576" google="FEB5B" id="B5B" img_from="docomo" kddi="E5B1" name="SPLASHING SWEAT SYMBOL" oldname="SPLASHING SWEAT" softbank="E331" unicode="+1F4A6">
|
1707
|
+
<desc>Sweat</desc>
|
1708
|
+
</e>
|
1709
|
+
<e docomo="E707" glyphRefID="577" google="FEB5C" id="B5C" img_from="docomo" kddi="E4E6" name="DROP OF WATER" oldname="DRIP" softbank=">E331" unicode="+1F4A7">
|
1710
|
+
<desc>sweat drip; tear drop</desc>
|
1711
|
+
</e>
|
1712
|
+
<e docomo="E708" glyphRefID="578" google="FEB5D" id="B5D" img_from="docomo" kddi="E4F4" name="DASH SYMBOL" softbank="E330" unicode="+1F4A8">
|
1713
|
+
<ann>= running dash</ann>
|
1714
|
+
<desc>Dash (running dash … the cloud of dust left behind)</desc>
|
1715
|
+
</e>
|
1716
|
+
<e glyphRefID="281" google="FE4F4" id="4F4" img_from="kddi" kddi="E4F5" name="PILE OF POO" oldname="DUNG" softbank="E05A" text_fallback="[ウンチ]" unicode="+1F4A9">
|
1717
|
+
<ann>= dog dirt</ann>
|
1718
|
+
</e>
|
1719
|
+
<e glyphRefID="579" google="FEB5E" id="B5E" img_from="kddi" kddi="E4E9" name="FLEXED BICEPS" softbank="E14C" text_fallback="[力こぶ]" unicode="+1F4AA">
|
1720
|
+
<ann>= strong, muscled</ann>
|
1721
|
+
</e>
|
1722
|
+
<e glyphRefID="580" google="FEB5F" id="B5F" img_from="kddi" kddi="EB5C" name="DIZZY SYMBOL" softbank=">E407" text_fallback="[クラクラ]" unicode="+1F4AB">
|
1723
|
+
<ann>= circling stars</ann>
|
1724
|
+
</e>
|
1725
|
+
<e glyphRefID="341" google="FE532" id="532" img_from="kddi" kddi="E4FD" name="SPEECH BALLOON" text_fallback="[フキダシ]" unicode="+1F4AC">
|
1726
|
+
<ann>= comic book conversation bubble</ann>
|
1727
|
+
</e>
|
1728
|
+
</subcategory>
|
1729
|
+
<subcategory name="Stars, asterisks and snowflakes">
|
1730
|
+
<e docomo="E6FA" glyphRefID="581" google="FEB60" id="B60" img_from="docomo" kddi="EAAB" name="SPARKLES" softbank="E32E" unicode="+2728">
|
1731
|
+
<desc>sparkling new</desc>
|
1732
|
+
</e>
|
1733
|
+
<e docomo=">E6F8" google="FEB61" id="B61" kddi="E479" name="EIGHT POINTED BLACK STAR" softbank="E205" unicode="2734">
|
1734
|
+
<desc>Yellow glitter, spark</desc>
|
1735
|
+
</e>
|
1736
|
+
<e docomo=">E6F8" google="FEB62" id="B62" kddi="E53E" name="EIGHT SPOKED ASTERISK" softbank="E206" unicode="2733">
|
1737
|
+
<desc>Green/blue glitter, star</desc>
|
1738
|
+
</e>
|
1739
|
+
<e docomo=">E69C" google="FEB65" id="B65" kddi="E53A" name="MEDIUM WHITE CIRCLE" softbank=">E219" unicode="26AA">
|
1740
|
+
<desc>Small circle (red)</desc>
|
1741
|
+
</e>
|
1742
|
+
<e docomo=">E69C" google="FEB66" id="B66" kddi="E53B" name="MEDIUM BLACK CIRCLE" softbank=">E219" unicode="26AB">
|
1743
|
+
<desc>Small circle (blue)</desc>
|
1744
|
+
</e>
|
1745
|
+
</subcategory>
|
1746
|
+
<subcategory name="Geometric shapes">
|
1747
|
+
<e docomo=">E69C" glyphRefID="582" google="FEB63" id="B63" img_from="kddi" kddi="E54A" name="LARGE RED CIRCLE" oldname="LARGE CIRCLE-1" softbank="E219" unicode="+1F534">
|
1748
|
+
<desc>
|
1749
|
+
Large circle (red). Disunified from ○ U+25CB and ◯ U+25EF due to source separation rule (Shift_JIS).
|
1750
|
+
Disunified from ARIB-9104=U+2B58 HEAVY CIRCLE because of different semantics.
|
1751
|
+
Not "WHITE LARGE CIRCLE" because the counterpart to ⬤ U+2B24 BLACK LARGE CIRCLE is ◯ LARGE CIRCLE.
|
1752
|
+
</desc>
|
1753
|
+
<ann>x (large circle - 25EF)</ann>
|
1754
|
+
<ann>x (black large circle - 2B24)</ann>
|
1755
|
+
<design>Same basic shape as for ⬤ U+2B24 BLACK LARGE CIRCLE.</design>
|
1756
|
+
</e>
|
1757
|
+
<e docomo=">E69C" glyphRefID="623" google="FEB64" id="B64" kddi="E54B" name="LARGE BLUE CIRCLE" oldname="LARGE CIRCLE-2" softbank=">E21A" unicode="+1F535">
|
1758
|
+
<desc>Large circle (blue). disunified from U+25CF due to source separation rule (Shift_JIS).</desc>
|
1759
|
+
<ann>x (large circle - 25EF)</ann>
|
1760
|
+
<ann>x (heavy large circle - 2B55)</ann>
|
1761
|
+
<design>Same basic shape as for ⬤ U+2B24 BLACK LARGE CIRCLE.</design>
|
1762
|
+
</e>
|
1763
|
+
<e docomo=">E69C" glyphRefID="583" google=">FEB64" id="BA3" img_from="softbank" kddi=">E54B" name="BLACK SQUARE BUTTON" oldname="BLACK ROUNDED SQUARE" softbank="E21A" unicode="+1F532">
|
1764
|
+
<design>Same shapes for e-BA3 and e-B67.</design>
|
1765
|
+
</e>
|
1766
|
+
<e docomo=">E69C" glyphRefID="584" google="FEB67" id="B67" img_from="softbank" kddi=">E54B" name="WHITE SQUARE BUTTON" oldname="WHITE ROUNDED SQUARE" softbank="E21B" unicode="+1F533">
|
1767
|
+
<design>Same shapes for e-BA3 and e-B67.</design>
|
1768
|
+
</e>
|
1769
|
+
<e google="FEB68" id="B68" kddi="E48B" name="WHITE MEDIUM STAR" softbank="E32F" text_fallback="[☆]" unicode="2B50">
|
1770
|
+
<desc>disunified from ★ U+2605 BLACK STAR and ☆ U+2606 WHITE STAR due to source separation rule (Shift_JIS).</desc>
|
1771
|
+
</e>
|
1772
|
+
<e google="FEB6B" id="B6B" kddi="E548" name="WHITE LARGE SQUARE" softbank=">E21B" text_fallback="■" unicode="2B1C">
|
1773
|
+
<desc>Extra large square (orange). disunified from U+25A1 due to source separation rule (Shift_JIS).</desc>
|
1774
|
+
</e>
|
1775
|
+
<e google="FEB6C" id="B6C" kddi="E549" name="BLACK LARGE SQUARE" softbank=">E21A" text_fallback="■" unicode="2B1B">
|
1776
|
+
<desc>Extra large square (green). disunified from U+25A0 due to source separation rule (Shift_JIS).</desc>
|
1777
|
+
</e>
|
1778
|
+
<e google="FEB6D" id="B6D" kddi="E531" name="WHITE SMALL SQUARE" softbank=">E21B" text_fallback="■" unicode="25AB">
|
1779
|
+
<desc>Small square (orange)</desc>
|
1780
|
+
</e>
|
1781
|
+
<e google="FEB6E" id="B6E" kddi="E532" name="BLACK SMALL SQUARE" softbank=">E21A" text_fallback="■" unicode="25AA">
|
1782
|
+
<desc>Small square (green)</desc>
|
1783
|
+
</e>
|
1784
|
+
<e google="FEB6F" id="B6F" kddi="E534" name="WHITE MEDIUM SMALL SQUARE" softbank=">E21B" text_fallback="■" unicode="25FD">
|
1785
|
+
<desc>Medium square (orange)</desc>
|
1786
|
+
</e>
|
1787
|
+
<e google="FEB70" id="B70" kddi="E535" name="BLACK MEDIUM SMALL SQUARE" softbank=">E21A" text_fallback="■" unicode="25FE">
|
1788
|
+
<desc>Medium square (green)</desc>
|
1789
|
+
</e>
|
1790
|
+
<e google="FEB71" id="B71" kddi="E538" name="WHITE MEDIUM SQUARE" softbank=">E21B" text_fallback="■" unicode="25FB">
|
1791
|
+
<desc>Large square (orange)</desc>
|
1792
|
+
</e>
|
1793
|
+
<e google="FEB72" id="B72" kddi="E539" name="BLACK MEDIUM SQUARE" softbank=">E21A" text_fallback="■" unicode="25FC">
|
1794
|
+
<desc>Large square (green)</desc>
|
1795
|
+
</e>
|
1796
|
+
<e glyphRefID="587" google="FEB73" id="B73" img_from="kddi" kddi="E546" name="LARGE ORANGE DIAMOND" oldname="LARGE DIAMOND-1" softbank=">E21B" text_fallback="◆" unicode="+1F536">
|
1797
|
+
<desc>Large diamond (orange). disunified from ◇ U+25C7 WHITE DIAMOND due to source separation rule (Shift_JIS).</desc>
|
1798
|
+
</e>
|
1799
|
+
<e glyphRefID="588" google="FEB74" id="B74" img_from="kddi" kddi="E547" name="LARGE BLUE DIAMOND" oldname="LARGE DIAMOND-2" softbank=">E21B" text_fallback="◆" unicode="+1F537">
|
1800
|
+
<desc>Large diamond (blue). disunified from ◆ U+25C6 BLACK DIAMOND due to source separation rule (Shift_JIS).</desc>
|
1801
|
+
</e>
|
1802
|
+
<e glyphRefID="589" google="FEB75" id="B75" img_from="kddi" kddi="E536" name="SMALL ORANGE DIAMOND" oldname="SMALL DIAMOND-1" softbank=">E21B" text_fallback="◆" unicode="+1F538">
|
1803
|
+
<desc>Small diamond (orange).</desc>
|
1804
|
+
<design>Same basic shape as ⬩ U+2B29 BLACK SMALL DIAMOND</design>
|
1805
|
+
</e>
|
1806
|
+
<e glyphRefID="624" google="FEB76" id="B76" kddi="E537" name="SMALL BLUE DIAMOND" oldname="SMALL DIAMOND-2" softbank=">E21B" text_fallback="◆" unicode="+1F539">
|
1807
|
+
<desc>Small diamond (blue).</desc>
|
1808
|
+
<design>Same basic shape as ⬩ U+2B29 BLACK SMALL DIAMOND</design>
|
1809
|
+
</e>
|
1810
|
+
<e docomo=">E6FA" google="FEB77" id="B77" kddi="E46C" name="SPARKLE" softbank=">E32E" unicode="2747">
|
1811
|
+
<desc>Spark</desc>
|
1812
|
+
</e>
|
1813
|
+
</subcategory>
|
1814
|
+
<subcategory name="Japanese school grade symbols">
|
1815
|
+
<e glyphRefID="592" google="FEB7A" id="B7A" img_from="kddi" kddi="E4F0" name="WHITE FLOWER" text_fallback="[花丸]" unicode="+1F4AE">
|
1816
|
+
<ann>= brilliant homework</ann>
|
1817
|
+
<desc>❀ U+2740 WHITE FLORETTE?; Symbol that a teacher writes on homework for "brilliant!" (花丸)</desc>
|
1818
|
+
</e>
|
1819
|
+
<e glyphRefID="593" google="FEB7B" id="B7B" img_from="kddi" kddi="E4F2" name="HUNDRED POINTS SYMBOL" text_fallback="[100点]" unicode="+1F4AF">
|
1820
|
+
<ann>= perfect score</ann>
|
1821
|
+
<desc>100 (perfect score), e.g. school exam</desc>
|
1822
|
+
</e>
|
1823
|
+
</subcategory>
|
1824
|
+
<subcategory name="User interface symbols">
|
1825
|
+
<e docomo="E6DA" google="FEB83" id="B83" kddi="E55D" name="LEFTWARDS ARROW WITH HOOK" text_fallback="←┘" unicode="21A9">
|
1826
|
+
<desc>Continue (the [enter] key arrow)</desc>
|
1827
|
+
</e>
|
1828
|
+
<e google="FEB88" id="B88" kddi="E55C" name="RIGHTWARDS ARROW WITH HOOK" text_fallback="└→" unicode="21AA">
|
1829
|
+
<desc>Enter arrow (backwards)</desc>
|
1830
|
+
</e>
|
1831
|
+
<e docomo=">E735" glyphRefID="606" google="FEB91" id="B91" img_from="kddi" kddi="EB0D" name="CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS" oldname="DOUBLE CLOCKWISE OPEN CIRCLE ARROWS" text_fallback="↑↓" unicode="+1F503">
|
1832
|
+
<ann>= reload</ann>
|
1833
|
+
</e>
|
1834
|
+
<e glyphRefID="451" google="FE821" id="821" img_from="softbank" kddi="E511" name="SPEAKER WITH THREE SOUND WAVES" softbank="E141" text_fallback="[スピーカ]" unicode="+1F50A">
|
1835
|
+
<ann>= sound</ann>
|
1836
|
+
</e>
|
1837
|
+
<e glyphRefID="289" google="FE4FC" id="4FC" img_from="kddi" kddi="E584" name="BATTERY" text_fallback="[電池]" unicode="+1F50B"/>
|
1838
|
+
<e glyphRefID="291" google="FE4FE" id="4FE" img_from="kddi" kddi="E589" name="ELECTRIC PLUG" text_fallback="[コンセント]" unicode="+1F50C">
|
1839
|
+
<desc>wall outlet</desc>
|
1840
|
+
</e>
|
1841
|
+
<e docomo="E6DC" glyphRefID="597" google="FEB85" id="B85" img_from="docomo" kddi="E518" name="LEFT-POINTING MAGNIFYING GLASS" softbank="E114" unicode="+1F50D">
|
1842
|
+
<ann>= search</ann>
|
1843
|
+
</e>
|
1844
|
+
<e docomo=">E6DC" glyphRefID="598" google="FEB8D" id="B8D" img_from="kddi" kddi="EB05" name="RIGHT-POINTING MAGNIFYING GLASS" softbank=">E114" unicode="+1F50E">
|
1845
|
+
<ann>= get more details</ann>
|
1846
|
+
</e>
|
1847
|
+
<e docomo=">E6D9" glyphRefID="599" google="FEB86" id="B86" img_from="softbank" kddi="E51C" name="LOCK" softbank="E144" unicode="+1F512">
|
1848
|
+
<desc>Lock (closed padlock)</desc>
|
1849
|
+
<ann>= padlock in locked position</ann>
|
1850
|
+
</e>
|
1851
|
+
<e docomo=">E6D9" glyphRefID="600" google="FEB87" id="B87" img_from="softbank" kddi=">E51C" name="OPEN LOCK" softbank="E145" unicode="+1F513">
|
1852
|
+
<desc>Lock (open padlock)</desc>
|
1853
|
+
</e>
|
1854
|
+
<e docomo=">E6D9" glyphRefID="605" google="FEB90" id="B90" img_from="kddi" kddi="EB0C" name="LOCK WITH INK PEN" softbank=">E144" unicode="+1F50F">
|
1855
|
+
<ann>= privacy</ann>
|
1856
|
+
<desc>(padlock with ink pen)</desc>
|
1857
|
+
</e>
|
1858
|
+
<e docomo=">E6D9" glyphRefID="601" google="FEB8A" id="B8A" img_from="kddi" kddi="EAFC" name="CLOSED LOCK WITH KEY" softbank=">E144" unicode="+1F510">
|
1859
|
+
<ann>= secure</ann>
|
1860
|
+
<desc>(lock with certificate)</desc>
|
1861
|
+
</e>
|
1862
|
+
<e docomo="E6D9" glyphRefID="595" google="FEB82" id="B82" img_from="docomo" kddi="E519" name="KEY" softbank="E03F" unicode="+1F511">
|
1863
|
+
<desc>Password (key). Not unified with ARIB-9071=U+26BF SQUARED KEY because no carrier shows this key in an enclosing square.</desc>
|
1864
|
+
</e>
|
1865
|
+
<e docomo="E713" glyphRefID="279" google="FE4F2" id="4F2" img_from="docomo" kddi="E512" name="BELL" softbank="E325" unicode="+1F514"/>
|
1866
|
+
<e google="FEB8B" id="B8B" kddi="EB02" name="BALLOT BOX WITH CHECK" text_fallback="[チェックマーク]" unicode="2611">
|
1867
|
+
<desc>Checked checkbox</desc>
|
1868
|
+
</e>
|
1869
|
+
<e glyphRefID="602" google="FEB8C" id="B8C" img_from="kddi" kddi="EB04" name="RADIO BUTTON" text_fallback="[ラジオボタン]" unicode="+1F518">
|
1870
|
+
<desc>Selected radio button</desc>
|
1871
|
+
</e>
|
1872
|
+
<e glyphRefID="604" google="FEB8F" id="B8F" img_from="kddi" kddi="EB07" name="BOOKMARK" text_fallback="[ブックマーク]" unicode="+1F516">
|
1873
|
+
<desc>Bookmark list ("お気に入り")</desc>
|
1874
|
+
</e>
|
1875
|
+
<e glyphRefID="543" google="FEB4B" id="B4B" img_from="kddi" kddi="E58A" name="LINK SYMBOL" text_fallback="[リンク]" unicode="+1F517">
|
1876
|
+
<desc>Disunified from ♾ U+267E PERMANENT PAPER SIGN; Link with a twist</desc>
|
1877
|
+
</e>
|
1878
|
+
</subcategory>
|
1879
|
+
<subcategory name="Words with arrows">
|
1880
|
+
<e glyphRefID="603" google="FEB8E" id="B8E" img_from="kddi" kddi="EB06" name="BACK WITH LEFTWARDS ARROW ABOVE" oldname="BACK WITH LEFT ARROW ABOVE" softbank=">E235" text_fallback="[←BACK]" unicode="+1F519">
|
1881
|
+
<desc>Back (left arrow with "BACK")</desc>
|
1882
|
+
</e>
|
1883
|
+
<e docomo="E6B9" glyphRefID="23" google="FE01A" id="01A" img_from="docomo" name="END WITH LEFTWARDS ARROW ABOVE" oldname="END WITH LEFT ARROW ABOVE" text_fallback="[end]" unicode="+1F51A"/>
|
1884
|
+
<e docomo="E6B8" glyphRefID="22" google="FE019" id="019" img_from="docomo" name="ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE" oldname="ON WITH DOUBLE POINTING ARROW ABOVE" text_fallback="[ON]" unicode="+1F51B"/>
|
1885
|
+
<e docomo="E6B7" glyphRefID="21" google="FE018" id="018" img_from="docomo" name="SOON WITH RIGHTWARDS ARROW ABOVE" oldname="SOON WITH RIGHT ARROW ABOVE" text_fallback="[SOON]" unicode="+1F51C">
|
1886
|
+
<desc>soon</desc>
|
1887
|
+
</e>
|
1888
|
+
<e glyphRefID="552" google="FEB42" id="B42" img_from="softbank" name="TOP WITH UPWARDS ARROW ABOVE" oldname="TOP WITH UP-POINTING TRIANGLE SIGN" softbank="E24C" text_fallback="[TOP]" unicode="+1F51D">
|
1889
|
+
<ann>= top of page</ann>
|
1890
|
+
</e>
|
1891
|
+
</subcategory>
|
1892
|
+
<subcategory name="Miscellaneous">
|
1893
|
+
<e google="FEB4C" id="B4C" kddi="E58C" name="EM SPACE" unicode="2003">
|
1894
|
+
<desc>Note: KDDI's Full blank (mapped to EM SPACE)</desc>
|
1895
|
+
</e>
|
1896
|
+
<e google="FEB4D" id="B4D" kddi="E58D" name="EN SPACE" unicode="2002">
|
1897
|
+
<desc>Note: KDDI's Half blank (mapped to EN SPACE)</desc>
|
1898
|
+
</e>
|
1899
|
+
<e google="FEB4E" id="B4E" kddi="E58E" name="FOUR-PER-EM SPACE" unicode="2005">
|
1900
|
+
<desc>Note: KDDI's Quarter blank (mapped to FOUR-PER-EM SQUARE)</desc>
|
1901
|
+
</e>
|
1902
|
+
<e glyphRefID="542" google="FEB4A" id="B4A" img_from="kddi" kddi="E55E" name="WHITE HEAVY CHECK MARK" text_fallback="[チェックマーク]" unicode="+2705">
|
1903
|
+
<ann>x (heavy check mark - 2714)</ann>
|
1904
|
+
<desc>Check mark (red); not unified with ✓ U+2713</desc>
|
1905
|
+
<design>Should look like a hollow version (that is, without fill) of ✔ U+2714 HEAVY CHECK MARK.</design>
|
1906
|
+
</e>
|
1907
|
+
<e docomo="E693" glyphRefID="608" google="FEB93" id="B93" img_from="kddi" kddi="EB83" name="RAISED FIST" softbank="E010" unicode="+270A">
|
1908
|
+
<ann>= rock in Rock, Paper, Scissors game</ann>
|
1909
|
+
<ann>x (raised hand - 270B)</ann>
|
1910
|
+
<ann>x (victory hand - 270C)</ann>
|
1911
|
+
<design>Harmonize design with ✌ U+270C VICTORY HAND Dingbat.</design>
|
1912
|
+
</e>
|
1913
|
+
<e docomo="E695" glyphRefID="609" google="FEB95" id="B95" img_from="kddi" kddi="E5A7" name="RAISED HAND" softbank="E012" unicode="+270B">
|
1914
|
+
<ann>= paper in Rock, Paper, Scissors game</ann>
|
1915
|
+
<ann>x (raised fist - 270A)</ann>
|
1916
|
+
<ann>x (victory hand - 270C)</ann>
|
1917
|
+
<design>Harmonize design with ✌ U+270C VICTORY HAND Dingbat.</design>
|
1918
|
+
</e>
|
1919
|
+
<e docomo="E694" google="FEB94" id="B94" kddi="E5A6" name="VICTORY HAND" softbank="E011" unicode="270C">
|
1920
|
+
<ann>= scissors in Rock, Paper, Scissors game</ann>
|
1921
|
+
<ann>* commonly used as "Victory" sign</ann>
|
1922
|
+
<ann>x (raised fist - 270A)</ann>
|
1923
|
+
<ann>x (raised hand - 270B)</ann>
|
1924
|
+
</e>
|
1925
|
+
</subcategory>
|
1926
|
+
<subcategory name="Hand symbols">
|
1927
|
+
<e docomo="E6FD" glyphRefID="610" google="FEB96" id="B96" img_from="docomo" kddi="E4F3" name="FISTED HAND SIGN" oldname="FISTED HAND" softbank="E00D" unicode="+1F44A">
|
1928
|
+
<ann>= punch</ann>
|
1929
|
+
</e>
|
1930
|
+
<e docomo="E727" glyphRefID="611" google="FEB97" id="B97" img_from="kddi" kddi="E4F9" name="THUMBS UP SIGN" softbank="E00E" unicode="+1F44D"/>
|
1931
|
+
<e google="FEB98" id="B98" kddi="E4F6" name="WHITE UP POINTING INDEX" softbank="E00F" text_fallback="[人差し指]" unicode="261D">
|
1932
|
+
<desc>No. 1</desc>
|
1933
|
+
</e>
|
1934
|
+
<e glyphRefID="612" google="FEB99" id="B99" img_from="kddi" kddi="EA8D" name="WHITE UP POINTING BACKHAND INDEX" softbank="E22E" text_fallback="[↑]" unicode="+1F446">
|
1935
|
+
<desc>Up</desc>
|
1936
|
+
<design>Similar to ☝ U+261D WHITE UP POINTING INDEX but showing the back of the hand instead of the palm side.</design>
|
1937
|
+
</e>
|
1938
|
+
<e glyphRefID="613" google="FEB9A" id="B9A" img_from="kddi" kddi="EA8E" name="WHITE DOWN POINTING BACKHAND INDEX" softbank="E22F" text_fallback="[↓]" unicode="+1F447">
|
1939
|
+
<desc>Down</desc>
|
1940
|
+
<design>Similar to ☟ U+261F WHITE DOWN POINTING INDEX but showing the back of the hand instead of the palm side.</design>
|
1941
|
+
</e>
|
1942
|
+
<e glyphRefID="614" google="FEB9B" id="B9B" img_from="kddi" kddi="E4FF" name="WHITE LEFT POINTING BACKHAND INDEX" softbank="E230" text_fallback="[←]" unicode="+1F448">
|
1943
|
+
<desc>Left</desc>
|
1944
|
+
<design>Similar to ☜ U+261C WHITE LEFT POINTING INDEX but showing the back of the hand instead of the palm side.</design>
|
1945
|
+
</e>
|
1946
|
+
<e glyphRefID="615" google="FEB9C" id="B9C" img_from="kddi" kddi="E500" name="WHITE RIGHT POINTING BACKHAND INDEX" softbank="E231" text_fallback="[→]" unicode="+1F449">
|
1947
|
+
<desc>Right</desc>
|
1948
|
+
<design>Similar to ☞ U+261E WHITE RIGHT POINTING INDEX but showing the back of the hand instead of the palm side.</design>
|
1949
|
+
</e>
|
1950
|
+
<e docomo=">E695" glyphRefID="616" google="FEB9D" id="B9D" img_from="kddi" kddi="EAD6" name="WAVING HAND SIGN" oldname="WAVING HAND" softbank="E41E" unicode="+1F44B">
|
1951
|
+
<desc>Waving hello</desc>
|
1952
|
+
</e>
|
1953
|
+
<e glyphRefID="617" google="FEB9E" id="B9E" img_from="kddi" kddi="EAD3" name="CLAPPING HANDS SIGN" oldname="CLAPPING HANDS" softbank="E41F" text_fallback="[拍手]" unicode="+1F44F">
|
1954
|
+
<desc>Clapping</desc>
|
1955
|
+
</e>
|
1956
|
+
<e docomo=">E70B" glyphRefID="618" google="FEB9F" id="B9F" img_from="kddi" kddi="EAD4" name="OK HAND SIGN" softbank="E420" unicode="+1F44C">
|
1957
|
+
<desc>OK sign</desc>
|
1958
|
+
</e>
|
1959
|
+
<e docomo=">E700" glyphRefID="619" google="FEBA0" id="BA0" img_from="kddi" kddi="EAD5" name="THUMBS DOWN SIGN" softbank="E421" unicode="+1F44E">
|
1960
|
+
<desc>Thumbs down</desc>
|
1961
|
+
</e>
|
1962
|
+
<e docomo=">E695" glyphRefID="620" google="FEBA1" id="BA1" img_from="softbank" kddi=">EAD6" name="OPEN HANDS SIGN" oldname="OPEN HANDS" softbank="E422" unicode="+1F450">
|
1963
|
+
<desc>Ohhaa! Good morning gesture. Open hands with the money sign</desc>
|
1964
|
+
</e>
|
1965
|
+
<e google="FEBA2" id="BA2" img_from="google" in_proposal="no" name="ROCK ON" text_fallback="[ロックオン]"/>
|
1966
|
+
</subcategory>
|
1967
|
+
</category>
|
1968
|
+
<category name="8. Business logos/symbols">
|
1969
|
+
<subcategory in_proposal="no" name="Emoji compatibility symbols">
|
1970
|
+
<e docomo="E6D1" glyphRefID="626" google="FEE10" id="E10" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-1" text_fallback="[iモード]">
|
1971
|
+
<desc>Original name: I-MODE</desc>
|
1972
|
+
</e>
|
1973
|
+
<e docomo="E6D2" glyphRefID="627" google="FEE11" id="E11" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-2" text_fallback="[iモード]">
|
1974
|
+
<desc>Original name: I-MODE WITH FRAME</desc>
|
1975
|
+
</e>
|
1976
|
+
<e docomo="E6D4" glyphRefID="628" google="FEE12" id="E12" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-3" text_fallback="[ドコモ]">
|
1977
|
+
<desc>Original name: PROVIDED BY DOCOMO</desc>
|
1978
|
+
</e>
|
1979
|
+
<e docomo="E6D5" glyphRefID="629" google="FEE13" id="E13" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-4" text_fallback="[ドコモポイント]">
|
1980
|
+
<desc>Original name: DOCOMO POINT</desc>
|
1981
|
+
</e>
|
1982
|
+
<e docomo="E70C" glyphRefID="630" google="FEE14" id="E14" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-5" text_fallback="[iアプリ]">
|
1983
|
+
<desc>Original name: I-APPLI</desc>
|
1984
|
+
</e>
|
1985
|
+
<e docomo="E70D" glyphRefID="631" google="FEE15" id="E15" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-6" text_fallback="[iアプリ]">
|
1986
|
+
<desc>Original name: I-APPLI WITH BORDER</desc>
|
1987
|
+
</e>
|
1988
|
+
<e docomo="E6A6" glyphRefID="632" google="FEE16" id="E16" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-7" text_fallback="[ぴ]">
|
1989
|
+
<desc>Original name: PIAS PI</desc>
|
1990
|
+
</e>
|
1991
|
+
<e docomo="E6A7" glyphRefID="633" google="FEE17" id="E17" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-8" text_fallback="[あ]">
|
1992
|
+
<desc>Original name: PIAS A</desc>
|
1993
|
+
</e>
|
1994
|
+
<e docomo="E6A8" glyphRefID="634" google="FEE18" id="E18" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-9" text_fallback="[チケット]">
|
1995
|
+
<desc>Original name: INVERSE TICKET</desc>
|
1996
|
+
</e>
|
1997
|
+
<e docomo="E6A9" glyphRefID="635" google="FEE19" id="E19" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-10" text_fallback="[チケット]">
|
1998
|
+
<desc>Original name: KATAKANA ABBREVIATION FOR TICKET</desc>
|
1999
|
+
</e>
|
2000
|
+
<e docomo="E6AA" glyphRefID="636" google="FEE1A" id="E1A" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-11" text_fallback="[電話先行]">
|
2001
|
+
<desc>Original name: RESERVE BY PHONE</desc>
|
2002
|
+
</e>
|
2003
|
+
<e docomo="E6AB" glyphRefID="637" google="FEE1B" id="E1B" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-12" text_fallback="[Pコード]">
|
2004
|
+
<desc>Original name: P CODE</desc>
|
2005
|
+
</e>
|
2006
|
+
<e docomo="E6AF" glyphRefID="638" google="FEE1C" id="E1C" img_from="docomo" kddi=">E517" name="EMOJI COMPATIBILITY SYMBOL-13" softbank=">E03D">
|
2007
|
+
<desc>Original name: MOVIES 2; movie projector, video camera</desc>
|
2008
|
+
</e>
|
2009
|
+
<e docomo="E6B0" glyphRefID="639" google="FEE1D" id="E1D" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-14" text_fallback="[ぴ]">
|
2010
|
+
<desc>Original name: PIAS PI INVERSE</desc>
|
2011
|
+
</e>
|
2012
|
+
<e docomo="E6B4" glyphRefID="640" google="FEE1E" id="E1E" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-15" text_fallback="(ぴ)">
|
2013
|
+
<desc>Original name: PIAS PI CIRCLE</desc>
|
2014
|
+
</e>
|
2015
|
+
<e docomo="E6B5" glyphRefID="641" google="FEE1F" id="E1F" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-16" text_fallback="[ぴ]">
|
2016
|
+
<desc>Original name: PIAS PI SQUARE</desc>
|
2017
|
+
</e>
|
2018
|
+
<e docomo="E6B6" glyphRefID="642" google="FEE20" id="E20" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-17" text_fallback="[チェック]">
|
2019
|
+
<desc>Original name: CHECK</desc>
|
2020
|
+
</e>
|
2021
|
+
<e docomo="E6BB" glyphRefID="643" google="FEE21" id="E21" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-18" text_fallback="[F]">
|
2022
|
+
<desc>Original name: F</desc>
|
2023
|
+
</e>
|
2024
|
+
<e docomo="E6BC" glyphRefID="644" google="FEE22" id="E22" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-19" text_fallback="[D]">
|
2025
|
+
<desc>Original name: D</desc>
|
2026
|
+
</e>
|
2027
|
+
<e docomo="E6BD" glyphRefID="645" google="FEE23" id="E23" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-20" text_fallback="[S]">
|
2028
|
+
<desc>Original name: S</desc>
|
2029
|
+
</e>
|
2030
|
+
<e docomo="E6BE" glyphRefID="646" google="FEE24" id="E24" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-21" text_fallback="[C]">
|
2031
|
+
<desc>Original name: C</desc>
|
2032
|
+
</e>
|
2033
|
+
<e docomo="E6BF" glyphRefID="647" google="FEE25" id="E25" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-22" text_fallback="[R]">
|
2034
|
+
<desc>Original name: R</desc>
|
2035
|
+
</e>
|
2036
|
+
<e docomo="E6C0" glyphRefID="648" google="FEE26" id="E26" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-23" text_fallback="■">
|
2037
|
+
<desc>Original name: BLACK AND WHITE SQUARE</desc>
|
2038
|
+
</e>
|
2039
|
+
<e docomo="E6C1" glyphRefID="649" google="FEE27" id="E27" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-24" text_fallback="■">
|
2040
|
+
<desc>Original name: BLACK SQUARE 3</desc>
|
2041
|
+
</e>
|
2042
|
+
<e docomo="E6C2" glyphRefID="650" google="FEE28" id="E28" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-25" text_fallback="▼">
|
2043
|
+
<desc>Original name: DOWNWARD TRIANGLE</desc>
|
2044
|
+
</e>
|
2045
|
+
<e docomo="E6C3" glyphRefID="651" google="FEE29" id="E29" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-26" text_fallback="††††">
|
2046
|
+
<desc>Original name: FOUR DAGGERS</desc>
|
2047
|
+
</e>
|
2048
|
+
<e docomo="E6C4" glyphRefID="652" google="FEE2A" id="E2A" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-27" text_fallback="†††">
|
2049
|
+
<desc>Original name: THREE DAGGERS</desc>
|
2050
|
+
</e>
|
2051
|
+
<e docomo="E6C5" glyphRefID="653" google="FEE2B" id="E2B" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-28" text_fallback="††">
|
2052
|
+
<desc>Original name: TWO DAGGERS</desc>
|
2053
|
+
</e>
|
2054
|
+
<e docomo="E6C6" glyphRefID="654" google="FEE2C" id="E2C" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-29" text_fallback="†">
|
2055
|
+
<desc>Original name: SINGLE DAGGER</desc>
|
2056
|
+
</e>
|
2057
|
+
<e docomo="E6C7" glyphRefID="655" google="FEE2D" id="E2D" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-30" text_fallback="[I]">
|
2058
|
+
<desc>Original name: I; "I" indicates "inexpensive"</desc>
|
2059
|
+
</e>
|
2060
|
+
<e docomo="E6C8" glyphRefID="656" google="FEE2E" id="E2E" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-31" text_fallback="[M]">
|
2061
|
+
<desc>Original name: M; "M" indicates "moderate price"</desc>
|
2062
|
+
</e>
|
2063
|
+
<e docomo="E6C9" glyphRefID="657" google="FEE2F" id="E2F" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-32" text_fallback="[E]">
|
2064
|
+
<desc>Original name: E; "E" indicates "expensive"</desc>
|
2065
|
+
</e>
|
2066
|
+
<e docomo="E6CA" glyphRefID="658" google="FEE30" id="E30" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-33" text_fallback="[VE]">
|
2067
|
+
<desc>Original name: VE; "VE" indicates "very expensive"</desc>
|
2068
|
+
</e>
|
2069
|
+
<e docomo="E6CB" glyphRefID="659" google="FEE31" id="E31" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-34" text_fallback="●">
|
2070
|
+
<desc>Original name: SPHERE</desc>
|
2071
|
+
</e>
|
2072
|
+
<e docomo="E6CC" glyphRefID="660" google="FEE32" id="E32" img_from="docomo" name="EMOJI COMPATIBILITY SYMBOL-35" text_fallback="[カード使用不可]">
|
2073
|
+
<desc>Original name: CREDIT CARDS NOT ACCEPTED</desc>
|
2074
|
+
</e>
|
2075
|
+
<e docomo="E6CD" glyphRefID="661" google="FEE33" id="E33" img_from="docomo" kddi=">EB02" name="EMOJI COMPATIBILITY SYMBOL-36" text_fallback="[チェックボックス]">
|
2076
|
+
<desc>Original name: CHECKBOX</desc>
|
2077
|
+
</e>
|
2078
|
+
<e glyphRefID="662" google="FEE40" id="E40" img_from="kddi" kddi="E577" name="EMOJI COMPATIBILITY SYMBOL-37" text_fallback="[EZ]">
|
2079
|
+
<desc>Original name: EZ WEB</desc>
|
2080
|
+
</e>
|
2081
|
+
<e glyphRefID="663" google="FEE41" id="E41" img_from="kddi" kddi="E5B2" name="EMOJI COMPATIBILITY SYMBOL-38" text_fallback="[ezplus]">
|
2082
|
+
<desc>Original name: EZ PLUS</desc>
|
2083
|
+
</e>
|
2084
|
+
<e glyphRefID="664" google="FEE42" id="E42" img_from="kddi" kddi="EA9D" name="EMOJI COMPATIBILITY SYMBOL-39" text_fallback="[EZナビ]">
|
2085
|
+
<desc>Original name: EZ NAVIGATION</desc>
|
2086
|
+
</e>
|
2087
|
+
<e glyphRefID="665" google="FEE43" id="E43" img_from="kddi" kddi="EB74" name="EMOJI COMPATIBILITY SYMBOL-40" text_fallback="[EZムービー]">
|
2088
|
+
<desc>Original name: EZ MOVIE</desc>
|
2089
|
+
</e>
|
2090
|
+
<e glyphRefID="666" google="FEE44" id="E44" img_from="kddi" kddi="EB81" name="EMOJI COMPATIBILITY SYMBOL-41" text_fallback="[Cメール]">
|
2091
|
+
<desc>Original name: CMAIL; Cmail (Envelope with "C")</desc>
|
2092
|
+
</e>
|
2093
|
+
<e glyphRefID="667" google="FEE45" id="E45" img_from="kddi" kddi="EB89" name="EMOJI COMPATIBILITY SYMBOL-42" text_fallback="[Java]">
|
2094
|
+
<desc>Original name: JAVA; JAVA (TM)</desc>
|
2095
|
+
</e>
|
2096
|
+
<e glyphRefID="668" google="FEE46" id="E46" img_from="kddi" kddi="EB8A" name="EMOJI COMPATIBILITY SYMBOL-43" text_fallback="[BREW]">
|
2097
|
+
<desc>Original name: BREW; BREW (R)</desc>
|
2098
|
+
</e>
|
2099
|
+
<e glyphRefID="669" google="FEE47" id="E47" img_from="kddi" kddi="EB8B" name="EMOJI COMPATIBILITY SYMBOL-44" text_fallback="[EZ着うた]">
|
2100
|
+
<desc>Original name: EZ RING MUSIC</desc>
|
2101
|
+
</e>
|
2102
|
+
<e glyphRefID="670" google="FEE48" id="E48" img_from="kddi" kddi="EB8C" name="EMOJI COMPATIBILITY SYMBOL-45" text_fallback="[EZナビ]">
|
2103
|
+
<desc>Original name: EZ NAVI</desc>
|
2104
|
+
</e>
|
2105
|
+
<e glyphRefID="671" google="FEE49" id="E49" img_from="kddi" kddi="EB8D" name="EMOJI COMPATIBILITY SYMBOL-46" text_fallback="[WIN]">
|
2106
|
+
<desc>Original name: WIN</desc>
|
2107
|
+
</e>
|
2108
|
+
<e glyphRefID="672" google="FEE4A" id="E4A" img_from="kddi" kddi="EB8E" name="EMOJI COMPATIBILITY SYMBOL-47" text_fallback="[プレミアム]">
|
2109
|
+
<desc>Original name: PREMIUM SIGN</desc>
|
2110
|
+
</e>
|
2111
|
+
<e glyphRefID="673" google="FEB89" id="B89" img_from="kddi" kddi="EAFB" name="EMOJI COMPATIBILITY SYMBOL-48" text_fallback="[オープンウェブ]">
|
2112
|
+
<desc>Original name: OPENWAVE; Openwave</desc>
|
2113
|
+
</e>
|
2114
|
+
<e glyphRefID="674" google="FE83C" id="83C" img_from="kddi" kddi="E586" name="EMOJI COMPATIBILITY SYMBOL-49" text_fallback="[PDC]">
|
2115
|
+
<desc>Original name: PDC; Personal Digital Cellular Symbol/Logo?</desc>
|
2116
|
+
</e>
|
2117
|
+
<e glyphRefID="675" google="FEE70" id="E70" name="EMOJI COMPATIBILITY SYMBOL-50" softbank="E538" text_repr="J-Sky1">
|
2118
|
+
<desc>Original name: J-SKY1</desc>
|
2119
|
+
</e>
|
2120
|
+
<e glyphRefID="676" google="FEE71" id="E71" name="EMOJI COMPATIBILITY SYMBOL-51" softbank="E539" text_repr="J-Sky2">
|
2121
|
+
<desc>Original name: J-SKY2</desc>
|
2122
|
+
</e>
|
2123
|
+
<e glyphRefID="677" google="FEE72" id="E72" name="EMOJI COMPATIBILITY SYMBOL-52" softbank="E53A" text_repr="vodafone1">
|
2124
|
+
<desc>Original name: VODAFONE1</desc>
|
2125
|
+
</e>
|
2126
|
+
<e glyphRefID="678" google="FEE73" id="E73" name="EMOJI COMPATIBILITY SYMBOL-53" softbank="E53B" text_repr="vodafone2">
|
2127
|
+
<desc>Original name: VODAFONE2</desc>
|
2128
|
+
</e>
|
2129
|
+
<e glyphRefID="679" google="FEE74" id="E74" name="EMOJI COMPATIBILITY SYMBOL-54" softbank="E53C" text_fallback="[v" text_repr="vodafone3">
|
2130
|
+
<desc>Original name: VODAFONE3</desc>
|
2131
|
+
</e>
|
2132
|
+
<e glyphRefID="680" google="FEE75" id="E75" name="EMOJI COMPATIBILITY SYMBOL-55" softbank="E53D" text_fallback="oda" text_repr="vodafone4">
|
2133
|
+
<desc>Original name: VODAFONE4</desc>
|
2134
|
+
</e>
|
2135
|
+
<e glyphRefID="681" google="FEE76" id="E76" name="EMOJI COMPATIBILITY SYMBOL-56" softbank="E53E" text_fallback="fone]" text_repr="vodafone5">
|
2136
|
+
<desc>Original name: VODAFONE5</desc>
|
2137
|
+
</e>
|
2138
|
+
<e glyphRefID="682" google="FEE77" id="E77" name="EMOJI COMPATIBILITY SYMBOL-57" softbank="E254" text_repr="J-PHONE SHOP">
|
2139
|
+
<desc>Original name: J-PHONE SHOP</desc>
|
2140
|
+
</e>
|
2141
|
+
<e glyphRefID="683" google="FEE78" id="E78" name="EMOJI COMPATIBILITY SYMBOL-58" softbank="E255" text_repr="SKY WEB">
|
2142
|
+
<desc>Original name: SKY WEB</desc>
|
2143
|
+
</e>
|
2144
|
+
<e glyphRefID="684" google="FEE79" id="E79" name="EMOJI COMPATIBILITY SYMBOL-59" softbank="E256" text_repr="SKY WALKER">
|
2145
|
+
<desc>Original name: SKY WALKER</desc>
|
2146
|
+
</e>
|
2147
|
+
<e glyphRefID="685" google="FEE7A" id="E7A" name="EMOJI COMPATIBILITY SYMBOL-60" softbank="E257" text_repr="SKY MELODY">
|
2148
|
+
<desc>Original name: SKY MELODY</desc>
|
2149
|
+
</e>
|
2150
|
+
<e glyphRefID="686" google="FEE7B" id="E7B" name="EMOJI COMPATIBILITY SYMBOL-61" softbank="E258" text_repr="J-PHONE 1">
|
2151
|
+
<desc>Original name: J-PHONE 1</desc>
|
2152
|
+
</e>
|
2153
|
+
<e glyphRefID="687" google="FEE7C" id="E7C" name="EMOJI COMPATIBILITY SYMBOL-62" softbank="E259" text_repr="J-PHONE 2">
|
2154
|
+
<desc>Original name: J-PHONE 2</desc>
|
2155
|
+
</e>
|
2156
|
+
<e glyphRefID="688" google="FEE7D" id="E7D" name="EMOJI COMPATIBILITY SYMBOL-63" softbank="E25A" text_repr="J-PHONE 3">
|
2157
|
+
<desc>Original name: J-PHONE 3</desc>
|
2158
|
+
</e>
|
2159
|
+
<e glyphRefID="625" google="FE4C5" id="4C5" img_from="softbank" name="EMOJI COMPATIBILITY SYMBOL-64" softbank="E50A">
|
2160
|
+
<desc>Original name: SHIBUYA; department store by Tokyu Group for young girls/women</desc>
|
2161
|
+
</e>
|
2162
|
+
<e docomo="E6E1" glyphRefID="463" google="FE82D" id="82D" img_from="docomo" kddi="E52C" name="EMOJI COMPATIBILITY SYMBOL-66" text_fallback="[Q]">
|
2163
|
+
<desc>Original name: MOBILE Q. Mobile Q service</desc>
|
2164
|
+
</e>
|
2165
|
+
</subcategory>
|
2166
|
+
<subcategory in_proposal="no" name="Google specific">
|
2167
|
+
<e google="FEEA0" id="EA0" name="GOOGLE" text_fallback="[Google]" text_repr="Google">
|
2168
|
+
<desc>Google logo</desc>
|
2169
|
+
</e>
|
2170
|
+
</subcategory>
|
2171
|
+
</category>
|
2172
|
+
</emoji4unicode>
|