| Nome del simbolo | Cherry Blossom Kanji |
| Versione Unicode | 1.1 |
| Unicode | U+685C |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \685C |
| Codice esadecimale | 0x685C |
| Codice HTML | 桜 |
| LaTeX | \CJKchar{685C} |
| Simbolo | 桜 |
| Codifica URL (percentuale UTF-8) | %E6%A1%9C |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo cherry blossom kanji sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Cherry Blossom Kanji nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |