| Nom du symbole | Dashed Overline |
| Version Unicode | 1.1 |
| Unicode | U+FE49 |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \FE49 |
| Code hexadécimal | 0xFE49 |
| Code HTML | ﹉ |
| LaTeX | \text{DASHEDOVERLINE} |
| Symbole | ﹉ |
| Encodage URL (pourcent UTF-8) | %EF%B9%89 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole dashed overline sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Dashed Overline dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |