keecode logokeecode
Home / HTML Entities / Degree
°

Degree

Degree symbol

Common

HTML Codes

Named Entity

°

Numeric Code

°

Usage Examples

HTML Example (Named Entity)

<p>This is the Degree: &deg;</p>

Output: This is the Degree: °

HTML Example (Numeric Code)

<p>This is the Degree: &#176;</p>

Output: This is the Degree: °

JavaScript Example

const char = "&deg;";
console.log(char); // °