| Nombre del símbolo | Sun Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+65E5 |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \65E5 |
| Código hexadecimal | 0x65E5 |
| Código HTML | 日 |
| LaTeX | \CJKchar{65E5} |
| Símbolo | 日 |
| Codificación URL (porcentaje UTF-8) | %E6%97%A5 |
| Nombre oral / lector de pantalla | Sun Hanzi |
| UTF-8 | E6 97 A5 |
| UTF-16 | 65E5 |
| UTF-32 | 000065E5 |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{65E5}4\end{document}Puedes escribir el símbolo sun hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 26085 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "sun hanzi", or use Unicode Hex Input with 65E5.
Ctrl + Shift + U, type 65e5, 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-sun::before { content: "\\65E5"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>日</span>La representación del símbolo Sun Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u65E5' or String.fromCodePoint(26085) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-65E5}' or chr(26085) |
| Rust | '\u{65E5}' |
| C / C++ | UTF-8 source or wchar_t with U+65E5 |
| Go | string(rune(0x65E5)) |
| Ruby | "\u{65E5}" |