Tool for decoding / encoding in Binaryfuck. Binaryfuck is a minimalist programming language subtituting to Brainfuck symbols, binary 3-digit codes from 000 to 111 (0 to 7).
Binaryfuck - 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!
Binaryfuck is a rewrite of the BrainFuck, aiming to make it an even more obfuscated programming language. It takes over the 8 basic operations of the BF but Binaryfuck uses instead binary sequences of 0 and 1. Thus, from lines of code in BrainFuck, the following table helps to match the code in Binaryfuck:
+ | 000 | Pointer value + 1 |
- | 001 | Pointer value - 1 |
> | 010 | Pointer position + 1 |
< | 011 | Pointer position - 1 |
[ | 110 | Loop while Pointer > 0 |
] | 111 | End loop |
. | 100 | Output Pointer as ASCII |
, | 101 | Store input into Pointer |
Example: The Binaryfuck program 000000000000000000000000000000110010000010000000000010000000000000000000000010000000000000000000000000000000011011011011001111010010010001001001001100000000000000000000000100000000000000000100 corresponds to BF code ++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>----.+++++++.+++++. and should output the characters BIN
An Binaryfuck code is not really decoded, it runs like any program, thanks to an interpreter. dCode displays each byte returned in the console (and the final memory register).
The message is binary and has a length multiple of 3.
The distribution of the trigrams follows the frequencies of the Brainfuck.
Since the binary message is quite long, it is common to rewrite it in hexadecimal or in base32 or base64.
dCode retains ownership of the "Binaryfuck" source code. Any algorithm for the "Binaryfuck" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Binaryfuck" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Binaryfuck" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Binaryfuck" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Binaryfuck on dCode.fr [online website], retrieved on 2025-04-16,