Windows: Right-click the `.zip` file → select `Extract All…` → choose a destination folder → select `Extract`
Windows (alternative): Right-click the `.zip` file → select `Extract to
macOS: Double-click the `.zip` file
macOS (terminal): `unzip file.zip -d /path/to/destination`
Linux (terminal): `unzip file.zip -d /path/to/destination`
Linux (if `unzip` is not installed): `sudo apt-get install unzip` (Debian/Ubuntu) or `sudo dnf install unzip` (Fedora/RHEL)
Linux/macOS (terminal for current directory): `unzip file.zip`
Extract to a specific folder name: `unzip file.zip -d folder_name`
