-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Long Unicode escape sequences do not work #356
Comments
PS: Tried it with '\U0001E000' and '\N{COMBINING GLAGOLITIC LETTER AZU}'. |
PPS: Updated to latest pynput version. Error persists. |
Ḁ is u1E00 (i.e. a zero missing). I do not why he puts = (003D). |
Sorry, it's Ḁ0, not Ḁ=. So he prints u1E00, 0 instead of u1E000. |
I tested this with the following command: On my system, Linux/XWayland, this prints the expected character. On Windows, unicode is limited to 16 bits in many cases. pynput uses the So, in short, what you are trying to do is not possible using the current implementation in pynput. |
OK, so at least I am not crazy... |
I encoded superscript Glagolitic A as kbc.type('\u1E000'), but it gave me Ḁ=.
When I tried the proper character, it said Type Error.
The text was updated successfully, but these errors were encountered: