Skip to content

Instantly share code, notes, and snippets.

@obfusk
Created June 11, 2023 15:27
Show Gist options
  • Save obfusk/5e07166d40ec23cd430b1cda33fdef0f to your computer and use it in GitHub Desktop.
Save obfusk/5e07166d40ec23cd430b1cda33fdef0f to your computer and use it in GitHub Desktop.
Java currency codes & symbols
import java.util.Currency
Currency.availableCurrencies.each {
println "${it.getCurrencyCode()}=${it.getSymbol()}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment