Left Ceiling

Shortcodes

Copy and paste codes for Left Ceiling symbol ⌈ to use in your websites, apps, blogs, and more.

Unicode
U+2308
HTML Code
⌈
HTML Entity
⌈
HEX Code
⌈
CSS Code
\2308
JS/JSON
\u2308
Unix/C/PHP/JAVA
0x2308
URL-encode
%E2%8C%88
copied

Customize Left Ceiling Symbol

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

Insert ⌈ Left Ceiling using HTML

1. Copy-paste Left Ceiling directly:
<span>⌈</span>
2. HTML Decimal Code:
<span>&#8968;</span>
3. HTML Entity:
<span>&lceil;</span>
4. Hexadecimal Code:
<span>&#x2308;</span>
Preview:

Add Left Ceiling symbol with CSS

.left-ceiling::before {
    content: '\\2308';
}
Preview: Left Ceiling

Left Ceiling JavaScript Code

1. Direct Symbol:
document.querySelector('.left-ceiling').textContent = '⌈';
2. Unicode Escape for ⌈:
document.querySelector('.left-ceiling').textContent = '\u2308';
Preview: