Random binary numbers are surprisingly often what you actually want, even when the rest of your project is in decimal or hex. Generated test data, simulated sensor readings, deliberately unpredictable tokens, and a dozen debugging tricks all rely on a quick way to spin up a list of strings made of 0s and 1s. The catch is that "random" is not a single thing — uniform or biased, fixed or variable width, seeded or fresh — and the wrong choice quietly gives you boring test cases or values that do not behave like the real data you are simulating.
Random Binary Numbers Generator produces strings of any length from a single bit to over a thousand, with optional uniformity bias, optional reproducibility seed, and preset widths for the common byte, half-word and word sizes. Set the length and the count, copy the result or download it, and you are ready to paste it into a test harness, a simulation or a stress-test for a parser.
Underneath the buttons is the small amount of information the system actually requires — what uniform and biased mean, what bit-width affects, what a seed does — plus practical guidance on when to pick which. Everything runs in your browser; nothing is uploaded.