I'm assuming that you're dynamically generating some HTML document. If
so, have you declared the "document encoding" in the HTML file to be
utf-8?
Neanderthals’ Last Stand Is Traced
here is the html file
and here the python code for inserting
filt= Cheetah.Filters.EncodeUnicode()
web.insert('feed_entry',feedtable_id=feedt_id,title=filt.filter(d.entries[i].title),link=d.entries[i].link,updated=chkup)
and code for retriving feeds
i use cheetah to display
feedentry_dct=dict((i.id,web.query("select * from feed_entry where
feedtable_id = $i.id ORDER BY
updated desc, created",vars=locals())) for i in feedlist)
how it is displayed in the html file or cheetah template
#for i in $feedentry_dct[$blog.id]
<a href="$i.link">
$str($i.title)
</a>
thanks for your help
ANil