| Nom du symbole | Dashed Low Line |
| Version Unicode | 1.1 |
| Unicode | U+FE4D |
| Bloc Unicode | |
| Catégorie générale | Connector Punctuation (Pc) |
| Code CSS | \FE4D |
| Code hexadécimal | 0xFE4D |
| Code HTML | ﹍ |
| LaTeX | \text{DASHEDLOWLINE} |
| Symbole | ﹍ |
| Encodage URL (pourcent UTF-8) | %EF%B9%8D |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole dashed low line sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Dashed Low Line dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |