回答編集履歴

1

コードを追加

2016/02/06 10:42

投稿

yamato_hikawa
yamato_hikawa

スコア2092

test CHANGED
@@ -1,3 +1,35 @@
1
1
  その文字は正式なユニコード文字ではないそうなので、ブラウザによっては表示されないことがあります。
2
2
 
3
3
  http://www.fileformat.info/info/unicode/char/e5ce/index.htm
4
+
5
+
6
+
7
+ 下記のコードで、Chromeでも表示されることは確認しました。
8
+
9
+
10
+
11
+ ```HTML
12
+
13
+ <!DOCTYPE html>
14
+
15
+ <html lang="ja">
16
+
17
+ <head>
18
+
19
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
20
+
21
+ <title>Document</title>
22
+
23
+ </head>
24
+
25
+ <body>
26
+
27
+ <div id="gototop"><a href="#top"><i class="material-icons">&#xE5CE;</i></a></div>
28
+
29
+ <i class="material-icons">expand_less</i>
30
+
31
+ </body>
32
+
33
+ </html>
34
+
35
+ ```