File size: 464 Bytes
7e44235
a93dbdd
623810f
30e221f
623810f
4be2310
7e44235
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr
def hide_message(reg,sec):
    out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
    print(out.decode('latin-1'))
    return out


with gr.Blocks() as app:
    with gr.Row():
        with gr.Column():
            reg = gr.Textbox(label="Visible String")
            sec = gr.Textbox(label="Secret Message")
        btn=gr.Button()
    outp=gr.Textbox(label="Output Message")
    btn.click(hide_message,[reg,sec],outp)
app.launch()