| Nome del simbolo | Buddha Hanzi |
| Versione Unicode | 1.1 |
| Unicode | U+4F5B |
| Blocco Unicode | |
| Categoria generale | Other Letter (Lo) |
| Codice CSS | \4F5B |
| Codice esadecimale | 0x4F5B |
| Codice HTML | 佛 |
| LaTeX | \CJKchar{4F5B} |
| Simbolo | 佛 |
| Codifica URL (percentuale UTF-8) | %E4%BD%9B |
| Nome parlato / screen reader | Buddha Hanzi |
| UTF-8 | E4 BD 9B |
| UTF-16 | 4F5B |
| UTF-32 | 00004F5B |
1\documentclass{article}2\usepackage{pifont}3\CJKchar{4F5B}4\end{document}Puoi digitare il simbolo buddha hanzi sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 20315 on Windows (numeric keypad with Num Lock), or insert via Character Map / IME.
Edit → Emoji & Symbols, search "buddha hanzi", or use Unicode Hex Input with 4F5B.
Ctrl + Shift + U, type 4f5b, 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-buddha::before { content: "\\4F5B"; font-family: "Hiragino Sans", "PingFang SC", "Noto Sans CJK SC", serif; }1<span>佛</span>La rappresentazione del simbolo Buddha Hanzi nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u4F5B' or String.fromCodePoint(20315) |
| Python | '\N{CJK UNIFIED IDEOGRAPH-4F5B}' or chr(20315) |
| Rust | '\u{4F5B}' |
| C / C++ | UTF-8 source or wchar_t with U+4F5B |
| Go | string(rune(0x4F5B)) |
| Ruby | "\u{4F5B}" |