White Horizontal Ellipse

Shortcodes

Copy useful codes for white horizontal ellipse symbol ⬭ to use in websites, apps, blogs, and docs.

Unicode
U+2B2D
HTML Code
⬭
HEX Code
⬭
CSS Code
\2B2D
JS/JSON
\u2B2D
Unix/C/PHP/JAVA
0x2B2D
URL-encode
%E2%AC%AD

Customize White Horizontal Ellipse

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

  

How to use White Horizontal Ellipse Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬭</span>
HTML Code:
<span>&#11053;</span>
HEX Code:
<span>&#x2B2D;</span>

Add with CSS

.white-horizontal-ellipse::before {
  content: '\\2B2D';
}

Set it in JavaScript

document.querySelector('.white-horizontal-ellipse').textContent = '⬭';
copied