Us keyboard, german layout – special character < and >

englishgermankeyboardlayout

i currently have an american keyboard with the corrsponding us layout (it is the surface type cover btw). As I am used to the german layout i changed the layout settings to german under win8.1. This works fine except for one little thing:

The < and > on the german keyboard are located between the left shift and the z (or y on the german keyboard). However this additional key is missing on the us keyboard. Is this character unavailable when using this setup or did I just not find it yet?

Thanks for your help!

Solution:

I used auto hotkey to create a custom keymapping. The code for autohotkey is

^!,::
   Send {<}
return

^!.::
   Send {>}
return

Best Answer

There are several keys on a German layout (QWERTZ) keyboard which don't exist on an American layout (QWERTY) keyboard. In order to regain the ability to use the various disparate features, you would need to utilize software capable of remapping keys. If you're in Windows, AutoHotKey does a fair job of easily allowing custom keystrokes.