| Symbolname | Dashed Overline |
| Unicode-Version | 1.1 |
| Unicode | U+FE49 |
| Unicode-Block | |
| Allgemeine Kategorie | Other Punctuation (Po) |
| CSS-Code | \FE49 |
| Hexadezimalcode | 0xFE49 |
| HTML-Code | ﹉ |
| LaTeX | \text{DASHEDOVERLINE} |
| Symbol | ﹉ |
| URL-Kodierung (UTF-8-Prozent) | %EF%B9%89 |
| Ansagename (Screenreader) | Dashed Overline |
| UTF-8 | EF B9 89 |
| UTF-16 | FE49 |
| UTF-32 | 0000FE49 |
1\documentclass{article}2\usepackage{pifont}3\text{DASHEDOVERLINE}4\end{document}Sie können das Symbol dashed overline auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 65097 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dashed overline", or use Unicode Hex Input with FE49.
Ctrl + Shift + U, type fe49, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.dashed-overline::before { content: "\FE49"; }1<span>﹉</span>Die Darstellung des Symbols Dashed Overline in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\uFE49' or String.fromCodePoint(65097) |
| Python | '\N{DASHED OVERLINE}' or chr(65097) |
| Rust | '\u{FE49}' |
| C / C++ | UTF-8 source or wchar_t with U+FE49 |
| Go | string(rune(0xFE49)) |
| Ruby | "\u{FE49}" |