Right Ceiling

Shortcodes

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

Unicode
U+2309
HTML Code
⌉
HTML Entity
⌉
HEX Code
⌉
CSS Code
\2309
JS/JSON
\u2309
Unix/C/PHP/JAVA
0x2309
URL-encode
%E2%8C%89

Customize Right Ceiling

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌉</span>
HTML Code:
<span>&#8969;</span>
HTML Entity:
<span>&rceil;</span>
HEX Code:
<span>&#x2309;</span>

Add with CSS

.right-ceiling::before {
  content: '\\2309';
}

Set it in JavaScript

document.querySelector('.right-ceiling').textContent = '⌉';
copied