Latin Small Letter Z With Dot Above

ż

Shortcodes

Copy useful codes for latin small letter z with dot above symbol ż to use in websites, apps, blogs, and docs.

Unicode
U+017C
HTML Code
ż
HEX Code
ż
CSS Code
\017C
JS/JSON
\u017C
Unix/C/PHP/JAVA
0x17C
URL-encode
%C5%BC

Customize Latin Small Letter Z With Dot Above

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

ż
  

How to use Latin Small Letter Z With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ż</span>
HTML Code:
<span>&#380;</span>
HEX Code:
<span>&#x017C;</span>

Add with CSS

.latin-small-letter-z-with-dot-above::before {
  content: '\\017C';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-z-with-dot-above').textContent = 'ż';
copied