Left Floor

Shortcodes

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

Unicode
U+230A
HTML Code
⌊
HTML Entity
⌊
HEX Code
⌊
CSS Code
\230A
JS/JSON
\u230A
Unix/C/PHP/JAVA
0x230A
URL-encode
%E2%8C%8A

Customize Left Floor

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌊</span>
HTML Code:
<span>&#8970;</span>
HTML Entity:
<span>&lfloor;</span>
HEX Code:
<span>&#x230A;</span>

Add with CSS

.left-floor::before {
  content: '\\230A';
}

Set it in JavaScript

document.querySelector('.left-floor').textContent = '⌊';
copied