Greek Capital Letter Upsilon

Υ

Shortcodes

Copy useful codes for greek capital letter upsilon symbol Υ to use in websites, apps, blogs, and docs.

Unicode
U+03A5
HTML Code
Υ
HTML Entity
Υ
HEX Code
Υ
CSS Code
\03A5
JS/JSON
\u03A5
Unix/C/PHP/JAVA
0x03A5
URL-encode
%CE%A5

Customize Greek Capital Letter Upsilon

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

Υ
  

How to use Greek Capital Letter Upsilon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Υ</span>
HTML Code:
<span>&#933;</span>
HTML Entity:
<span>&Upsilon;</span>
HEX Code:
<span>&#x3A5;</span>

Add with CSS

.greek-capital-letter-upsilon::before {
  content: '\\03A5';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-upsilon').textContent = 'Υ';
copied