Why doesn't encoding=utf-8 works for swedish chars?
Hello!I thought that the encoding=utf-8 in a xml would accept all chars in Unicode.
(I guess the swedish chars "ÅÄÖ" is available in Unicode, and I also guess UTF-8 is Unicode).
How ever if create a xml like:
<?xml version="1.0" encoding="utf-8"?>
<head>
<type>ABC</type>
</head>
This works fine in Internet Explorer.
But if I create one like:
<?xml version="1.0" encoding="utf-8"?>
<head>
<type>ABC ÅÄÖ</type>
</head>
It doesn't work at all?
Have I missed something fundamental here?
If I use ISO-8859-1 it works but why doesn't Unicode work, if I'm right when saying UTF-8 is Unicode?
Best regards
Fredrik
