(invisible)
Punctuation

Zero Width Joiner ‍

The zero-width joiner (ZWJ) is an invisible character that requests connected rendering of adjacent characters that would otherwise be displayed separately. It plays a critical role in emoji sequences (combining emoji into compound glyphs), Arabic and Indic script rendering, and advanced text processing.

All Representations

Named Entity
‍
Decimal Code
‍
Hex Code
‍
Unicode
U+200D

Rendered Output

[Zero Width Joiner]

‍ renders as the character shown above

When to Use Zero Width Joiner

Use the zero-width joiner in multilingual content to force connected rendering of adjacent characters in scripts like Arabic, Persian, and Devanagari. In modern usage, ZWJ sequences create compound emoji (family emoji, skin tone combinations). It is rarely needed in typical HTML authoring but is essential for complex script support.

Try It — HTML Examples

Named entity in text
<p>Symbol: &zwj;</p>
Decimal reference
<p>Symbol: &#8205;</p>
Hex reference
<p>Symbol: &#x200D;</p>
Inside an HTML attribute
<div title="The Zero Width Joiner: &zwj;">Hover to see</div>

About the Zero Width Joiner Entity

The Zero Width Joiner character (&zwj;) is a standard HTML entity defined in the HTML specification. In HTML source code, it can be written using the named entity reference &zwj;, the decimal numeric character reference &#8205;, or the hexadecimal numeric reference &#x200D;. The character is assigned Unicode code point U+200D in the Universal Character Set.

The zero-width joiner (ZWJ) is an invisible character that requests connected rendering of adjacent characters that would otherwise be displayed separately. It plays a critical role in emoji sequences (combining emoji into compound glyphs), Arabic and Indic script rendering, and advanced text processing.

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 Zero Width Joiner character in your HTML documents, the named entity &zwj; is generally the most readable choice for developers reviewing or maintaining source code. The decimal form &#8205; and hexadecimal form &#x200D; 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 zero-width joiner in multilingual content to force connected rendering of adjacent characters in scripts like Arabic, Persian, and Devanagari. In modern usage, ZWJ sequences create compound emoji (family emoji, skin tone combinations). It is rarely needed in typical HTML authoring but is essential for complex script support.

Related Entities

Explore More HTML Entities

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