| 記号名 | Heavy North East Arrow |
| Unicodeバージョン | 1.1 |
| Unicode | U+279A |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \279A |
| 16進コード | 0x279A |
| HTMLコード | ➚ |
| LaTeX | \text{HEAVYNORTHEASTARROW} |
| 記号 | ➚ |
| URLエンコード(UTF-8パーセント) | %E2%9E%9A |
| 読み上げ名 / スクリーンリーダー | Heavy North East Arrow |
| UTF-8 | E2 9E 9A |
| UTF-16 | 279A |
| UTF-32 | 0000279A |
1\documentclass{article}2\usepackage{pifont}3\text{HEAVYNORTHEASTARROW}4\end{document}以下の方法でほとんどの最新デバイスでheavy north east arrow記号を入力できます:
Alt + 10138 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "heavy north east arrow", or use Unicode Hex Input with 279A.
Ctrl + Shift + U, type 279a, 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.heavy-north-east-arrow::before { content: "\279A"; }1<span>➚</span>各プログラミング言語におけるHeavy North East Arrow記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u279A' or String.fromCodePoint(10138) |
| Python | '\N{HEAVY NORTH EAST ARROW}' or chr(10138) |
| Rust | '\u{279A}' |
| C / C++ | UTF-8 source or wchar_t with U+279A |
| Go | string(rune(0x279A)) |
| Ruby | "\u{279A}" |