Konversi String ke Unicode Python 3

from numpy import unicode
t1 = "abc"
t2 = unicode(t1)
CompSciGeek