18
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int maxUTF16dotNETValue = Char.MaxValue;
8
int c=0;
9
char ch;
10
for (int i = 0; i < maxUTF16dotNETValue; i++){
11
ch = Convert.ToChar(i);
12
if(char.IsSymbol(ch)){
13
Console.WriteLine(@"'\u"+String.Format("{0:X4}", i)+"'; //"+(c++).ToString()+" '"+ch.ToString()+"' ");
14
}
15
}
16
17
}
18
}
Cached Result