HTML Entity for Up Triple Arrow (⤊)

What You'll Learn
How to display the Up Triple Arrow (⤊) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+290A (UPWARDS TRIPLE ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a vertical triple arrow pointing upward, used in navigation, UI design, mathematical notation, and technical content.
Render it with ⤊, ⤊, or CSS escape \290A. There is no named HTML entity for this symbol. Compare ⟰ (quadruple up, U+27F0) or ⇑ (⇑, double up) when you need a different stroke count.
⚡ Quick Reference — Up Triple Arrow
U+290ASupplemental Arrows-B
⤊Hexadecimal reference
⤊Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+290A
Hex code ⤊
HTML code ⤊
Named entity (none)
CSS code \290A
Official name UPWARDS TRIPLE ARROW
Related U+27F0 = Quadruple up; U+21D1 = Double up (⇑); U+290B = Triple down
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⤊ with hex, decimal, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\290A";
}
</style>
</head>
<body>
<p>Up Triple Arrow (hex): ⤊</p>
<p>Up Triple Arrow (decimal): ⤊</p>
<p id="point">Up Triple Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
U+290A is supported in modern browsers when rendered with a font that includes Supplemental Arrows-B:
👀 Live Preview
See the Up Triple Arrow (⤊) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
⤊ uses the Unicode hexadecimal value 290A to display the Up Triple Arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤊ uses the decimal Unicode value 10506 to display the same character.
CSS Entity
\290A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⤊. Unicode U+290A. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.
Use Cases
The Up Triple Arrow (⤊) is commonly used in:
Back-to-top controls with stronger emphasis than a single or double arrow.
Menus, buttons, and interfaces indicating strong upward movement.
Strong upward relations or emphasis in mathematical notation.
Show strong triple upward flow in process and logic diagrams.
Explain sort order, priority, or upward steps in developer docs.
Symbol pickers or design systems that include multi-stroke arrows.
💡 Best Practices
Do
- Use
⤊or⤊consistently in markup - Add
aria-labelwhen the symbol means scroll up or move upward - Pair ⤊ with a legend in technical documents
- Use
\290Ain CSS::before/::afterfor up-arrow icons - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Expect a named entity—none exists for U+290A
- Confuse ⤊ (triple up) with ⟰ (quadruple up) or ⇑ (
⇑, double up) - Put CSS escape
\290Ain HTML text nodes - Rely on the symbol alone in accessibility-critical UIs
- Assume decorative fonts include all Supplemental Arrows-B glyphs
Key Takeaways
Two HTML numeric references render ⤊
⤊ ⤊For CSS stylesheets, use the escape in the content property
\290AUnicode U+290A — UPWARDS TRIPLE ARROW
Supplemental Arrows-B block (U+2900–U+297F)
Paired with ⤋ (Down Triple Arrow) for opposite direction
❓ Frequently Asked Questions
⤊ (hex), ⤊ (decimal), or \290A in CSS content. There is no named entity. All produce ⤊.U+290A (UPWARDS TRIPLE ARROW). Supplemental Arrows-B (U+2900–U+297F). Hex 290A, decimal 10506. A vertical triple arrow pointing upward.⤊ or ⤊) go in markup. The CSS escape \290A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⤊ or ⤊ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
