Omnibus's picture
Update app.py
4be2310 verified
raw
history blame
178 Bytes
#import gradio as gr
name="this name"
def convert_to_tag_chars(input_string):
return ''.join(chr(0xE0000 + ord(ch)) for ch in input_string)
print(convert_to_tag_chars(name))