| Nome del simbolo | Latin Small Letter W |
| Versione Unicode | 1.1 |
| Unicode | U+0077 |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \0077 |
| Codice esadecimale | 0x0077 |
| Codice HTML | w |
| LaTeX | w |
| Simbolo | w |
| Codifica URL (percentuale UTF-8) | %77 |
| Nome parlato / screen reader | Latin Small Letter W |
| UTF-8 | 77 |
| UTF-16 | 0077 |
| UTF-32 | 00000077 |
1\documentclass{article}2\usepackage{pifont}3w4\end{document}Puoi digitare il simbolo latin small letter w sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 119 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter w", or use Unicode Hex Input with 0077.
Ctrl + Shift + U, type 0077, 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.w::before { content: "\0077"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>w</span>La rappresentazione del simbolo Latin Small Letter W nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u0077' or String.fromCodePoint(119) |
| Python | '\N{LATIN SMALL LETTER W}' or chr(119) |
| Rust | '\u{0077}' |
| C / C++ | UTF-8 source or wchar_t with U+0077 |
| Go | string(rune(0x0077)) |
| Ruby | "\u{0077}" |