Text Underline Character U icon
The Text Underline Character U icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Text Underline Character U 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 { TextUnderlineCharacterU24Regular, TextUnderlineCharacterU24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextUnderlineCharacterU24Regular aria-label="Text Underline Character U" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_underline_character_u_24_regular.svg" width="24" height="24" alt="Text Underline Character U"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.5 4.75C8.5 4.33579 8.16421 4 7.75 4C7.33579 4 7 4.33579 7 4.75V12C7 14.7614 9.23858 17 12 17C14.7614 17 17 14.7614 17 12V4.75C17 4.33579 16.6642 4 16.25 4C15.8358 4 15.5 4.33579 15.5 4.75V12C15.5 13.933 13.933 15.5 12 15.5C10.067 15.5 8.5 13.933 8.5 12V4.75ZM6.75 18.5C6.33579 18.5 6 18.8358 6 19.25C6 19.6642 6.33579 20 6.75 20H17.25C17.6642 20 18 19.6642 18 19.25C18 18.8358 17.6642 18.5 17.25 18.5H6.75Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/text_underline_character_u_24_regular.svg";Details
| Name | Text Underline Character U |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_underline_character_u_24_regular.svg |
| Filled file | ic_fluent_text_underline_character_u_24_filled.svg |
| React components | TextUnderlineCharacterU24Regular, TextUnderlineCharacterU24Filled |
| License | MIT (© Microsoft Corporation) |