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