Duplicated from Omnibus/Unicode-Escape
a6e566a 4be2310
1
2
3
4
5
6
#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))