Tool for decoding / encoding in Spoon. Spoon is a minimalist programming language strongly inspired by Brainfuck and composed only of 0 and 1.
Spoon - dCode
Tag(s) : Programming Language
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
The Spoon programming language is a variant of BrainFuck, of which it reuses the 8 operators but in order to make it even more obfuscated, the instructions are in binary. Thus, from a given BrainFuck code, the following table helps to convert the code to Spoon:
+ | 1 | increment +1 |
- | 000 | decrement -1 |
> | 010 | move right |
< | 011 | move right |
[ | 00100 | start loop |
] | 0011 | end loop |
. | 001010 | output |
, | 0010110 | input |
Example: The Spoon program 11111111110010001010101110101111111010111111111101101101101100000110100100101111111111111001010010111111111111001010000001010001010000001010 corresponds to BF code ++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>+++++++++++++.>++++++++++++.-..-. and should output the 5 characters Spoon.
To learn how to code with Spoon programming language, the easiest way is to learn the basics of Brainfuck and manipulation of pointers.
The Spoon cannot be exactly decoded, it can be run through an interpreter/compiler. The compiler will perform the requested instructions, and sometimes output something. Each output byte will appear in the dCode console. The contents of the memory is also displayed.
The message is binary, composed only of values 1, 000, 010, 011, 00100, 0011, 001010 and 0010110
dCode retains ownership of the online 'Spoon' tool source code. Except explicit open source licence (indicated CC / Creative Commons / free), any 'Spoon' algorithm, applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, translator), or any 'Spoon' function (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and no data download, script, copy-paste, or API access for 'Spoon' will be for free, same for offline use on PC, tablet, iPhone or Android ! dCode is free and online.
Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!
Thanks to your feedback and relevant comments, dCode has developed the best 'Spoon' tool, so feel free to write! Thank you!