Mathematical Right Flattened Parenthesis

Shortcodes

Copy useful codes for mathematical right flattened parenthesis symbol ⟯ to use in websites, apps, blogs, and docs.

Unicode
U+27EF
HTML Code
⟯
HEX Code
⟯
CSS Code
\27EF
JS/JSON
\u27EF
Unix/C/PHP/JAVA
0x27EF
URL-encode
%E2%9F%AF

Customize Mathematical Right Flattened Parenthesis

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

  

How to use Mathematical Right Flattened Parenthesis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟯</span>
HTML Code:
<span>&#10223;</span>
HEX Code:
<span>&#x27EF;</span>

Add with CSS

.mathematical-right-flattened-parenthesis::before {
  content: '\\27EF';
}

Set it in JavaScript

document.querySelector('.mathematical-right-flattened-parenthesis').textContent = '⟯';
copied