I have a list of tweets that has been delivered as a csv. But when I read them, the emojis unicode has been converted as str and I can't translate them to their real name ("waffle" or "heart").
def load_csv(csv_name):
path = os.getcwd()
df = pd.read_csv(path + "/" + csv_name, header=0, index_col=0, parse_dates=True, sep=",", encoding="utf-8")
return df
csv_name = "tweets_nikekaepernick.csv"
df = load_csv(csv_name)
text = df["tweet_full_text"].iloc[0]
text
Out[]: 'Hi <U+0001F602><U+0001F602><U+0001F480><U+0001F480><U+0001F480><U+0001F480>'