Question Exchange icon

Question Exchange is a Google Material Symbol from the UI 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

question_exchange_outlined_fill0_wght400.svg

Question Exchange 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=question_exchange" />

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

Question Exchange icon in React

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

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

Question Exchange icon in Vue

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

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

Question Exchange icon in Angular

With Angular Material and the font from the HTML tab:

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

Question Exchange 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.question_exchange, fill: 0, weight: 400)

Question Exchange icon in Android

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

<!-- res/drawable/question_exchange.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="M12 23q-2.8 0-5.4-1.65T2.5 17.575v3.425H1v-6h6v1.5H3.575q1.275 1.925 3.638 3.463T12 21.5q1.95 0 3.688-.75t3.025-2.037Q20 17.425 20.75 15.688T21.5 12h1.5q0 2.275-.862 4.275T19.775 19.775q-1.5 1.5-3.5 2.363T12 23ZM1 12q0-2.275 .863-4.275T4.225 4.225q1.5-1.5 3.5-2.362T12 1q2.8 0 5.4 1.65t4.1 3.775v-3.425h1.5v6H17v-1.5h3.425q-1.275-1.925-3.625-3.462T12 2.5q-1.95 0-3.687 .75t-3.025 2.038Q4 6.575 3.25 8.313T2.5 12H1Zm11.6 5.575q.275-.275 .275-.675t-.275-.675q-.275-.275-.675-.275t-.675 .275q-.275 .275-.275 .675t.275 .675q.275 .275 .675 .275t.675-.275Zm-1.5-3.425h1.425q0-.775 .25-1.262t.875-1.113q.825-.825 1.15-1.462t.325-1.338q0-1.3-.9-2.087T11.975 6.1q-1.225 0-2.15 .588T8.45 8.4l1.325 .55q.325-.65 .9-1.037t1.3-.388q.725 0 1.225 .4t.5 1.1q0 .5-.275 .963T12.5 11.075q-.925 .875-1.162 1.5t-.238 1.575Z" />
</vector>

Question Exchange icon in SVG

npm install @material-symbols/svg-400

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

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

Question Exchange 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

NameQuestion Exchange
Ligaturequestion_exchange
Code pointU+F7F3
CategoryUI actions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/question_exchange.svg, question_exchange-fill.svg
FlutterSymbols.question_exchange
LicenseApache License 2.0 (© Google LLC)

Keywords

ui actionsservicemessagechathelpsupportfeedbackbubbleassistancecommentconversationquerycommunity

Related icons