How to display the euro (€) symbol in HTML

3 Answers

0 votes
<!DOCTYPE html>
<html>
<head></head>
<body>

<p>100&euro;</p>

</body>
</html>

<!--
run: 

100€

-->

 



answered Mar 1, 2016 by avibootz
0 votes
<!DOCTYPE html>
<html>
<head></head>
<body>
 
<p>100&#8364;</p>
 
</body>
</html>
 
<!--
run: 
 
100€
 
-->

 



answered Dec 31, 2018 by avibootz
0 votes
<!DOCTYPE html>
<html>
<head></head>
<body>
 
<p>100&#x20AC;</p>
 
</body>
</html>
 
<!--
run: 
 
100€
 
-->

 



answered Dec 31, 2018 by avibootz

Related questions

2 answers 246 views
1 answer 248 views
1 answer 301 views
301 views asked Jun 12, 2021 by avibootz
...