Latin Small Letter U With Circumflex

û

Shortcodes

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

Unicode
U+00FB
Alt Code
251
HTML Code
û
HTML Entity
û
HEX Code
û
CSS Code
\00FB
JS/JSON
\u00FB
Unix/C/PHP/JAVA
0xFB
URL-encode
%C3%BB

Customize Latin Small Letter U With Circumflex

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

û
  

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

Insert in HTML

1. Direct symbol:
<span>û</span>
HTML Code:
<span>&#251;</span>
HTML Entity:
<span>&ucirc;</span>
HEX Code:
<span>&#x00FB;</span>

Add with CSS

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

Set it in JavaScript

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