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