| Nom du symbole | Snowman |
| Version Unicode | 1.1 |
| Unicode | U+2603 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2603 |
| Code hexadécimal | 0x2603 |
| Code HTML | ☃ |
| LaTeX | \text{SNOWMAN} |
| Symbole | ☃ |
| Encodage URL (pourcent UTF-8) | %E2%98%83 |
| Nom oral / lecteur d’écran | Snowman |
| UTF-8 | E2 98 83 |
| UTF-16 | 2603 |
| UTF-32 | 00002603 |
1\documentclass{article}2\usepackage{pifont}3\text{SNOWMAN}4\end{document}Vous pouvez saisir le symbole snowman sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9731 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "snowman", or paste from this page.
Ctrl + Shift + U, type 2603, then Enter (layout-dependent), or paste.
Paste from this page, use the emoji keyboard, or pick from weather symbol suggestions.
Paste from this page or use keyboard weather/emoji suggestions.
1span.snowman::before { content: "\2603"; }1<span>☃</span>La représentation du symbole Snowman dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2603' or String.fromCodePoint(9731) |
| Python | '\N{SNOWMAN}' or chr(9731) |
| Rust | '\u{2603}' |
| C / C++ | UTF-8 source or wchar_t with U+2603 |
| Go | string(rune(0x2603)) |
| Ruby | "\u{2603}" |