Problem with encode

@Guille267

I’m not sure this will solve your issue, but give a try

  1. Read text file and store the data in a string variable
  2. Then use assign activity to convert the standard characters to utf-8
  3. Then write it back to the text file and check if it is written as expected

The assign command is

system.Text.Encoding.ASCII.GetString(system.Text.Encoding.UTF8.GetBytes(str))

3 Likes