Latin Small Letter Long S

ſ

Shortcodes

Copy useful codes for latin small letter long s symbol ſ to use in websites, apps, blogs, and docs.

Unicode
U+017F
HTML Code
ſ
HEX Code
ſ
CSS Code
\017F
JS/JSON
\u017F
Unix/C/PHP/JAVA
0x17F
URL-encode
%C5%BF

Customize Latin Small Letter Long S

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

ſ
  

How to use Latin Small Letter Long S Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ſ</span>
HTML Code:
<span>&#383;</span>
HEX Code:
<span>&#x017F;</span>

Add with CSS

.latin-small-letter-long-s::before {
  content: '\\017F';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-long-s').textContent = 'ſ';
copied