Hi, 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?
+2
A:
You can represent a Unicode character in C# as char c = '\u03BB'
, where 03BB is the code point you want in hex.
mquander
2010-07-22 19:25:25