Initializing... drag & drop files here
Supports: ZIP
.zip file onto the upload area, or click "+ Add Files" to pick one from your computer. Batch is supported — queue several archives in a row.ZIP is the most common archive format on the web — Phil Katz designed it for PKWARE's PKZIP utility in 1989, and almost every operating system can read at least the basic flavor today. The catch is that "basic" leaves a long tail of failure cases: Windows Explorer can't open AES-encrypted archives, macOS Archive Utility mangles Windows-encoded filenames, ChromeOS has no native viewer for multi-part ZIPs, and mobile browsers usually punt to a third-party app. An online extractor that runs in the browser sidesteps all of these.
zip or by 7-Zip. A browser extractor handles both.| Property | ZIP | RAR | 7z |
|---|---|---|---|
| First released | 1989 (PKWARE / Phil Katz) | 1993 (Eugene Roshal) | 1999 (Igor Pavlov, 7-Zip) |
| Default compression | DEFLATE | RAR / RAR5 | LZMA2 |
| Typical ratio (mixed 100 MB) | ~62 MB | ~56 MB | ~52 MB |
| Max archive size | 4 GiB (16 EiB with ZIP64) | 8 EiB | 16 EiB |
| Strong encryption | AES-128 / AES-256 (spec v5.2, 2003) | AES-256 (RAR5) | AES-256 |
| Encrypts filenames | No (contents only) | Yes (optional) | Yes (with -mhe=on) |
| Native on Windows | Yes | No (needs WinRAR/7-Zip) | No (needs 7-Zip) |
| Native on macOS | Yes (Archive Utility) | No | No |
| Open spec / royalty-free | Yes (APPNOTE.TXT) | No (proprietary) | Yes |
| Best fit | Universal sharing | Multi-volume + recovery records | Smallest output |
ZIP wins on compatibility; 7z wins on size; RAR has recovery records that survive partial corruption. For most "send this folder to a coworker" jobs, ZIP is still the right call.
| ZipCrypto (legacy) | AES-256 (recommended) | |
|---|---|---|
| Year added | 1990 (original PKZIP) | 2003 (APPNOTE 5.2) |
| Key strength | 96-bit stream cipher | 256-bit block cipher |
| Known attacks | Known-plaintext attack — 12 bytes of known content is enough; bkcrack recovers the key in under a minute on a laptop |
None practical against the cipher itself |
| Filenames encrypted | No | No (ZIP spec limitation) |
| Windows Explorer can open | Yes | No — needs 7-Zip, WinRAR, Keka, or The Unarchiver |
| Used by default in | Windows "compress to ZIP" | 7-Zip, WinRAR, WinZip when AES is selected |
If the archive holds anything sensitive (tax docs, customer lists, source code), pick AES-256 when creating it. If you've received a ZipCrypto archive, treat the password as a speed bump, not security. XConvert opens both kinds when you supply the password.
Also see RAR extractor, 7z extractor, or convert directly with ZIP to 7z, ZIP to RAR, RAR to ZIP, and 7z to ZIP.
Yes — when the archive is encrypted, you'll be prompted for the password before extraction. XConvert opens both ZipCrypto (legacy) and AES-128/AES-256 (modern WinZip-style) archives as long as you supply the correct password. XConvert cannot bypass or crack unknown passwords; for that you'd need a dedicated cracker like bkcrack or hashcat, and only against the weak ZipCrypto scheme.
Windows Explorer's built-in ZIP support never added AES decryption — only the 1990-era ZipCrypto scheme. If a ZIP was encrypted with AES-256 (the default in 7-Zip, modern WinRAR, and most security-conscious tools), Windows will either refuse to open it or extract empty files. Use XConvert, 7-Zip, WinRAR, Keka, or The Unarchiver instead.
Older Windows ZIPs encode filenames in the system code page (CP1252 for Western Europe, CP932 for Japanese, GBK for Simplified Chinese) instead of UTF-8. macOS Archive Utility assumes UTF-8 and produces names like "ëÄ_ä_é½éÉ.txt." XConvert detects the source encoding and renders the correct Unicode names. Newer ZIPs created with the UTF-8 flag (per APPNOTE 6.3.0, 2006) don't have this problem.
XConvert handles ZIP archives up to several hundred MB comfortably in the browser. For multi-gigabyte ZIP64 archives (game patches, full disk backups), a desktop tool like 7-Zip is usually faster because it reads from disk directly instead of going through browser memory. The format itself supports archives up to 16 EiB (ZIP64).
Yes. After opening the archive, XConvert shows the full file list with sizes and folder structure. Click any single file to download just that entry — useful when a 500 MB archive contains the one PDF or photo you actually want.
Yes. Nested folders, empty directories, and Unicode paths are reconstructed in the download. If you'd rather flatten everything into a single folder, download individual files instead of using "Download All."
XConvert processes ZIP archives server-side over an encrypted connection and deletes the files automatically after the session. If you need strict zero-upload extraction for confidential data (legal, medical, financial), use a fully client-side tool like ezyZip, or extract locally with 7-Zip.
ZIPX is WinZip's proprietary extension that allows newer compression methods (LZMA, PPMd, JPEG-recompression) inside a ZIP container. Standard ZIP readers — including Windows Explorer — can list the entries but fail to decompress them. XConvert handles standard ZIP and ZIP64; for ZIPX, WinZip's own extractor is the most reliable.
Sometimes. ZIP stores a central directory at the end of the file, so a truncated archive often won't open at all. If the central directory is intact but a single entry is damaged, XConvert can usually extract the surviving files. For archives with parity/recovery data, RAR has built-in recovery records that ZIP doesn't — ZIP relies on hoping the bytes you have are enough.