Greek Capital Letter Nu

Ν

Shortcodes

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

Unicode
U+039D
HTML Code
Ν
HEX Code
Ν
CSS Code
\039D
JS/JSON
\u039D
Unix/C/PHP/JAVA
0x039D
URL-encode
%CE%9D

Customize Greek Capital Letter Nu

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

Ν
  

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

Insert in HTML

1. Direct symbol:
<span>Ν</span>
HTML Code:
<span>&#925;</span>
HEX Code:
<span>&#x39D;</span>

Add with CSS

.greek-capital-letter-nu::before {
  content: '\\039D';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-nu').textContent = 'Ν';
copied