Sine Wave

Shortcodes

Copy and paste codes for Sine Wave symbol ∿ to use in your websites, apps, blogs, and more.

Unicode
U+223F
HTML Code
∿
HEX Code
∿
CSS Code
\223F
JS/JSON
\u223F
Unix/C/PHP/JAVA
0x223F
URL-encode
%E2%88%BF
copied

Customize Sine Wave Symbol

Customize ∿ symbol as you like and download Sine Wave as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Sine Wave symbol in HTML, CSS, and JS?

Insert ∿ Sine Wave using HTML

1. Copy-paste Sine Wave directly:
<span>∿</span>
2. HTML Decimal Code:
<span>&#8767;</span>
3. Hexadecimal Code:
<span>&#x223F;</span>
Preview:

Add Sine Wave symbol with CSS

.sine-wave::before {
    content: '\\223F';
}
Preview: Sine Wave

Sine Wave JavaScript Code

1. Direct Symbol:
document.querySelector('.sine-wave').textContent = '∿';
2. Unicode Escape for ∿:
document.querySelector('.sine-wave').textContent = '\u223F';
Preview: