Basically, in able to do that, you need to use UTF-16 surrogate pair form to have the cross symbol:
String cross = "\ud800\udc35";
Also, you can use 32-bit code in the form of an int:
String cross = new String(new int[] { 0x10035 }, 0, 1);
I hope this will help.
Want to know more about Java? Prefer this tutorial on Java Tutorial.
Want to become a Java Expert? Join Java Course now!!