Let's say I have two CSV files each containing different emojis.
The first CSV contains a list of all emojis with corresponding Unicodes (shortened for the sake of question here):
Emojis Unicode
1F600
1F603
1F604
1F601
1F606
1F605
1F525
✨ 2728
The second CSV contains a shorter list of random emojis drawn from Twitter posts
Emojis Freq.
45
3
93
39
✨ 35
I am trying to figure out a solution that will create a new column with Unicode corresponding to the emoji in each row to the SECOND CSV file. End result would be somewhat like this:
Emojis Freq. Unicode
45 1F600
3 1F525
93 1F603
39 1F601
✨ 35 2728
The closest question that I could find was here but it did not work in my case...
I am using Python 3.9