View on GitHub An emojified dialect of brainf**k written in Rust. Created By Romulus10 and InsidiousMind Brainf**k is an esoteric, Turing-complete programming language created in 1993 by Urban MΓΌller. It consists of 8 commands and an instruction pointer. Usually, the commands are used to move along a single array of individual bytes and increment, decrement, input, and output. This is our own special take on brainf**k - instead of the traditional commands, it uses UTF-8 emojis. The commands are as follows: Emoji UTF-8 Code Points Unicode Meaning Brainf**k Equivalent π₯ F0 9F 94 A5 U+1F525 Move Right > π― F0 9F 92 AF U+1F4AF Move Left < π© F0 9F 92 A9 U+1F4A9 Decrement - π F0 9F 91 8D U+1F44D Increment + π F0 9F 92 9E U+1F49E Output . π F0 9F 99 8F U+1F64F Input , π F0 9F 8C 9A U+1F31A Jump Forward [ πΈ F0 9F 90 B8...