-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (54 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
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<title>unicode</title>
<meta charset="UTF-8">
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="lib/jquery-2-min.js"></script>
<script src="lib/bits.js"></script> </head>
<script src="lib/encode.js"></script> </head>
<script src="lib/ui.js"></script> </head>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<!--<script src="https://code.jquery.com/jquery-2.1.1.js"></script>-->
<script src="https://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
<!--<script src="unicode.js"></script> </head>-->
<body>
<div id="contents">
<div id="header">
<select id='input-base-dropdown'>
<option value='dec'>Decimal</option>
<option value='hex'>Hex</option>
<option value='bin'>Binary</option>
</select>
<input type="text" id="amount"/>
<div id="glyph"></div>
</div>
<div id="slider-div"></div>
<!--<button name="toggle">toggle</button>-->
<div id="slider"></div>
<table>
<tr>
<td id="cp-label">codepoint</td>
<td id="cp-data"></td>
</tr>
<tr>
<td id="ascii-label">ascii</td>
<td id="ascii-data"></td>
</tr>
<tr>
<td id="utf8-label">utf8</td>
<td id="utf8-data"></td>
</tr>
<tr>
<td id="utf16-label">utf16</td>
<td id="utf16-data"></td>
</tr>
<tr>
<td id="utf32-label">utf32</td>
<td id="utf32-data" ></td>
</tr>
</table>
</div>
</body>
</html>