I have a unicode string with accented latin chars e.g.
n=unicode(\'Wikipédia, le projet d’encyclopédie\',\'utf-8\')
I want to convert it to
Without measuring, I would expect that the .translate method of Unicode strings is the fastest solution. You should definitely make your own measurements, though.