Immunology icon

Immunology 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

immunology_outlined_fill0_wght400.svg

Immunology 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=immunology" />

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

Immunology icon in React

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

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

Immunology icon in Vue

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

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

Immunology icon in Angular

With Angular Material and the font from the HTML tab:

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

Immunology 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.immunology, fill: 0, weight: 400)

Immunology icon in Android

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

<!-- res/drawable/immunology.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="M13.025 22q-1.5 0-3.75-.412T5.675 20.15q-.75-.575-1.575-1.8t-1.512-2.675Q1.9 14.225 1.45 12.775t-.45-2.475q0-2.125 1.45-3.462T5.55 4.425q1.5-.975 3.325-1.7t3.775-.725q1.95 0 3.538 .75T19.35 4.575q.375 .25 .975 .75t1.188 1.25q.587 .75 1.025 1.763T23 10.65q.05 1.85-.762 3.863t-2.2 3.675Q18.65 19.85 16.825 20.925T13.025 22Zm-.025-1.5q1.65 0 3.188-.95T18.925 17.15q1.2-1.45 1.913-3.175T21.5 10.7q-.05-1.875-1.112-3.087T18.5 5.825q-1.35-.9-2.762-1.612T12.65 3.5q-1.725 0-3.4 .675t-3.025 1.575q-1.075 .725-2.412 1.875T2.475 10.2q0 .85 .413 2.15t1.025 2.613q.612 1.312 1.325 2.425T6.55 18.95q.95 .725 2.913 1.138T13 20.5ZM10.35 17.75q1.225 0 2.038-.875t.812-1.975q0-.5-.212-.987T12.325 13q-.575-.525-.95-1.15t-.55-1.4q-.225-1-1-1.6t-1.725-.6q-1.125 0-1.987 .863T5.25 11.1q0 .925 .388 2.075t1.075 2.163q.687 1.012 1.625 1.712t2.012 .7Zm0-1.5q-.7 0-1.35-.587t-1.15-1.4Q7.35 13.45 7.05 12.575t-.3-1.475q0-.5 .425-.925t.925-.425q.375 0 .775 .263t.525 .787q.25 1.025 .688 1.813T11.325 14.125q.2 .175 .288 .388T11.7 14.95q0 .5-.375 .9t-.975 .4Zm5.9-3.5q.325 0 .538-.225t.212-.525v-.65l.6 .3q.275 .125 .563 .063T18.625 11.375q.175-.275 .113-.587T18.4 10.35l-.7-.35 .7-.35q.275-.125 .325-.437t-.1-.588q-.15-.275-.45-.325t-.575 .075l-.6 .3v-.675q0-.325-.212-.537T16.25 7.25q-.3 0-.525 .213t-.225 .537v.7l-.6-.325q-.275-.15-.562-.075T13.875 8.65q-.15 .275-.087 .588T14.125 9.675l.65 .275-.6 .4q-.275 .175-.362 .463T13.875 11.375q.175 .275 .463 .35t.562-.075l.6-.325v.675q0 .3 .225 .525t.525 .225Zm-4.2-.75Z" />
</vector>

Immunology icon in SVG

npm install @material-symbols/svg-400

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

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

Immunology 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

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

Keywords

socialhumanhealthcellbodymedicalhealthcaresciencemedicineresearchbiologylaboratorychemistry

Related icons