| Nom du symbole | Latin Small Letter W |
| Version Unicode | 1.1 |
| Unicode | U+0077 |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \0077 |
| Code hexadécimal | 0x0077 |
| Code HTML | w |
| LaTeX | w |
| Symbole | w |
| Encodage URL (pourcent UTF-8) | %77 |
| Nom oral / lecteur d’écran | Latin Small Letter W |
| UTF-8 | 77 |
| UTF-16 | 0077 |
| UTF-32 | 00000077 |
1\documentclass{article}2\usepackage{pifont}3w4\end{document}Vous pouvez saisir le symbole latin small letter w sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Latin Small Letter W dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |