keecode logokeecode
Home / HTML Entities / Dagger

Dagger

Dagger symbol

Miscellaneous

HTML Codes

Named Entity

†

Numeric Code

†

Usage Examples

HTML Example (Named Entity)

<p>This is the Dagger: &dagger;</p>

Output: This is the Dagger:

HTML Example (Numeric Code)

<p>This is the Dagger: &#8224;</p>

Output: This is the Dagger:

JavaScript Example

const char = "&dagger;";
console.log(char); // †