Lozenge

Shortcodes

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

Unicode
U+25CA
HTML Code
◊
HEX Code
◊
CSS Code
\25CA
JS/JSON
\u25CA
Unix/C/PHP/JAVA
0x25CA
URL-encode
%E2%97%8A
copied

Customize Lozenge Symbol

Customize ◊ symbol as you like and download Lozenge 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 Lozenge symbol in HTML, CSS, and JS?

Insert ◊ Lozenge using HTML

1. Copy-paste Lozenge directly:
<span>◊</span>
2. HTML Decimal Code:
<span>&#9674;</span>
3. Hexadecimal Code:
<span>&#x25CA;</span>
Preview:

Add Lozenge symbol with CSS

.lozenge::before {
    content: '\\25CA';
}
Preview: Lozenge

Lozenge JavaScript Code

1. Direct Symbol:
document.querySelector('.lozenge').textContent = '◊';
2. Unicode Escape for ◊:
document.querySelector('.lozenge').textContent = '\u25CA';
Preview: