How to fetch currency symbol from Shopify Markets API?

We have an app with certain functionalities where we use Shopify Markets.

Use case:
Currently, we fetch the store’s default currency to display the currency symbol.

However, when using Markets, we only get the market currency code, not the symbol. For our requirement, we need the market’s currency symbol as well (similar to how we get it for the store’s default currency).

Refer to the attached screenshot for reference.

Question:
Is there a way to get the currency symbol directly from the Market API, or do we need to handle this manually by mapping currency codes to symbols?

You can use the browser built in Intl
For example new Intl.NumberFormat(undefined, { style: "currency", currency: "EUR" }).format(number)

You can then pass it the currency code and number and it will format it correctly and even into the locale of the user! No external dependencies required