Latin Small Letter U With Diaeresis And Grave

ǜ

Shortcodes

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

Unicode
U+01DC
HTML Code
ǜ
HEX Code
ǜ
CSS Code
\01DC
JS/JSON
\u01DC
Unix/C/PHP/JAVA
0x1DC
URL-encode
%C7%9C

Customize Latin Small Letter U With Diaeresis And Grave

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

ǜ
  

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

Insert in HTML

1. Direct symbol:
<span>ǜ</span>
HTML Code:
<span>&#476;</span>
HEX Code:
<span>&#x01DC;</span>

Add with CSS

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

Set it in JavaScript

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