| Nombre del símbolo | Buddha Hanzi |
| Versión Unicode | 1.1 |
| Unicode | U+4F5B |
| Bloque Unicode | |
| Categoría general | Other Letter (Lo) |
| Código CSS | \4F5B |
| Código hexadecimal | 0x4F5B |
| Código HTML | 佛 |
| LaTeX | \CJKchar{4F5B} |
| Símbolo | 佛 |
| Codificación URL (porcentaje UTF-8) | %E4%BD%9B |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo buddha hanzi en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Buddha Hanzi en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |