| 記号名 | Maltese Cross |
| Unicodeバージョン | 1.1 |
| Unicode | U+2720 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2720 |
| 16進コード | 0x2720 |
| HTMLコード | ✠ |
| LaTeX | \text{MALTESECROSS} |
| 記号 | ✠ |
| URLエンコード(UTF-8パーセント) | %E2%9C%A0 |
| 読み上げ名 / スクリーンリーダー | Maltese Cross |
| UTF-8 | E2 9C A0 |
| UTF-16 | 2720 |
| UTF-32 | 00002720 |
1\documentclass{article}2\usepackage{pifont}3\text{MALTESECROSS}4\end{document}以下の方法でほとんどの最新デバイスでmaltese cross記号を入力できます:
Alt + 10016 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "maltese cross", or use Unicode Hex Input with 2720.
Ctrl + Shift + U, type 2720, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with religion symbol support.
1span.maltese-cross::before { content: "\2720"; }1<span>✠</span>各プログラミング言語におけるMaltese Cross記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2720' or String.fromCodePoint(10016) |
| Python | '\N{MALTESE CROSS}' or chr(10016) |
| Rust | '\u{2720}' |
| C / C++ | UTF-8 source or wchar_t with U+2720 |
| Go | string(rune(0x2720)) |
| Ruby | "\u{2720}" |