1.需求
在编程中有时需要获得汉字的unicode 16进制编码,比如正则表达式。该小程序可以输入汉字后返回其Unicode编码,十分方便。
2.代码实现
import PySimpleGUI as sg# 定义一个函数来获取并显示Unicode编码 def show_unicode(input_text):# 获取输入框中的内容input_text = input_text# 遍历字符串中的每个字符,并转换为十六进制的Unicode编码unicode_hex = '\n'.join([f"字符: {char}, Unicode编码(十六进制): {ord(char):X}" for char in input_text])# 显示每个字符的Unicode编码sg.popup("Unicode编码(十六进制)", unicode_hex)layout = [[sg.Text('请输入中文字符:')],[sg.Input(key='input_text', size=(20, 1))],[sg.Button('显示Unicode编码'), sg.Button('退出')] ]# 创建窗口 window = sg.Window('Unicode编码显示', layout)# 事件循环 while True:event, values = window.read()if event == sg.WIN_CLOSED or event == '退出':breakif event == '显示Unicode编码':input_text = values['input_text']show_unicode(input_text)# 关闭窗口 window.close()