Latin Small Letter Sharp S

ß

Shortcodes

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

Unicode
U+00DF
Alt Code
223
HTML Code
ß
HTML Entity
ß
HEX Code
ß
CSS Code
\00DF
JS/JSON
\u00DF
Unix/C/PHP/JAVA
0xDF
URL-encode
%C3%9F

Customize Latin Small Letter Sharp S

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

ß
  

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

Insert in HTML

1. Direct symbol:
<span>ß</span>
HTML Code:
<span>&#223;</span>
HTML Entity:
<span>&szlig;</span>
HEX Code:
<span>&#x00DF;</span>

Add with CSS

.latin-small-letter-sharp-s::before {
  content: '\\00DF';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-sharp-s').textContent = 'ß';
copied