Is there an upside down caret character?

后端 未结 17 1958
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:54

    ˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅˅

     ˅˅˅ Hǝɹǝ,s ɐ ɯɐʇɔɥᴉuƃ sǝʇ˙ ˅˅˅
     ˄˄˄ Here's a matching set. ˄˄˄

    ˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄˄

    "Actual size": ˅˄˅˄
    (more info)


    Edit: Another Option...

    ⋁⋁⋁⋁⋁⋁⋁⋁⋁⋁ Unicode #8897 / U+22C1 (info) named N-ARY LOGICAL OR

    ⋀⋀⋀⋀⋀⋀⋀⋀⋀⋀ Unicode #8896 / U+22C0 (info) named N-ARY LOGICAL AND

    "Actual size": ⋁⋀⋁⋀

    0 讨论(0)
  • 2020-12-07 07:55

    There's always a lowercase "v". But seriously, aside from Unicode, all I can find would be &darr, which looks like ↓.

    0 讨论(0)
  • 2020-12-07 07:56

    You might be able to use the black triangles, Unicode values U+25b2 and U+25bc. Or the arrows, U+2191 and U+2193.

    0 讨论(0)
  • 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
    
    0 讨论(0)
  • 2020-12-07 07:58

    The ^ (Caret - or Ascii Circumflex), produced by pressing shift + 6, does not appear to have an Ascii opposite, namely an Ascii Inverted Circumflex.

    But for your alternative character pairing that also have keyboard combinations, you could use:

    ˆ (Circumflex) shift + alt + i and
    ˇ (Caron) shift + alt + t

    Source: fileformat.info

    0 讨论(0)
  • 2020-12-07 08:00

    A powerful option – and one which also boosts creativity – is designing your own characters using box drawing characters.

    Want a down pointing "caret"? Here's one: ╲╱

    I've recently discovered them — and I take great pleasure at using such custom designed characters for labeling things all around :) .

    0 讨论(0)
提交回复
热议问题