Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,9 +3,9 @@ def hide_message(reg,sec):
|
|
3 |
out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
|
4 |
for ea in out:
|
5 |
print([ea])
|
6 |
-
str_ea=str([ea][
|
7 |
print(len(str_ea))
|
8 |
-
print(str_ea)
|
9 |
if str_ea.startswith(r"\U000e"):
|
10 |
new_ea = str_ea.split(r"\U000e")[1]
|
11 |
print(new_ea)
|
|
|
3 |
out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
|
4 |
for ea in out:
|
5 |
print([ea])
|
6 |
+
str_ea=str([ea][4:])
|
7 |
print(len(str_ea))
|
8 |
+
print(str_ea.encode('utf-8'))
|
9 |
if str_ea.startswith(r"\U000e"):
|
10 |
new_ea = str_ea.split(r"\U000e")[1]
|
11 |
print(new_ea)
|