I need to type a back tick character in a Visual Studio 2010 Console but I can't seem to make it happen. I know it is the Unicode character +0060, and I tried the Alt+ method but that didn't work; after some research I added this line to my C# application but it still doesn't let me type it: Console.OutputEncoding = System.Text.Encoding.UTF8

Is there a simple way to make it appear? I am using the Lucida Console font. Thanks!

link|improve this question
Hmm. I assume you don't have this key on your keyboard? Because I can just press that one... – Cody Gray Jun 7 '11 at 15:01
Yeah, it is the same key as the tilde (~`) – Jordan Parmer Jun 7 '11 at 15:51
Nope; my keyboard doesn't even have the tilde :( – Ameto Jun 7 '11 at 16:55
my keyboard has no that key, though in GNU/Linux I can write it with AltGr+key; on windows, once I've used a tool to create a new keyboard layout, adding all those keys that I'm used to have on GNU/Linux (backtick, tilde, mdash, eth, german ss and so on); msdn.microsoft.com/en-us/goglobal/bb964665 – ShinTakezou Jul 10 '11 at 8:55
feedback

1 Answer

up vote 1 down vote accepted

ALT-096 (96 decimal = 0060 in hex) should normally work, I have a vague memory from back in the DOS days of it having to be the Alt-Gr key and the numbers must be typed on the number pad but that certainly not the case on my setup here, unless that something keyboard specific.

An alternative technique is to run the charmap.exe windows accessory (you may have to install it from Add Programs/Programs and Features if it wasn't selected at original install but it is available in every windows installation that I've come across since Win 3.x days). From that you can easily copy characters in the clipboard buffer and paste in to whatever you need.

Charmap.exe is especially useful for dealing with symbol/wingdings type fonts.

The final approach I know of is to simply use '(char) 96', a char, have you tried;

Console.Write((char) 96);
link|improve this answer
Heh. I forgot Unicode was specified in hex and was trying the decimal 60 (<). Silly me. Thanks a lot! – Ameto Jun 7 '11 at 17:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.