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