Click here to Skip to main content
15,897,187 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
I need to show the "α" sign on a winform.
Tried simply to do "\u0224" but it doesn`t do the trick.
Went over with a loop like this

C#
for (int index = 48; index < 255; index++)
    {
        listBox1.Items.Add(index.ToString() + ": " + (char)index + Environment.NewLine);
    }



But it doesn`t show the "α" sign at all.

Any ideas on how can I do that?

Thanks
Posted
Updated 5-Dec-13 5:24am
v2

1 solution

Try:
C#
MessageBox.Show("\u03b1");
 
Share this answer
 
Comments
Shahare 5-Dec-13 11:50am    
Thanks - any reference on where you found that?
OriginalGriff 5-Dec-13 11:56am    
In a text file in my "How to do it" folder called "Accented and special characters.txt"
:laugh:
OriginalGriff 5-Dec-13 12:00pm    
There is a note at the bottom which tells me where I got the special characters data: Wiki!
http://en.wikipedia.org/wiki/List_of_Unicode_characters
But it's a PITA to find the value you want there.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900