Modifier Letter Small Beta

Shortcodes

Copy useful codes for modifier letter small beta symbol ᵝ to use in websites, apps, blogs, and docs.

Unicode
U+1D5D
HTML Code
ᵝ
HEX Code
ᵝ
CSS Code
\1D5D
JS/JSON
\u1D5D
Unix/C/PHP/JAVA
0x1D5D
URL-encode
%E1%B5%9D

Customize Modifier Letter Small Beta

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

  

How to use Modifier Letter Small Beta Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵝ</span>
HTML Code:
<span>&#7517;</span>
HEX Code:
<span>&#x1D5D;</span>

Add with CSS

.modifier-letter-small-beta::before {
  content: '\\1D5D';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-beta').textContent = 'ᵝ';
copied