On Tuesday 05 July 2005 08:26, Lior Kesos wrote: > Now I'm pretty weak on the why but I know I want to store my results > in utf8 because it's pretty much what everyone (mysql) uses to be > overpass these types of problems. > It there a way I can cast/transform encodings?
You can use unicode command for this: string = unicode(string, 'utf-8') Regards, Viktorija
