| Nombre del símbolo | Snowflake |
| Versión Unicode | 1.1 |
| Unicode | U+2744 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2744 |
| Código hexadecimal | 0x2744 |
| Código HTML | ❄ |
| LaTeX | \text{SNOWFLAKE} |
| Símbolo | ❄ |
| Codificación URL (porcentaje UTF-8) | %E2%9D%84 |
| Nombre oral / lector de pantalla | Snowflake |
| UTF-8 | E2 9D 84 |
| UTF-16 | 2744 |
| UTF-32 | 00002744 |
1\documentclass{article}2\usepackage{pifont}3\text{SNOWFLAKE}4\end{document}Puedes escribir el símbolo snowflake en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 10052 on Windows (numeric keypad with Num Lock), or insert via Character Map / emoji panel.
Edit → Emoji & Symbols, search "snowflake", or paste from this page.
Ctrl + Shift + U, type 2744, 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.snowflake::before { content: "\2744"; }1<span>❄</span>La representación del símbolo Snowflake en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2744' or String.fromCodePoint(10052) |
| Python | '\N{SNOWFLAKE}' or chr(10052) |
| Rust | '\u{2744}' |
| C / C++ | UTF-8 source or wchar_t with U+2744 |
| Go | string(rune(0x2744)) |
| Ruby | "\u{2744}" |