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