Testing back arrow options

Each example uses a text character rather than an icon. Every arrow is purely decorative here, hidden via aria-hidden="true" to avoid additional noise or confusion for screen reader users, since the adjacent visible text ("Back to home") already conveys the link's purpose on its own.

What this page is actually testing: the accessibility behaviour is identical and settled across every example below, none of these arrows should ever be announced, that part isn't in question. What varies, and what's worth checking, is how reliably each glyph renders as a recognisable arrow across different browsers, operating systems, and font stacks. The rarer characters here (Examples 4 and 8 in particular) are more likely to fall back to a missing-glyph box ("tofu") on systems with narrower font support than the common ones.

Scope limitation: this pattern only works because the arrow sits next to visible text conveying the same meaning. An icon-only version of any of these, with no visible "Back to home" text, would need the opposite treatment: a real accessible name on the link itself (for example, via aria-label), not aria-hidden on the arrow. Copying this pattern into an icon-only link would produce a link with no accessible name at all.

Example 1: ← U+2190 LEFTWARDS ARROW

Back to home

<span aria-hidden="true">←</span> <a href="/">Back to home</a>

Example 2: ‹ U+2039 SINGLE LEFT-POINTING ANGLE QUOTATION MARK

Back to home

<span aria-hidden="true">‹</span> <a href="/">Back to home</a>

Example 3: « U+00AB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK

Back to home

<span aria-hidden="true">«</span> <a href="/">Back to home</a>

Example 4: ⟵ U+27F5 LONG LEFTWARDS ARROW

Back to home

<span aria-hidden="true">⟵</span> <a href="/">Back to home</a>

Example 5: ⬅ U+2B05 LEFTWARDS BLACK ARROW

Back to home

<span aria-hidden="true">⬅</span> <a href="/">Back to home</a>

Example 6: ⇐ U+21D0 LEFTWARDS DOUBLE ARROW

Back to home

<span aria-hidden="true">⇐</span> <a href="/">Back to home</a>

Example 7: ↩ U+21A9 LEFTWARDS ARROW WITH HOOK

Back to home

<span aria-hidden="true">↩</span> <a href="/">Back to home</a>

Example 8: ↢ U+21A2 LEFTWARDS ARROW WITH TAIL

Back to home

<span aria-hidden="true">↢</span> <a href="/">Back to home</a>