Latin Capital Letter U With Breve

Ŭ

Shortcodes

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

Unicode
U+016C
HTML Code
Ŭ
HEX Code
Ŭ
CSS Code
\016C
JS/JSON
\u016C
Unix/C/PHP/JAVA
0x16C
URL-encode
%C5%AC

Customize Latin Capital Letter U With Breve

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

Ŭ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŭ</span>
HTML Code:
<span>&#364;</span>
HEX Code:
<span>&#x016C;</span>

Add with CSS

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

Set it in JavaScript

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