Write a program to read an ASCII string and to convert it to a unicode string encoded by utf-8.
Topic: Write a program to read an ASCII string and to convert it to a unicode string encoded by utf-8.
Solution
s = input() u = unicode( s ,"utf-8") print(u)
List all Python Programs