🔢 Binary ↔ Text Converter
Convert between binary code and text (ASCII)
Input (Text)
Output (Binary)
Binary Basics:
• Each character is represented by 8 bits (1 byte)
• Binary uses only 0 and 1 digits
• ASCII characters range from 0-127 in decimal
• Text is encoded as UTF-8, so accented, non-Latin and emoji characters use several bytes and round-trip losslessly
Example: 'A' = 01000001 (65 in decimal)