-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsymbols.html
More file actions
51 lines (37 loc) · 1.2 KB
/
symbols.html
File metadata and controls
51 lines (37 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="j35tor">
<title>Symbols clipboard</title>
</head>
<body>
冏 囧 囝 屄 🔰 😅 🤣 🞖 <br />
µ ξ D͜1 E͠T Uͨ 𠀝 𠻀 𠓢 <br />
𠾍 𡃁 𡃿 𪴹 🀁 𡃿
<br />
<span id="mySpan"> </span>
</body>
<script type="text/javascript">
/*
function encode_utf8(s) {
return unescape(encodeURIComponent(s));
}
function decode_utf8(s) {
return decodeURIComponent(escape(s));
} */
// var some_data = [0xF0, 0x9F, 0x80, 0x81] ;
var some_data = [240,159,128,129] ;
/*
some_data.push(0xF0);
some_data.push(0x9F);
some_data.push(0x80);
some_data.push(0x81);*/
var uint8array = new TextEncoder().encode("🀁");
// document.getElementById('mySpan').innerHTML = uint8array ;
document.getElementById('mySpan').innerHTML = some_data ;
// document.getElementById('mySpan').innerHTML = new TextDecoder().decode( some_data );
</script>
</html>