| Symbol Name | Dashed Low Line |
| Unicode Version | 1.1 |
| Unicode | U+FE4D |
| Unicode block | |
| General category | Connector Punctuation (Pc) |
| CSS Code | \FE4D |
| Hex Code | 0xFE4D |
| HTML Code | ﹍ |
| LaTeX | \text{DASHEDLOWLINE} |
| Symbol | ﹍ |
| URL encode (UTF-8 percent) | %EF%B9%8D |
| Spoken / screen reader name | Dashed Low Line |
| UTF-8 | EF B9 8D |
| UTF-16 | FE4D |
| UTF-32 | 0000FE4D |
1\documentclass{article}2\usepackage{pifont}3\text{DASHEDLOWLINE}4\end{document}You can type the dashed low line symbol on most modern devices with the help of following methods:
Alt + 65101 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dashed low line", or use Unicode Hex Input with FE4D.
Ctrl + Shift + U, type fe4d, 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.dashed-low-line::before { content: "\FE4D"; }1<span>﹍</span>Dashed Low Line symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\uFE4D' or String.fromCodePoint(65101) |
| Python | '\N{DASHED LOW LINE}' or chr(65101) |
| Rust | '\u{FE4D}' |
| C / C++ | UTF-8 source or wchar_t with U+FE4D |
| Go | string(rune(0xFE4D)) |
| Ruby | "\u{FE4D}" |