Eğer bir PHP dize inşa etmeye çalışın böylece sigma (σ), byte sequende xCF x83
(codepoint U 03 C3) UTF-8 kodlaması ile temsil edilebilir
$sigma = "\xCF\x83";
But as I don't know FusionChart, I cannot say if it can handle UTF-8 encoded strings or multi-byte strings in general. kendi ürün açıklamasına göre, onlar (but require a UTF-8 BOM) unicode desteği yapmak, böylece PHP XML yanıtı oluşturabilirsiniz:
$response = "\xEF\xBB\xEF<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
<root>
<element attribute=\"\xCF\x83\">\xCF\x83</element>
</root>";
header('Content-Type: text/xml; charset=utf-8');
echo $response;
There is also a sigma (σ) character in ISO-8859-7 and Windows-1253 (xF3
) - ama bu size yardımcı olacaktır şüphe del>.
Third option would be to specify some kind of mathematical symbol font that maps the sigma (σ) to some other character.