Is there an upside down caret character?

后端 未结 17 2019
Happy的楠姐
Happy的楠姐 2020-12-07 07:27

I have to maintain a large number of classic ASP pages, many of which have tabular data with no sort capabilities at all. Whatever order the original developer used in the d

17条回答
  •  感情败类
    2020-12-07 07:58

    c# code

    int i = 0;
    char c = '↑';
    i = (int)c;
    Console.WriteLine(i); // prints 8593
    
    int j = 0;
    char d = '↓';
    j = (int)d;
    Console.WriteLine(j); // prints 8595
    

提交回复
热议问题