Bzip2 Decompressor
Input format:
This tool decompresses bzip2 only. For compression, use a CLI tool (
bzip2 file.txt) since browser-side bzip2 compression is unreliable.Base64 input
Or drop a .bz2 file
Drop a .bz2 file here
Or click to select — decompressed instantly in your browser
/
Decompressed output
About Bzip2
Bzip2 uses the Burrows-Wheeler block-sorting algorithm followed by Huffman coding, achieving better compression ratios than gzip at the cost of slower speed and higher memory usage.
- Common on Linux/macOS for single-file compression (.bz2 extension)
- Typical compression: 10–15% better ratio than gzip
- CLI compress:
bzip2 file.txt - CLI decompress:
bunzip2 file.txt.bz2 - Often combined with tar:
tar -xjf archive.tar.bz2
All processing happens in your browser — no data is sent to any server.