Latin Small Letter U With Diaeresis And Acute

ǘ

Shortcodes

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

Unicode
U+01D8
HTML Code
ǘ
HEX Code
ǘ
CSS Code
\01D8
JS/JSON
\u01D8
Unix/C/PHP/JAVA
0x1D8
URL-encode
%C7%98

Customize Latin Small Letter U With Diaeresis And Acute

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

ǘ
  

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

Insert in HTML

1. Direct symbol:
<span>ǘ</span>
HTML Code:
<span>&#472;</span>
HEX Code:
<span>&#x01D8;</span>

Add with CSS

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

Set it in JavaScript

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