Unicode中的CIRCLED NUMBER

标签: ,

CIRCLED意为圈起来的,CIRCLED NUMBER就是有个圆圈圈起来的数字。

CIRCLED NUMBER的范围是U+2460到U+2473,一共20个,可以写个VBS来显示:

'CIRCLED NUMBER
'By Demon
'https://demon.tw
For i = &H2460 To &H2473
    s = s & ChrW(i)
Next
MsgBox s

显示①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳

而在936代码页(GBK)中只定义了前面十个CIRCLED NUMBER,后面的是不存在的。

除了CIRCLED NUMBER以外,Unicode还定义了其他的数字符号,详见Enclosed Alphanumerics

赞赏

微信赞赏支付宝赞赏

随机文章:

  1. Photoshop CS2官方免费版下载
  2. C语言调用API获取程序自身的路径
  3. Unable to find the socket transport "ssl" – did you forget to enable it when you configured PHP?
  4. Raspberry Pi -bash: nslookup: command not found
  5. VBS SendMessage

留下回复