Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
#import gradio as gr
|
2 |
name="this name"
|
3 |
-
def
|
4 |
-
return
|
5 |
-
|
6 |
-
print((
|
|
|
1 |
#import gradio as gr
|
2 |
name="this name"
|
3 |
+
def convert_to_tag_chars(input_string):
|
4 |
+
return ''.join(chr(0xE0000 + ord(ch)) for ch in input_string)
|
5 |
+
|
6 |
+
print(convert_to_tag_chars(name))
|