i tried to use Answers which already were on stackOverflow but couldn't figure it out
here is my code , how can i print emojis on eclipse console public class SipirtAnimal {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner kb = new Scanner(System.in);
String name = kb.next().toLowerCase();
System.out.println("================================================");
System.out.println("YOUR SPIRIT ANIMALS ACCORDING TO YOUR NAME ARE ");
for(int i=0; i<name.length(); i++) {
switch(name.charAt(i)) {
case 'a':{
String grinningFace = "\xF0\x9F\x98\x81";
System.out.print(b);
}
}
}
}
}