| 記号名 | Latin Small Letter N With Tilde |
| Unicodeバージョン | 1.1 |
| Unicode | U+00F1 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \00F1 |
| 16進コード | 0x00F1 |
| HTMLコード | ñ |
| LaTeX | \text{LATINSMALLLETTERNWITHTILDE} |
| 記号 | ñ |
| URLエンコード(UTF-8パーセント) | %C3%B1 |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter N With Tilde |
| UTF-8 | C3 B1 |
| UTF-16 | 00F1 |
| UTF-32 | 000000F1 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERNWITHTILDE}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter n with tilde記号を入力できます:
Alt + 241 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter n with tilde", or use Unicode Hex Input with 00F1.
Ctrl + Shift + U, type 00f1, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-n-with-tilde::before { content: "\00F1"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ñ</span>各プログラミング言語におけるLatin Small Letter N With Tilde記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u00F1' or String.fromCodePoint(241) |
| Python | '\N{LATIN SMALL LETTER N WITH TILDE}' or chr(241) |
| Rust | '\u{00F1}' |
| C / C++ | UTF-8 source or wchar_t with U+00F1 |
| Go | string(rune(0x00F1)) |
| Ruby | "\u{00F1}" |