| Nome del simbolo | Low Line |
| Versione Unicode | 1.1 |
| Unicode | U+005F |
| Blocco Unicode | |
| Categoria generale | Connector Punctuation (Pc) |
| Codice CSS | \005F |
| Codice esadecimale | 0x005F |
| Codice HTML | _ |
| LaTeX | \_ |
| Simbolo | _ |
| Codifica URL (percentuale UTF-8) | %5F |
| Nome parlato / screen reader | Low Line |
| UTF-8 | 5F |
| UTF-16 | 005F |
| UTF-32 | 0000005F |
1\documentclass{article}2\usepackage{pifont}3\_4\end{document}Puoi digitare il simbolo low line sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Low Line nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |