Currency currency = Currency.getInstance(currencyCode);
How do I get the symbol of the currency as it would appear in one of its native locales as opposed to the default locale?
currency.getSymbol()
won't work because that will be based of the default locale.
currency.getSymbol(Locale locale)
won't work because the code will not be able to derive a proper locale based purely on the currencyCode.