I have this code
String [] currency = {"US Dollar", "Philippine Peso", "British Pound", "Japanese Yen", "Indian Rupee",
"Syrian Pound"};
char [] symbol = { '\u0024', '\u20B1', '\u00A3','\u00A5', '\u20AC'};
I want the output to have this format: this is in a for loop:
System.out.println("\t\t"+ currency[i] + " ======> "+ symbol[i] + sell[i]
I want the output to show the currency symbol, but it is showing different characters. please help