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