Fingerprint Off icon

Fingerprint Off is a Google Material Symbol from the Actions 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

fingerprint_off_outlined_fill0_wght400.svg

Fingerprint Off 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=fingerprint_off" />

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

Fingerprint Off icon in React

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

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

Fingerprint Off icon in Vue

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

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

Fingerprint Off icon in Angular

With Angular Material and the font from the HTML tab:

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

Fingerprint Off 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.fingerprint_off, fill: 0, weight: 400)

Fingerprint Off icon in Android

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

<!-- res/drawable/fingerprint_off.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="M21.4 22.4 11.5 12.5q-.85 .175-1.375 .8t-.525 1.425q0 2.4 1.463 4.213T15.1 21.5q.125 .05 .175 .113t.025 .187q-.025 .125-.1 .175t-.2 0q-2.7-.7-4.3-2.662T9.1 14.725q0-.9 .55-1.625t1.45-1l-1.55-1.55q-1.2 .65-1.887 1.75T6.975 14.725q0 1.95 .663 3.463T9.9 21.35q.075 .1 .075 .188t-.075 .162q-.075 .075-.187 .075t-.188-.075q-1.6-1.675-2.337-3.337T6.45 14.725q0-1.425 .725-2.625t2-1.925l-1.45-1.45q-1.65 1.025-2.55 2.6t-.9 3.4q0 .875 .188 1.838T5 18.475q.05 .1 .013 .175t-.138 .125q-.125 .05-.225 .013t-.15-.138q-.35-1.05-.525-2.037t-.175-1.888q0-1.875 .938-3.562T7.35 8.35l-1.45-1.45q-.725 .5-1.337 1.088T3.45 9.275q-.1 .125-.187 .15t-.188-.025q-.075-.05-.087-.15t.037-.225q.525-.725 1.163-1.35t1.362-1.125L1.225 2.225l.5-.5L21.9 21.9l-.5 .5ZM17.4 14.975q-.125 0-.2-.062t-.075-.188q0-2.025-1.512-3.4T12.025 9.95q-.175 0-.325 .013t-.3 .037l-.45-.45q.275-.05 .538-.075t.537-.025q2.3 0 3.963 1.525T17.65 14.725q0 .125-.062 .188T17.4 14.975ZM12.025 2q1.625 0 3.188 .4T18.2 3.525q.125 .05 .138 .15t-.038 .175q-.05 .075-.137 .125t-.213 0q-1.375-.675-2.875-1.062T12.025 2.525q-1.7 0-3.3 .438T5.675 4.275l-.35-.35q1.5-.95 3.225-1.437T12.025 2Zm0 2.525q2.7 0 5.088 1.15T21.075 8.975q.075 .125 .063 .2t-.088 .15q-.075 .075-.187 .075t-.213-.125q-1.475-2.05-3.762-3.15T12.025 5.025q-1.225 0-2.375 .25t-2.225 .75l-.375-.375q1.15-.55 2.4-.837T12.025 4.525Zm0 2.4q3.4 0 5.838 2.125T20.3 14.475q0 .825-.45 1.638T18.7 17.275l-.35-.375q.575-.3 1-1t.425-1.425q0-3.075-2.287-5.025T12.025 7.5q-.7 0-1.362 .113T9.35 7.95l-.425-.425q.725-.275 1.513-.437T12.025 6.925Zm5.15 12.95q-2.2 0-3.812-1.462T11.75 14.725q0-.125 .063-.2t.187-.075q.125 0 .188 .075t.062 .2q0 2.025 1.488 3.338T17.175 19.375q.2 0 .475-.025t.6-.075q.125-.025 .2 .038t.1 .137q.025 .1-.012 .175t-.163 .1q-.45 .125-.787 .138t-.413 .012Z" />
</vector>

Fingerprint Off icon in SVG

npm install @material-symbols/svg-400

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

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

Fingerprint Off 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

NameFingerprint Off
Ligaturefingerprint_off
Code pointU+F49D
CategoryActions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/fingerprint_off.svg, fingerprint_off-fill.svg
FlutterSymbols.fingerprint_off
LicenseApache License 2.0 (© Google LLC)

Keywords

actionsondisabledsecurityslashenabledaccessofflineprivacyunavailablesecurerestrictedlock

Related icons