| Nome del simbolo | Overline |
| Versione Unicode | 1.1 |
| Unicode | U+203E |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \203E |
| Codice esadecimale | 0x203E |
| Codice HTML | ‾ |
| LaTeX | \overline{} |
| Simbolo | ‾ |
| Codifica URL (percentuale UTF-8) | %E2%80%BE |
| Nome parlato / screen reader | Overline |
| UTF-8 | E2 80 BE |
| UTF-16 | 203E |
| UTF-32 | 0000203E |
1\documentclass{article}2\usepackage{pifont}3\overline{}4\end{document}Puoi digitare il simbolo overline sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Overline nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |