You could just use Unicode hex value inside your println statement:
System.out.println(se.execute() == 1 +2 * (9 - 5) ? "\u2713" : "\u2717");
\u2713
is ✓
\u2717
is ✗
Also, It's possible to put such types of symbols by using keyboard shortcuts:
E.g. in Windows: Alt +2713
and Alt +2717