| Nombre del símbolo | Greek Capital Letter Beta |
| Versión Unicode | 1.1 |
| Unicode | U+0392 |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \0392 |
| Código hexadecimal | 0x0392 |
| Código HTML | Β |
| LaTeX | B |
| Símbolo | Β |
| Codificación URL (porcentaje UTF-8) | %CE%92 |
| Nombre oral / lector de pantalla | Greek Capital Letter Beta |
| UTF-8 | CE 92 |
| UTF-16 | 0392 |
| UTF-32 | 00000392 |
1\documentclass{article}2\usepackage{pifont}3B4\end{document}Puedes escribir el símbolo greek capital letter beta en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 914 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter beta", or use Unicode Hex Input with 0392.
Ctrl + Shift + U, type 0392, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.capital-beta::before { content: "\0392"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Β</span>La representación del símbolo Greek Capital Letter Beta en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0392' or String.fromCodePoint(914) |
| Python | '\N{GREEK CAPITAL LETTER BETA}' or chr(914) |
| Rust | '\u{0392}' |
| C / C++ | UTF-8 source or wchar_t with U+0392 |
| Go | string(rune(0x0392)) |
| Ruby | "\u{0392}" |