[AHK]输出Unicode代码对应的字符

 输出Unicode对应的符号,比如1fa7代表ᾧ

[AHK]输出Unicode代码对应的字符_第1张图片


;功能:输出Unicode代码对应的字符
;测试方法:在输入区点击下左键,然后按住鼠标中键会弹出输入框, 此时输入代码, 松开鼠标中键后,会发送符号
;作者:sunwind
;时间:2018年9月5日
;更新链接:https://blog.csdn.net/liuyukuan/article/details/82428880
#SingleInstance FORCE
~MButton::
showgui()
Return

~Mbutton up::
WinClose, myRun
return


GuiClose:
gui,Submit
fuhao:="{U+" . code . "}"
send %fuhao%
Destroygui()     
return

Destroygui()
{
	Gui,Destroy
}

showgui()
{
	global
	Gui,Destroy
	Gui,add,edit,vCode
	Gui, Show, x1920 y1080 w30 h30, myRun
	Gui -Caption  ; 如果它不是 默认窗口, 则使用 Gui, GuiName:-Caption.
	Gui, Show, x729 y462 w155 h30, myRun
	OutputDebug,"show"
} 



 

你可能感兴趣的:(AHK,AutoHotkey,热键)