回答編集履歴
1
コードを追加
answer
CHANGED
@@ -1,2 +1,18 @@
|
|
1
1
|
その文字は正式なユニコード文字ではないそうなので、ブラウザによっては表示されないことがあります。
|
2
|
-
http://www.fileformat.info/info/unicode/char/e5ce/index.htm
|
2
|
+
http://www.fileformat.info/info/unicode/char/e5ce/index.htm
|
3
|
+
|
4
|
+
下記のコードで、Chromeでも表示されることは確認しました。
|
5
|
+
|
6
|
+
```HTML
|
7
|
+
<!DOCTYPE html>
|
8
|
+
<html lang="ja">
|
9
|
+
<head>
|
10
|
+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
11
|
+
<title>Document</title>
|
12
|
+
</head>
|
13
|
+
<body>
|
14
|
+
<div id="gototop"><a href="#top"><i class="material-icons"></i></a></div>
|
15
|
+
<i class="material-icons">expand_less</i>
|
16
|
+
</body>
|
17
|
+
</html>
|
18
|
+
```
|