Latin Small Letter U With Macron

ū

Shortcodes

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

Unicode
U+016B
HTML Code
ū
HEX Code
ū
CSS Code
\016B
JS/JSON
\u016B
Unix/C/PHP/JAVA
0x16B
URL-encode
%C5%AB

Customize Latin Small Letter U With Macron

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

ū
  

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

Insert in HTML

1. Direct symbol:
<span>ū</span>
HTML Code:
<span>&#363;</span>
HEX Code:
<span>&#x016B;</span>

Add with CSS

.latin-small-letter-u-with-macron::before {
  content: '\\016B';
}

Set it in JavaScript

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