Input text (utf-8) wrong

something wrong with utf-8. I input text with encode(utf-8) but result show wrong. I don’t know why is it.
i’m trying find solution fix it but don’t see.
Please help me.
#!/usr/bin/env python
# -- coding: utf-8 --
import rhinoscriptsyntax as rs
text = ‘Những’
text=text.encode(‘utf-8’)
print u’Những’
print “{}”.format(text)