Apl Functional Symbol Circle Underbar

Shortcodes

Copy useful codes for apl functional symbol circle underbar ⍜ to use in websites, apps, blogs, and docs.

Unicode
U+235C
HTML Code
⍜
HEX Code
⍜
CSS Code
\235C
JS/JSON
\u235C
Unix/C/PHP/JAVA
0x235C
URL-encode
%E2%8D%9C

Customize Apl Functional Symbol Circle Underbar

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

  

How to use Apl Functional Symbol Circle Underbar in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⍜</span>
HTML Code:
<span>&#9052;</span>
HEX Code:
<span>&#x235C;</span>

Add with CSS

.apl-functional-symbol-circle-underbar::before {
  content: '\\235C';
}

Set it in JavaScript

document.querySelector('.apl-functional-symbol-circle-underbar').textContent = '⍜';
copied