at the moment I am using region info to get currency symbol.
For other countries it seems to work fine
var info= new RegionInfo("THB");
var currency = info.CurrencySymbol;
currency ends up being THB
instead of ฿
May I ask how do I get the correct currency symbol or why it's returning THB instead of ฿
I've tried what others suggested, putting "TH", same outcome unfortunately.