Emoji Symbols icon

Emoji Symbols is a Google Material Symbol from the Social category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

GradeOptical size

Outlined, unfilled, weight 400

emoji_symbols_outlined_fill0_wght400.svg

Emoji Symbols icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=emoji_symbols" />

<span class="material-symbols-outlined">emoji_symbols</span>

Emoji Symbols icon in React

// With the font from the HTML tab:
export function EmojiSymbolsIcon() {
  return (
    <span className="material-symbols-outlined">
      emoji_symbols
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import EmojiSymbolsIcon from "@material-symbols/svg-400/outlined/emoji_symbols.svg?react";

Emoji Symbols icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import EmojiSymbolsOutlinedIcon from "@mui/icons-material/EmojiSymbolsOutlined";

<EmojiSymbolsOutlinedIcon />

Emoji Symbols icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">emoji_symbols</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import EmojiSymbolsIcon from "@material-symbols/svg-400/outlined/emoji_symbols.svg?component"; -->

Emoji Symbols icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">emoji_symbols</mat-icon>

Emoji Symbols icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.emoji_symbols, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.emoji_symbols_outlined)

Emoji Symbols icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_emoji_symbols.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M3 3.5v-1.5h7.825v1.5H3Zm3.175 7.125v-4.575H3v-1.5h7.825v1.5H7.65v4.575h-1.475ZM13.675 21.6l-1.075-1.075 7.825-7.825 1.075 1.075L13.675 21.6Zm-.037-6.112Q13.25 15.1 13.25 14.525t.388-.962Q14.025 13.175 14.6 13.175t.963 .388Q15.95 13.95 15.95 14.525t-.387 .963Q15.175 15.875 14.6 15.875t-.962-.387Zm5.05 5.175Q18.3 20.275 18.3 19.7t.388-.962Q19.075 18.35 19.65 18.35t.963 .388Q21 19.125 21 19.7t-.387 .963Q20.225 21.05 19.65 21.05t-.962-.387ZM14.1 10.313Q13.45 9.625 13.45 8.75q0-.95 .65-1.6t1.6-.65q.325 0 .588 .088T16.75 6.8v-4.075q0-.3 .213-.512T17.475 2h3.525v1.475H17.95v5.275q0 .95-.65 1.6t-1.6 .65q-.95 0-1.6-.687ZM5.275 22q-.95 0-1.612-.662T3 19.725q0-.5 .175-.912t.525-.763l1.3-1.3-.5-.5q-.35-.35-.537-.787T3.775 14.6q0-.95 .663-1.612T6.05 12.325q.95 0 1.613 .663T8.325 14.6q0 .425-.137 .863T7.7 16.25l-.5 .5 1.25 1.25 1.5-1.5 1.05 1.05-1.575 1.575 1.325 1.325-1.025 1.025-1.475-1.475-1.275 1.275q-.35 .35-.775 .538T5.275 22Zm.775-6.25 .575-.575q.125-.125 .163-.25t.037-.325q0-.35-.212-.562T6.05 13.825q-.35 0-.562 .213T5.275 14.6q0 .2 .038 .325t.162 .25l.575 .575Zm-.775 4.75q.125 0 .3-.075t.3-.2l1.3-1.3-1.075-1.075-1.325 1.325q-.125 .125-.187 .275t-.063 .3q0 .35 .2 .55t.55 .2Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_emoji_symbols), contentDescription = "Emoji Symbols")

Emoji Symbols icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/emoji_symbols.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/emoji_symbols.svg" width="24" height="24" alt="Emoji Symbols">

Emoji Symbols icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameEmoji Symbols
Ligatureemoji_symbols
Code pointU+EA1E
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/emoji_symbols.svg, emoji_symbols-fill.svg
FlutterSymbols.emoji_symbols (Material Icons: Icons.emoji_symbols)
MUI@mui/icons-material/EmojiSymbols
LicenseApache License 2.0 (© Google LLC)

Keywords

socialcharactermusicfacechatsign

Related icons