I want to use webdings characters in .net application.
Does anyone know how to do this.
I tried using :
ASPX:
<asp:Label ID="lblSample" runat="server" Font-Names="Webdings" ></asp:Label>
CODE BEHIND:
lblSample.Text = "0x61"
But it doesn’t displaying properly.

As can be seen in any ASCII table, character
0x61is a lower casea.You are trying to output the string
"0x61"instead of a lower casea.You should be doing this: