I have a url like so:
something.com/?l=๐ฉ๐คญ๐ฅน๐
I want to use JavaScript to create an array of emojis. I would like them to be actual emojis rather than entities/ unicode/ whatever.
I can grab the data with URLSearchParams but I am not sure how to generate the list. I have tried splitting the string with '' but this splits each emoji into 2 (or more?) elements so isn't very helpful.
Thanks for any help/ pointers you can offer.