Modifier Letter Extra-high Tone Bar

˥

Shortcodes

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

Unicode
U+02E5
HTML Code
˥
HEX Code
˥
CSS Code
\02E5
JS/JSON
\u02E5
Unix/C/PHP/JAVA
0x2E5
URL-encode
%CB%A5

Customize Modifier Letter Extra-high Tone Bar

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

˥
  

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

Insert in HTML

1. Direct symbol:
<span>˥</span>
HTML Code:
<span>&#741;</span>
HEX Code:
<span>&#x02E5;</span>

Add with CSS

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

Set it in JavaScript

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