fork(1) download
  1. class Example {
  2. public static void main(String[] args) {
  3. int code = 0x1F604;
  4.  
  5. System.out.println(Character.isSupplementaryCodePoint(code));
  6. System.out.println(Character.isJavaIdentifierPart(code));
  7. System.out.println(Character.isJavaIdentifierPart(Character.highSurrogate(code)));
  8. System.out.println(Character.isJavaIdentifierPart(Character.lowSurrogate(code)));
  9. }
  10. }
Success #stdin #stdout 0.1s 320320KB
stdin
Standard input is empty
stdout
true
false
false
false