I find no way to send an ALT-code to an application, for example Notepad
from pywinauto import application
from pywinauto.keyboard import SendKeys, KeySequenceError
app = application.Application()
app.start("Notepad.exe")
SendKeys("%(234)")
This displays "34" to the screen. How can I send the ALT-code for Omega to Notepad?