What is a red tick called? - briefly
The symbol is commonly called a red checkmark (or red tick mark). It indicates an error, disapproval, or negative status.
What is a red tick called? - in detail
The symbol consisting of a check‑mark rendered in red is commonly identified as a red check mark or red tick. In graphic‑design and user‑interface terminology it functions as a negative confirmation icon—a visual cue indicating an error, rejection, or failed validation.
Technical identifiers:
- Unicode U+2713 ✓ (check mark) and U+2714 ✔ (heavy check mark) represent the shape; color is applied through styling.
- In HTML/CSS a red version can be produced with
<span style="color:#D00;">✓</span>
or by assigning a CSS class that setscolor: red;
. - In vector libraries the glyph is often named “check” or “tick”; color variants are handled by the asset’s fill attribute.
Typical applications:
- Form validation: a red check appears beside fields that do not meet criteria.
- Messaging platforms: a red tick may signal an unread or unsent message status.
- Project management tools: red checks denote tasks that are blocked or require attention.
The visual semantics differ from the green check, which conveys success. The red hue reverses the positive connotation of the check shape, turning it into an indicator of problem, mismatch, or denial.