Search for a command to run...

Emojis everywhere! Is it a joke? Or something is hiding behind it.
The characters in out.txt are domino-tile emojis (and one Mahjong tile). In Unicode, the Domino Tiles block covers U+1F030..U+1F09F and contains symbols like 🁳, 🁣, etc.
Most of the emojis (names like “DOMINO TILE VERTICAL-02-02”) fall in that range, only one symbol (🀡) is in the Mahjong Tiles block U+1F000..U+1F02F
U+1F073 (decimal 127091), 🁣 is U+1F063, 🁲 is , and so on. (The Mahjong tile 🀡 is U+1F021.)U+1F072“1F0…” and their low byte corresponds to an ASCII character. In practice, computing codepoint mod 256 yields an ASCII value. For instance, 127091 mod 256 = 0x73 = 115, which is the letter “s”. Similarly U+1F063 mod 256 = 0x63 (‘c’), U+1F072 mod 256 = 0x72 (‘r’) etc.Repeating this for every emoji gives an ASCII string.
scriptCTF{3m0j1_3nc0d1ng_1s_w31rd_4nd_fun!1e46d}
scriptCTF{3m0j1_3nc0d1ng_1s_w31rd_4nd_fun!1e46d}