Hey guys,<br>

I've installed Zope on a FreeBSD server. My problem domain is very
small: display a list of when people are unavailable, and let people
update the list. This is all in Danish, and here are come my problems.
Danish has three extra letters not in the ASCII alfabet, three
upper-case and three lower-case. When getting the data from a &lt;input
name=&quot;test&quot; /&gt; where I've written &quot;æ ø å Æ Ø Å&quot;, I get: Ã¦ Ã¸ Ã¥ Ã†
Ø Ã…<br>

<br>

What is the standard way of ensuring that I get the correct data?<br>

<br>

I tried writing a little converter, but the string<br>

<br>

tekst = tekst.replace(&quot;\xc3\xa6&quot;, &quot;ae&quot;);<br>

<br>

gives me the error <strong>UnicodeDecodeError: </strong><strong>'ascii' codec can't decode byte 0xc3 in position 0: ordinal not in range(128)</strong><br>

<br>

Do you have any suggestion on how to overcome these problems?<br>

<br>

Cheers<br>

<br>

&nbsp;&nbsp; Nik