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