Apl Functional Symbol Greater-than Diaeresis

Shortcodes

Copy useful codes for apl functional symbol greater-than diaeresis ⍩ to use in websites, apps, blogs, and docs.

Unicode
U+2369
HTML Code
⍩
HEX Code
⍩
CSS Code
\2369
JS/JSON
\u2369
Unix/C/PHP/JAVA
0x2369
URL-encode
%E2%8D%A9

Customize Apl Functional Symbol Greater-than Diaeresis

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

  

How to use Apl Functional Symbol Greater-than Diaeresis in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⍩</span>
HTML Code:
<span>&#9065;</span>
HEX Code:
<span>&#x2369;</span>

Add with CSS

.apl-functional-symbol-greater-than-diaeresis::before {
  content: '\\2369';
}

Set it in JavaScript

document.querySelector('.apl-functional-symbol-greater-than-diaeresis').textContent = '⍩';
copied