Ogham Reversed Feather Mark

Shortcodes

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

Unicode
U+169C
HTML Code
᚜
HEX Code
᚜
CSS Code
\169C
JS/JSON
\u169C
Unix/C/PHP/JAVA
0x169C
URL-encode
%E1%9A%9C

Customize Ogham Reversed Feather Mark

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

  

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

Insert in HTML

1. Direct symbol:
<span>᚜</span>
HTML Code:
<span>&#5788;</span>
HEX Code:
<span>&#x169C;</span>

Add with CSS

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

Set it in JavaScript

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