Greek Capital Letter Beta

Β

Shortcodes

Copy useful codes for greek capital letter beta symbol Β to use in websites, apps, blogs, and docs.

Unicode
U+0392
HTML Code
Β
HTML Entity
Β
HEX Code
Β
CSS Code
\0392
JS/JSON
\u0392
Unix/C/PHP/JAVA
0x0392
URL-encode
%CE%92

Customize Greek Capital Letter Beta

Customize Β, download it as SVG or PNG, or copy the generated HTML snippet.

Β
  

How to use Greek Capital Letter Beta Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Β</span>
HTML Code:
<span>&#914;</span>
HTML Entity:
<span>&Beta;</span>
HEX Code:
<span>&#x392;</span>

Add with CSS

.greek-capital-letter-beta::before {
  content: '\\0392';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-beta').textContent = 'Β';
copied