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