Text Edit Style Character A icon

The Text Edit Style Character A icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 28 to 32 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Every size and style

Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.

Regular, 28 px

ic_fluent_text_edit_style_character_a_28_regular.svg

Text Edit Style Character A icon in React

npm install @fluentui/react-icons

import { TextEditStyleCharacterA28Regular } from "@fluentui/react-icons";

export function Example() {
  return <TextEditStyleCharacterA28Regular aria-label="Text Edit Style Character A" />;
}

Text Edit Style Character A icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/text_edit_style_character_a_28_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/text_edit_style_character_a_28_regular.svg" width="28" height="28" alt="Text Edit Style Character A">

Text Edit Style Character A icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size28.TextEditStyleCharacterA())" />

Text Edit Style Character A icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xF0AA7;" FontSize="28" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xF0AA7;" FontSize="28" />

Text Edit Style Character A icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_text_edit_style_character_a_28_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\f0aa7";
  font-size: 28px;
}

Text Edit Style Character A icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_text_edit_style_character_a_28_regular" />

// Kotlin
R.drawable.ic_fluent_text_edit_style_character_a_28_regular

Text Edit Style Character A icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .textEditStyleCharacterA28Regular)

Text Edit Style Character A 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='28' height='28' viewBox='0 0 28 28'>…</svg>")

Use the Text Edit Style Character A icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { TextEditStyleCharacterA28Regular, TextEditStyleCharacterA28Filled } from "@fluentui/react-icons";

export function Example() {
  return <TextEditStyleCharacterA28Regular aria-label="Text Edit Style Character A" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_text_edit_style_character_a_28_regular.svg" width="28" height="28" alt="Text Edit Style Character A">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M21.07 9a3.93 3.93 0 0 1 2.78 6.71l-7.76 7.76q-.7.7-1.64.96l-5.5 1.54a.75.75 0 0 1-.92-.92l1.54-5.5q.26-.94.96-1.64l7.76-7.76A4 4 0 0 1 21.07 9m0 1.5c-.65 0-1.27.26-1.72.71l-7.76 7.76q-.42.43-.58.99l-1.18 4.2L14.04 23q.56-.16.99-.58l7.76-7.76a2.43 2.43 0 0 0-1.72-4.15M8.5 2c.3 0 .58.18.7.46l4.49 10.88-1.15 1.15-1.24-2.99H5.7l-1.26 3.04a.75.75 0 0 1-1.38-.58L7.8 2.46A.8.8 0 0 1 8.5 2m-2.18 8h4.36L8.5 4.71z"/></svg>

Details

NameText Edit Style Character A
StylesRegular (outlined), Filled
Sizes28 px, 32 px
Regular (outlined) fileic_fluent_text_edit_style_character_a_28_regular.svg
Filled fileic_fluent_text_edit_style_character_a_28_filled.svg
React (Regular)TextEditStyleCharacterA28Regular, TextEditStyleCharacterA32Regular
React (Filled)TextEditStyleCharacterA28Filled, TextEditStyleCharacterA32Filled
LicenseMIT (© Microsoft Corporation)

Related icons