答案 0 :(得分:18)
在Google上快速搜索“unicode for overside down question”会让我看到一个维基百科article,其中表示
反转的问号(¿)对应于Unicode代码点191(U + 00BF)
¿ɹoɟbuıʞooןǝɹǝʍnoʎʇɐɥʍʇɐɥʇsı
答案 1 :(得分:15)
如果要获取角色的Unicode值,可以使用这个简单的Javascript:
javascript:alert("¿".charCodeAt(0))
这将提醒角色的Unicode值。如果你想在HTML中使用它,那么synthax就是& #191; (在&和#之间没有空格)其中191是你角色的Unicode号码。
答案 2 :(得分:2)
根据Ubuntu的 gucharmap :
U+00BF INVERTED QUESTION MARK General Character Properties In Unicode since: 1.1 Unicode category: Punctuation, Other Various Useful Representations UTF-8: 0xC2 0xBF UTF-16: 0x00BF C octal escaped UTF-8: \302\277 XML decimal entity: ¿ Annotations and Cross References Alias names: • turned question mark Notes: • Spanish See also: • U+003F QUESTION MARK • U+2E2E REVERSED QUESTION MARK
答案 3 :(得分:2)
我使用this site作为unicode字符的搜索工具。以下是¿
的{{3}}。它有一个结果:search results。
有用的网站。
答案 4 :(得分:1)
谷歌总是提供帮助:
http://www.google.com/search?hl=pl&q=unicode+for+inverted+question+mark&aq=f&aqi=&aql=&oq=&gs_rfai=
和
http://www.fileformat.info/info/unicode/char/bf/index.htm
回答:U + 00BF
答案 5 :(得分:1)
如果您了解Java,可以像这样打印:
$ cat UnicodeTest.java
public class UnicodeTest {
public static void main( String [] args ) {
System.out.println( ( int ) '¿' );
}
}
$ javac -encoding UTF8 UnicodeTest.java
$ java UnicodeTest
191
回答 191
Java的字符是unicode。
顺便说一句,¡这不是一个颠倒的问号!这是一个“开放”的问号。只是不是每个人都使用它,就像'('不是一个上升的括号。答案 6 :(得分:0)
Unicode table可能会对您有所帮助00A01F。