Skip to content

Instantly share code, notes, and snippets.

@Pagliacii
Last active November 14, 2020 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pagliacii/f226032e582126e44ef618aefa23812f to your computer and use it in GitHub Desktop.
Save Pagliacii/f226032e582126e44ef618aefa23812f to your computer and use it in GitHub Desktop.
This function pops up the input box to ask the user to enter some Unicode to input the corresponding character into the current input area.
getUnicodeFromInputBox()
{
Sleep, 10
InputBox, Code, AutoHotkey, Enter the Unicode, , 320, 112
Send, {U+%Code%}
}
; Binding to CapsLock+x
CapsLock & x::getUnicodeFromInputBox()
@Pagliacii
Copy link
Author

Unicode

image

Running

image

Result

Font: FontAwesome
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment