I wan't decode json string from file, but there is problem with special characters(for ex. '™', '★'..). My code from PHP
$price_string = file_get_contents("/var/www/bot/price.json");
$price = json_decode($price_string, true);
echo $price["StatTrak™ P250 | Mehndi (Field-Tested)"];
Result should be 12.01, but the result is this:
Notice: Undefined index: StatTrak� P250 | Mehndi (Minimal Wear) in /var/www/html/menu.php on line ..
And the JSON string is for example:
{
"★ Huntsman Knife | Boreal Forest (Well-Worn)": 62.84,
"StatTrak™ P250 | Mehndi (Field-Tested)": 12.01
}