-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 759 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (24 loc) · 759 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name='viewport' content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0'>
<title>UTF-8 Enkoder / Dekoder</title>
<script src='skripta.js' defer></script>
<link rel="stylesheet" href="stil.css">
</head>
<body>
<input id='vrednost' type='number' value='128578' oninput='obrada()' />
<div id='bitovi_okvir_1'>
</div>
<p id='polje_bajtovi'>
</p>
<p id='utf8_ispis'>
</p>
<input id='vrednost_dekodiranje' type='text' value='196 140 111 118 101 107 240 159 153 130' oninput='obradaDekodiranje()' />
<p id='utf8_ispis_dekodiranje'>
</p>
</body>
</html>
<body>