Latin Capital Letter U With Double Acute

Ű

Shortcodes

Copy useful codes for latin capital letter u with double acute symbol Ű to use in websites, apps, blogs, and docs.

Unicode
U+0170
HTML Code
Ű
HEX Code
Ű
CSS Code
\0170
JS/JSON
\u0170
Unix/C/PHP/JAVA
0x170
URL-encode
%C5%B0

Customize Latin Capital Letter U With Double Acute

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

Ű
  

How to use Latin Capital Letter U With Double Acute Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ű</span>
HTML Code:
<span>&#368;</span>
HEX Code:
<span>&#x0170;</span>

Add with CSS

.latin-capital-letter-u-with-double-acute::before {
  content: '\\0170';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-u-with-double-acute').textContent = 'Ű';
copied