if Shift + A is needed then you will have to do following sequence
Press shift
Press A
Release A
Release shift
this can be done by using
command format: sendevent device type code value
[command] [device] [type] [code] [value]
sendevent /dev/input/event0 1 229 1
/dev/input/event0 is the device to send it to
[type] 1 is unknow for me ( maybe code for physical button on device )
[code] 229 is the MENU button of the emulator
[value] 1 is keydown or press down ( for keyup or up use 0 )
i wrote a batch file for sending the event to the device like below:
adb -s emulator-5554 shell sendevent /dev/input/event0 1 229 1
adb -s emulator-5554 shell sendevent /dev/input/event0 1 229 0
Ref