I have a string like
↵my name is Pankaj↵
I want to remove the ↵ character from the string.
↵
\"↵select * from e
You can also try regex as well,
regex
"↵select * from eici limit 10".replace(/↵/g, "")