It would seem safer to specify the default currency symbol.
Whatever your culture is defualt (for example, in the case of French Currrency there is a double currency, it can be a local currency or the euro)
NumberFormatInfo numberFormatInfo = (NumberFormatInfo) NumberFormatInfo.CurrentInfo.Clone (); numberFormatInfo.CurrencySymbol = "β¬";
Waqar source share