Ver original#coding: utf-8 path = r"/home/usuario/archivo-utf8.txt" f = open(path, "rb")data = f.read()f.close() print unicode(data, "utf-8")