-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (45 loc) · 2.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<title>U+32FF</title>
</head>
<body>
<div class="container">
<header>
<h1>U+32FF</h1>
<p>
お使いのブラウザ等が平成の次の元号に対応しているのかを確認できます<br>
対応している場合は次の元号が正しく表示され、未対応の場合は四角の豆腐が表示されます
</p>
</header>
<section>
<h2>Unicode</h2>
<p>
平成の次の元号は既にUnicode上で合字(U+32FF)として割り当てられているので、そこを参照することで新元号の合字が得られます。
</p>
<p>
㍻ の次の元号は ㋿ です。
</p>
</section>
<section>
<h2>NFKD</h2>
<p>
上の合字はUnicodeのNFKDにより分解できます。㍻ を平成に分解する処理を新元号の合字に対して行います。
</p>
<p>
<span id="regnal_year1"></span> の次の元号は <span id="regnal_year2"></span> です。
</p>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script>
$("#regnal_year1").text(String.fromCharCode(0x337b).normalize("NFKD"));
$("#regnal_year2").text(String.fromCharCode(0x32ff).normalize("NFKD"));
</script>
</body>
</html>