I have a string contained in an array as follows:
array(1) { [0]=> string(11) "€5,000.00" }
When displaying the string, it is malformed:
Page charset is set to:
<meta charset="utf-8">
EDIT
To add more detail to this questions, this is how the string is being created:
$numberFormatter = new \NumberFormatter('en_US', \NumberFormatter::CURRENCY);
$moneyFormatter = new IntlMoneyFormatter($numberFormatter, $currencies);
$moneyFormatter->format(new Money($balance['amount'], $currency));
where new Money is the moneyphp class...