Face 2 icon

Face 2 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.

Outlined, unfilled, weight 400

face_2_outlined_fill0_wght400.svg

Face 2 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,[email protected],100..700,0..1,-50..200&icon_names=face_2" />

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

Face 2 icon in React

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

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

Face 2 icon in Vue

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

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

Face 2 icon in Angular

With Angular Material and the font from the HTML tab:

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

Face 2 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.face_2, fill: 0, weight: 400)

Face 2 icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/face_2.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="M10.85 22.925q-.575-.075-1.15-.2-2.15 1.675-4.812 1.163T.825 21.025q-1.1-1.85-.75-3.95t1.95-3.55v-.075Q.425 12.025 .088 9.925T.825 5.975q.925-1.575 2.538-2.362T6.775 3.05q.8-1.425 2.188-2.237T12 0q1.65 0 3.038 .813T17.225 3.05q1.8-.225 3.413 .563T23.175 5.975q1.075 1.85 .738 3.95T21.975 13.45v.075q1.6 1.45 1.95 3.55t-.75 3.95Q21.775 23.375 19.113 23.888T14.3 22.725q-.575 .125-1.15 .2t-1.15 .075q-.575 0-1.15-.075ZM7.8 22.075q-1.025-.475-1.887-1.137T4.35 19.425q-.7-.85-1.212-1.825T2.325 15.55q-.8 1.075-.825 2.35t.65 2.4q.875 1.45 2.513 1.975T7.8 22.075Zm8.4 0q1.5 .725 3.138 .2T21.85 20.3q.675-1.125 .65-2.4t-.825-2.35q-.275 1.075-.8 2.05t-1.225 1.825q-.7 .85-1.562 1.513T16.2 22.075Zm-4.2-.575q3.55 0 6.025-2.475t2.475-6.025q0-.85-.162-1.662T19.875 9.775q-.725 .625-1.675 .988T16.125 11.125q-2.45 0-4.162-1.712T10.25 5.25v-.287q0-.138 .025-.288-2.925 .6-4.85 2.913T3.5 13q0 3.55 2.475 6.025t6.025 2.475ZM7.888 15.038Q7.5 14.65 7.5 14.075t.388-.962Q8.275 12.725 8.85 12.725t.963 .388Q10.2 13.5 10.2 14.075t-.387 .963Q9.425 15.425 8.85 15.425t-.962-.387Zm6.325 0Q13.825 14.65 13.825 14.075t.388-.962Q14.6 12.725 15.175 12.725t.963 .388Q16.525 13.5 16.525 14.075t-.387 .963Q15.75 15.425 15.175 15.425t-.962-.387ZM2.175 11.175q.2-1.05 .588-2t.962-1.8q.575-.85 1.3-1.55t1.6-1.25q-1.35-.225-2.575 .363T2.125 6.725q-.65 1.1-.625 2.238T2.175 11.175Zm19.65 0q.65-1.075 .675-2.212T21.875 6.725q-.7-1.2-1.925-1.787T17.375 4.575q.875 .55 1.6 1.25t1.3 1.55q.575 .85 .963 1.8t.587 2Zm-5.7-1.55q1 0 1.75-.312t1.3-.863q-.575-.9-1.337-1.625T16.15 5.575q-.925-.525-1.962-.8T12 4.5h-.175q-.05 .2-.062 .375t-.013 .375q0 1.8 1.288 3.088T16.125 9.625Zm-.325-5.875q-.725-.95-1.675-1.6t-2.125-.65q-1.175 0-2.125 .65t-1.675 1.6q.875-.35 1.825-.55t1.975-.2q1.025 0 1.975 .2t1.825 .55ZM3.725 7.375Zm16.55 0ZM11.825 4.5Zm.175-1.5ZM4.35 19.425Zm15.3 0Z" />
</vector>

Face 2 icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/face_2.svg" width="24" height="24" alt="Face 2">

Face 2 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

NameFace 2
Ligatureface_2
Code pointU+F8DA
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/face_2.svg, face_2-fill.svg
FlutterSymbols.face_2
LicenseApache License 2.0 (© Google LLC)

Keywords

socialhumanpersonsecuritycharacterpeopleprofileuseraccountavatarlockidentity

Related icons