Initializing... drag & drop files here
Supports: 7Z
.7z files, and you can drop several at once — each is repacked separately, or combined, depending on the Combine setting below.tar -xzf.tgz extension some tools expectThe 7z format was created by Igor Pavlov and first released in 1999 as the native archive of the open-source 7-Zip utility. It is an open format — its specification has shipped with 7-Zip's source code since 2015 — and it defaults to LZMA/LZMA2 compression, a variant of the LZ77 algorithm that typically packs files tighter than the Deflate algorithm inside a standard ZIP. 7-Zip's own documentation notes its compressor produces archives roughly 2-10% smaller than PKZip and WinZip for the same data, and the gap is often larger on highly compressible content. It also supports AES-256 encryption.
The catch is reach. ZIP is built into Windows and macOS, so a recipient can double-click and extract it with zero setup. A .7z file is not: Windows File Explorer and the macOS Archive Utility cannot open it natively, so whoever receives it has to install 7-Zip, The Unarchiver, or a compatible tool first. That single compatibility gap is the main reason people convert. Common cases:
tar, Docker, and most Linux package tooling expect; TAR.XZ keeps the LZMA-style compression 7z users are used to..7z.Converting an archive is a re-pack, not an on-disk extract: xconvert decompresses the 7z on the server, then recompresses the same files into the target container. The files inside are unchanged.
| Format | Compression | Native on Windows/macOS | Typical use | Notes |
|---|---|---|---|---|
| 7Z | LZMA / LZMA2 (very high) | No — needs 7-Zip or compatible tool | Tight storage, encrypted archives | Open format (1999), AES-256 support |
| ZIP | Deflate (moderate) | Yes — built in | Sharing with anyone | Largest reach; bigger files than 7z |
| TAR | None (just bundles) | No (CLI / tools) | Unix bundling | Pair with gzip/xz for size |
| TAR.GZ / TGZ | gzip (moderate) | No (CLI / tools) | Linux distribution, tar -xzf |
The de-facto Unix archive |
| TAR.XZ | XZ / LZMA2 (very high) | No (CLI / tools) | Source releases, kernels | Same LZMA family as 7z |
| TAR.BZ2 | bzip2 (high) | No (CLI / tools) | Older Linux source tarballs | Slower than gzip, smaller than gzip |
Almost always because the computer doesn't have a tool that reads the 7z format. Unlike ZIP, the 7z format is not built into Windows File Explorer or the macOS Archive Utility, so double-clicking a .7z does nothing useful until you install 7-Zip (Windows) or an unarchiver app (macOS). The simplest fix if you just need the contents is to skip installing anything and extract the 7z online to pull the files straight out. If you instead need a sharable archive that opens everywhere, convert it to 7Z to ZIP. (A truncated or corrupted download can also fail to open, in which case re-downloading the original is the fix.)
No. Archive conversion is lossless for the files inside — they are decompressed and then recompressed bit-for-bit identically, so a document or image comes out exactly as it went in. What changes is the wrapper and the compression method, not the contents. The only practical trade-off is size: because ZIP's Deflate algorithm is less aggressive than 7z's LZMA, the resulting ZIP is usually somewhat larger than the original 7z.
Usually a little, yes. 7z's default LZMA/LZMA2 compression typically squeezes data tighter than the Deflate algorithm a standard ZIP uses, so re-packing 7z to ZIP often grows the file modestly. In our testing, a 7z archive of mixed text and source files re-packed to ZIP came out roughly 10-25% larger, with the exact gap depending on how compressible the contents are — already-compressed media like JPEGs or MP4s barely change. If keeping the file small matters more than universal compatibility, convert to 7Z to TAR.XZ, which uses the same LZMA family as 7z.
ZIP. It is the only common archive format that both Windows and macOS open natively with a double-click, so the person receiving it needs no extra software. TAR-based formats (TAR.GZ, TAR.XZ) are great inside Linux and developer workflows but are awkward for a typical Windows or Mac recipient. When in doubt, convert 7Z to ZIP.
Yes. Drop in multiple .7z files and use the Combine control: "Single Archive" merges them all into one output file, while "Individual Archives" produces a separate converted file per upload that you download together. There's no fixed file-count limit; the practical ceiling is total upload size and your connection speed.
Yes. Your archive is uploaded over an encrypted (TLS) connection, repacked on our servers, and then deleted automatically after a few hours. There's no sign-up, no watermark, and files are never shared or made public. Note that converting does not preserve a 7z's password encryption — if your 7z is AES-256 encrypted, you'll need to provide the contents unencrypted for repacking.