4

X11 maps keycodes to keysyms and then maps keysyms to Unicode. What's a good way to retrieve keysym to Unicode mappings in a program?

joeforker
  • 40,459
  • 37
  • 151
  • 246

1 Answers1

7

Try this.

Electro
  • 2,994
  • 5
  • 26
  • 32
  • That's great! The same author has an easy to parse text file with those mappings which is what I used in my Python program. – joeforker Aug 13 '09 at 18:04