How do I display the Euro symbol?
Created May 7, 2012
John Zukowski You can use the Unicode symbol:
u20AC
Keep in mind that when you use System.out, it strips the high order byte from the output. In other words, you can't use System.out.println("u20AC") to get a Euro to the console.