What is the small red tick called?

What is the small red tick called? - briefly

The small red tick is commonly called a “check mark” or “red check.” In user interfaces it signals approval, success, or completion.

What is the small red tick called? - in detail

The small red check‑mark is commonly referred to as a “red check” or “red tick”. In most digital contexts it is simply called a “check‑mark” with the color specification added when needed.

Unicode provides two standard symbols that represent this shape: U+2713 (✓) and U+2714 (✔). The latter is the heavier, often filled version that designers frequently color red for status indicators. HTML entities for these characters are ✓ and ✔.

Typical applications include:

  • Confirmation of correct answers in quizzes and tests.
  • Indication of successful operations in software interfaces (e.g., “Task completed”).
  • Visual cue for approved items in forms and checklists.

Design guidelines recommend using the red variant only for positive confirmation, avoiding it for warnings or errors, which are usually signaled by orange or red cross symbols. Accessibility standards advise providing a text alternative, such as “success” or “approved”, to ensure screen‑reader compatibility.

In graphic design, the red check is often rendered as a solid, slightly rounded stroke, with a typical height of 10–12 pt for printed material and 16–24 px for web icons. Vector formats (SVG) allow scaling without loss of clarity, and the color is usually defined by the hex code #FF0000 or an equivalent RGB value.

When implementing the symbol in software, developers can:

  1. Insert the Unicode character directly into strings.
  2. Use a font that includes a distinct red check glyph (e.g., Font Awesome’s fa-check-circle).
  3. Apply CSS styling to set the fill color to red (color: #ff0000;).

Overall, the term “red check” accurately describes the small, colored tick used across user interfaces, documentation, and visual communication to denote approval or correctness.