Package: gdk

Function gdk-keyval-to-unicode

Lambda List

gdk-keyval-to-unicode (keyval)

Arguments

keyval -- an unsigned integer with a GDK key symbol

Return Value

The corresponding unicode character, or #\Nul if there is no corresponding character.

Details

Convert from a GDK key symbol to the corresponding ISO10646 (Unicode) character.

Example

(mapcar 'gdk-keyval-to-unicode '(65 66 67 68 69 70 71))
=> (#\A #\B #\C #\D #\E #\F #\G)    
 

See also

2021-12-13