Hi,
Follwoing is the code I used for showing Japanese Chnaracters in Fusionchart. (My XML contains Japanese characters)
OutputStream out = response.getOutputStream();
outs.write( new byte[]{(byte)0xEF, (byte)0xBB, (byte)0xBF} );
out.write(xmlDoc.getBytes());
out.flush();
out.close();
Also Tried follwoign one
PrintStream ps = new PrintStream(response.getOutputStream(), true, "UTF-8");
ps.print(new byte[]{(byte)0xEF, (byte)0xBB, (byte)0xBF});
ps.println(xmlDoc);
ps.close();
for these 2 code the result is coming as the "pict1.jsp" chart.
Now I tried in stanalone HTML file using ASCII code for the japanese characters (amp;#24215;amp;#33303; is correspondind ASCII code for my Japanese character).
This gives me the "pict2.jsp" chart
In both the cases the actual japanese character is not showing.
please advice me further for fixing this issue.