keecode logokeecode
Home / HTML Entities / Paragraph

Paragraph

Paragraph sign (pilcrow)

Miscellaneous

HTML Codes

Named Entity

¶

Numeric Code

¶

Usage Examples

HTML Example (Named Entity)

<p>This is the Paragraph: &para;</p>

Output: This is the Paragraph:

HTML Example (Numeric Code)

<p>This is the Paragraph: &#182;</p>

Output: This is the Paragraph:

JavaScript Example

const char = "&para;";
console.log(char); // ¶