| Nom du symbole | Overline |
| Version Unicode | 1.1 |
| Unicode | U+203E |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \203E |
| Code hexadécimal | 0x203E |
| Code HTML | ‾ |
| LaTeX | \overline{} |
| Symbole | ‾ |
| Encodage URL (pourcent UTF-8) | %E2%80%BE |
| Nom oral / lecteur d’écran | Overline |
| UTF-8 | E2 80 BE |
| UTF-16 | 203E |
| UTF-32 | 0000203E |
1\documentclass{article}2\usepackage{pifont}3\overline{}4\end{document}Vous pouvez saisir le symbole overline sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8254 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "overline", or use Unicode Hex Input with 203E.
Ctrl + Shift + U, type 203e, 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.overline::before { content: "\203E"; }1<span>‾</span>La représentation du symbole Overline dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u203E' or String.fromCodePoint(8254) |
| Python | '\N{OVERLINE}' or chr(8254) |
| Rust | '\u{203E}' |
| C / C++ | UTF-8 source or wchar_t with U+203E |
| Go | string(rune(0x203E)) |
| Ruby | "\u{203E}" |