keecode logokeecode
Home / HTML Entities / Less than
<

Less than

Less than sign

Reserved

HTML Codes

Named Entity

&lt;

Numeric Code

&#60;

Usage Examples

HTML Example (Named Entity)

<p>This is the Less than: &lt;</p>

Output: This is the Less than: <

HTML Example (Numeric Code)

<p>This is the Less than: &#60;</p>

Output: This is the Less than: <

JavaScript Example

const char = "&lt;";
console.log(char); // <