Overline

Shortcodes

Copy and paste codes for Overline symbol ‾ to use in your websites, apps, blogs, and more.

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
copied

Customize Overline Symbol

Customize ‾ symbol as you like and download Overline as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Overline symbol in HTML, CSS, and JS?

Insert ‾ Overline using HTML

1. Copy-paste Overline directly:
<span>‾</span>
2. HTML Decimal Code:
<span>&#8254;</span>
3. HTML Entity:
<span>&oline;</span>
4. Hexadecimal Code:
<span>&#x203E;</span>
Preview:

Add Overline symbol with CSS

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

Overline JavaScript Code

1. Direct Symbol:
document.querySelector('.overline').textContent = '‾';
2. Unicode Escape for ‾:
document.querySelector('.overline').textContent = '\u203E';
Preview: