If you know Java, you can print it as follows:
$ cat UnicodeTest.java
public class UnicodeTest {
public static void main( String [] args ) {
System.out.println( ( int ) '¿' );
}
}
$ javac -encoding UTF8 UnicodeTest.java
$ java UnicodeTest
191
Answer 191
Java characters are unicode.
By the way, ¡This is not an inverted question mark! this is an “opening” question mark. It's just that not everyone uses it as "(" not up ").
source
share