What is a UUencode decoder?
A UUencode decoder converts legacy uuencoded text back into binary bytes. UUencode is older than Base64 and appears in some Unix, email, and archive workflows.
How to use it
- Paste the full uuencoded block, including the
beginline andendline. - Let the tool decode the body lines.
- Download the reconstructed file.
Example
Input: a block starting with begin 644 hello.txt
Output: a downloadable decoded file.
Common mistakes
- UUencode is not Base64, so Base64 decoders will not handle it correctly.
- The
beginline is required. - Old email systems may wrap or alter lines, which can corrupt the output.
Related tools
- Decode Base64 files with Base64 to file.
- Inspect bytes with Base64 to hex.
- Validate Base64 strings with the Base64 validator.
Privacy and security
The uuencoded text is decoded locally in your browser. Treat unknown decoded files carefully.