I pulled out some text values from database, I need to parse this text but when I print text on the console it has some '?' character which are not visible on notepad++ and sqlyog. Below is the sample:
(some character string)??????(another string)???
I need to remove them, but all my efforts went into vain. I used string replaceall method and convert text into char array and again build the text but it is not working. How to remove these '?' characters from text?
Thanks in advance.