HTML Entity | Heavy Left Pointing Angle Quotation Mark Ornament
Photo Credit to CodeToFun
Quick Reference
Let's have a look at HTML Entity Heavy Left Pointing Angle Quotation Mark Ornament
in a Table View.
Name | Value |
---|---|
unicode | U+0276E |
hex code | ❮ |
html code | ❮ |
html entity | - |
css code | \0276E |
📄 Example
The following example will demonstrate how to use Heavy Left Pointing Angle Quotation Mark Ornament
using Hexa Decimal, HTML Code, HTML Entity and CSS Entity.
For a complete reference, go to our HTML Entities.
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0276E";
}
</style>
</head>
<body>
<p>Heavy Left Pointing Angle Quotation Mark Ornament using Hexa Decimal: ❮</p>
<p>Heavy Left Pointing Angle Quotation Mark Ornament using HTML Code: ❮</p>
<p id="point">Heavy Left Pointing Angle Quotation Mark Ornament using CSS Entity: </p>
</body>
</html>
💻 Output
When you render the HTML code provided above, it will display the following output:
Heavy Left Pointing Angle Quotation Mark Ornament using Hexa Decimal: ❮ Heavy Left Pointing Angle Quotation Mark Ornament using HTML Code: ❮ Heavy Left Pointing Angle Quotation Mark Ornament using CSS Entity: ❮
🎉 Conclusion:
Understanding and using HTML entities is fundamental for creating well-formatted, accessible web content. Whether you need to display special characters or ensure proper rendering of reserved symbols, HTML entities provide a standardized solution.
🤯 Fun Fact
Did you Know?
With over 1500 HTML entities available to date, please click here to explore the complete list of HTML entities.
👨💻 Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (HTML Entity | Heavy Left Pointing Angle Quotation Mark Ornament), please comment here. I will help you immediately.