I Have to replace the hidden white space character in ' 331431'.
The hidden white space character in this string was '\u00A0'
.
How to replace this character with mysql?
I have tried the usual replace mysql function to replace this, didn't work for me.
SELECT REPLACE(' 331431','\u00A0','');
The Output for the above Query is ' 331431'
.