| Nombre del símbolo | Snow Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+96EA |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \96EA |
| Código hexadecimal | 0x96EA |
| Código HTML | 雪 |
| LaTeX | \CJKchar{96EA} |
| Símbolo | 雪 |
| Codificación URL (porcentaje UTF-8) | %E9%9B%AA |
| Nombre oral / lector de pantalla | Snow Hanzi |
| UTF-8 | E9 9B AA |
| UTF-16 | 96EA |
| UTF-32 | 000096EA |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{96EA}4\end{document}Puedes escribir el símbolo snow hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 38634 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "snow hanzi", or use Unicode Hex Input with 96EA.
Ctrl + Shift + U, type 96ea, then Enter (layout-dependent), or use an IBus CJK table.
Paste from this page, use text replacement, or pick from a Japanese/Chinese keyboard.
Paste from this page or use a keyboard with CJK ideograph support.
1span.cjk-snow::before { content: "\\96EA"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>雪</span>La representación del símbolo Snow Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u96EA' or String.fromCodePoint(38634) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-96EA}' or chr(38634) |
| Rust | '\u{96EA}' |
| C / C++ | UTF-8 source or wchar_t with U+96EA |
| Go | string(rune(0x96EA)) |
| Ruby | "\u{96EA}" |