Ogham Feather Mark

Shortcodes

Copy useful codes for ogham feather mark symbol ᚛ to use in websites, apps, blogs, and docs.

Unicode
U+169B
HTML Code
᚛
HEX Code
᚛
CSS Code
\169B
JS/JSON
\u169B
Unix/C/PHP/JAVA
0x169B
URL-encode
%E1%9A%9B

Customize Ogham Feather Mark

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

  

How to use Ogham Feather Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>᚛</span>
HTML Code:
<span>&#5787;</span>
HEX Code:
<span>&#x169B;</span>

Add with CSS

.ogham-feather-mark::before {
  content: '\\169B';
}

Set it in JavaScript

document.querySelector('.ogham-feather-mark').textContent = '᚛';
copied