Overline

Shortcodes

Copy useful codes for overline symbol ‾ to use in websites, apps, blogs, and docs.

Unicode
U+203E
HTML Code
‾
HTML Entity
‾
HEX Code
‾
CSS Code
\203E
JS/JSON
\u203E
Unix/C/PHP/JAVA
0x203E
URL-encode
%E2%80%BE

Customize Overline

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

  

How to use Overline Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‾</span>
HTML Code:
<span>&#8254;</span>
HTML Entity:
<span>&oline;</span>
HEX Code:
<span>&#x203E;</span>

Add with CSS

.overline::before {
  content: '\\203E';
}

Set it in JavaScript

document.querySelector('.overline').textContent = '‾';
copied