| Symbol Name | Low Line |
| Unicode Version | 1.1 |
| Unicode | U+005F |
| Unicode block | |
| General category | Connector Punctuation (Pc) |
| CSS Code | \005F |
| Hex Code | 0x005F |
| HTML Code | _ |
| LaTeX | \_ |
| Symbol | _ |
| URL encode (UTF-8 percent) | %5F |
| Spoken / screen reader name | Low Line |
| UTF-8 | 5F |
| UTF-16 | 005F |
| UTF-32 | 0000005F |
1\documentclass{article}2\usepackage{pifont}3\_4\end{document}You can type the low line symbol on most modern devices with the help of following methods:
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>Low Line symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |