magbyr Report post Posted February 23, 2007 I'm trying to display a chart containing UTF-8 encoded characters. It seems that FusionCharts is displaying my characters in ISO encoding anyway. I am using the setDataURL method to point to a servlet feeding xml data in UTF-8 format. Am I doing something wrong, or doesn't FusionCharts support Unicode? Magnus Share this post Link to post Share on other sites
Pallav Report post Posted February 24, 2007 Hi, FusionCharts does accept Unicode XML. Can you please make sure that your XML has a BOM mark that specifies UTF8 charset? Share this post Link to post Share on other sites
magbyr Report post Posted February 24, 2007 Thanks! Turns out that java doesn't write BOM to the UTF-8 outputstream. For anyone else having the same problem: write bytes 0xEF, 0xBB, 0xBF to the outputstream if the encoding used is UTF-8. I think UTF-16 contains BOM... Magnus Share this post Link to post Share on other sites