In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark?

HtmlEncodingSymbolsEntities

Html Problem Overview


Is there a corresponding X mark to ✓ (✓)? What is it?

Html Solutions


Solution 1 - Html

A corresponding cross for ✓ ✓ would be ✗ ✗ I think (Dingbats).

Solution 2 - Html

✗ 

✘ 

✕ 

✖

Solution 3 - Html

Personally, I like to use named entities when they are available, because they make my HTML more readable. Because of that, I like to use ✓ for ✓ and ✗ for ✗. If you're not sure whether a named entity exists for the character you want, try the &what search site. It includes the name for each entity, if there is one.

As mentioned in the comments, ✓ and ✗ are not supported in HTML4, so you may be better off using the more cryptic ✓ and ✗ if you want to target the most browsers. The most definitive references I could find were on the W3C site: HTML4 and HTML5.

Solution 4 - Html

It's between the Z and the C on your keyboard.

Solution 5 - Html

I think this will help everyone.

All codes are taken from here - https://www.toptal.com/designers/htmlarrows/symbols/

✗

✘ 

✕

✖

✓

✔

☑

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionnc.View Question on Stackoverflow
Solution 1 - HtmldommerView Answer on Stackoverflow
Solution 2 - HtmlBruiserView Answer on Stackoverflow
Solution 3 - HtmlDon KirkbyView Answer on Stackoverflow
Solution 4 - HtmlnickfView Answer on Stackoverflow
Solution 5 - HtmlChamara IndrajithView Answer on Stackoverflow