I have a string.
s = u\"
in python2, try this to convert your unicode string:
>>> s.encode('latin-1').decode('gbk') u""
then you can encode to utf-8 as you wish.
>>> s.encode('latin-1').decode('gbk').encode('utf-8') ""