Merge branch 'master' of https://git.xpub.nl/XPUB/SI21
commit
d313400918
@ -0,0 +1,76 @@
|
|||||||
|
# takes input and makes it a string
|
||||||
|
string = input()
|
||||||
|
lst = []
|
||||||
|
d = {
|
||||||
|
'a': 'a',
|
||||||
|
'b': 'b',
|
||||||
|
'c': 'ts',
|
||||||
|
'd': 'd',
|
||||||
|
'e': 'e',
|
||||||
|
'f': 'f',
|
||||||
|
'g': 'g',
|
||||||
|
'h': 'h',
|
||||||
|
'i': 'i',
|
||||||
|
'k': 'k',
|
||||||
|
'l': 'l',
|
||||||
|
'm': 'm',
|
||||||
|
'n': 'n',
|
||||||
|
'o': 'o',
|
||||||
|
'p': 'p',
|
||||||
|
'q': 'ya',
|
||||||
|
'r': 'r',
|
||||||
|
's': 's',
|
||||||
|
't': 't',
|
||||||
|
'u': 'u',
|
||||||
|
'v': 'dzh',
|
||||||
|
'w': 'v',
|
||||||
|
'y': 'y',
|
||||||
|
'z': 'zh',
|
||||||
|
'`': 'ch',
|
||||||
|
']': 'sht',
|
||||||
|
'[': 'sh',
|
||||||
|
'|': 'yu',
|
||||||
|
}
|
||||||
|
|
||||||
|
e = {
|
||||||
|
'a': '📇',
|
||||||
|
'b': '🚝',
|
||||||
|
'c': '🚱',
|
||||||
|
'd': '🚯',
|
||||||
|
'e': '🛂',
|
||||||
|
'f': '🚞',
|
||||||
|
'g': '🚠',
|
||||||
|
'h': '🫃',
|
||||||
|
'i': '🪸',
|
||||||
|
'j': '🥟',
|
||||||
|
'k': '🧔♀️',
|
||||||
|
'l': '❤️🔥',
|
||||||
|
'm': '🉑',
|
||||||
|
'n': '🤡',
|
||||||
|
'o': '🔫',
|
||||||
|
'p': '⚰️',
|
||||||
|
'q': '🔣',
|
||||||
|
'r': '🤖',
|
||||||
|
's': '🦞',
|
||||||
|
't': '🛴',
|
||||||
|
'u': '🍶',
|
||||||
|
'v': '🪕',
|
||||||
|
'w': '📟',
|
||||||
|
'x': '🪅',
|
||||||
|
'y': '📫',
|
||||||
|
'z': '🥌',
|
||||||
|
'`': '🏵️',
|
||||||
|
']': '༎ຶ‿༎ຶ )',
|
||||||
|
'[': 'ଘ( ິ•ᆺ⃘• )ິଓ',
|
||||||
|
'|': '╭∩╮(ಠಠ)╭∩╮',
|
||||||
|
}
|
||||||
|
# s = letter
|
||||||
|
# separates the string into letters
|
||||||
|
for letter in string:
|
||||||
|
lst.append(letter)
|
||||||
|
# prints the list
|
||||||
|
# print(lst)
|
||||||
|
|
||||||
|
# prints the header of table
|
||||||
|
print('U BIN HX DC CY EM')
|
||||||
|
print(letter, format(ord(letter), '08b'), format(ord(letter), '02x'), ord(letter), d[letter], e[letter])
|
Binary file not shown.
After Width: | Height: | Size: 2.0 MiB |
@ -0,0 +1,74 @@
|
|||||||
|
body{
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-image: url('/public_html/si21-2/enconv/bg.jpg');
|
||||||
|
background-size: cover;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div{
|
||||||
|
animation: glitch 1s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes glitch{
|
||||||
|
2%,64%{
|
||||||
|
transform: translate(2px,0) skew(0deg);
|
||||||
|
}
|
||||||
|
4%,60%{
|
||||||
|
transform: translate(-2px,0) skew(0deg);
|
||||||
|
}
|
||||||
|
62%{
|
||||||
|
transform: translate(0,0) skew(5deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type="text"] {
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 5px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
button{
|
||||||
|
padding: 5px 20px;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ff5900;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
margin-top: 20px;
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 10px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
text-align: center;
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Encoding Converter</title>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
|
||||||
|
<!-- CSS -->
|
||||||
|
<link rel="stylesheet" href="/public_html/si21-2/enconv/enconv.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- adding glitch effect to text -->
|
||||||
|
<div>
|
||||||
|
<h1>Encoding Converter</h1>
|
||||||
|
<p>Type a word, click 'convert' and let the magic begin!</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- adding table with all encodings -->
|
||||||
|
<form>
|
||||||
|
<label for="input">Input:</label>
|
||||||
|
<input type="text" id="input" name="input" placeholder="Type a word...">
|
||||||
|
<button>Convert</button>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<!-- adding table with all encodings -->
|
||||||
|
<table id="result">
|
||||||
|
<tr>
|
||||||
|
<th>Binary</th>
|
||||||
|
<th>Hexadecimal</th>
|
||||||
|
<th>Decimal</th>
|
||||||
|
<th>Cyrillic</th>
|
||||||
|
<th>Emoji</th>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,4 @@
|
|||||||
|
<pre>
|
||||||
|
SI21 - test
|
||||||
|
Hello world!
|
||||||
|
</pre>
|
Loading…
Reference in New Issue