Swung Dash

Shortcodes

Copy useful codes for swung dash symbol ⁓ to use in websites, apps, blogs, and docs.

Unicode
U+2053
HTML Code
⁓
HEX Code
⁓
CSS Code
\2053
JS/JSON
\u2053
Unix/C/PHP/JAVA
0x2053
URL-encode
%E2%81%93

Customize Swung Dash

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

  

How to use Swung Dash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁓</span>
HTML Code:
<span>&#8275;</span>
HEX Code:
<span>&#x2053;</span>

Add with CSS

.swung-dash::before {
  content: '\\2053';
}

Set it in JavaScript

document.querySelector('.swung-dash').textContent = '⁓';
copied