Runic Single Punctuation

Shortcodes

Copy useful codes for runic single punctuation symbol ᛫ to use in websites, apps, blogs, and docs.

Unicode
U+16EB
HTML Code
᛫
HEX Code
᛫
CSS Code
\16EB
JS/JSON
\u16EB
Unix/C/PHP/JAVA
0x16EB
URL-encode
%E1%9B%AB

Customize Runic Single Punctuation

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

  

How to use Runic Single Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>᛫</span>
HTML Code:
<span>&#5867;</span>
HEX Code:
<span>&#x16EB;</span>

Add with CSS

.runic-single-punctuation::before {
  content: '\\16EB';
}

Set it in JavaScript

document.querySelector('.runic-single-punctuation').textContent = '᛫';
copied