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.
Mixing different encodings creates weird result. ಠ is Unicode, _
is ASCII. Different length characters confuse and iritate Visual Studio.
Try:
SendKeys.Send("\u0CA0_\u0CA0");
Or:
SendKeys.Send("\u0CA0\u005F\u0CA0");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With