Punctuation

Fraction Slash ⁄

The fraction slash is a special forward slash designed for building typographic fractions. Unlike the regular solidus (/), the fraction slash triggers automatic fraction rendering in some typographic systems, combining with adjacent numerals to form proper fractions with reduced-size numerator and denominator.

All Representations

Named Entity
⁄
Decimal Code
⁄
Hex Code
⁄
Unicode
U+2044

Rendered Output

⁄ renders as the character shown above

When to Use Fraction Slash

Use the fraction slash when building custom fractions from individual digits where precomposed fraction characters are not available (e.g., 1⁄7). For common fractions like ½, ¼, and ¾, use the precomposed fraction entities instead, as they are more widely supported and render more consistently.

Try It — HTML Examples

Named entity in text
<p>Symbol: &frasl;</p>
Decimal reference
<p>Symbol: &#8260;</p>
Hex reference
<p>Symbol: &#x2044;</p>
Inside an HTML attribute
<div title="The Fraction Slash: &frasl;">Hover to see</div>

About the Fraction Slash Entity

The Fraction Slash character (⁄) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &frasl;, the decimal numeric character reference &#8260;, or the hexadecimal numeric reference &#x2044;. The character is assigned Unicode code point U+2044 in the Universal Character Set.

The fraction slash is a special forward slash designed for building typographic fractions. Unlike the regular solidus (/), the fraction slash triggers automatic fraction rendering in some typographic systems, combining with adjacent numerals to form proper fractions with reduced-size numerator and denominator.

Punctuation and whitespace entities are among the most frequently used HTML entities in web development. They handle characters that either have special meaning in HTML syntax — such as angle brackets and ampersands — or represent typographic characters that improve the visual quality of text, like em dashes and curly quotes. Proper use of punctuation entities is essential for producing valid, well-formed HTML documents and achieving professional-looking typography on the web.

When deciding how to encode the Fraction Slash character in your HTML documents, the named entity &frasl; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#8260; and hexadecimal form &#x2044; are equally valid alternatives that work in contexts where named entities may not be supported, or when generating HTML output programmatically from server-side code. All three representations produce identical visual output in every modern web browser.

Use the fraction slash when building custom fractions from individual digits where precomposed fraction characters are not available (e.g., 1&frasl;7). For common fractions like ½, ¼, and ¾, use the precomposed fraction entities instead, as they are more widely supported and render more consistently.

Related Entities

Explore More HTML Entities

Browse our complete reference of 262 HTML entities with codes, examples, and usage tips.