Windows – Why does the Unicode character (U+2295) come out as (U+2248)

special charactersunicodewindowswindows 10

I open Notepad and then type +2295 holding down the Alt key, then release the Alt key. I save the file with Unicode encoding. However the output is not http://www.fileformat.info/info/unicode/char/2295/index.htm as expected, but this http://www.fileformat.info/info/unicode/char/2248/index.htm instead. What am I doing wrong? Looking for some pointers.

For anyone else stumbling with this: Please note EnableHexNumpad needs to be a new String Type (See the Wiki page linked in the answer)

Best Answer

The Wikipedia entry on Unicode input methods lists a necessary prerequisite for this to work:

A prerequisite for this input method is that the registry key HKEY_CURRENT_USER\Control Panel\Input Method contains a string type (REG_SZ) value called EnableHexNumpad, which has the value data 1. Users need to log off/in on Windows 8.1/8.0, Windows 7, and Vista or reboot on earlier systems after editing the registry for this input method to start working.

After I added this registry key on my machine and rebooted, the input works just as advertised.

Related Question