I have an application that uses google translate to translate words. I need to display Greek words in a label .... is it this possible to show greek characters?

link|improve this question

54% accept rate
Yes, no problem. What is the real issue? – Hans Passant Jul 22 '10 at 21:24
feedback

1 Answer

You can represent a Unicode character in C# as char c = '\u03BB', where 03BB is the code point you want in hex.

link|improve this answer
Or as char c = 'λ'. Which would be a lot easier (even if copy-and-paste because you didn't have an appropriate keyboard) if there were more than one or two such chars. – Jon Hanna Nov 26 '10 at 15:01
feedback

Your Answer

 
or
required, but never shown

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