| 記号名 | Up-pointing Red Triangle |
| Unicodeバージョン | 6.0 |
| Unicode | U+1F53A |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \1F53A |
| 16進コード | 0x1F53A |
| HTMLコード | 🔺 |
| LaTeX | \text{UP-POINTINGREDTRIANGLE} |
| 記号 | 🔺 |
| URLエンコード(UTF-8パーセント) | %F0%9F%94%BA |
| 読み上げ名 / スクリーンリーダー | Up-pointing Red Triangle |
| UTF-8 | F0 9F 94 BA |
| UTF-16 | D83D DD3A |
| UTF-32 | 0001F53A |
1\documentclass{article}2\usepackage{pifont}3\text{UP-POINTINGREDTRIANGLE}4\end{document}以下の方法でほとんどの最新デバイスでup-pointing red triangle記号を入力できます:
Character Map or paste from this page, or insert via Character Map.
Edit → Emoji & Symbols, search "up-pointing red triangle", or use Unicode Hex Input with 1F53A.
Ctrl + Shift + U, type 1f53a, 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 geometric symbol support.
1span.up-pointing-red-triangle::before { content: "\1F53A"; }1<span>🔺</span>各プログラミング言語におけるUp-pointing Red Triangle記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uD83D\uDD3A' or String.fromCodePoint(0x1F53A) |
| Python | '\N{UP-POINTING RED TRIANGLE}' or chr(128314) |
| Rust | '\u{1F53A}' |
| C / C++ | UTF-8 source or wchar_t with U+1F53A |
| Go | string(rune(0x1F53A)) |
| Ruby | "\u{1F53A}" |