I want to use unicode through the implementation of keyListener on jTextField in this way :
jTextField
textField.addKeyListener(new KeyListener() { @O
Use a DocumentFilter.
By the time the KeyListener recives the event, the character has already being added to the field.
Also KeyListener won't deal with the user pasting content into the field