Modifier Letter Extra-low Tone Bar

˩

Shortcodes

Copy useful codes for modifier letter extra-low tone bar symbol ˩ to use in websites, apps, blogs, and docs.

Unicode
U+02E9
HTML Code
˩
HEX Code
˩
CSS Code
\02E9
JS/JSON
\u02E9
Unix/C/PHP/JAVA
0x2E9
URL-encode
%CB%A9

Customize Modifier Letter Extra-low Tone Bar

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

˩
  

How to use Modifier Letter Extra-low Tone Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>˩</span>
HTML Code:
<span>&#745;</span>
HEX Code:
<span>&#x02E9;</span>

Add with CSS

.modifier-letter-extra-low-tone-bar::before {
  content: '\\02E9';
}

Set it in JavaScript

document.querySelector('.modifier-letter-extra-low-tone-bar').textContent = '˩';
copied