What I do:
public class Main { public static void main(String[] args) { char i = 0x25A0; System.out.println(i); i = 0x2612; System.out.println(i); i = 0x2610; System.out.println(i); } } What I get in the IDE:
What I get in the console:
IDE UTF-8, Windows10, Russian locale, fonts were beaten by Consolas and Lucida Console - everything is always OK in IDE, but not in the console. Encoding 65001 for the console did not help. I think the problem is in the encoding. How to achieve the correct display of characters?

