php - How to remove � sign from whole site in wordpress -


i have uploaded wordpress site on live , 1 "�" sign being appearing in between content , fine in local. how remove please suggest me ? not able fix problem.

example - frédèric becomes fr�d�ric.

ensure web page uses utf-8 encoding:

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

if use php, can send own headers in way (you have put before other output):

<?php header('content-type: text/html; charset=utf-8'); ?> 

Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -