I want to show a special character.
I found this link which displays everything.
let’s take for example this char :

2 questions )
-
how can I convert
↓,↓to\u____unicode char ? ( c#) -
When should I use
↓vs↓
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use:
The above is .NET 4.0 and above, for prior versions, use
System.Web.HttpUtility.Both will produce a string containing
↓.You can take this string, get the first (and only) character from it – this will be a C#, UTF16 character.
I would suggest using
↓instead of the numeric character reference if you must use character references, as it is more readable. If you can use the↓directly, that is best.