| 記号名 | Facsimile Sign |
| Unicodeバージョン | 4.0 |
| Unicode | U+213B |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \213B |
| 16進コード | 0x213B |
| HTMLコード | ℻ |
| LaTeX | \textfax |
| 記号 | ℻ |
| URLエンコード(UTF-8パーセント) | %E2%84%BB |
| 読み上げ名 / スクリーンリーダー | Facsimile Sign |
| UTF-8 | E2 84 BB |
| UTF-16 | 213B |
| UTF-32 | 0000213B |
1\documentclass{article}2\usepackage{pifont}3\textfax4\end{document}以下の方法でほとんどの最新デバイスでfacsimile sign記号を入力できます:
Alt + 8507 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "facsimile", or use Unicode Hex Input.
Ctrl + Shift + U, type 213b, then Enter (layout-dependent).
Paste from this page or create a text replacement.
Paste from this page or use extended symbols where available.
1span.fax::before { content: "\213B"; }1<span>℻</span>各プログラミング言語におけるFacsimile Sign記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u213B' or String.fromCodePoint(0x213B) |
| Python | '\N{FACSIMILE SIGN}' or chr(8507) |
| Rust | '\u{213B}' |
| C / C++ | UTF-8 source or wchar_t with U+213B |
| Go | string(rune(0x213B)) |
| Ruby | "\u213B" |