| 記号名 | Square Ps |
| Unicodeバージョン | 1.1 |
| Unicode | U+33B0 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \33B0 |
| 16進コード | 0x33B0 |
| HTMLコード | ㎰ |
| LaTeX | \text{PS} |
| 記号 | ㎰ |
| URLエンコード(UTF-8パーセント) | %E3%8E%B0 |
| 読み上げ名 / スクリーンリーダー | Square Ps |
| UTF-8 | E3 8E B0 |
| UTF-16 | 33B0 |
| UTF-32 | 000033B0 |
1\documentclass{article}2\usepackage{pifont}3\text{PS}4\end{document}以下の方法でほとんどの最新デバイスでsquare ps記号を入力できます:
Alt + 13232 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square ps", or use Unicode Hex Input with 33B0.
Ctrl + Shift + U, type 33b0, 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.square-ps::before { content: "\33B0"; }1<span>㎰</span>各プログラミング言語におけるSquare Ps記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u33B0' or String.fromCodePoint(0x33B0) |
| Python | '\N{SQUARE PS}' or chr(13232) |
| Rust | '\u{33B0}' |
| C / C++ | UTF-8 source or wchar_t with U+33B0 |
| Go | string(rune(0x33B0)) |
| Ruby | "\u33B0" |