How to Download a Website Favicon | Free Online Tool

How to download a website favicon online in PNG or ICO format

Want to download a favicon from a website without digging through source code? Paste the site URL into a favicon downloader, preview every icon the site exposes, and save PNG, ICO, SVG, or other formats in one click. This guide covers the free online method, plus manual and CLI options when you need more control.

16–512px

Common Icon Sizes

PNG/ICO/SVG

Formats You Will See

1 URL

To Fetch All Variants

0 Install

Browser-Only Workflow

What is a favicon (and why grab one)?

A favicon is the small brand icon shown in browser tabs, bookmarks, history, and often search results. Modern sites rarely ship a single 16×16 file. They publish a set: a classic favicon.ico, PNG tab icons, an Apple Touch icon for iOS home screens, SVG icons for crisp scaling, and larger PWA icons in a web app manifest.

People use a favicon grabber or favicon extractor for practical jobs:

Where websites hide favicons

Before you download anything, it helps to know the usual locations a website favicon downloader checks:

Diagram of three ways to download a website favicon: online downloader, /favicon.ico, and HTML link inspection

Figure 1: Online fetch, root ICO, and HTML inspection are the three reliable paths.

Favicon sizes and formats cheat sheet

Pick the variant that matches your use case. Larger sources scale down cleanly; tiny tab icons look soft when enlarged.

Asset Typical Size Format Best For
Tab / bookmark icon 16×16 or 32×32 ICO or PNG Browser chrome, tiny UI chips
SVG favicon Any (vector) SVG Crisp scaling, modern browsers
Apple Touch icon 180×180 PNG iOS home screen, sharper mockups
PWA / Android icons 192×192, 512×512 PNG Install prompts, high-res brand marks

Download methods compared

Method Finds Multiple Sizes? Skill Level Best For
Online favicon downloader Yes Beginner Fast grab with preview and download
Open /favicon.ico or View Source Sometimes Intermediate One-off checks when you know the path
curl / favicon API Depends Advanced Scripts, batch jobs, local pipelines

Method 1: Use a free website favicon downloader (easiest)

The quickest way to download favicon from website URLs is our free Website Favicon Downloader. Enter a full URL (with https://), click Fetch, then download the size and format you need.

  1. Open the Website Favicon Downloader.
  2. Paste the site address into the URL field (include the protocol, for example https://example.com).
  3. Click Fetch (or press Enter).
  4. Review the returned icons: dimensions, file size, and extension (PNG, ICO, SVG, and more when available).
  5. Click Download on the variant you want. Prefer the largest sharp PNG or SVG for design work; keep ICO when you need the classic tab file.

If a site returns several icons, choose the highest resolution that still looks clean. A 180×180 Apple Touch icon or 512×512 PWA icon is usually better for presentations than a 16×16 tab favicon.

Method 2: Grab it manually in the browser

When you want to see exactly what the site declares, use these quick checks:

Try the root ICO

  1. Visit https://example.com/favicon.ico (replace with the real domain).
  2. If an icon loads, right-click and choose Save image as….

This fails on many modern sites that only declare icons via HTML or a CDN path.

Inspect the HTML head

  1. Open the website, then View Page Source (or Inspect).
  2. Search for rel="icon", apple-touch-icon, or manifest.
  3. Copy the href, open that absolute URL in a new tab, and save the file.

Relative paths like /icons/icon-192.png resolve against the site origin. Absolute CDN URLs can be copied as-is.

Method 3: Download with curl (for scripts)

For automation or offline workflows, fetch a known icon URL directly:

curl -L "https://example.com/favicon.ico" -o favicon.ico

If you only need a cached square PNG for a directory UI, Google’s undocumented favicon endpoint is a common shortcut (subject to change and rate limits):

curl -L "https://www.google.com/s2/favicons?domain=example.com&sz=128" -o favicon.png

Prefer the site’s own declared assets when quality matters. Cached API icons are convenient for lists, but they are often smaller and may lag behind a rebrand.

Tips and common mistakes

Related free tools

Frequently Asked Questions

How do I download a favicon from a website for free?

Paste the full site URL into a free favicon downloader, fetch the available icons, then download the PNG, ICO, or SVG variant you need. You can also open /favicon.ico or the link href from the page source and save the image manually.

What format should I download: PNG or ICO?

Use PNG (or SVG) for design work, presentations, and high-resolution previews. Use ICO when you need the classic multi-size favicon file for legacy browser support or to replace /favicon.ico on a site.

Why is the favicon I downloaded blurry?

You likely saved the tiny tab icon (often 16×16). Look for a larger apple-touch-icon or PWA icon (180×180, 192×192, or 512×512). Those stay sharper when placed in mockups.

Can I extract every favicon size a site provides?

Often yes. A good website favicon downloader returns multiple variants with dimensions and file type. Manual inspection of link tags and the web manifest can reveal additional sizes the automated fetch missed.

Is it legal to download someone else’s favicon?

Saving an icon for personal reference or a temporary mockup is common practice, but brand marks are typically protected. Do not republish or use a company’s favicon commercially without permission.

Favicons live in more places than /favicon.ico, and the best file for your job is usually the largest clean PNG or SVG, not the tiny tab icon. When you need a fast grab, open the free Website Favicon Downloader above, paste the URL, and download the variant that matches your use case.