The format your operating system will not open
ZIP is built into everything. RAR is not, and never has been, because it is a proprietary format whose compressor is licensed rather than open. Windows and macOS will both show you a .rar file and neither will open it.
So the usual path is to go and find a desktop utility, which for most people means a trial version that nags, or a search result that installs something you did not want. For a single archive somebody emailed you, that is a disproportionate amount of trouble.
Decompression, unlike compression, is freely available: the official unrar implementation is published as source and compiles to WebAssembly. That build is bundled with this page, so opening a RAR here needs nothing more than the browser you already have, and the archive never leaves your machine.
Opening an archive
- Drop your .rar file on the box or use Choose a file. One archive at a time.
- Click RAR Extractor Online. The archive is read, checked and unpacked in your tab.
- If it holds a manageable number of files, you get one download link per file plus a zip of the whole set, named after the original archive. A single file inside comes back on its own, with no zip.
- If it holds more than two hundred files, that zip is all you get.
- Process another clears the box for the next one.
There is no preview and no file list. Extraction is one action, which keeps the tool simple and means you cannot pull out a single file from a large archive without receiving the rest.
Two limits, for two different reasons
The first is a count. Whenever an archive holds more than one file, the results include one zip of everything alongside the individual download links, so grabbing the lot is a single click. Above two hundred extracted files those individual links stop being useful and become a wall, so the zip is handed back on its own instead. Both halves of that are a user experience decision rather than a technical one.
The second is a memory limit and it is real. Everything has to be held uncompressed in your tab at once, so the sum of every entry’s uncompressed size is checked before extraction begins and an archive over roughly a gigabyte is refused before extraction starts rather than being attempted.
That check is on the uncompressed total, not the archive’s own size. A heavily compressed archive of text can be small on disk and enormous once expanded, which is exactly the case a size check on the .rar file itself would miss.
Passwords and corruption are told apart
A RAR archive can be locked in two different ways, and both are detected.
The whole header can be encrypted, in which case even the list of file names is unreadable until a password is supplied. Or the names can be readable while individual files are encrypted, which is the mode that lets you see what is in an archive without being able to open it. Either way, extraction here is refused, and the message raised internally names the problem and the practical fix, which is re-saving the archive without a password in a desktop tool.
Failures that are not password related are reported as corruption instead. That distinction is made from the library’s own specific error reasons rather than from guesswork, so a truncated download and a locked archive do not produce the same message.
One caveat worth knowing: the shared layout around this tool replaces any error it raises with one fixed generic sentence, so those carefully separated messages do not reach the screen. If an archive is refused, work through the possibilities yourself, starting with whether it is password protected.
Folders come out flat
A browser download writes a file, not a directory tree. There is no way around that, so nested paths inside the archive are flattened to plain file names on the way out.
Where flattening would cause two files to collide, the names are made unique rather than one silently overwriting the other. The zip bundle is built from those same flattened names, so the two routes out of the tool behave consistently.
That does mean the zip is not a way to recover the folder structure. It is a convenience, so you can take everything in one click instead of one link at a time. If the original tree matters, keep the .rar itself and open it with a desktop tool.
Related archive tools
Unzip Files is the ZIP equivalent and shares this tool’s naming, bundling and safety limits directly rather than reimplementing them. Zip Files goes the other way and packs files up.
For the other formats that also need software on a fresh machine, 7z Extractor and Tar.gz Extractor cover them. If what came out of the archive is data rather than documents, Excel to JSON and JSON to CSV handle the conversion. The rest is on the dev tools hub.