logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Encode Files - Convert Binary to ASCII with uuencode | Online Free DevTools by Hexmos

Encode binary files efficiently with uuencode. Convert to ASCII format for reliable data transport across diverse mediums. Free online tool, no registration required.

uuencode

Encode binary files into ASCII for transport via mediums that only support simple ASCII encoding. More information: https://manned.org/uuencode.

  • Encode a file and print the result to stdout:

uuencode {{path/to/input_file}} {{output_file_name_after_decoding}}

  • Encode a file and write the result to a file:

uuencode -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}

  • Encode a file using Base64 instead of the default uuencode encoding and write the result to a file:

uuencode {{[-m|--base64]}} -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}

See Also