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