Created
June 10, 2022 12:05
-
-
Save donno2048/c26110a9def05283e454c3e2629d8b17 to your computer and use it in GitHub Desktop.
enable unicode input
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable "Alt" + "+" + "3" + "3" to write "3" (unicode input) | |
from winreg import * | |
SetValueEx(OpenKey(HKEY_CURRENT_USER, r"Control Panel\Input Method", 0, KEY_ALL_ACCESS), "EnableHexNumpad", 0, 1, "1") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment