| Nom du symbole | Low Line |
| Version Unicode | 1.1 |
| Unicode | U+005F |
| Bloc Unicode | |
| Catégorie générale | Connector Punctuation (Pc) |
| Code CSS | \005F |
| Code hexadécimal | 0x005F |
| Code HTML | _ |
| LaTeX | \_ |
| Symbole | _ |
| Encodage URL (pourcent UTF-8) | %5F |
| Nom oral / lecteur d’écran | Low Line |
| UTF-8 | 5F |
| UTF-16 | 005F |
| UTF-32 | 0000005F |
1\documentclass{article}2\usepackage{pifont}3\_4\end{document}Vous pouvez saisir le symbole low line sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Low Line dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |