Latin Small Letter O With Macron

ō

Shortcodes

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

Unicode
U+014D
HTML Code
ō
HEX Code
ō
CSS Code
\014D
JS/JSON
\u014D
Unix/C/PHP/JAVA
0x14D
URL-encode
%C5%8D

Customize Latin Small Letter O With Macron

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

ō
  

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

Insert in HTML

1. Direct symbol:
<span>ō</span>
HTML Code:
<span>&#333;</span>
HEX Code:
<span>&#x014D;</span>

Add with CSS

.latin-small-letter-o-with-macron::before {
  content: '\\014D';
}

Set it in JavaScript

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