-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhex.html
More file actions
55 lines (52 loc) · 4.09 KB
/
hex.html
File metadata and controls
55 lines (52 loc) · 4.09 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
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>HEX Paster</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="black">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.9.2.css">
<script src="https://code.jquery.com/qunit/qunit-2.9.2.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sizzle/2.3.5/sizzle.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sizzle/2.3.5/sizzle.min.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="http://benahm.github.io/jquery.throwable/javascripts/libs/jquery-1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="http://benahm.github.io/jquery.throwable/javascripts/jquery.throwable.js" type="text/javascript"></script>
<script src="filesaver.js"></script>
<meta data-react-helmet="true" charset="utf-8">
<meta data-react-helmet="true" property="og:title" content="HEX Paster Tool Online">
<meta data-react-helmet="true" property="og:description" content="HEX Paster will remove all letters except 0123456789abcdefABCDEF.">
<meta data-react-helmet="true" name="description" content="HEX Paster will remove all letters except 0123456789abcdefABCDEF.">
</head>
<style>
::-webkit-scrollbar {
display: none;
}
body { background: silver; font-family: Tahoma, Helvetica, Roboto, sans-serif; text-align: center; }
textarea { font-family: Tahoma, Helvetica, Roboto, sans-serif; background: white; outline: none; resize: none; color: black; box-shadow: 2px 2px 15px red, -2px 2px 15px lime, 2px -2px 15px yellow, -2px -2px 15px cyan;}
textarea:hover { background: white; outline: none; resize: none; color: blue; }
textarea:active { background: white; outline: none; resize: none; color: blue; }
button { font-family: Tahoma, Helvetica, Roboto, sans-serif; padding: 10px 10px; border: 1px inset green; background: yellowgreen; color: white; box-shadow: 0px 2px 4px turquoise, 0px 4px 4px blue; outline: none;}
button:active { padding: 10px 10px; border: 1px inset red; background: orangered; color: beige; box-shadow: 0px 2px 4px firebrick; outline: none;}
button:hover { padding: 10px 10px; border: 1px inset beige; background: yellow; color: black; box-shadow: 0px 2px 4px greenyellow; outline: none;}
</style>
<body>
<h1 style="text-shadow: 4px 4px 2px grey;">HEX Paster</h1>
<img src="generator_hex.png" width="200" height="100">
<br><a href="hex.html">Hex Paster </a><a href="bws.html">BonziWORLD spam maker </a><a href="ws.html">Remove Whitespace </a><a href="emp.html">Empath Bonzi </a><a href="ex.html">Exclamationier </a><a href="b.html">Bonzi Buddy Translator </a><a href="gib.html">Gibberisher </a><a href="ques.html">Question Marker </a><a href="nopause.html">Pause Remover </a><a href="lowercase.html">Text to Lowercase </a><a href="nonum.html">Number Remover </a><a href="cooler.html">Text to Coolin' Text </a><a href="engrish.html">Text to Bad Text </a>
<br>
<br>
<textarea id="g" rows="30" cols="150" placeholder="Paste or write anything here." autofocus spellcheck="false"></textarea>
<br>
<button onclick="downloadhex()">Download</button>
<p>So if you tried to paste an invalid value but it's not, this will give you an error to not pasting invalid hexadecimal values and paste special option may not work like that. If you got this online for now, we have a tool called "Hex Paster"! Hex paster detects the letters and numbers expecting 0123456789abcdefABCDEF. But also, it removes anything with expecting Hex Symbols in single period! Or eventually you can download this file without any software to be pasted. HxD is a good software ever.</p>
<script>
setInterval(function(){var xxx = document.getElementById('g').value;
xxx = xxx.replace(/[^a-fA-F0-9]+/g, "");
document.getElementById('g').value = xxx}, 1);
function downloadhex(){saveTextAs(document.getElementById('g').value, "HexCode.txt")}
setInterval(function(){document.title="HEX Paster"}, 1);
</script>
</body>
</html>