-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>UTF-8 character escape table</title>
<meta name="description" content="A giant dynamically generated table of UTF-8 characters with their respective decimal & hexidecimal escapings">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/tooltips.css">
</head>
<body>
<header class="site-header">
<div class="col char-preview"></div><div class="col">
<label for="search-field">Press any key, or paste a character in here:</label>
<input type="search" id="search-field" autocomplete="off">
<table class="char-table">
<thead>
<tr>
<th>JS Key Code (decimal)</th>
<th>HTML Entity</th>
<th>CSS escaped (Hexidecimal)</th>
<th>JS escaped (Hexidecimal)</th>
</tr>
</thead>
<tbody>
<tr class="char-data"></tr>
</tbody>
</table>
</div>
</header>
<div class="scroller">
<div class="table">Loading 16<sup>4</sup> UTF-8 characters...</div>
</div>
<script src="bower_components/windower/windower.js"></script>
<script src="js/app.js"></script>
</body>
</html>