Sign Language icon

Sign Language 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

sign_language_outlined_fill0_wght400.svg

Sign Language 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=sign_language" />

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

Sign Language icon in React

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

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

Sign Language 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 SignLanguageOutlinedIcon from "@mui/icons-material/SignLanguageOutlined";

<SignLanguageOutlinedIcon />

Sign Language icon in Vue

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

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

Sign Language icon in Angular

With Angular Material and the font from the HTML tab:

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

Sign Language 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.sign_language, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Sign Language icon in Android

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

<!-- res/drawable/ic_sign_language.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="M7.325 18.775 1.6 17.675q-.3-.05-.475-.312T1 16.8q.05-.325 .313-.487T1.875 16.2l5.85 1.125-.4 1.45Zm.975-3.5L1.65 13.45q-.3-.075-.45-.35t-.075-.575q.075-.3 .35-.45t.575-.075l6.65 1.825-.4 1.45ZM2.525 22.2q-.3-.05-.512-.275T1.85 21.375q.025-.3 .263-.512T2.675 20.7l8.85 .8q.85 .075 1.55-.4t.925-1.275l1.3-4.75q.05-.2 .038-.425t-.088-.425l-1.9-4.45-.15 4.15-8.5-4.425q-.275-.15-.375-.45t.05-.575q.15-.275 .45-.362t.575 .062l6.375 3.325 .1-2.225q.025-.4 .2-.725t.45-.525q.275-.225 .613-.287T13.825 7.8l.35 .125 2.45 5.725q.2 .425 .225 .9t-.1 .95l-1.325 4.725q-.375 1.3-1.512 2.113T11.4 23.025L2.525 22.2Zm4.625-16.925q.25-.2 .55-.175t.5 .275l2.75 3.3q-.075 .3-.087 .6t-.013 .6l-1.425-.725-2.375-2.825q-.2-.25-.175-.55t.275-.5Zm2.875-3.2q.25-.2 .55-.15t.475 .325l3.2 4.625q-.425-.15-.887-.137T12.475 6.95L9.825 3.1q-.175-.275-.125-.562t.325-.463Zm5.075-1q.275-.125 .563-.012T16.075 1.475l2.75 6.65 1.5-1.65q.25-.275 .588-.4t.687-.1q.35 .025 .663 .2t.512 .475l.2 .3-1.8 5.95q-.125 .45-.4 .825t-.675 .65l-2.475 1.65q.125-.475 .163-.95t-.013-.95l1.45-.975q.2-.125 .338-.312T19.75 12.45l1.4-4.625-2.8 3.075-3.65-8.85q-.125-.275 0-.562t.4-.413ZM11.025 16.675Zm7.325-5.775Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_sign_language), contentDescription = "Sign Language")

Sign Language icon in SVG

npm install @material-symbols/svg-400

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

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

Sign Language 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

NameSign Language
Ligaturesign_language
Code pointU+EBE5
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/sign_language.svg, sign_language-fill.svg
FlutterSymbols.sign_language (Material Icons: Icons.sign_language)
MUI@mui/icons-material/SignLanguage
LicenseApache License 2.0 (© Google LLC)

Keywords

socialhumanvideopersonpeopleaudiosoundfigurespeech

Related icons