Remove  from csv, python, php, from text file?

Remove  from csv, python, php, from text file?

How to remove the  from csv, or in python, or in php, or from a text file?

If you see this character appearing on your page, you might have a code like this in the header:

1
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

Replace it with this code:

2
3
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">

This code should solve the problem and  will not appear anymore.

If you know other methods to remove the  special character from a csv file, python, php, or from text file, please leave in the comments section.

Add a comment: