Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 741 Bytes

File metadata and controls

48 lines (30 loc) · 741 Bytes

bintxt – A CLI for converting binary text

Convert utf8-encoded text to binary text, and vice versa.

⚠️ Disclaimer: I'm just tinkering. Use at your own risk!

Features

  • Encode text to binary text
  • Decode binary text to human-readable text

Usage

Commands

  • encode: Convert text to binary text
  • decode: Convert binary text to readable text

Examples

Encode text

bintxt encode hello

Output:

01101000 01100101 01101100 01101100 01101111

Decode binary text

bintxt decode 01101000 01100101 01101100 01101100 01101111

Output:

hello

License

This project is licensed under the MIT License. See the LICENSE file for details.