I am using IntelliJ IDEA and I was trying to print a string
that has unicode for a skier U+26F7 and for a runner U+1F3C3 with the following code:
System.out.println("\u26f7" + " " + "\u1f3c3");
Only the skier displays properly. However, IntelliJ does show the last 3 of the runner code with different color, indicating that there was a problem. Any ideas on how to fix this?