Left Ceiling

Shortcodes

Copy useful codes for left ceiling symbol ⌈ to use in websites, apps, blogs, and docs.

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

Customize Left Ceiling

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

  

How to use Left Ceiling Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌈</span>
HTML Code:
<span>&#8968;</span>
HTML Entity:
<span>&lceil;</span>
HEX Code:
<span>&#x2308;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.left-ceiling').textContent = '⌈';
copied