| Symboolnaam | Overline |
| Unicode-versie | 1.1 |
| Unicode | U+203E |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \203E |
| Hexadecimale code | 0x203E |
| HTML-code | ‾ |
| LaTeX | \overline{} |
| Symbool | ‾ |
| URL-codering (UTF-8 procent) | %E2%80%BE |
| Uitgesproken naam / schermlezer | Overline |
| UTF-8 | E2 80 BE |
| UTF-16 | 203E |
| UTF-32 | 0000203E |
1\documentclass{article}2\usepackage{pifont}3\overline{}4\end{document}Je kunt het overline-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Overline-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |