Symbol remove or replace Issue

How can i convert or remove that symbol � By Php function or any other process.
because i trying to insert that paragraph

“The Saragosa SW now features Infinity Drive Technology and increases the reel�s winding torque under load compared to its predecessor to give anglers a distinct advantage over hard-fighting game fish.”

in my-sql But Query Send me Error. that’s why i need to remove

PHP Function to Remove � Character

To remove the � character or any other undesired characters, you can use the str_replace function:

$text = "The Saragosa SW now features � Infinity Drive Technology...";
$text = str_replace("�", "", $text); // This will remove the � character

Good luck

Fix your character encoding problem

Sponsor our Newsletter | Privacy Policy | Terms of Service