Query Details
print a=' ππ¨π πΎππ§ππ₯π²ππ’ππ¬πΎπ€πππππ'
| extend a=extractall('(.)', a)
| mvexpand a
| extend a=substring(base64_encodestring(strcat('abracadabra', a)), 19)
| summarize Message=replace(@'[+]', ' ', replace(@'[[",\]]', "", tostring(makelist(a))))
The query takes a string of emojis and characters and performs several operations on it.
First, it extracts each individual character from the string. Then, it expands the extracted characters into separate rows. Next, it concatenates the extracted characters with the string 'abracadabra' and encodes the resulting string in base64. After that, it takes a substring of the encoded string starting from the 19th character. Finally, it replaces certain characters in the resulting list and concatenates them into a single message.

Rod Trent
Released: March 26, 2020
Tables
Keywords
Operators