Answers for "utf8 converter"

2

convert string to utf8 python

FORMAT = 'utf8' 
text = 'Hello World!' # text to encode to FORMAT
encoded_text = text.encode(FORMAT) 
# the variable [text] is now encoded and is stored inside [encoded_text].
Posted by: Guest on July-04-2021
0

how to convert utf-16 file to utf-8 in python

with open(ff_name, 'rb') as source_file:
  with open(target_file_name, 'w+b') as dest_file:
    contents = source_file.read()
    dest_file.write(contents.decode('utf-16').encode('utf-8'))
Posted by: Guest on January-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language