White Medium Lozenge

Shortcodes

Copy useful codes for white medium lozenge symbol ⬨ to use in websites, apps, blogs, and docs.

Unicode
U+2B28
HTML Code
⬨
HEX Code
⬨
CSS Code
\2B28
JS/JSON
\u2B28
Unix/C/PHP/JAVA
0x2B28
URL-encode
%E2%AC%A8

Customize White Medium Lozenge

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

  

How to use White Medium Lozenge Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⬨</span>
HTML Code:
<span>&#11048;</span>
HEX Code:
<span>&#x2B28;</span>

Add with CSS

.white-medium-lozenge::before {
  content: '\\2B28';
}

Set it in JavaScript

document.querySelector('.white-medium-lozenge').textContent = '⬨';
copied