| Symboolnaam | Vertical Line |
| Unicode-versie | 1.1 |
| Unicode | U+007C |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \007C |
| Hexadecimale code | 0x007C |
| HTML-code | | |
| LaTeX | | |
| Symbool | | |
| URL-codering (UTF-8 procent) | %7C |
| Uitgesproken naam / schermlezer | Vertical Line |
| UTF-8 | 7C |
| UTF-16 | 007C |
| UTF-32 | 0000007C |
1\documentclass{article}2\usepackage{pifont}3|4\end{document}Je kunt het vertical line-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 124 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "vertical line", or use Unicode Hex Input with 007C.
Ctrl + Shift + U, type 007c, 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.vertical-line::before { content: "\007C"; }1<span>|</span>De weergave van het Vertical Line-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u007C' or String.fromCodePoint(124) |
| Python | '\N{VERTICAL LINE}' or chr(124) |
| Rust | '\u{007C}' |
| C / C++ | UTF-8 source or wchar_t with U+007C |
| Go | string(rune(0x007C)) |
| Ruby | "\u{007C}" |