| Nome del simbolo | Continuous Underline Symbol |
| Versione Unicode | 3.0 |
| Unicode | U+2381 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2381 |
| Codice esadecimale | 0x2381 |
| Codice HTML | ⎁ |
| LaTeX | \text{CONTINUOUSUNDERLINESYMBOL} |
| Simbolo | ⎁ |
| Codifica URL (percentuale UTF-8) | %E2%8E%81 |
| Nome parlato / screen reader | Continuous Underline Symbol |
| UTF-8 | E2 8E 81 |
| UTF-16 | 2381 |
| UTF-32 | 00002381 |
1\documentclass{article}2\usepackage{pifont}3\text{CONTINUOUSUNDERLINESYMBOL}4\end{document}Puoi digitare il simbolo continuous underline sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9089 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "continuous underline symbol", or use Unicode Hex Input with 2381.
Ctrl + Shift + U, type 2381, 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.continuous-underline-symbol::before { content: "\2381"; }1<span>⎁</span>La rappresentazione del simbolo Continuous Underline nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2381' or String.fromCodePoint(9089) |
| Python | '\N{CONTINUOUS UNDERLINE SYMBOL}' or chr(9089) |
| Rust | '\u{2381}' |
| C / C++ | UTF-8 source or wchar_t with U+2381 |
| Go | string(rune(0x2381)) |
| Ruby | "\u{2381}" |