Skip to content

Instantly share code, notes, and snippets.

@aeris
Created August 31, 2016 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aeris/e4448412c1ef67267e028691ee53b66a to your computer and use it in GitHub Desktop.
Save aeris/e4448412c1ef67267e028691ee53b66a to your computer and use it in GitHub Desktop.
public class Unicode {
public static void main(String[] args) {
if ( true ) {
// \u000A\u007D\u0020\u0065\u006C\u0073\u0065\u0020\u007B
System.out.println("True");
// \u000A\u007D\u0020\u0069\u0066\u0020\u0028\u0020\u0066\u0061\u006C\u0073\u0065\u0020\u0029\u0020\u007B
} else {
System.out.println("False");
}
}
}
// Will display "False" :P
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment