得到一个特殊字符的Unicode码

2018-03-08  本文已影响30人  shuff1e
  1. Java中char的编码方式本来就是Unicode,占两个字节
public class Test
{
    public static void main(String[] args) throws Exception
    {
        int s='¿';
        System.out.println(Integer.toHexString(s));
    }
}
[root@shuffle-dev py_test]$ java Test
bf
  1. Python2中用u来指定Unicode字符串
#!/usr/bin/env python
# -*- coding: utf-8 -*-

s=u'¿'
print s.__repr__()
print s
[root@shuffle-dev py_test]$ python test.py
u'\xbf'
¿
  1. Vim作为专门给程序员用的editor,用一个简单的操作符ga就可以了
i<C-v>u00bf 就可以打印出一个¿
将光标移动到特殊字符上<ESC>ga
<¿> 191, Hex 00bf, Octal 277
上一篇 下一篇

猜你喜欢

热点阅读