| Nome del simbolo | Horizontal Line Extension |
| Versione Unicode | 3.2 |
| Unicode | U+23AF |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \23AF |
| Codice esadecimale | 0x23AF |
| Codice HTML | ⎯ |
| LaTeX | \hline |
| Simbolo | ⎯ |
| Codifica URL (percentuale UTF-8) | %E2%8E%AF |
| Nome parlato / screen reader | Horizontal Line Extension |
| UTF-8 | E2 8E AF |
| UTF-16 | 23AF |
| UTF-32 | 000023AF |
1\documentclass{article}2\usepackage{pifont}3\hline 4\end{document}Puoi digitare il simbolo horizontal line extension sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9135 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "horizontal line extension", or use Unicode Hex Input with 23AF.
Ctrl + Shift + U, type 23af, 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.horizontal-line-extension::before { content: "\23AF"; }1<span>⎯</span>La rappresentazione del simbolo Horizontal Line Extension nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u23AF' or String.fromCodePoint(9135) |
| Python | '\N{HORIZONTAL LINE EXTENSION}' or chr(9135) |
| Rust | '\u{23AF}' |
| C / C++ | UTF-8 source or wchar_t with U+23AF |
| Go | string(rune(0x23AF)) |
| Ruby | "\u{23AF}" |