Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

è

Status
Not open for further replies.

kante

Programmer
Dec 15, 2000
7
IT
i have thi xml page that causes error on the 'è' char.

<?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?>

.....
<sottoarea>
<title> chi è </title>
</sottoarea>
......
 
Try changing &quot;è&quot; with &quot;&egrave;&quot;
 
Sorry, change &quot;è&quot; whith &quot;& e g r a v e ;&quot; (whitout blank space, ovviously)
 
AFAIK, utf-8 supports only the alphanumerical characters used in english, without offering support for european characters.
But in general, any undisplayable characters can be represented in XML by using their hexadecimal representation:
&#xHHHH, where HHHH can be the hexadecimal code for a given character.
It is up to the displaying client to solve that reference to a character.

For your case, you should have instead of e' &xE8.

Cheers. [red]Nosferatu[/red]
We are what we eat...
There's no such thing as free meal...
once stated: methane@personal.ro
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top