| 記号名 | Clockwise Integral |
| Unicodeバージョン | 1.1 |
| Unicode | U+2231 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2231 |
| 16進コード | 0x2231 |
| HTMLコード | ∱ |
| LaTeX | \cwint |
| 記号 | ∱ |
| URLエンコード(UTF-8パーセント) | %E2%88%B1 |
| 読み上げ名 / スクリーンリーダー | Clockwise Integral |
| UTF-8 | E2 88 B1 |
| UTF-16 | 2231 |
| UTF-32 | 00002231 |
1\documentclass{article}2\usepackage{pifont}3\cwint4\end{document}以下の方法でほとんどの最新デバイスでclockwise integral記号を入力できます:
Alt + 8753 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "clockwise integral", or use Unicode Hex Input.
Ctrl + Shift + U, type 2231, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended math symbol panels.
1span.clockwise-integral::before { content: "\2231"; }1<span>∱</span>各プログラミング言語におけるClockwise Integral記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2231' or String.fromCodePoint(0x2231) |
| Python | '\N{CLOCKWISE INTEGRAL}' or chr(8753) |
| Rust | '\u{2231}' |
| C / C++ | UTF-8 source or wchar_t with U+2231 |
| Go | string(rune(0x2231)) |
| Ruby | "\u2231" |