Remove � Special Character from String

Arun Selva Kumar

I have been trying to remove junk character from a stream of html strings using PHP but haven't been successfull yet. Is there any special syntax or logics to remove special character from the string?

I had tried this so far, but ain't working

 $new_string = preg_replace("�", "", $HtmlText); 
 echo '<pre>'.$new_string.'</pre>';
Arun Selva Kumar

This is due to mismatch in Charset between database and front-end. Correcting this will fix the issue.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Remove � Special Character from String

From Dev

Python / Remove special character from string

From Dev

remove all special character from string java

From Dev

how to remove first special character from string

From Dev

remove all special character from string java

From Dev

Remove special character tag from my string

From Java

how to remove special character from the beginning and end of a string in c

From Dev

How to remove a specific special character from a string along with all Alphabets

From Dev

Remove special character from string only if is not inside word

From Dev

PHP remove special character from string and leave some

From Dev

how to remove special character "," from a string using perl

From Dev

Regex remove a special and duplicated character from the string in javascript?

From Dev

How can I remove the special character words from a string?

From Dev

Removing special character from a string

From Dev

Convert string from special character

From Dev

Javascript substring character from string with special character '/'

From Dev

remove part of string after a special character

From Dev

Remove Special Character from google chrome URL

From Dev

Remove special character from set of values in Python

From Dev

remove special character from files in directory

From Dev

Powershell Remove Special Character(s) from Filenames

From Dev

Remove special Character from complete table

From Dev

Remove Special char from the string

From Dev

Replace the special character and space from the string in javascript

From Dev

Delete special character from a string value

From Java

Remove the last character from a string

From Dev

(swift) remove "\" character from string?

From Java

Swift - Remove " character from string

From Dev

Remove first character from a string

Related Related

  1. 1

    Remove � Special Character from String

  2. 2

    Python / Remove special character from string

  3. 3

    remove all special character from string java

  4. 4

    how to remove first special character from string

  5. 5

    remove all special character from string java

  6. 6

    Remove special character tag from my string

  7. 7

    how to remove special character from the beginning and end of a string in c

  8. 8

    How to remove a specific special character from a string along with all Alphabets

  9. 9

    Remove special character from string only if is not inside word

  10. 10

    PHP remove special character from string and leave some

  11. 11

    how to remove special character "," from a string using perl

  12. 12

    Regex remove a special and duplicated character from the string in javascript?

  13. 13

    How can I remove the special character words from a string?

  14. 14

    Removing special character from a string

  15. 15

    Convert string from special character

  16. 16

    Javascript substring character from string with special character '/'

  17. 17

    remove part of string after a special character

  18. 18

    Remove Special Character from google chrome URL

  19. 19

    Remove special character from set of values in Python

  20. 20

    remove special character from files in directory

  21. 21

    Powershell Remove Special Character(s) from Filenames

  22. 22

    Remove special Character from complete table

  23. 23

    Remove Special char from the string

  24. 24

    Replace the special character and space from the string in javascript

  25. 25

    Delete special character from a string value

  26. 26

    Remove the last character from a string

  27. 27

    (swift) remove "\" character from string?

  28. 28

    Swift - Remove " character from string

  29. 29

    Remove first character from a string

HotTag

Archive