Latin Small Letter U With Caron

ǔ

Shortcodes

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

Unicode
U+01D4
HTML Code
ǔ
HEX Code
ǔ
CSS Code
\01D4
JS/JSON
\u01D4
Unix/C/PHP/JAVA
0x1D4
URL-encode
%C7%94

Customize Latin Small Letter U With Caron

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

ǔ
  

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

Insert in HTML

1. Direct symbol:
<span>ǔ</span>
HTML Code:
<span>&#468;</span>
HEX Code:
<span>&#x01D4;</span>

Add with CSS

.latin-small-letter-u-with-caron::before {
  content: '\\01D4';
}

Set it in JavaScript

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