using System;
public class Program
{
public static void Main()
int maxUTF16dotNETValue = Char.MaxValue;
int c=0;
char ch;
for (int i = 0; i < maxUTF16dotNETValue; i++){
ch = Convert.ToChar(i);
if(char.IsSymbol(ch)){
Console.WriteLine(@"'\u"+String.Format("{0:X4}", i)+"'; //"+(c++).ToString()+" '"+ch.ToString()+"' ");
}