| 記号名 | Bottom Arc Anticlockwise Arrow |
| Unicodeバージョン | 3.2 |
| Unicode | U+293B |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \293B |
| 16進コード | 0x293B |
| HTMLコード | ⤻ |
| LaTeX | \text{BOTTOMARCANTICLOCKWISEARROW} |
| 記号 | ⤻ |
| URLエンコード(UTF-8パーセント) | %E2%A4%BB |
| 読み上げ名 / スクリーンリーダー | Bottom Arc Anticlockwise Arrow |
| UTF-8 | E2 A4 BB |
| UTF-16 | 293B |
| UTF-32 | 0000293B |
1\documentclass{article}2\usepackage{pifont}3\text{BOTTOMARCANTICLOCKWISEARROW}4\end{document}以下の方法でほとんどの最新デバイスでbottom arc anticlockwise arrow記号を入力できます:
Alt + 10555 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "bottom arc anticlockwise arrow", or use Unicode Hex Input with 293B.
Ctrl + Shift + U, type 293b, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.bottom-arc-anticlockwise-arrow::before { content: "\293B"; }1<span>⤻</span>各プログラミング言語におけるBottom Arc Anticlockwise Arrow記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u293B' or String.fromCodePoint(10555) |
| Python | '\N{BOTTOM ARC ANTICLOCKWISE ARROW}' or chr(10555) |
| Rust | '\u{293B}' |
| C / C++ | UTF-8 source or wchar_t with U+293B |
| Go | string(rune(0x293B)) |
| Ruby | "\u{293B}" |