Latin Small Letter U With Breve

ŭ

Shortcodes

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

Unicode
U+016D
HTML Code
ŭ
HEX Code
ŭ
CSS Code
\016D
JS/JSON
\u016D
Unix/C/PHP/JAVA
0x16D
URL-encode
%C5%AD

Customize Latin Small Letter U With Breve

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

ŭ
  

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

Insert in HTML

1. Direct symbol:
<span>ŭ</span>
HTML Code:
<span>&#365;</span>
HEX Code:
<span>&#x016D;</span>

Add with CSS

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

Set it in JavaScript

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