Latin Small Letter U With Diaeresis And Caron

ǚ

Shortcodes

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

Unicode
U+01DA
HTML Code
ǚ
HEX Code
ǚ
CSS Code
\01DA
JS/JSON
\u01DA
Unix/C/PHP/JAVA
0x1DA
URL-encode
%C7%9A

Customize Latin Small Letter U With Diaeresis And Caron

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

ǚ
  

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

Insert in HTML

1. Direct symbol:
<span>ǚ</span>
HTML Code:
<span>&#474;</span>
HEX Code:
<span>&#x01DA;</span>

Add with CSS

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

Set it in JavaScript

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