| Nome del simbolo | Latin Small Letter Long S |
| Versione Unicode | 1.1 |
| Unicode | U+017F |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \017F |
| Codice esadecimale | 0x017F |
| Codice HTML | ſ |
| LaTeX | \text{LATINSMALLLETTERLONGS} |
| Simbolo | ſ |
| Codifica URL (percentuale UTF-8) | %C5%BF |
| Nome parlato / screen reader | Latin Small Letter Long S |
| UTF-8 | C5 BF |
| UTF-16 | 017F |
| UTF-32 | 0000017F |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERLONGS}4\end{document}Puoi digitare il simbolo latin small letter long s sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 383 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter long s", or use Unicode Hex Input with 017F.
Ctrl + Shift + U, type 017f, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-long-s::before { content: "\017F"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ſ</span>La rappresentazione del simbolo Latin Small Letter Long S nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u017F' or String.fromCodePoint(383) |
| Python | '\N{LATIN SMALL LETTER LONG S}' or chr(383) |
| Rust | '\u{017F}' |
| C / C++ | UTF-8 source or wchar_t with U+017F |
| Go | string(rune(0x017F)) |
| Ruby | "\u{017F}" |