Soft Hyphen

­

Shortcodes

Copy useful codes for soft hyphen symbol ­ to use in websites, apps, blogs, and docs.

Unicode
U+00AD
Alt Code
0173
HTML Code
­
HTML Entity
­
HEX Code
­
CSS Code
\00AD
JS/JSON
\u00AD
Unix/C/PHP/JAVA
0xAD
URL-encode
%C2%AD

Customize Soft Hyphen

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

­
  

How to use Soft Hyphen Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>­</span>
HTML Code:
<span>&#173;</span>
HTML Entity:
<span>&shy;</span>
HEX Code:
<span>&#x00AD;</span>

Add with CSS

.soft-hyphen::before {
  content: '\\00AD';
}

Set it in JavaScript

document.querySelector('.soft-hyphen').textContent = '­';
copied