I've been bored, so I tried to make a program that writes a Look of Disapproval smiley(the ಠ_ಠ face) when pressing ctrl+shift+L. Now everything works, except for the underscore that is in the smiley, which won't get written at all.
This was what I used first:
SendKeys.Send("ಠ_ಠ");
I've tried various things, like adding {} brackets around the underscore, and of course I googled this too.
Is there any way I can get the underscore to get sent?
Thanks in advance.