더 나은 솔루션을 찾지 못했기 때문에 작은 AutoHotkey 기반 유니 코드 입력 도구를 작성했습니다 . Shift+ Ctrl+로 유니 코드 문자를 삽입 할 수 있습니다 U.
기본적으로, 항목을 유니 코드 문자로 변환하고 커서 위치에 입력합니다.
6 자리 유니 코드 문자는 지원하지 않습니다. 또한 포커스 손실시 모든 텍스트를 선택하는 입력 필드가 있으면 모든 텍스트를 덮어 씁니다 (구식 Firefox 버전 에서이 동작을 보여준 것 같습니다).
참고로 AutoHotkey 소스를 직접 컴파일하려면 다음을 참조하십시오.
#SingleInstance force
#Persistent
;Menu, Tray, icon, unicode.ico
Menu, Tray, nostandard ; Put the following menu items on top (default: bottom)
Menu, Tray, add, Info, InfoHandler, -10
Menu, Tray, add
Menu, Tray, standard ; Add default menu items at the bottom
return
InfoHandler:
MsgBox Press Shift+Ctrl+U to get an entry field for unicode points (see decodeunicode.org for a list).`n`nAuthor: Simon A. Eugster <simon.eu@gmail.com> / granjow.net
return
+^u::
InputBox, codepoint, Unicode code point, U+
if not ErrorLevel
Send {U+%codepoint%}
return