Latin Capital Letter U With Circumflex

Û

Shortcodes

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

Unicode
U+00DB
Alt Code
219
HTML Code
Û
HTML Entity
Û
HEX Code
Û
CSS Code
\00DB
JS/JSON
\u00DB
Unix/C/PHP/JAVA
0xDB
URL-encode
%C3%9B

Customize Latin Capital Letter U With Circumflex

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

Û
  

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

Insert in HTML

1. Direct symbol:
<span>Û</span>
HTML Code:
<span>&#219;</span>
HTML Entity:
<span>&Ucirc;</span>
HEX Code:
<span>&#x00DB;</span>

Add with CSS

.latin-capital-letter-u-with-circumflex::before {
  content: '\\00DB';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-u-with-circumflex').textContent = 'Û';
copied