I have a sentence by combining emoji encoding and I want to separate after "\u" characters
sentance = "Whoaaa\\ud83d\\udc4f"
and other case :
sentance = "blabla whoaaa\\ud83d\\udc4f blabla"
I want the results like this:
result= "blabla whoaaa \\ud83d\\udc4f blabla"
or
sentance = "Whoaaa \\ud83d\\udc4f"