Skip to content

Instantly share code, notes, and snippets.

@Dinnerbone
Last active January 1, 2016 05:19
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dinnerbone/8098147 to your computer and use it in GitHub Desktop.
Save Dinnerbone/8098147 to your computer and use it in GitHub Desktop.
public class Foo {
public static void main(String[] args) {
String x = "This is weird: \u0022\u003B\u0069\u006E\u0074\u0020\u0079\u003D\u0031\u002F\u0030\u003B\u0078\u003D\u0022???";
System.out.println("x = " + x);
}
}
@Magvaag
Copy link

Magvaag commented Dec 23, 2013

?

@AndreasDahl
Copy link

Division by zero? EXPLAIN YOURSELF!

@samullen
Copy link

LOL. I bet Notch could divide by zero.

@proimage
Copy link

This may help the confused: http://rishida.net/tools/conversion/

@pdelvo
Copy link

pdelvo commented Dec 23, 2013

Its funny that the compiler is not smart enough to detect this at compilation

@hanetzer
Copy link

mind == blown

@stertingen
Copy link

Well, (okay, I have read Twitter) Java has to improve this...

@mcy
Copy link

mcy commented Dec 23, 2013

By this logic this https://gist.github.com/drXor/8100658 compiles.

@jglrxavpok
Copy link

Division by 0 x)
Now I just want to mess up with the compiler :)

@ictrobot
Copy link

:D

@sysr-q
Copy link

sysr-q commented Dec 23, 2013

@drXor When people with no programming knowledge posted asking for someone to modify a plugin, I'd usually give it to them like that, just to see if they knew what was what.

@hakanai
Copy link

hakanai commented Dec 24, 2013

Java supports non-ASCII for names of variables, classes and so forth. If you receive files from some developer with non-ASCII name in them which you don't want to corrupt, using native2ascii is one (dodgy, IMO) option you have to convert it to a plain ASCII file which compiles to the same result. Because Sun wanted to support this, Unicode escapes work anywhere, not just inside strings.

The fact that they also work for encoding basic stuff like double quotes is highly amusing, though.

BTW, if you run the file through native2ascii -reverse Foo.java Foo.java.native, you get the real code being compiled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment