Can't enter unicode character with Alt+ even with EnableHexNumpad

11

1

I'm trying to enter unicode characters by using Alt+#### but I'm not being able to.

In Registry Editor, I added a new String value called EnableHexNumpad with value of 1 in HKCU\Control Panel\Input Method and rebooted, but nothing has changed. What's happening?

I'm using Window 8.1, tried on Word, Notepad, Chrome, Visual Studio, nothing...

Any clue? Thanks in advance!

edit:

reg query "HKCU\Control Panel\Input Method"

output:

HKEY_CURRENT_USER\Control Panel\Input Method
Show Status        REG_SZ    1
EnableHexNumpad    REG_SZ    1

HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys

Edit: It was PEBKAC!
I was trying to type stuff like Alt+2075 (✅) without actually typing plus! Thanks to @JosefZ for clarifying this out for me.

Rond

Posted 2017-04-29T18:54:10.240

Reputation: 111

Please share output from reg query "HKCU\Control Panel\Input Method" – JosefZ – 2017-04-30T16:21:31.063

Hey @JosefZ, thanks for replying!

The output: ``HKEY_CURRENT_USER\Control Panel\Input Method Show Status REG_SZ 1 EnableHexNumpad REG_SZ 1

HKEY_CURRENT_USER\Control Panel\Input Method\Hot Keys`` – Rond – 2017-05-01T00:17:48.467

2With this registry settings: what happens if you type e.g. +03b1 while holding the Alt key? Greek Small Letter Alpha α (note that leading + is important while leading zeroes are not. So Alt + +3b1 is the same as Alt + +03b1 – JosefZ – 2017-05-01T15:44:04.733

5What the... I feel so dumb, I didn't know I needed to actually type +, I thought plus was meaning that I needed to hold alt and type only what comes after the plus symbol! Thanks a bunch! – Rond – 2017-05-01T16:40:47.243

Answers

1

To improve discoverability, I'm going to copy JosefZ's comment from more than a year ago into an answer:

With this registry settings: what happens if you type e.g. +03b1 while holding the Alt key? Greek Small Letter Alpha α (note that leading + is important while leading zeroes are not. So Alt + +3b1 is the same as Alt + +03b1

The registry setting in question is

HKCU\Control Panel\Input Method

which can be obtained from the command line by typing:

reg query "HKCU\Control Panel\Input Method"

FreeMan

Posted 2017-04-29T18:54:10.240

Reputation: 241