HTML Entity | Vertical Tilde
Photo Credit to CodeToFun
Quick Reference
Let's have a look at HTML Entity Vertical Tilde
in a Table View.
Name | Value |
---|---|
unicode | U+0033E |
hex code | ̾ |
html code | ̾ |
html entity | - |
css code | \0033E |
đ Example
The following example will demonstrate how to use Vertical Tilde
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: "\0033E";
}
</style>
</head>
<body>
<p>Vertical Tilde using Hexa Decimal: ̾</p>
<p>Vertical Tilde using HTML Code: ̾</p>
<p id="point">Vertical Tilde using CSS Entity: </p>
</body>
</html>
đť Testing the Program
When you run the above program, it will print the following output:
Vertical Tilde using Hexa Decimal: Ěž Vertical Tilde using HTML Code: Ěž Vertical Tilde 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 | Vertical Tilde) please comment here. I will help you immediately.