Import CSV file that contains accents

If you want to import some csv file that contain accents like “é” or special characters etc.. !

Here is  a way to do that !:

Get-content $File |

Out-File $File -Encoding Unicode

Where $File is the full path of your csv file 🙂

Leave a comment