When I split a string containing special (unknowns) characters such as new emojis (this one for instance --- > ""), Python will return it to me this way --> "\U0001f972".
s = " "
liste = s.split()
print(liste)
This returns ['\U0001f972', '\U0001f972'] but I need ['', '']
How could I make so ?