RAR to ZIP Converter

Drop a RAR file here

It's converted on this device. Nothing is uploaded.

Someone sent you a .rar and your computer won't open it. That's not your fault, and it isn't a missing setting. ZIP support is built into Windows, macOS, Linux, Android and iOS; RAR support isn't built into any of them, because RAR is a proprietary format owned by one company and the software that makes it is paid. So a file that was convenient for whoever packed it becomes a small errand for everyone who receives it. This page does the errand. Drop the .rar in and you get a .zip back with the same files, the same folder structure and the same bytes — your operating system can open that without installing anything. The conversion happens on this device: the archive is read in the tab you're looking at, unpacked in memory, and rewritten as a ZIP there. Nothing is uploaded, so nothing sits in someone's queue and nothing is stored after you close the tab. That matters more than it sounds for archives, because a .rar is usually the whole of something — a project folder, a set of documents, a backup — rather than one stray file.

Built by Bob Article by Lace QA by Ben Shipped

How to use

  1. 1

    Drop the .rar file onto the box, or use Choose a RAR file. RAR4 and RAR5 archives both work.

  2. 2

    Wait a moment while it unpacks. Large archives take longer, and everything is happening on your own machine rather than on a server.

  3. 3

    If the archive is locked, a password box appears. Type the password and press Convert.

  4. 4

    Check the file list — it shows every file going into the ZIP and its size.

  5. 5

    Press Download ZIP. The file is named after the original, so holiday-photos.rar comes back as holiday-photos.zip.

Frequently asked questions

Ratings & Reviews

Rate this tool

Sign in to leave a written review.
Loading reviews…

What is a RAR file, and why does a ZIP open everywhere?

The RAR to ZIP Converter turns a .rar archive into a .zip your computer can open on its own. It runs in the browser tab you already have open — nothing is uploaded, and there's no account. Both formats do the same job: take a pile of files and folders, squeeze them, and hand you back one file. The difference is who is allowed to make them.

RAR

RAR is proprietary. The format belongs to one company, and the program that builds RAR archives is paid software. The decompression algorithm is published — anyone may write code that reads a .rar — but nobody may ship code that writes one without a licence. That asymmetry is the whole reason your computer is stuck. No operating system bundles RAR support, because no operating system vendor wants a licensed component for opening email attachments. RAR itself is good at its job: it compresses harder than ZIP on most real-world folders, and it can be split across pieces and given a recovery record. Those features are why people who archive a lot still use it.

ZIP

ZIP was published in 1989 and the format specification has been free to implement ever since. That single decision is why ZIP won the default slot on every platform. Windows has unpacked ZIP files straight from an Explorer window since the late 1990s. macOS has done it with a double-click since 2003. Linux desktops, Android, and the iOS Files app all handle it with nothing installed. A ZIP is not a better archive than a RAR — it is a more portable one, and portability is usually what you actually need when a file has to travel.

So the errand is small and specific: you have an archive in the format one company owns, and you need it in the format everyone can open. That's the entire job of this page.

How the RAR to ZIP conversion works

Four steps, all of them on your own machine.

  1. Signature check. The first eight bytes are read before anything heavier loads. A RAR4 archive starts 52 61 72 21 1A 07 00; RAR5 starts 52 61 72 21 1A 07 01 00. Both are handled. Anything else is rejected right there, so a .zip renamed to .rar gets an honest answer instead of a stalled progress bar.
  2. Unpack. A WebAssembly build of the official RAR decoder runs in the page and extracts every entry into memory. This is the part that needs the licensed-decoder-that-isn't — the published decompressor, compiled to run in a browser.
  3. Rewrite the paths. Every entry name is turned into a path that cannot escape the folder you unpack into. This is the step most converters skip, and it has a section of its own below.
  4. Repack. The extracted bytes are written as a ZIP with DEFLATE at level 6 — the middle setting, the same one most desktop tools use — and handed to you as a download named after the original file.

The download name follows the archive: holiday-photos.rar → holiday-photos.zip. Split-archive suffixes are dropped too, so movie.part1.rar comes back as movie.zip and backup.r00 as backup.zip. An archive called just .rar becomes archive.zip, because a file has to be called something.

Nothing is uploaded at any point. That is worth saying plainly, because the usual shape of converting RAR to ZIP online is: upload the archive, wait in a queue behind strangers, watch a countdown, then hit a size wall and a "go faster" plan. The upload is not a technical requirement — it is the product. A browser can decode and repack an archive by itself, so the queue, the ceiling, and the account only exist to be sold back to you. There is no file-size upload limit here because there is no upload.

What happens to file names, sizes and folders

A RAR entry name is almost unconstrained. It may contain backslashes, a drive letter, control characters, or .. — the instruction "go up one folder." Write that name straight into a ZIP and you hand the problem to whatever unpacks it next, which is a known class of attack called Zip Slip. So names are rewritten on the way through, and the file list shows you every one that changed.

Name inside the RARPath written into the ZIPWhy
../../.ssh/authorized_keys.ssh/authorized_keysEvery .. is dropped, so nothing lands outside your folder
C:\Windows\evil.dllWindows/evil.dllDrive letter stripped, backslashes turned into slashes
/etc/passwdetc/passwdA leading slash means "from the root of the disk"
re<p>o:rt"|?*.txtreport.txtCharacters Windows refuses to create a file with
report.txt. (dot, space)report.txtWindows silently eats trailing dots and spaces
a/b.txt (a second copy)a/b (2).txtTwo entries at one path means one file quietly disappears
../..unnamed-fileNothing survives the cleanup, so it gets a name
photos/🎉 party.jpgphotos/🎉 party.jpgUnchanged — emoji, Arabic, Cyrillic and spaces are all fine

Most archives need none of this. When one does, a note appears above the download button saying how many paths were rewritten, and each affected row in the file list shows "renamed from" with the original underneath. Nothing is changed behind your back.

Two things are deliberately preserved. Folder structure survives — docs/readme.md stays at docs/readme.md — and empty folders survive too, which sounds like a detail until you convert a project template and find its empty logs/ directory missing. File contents are untouched: both formats are lossless containers, so a photo, a spreadsheet or an executable comes out byte for byte identical. Only the wrapper changes.

The limits, and where each one comes from

Every ceiling here is a real constraint from the ZIP format or from how much a browser tab can hold. None of them is a paywall in disguise.

LimitValueWhere it comes from
Archive size512 MBThe archive exists in memory twice — packed in, unpacked out — before the ZIP is built. This keeps the peak inside what a phone survives.
Files inside5,000Each entry becomes its own block of memory.
One file, unpacked2 GBA ZIP member stores its size in 32 bits without the ZIP64 extension.
Everything unpackedJust under 4 GBThe ZIP central directory can only index that many bytes.
Path length1,024 charactersFar above any real path; far below what ZIP allows.

Sizes are shown the way a file manager shows them: 1,024 bytes reads as "1 KB", 1,536 as "1.5 KB", and a maxed-out archive as "512 MB". Above 50 entries the file list stops printing rows and tells you how many more there are, because 5,000 table rows would make the page crawl for no benefit. Past these limits, a desktop tool is genuinely the better call, and the RAR to ZIP Converter will say so rather than grinding until the tab dies.

When you'll need to convert a RAR to a ZIP

Four situations account for almost every visit to this page.

The common case is a received file. A colleague, a client or a forum sends a .rar; your machine shrugs; installing an unarchiver to read one attachment is a poor trade. Convert once, open the ZIP, move on.

The second case is forwarding. If a .rar confused you, it will confuse the next three people on the thread. Converting before you send it is a small courtesy that saves a round of "can you resend this as a zip?"

The third is systems that only speak ZIP. Upload forms for job applications, course submissions, print shops and app stores routinely accept .zip and reject .rar. So do plenty of email filters. A converted archive gets through where the original bounces.

The fourth is phones and tablets. A .rar on a phone is close to a dead end without an app; the same files as a .zip open in the built-in file browser on both Android and iOS.

Edge cases and gotchas

Multi-part archives cannot be converted one piece at a time. A split archive — movie.part1.rar, part2.rar, or the older .r00, .r01 — is one continuous stream cut into chunks. A single file can begin in part 3 and end in part 4, so no individual part holds anything complete. You need every piece in one folder and a desktop tool to rejoin them. If parts are missing, the data in them is genuinely gone.

Encryption is not carried across. A locked archive converts fine if you know the password, and the password stays in your browser. But the ZIP that comes out is not password-protected. If the archive was locked for a reason, don't forward the converted copy.

The ZIP is usually a bit larger. RAR compresses harder than ZIP's DEFLATE, so expect the output to grow — often 5 to 20%, more on archives full of similar text files. Occasionally it shrinks, usually when the RAR was built with compression off. If size matters more than compatibility, keep the original.

Timestamps restart. File contents are identical, but the entries in the ZIP are dated when the conversion happened, not when the files were last edited. For most uses this is invisible. If original modification dates matter — legal records, forensic copies — unpack the RAR with a desktop tool instead.

A damaged archive stays damaged. Conversion is not repair. If the archive won't open, that is the archive, not the page.

Related file tools

Once the archive is open, the work usually continues. If you're checking that a download arrived intact, the file hash verifier computes a checksum in the browser so you can compare it against the one the sender published. When a size is quoted in bytes and you need it in something human, the bytes to MB converter does the arithmetic.

If the reason you're wrestling with an archive is that something was too big to send, compress the contents rather than the container: image compressor for photos, compress PDF for documents, and GIF compressor for animations. Shrinking a 12 MB photo does far more than repacking the archive around it. All of them run on your device, same as the RAR to ZIP Converter.

Frequently asked questions

Can it convert a ZIP back into a RAR?

No, and no browser tool can. Reading RAR is permitted; writing it requires a licence from the format's owner. That's the whole reason RAR support isn't built into your operating system. ZIP is the format you can create anywhere, which makes it the sensible one to keep.

Does it work on a phone?

Yes. It runs in mobile browsers on Android and iOS, and the converted ZIP opens in the built-in file app. Be realistic about size, though — the stated 512 MB ceiling assumes a desktop's memory. A large archive on a three-year-old phone will be slow, and may not finish at all.

What about .7z, .tar.gz or .iso files?

Not handled. Those are different containers with different decoders, and the signature check rejects them straight away rather than half-unpacking something. This tool reads RAR4 and RAR5 archives and writes ZIP.

Is the converted ZIP safe to pass on?

Safer than the original, in one specific way: any entry name that pointed outside the extraction folder has been pinned back inside it, so whoever unpacks it next can't be surprised. That's all it does, though. It isn't a virus scan, and the files inside are unchanged — if the archive contained something malicious, the ZIP contains it too.

What does it cost, and what's the catch?

Nothing, and there's no account, no email field, and no upload. Microapp is funded by memberships rather than by metering the tools, and 10% of every dollar it earns goes to charity, off the top, audited quarterly. There's no locked "pro" version of this page — what you're using is the whole tool.

Does it work offline?

After the page loads, yes. The decoder downloads with the page, and from then on the conversion is pure local computation. Turn off your connection and convert anyway — it's the clearest proof that nothing is being sent anywhere.

It won't open my archive. What should I try first?

Start with the name: if it contains part1, part2 or ends in .r00, it's a split set and needs every piece plus a desktop tool. If a password box appeared, the archive is locked and the password is case-sensitive. If the file is over 512 MB, that's the browser's memory rather than a rule we chose. And if none of those fit, the archive itself is probably damaged — ask the sender for a fresh copy, which fixes this more often than any converter will.