Latin Capital Letter U With Macron

Ū

Shortcodes

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

Unicode
U+016A
HTML Code
Ū
HEX Code
Ū
CSS Code
\016A
JS/JSON
\u016A
Unix/C/PHP/JAVA
0x16A
URL-encode
%C5%AA

Customize Latin Capital Letter U With Macron

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

Ū
  

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

Insert in HTML

1. Direct symbol:
<span>Ū</span>
HTML Code:
<span>&#362;</span>
HEX Code:
<span>&#x016A;</span>

Add with CSS

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

Set it in JavaScript

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