Latin Small Letter O With Ogonek And Macron

ǭ

Shortcodes

Copy useful codes for latin small letter o with ogonek and macron symbol ǭ to use in websites, apps, blogs, and docs.

Unicode
U+01ED
HTML Code
ǭ
HEX Code
ǭ
CSS Code
\01ED
JS/JSON
\u01ED
Unix/C/PHP/JAVA
0x1ED
URL-encode
%C7%AD

Customize Latin Small Letter O With Ogonek And Macron

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

ǭ
  

How to use Latin Small Letter O With Ogonek And Macron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ǭ</span>
HTML Code:
<span>&#493;</span>
HEX Code:
<span>&#x01ED;</span>

Add with CSS

.latin-small-letter-o-with-ogonek-and-macron::before {
  content: '\\01ED';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-ogonek-and-macron').textContent = 'ǭ';
copied