Original Letter | Look-Alike(s) |
---|---|
a | а ạ ą ä à á ą |
c | с ƈ ċ |
d | ԁ ɗ |
e | е ẹ ė é è |
g | ġ |
h | һ |
i | і í ï |
j | ј ʝ |
k | κ |
l | ӏ ḷ |
n | ո |
o | о ο օ ȯ ọ ỏ ơ ó ò ö |
p | р |
q | զ |
s | ʂ |
u | υ ս ü ú ù |
v | ν ѵ |
x | х ҳ |
y | у ý |
z | ʐ ż |
-
Star
(474)
You must be signed in to star a gist -
Fork
(50)
You must be signed in to fork a gist
-
-
Save StevenACoffman/a5f6f682d94e38ed804182dc2693ed4b to your computer and use it in GitHub Desktop.
{ | |
"a": [ | |
"\u0430", | |
"\u00e0", | |
"\u00e1", | |
"\u1ea1", | |
"\u0105" | |
], | |
"c": [ | |
"\u0441", | |
"\u0188", | |
"\u010b" | |
], | |
"d": [ | |
"\u0501", | |
"\u0257" | |
], | |
"e": [ | |
"\u0435", | |
"\u1eb9", | |
"\u0117", | |
"\u0117", | |
"\u00e9", | |
"\u00e8" | |
], | |
"g": [ | |
"\u0121" | |
], | |
"h": [ | |
"\u04bb" | |
], | |
"i": [ | |
"\u0456", | |
"\u00ed", | |
"\u00ec", | |
"\u00ef" | |
], | |
"j": [ | |
"\u0458", | |
"\u029d" | |
], | |
"k": [ | |
"\u03ba" | |
], | |
"l": [ | |
"\u04cf", | |
"\u1e37" | |
], | |
"n": [ | |
"\u0578" | |
], | |
"o": [ | |
"\u043e", | |
"\u03bf", | |
"\u0585", | |
"\u022f", | |
"\u1ecd", | |
"\u1ecf", | |
"\u01a1", | |
"\u00f6", | |
"\u00f3", | |
"\u00f2" | |
], | |
"p": [ | |
"\u0440" | |
], | |
"q": [ | |
"\u0566" | |
], | |
"s": [ | |
"\u0282" | |
], | |
"u": [ | |
"\u03c5", | |
"\u057d", | |
"\u00fc", | |
"\u00fa", | |
"\u00f9" | |
], | |
"v": [ | |
"\u03bd", | |
"\u0475" | |
], | |
"x": [ | |
"\u0445", | |
"\u04b3" | |
], | |
"y": [ | |
"\u0443", | |
"\u00fd" | |
], | |
"z": [ | |
"\u0290", | |
"\u017c" | |
] | |
} |
How can I find out the alt codes to type these? I need to enter one into a program but it won't let me copy paste, so I need to actually hold alt and type the number pad code. I've even tried to use autohotkey but it won't work for the clean special characters (the ones that look like the real letters.) I'm trying to use the special 'а' character for use in my name in a game, since it stupidly censors the name 'passion' to make it 'p***ion. So this seemed like a way to fix it.
in AutoHotkey, use the CHR() and SEND commands
https://www.autohotkey.com/docs/v2/lib/Chr.htm
https://www.autohotkey.com/docs/v2/lib/Send.htm
Send, "P" . chr( [whatever the code number is] ) . "ssion"
Windows Unicode Input via Numpad
Hello, I took a look how Windows can handle unicode via Numpad.
You have to create a registry entry manually:
Note
If this key does not exist, add it as type REG_SZ (string value).
HKEY_CURRENT_USER\Control Panel\Input Method
EnableHexNumpad = "1"
Restart or relogin required after registry change.
Tip
For user related registry changes HKEY_CURRENT_USER is a relogin enough otherwise changes to HKLM do a full restart
mnemonic bridge:
HKLM / machine = restart,
HKCU / user = relogin
Usage
- Hold Alt
- Press Numpad +
- Type the lowercase hex code (e.g.
03b2
for β,0393
for Γ) - Release Alt
Important Notes
Important
Letters A–F must be lowercase for this method to work.
- For case-insensitive entry or more flexibility, consider AutoHotkey or WinCompose
Test Examples
Hex Code | Result | Description |
---|---|---|
03b2 |
β | Greek small letter beta |
0393 |
Γ | Greek capital letter gamma |
How can I find out the alt codes to type these? I need to enter one into a program but it won't let me copy paste, so I need to actually hold alt and type the number pad code. I've even tried to use autohotkey but it won't work for the clean special characters (the ones that look like the real letters.) I'm trying to use the special 'а' character for use in my name in a game, since it stupidly censors the name 'passion' to make it 'p***ion. So this seemed like a way to fix it.