Latin Capital Letter Tone Five

Ƽ

Shortcodes

Copy useful codes for latin capital letter tone five symbol Ƽ to use in websites, apps, blogs, and docs.

Unicode
U+01BC
HTML Code
Ƽ
HEX Code
Ƽ
CSS Code
\01BC
JS/JSON
\u01BC
Unix/C/PHP/JAVA
0x1BC
URL-encode
%C6%BC

Customize Latin Capital Letter Tone Five

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

Ƽ
  

How to use Latin Capital Letter Tone Five Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ƽ</span>
HTML Code:
<span>&#444;</span>
HEX Code:
<span>&#x01BC;</span>

Add with CSS

.latin-capital-letter-tone-five::before {
  content: '\\01BC';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-tone-five').textContent = 'Ƽ';
copied