Binary → ASCII
Result
—
Binary → ASCII
Convert binary byte sequences into ASCII characters.
Conversion
Binary → ASCII: split the bitstring into 8-bit bytes (or specified width), convert each byte to its integer value and map to the corresponding ASCII character. Example: 01001000 01101001 → 'Hi'