converter string para unicode python 3

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