Latin Small Letter U With Ring Above

ů

Shortcodes

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

Unicode
U+016F
HTML Code
ů
HEX Code
ů
CSS Code
\016F
JS/JSON
\u016F
Unix/C/PHP/JAVA
0x16F
URL-encode
%C5%AF

Customize Latin Small Letter U With Ring Above

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

ů
  

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

Insert in HTML

1. Direct symbol:
<span>ů</span>
HTML Code:
<span>&#367;</span>
HEX Code:
<span>&#x016F;</span>

Add with CSS

.latin-small-letter-u-with-ring-above::before {
  content: '\\016F';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-u-with-ring-above').textContent = 'ů';
copied