| 記号名 | Per Ten Thousand Sign |
| Unicodeバージョン | 1.1 |
| Unicode | U+2031 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2031 |
| 16進コード | 0x2031 |
| HTMLコード | ‱ |
| LaTeX | \mathrm{‱} |
| 記号 | ‱ |
| URLエンコード(UTF-8パーセント) | %E2%80%B1 |
| 読み上げ名 / スクリーンリーダー | Per Ten Thousand Sign |
| UTF-8 | E2 80 B1 |
| UTF-16 | 2031 |
| UTF-32 | 00002031 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{‱}4\end{document}以下の方法でほとんどの最新デバイスでper ten thousand sign記号を入力できます:
Alt + 8241 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "per ten thousand sign", or use Unicode Hex Input with 2031.
Ctrl + Shift + U, type 2031, 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 unit symbol support.
1span.per-ten-thousand-sign::before { content: "\2031"; }1<span>‱</span>各プログラミング言語におけるPer Ten Thousand Sign記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2031' or String.fromCodePoint(0x2031) |
| Python | '\N{PER TEN THOUSAND SIGN}' or chr(8241) |
| Rust | '\u{2031}' |
| C / C++ | UTF-8 source or wchar_t with U+2031 |
| Go | string(rune(0x2031)) |
| Ruby | "\u2031" |