Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

HTML Entity | Micro Sign

Posted in HTML Tutorial
Updated on Feb 26, 2024
By Mari Selvan
๐Ÿ‘๏ธ 19 - Views
โณ 4 mins
๐Ÿ’ฌ 1 Comment
HTML Entity Micro Sign

Photo Credit to CodeToFun

Quick Reference

Let's have a look at HTML Entity Micro Sign in a Table View.

NameValue
unicodeU+000B5
hex codeµ
html codeµ
html entityµ
css code\000B5

๐Ÿ“„ Example

The following example will demonstrate how to use Micro Sign using Hexa Decimal, HTML Code, HTML Entity and CSS Entity.

For a complete reference, go to our HTML Entities.

entity.html
Copied
Copy To Clipboard
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\000B5";
  }
 </style>
</head>
<body>

<p>Micro Sign using Hexa Decimal: &#xb5;</p>
<p>Micro Sign using HTML Code: &#181;</p>
<p>Micro Sign using HTML Entity: &micro;</p>
<p id="point">Micro Sign using CSS Entity: </p>

</body>
</html>

๐Ÿ’ป Output

When you render the HTML code provided above, it will display the following output:

Output
Micro Sign using Hexa Decimal: ยต
Micro Sign using HTML Code: ยต
Micro Sign using HTML Entity: ยต
Micro Sign 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

Logo

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:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
๐Ÿ‘‹ Hey, I'm Mari Selvan

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

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
10 months ago

If you have any doubts regarding this article (HTML Entity | Micro Sign), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy