| Symbol Name | Greek Capital Letter Beta |
| Unicode Version | 1.1 |
| Unicode | U+0392 |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \0392 |
| Hex Code | 0x0392 |
| HTML Code | Β |
| LaTeX | B |
| Symbol | Β |
| URL encode (UTF-8 percent) | %CE%92 |
| Spoken / screen reader name | Greek Capital Letter Beta |
| UTF-8 | CE 92 |
| UTF-16 | 0392 |
| UTF-32 | 00000392 |
1\documentclass{article}2\usepackage{pifont}3B4\end{document}You can type the greek capital letter beta symbol on most modern devices with the help of following methods:
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>Greek Capital Letter Beta symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |