Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

remove unicode characters from string python

string_unicode = " Python is easy u200c to learn. "
string_encode = string_unicode.encode("ascii", "ignore")
string_decode = string_encode.decode()
print(string_decode)
Source by pythonguides.com #
 
PREVIOUS NEXT
Tagged: #remove #unicode #characters #string #python
ADD COMMENT
Topic
Name
6+4 =