Below program prints the Currency symbol given the ISO 4217 currency code.
import java.util.*; public class Currency{ public static void main(String args[]
Using the limited Locale enum's only caters for westernised symbols. If you want to be a little more global try using Locales provided by:
Locale[] locales = Locale.getAvailableLocales();
Using Locales from this list gave symbols rather than TLA's pretty consistently.