HTML Entity for Anticlockwise Arrow (↶)

What You'll Learn
How to display the anticlockwise top semicircle arrow (↶, U+21B6) in HTML. Unicode’s official name is ANTICLOCKWISE TOP SEMICIRCLE ARROW; it is the curved arrow often labeled “anticlockwise” or “undo” in toolbars. It lives in the Arrows block.
You can write it as the named entity ↶ (omit the zero-width space when typing: ampersand + cularr + semicolon), as ↶ or ↶, or via CSS content with \21B6 or \021B6 when a terminator is needed. Pair icon-only uses with visible text or aria-label so the action (for example Undo), not only the shape, is clear.
⚡ Quick Reference — Anticlockwise arrow (↶)
U+21B6Arrows
↶Hexadecimal reference
↶Decimal reference
↶Remove U+200B when typing; shown only so the table does not collapse the reference.
Name Value
──────────── ──────────
Unicode U+21B6
Hex code ↶
HTML code ↶
Named entity ↶
CSS code \21B6Complete HTML Example
This example shows U+21B6 using hexadecimal, decimal, the named cularr entity, and a CSS content escape. In your own file, write the named form without the zero-width space used in this table.
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21B6";
}
</style>
</head>
<body>
<p>Anticlockwise Arrow using Hexa Decimal: ↶</p>
<p>Anticlockwise Arrow using HTML Code: ↶</p>
<p>Anticlockwise Arrow using HTML Entity: ↶</p>
<p id="point">Anticlockwise Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The cularr named reference and numeric forms for U+21B6 are supported in all modern browsers. Rendering depends on fonts that include Arrows:
👀 Live Preview
See U+21B6 in short UI-style snippets:
↶ or ↶ in UTF-8 text.🧠 How It Works
Named entity
The short name cularr (with leading ampersand and semicolon) resolves to U+21B6. It is easy to read in hand-authored UI HTML.
Numeric references
↶ (decimal) and ↶ (hex) are equivalent for this arrow.
CSS escape
\21B6 (or \021B6 with a following space if the next character is hex) in content on ::before / ::after emits U+21B6 from a stylesheet.
Same code point
All paths expose U+21B6 (Arrows). Official name: ANTICLOCKWISE TOP SEMICIRCLE ARROW. Prefer named or numeric references in markup; use CSS escapes only in stylesheets.
Use Cases
The anticlockwise arrow (U+21B6) fits these kinds of content:
Editors, forms, and apps where users revert the last change.
Rewind or skip-back affordances next to play and pause.
Image viewers and maps that expose rotate-left or counterclockwise actions.
Flow direction on arcs and process figures in HTML or SVG-adjacent docs.
Rotation conventions in geometry, mechanics, or signal processing articles.
Maps or kiosks that need a compact counterclockwise cue (with a text label).
Always expose the action in words or aria-label, not only the curved glyph.
💡 Best Practices
Do
- Prefer
cularr(ampersand + cularr + semicolon) or numeric refs for portable UI snippets - Pair the symbol with visible text such as “Undo” or an equivalent on buttons
- Use a font stack that includes good Arrows coverage for toolbar density
- Use
\21B6only inside CSScontent, not raw in HTML text - Offer a clockwise counterpart when users must choose direction explicitly
Don’t
- Rely on the glyph alone for safety-critical or irreversible actions
- Confuse U+21B6 with the return arrow (U+21A9) or other curved arrows in the same block
- Paste CSS escapes into HTML markup (wrong layer)
- Use tiny icons without touch targets or focus styles on mobile
- Forget keyboard equivalents when the arrow only appears on hover-heavy desktop layouts
Key Takeaways
Named + numeric ways to write U+21B6
↶ ↶ ↶CSS content escape
\21B6Unicode U+21B6 — ANTICLOCKWISE TOP SEMICIRCLE ARROW
Arrows — navigation, undo, rewind, rotation
Label the action for assistive tech; the shape alone is ambiguous
❓ Frequently Asked Questions
cularr reference (ampersand + cularr + semicolon), ↶, or ↶ in text. For CSS-only generated text, \21B6 in content works.U+21B6 (decimal 8630, hex 21B6). Official name: ANTICLOCKWISE TOP SEMICIRCLE ARROW. Block: Arrows.cularr is defined for U+21B6; numeric references are alternative spellings of the same code point.↶, ↶, or the named form in text nodes. CSS uses backslash hex escapes inside content rules. Same code point; different syntax layer.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
