HTML Entity for Sine Wave (∿)

What You'll Learn
How to display the Sine Wave (∿) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+223F (SINE WAVE) in the Mathematical Operators block (U+2200–U+22FF)—used in trigonometry, signal processing, and mathematical notation.
Render it with ∿, ∿, the named entity ∿, or CSS \223F. Do not confuse ∿ with the tilde operator U+223C (∼) or similar wave-like math symbols.
⚡ Quick Reference — Sine Wave
U+223FMathematical Operators
∿Hexadecimal reference
∿Decimal reference
∿Standard HTML named entity
Name Value
──────────── ──────────
Unicode U+223F
Hex code ∿
HTML code ∿
Named entity ∿
CSS code \223F
Official name Sine wave
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ∿ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\223F";
}
</style>
</head>
<body>
<p>Sine wave (hex): ∿</p>
<p>Sine wave (decimal): ∿</p>
<p>Sine wave (named): ∿</p>
<p id="point">Sine wave (CSS): </p>
</body>
</html>🌐 Browser Support
The Sine Wave (∿) is supported in modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the Sine Wave in mathematical and scientific contexts:
🧠 How It Works
Hexadecimal Code
∿ uses Unicode hexadecimal 223F to display the sine wave symbol.
Decimal HTML Code
∿ uses decimal Unicode value 8767 for the same character.
Named Entity
∿ is the standard HTML named entity for U+223F—readable and widely supported in math markup.
CSS Entity
\223F is used in CSS stylesheets in the content property of pseudo-elements.
Mathematical symbol result
All four methods render ∿. Unicode U+223F in Mathematical Operators. Next: Single High Reversed 9 Quotation Mark.
Use Cases
The Sine Wave (∿) commonly appears in:
Equations, formulas, and operator notation involving sine functions.
Educational content, textbooks, and tutorials on sine waves.
Electronics, telecommunications, and AC waveform documentation.
Physics, engineering, and research papers with wave notation.
Calculators, STEM tools, and interactive math interfaces.
Mathematical Operators and HTML entity reference guides.
💡 Best Practices
Do
- Use
∿for readable HTML source in math content - Set
<meta charset="utf-8">for reliable rendering - Verify font support for Mathematical Operators across devices
- Provide plain-text context for accessibility in equations
- Pick one reference style per project for consistency
Don’t
- Use padded Unicode notation like U+0223F—the correct value is
U+223F - Put CSS escape
\223Fin HTML text nodes - Confuse ∿ with tilde operator ∼ or similar symbols
- Assume every wavy symbol is the sine wave operator
- Mix entity styles randomly in one file
Key Takeaways
Four ways to render U+223F in HTML and CSS
∿ ∿Named entity ∿ is the most readable option in HTML markup
Unicode U+223F — SINE WAVE
For CSS stylesheets, use \223F in the content property
Previous: Sigma (Σ) Next: Single High Reversed 9 Quotation Mark (‛)
❓ Frequently Asked Questions
∿ (hex), ∿ (decimal), ∿ (named entity), or \223F in CSS content. All four render ∿.U+223F (SINE WAVE). Mathematical Operators (U+2200–U+22FF). Hex 223F, decimal 8767, named entity ∿.∿ is the readable named entity. ∿ and ∿ are numeric references. All render ∿; prefer ∿ in HTML source when readability matters.\223F goes in stylesheets (e.g. content on pseudo-elements). Both render ∿ in their respective contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, Greek letters, and more.
8 people found this page helpful
