I have a text file containing this; "I do not know" character. Already search on google but I'm having hard time getting desired search result since I do not know what is the general term for this kind of character.
I tried removing it using below code but nothing happens. I also tried "\f" because I thought that character is form feed but still can't remove.
$replace = str_replace("\0", ' ', $str);
EDIT:
The said character is really form feed but somehow below code is not working for me.
$replace = str_replace("\f", ' ', $str);