🏠

[← Browse all favicons](/emojis)

# House Favicon

emoji favicon for any website. SVG, ICO, and PNG formats. Served from a global edge network in one HTTP request.

[ICO](https://emojifavicons.com/house-building.ico)
[PNG 32](https://emojifavicons.com/house-building?png&size=32)
[Apple Touch](https://emojifavicons.com/apple-touch-icon/house-building?png&size=180)
[SVG](https://emojifavicons.com/house-building?svg)

[✨ Customize (change shape, color, animation) →](/generator?emoji=%F0%9F%8F%A0)

## Install in your framework

Pick your stack, copy, paste. Works everywhere.

```
<!-- Paste into <head> -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building" />
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building" />
```

```
<!-- Auto-adapt favicon for system light/dark mode -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building?bg=ffffff&shape=rounded" media="(prefers-color-scheme: light)" />
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building?bg=0a0a0a&shape=rounded" media="(prefers-color-scheme: dark)" />
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building" />
```

```
<!-- index.html -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building" />
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building" />
```

```
// app/layout.tsx
export const metadata = {
	icons: {
 icon: 'https://emojifavicons.com/house-building',
 apple: 'https://emojifavicons.com/apple-touch-icon/house-building',
	},
};
```

```
<!-- index.html (Vite) or nuxt.config.ts -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building">
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building">
```

```
<!-- src/layouts/BaseLayout.astro -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building" />
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building" />
```

```
<!-- src/app.html -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building" />
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building" />
```

```
// Add to functions.php
add_action('wp_head', function () {
	echo '<link rel="icon" href="https://emojifavicons.com/house-building" type="image/svg+xml">';
	echo '<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building">';
});
```

```
<!-- layout/theme.liquid -->
<link rel="icon" type="image/svg+xml" href="https://emojifavicons.com/house-building">
<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building">
```

## Variant previews

Tap any variant to copy its link, HTML tag, or CSS cursor. `?shape=circle&bg=1a1a1a`.

Default?shape=circle?shape=rounded?shape=hexagon?shape=diamond?shape=squircle?shape=shield?shape=badge

## What does the House 🏠 emoji mean?

The House emoji 🏠 shows a classic two-story home with a red roof. Used for "just bought / moved into" home announcements, real-estate listing posts, Airbnb and rental content, "working from home" captions, and "going home" end-of-day posts. Also the universal "Home" nav icon in apps.

### Common uses

- Home-purchase and move-in announcements
- Real-estate listing posts
- Airbnb and short-term-rental content
- "Working from home" captions
- "Home sweet home" end-of-day posts

### Keywords

househome🏠 meaningreal estatehomeownerjust movednew househomestayairbnbwfh

### Unicode

| Name | House |
| --- | --- |
| Glyph | 🏠 |
| Codepoint | U+1F3E0 |
| Category | Travel & Places |
| Shortcode | :house: |
| Slug | house-building |

## House favicon by framework

Step-by-step install guides.

[WordPress](/house-building-favicon-for-wordpress)
[Next.js](/house-building-favicon-for-nextjs)
[React](/house-building-favicon-for-react)
[Shopify](/house-building-favicon-for-shopify)
[Vue](/house-building-favicon-for-vue)
[Astro](/house-building-favicon-for-astro)
[Svelte](/house-building-favicon-for-svelte)
[Angular](/house-building-favicon-for-angular)

## Related Travel & Places favicons

[🚡Aerial Tramway](/aerial-tramway-favicon)
[✈️Airplane](/airplane-favicon)
[🛬Airplane Arriving](/airplane-arriving-favicon)
[🛫Airplane Departure](/airplane-departure-favicon)
[🚑Ambulance](/ambulance-favicon)
[⚓Anchor](/anchor-favicon)
[🚛Articulated Lorry](/articulated-lorry-favicon)
[🛺Auto Rickshaw](/auto-rickshaw-favicon)
[🚗Car](/automobile-favicon)
[🏦Bank](/bank-favicon)
[💈Barber Pole](/barber-pole-favicon)
[🏖️Beach with Umbrella](/beach-with-umbrella-favicon)

## Frequently asked questions

**How do I use 🏠 as a favicon?**

Add one line to your HTML `<head>`: `<link rel="icon" href="https://emojifavicons.com/house-building">`. The House favicon is served as an SVG from a global edge network and works in every modern browser.

**Does the House favicon work on Safari and iOS?**

Yes. The SVG is served to Chrome, Firefox, Edge, Opera, and Brave. Safari receives an automatically converted PNG. For iOS home-screen icons, also add `<link rel="apple-touch-icon" href="https://emojifavicons.com/apple-touch-icon/house-building">`.

**Can I customize the House favicon (shape, background, size)?**

Yes. Append query parameters: `?shape=circle&bg=f59e0b&size=64`. Supported shapes include circle, rounded, hexagon, diamond, squircle, shield, and badge. Sizes 16–512 are supported.

**What is the Unicode codepoint of 🏠?**

The House emoji 🏠 is encoded as U+1F3E0. You can reference it in HTML as `🏠` or in CSS as `content: "\1F3E0";`.

**Does the House favicon adapt to dark mode?**

By default the SVG is transparent and works on any background. For dark-mode–specific variants, serve two `<link>` tags with `media="(prefers-color-scheme: dark)"` and different `?bg=` values.

**What does the House emoji mean?**

The House emoji 🏠 shows a classic two-story home with a red roof. Used for "just bought / moved into" home announcements, real-estate listing posts, Airbnb and rental content, "working from home" captions, and "going home" end-of-day posts. Also the universal "Home" nav icon in apps.

---
*Source: [emojifavicons.com](https://emojifavicons.com)*
