HTML Topics
- HTML Intro
- HTML Basic
- HTML Editors
- HTML CSS
- HTML Tags
- HTML Deprecated Tags
- HTML Events
- HTML Event Attributes
- HTML Global Attributes
- HTML Attributes
- HTML Comments
- HTML Entity
- HTML IndexedDB
- HTML Drag & Drop
- HTML Geolocation
- HTML Canvas
- HTML Status Code
- HTML Language Code
- HTML Country Code
- HTML Charset
- MIME Types
HTML Entity | Left Arrow Headless Double Tail
Photo Credit to CodeToFun
Quick Reference
Let's have a look at HTML Entity Left Arrow Headless Double Tail
in a Table View.
Name | Value |
---|---|
unicode | U+0291B |
hex code | ⤛ |
html code | ⤛ |
html entity | ⤛ |
css code | \0291B |
๐ Example
The following example will demonstrate how to use Left Arrow Headless Double Tail
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: "\0291B";
}
</style>
</head>
<body>
<p>Left Arrow Headless Double Tail using Hexa Decimal: ⤛</p>
<p>Left Arrow Headless Double Tail using HTML Code: ⤛</p>
<p>Left Arrow Headless Double Tail using HTML Entity: ⤛</p>
<p id="point">Left Arrow Headless Double Tail using CSS Entity: </p>
</body>
</html>
๐ป Output
When you run the above program, it will print the following output:
Left Arrow Headless Double Tail using Hexa Decimal: โค Left Arrow Headless Double Tail using HTML Code: โค Left Arrow Headless Double Tail using HTML Entity: โค Left Arrow Headless Double Tail 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 | Left Arrow Headless Double Tail) please comment here. I will help you immediately.