Latin Small Letter U With Diaeresis And Macron

ǖ

Shortcodes

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

Unicode
U+01D6
HTML Code
ǖ
HEX Code
ǖ
CSS Code
\01D6
JS/JSON
\u01D6
Unix/C/PHP/JAVA
0x1D6
URL-encode
%C7%96

Customize Latin Small Letter U With Diaeresis And Macron

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

ǖ
  

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

Insert in HTML

1. Direct symbol:
<span>ǖ</span>
HTML Code:
<span>&#470;</span>
HEX Code:
<span>&#x01D6;</span>

Add with CSS

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

Set it in JavaScript

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