HTML reference

文字参照(character references)

概要

文字参照(character references)とは、本来表示されるべき文字の代わりに用いる手法、記述を指す。
ハードウェアやソフトウェアにより任意の文字・記号を直接入力することが出来ない場合や HTML タグなどに使われている直接記述することが好ましくない記号を記述する際に用いる。

文字参照は、「文字実体参照」と「数値文字参照」の2つの形式があり、「数値文字参照」には10進数と16進数の記述方法がある。

主に用いられる文字参照には以下のものがある。

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
    空白
""""引用符, ダブルクォート
&&&&
アンパサンド
<&lt;&#60;&#x003c;右大不等号, 小なり
>&gt;&#62;&#x003e;左大不等号, 大なり

文字参照の表示の可否はブラウザに依存し、該当する文字を表示できない場合は空白・点・四角(▢)・ベタ(■)・疑問符(?)などが表示される。



基本ラテン文字
C0 Controls and Basic Latin

Uppercase Latin alphabet

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
A
&#065;&#x0041;latin capital letter A
B
&#066;&#x0042;latin capital letter B
C
&#067;&#x0043;latin capital letter C
D
&#068;&#x0044;latin capital letter D
E
&#069;&#x0045;latin capital letter E
F
&#070;&#x0046;latin capital letter F
G
&#071;&#x0047;latin capital letter G
H
&#072;&#x0048;latin capital letter H
I
&#073;&#x0049;latin capital letter I
J
&#074;&#x004a;latin capital letter J
K
&#075;&#x004b;latin capital letter K
L
&#076;&#x004c;latin capital letter L
M
&#077;&#x004d;latin capital letter M
N
&#078;&#x004e;latin capital letter N
O
&#079;&#x004f;latin capital letter O
P
&#080;&#x0050;latin capital letter P
Q
&#081;&#x0051;latin capital letter Q
R
&#082;&#x0052;latin capital letter R
S
&#083;&#x0053;latin capital letter S
T
&#084;&#x0054;latin capital letter T
U
&#085;&#x0055;latin capital letter U
V
&#086;&#x0056;latin capital letter V
W
&#087;&#x0057;latin capital letter W
X
&#088;&#x0058;latin capital letter X
Y
&#089;&#x0059;latin capital letter Y
Z
&#090;&#x005a;latin capital letter Z

Lowercase Latin alphabet

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
a
&#097;&#x0061;latin small letter a
b
&#098;&#x0062;latin small letter b
c
&#099;&#x0063;latin small letter c
d
&#100;&#x0064;latin small letter d
e
&#101;&#x0065;latin small letter e
f
&#102;&#x0066;latin small letter f
g
&#103;&#x0067;latin small letter g
h
&#104;&#x0068;latin small letter h
i
&#105;&#x0069;latin small letter i
j
&#106;&#x006a;latin small letter j
k
&#107;&#x006b;latin small letter k
l
&#108;&#x006c;latin small letter l
m
&#109;&#x006d;latin small letter m
n
&#110;&#x006e;latin small letter n
o
&#111;&#x006f;latin small letter o
p
&#112;&#x0070;latin small letter p
q
&#113;&#x0071;latin small letter q
r
&#114;&#x0072;latin small letter r
s
&#115;&#x0073;latin small letter s
t
&#116;&#x0074;latin small letter t
u
&#117;&#x0075;latin small letter u
v
&#118;&#x0076;latin small letter v
w
&#119;&#x0077;latin small letter w
x
&#120;&#x0078;latin small letter x
y
&#121;&#x0079;latin small letter y
z
&#122;&#x007a;latin small letter z

ASCII digits

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
0
&#48;&#x0030;digit zero(0)
1
&#49;&#x0031;digit one(1)
2
&#50;&#x0032;digit two(2)
3
&#51;&#x0033;digit three(3)
4
&#52;&#x0034;digit four(4)
5
&#53;&#x0035;digit five(5)
6
&#54;&#x0036;digit six(6)
7
&#55;&#x0037;digit seven(7)
8
&#56;&#x0038;digit eight(8)
9
&#57;&#x0039;digit nine(9)

ASCII punctuation and symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明


(32)(20)SP, space(スペース)
!
&#33;&#x0021;感嘆符
"&quot;&#34;&#x0022;引用符, ダブルクォート
#
&#35;&#x0023;number sign, #
$
&#36;&#x0024;ドル記号
%
&#37;&#x0025;百分率, パーセント
&&amp;&#38;&#x0026;
アンパサンド
'
&#39;&#x0027;アポストロフィ
(
&#40;&#x0028;左(丸)括弧
)
&#41;&#x0029;右(丸)括弧
*
&#42;&#x002a;アスタリスク
+
&#43;&#x002b;加算記号
,
&#44;&#x002c;コンマ
-
&#45;&#x002d;ハイフン
.
&#46;&#x002e;full stop, period
/
&#47;&#x002f;固相線, 斜線
:
&#58;&#x003a;colon
;
&#59;&#x003b;semicolon
<&lt;&#60;&#x003c;右大不等号, 小なり
=
&#61;&#x003d;equals sign
>&gt;&#62;&#x003e;左大不等号, 大なり
?
&#63;&#x003f;疑問符, interrogation point
@
&#64;&#x0040;commercial at, at sign
[
&#91;&#x005b;left square bracket
\
&#92;&#x005c;reverse solidus, backslash
]
&#93;&#x005d;right square bracket
^
&#94;&#x005e;サーカムフレックス符号
_
&#95;&#x005f;アンダーバー
`
&#96;&#x0060;グレーブ符号
{
&#123;&#x007b;left curly bracket, left brace
|
&#124;&#x007c;縦線
}
&#125;&#x007d;right curly bracket, right brace
~
&#126;&#x007e;チルダ

C0 controls

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明


(00)(00)NULL, '\0'


(01)(01)SOH, start of heading(ヘッダ開始)


(02)(02)STX, start of text(テキスト開始)


(03)(03)ETX, end of text(テキスト終了)


(04)(04)EOT, end of transmission(転送終了)


(05)(05)ENQ, enquiry(問い合わせ)


(06)(06)ACK, acknowledge(肯定応答)


(07)(07)BEL, bell(ベル), '\a'


(08)(08)BS, backspace(バックスペース), '\b'


(09)(09)HT, horizontal tabulation(水平タブ), '\t'


(10)(0A)LF, linefeed(改行), '\n'


(11)(0B)VT, vertical tabulation(垂直タブ), '\v'


(12)(0C)FF, form feed(改ページ), '\f'


(13)(0D)CR, carriage return(復帰), '\r'


(14)(0E)SO, shift out(シフトアウト)


(15)(0F)SI, shift in(シフトイン)


(16)(10)DLE, data link escape(伝送制御拡張)


(17)(11)DC1, device control 1(装置制御1)


(18)(12)DC2, device control 2(装置制御2)


(19)(13)DC3, device control 3(装置制御3)


(20)(14)DC4, device control 4(装置制御4)


(21)(15)NAK, negative acknowledge(否定応答)


(22)(16)SYN, synchronous idle(同期)


(23)(17)ETB, end of transmission block(転送ブロック終了)


(24)(18)CAN, cancel(キャンセル)


(25)(19)EM, end of medium(メディア終了)


(26)(1A)SUB, substitute(置換)


(27)(1B)ESC, escape(エスケープ)


(28)(1C)FS, file separator(ファイル区切り)


(29)(1D)GS, group separator(グループ区切り)


(30)(1E)RS, record separator(レコード区切り)


(31)(1F)US, unit separator(ユニット区切り)


(127)(7F)DEL, delete


ラテン1補助
C1 Controls and Latin-1 Supplement

Letters

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
À&Agrave;&#192;&#x00c0;グレーブ付き大文字A
Á&Aacute;&#193;&#x00c1;アキュート付き大文字A
Â&Acirc;&#194;&#x00c2;サーカムフレックス付き大文字A
Ã&Atilde;&#195;&#x00c3;チルダ付き大文字A
Ä&Auml;&#196;&#x00c4;ウムラウト付き大文字A
Å&Aring;&#197;&#x00c5;リング付き大文字A
Æ&AElig;&#198;&#x00c6;大文字AE合字
Ç&Ccedil;&#199;&#x00c7;セディラ付き大文字C
È&Egrave;&#200;&#x00c8;latin capital letter E with grave
É&Eacute;&#201;&#x00c9;latin capital letter E with acute
Ê&Ecirc;&#202;&#x00ca;latin capital letter E with circumflex
Ë&Euml;&#203;&#x00cb;latin capital letter E with diaeresis
Ì&Igrave;&#204;&#x00cc;latin capital letter I with grave
Í&Iacute;&#205;&#x00cd;latin capital letter I with acute
Î&Icirc;&#206;&#x00ce;latin capital letter I with circumflex
Ï&Iuml;&#207;&#x00cf;latin capital letter I with diaeresis
Ð&ETH;&#208;&#x00d0;大文字ETH
Ñ&Ntilde;&#209;&#x00d1;latin capital letter N with tilde
Ò&Ograve;&#210;&#x00d2;latin capital letter O with grave
Ó&Oacute;&#211;&#x00d3;latin capital letter O with acute
Ô&Ocirc;&#212;&#x00d4;latin capital letter O with circumflex
Õ&Otilde;&#213;&#x00d5;latin capital letter O with tilde
Ö&Ouml;&#214;&#x00d6;latin capital letter O with diaeresis
Ø&Oslash;&#216;&#x00d8;latin capital letter O with stroke, Oスラッシュ
Ù&Ugrave;&#217;&#x00d9;latin capital letter U with grave
Ú&Uacute;&#218;&#x00Da;latin capital letter U with acute
Û&Ucirc;&#219;&#x00Db;latin capital letter U with circumflex
Ü&Uuml;&#220;&#x00Dc;latin capital letter U with diaeresis
Ý&Yacute;&#221;&#x00Dd;latin capital letter Y with acute
Þ&THORN;&#222;&#x00De;大文字THORN
ß&szlig;&#223;&#x00Df;latin small letter sharp s, エスツェット
à&agrave;&#224;&#x00e0;グレーブ付き小文字a
á&aacute;&#225;&#x00e1;アキュート付き小文字a
â&acirc;&#226;&#x00Ew2;サーカムフレックス付き小文字a
ã&atilde;&#227;&#x00e3;チルダ付き小文字a
ä&auml;&#228;&#x00e4;ウムラウト付き小文字a
å&aring;&#229;&#x00e5;リング付き小文字a
æ&aelig;&#230;&#x00e6;小文字ae合字
ç&ccedil;&#231;&#x00e7;セディラ付き小文字c
è&egrave;&#232;&#x00e8;latin small letter e with grave
é&eacute;&#233;&#x00e9;latin small letter e with acute
ê&ecirc;&#234;&#x00ea;latin small letter e with circumflex
ë&euml;&#235;&#x00eb;latin small letter e with diaeresis
ì&igrave;&#236;&#x00ec;latin small letter i with grave
í&iacute;&#237;&#x00ed;latin small letter i with acute
î&icirc;&#238;&#x00ee;latin small letter i with circumflex
ï&iuml;&#239;&#x00ef;latin small letter i with diaeresis
ð&eth;&#240;&#x00f0;小文字eth
ñ&ntilde;&#241;&#x00f1;latin small letter n with tilde
ò&ograve;&#242;&#x00f2;latin small letter o with grave
ó&oacute;&#243;&#x00f3;latin small letter o with acute
ô&ocirc;&#244;&#x00f4;latin small letter o with circumflex
õ&otilde;&#245;&#x00f5;latin small letter o with tilde
ö&ouml;&#246;&#x00f6;latin small letter o with diaeresis
ø&oslash;&#248;&#x00f8;latin small letter o with stroke, o slash
ù&ugrave;&#249;&#x00f9;latin small letter u with grave
ú&uacute;&#250;&#x00fa;latin small letter u with acute
û&ucirc;&#251;&#x00fb;latin small letter u with circumflex
ü&uuml;&#252;&#x00fc;latin small letter u with diaeresis
ý&yacute;&#253;&#x00fd;latin small letter y with acute
þ&thorn;&#254;&#x00fe;latin small letter thorn(小文字thorn)
ÿ&yuml;&#255;&#x00ff;latin small letter y with diaeresis

Latin-1 punctuation and symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
 &nbsp;&#160;&#x00a0;空白
¡&iexcl;&#161;&#x00a1;逆感嘆符
¢&cent;&#162;&#x00a2;セント記号, ¢
£&pound;&#163;&#x00a3;ポンド記号, £
¤&curren;&#164;&#x00a4;通貨記号
¥&yen;&#165;&#x00a5;円, ¥
¦&brvbar;&#166;&#x00a6;破線垂直バー, parted rule in typography
§&sect;&#167;&#x00a7;節記号, セクション記号
¨&uml;&#168;&#x00a8;文節記号, ウムラウト符号
©&copy;&#169;&#x00a9;著作権記号
ª&ordf;&#170;&#x00aa;feminine ordinal indicator
«&laquo;&#171;&#x00ab;左角引用符
¬&not;&#172;&#x00ac;否定記号
­&shy;&#173;&#x00ad;ソフトハイフン
®&reg;&#174;&#x00ae;登録商標
¯&macr;&#175;&#x00af;長音符号
°&deg;&#176;&#x00b0;度記号, リング符号
±&plusmn;&#177;&#x00b1;プラスマイナス
²&sup2;&#178;&#x00b2;上付き2, 二乗
³&sup3;&#179;&#x00b3;上付き3, 三乗
´&acute;&#180;&#x00b4;アキュート符号
µ&micro;&#181;&#x00b5;マイクロ記号
&para;&#182;&#x00b6;段落記号
·&middot;&#183;&#x00b7;middle dot, Georgian comma
¸&cedil;&#184;&#x00b8;セディラ
¹&sup1;&#185;&#x00b9;上付き1
º&ordm;&#186;&#x00ba;masculine ordinal indicator
»&raquo;&#187;&#x00bb;右角引用符
¼&frac14;&#188;&#x00bc;四分の一
½&frac12;&#189;&#x00bd;二分の一
¾&frac34;&#190;&#x00be;四分の三
¿&iquest;&#191;&#x00bf;逆疑問符

Mathematical operator

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
×&times;&#215;&#x00d7;乗算記号, z notation Cartesian product
÷&divide;&#247;&#x00f7;除算記号

C1 ccntrols

(省略)


ラテン文字拡張A
Latin Extended-A

European Latin

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
Ā
&#256;&#x0100;latin capital letter A with macron
ā
&#257;&#x0101;latin small letter A with macron
Ă
&#258;&#x0102;latin capital letter A with breve
ă
&#259;&#x0103;latin small letter A with breve
Ą
&#260;&#x0104;latin capital letter A with ogonek
ą
&#261;&#x0105;latin small letter A with ogonek
Ć
&#262;&#x0106;latin capital letter C with acute
ć
&#263;&#x0107;latin small letter C with acute
Ĉ
&#264;&#x0108;latin capital letter C with circumflex
ĉ
&#265;&#x0109;latin small letter C with circumflex
Ċ
&#266;&#x010a;latin capital letter C with dot above
ċ
&#267;&#x010b;latin small letter C with dot above
Č
&#268;&#x010c;latin capital letter C with caron
č
&#269;&#x010d;latin small letter C with caron
Ď
&#270;&#x010e;latin capital letter D with caron
ď
&#271;&#x010f;latin small letter D with caron
Đ
&#272;&#x0110;latin capital letter D with stroke
đ
&#273;&#x0111;latin small letter D with stroke
Ē
&#274;&#x0112;latin capital letter E with macron
ē
&#275;&#x0113;latin small letter E with macron
Ĕ
&#276;&#x0114;latin capital letter E with breve
ĕ
&#277;&#x0115;latin small letter E with breve
Ė
&#278;&#x0116;latin capital letter E with dot above
ė
&#279;&#x0117;latin small letter E with dot above
Ę
&#280;&#x0118;latin capital letter E with ogonek
ę
&#281;&#x0119;latin small letter E with ogonek
Ě
&#282;&#x011a;latin capital letter E with caron
ě
&#283;&#x011b;latin small letter E with caron
Ĝ
&#284;&#x011c;latin capital letter G with circumflex
ĝ
&#285;&#x011d;latin small letter G with circumflex
Ğ
&#286;&#x011e;latin capital letter G with breve
ğ
&#287;&#x011f;latin small letter G with breve
Ġ
&#288;&#x0120;latin capital letter G with dot above
ġ
&#289;&#x0121;latin small letter G with dot above
Ģ
&#290;&#x0122;latin capital letter G with cedilla
ģ
&#291;&#x0123;latin small letter G with cedilla
Ĥ
&#292;&#x0124;latin capital letter H with circumflex
ĥ
&#293;&#x0125;latin small letter H with circumflex
Ħ
&#294;&#x0126;latin capital letter H with stroke
ħ
&#295;&#x0127;latin small letter H with stroke
Ĩ
&#296;&#x0128;latin capital letter I with tilde
ĩ
&#297;&#x0129;latin small letter I with tilde
Ī
&#298;&#x012a;latin capital letter I with macron
ī
&#299;&#x012b;latin small letter I with macron
Ĭ
&#300;&#x012c;latin capital letter I with breve
ĭ
&#301;&#x012d;latin small letter I with macron
Į
&#302;&#x012e;latin capital letter I with ogonek
į
&#303;&#x012f;latin small letter I with ogonek
İ
&#304;&#x0130;latin capital letter I with dot above, I dot
ı
&#305;&#x0131;latin capital letter dotless I
IJ
&#306;&#x0132;latin capital ligature IJ
ij
&#307;&#x0133;latin small ligature IJ
Ĵ
&#308;&#x0134;latin capital letter J with circumflex
ĵ
&#309;&#x0135;latin small letter J with circumflex
Ķ
&#310;&#x0136;latin capital letter K with cedilla
ķ
&#311;&#x0137;latin small letter K with cedilla
ĸ
&#312;&#x0138;latin small letter Kra
Ĺ
&#313;&#x0139;latin capital letter L with acute
ĺ
&#314;&#x013a;latin small letter L with acute
Ļ
&#315;&#x013b;latin capital letter L with cedilla
ļ
&#316;&#x013c;latin small letter L with cedilla
Ľ
&#317;&#x013d;latin capital letter L with caron
ľ
&#318;&#x013e;latin small letter L with caron
Ŀ
&#319;&#x013f;latin capital letter L with middle dot
ŀ
&#320;&#x0140;latin small letter L with middle dot
Ł
&#321;&#x0141;latin capital letter L with stroke
ł
&#322;&#x0142latin small letter L with stroke
Ń
&#323;&#x0143;latin capital letter N with acute
ń
&#324;&#x0144;latin small letter N with acute
Ņ
&#325;&#x0145;latin capital letter N with cedilla
ņ
&#326;&#x0146;latin small letter N with cedilla
Ň
&#327;&#x0147;latin capital letter N with caron
ň
&#328;&#x0148;latin small letter N with caron
ʼn
&#329;&#x0149;latin small letter N preceded by apostrophe, latin small letter apostrophe N
Ŋ
&#330;&#x014a;latin capital letter Eng
ŋ
&#331;&#x014b;latin small letter Eng
Ō
&#332;&#x014c;latin capital letter O with macron
ō
&#333;&#x014d;latin small letter O with macron
Ŏ
&#334;&#x014e;latin capital letter O with breve
ŏ
&#335;&#x014f;latin small letter O with breve
Ő
&#336;&#x0150;latin capital letter O with double acute
ő
&#337;&#x0151;latin small letter O with double acute
Œ&OElig;&#338;&#x0152;latin capital ligature OE
œ&oelig;&#339;&#x0153;latin small ligature oe, ethel (from Old English eðel)
Ŕ
&#340;&#x0154;latin capital letter R with acute
ŕ
&#341;&#x0155;latin small letter R with acute
Ŗ
&#342;&#x0156;latin capital letter R with cedilla
ŗ
&#343;&#x0157;latin small letter R with cedilla
Ř
&#344;&#x0158;latin capital letter R with caron
ř
&#345;&#x0159;latin small letter R with caron
Ś
&#346;&#x015a;latin capital letter S with acute
ś
&#347;&#x015b;latin small letter S with acute
Ŝ
&#348;&#x015c;latin capital letter S with circumflex
ŝ
&#349;&#x015d;latin small letter S with circumflex
Ş
&#350;&#x015e;latin capital letter S with cedilla
ş
&#351;&#x015f;latin small letter S with cedilla
Š
&#352;&#x0160;latin capital letter S with caron
š
&#353;&#x0161;latin small letter S with caron
Ţ
&#354;&#x0162;latin capital letter T with cedilla
ţ
&#355;&#x0163;latin small letter T with cedilla
Ť
&#356;&#x0164;latin capital letter T with caron
ť
&#357;&#x0165;latin small letter T with caron
Ŧ
&#358;&#x0166;latin capital letter T with stroke
ŧ
&#359;&#x0167;latin small letter T with stroke
Ũ
&#360;&#x0168;latin capital letter U with tilde
ũ
&#361;&#x0169;latin small letter u with tilde
Ū
&#362;&#x016a;latin capital letter U with macron
ū
&#363;&#x016b;latin small letter U with macron
Ŭ
&#364;&#x016c;latin capital letter U with breve
ŭ
&#365;&#x016d;latin small letter U with breve
Ů
&#366;&#x016e;latin capital letter U with ring above
ů
&#367;&#x016f;latin small letter U with ring above
Ű
&#368;&#x0170;latin capital letter U with double acute
ű
&#369;&#x0171;latin small letter U with double acute
Ų
&#370;&#x0172;latin capital letter U with ogonek
ų
&#371;&#x0173;latin small letter U with ogonek
Ŵ
&#372;&#x0174;latin capital letter W with circumflex
ŵ
&#373;&#x0175;latin small letter W with circumflex
Ŷ
&#374;&#x0176;latin capital letter Y with circumflex
ŷ
&#375;&#x0177;latin small letter Y with circumflex
Ÿ
&#376;&#x0178;latin capital letter Y with diaeresis
Ź
&#377;&#x0179;latin capital letter Z with acute
ź
&#378;&#x017a;latin small letter Z with acute
Ż
&#379;&#x017b;latin capital letter Z with dot above
ż
&#380;&#x017c;latin small letter Z with dot above
Ž
&#381;&#x017d;latin capital letter Z with caron
ž
&#382;&#x017e;latin small letter Z with caron
ſ
&#383;&#x017f;latin small letter long S


ラテン文字拡張B
Latin Extended-B

Non-European and historic Latin

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
ƀ
&#384;&#x0180;打ち消し線付き小文字b
Ɓ
&#385;&#x0181;フック付き大文字B
Ƃ
&#386;&#x0182;上線付き大文字B
ƃ
&#387;&#x0183;上線付き小文字b
Ƅ
&#388;&#x0184;latin capital letter tone six
ƅ
&#389;&#x0185;latin small letter tone six
Ɔ
&#390;&#x0186;latin capital letter open O
Ƈ
&#391;&#x0187;フック付き大文字C
ƈ
&#392;&#x0188;フック付き小文字c
Ɖ
&#393;&#x0189;latin capital letter africand D
Ɗ
&#394;&#x018a;フック付き大文字D
Ƌ
&#395;&#x018b;上線付き大文字D
ƌ
&#396;&#x018c;上線付き小文字d
ƍ
&#397;&#x018d;latin small letter turned delta
Ǝ
&#398;&#x018e;latin capital letter reversed E
Ə
&#399;&#x018f;大文字シュワー記号
Ɛ
&#400;&#x0190;latin capital letter open E, エプシロン
Ƒ
&#401;&#x0191;フック付き大文字F
ƒ&fnof;&#402;&#x0192;フック付き小文字f, 筆記体f, 機能記号
Ɠ
&#403;&#x0193;フック付き大文字G
Ɣ
&#404;&#x0194;大文字ガンマ
ƕ
&#405;&#x0195;latin small letter hv
Ơ
&#416;&#x01a0;latin capital letter O with horn
ơ
&#417;&#x01a1;latin small letter o with horn
Ư
&#431;&#x01af;latin capital letter U with horn
ư
&#432;&#x01b0;latin small letter u with horn

Phonetic and historic letters

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
ǝ
&#477;&#x01dd;latin small letter turned e
Ǻ
&#506;&#x01fa;latin capital letter A with ring above and cute
ǻ
&#507;&#x01fb;latin small letter A with ring above and cute
Ǽ
&#508;&#x01fc;latin capital letter AE with acute
ǽ
&#509;&#x01fd;latin small letter AE with acute
Ǿ
&#510;&#x01fe;latin capital letter O with stroke and acute
ǿ
&#511;&#x01ff;latin small letter O with stroke and acute


前進を伴う修飾文字
Spacing Modifier Letters

Miscellaneous phonetic modifiers

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
ʹ
&#697;&#x02b9;modifier letter prime
ʺ
&#698;&#x02ba;modifier letter double prime
ʻ
&#699;&#x02bb;modifier letter turned comma
ʼ
&#700;&#x02bc;modifier letter apostrophe
ʽ
&#701;&#x02bd;modifier letter reversed comma
ʾ
&#702;&#x02be;modifier letter right half ring
ʿ
&#703;&#x02bf;modifier letter left half ring
ˀ
&#704;&#x02c0;modifier letter glottal stop
ˁ
&#705;&#x02c1;modifier letter reversed glottal stop
˂
&#706;&#x02c2;modifier letter left arrowhead
˃
&#707;&#x02c3;modifier letter right arrowhead
˄
&#708;&#x02c4;modifier letter up arrowhead
˅
&#709;&#x02c5;modifier letter down arrowhead
ˆ&circ;&#710;&#x02c6;modifier letter circumflex accent
ˇ
&#711;&#x02c7;caron, hacek
ˈ
&#712;&#x02c8;modifier letter vertical line
ˉ
&#713;&#x02c9;modifier letter macron
ˊ
&#714;&#x02ca;modifier letter acute accent
ˋ
&#715;&#x02cb;modifier letter grave accent
ˌ
&#716;&#x02cc;modifier letter low vertical line
ˍ
&#717;&#x02cd;modifier letter low macron
ˎ
&#718;&#x02ce;modifier letter low grave accent
ˏ
&#719;&#x02cf;modifier letter low acute accent
ː
&#720;&#x02d0;modifier letter triangular colon
ˑ
&#721;&#x02d1;modifier letter half triangular colon
˒
&#722;&#x02d2;modifier letter centred right half ring
˓
&#723;&#x02d3;modifier letter centred left half ring
˔
&#724;&#x02d4;modifier letter up tack
˕
&#725;&#x02d5;modifier letter down tack
˖
&#726;&#x02d6;modifier letter plus sign
˗
&#727;&#x02d7;modifier letter minus sign

Spacing clones of diacritics

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
˘
&#728;&#x02d8;breve
˙
&#729;&#x02d9;dot above
˚
&#730;&#x02da;ring above
˛
&#731;&#x02db;ogonek
˜&tilde;&#732;&#x02dc;small tilde
˝
&#733;&#x02dd;double acute accent


ギリシャ文字及びコプト文字
Greek and Coptic

Letters

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
Ά
&#902;&#x0386;greek capital letter Alpha with tonos
Έ
&#904;&#x0388;greek capital letter Epsilon with tonos
Ή
&#905;&#x0389;greek capital letter Eta with tonos
Ί
&#906;&#x038a;greek capital letter Iota with tonos
Ό
&#908;&#x038c;greek capital letter Omicron with tonos
Ύ
&#910;&#x038e;greek capital letter Upsilon with tonos
Ώ
&#911;&#x038f;greek capital letter Omega with tonos
ΐ
&#912;&#x0390;greek capital letter Iota with dialytika and tonos
Α&Alpha;&#913;&#x0391;greek capital letter alpha(大文字アルファ, Α)
Β&Beta;&#914;&#x0392;greek capital letter beta(大文字ベータ, Β)
Γ&Gamma;&#915;&#x0393;greek capital letter Gamma(大文字ガンマ, Γ)
Δ&Delta;&#916;&#x0394;greek capital letter Delta(大文字デルタ, Δ)
Ε&Epsilon;&#917;&#x0395;greek capital letter Epsilon(大文字イプシロン, Ε)
Ζ&Zeta;&#918;&#x0396;greek capital letter Zeta(大文字ゼータ, Ζ)
Η&Eta;&#919;&#x0397;greek capital letter Eta(大文字エータ, Η)
Θ&Theta;&#920;&#x0398;greek capital letter Theta(大文字シータ, Θ)
Ι&Iota;&#921;&#x0399;greek capital letter Iota(大文字イオタ, Ι)
Κ&Kappa;&#922;&#x039a;greek capital letter Kappa(大文字カッパ, Κ)
Λ&Lambda;&#923;&#x039b;greek capital letter Lamda(大文字ラムダ, Λ)
Μ&Mu;&#924;&#x039c;greek capital letter Mu(大文字ミュー, Μ)
Ν&Nu;&#925;&#x039d;greek capital letter Nu(大文字ニュー, Ν)
Ξ&Xi;&#926;&#x039e;greek capital letter Xi(大文字グザイ, Ξ)
Ο&Omicron;&#927;&#x039f;greek capital letter Omicron(大文字オミクロン, Ο)
Π&Pi;&#928;&#x03a0;greek capital letter Pi(大文字パイ, Π)
Ρ&Rho;&#929;&#x03a1;greek capital letter Rho(大文字ロー, Ρ)
Σ&Sigma;&#931;&#x03a3;greek capital letter Sigma(大文字シグマ, Σ)
Τ&Tau;&#932;&#x03a4;greek capital letter Tau(大文字タウ, Τ)
Υ&Upsilon;&#933;&#x03a5;greek capital letter Upsilon(大文字ウプシロン, Υ)
Φ&Phi;&#934;&#x03a6;greek capital letter Phi(大文字ファイ, Φ)
Χ&Chi;&#935;&#x03a7;greek capital letter Chi(大文字カイ, Χ)
Ψ&Psi;&#936;&#x03a8;greek capital letter Psi(大文字プサイ, Ψ)
Ω&Omega;&#937;&#x03a9;greek capital letter Omega(大文字オメガ, Ω)
Ϊ
&#938;&#x03aa;greek capital letter Iota with dialytika
Ϋ
&#939;&#x03ab;greek capital letter Upsilon with dialytika
ά
&#940;&#x03ac;greek small letter Alpha with tonos
έ
&#941;&#x03ad;greek small letter Epsilon with tonos
ή
&#942;&#x03ae;greek small letter Eta with tonos
ί
&#943;&#x03af;greek small letter Iota with tonos
ΰ
&#944;&#x03b0;greek small letter Upsilon with diarytika and tonos
α&alpha;&#945;&#x03b1;greek small letter Alpha(小文字アルファ, α)
β&beta;&#946;&#x03b2;greek small letter Beta(小文字ベータ, β)
γ&gamma;&#947;&#x03b3;greek small letter Gamma(小文字ガンマ, γ)
δ&delta;&#948;&#x03b4;greek small letter Delta(小文字デルタ, δ)
ε&epsilon;&#949;&#x03b5;greek small letter Epsilon(小文字イプシロン, ε)
ζ&zeta;&#950;&#x03b6;greek small letter Zeta(小文字ゼータ, ζ)
η&eta;&#951;&#x03b7;greek small letter Eta(小文字エータ, η)
θ&theta;&#952;&#x03b8;greek small letter Theta(小文字シータ, θ)
ι&iota;&#953;&#x03b9;greek small letter Iota(小文字イオタ, ι)
κ&kappa;&#954;&#x03ba;greek small letter Kappa(小文字カッパ, κ)
λ&lambda;&#955;&#x03bb;greek small letter Lamda, lambda(小文字ラムダ, λ)
μ&mu;&#956;&#x03bc;greek small letter Mu(小文字ミュー, μ)
ν&nu;&#957;&#x03bd;greek small letter Nu(小文字ニュー, ν)
ξ&xi;&#958;&#x03be;greek small letter Xi(小文字グザイ, ξ)
ο&omicron;&#959;&#x03bf;greek small letter Omicron(小文字オミクロン, ο)
π&pi;&#960;&#x03c0;greek small letter Pi(小文字パイ, π)
ρ&rho;&#961;&#x03c1;greek small letter Rho(小文字ロー, ρ)
ς
&#962;&#x03c2;greek small letter final Sigma, stigma (the Modern Greek name for this letterform)
σ&sigma;&#963;&#x03c3;greek small letter Sigma(小文字シグマ, σ)
τ&tau;&#964;&#x03c4;greek small letter Tau(小文字タウ, τ)
υ&upsilon;&#965;&#x03c5;greek small letter Upsilon(小文字ウプシロン, υ)
φ&phi;&#966;&#x03c6;greek small letter Phi(小文字ファイ, φ)
χ&chi;&#967;&#x03c7;greek small letter Chi(小文字カイ, χ)
ψ&psi;&#968;&#x03c8;greek small letter Psi(小文字プサイ, ψ)
ω&omega;&#969;&#x03c9;greek small letter omega(小文字オメガ, ω)
ϊ
&#970;&#x03ca;greek small letter Iota with Dialytika
ϋ
&#971;&#x03cb;greek small letter Upsilon with Dialytika
ό
&#972;&#x03cc;greek small letter Omicron with tonos
ύ
&#973;&#x03cd;greek small letter Upsilon with tonos
ώ
&#974;&#x03ce;greek small letter Omega with tonos
ϳ
&#1011;&#x03f3;greek letter Yot

Variant letterforms and symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
ϐ
&#976;&#x03d0;greek Beta symbol
ϑ&thetasym;&#977;&#x03d1;greek small letter Theta symbol
ϒ&upsih;&#978;&#x03d2;greek Upsilon with hook symbol
ϓ
&#979;&#x03d3;greek Upsilon with acute and hook symbol
ϔ
&#980;&#x03d4;greek Upsilon with diaeresis and hook symbol
ϕ
&#981;&#x03d5;greek Phi symbol
ϖ&piv;&#982;&#x03d6;greek pi symbol
ϗ
&#983;&#x03d7;greek Kai symbol
ϰ
&#1008;&#x03f0;greek Kappa symbol
ϱ
&#1009;&#x03f1;greek Rho symbol, tailed rho
ϲ
&#1010;&#x03f2;greek lunate Sigma symbol, greek small letter lunate sigma
ϴ
&#1012;&#x03f4;greek capital Theta symbol
ϵ
&#1013;&#x03f5;greek lunate Epsilon symbol, straight epsilon
϶
&#1014;&#x03f6;greek reversed lunate Epsilon symbol, reversed straight epsilon
Ϲ
&#1017;&#x03f9;greek capital lunate Sigma symbol


ヘブライ文字
Hebrew

Based on ISO 8859-8

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考
א
&#1488;&#x05d0;hebrew letter Alef, Aleph
ב
&#1489;&#x05d1;hebrew letter Bet
ג
&#1490;&#x05d2;hebrew letter Gimel
ד
&#1491;&#x05d3;hebrew letter Dalet
ה
&#1492;&#x05d4;hebrew letter He
ו
&#1493;&#x05d5;hebrew letter Vav
ז
&#1494;&#x05d6;hebrew letter Zayin
ח
&#1495;&#x05d7;hebrew letter Het
ט
&#1496;&#x05d8;hebrew letter Tet
י
&#1497;&#x05d9;hebrew letter Yod
ך
&#1498;&#x05da;hebrew letter Final Kaf
כ
&#1499;&#x05db;hebrew letter Kaf
ל
&#1450;&#x05dc;hebrew letter Lamed
ם
&#1451;&#x05dd;hebrew letter Final Mem
מ
&#1452;&#x05de;hebrew letter Mem
ן
&#1453;&#x05df;hebrew letter Final Nun
נ
&#1454;&#x05e0;hebrew letter Nun
ס
&#1455;&#x05e1;hebrew letter Samekh
ע
&#1456;&#x05e2;hebrew letter Ayin
ף
&#1457;&#x05e3;hebrew letter Final Pe
פ
&#1458;&#x05e4;hebrew letter Pe
ץ
&#1459;&#x05e5;hebrew letter Final Tsadi
צ
&#1460;&#x05e6;hebrew letter Tsadi
ק
&#1461;&#x05e7;hebrew letter Qof
ר
&#1462;&#x05e8;hebrew letter Resh
ש
&#1463;&#x05e9;hebrew letter Shin
ת
&#1464;&#x05ea;hebrew letter Tav


アラビア文字
Arabic

Based on ISO 8859-6

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考
ء
&#1569;&#x0621;arabic letter Hamza
آ
&#1570;&#x0622;arabic letter Alef with Madda Above
أ
&#1571;&#x0623;arabic letter Alef with Hamza Above
ؤ
&#1572;&#x0624;arabic letter Waw with Hamza Above
إ
&#1573;&#x0625;arabic letter Alef with Hamza below
ئ
&#1574;&#x0626;arabic letter Yeh with Hamza Above
ا
&#1575;&#x0627;arabic letter Alef
ب
&#1576;&#x0628;arabic letter Beh
ة
&#1577;&#x0629;arabic letter Teh Marbuta
ت
&#1578;&#x062a;arabic letter Teh
ث
&#1579;&#x062b;arabic letter Theh
ج
&#1580;&#x062c;arabic letter Jeem
ح
&#1581;&#x062d;arabic letter Hah
خ
&#1582;&#x062e;arabic letter Khah
د
&#1583;&#x062f;arabic letter Dal
ذ
&#1584;&#x0630;arabic letter Thal
ر
&#1585;&#x0631;arabic letter Reh
ز
&#1586;&#x0632;arabic letter Zain
س
&#1587;&#x0633;arabic letter Seen
ش
&#1588;&#x0634;arabic letter Sheen
ص
&#1589;&#x0635;arabic letter Sad
ض
&#1590;&#x0636;arabic letter Dad
ط
&#1591;&#x0637;arabic letter Tah
ظ
&#1592;&#x0638;arabic letter Zah
ع
&#1593;&#x0639;arabic letter Ain
غ
&#1594;&#x063a;arabic letter Ghain
ـ
&#1600;&#x0640;arabic tatweel, kashida
ف
&#1601;&#x0641;arabic letter Feh
ق
&#1602;&#x0642;arabic letter Qaf
ك
&#1603;&#x0643;arabic letter Kaf
ل
&#1604;&#x0644;arabic letter Lam
م
&#1605;&#x0645;arabic letter Meem
ن
&#1606;&#x0646;arabic letter Noon
ه
&#1607;&#x0647;arabic letter Heh
و
&#1608;&#x0648;arabic letter Waw
ى
&#1609;&#x0649;arabic letter Alef Maksura
ي
&#160a;&#x064a;arabic letter Yeh

Arabic-Indic digits

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考
٠
&#1632;&#x0660;arabic-indic digit zero
١
&#1633;&#x0661;arabic-indic digit zero
٢
&#1634;&#x0662;arabic-indic digit one
٣
&#1635;&#x0663;arabic-indic digit two
٤
&#1636;&#x0664;arabic-indic digit three
٥
&#1637;&#x0665;arabic-indic digit four
٦
&#1638;&#x0666;arabic-indic digit five
٧
&#1639;&#x0667;arabic-indic digit seven
٨
&#1640;&#x0668;arabic-indic digit eight
٩
&#1641;&#x0669;arabic-indic digit nine


一般句読点
General Punctuation

Spaces

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&ensp;&#8194;&#x2002;en space
&emsp;&#8195;&#x2003;em space
&emsp;&#8201;&#x2009;thin space

General Punctuation: Format characters

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&zwnj;&#8204;&#x200c;zero width non-joiner
&zwj;&#8205;&#x200d;zero width joiner
&lrm;&#8206;&#x200e;left-to-right mark
&rlm;&#8207;&#x200f;right-to-left mark

Dashes

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&ndash;&#8211;&#x2013;en dash
&mdash;&#8212;&#x2014;em dash

General punctuation

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&lsquo;&#8216;&#x2018;left single quotation mark
&rsquo;&#8217;&#x2019;right single quotation mark
&sbquo;&#8218;&#x201a;single low-9 quotation mark
&ldquo;&#8220;&#x201c;left double quotation mark
&rdquo;&#8221;&#x201d;right single quotation mark
&bdquo;&#8222;&#x201e;double low-9 quotation mark
&dagger;&#8224;&#x2020;dagger
&Dagger;&#8225;&#x2021;double dagger
&bull;&#8226;&#x2022;bullet, black small circle
&hellip;&#8230;&#x2026;horizontal ellipsis, three dot leader
&permil;&#8240;&#x2030;per mille sign
&prime;&#8242;&#x2032;プライム符号, 分, フィート
&Prime;&#8243;&#x2033;二重プライム符号, , インチ
&lsaquo;&#8249;&#x2039;single left-pointing angle quotation mark
&rsaquo;&#8250;&#x203a;single right-pointing angle quotation mark

&#8253;&#x203d;interrobang
&oline;&#8254;&#x203e;overline / spacing overscore
&frasl;&#8260;&#x2044;括線


通貨記号
Currency Symbols

Currency Symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8352;&#x20a0;euro-currency sign (historical character; this is NOT the euro.)

&#8353;&#x20a1;colon sign (Costa Rica, El Salvador)

&#8354;&#x20a2;cruzeiro sign (Brazil)

&#8355;&#x20a3;French franc sign (France)

&#8356;&#x20a4;lira sign (intended for lira, but not widely used)

&#8357;&#x20a5;mill sign (USA; 1/10 cent)

&#8358;&#x20a6;naira sign (Nigeria)

&#8359;&#x20a7;peseta sign (Spain)

&#8360;&#x20a8;rupee sign (India)

&#8361;&#x20a9;won sign (Korea)

&#8362;&#x20aa;new sheqel sign (Israel)

&#8363;&#x20ab;dong sign (Vietnam)
&euro;&#8364;&#x20ac;euro sign (currency sign for the European Monetary Union; this is NOT ecu)

&#8365;&#x20ad;kip sign (Laos)

&#8366;&#x20ae;tugrik sign (Mongolia; also transliterated as tugrug, tugric, tugrog, togrog, tögrög)

&#8367;&#x20af;drachma sign (Greece)

&#8368;&#x20b0;German penny sign

&#8369;&#x20b1;peso sign (philippines)

&#8370;&#x20b2;guarani sign (Paraguay; often represented by G. or Gs.)

&#8371;&#x20b3;austral sign (former Argentinian currency)

&#8372;&#x20b4;hryvnia sign (Ukraine)

&#8373;&#x20b5;cedi sign (Ghana)


文字様記号
Letterlike Symbols

文字様記号
Letterlike Symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8448;&#x2100;account of

&#8449;&#x2101;addressed to the subject

&#8450;&#x2102;double-struck capital C

&#8451;&#x2103;degree celsius, degrees Centigrade

&#8452;&#x2104;centre line symbol / clone

&#8453;&#x2105;〜様方

&#8454;&#x2106;cada una

&#8455;&#x2107;euler constant

&#8456;&#x2108;scruple

&#8457;&#x2109;degree fahrenheit

&#8458;&#x210a;筆記体小文字g

&#8459;&#x210b;筆記体大文字H

&#8460;&#x210c;ブラック体大文字H

&#8461;&#x210d;double-struck capital H

&#8462;&#x210e;planck constant / height, specific enthalpy, ...

&#8463;&#x210f;planck constant ant over two pi

&#8464;&#x2110;筆記体大文字I
&image;&#8465;&#x2111;ブラック体の大文字I, 虚部

&#8466;&#x2112;筆記体大文字L, Laplace transform

&#8467;&#x2113;script small L, mathematicla symbol 'ell', liter

&#8468;&#x2114;LB bar symbol

&#8470;&#x2116;numero sign

&#8471;&#x2117;sound recording copyright, published, phonorecord sign
&weierp;&#8472;&#x2118;筆記体大文字P, 累乗集合

&#8473;&#x2119;double-struck capital P

&#8474;&#x211a;double-struck capital Q, the set of rational numbers

&#8475;&#x211b;筆記体大文字R
&real;&#8476;&#x211c;ブラック体大文字R, 実部

&#8477;&#x211d;double-struck capital R, the set of real numbers

&#8478;&#x211e;prescription take, recipe, cross ratio

&#8479;&#x211f;response

&#8480;&#x2120;service sign

&#8481;&#x2121;telephone sign
&trade;&#8482;&#x2122;登録商標記号

&#8483;&#x2123;versicle (短詩)

&#8484;&#x2124;double-struck capital Z

&#8485;&#x2125;ounce sign

&#8486;&#x2126;ohm sign

&#8487;&#x2127;inverted ohm sign, mho

&#8488;&#x2128;black-letter capital Z

&#8489;&#x2129;turned greek small letter Iota

&#8490;&#x212a;kelvin sign

&#8491;&#x212b;angstrom sign

&#8492;&#x212c;筆記体大文字B, Bernoulli function

&#8493;&#x212d;black-letter capital C

&#8494;&#x212e;estima ted symbol

&#8495;&#x212f;筆記体小文字e, error, natural exponent

&#8496;&#x2130;筆記体大文字E, emf (electromotive force)

&#8497;&#x2131;筆記体大文字F, fourier transform

&#8498;&#x2132;turned capital F, Claudian digamma inversum

&#8499;&#x2133;筆記体大文字M, M-matrix (physics), German Mark currency symbol, before WWII

&#8500;&#x2134;筆記体小文字o, order, of inferior order to

ヘブライ語 文字様数学記号
Hebrew letterlike math symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&alefsym;&#8501;&#x2135;アレフ記号, first transfinite cardinal (countable)

&#8502;&#x2136;bet symbol / second transfinite cardinal (the continuum)

&#8503;&#x2137;gimel symbol / third transfinite cardinal (functions of a real variable)

&#8504;&#x2138;dalet symbol / fourth transfinite cardinal

追加文字様記号
Additional letterlike symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8505;&#x2139;information source

&#8506;&#x213a;rotated capital Q

&#8507;&#x213b;facsimile sign

&#8508;&#x213c;double-struck small pi

&#8509;&#x213d;double-struck small gamma

&#8510;&#x213e;double-struck capital gamma

&#8511;&#x213f;double-struck capital pi

&#8513;&#x2141;turned sans-serif capital G, game

&#8514;&#x2142;turned sans-serif capital L

&#8515;&#x2143;reversed sans-serif capital L

&#8516;&#x2144;turned sans-serif capital Y

&#8522;&#x214a;property line

&#8523;&#x214b;turned ampersand

&#8524;&#x214c;per sign

&#8522;&#x214d;aktieselskab

Double-struck large operator

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8512;&#x2140;double-struck N-Ary summation

Double-struck italic math symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8517;&#x2145;double-struck italic capital D

&#8518;&#x2146;double-struck italic small d

&#8519;&#x2147;double-struck italic small e

&#8520;&#x2148;double-struck italic small i

&#8521;&#x2149;double-struck italic small j

Lowercase Claudian letter

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8523;&#x214e;turned small F


数字に準じるもの
Number Forms

Fractions (分数)

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8531;&#x2153;三分の一

&#8532;&#x2154;三分の二

&#8533;&#x2155;五分の一

&#8534;&#x2156;五分の二

&#8535;&#x2157;五分の三

&#8536;&#x2158;五分の四

&#8537;&#x2159;六分の一

&#8538;&#x215a;六分の五

&#8539;&#x215b;八分の一

&#8540;&#x215c;八分の三

&#8541;&#x215d;八分の五

&#8542;&#x215e;八分の七

&#8543;&#x215f;fraction numerator one

Roman numerals (ローマ数字)

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8544;&#x2160;roman numeral one

&#8545;&#x2161;roman numeral one

&#8546;&#x2162;roman numeral two

&#8547;&#x2163;roman numeral three

&#8548;&#x2164;roman numeral four

&#8549;&#x2165;roman numeral five

&#8550;&#x2166;roman numeral six

&#8551;&#x2167;roman numeral seven

&#8552;&#x2168;roman numeral eight

&#8553;&#x2169;roman numeral nine

&#8554;&#x216a;roman numeral eleven

&#8555;&#x216b;roman numeral twelve

&#8556;&#x216c;roman numeral fifty

&#8557;&#x216d;roman numeral one hundred

&#8558;&#x216e;roman numeral five hundred

&#8559;&#x216f;roman numeral one thousand

&#8560;&#x2170;small roman numeral one

&#8561;&#x2171;small roman numeral two

&#8562;&#x2172;small roman numeral three

&#8563;&#x2173;small roman numeral four

&#8564;&#x2174;small roman numeral five

&#8565;&#x2175;small roman numeral six

&#8566;&#x2176;small roman numeral seven

&#8567;&#x2177;small roman numeral eight

&#8568;&#x2178;small roman numeral nine

&#8569;&#x2179;small roman numeral ten

&#8570;&#x217a;small roman numeral eleven

&#8571;&#x217b;small roman numeral twelve

&#8572;&#x217c;small roman numeral fifty

&#8573;&#x217d;small roman numeral one hundred

&#8574;&#x217e;small roman numeral five hundred

&#8575;&#x217f;small roman numeral one thousand

&#8576;&#x2180;roman numeral one thousand C D

&#8577;&#x2181;roman numeral five thousand

&#8578;&#x2182;roman numeral ten thousand

&#8579;&#x2183;roman numeral reversed one hundred, apostrophic C


矢印
Arrows

Simple arrows

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&larr;&#8592;&#x2190;leftwards arrow(左向き矢印)
&uarr;&#8593;&#x2191;upwards arrow(上向き矢印)
&rarr;&#8594;&#x2192;rightwards arrow(右向き矢印)
&darr;&#8595;&#x2193;downwards arrow(下向き矢印)
&harr;&#8596;&#x2194;left-right arrow(左右矢印), z notation relation

&#8597;&#x2195;up-down arrow(上下矢印)

&#8598;&#x2196;north-west arrow

&#8599;&#x2197;north-east arrow

&#8600;&#x2198;south-east arrow

&#8601;&#x2199;south-west arrow

Keyboard symbols and circle arrows

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&crarr;&#8629;&#x21b5;downwards arrow with corner leftwards, carriage return(キャリッジリターン)

Double arrows

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&lArr;&#8656;&#x21d0;leftwards double arrow
&uArr;&#8657;&#x21d1;upwards double arrow
&rArr;&#8658;&#x21d2;rightwards double arrow
&dArr;&#8659;&#x21d3;downwards double arrow
&hArr;&#8660;&#x21d4;left-right double arrow

&#8661;&#x21d5;up-down double arrow


数学記号
Mathematical Operators

Miscellaneous mathematical symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&forall;&#8704;&#x2200;for all(全称限量記号; 任意の〜全てに対して)

&#8705;&#x2201;complement
&part;&#8706;&#x2202;partial differential(偏微分)
&exist;&#8707;&#x2203;there exists(存在限量記号; 存在する)

&#8708;&#x2204;there does not exist
&empty;&#8709;&#x2205;empty set, null set(空集合) / diameter

&#8710;&#x2206;increment
&nabla;&#8711;&#x2207;nabla(微分演算子; ナブラ), backward difference

&#8718;&#x220e;end of proof, q.e.d.
&infin;&#8734;&#x221e;infinity(無限大)

&#8735;&#x221f;right angle
&ang;&#8736;&#x2220;angle(角度)

&#8737;&#x2221;measured angle

&#8738;&#x2222;spherical angle, angle arc
&there4;&#8756;&#x2234;therefore(したがって)

&#8757;&#x2235;because(なぜなら)

&#8767;&#x223f;sine wave, alternating current

&#8868;&#x22a4;down tack, top
&perp;&#8869;&#x22a5;up tack, base, bottom.
orthogonal to(直交)※

&#8894;&#x22be;right angle with arc

&#8895;&#x22bf;right triangle

※「直交」は &#x27C2; で別途定義。


Set membership

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&isin;&#8712;&#x2208;element of(属する, 右辺の要素である)
&notin;&#8713;&#x2209;not an element of(属さない, 右辺の要素でない)

&#8714;&#x220a;small element of
&ni;&#8715;&#x220b;contains as member(要素として含む)

&#8716;&#x220c;does not contain as member

&#8717;&#x220d;small contains as member

Operators

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&minus;&#8722;&#x2212;minus sign(減算記号)

&#8723;&#x2213;minus-or-plus sign

&#8724;&#x2214;dot plus

&#8725;&#x2215;division slash

&#8726;&#x2216;set minus
&lowast;&#8727;&#x2217;asterisk operator(アスタリスク演算子)

&#8728;&#x2218;ring operator, composite function, APL jot

&#8729;&#x2219;bullet operator
&radic;&#8730;&#x221a;square root(平方根), radical sign

&#8731;&#x221b;cube root

&#8732;&#x221c;fourth root
&prop;&#8733;&#x221d;proportional to(比例記号)

&#8739;&#x2223;divides, such that, APL stile

&#8740;&#x2224;does not divide

&#8741;&#x2225;parallel to

&#8742;&#x2226;not parallel to

&#8760;&#x2238;dot minus, saturating subtraction

&#8762;&#x223a;geometric proportion

&#8768;&#x2240;wreath product

&#8844;&#x228c;multiset

&#8845;&#x228d;multiset multiplication

&#8846;&#x228e;multiset union, z notation bag addition

&#8851;&#x2293;square cap

&#8852;&#x2294;square cup
&oplus;&#8853;&#x2295;circled plus, direct sum(直和), vector pointing into page

&#8854;&#x2296;circled minus, symmetric difference
&otimes;&#8855;&#x2297;circled times, 直積, tensor product, vector pointing into page

&#8856;&#x2298;circled division slash

&#8857;&#x2299;circled dot operator, direct product, vector pointing out of page

&#8858;&#x229a;circled ring operator

&#8859;&#x229b;circled asterisk operator

&#8860;&#x229c;circled equals

&#8861;&#x229d;circled dash

&#8862;&#x229e;squared plus

&#8863;&#x229f;squared minus

&#8864;&#x22a0;squared times

&#8865;&#x22a1;squared dot operator

&#8866;&#x22a2;right tack, turnstile, proves, implies, yields, reducible

&#8867;&#x22a3;left tack, reverse turnstile, non-theorem, does not yield

&#8890;&#x22ba;intercalate

&#8891;&#x22bb;xor

&#8892;&#x22bc;nand

&#8893;&#x22bd;nor

&#8900;&#x22c4;diamond operator(ダイアモンド演算子)
&sdot;&#8901;&#x22c5;dot operator(ドット演算子)

&#8902;&#x22c6;star operator

&#8903;&#x22c7;division times

&#8905;&#x22c9;left normal factor semidirect product

&#8906;&#x22ca;right normal factor semidirect

&#8907;&#x22cb;left semidirect product

&#8908;&#x22cc;right semidirect product

&#8914;&#x22d2;double intersection

&#8915;&#x22d3;double union

N-ary operators

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&prod;&#8719;&#x220f;総積(n回の乗算),

&#8720;&#x2210;n-ary coproduct, coprodction sign
&sum;&#8721;&#x2211;総和(n回の加算),

&#8896;&#x22c0;n-ary logical and

&#8897;&#x22c1;n-ary logical or

&#8898;&#x22c2;n-ary intersection

&#8899;&#x22c3;n-ary union

Logical and set operators

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&and;&#8743;&#x2227;logical and(論理積), wedge, conjunction
&or;&#8744;&#x2228;logical or(論理和), vee, disjunction
&cap;&#8745;&#x2229;intersection(集合の積), cap, hut
&cup;&#8746;&#x222a;union(集合の和), cup

&#8910;&#x22ce;curly logical or

&#8911;&#x22cf;curly logical and

Integrals

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&int;&#8747;&#x222b;integral(積分)

&#8748;&#x222c;double integral(二重積分)

&#8749;&#x222d;triple integral

&#8750;&#x222e;contour integral(回転積分)

&#8751;&#x222f;surface integral

&#8752;&#x2230;volume integral

&#8753;&#x2231;clockwise integral

&#8754;&#x2232;clockwise contour integral

&#8755;&#x2233;anticlockwise contour integral

Relations

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#8758;&#x2236;比、比率

&#8759;&#x2237;proportion

&#8761;&#x2239;excess

&#8763;&#x223b;homothetic
&sim;&#8764;&#x223c;チルダ演算子, varies with (proportional to), difference between, similar to, not, cycle, APL tilde

&#8765;&#x223d;reversed tilde, lazy S, 相似

&#8766;&#x223e;inverted lazy S, most positive

&#8769;&#x2241;not tilde

&#8770;&#x2242;minus tilde

&#8771;&#x2243;asymptotically equal to

&#8772;&#x2244;not asymptotically equal to
&cong;&#8773;&#x2245;approximately equal to

&#8774;&#x2246;approximately but not actually equal to

&#8775;&#x2247;neither approximately nor actually equal to
&asymp;&#8776;&#x2248;almoset equal to, asymptotic to

&#8777;&#x2249;not almoset equal to

&#8778;&#x224a;almoset equal or equal to

&#8779;&#x224b;triple tilde

&#8780;&#x224c;all equal to

&#8781;&#x224d;equivalent to

&#8782;&#x224e;geometrically equivalent to

&#8783;&#x224f;difference between

&#8784;&#x2250;approaches the limit

&#8785;&#x2251;geometrically equal to

&#8786;&#x2252;approximately equal to or the image of, nealy equals

&#8787;&#x2253;image of or approximately equal to

&#8788;&#x2254;colon equals

&#8789;&#x2255;equals colon

&#8790;&#x2256;ring in equal to

&#8791;&#x2257;ring equal to, approximately equal to

&#8792;&#x2258;corresponds to

&#8793;&#x2259;estima tes, corresponds to

&#8794;&#x225a;equiangular to

&#8795;&#x225b;star equals

&#8796;&#x225c;delta equal to, euiangular, equal to by definition

&#8797;&#x225d;equal to by definition

&#8798;&#x225e;measured by

&#8799;&#x225f;questioned equal to
&ne;&#8800;&#x2260;等しくない
&equiv;&#8801;&#x2261;定義/合同

&#8802;&#x2262;not identical to

&#8803;&#x2263;strictly equivalent to
&le;&#8804;&#x2264;小さいか等しい
&ge;&#8805;&#x2265;大きいか等しい

&#8806;&#x2266;less than over equal to

&#8807;&#x2267;greater than over equal to

&#8808;&#x2268;less than but not equal to

&#8809;&#x2269;greater than but not equal to

&#8810;&#x226a;はるかに小さい

&#8811;&#x226b;はるかに大きい

&#8812;&#x226c;between, plaintiff, quantic

&#8813;&#x226d;not equivalent to

&#8814;&#x226e;not less-than

&#8815;&#x226f;not greater-than

&#8816;&#x2270;neither less-than nor equal to

&#8817;&#x2271;neither greater-than nor equal to

&#8818;&#x2272;less-than or equivalent to

&#8819;&#x2273;greater-than or equivalent to

&#8820;&#x2274;neither less-than nor equivalent to

&#8821;&#x2275;neither greater-than nor equvalent to

&#8822;&#x2276;less-than or greater-than

&#8823;&#x2277;greater-than or less-than

&#8824;&#x2278;neither less-than nor greater-than

&#8825;&#x2279;neither greater-than nor less-than

&#8826;&#x227a;presedes, lower rank than

&#8827;&#x227b;succeeds, higher rank than

&#8828;&#x227c;preceeds or equal to

&#8829;&#x227d;succeeds or equal to

&#8830;&#x227e;preceeds or equivalent to

&#8831;&#x227f;succeeds or equivalent to

&#8832;&#x2280;does not precede

&#8833;&#x2281;does not succeed
&sub;&#8834;&#x2282;左辺は右辺の部分集合
&sup;&#8835;&#x2283;左辺は右辺を含む
&nsub;&#8836;&#x2284;左辺は右辺の部分集合でない
&sube;&#8838;&#x2286;左辺は右辺の部分集合または等しい
&supe;&#8839;&#x2287;左辺は右辺を含むか等しい

&#8840;&#x2288;neither a subset of nor equal to

&#8841;&#x2289;neither a superset of nor equal to

&#8842;&#x228a;subset of with not equal to

&#8843;&#x228b;superset of with not equal to

&#8847;&#x228f;square image of

&#8848;&#x2290;square original of

&#8849;&#x2291;square image of or equal to

&#8850;&#x2292;square original of or equal to

&#8870;&#x22a6;assertion, reduces to

&#8871;&#x22a7;models

&#8872;&#x22a8;true, statement is true, valid, is a tautology, satisfies, results in

&#8873;&#x22a9;forces

&#8874;&#x22aa;triple vertical bar right turnstile

&#8875;&#x22ab;double vertical bar double right turnstile

&#8876;&#x22ac;does not prove

&#8877;&#x22ad;not true

&#8878;&#x22ae;does not force

&#8879;&#x22af;negated double vertical bar double right turnstile

&#8880;&#x22b0;precedes under relation

&#8881;&#x22b1;succeeds under relation

&#8882;&#x22b2;normal subgroup of

&#8883;&#x22b3;contains as normal subgroup

&#8884;&#x22b4;normal subgroup of or equal to

&#8885;&#x22b5;contains as normal subgroup or equal to

&#8886;&#x22b6;original of

&#8887;&#x22b7;image of

&#8888;&#x22b8;multimap

&#8889;&#x22b9;hermitian conjugate matrix

&#8904;&#x22c8;bowtie

&#8909;&#x22cd;reversed tilde equals

&#8912;&#x22d0;double subset

&#8913;&#x22d1;double superset

&#8916;&#x22d4;pitchfork, proper intersection

&#8917;&#x22d5;equal and parallel to

&#8918;&#x22d6;less-than with dot

&#8919;&#x22d7;greater-than with dot

&#8920;&#x22d8;very much less-than

&#8921;&#x22d9;very much greater-than

&#8922;&#x22Da;less-than equal to or greater-than

&#8923;&#x22Db;greater-than equal to or less-than

&#8924;&#x22Dc;equal to or less-than

&#8925;&#x22Dd;equal to or greater-than

&#8926;&#x22De;equal to or precedes

&#8927;&#x22Df;equal to or succeeds

&#8928;&#x22e0;does not precede or equal

&#8929;&#x22e1;does not succeed or equal

&#8930;&#x22e2;not square image of or equal to

&#8931;&#x22e3;not square original of or equal to

&#8932;&#x22e4;square imate of or not equal to

&#8933;&#x22e5;square original of or not equal to

&#8934;&#x22e6;less-than but not equivalent to

&#8935;&#x22e7;greater-than but not equivalent to

&#8936;&#x22e8;precedes but not equivalent to

&#8937;&#x22e9;succeeds but not equivalent to

&#8938;&#x22ea;not normal subgroup of

&#8939;&#x22eb;does not contain as normal subgroup

&#8940;&#x22ec;not normal subgroup of or equal to

&#8941;&#x22ed;does not contain as normal subgroup or equal

&#8942;&#x22ee;vertical ellipsis

&#8943;&#x22ef;midline horizontal ellipsis

&#8944;&#x22f0;up right diagonal ellipsis

&#8945;&#x22f1;down right diagonal ellipsis

&#8946;&#x22f2;element of with long horizontal stroke

&#8947;&#x22f3;element of with vertical bar at end of horizontal stroke

&#8948;&#x22f4;small element of with vertical bar at end of horizontal stroke

&#8949;&#x22f5;element of with dot above

&#8950;&#x22f6;element of with overbar

&#8951;&#x22f7;small element of with overbar

&#8952;&#x22f8;element of with underbar

&#8953;&#x22f9;element of with two horizontal strokes

&#8954;&#x22fa;contains with long horizontal stroke

&#8955;&#x22fb;contains with vertical bar at end of horizontal stroke

&#8956;&#x22fc;small contains with vertical bar at end of horizontal stroke

&#8957;&#x22fd;contains with overbar

&#8958;&#x22fe;small contains with overbar

&#8959;&#x22ff;z notation bag membership


その他の数学記号 A
Miscellaneous Mathematical Symbols-A

Miscellaneous symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#10178;&#x27c2;perpendicular, orthogonal to(直交)


その他の技術用記号
Miscellaneous Technical

Corner brackets

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&lceil;&#8968;&#x2308;left ceiling(左上限), APL upstile
&rceil;
&#8969;&#x2309;right ceiling(右上限)
&lfloor;
&#8970;&#x230a;left floor(左下限)
&rfloor;
&#8971;&#x230b;right floor(右下限)

GUI icons

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&lang;
&#8986;&#x231a;watch
&rang;
&#8987;&#x231b;hourglass

Angle brackets

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明
&lang;
&#9001;&#x2329;left-pointing angle bracket(左角括弧)
&rang;
&#9002;&#x232a;right-pointing angle bracket(右角括弧)


幾何学模様
Geometric Shapes

Geometric shapes

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#9632;&#x25a0;black square, moding mark (in ideographic text)

&#9633;&#x25a1;white square, quadrature

&#9634;&#x25a2;white square with rounded corners

&#9635;&#x25a3;white square containing black small square

&#9636;&#x25a4;square with horizontal fill

&#9637;&#x25a5;square with vertical fill

&#9638;&#x25a6;square with orthogonal crosshatch fill

&#9639;&#x25a7;square with upper left to lower right fill

&#9640;&#x25a8;square with upper right to lower left fill

&#9641;&#x25a9;square with diagonal crosshatch fill

&#9670;&#x25c6;black diamond

&#9671;&#x25c7;white diamond

&#9672;&#x25c8;white diamond containing black small diamond
&loz;
&#9674;&#x25ca;lozenge(菱形)

&#9720;&#x25f8;upper left triangle

&#9721;&#x25f9;upper right triangle

&#9722;&#x25fa;lower left triangle

&#9727;&#x25ff;lower right triangle


その他の記号
Miscellaneous Symbols

Miscellaneous Symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9742;&#x260e;black telephone

&#9743;&#x260f;white telephone

&#9744;&#x2610;ballot box

&#9745;&#x2611;ballot box with check

&#9746;&#x2612;ballot box with X

&#9747;&#x2613;saltire, St. Andrew's Cross

&#9749;&#x2615;hot beverage, tea or coffee, depending on locale

&#9752;&#x2618;shamrock

&#9753;&#x2619;reversed rotated floral heart bullet

&#9784;&#x2638;wheel of dharma

&#9785;&#x2639;white frowning face

&#9786;&#x263a;white smiling face, have a nice day!

&#9787;&#x263b;black smiling face

&#9788;&#x263c;white sun with rays

&#9832;&#x2668;hot springs

&#9854;&#x267e;permanent paper sign

&#9855;&#x267f;wheelchair symbol

Weather and astrological symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
説明

&#9728;&#x2600;black sun with rays, clear weather(晴)

&#9729;&#x2601;cloud, cloudy weather(曇)

&#9730;&#x2602;umbrella, rainy weather(雨)

&#9731;&#x2603;snowman, snowy weather(雪)

&#9732;&#x2604;comet

&#9733;&#x2605;black star

&#9734;&#x2606;white star

&#9735;&#x2607;lightning

&#9736;&#x2608;thunderstrom

&#9737;&#x2609;sun

&#9738;&#x260a;ascending node

&#9739;&#x260b;descending node

&#9740;&#x260c;conjunction

&#9741;&#x260d;opposition

&#9748;&#x2614;umbrella with rain drops, showery weather

Japanese chess symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9750;&#x2616;white shogi piece

&#9751;&#x2617;black shogi piece

Pointing hand symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9754;&#x261a;black left pointing index

&#9755;&#x261b;black right pointing index

&#9756;&#x261c;white left pointing index

&#9757;&#x261d;white up pointing index

&#9758;&#x261e;white right pointing index, fist (typographic term)

&#9759;&#x261c;white down pointing index

Warning signs

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9760;&#x2620;skull and crossbones, poison

&#9761;&#x2621;caution sign

&#9762;&#x2622;radio active sign

&#9763;&#x2623;biohazard sign

Religious and political symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9765;&#x2626;orthodox cross

&#9766;&#x2627;chi rho, Constantine's cross, Christogram

&#9767;&#x2628;cross of Lorraine

&#9768;&#x2629;cross of Jerusalem

&#9769;&#x262a;star and crescent

&#9771;&#x262b;Farsi symbol

&#9772;&#x262c;Adi Shakti, Gurmukhi khanda

&#9773;&#x262d;hammer and sickle

&#9774;&#x262e;peace symbol

&#9775;&#x262f;Yin-Yang(陰陽)

Playing card symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考
&spades;&#9824;&#x2660;black spade suit

&#9825;&#x2661;white heart suit

&#9826;&#x2662;white diamond suit
&clubs;&#9827;&#x2663;black club suit, shamrock

&#9828;&#x2664;white spade suit
&hearts;&#9829;&#x2665;black heart suit, valentine
&diams;&#9830;&#x2666;black diamond suit

&#9831;&#x2667;white club suit

Musical symbols

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#9833;&#x2669;quarter note

&#9834;&#x266a;eighth note

&#9835;&#x266b;beamed eighth notes

&#9836;&#x266c;beamed sixteenth notes

&#9837;&#x266d;music flat sign

&#9838;&#x266e;music natural sign

&#9839;&#x266f;music sharp sign, z notation infix bag count


CJKの記号及び句読点
CJK Symbols and Punctuation

CJK symbols and punctuation

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12289;&#x3001;読点

&#12290;&#x3002;句点

&#12291;&#x3003;同じく

&#12292;&#x3004;Japanese Industrial Standard symbol

&#12293;&#x3005;漢字繰返し

&#12294;&#x3006;締め

&#12295;&#x3007;ideographic number zero

&#12314;&#x3012;postal mark

&#12315;&#x3013;げた記号

&#12316;&#x301c;wave dash

&#12317;&#x301d;reversed double prime quotation mark

&#12318;&#x301e;double prime quotation mark

&#12319;&#x301f;low double prime quotation mark

&#12320;&#x3020;postal mark face

&#12336;&#x3030;wavy dash

&#12337;&#x3031;vertical kana repeat mark

&#12338;&#x3032;vertical kana repeat with voiced sound mark

&#12339;&#x3033;vertical kana repeat mark upper half

&#12340;&#x3034;vertical kana repeat with voiced sound mark upper half

&#12341;&#x3035;vertical kana repeat mark lower half

&#12342;&#x3036;circled postal mark

&#12343;&#x3037;ideographic telegraph line feed separator symbol

&#12347;&#x303b;vertical ideographic iteration mark

&#12348;&#x303c;masu mark

&#12349;&#x303d;part alternation mark

CJK brackets

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12296;&#x3008;left angle bracket

&#12297;&#x3009;right angle bracket

&#12298;&#x300a;left double angle bracket

&#12299;&#x300b;right double angle bracket

&#12300;&#x300c;left corner bracket

&#12301;&#x300d;right corne bracket

&#12302;&#x300e;left white corner bracket

&#12303;&#x300f;right white corner bracket

&#12304;&#x3010;left black lenticular bracket

&#12305;&#x3011;right black lenticular bracket

&#12309;&#x3015;left tortoise shell bracket

&#12310;&#x3016;right tortoise shell bracket

&#12311;&#x3017;left white lenticular bracket

&#12312;&#x3018;left white tortoise shell bracket

&#12313;&#x3019;right tortoise shell bracket

&#12314;&#x301a;left white square bracket, left abstract syntax bracket

&#12315;&#x301b;right white square bracket, right abstract syntax bracket

Suzhou numerals (蘇州数字)

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12321;&#x3021;hangzhou numeral one(杭州数字1)

&#12322;&#x3022;hangzhou numeral two

&#12323;&#x3023;hangzhou numeral three

&#12324;&#x3024;hangzhou numeral four

&#12325;&#x3025;hangzhou numeral five

&#12326;&#x3026;hangzhou numeral six

&#12327;&#x3027;hangzhou numeral seven

&#12328;&#x3028;hangzhou numeral eight

&#12329;&#x3029;hangzhou numeral nine

&#12344;&#x3038;hangzhou numeral ten

&#12345;&#x3039;hangzhou numeral twenty

&#12346;&#x303a;hangzhou numeral thirty

Diacritics (発音区別符号)

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12330;&#x302a;ideographic level tone mark

&#12331;&#x302b;ideographic rising tone mark

&#12332;&#x302c;ideographic departing tone mark

&#12333;&#x302d;ideographic entering tone mark

&#12334;&#x302e;Hangul single dot tone mark, single dot Bangjeom

&#12335;&#x302f;Hangul double dot tone mark, double dot Bangjeom


漢文用記号
Kanbun

kanbun

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12688;&#x3190;ideographic annotation linking mark, tateten

&#12689;&#x3191;ideographic annotation reverse mark, kaeriten re(レ点)

&#12690;&#x3192;ideographic annotation one mark

&#12691;&#x3193;ideographic annotation two mark

&#12692;&#x3194;ideographic annotation three mark

&#12693;&#x3195;ideographic annotation four mark

&#12694;&#x3196;ideographic annotation top mark

&#12695;&#x3197;ideographic annotation middle mark

&#12696;&#x3198;ideographic annotation bottom mark

&#12697;&#x3199;ideographic annotation first mark

&#12698;&#x319a;ideographic annotation second mark

&#12699;&#x319b;ideographic annotation third mark

&#12700;&#x319c;ideographic annotation fourth mark

&#12701;&#x319d;ideographic annotation heaven mark

&#12702;&#x319e;ideographic annotation earth mark

&#12703;&#x319f;ideographic annotation man mark


囲みCJK文字・月
Enclosed CJK Letters and Months

Parenthesized Hangul elements

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12800;&#x3200;parenthesized Hangul Kiyeok

&#12801;&#x3201;parenthesized Hangul Nieun

&#12802;&#x3202;parenthesized Hangul Tikeut

&#12803;&#x3203;parenthesized Hangul Rieul

&#12804;&#x3204;parenthesized Hangul Mieum

&#12805;&#x3205;parenthesized Hangul Pieup

&#12806;&#x3206;parenthesized Hangul Sios

&#12807;&#x3207;parenthesized Hangul Ieung

&#12808;&#x3208;parenthesized Hangul Cieuc

&#12809;&#x3209;parenthesized Hangul Chieuch

&#12810;&#x320a;parenthesized Hangul Khieukh

&#12811;&#x320b;parenthesized Hangul Thieuth

&#12812;&#x320c;parenthesized Hangul Phieuph

&#12813;&#x320d;parenthesized Hangul Hieuh

Parenthesized Hangul syllables

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12814;&#x320e;parenthesized Hangul Kiyeok A

&#12815;&#x320f;parenthesized Hangul Nieun A

&#12816;&#x3210;parenthesized Hangul Tikeut A

&#12817;&#x3211;parenthesized Hangul Rieul A

&#12818;&#x3212;parenthesized Hangul Mieum A

&#12819;&#x3213;parenthesized Hangul Pieup A

&#12820;&#x3214;parenthesized Hangul Sios A

&#12821;&#x3215;parenthesized Hangul Ieung A

&#12822;&#x3216;parenthesized Hangul Cieuc A

&#12823;&#x3217;parenthesized Hangul Chieuch A

&#12824;&#x3218;parenthesized Hangul Khieukh A

&#12825;&#x3219;parenthesized Hangul Thieuth A

&#12826;&#x321a;parenthesized Hangul Phieuph A

&#12827;&#x321b;parenthesized Hangul Hieuh A

&#12828;&#x321c;parenthesized Hangul Cieuc U

Parenthesized Korean words

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12829;&#x321d;parenthesized Korean character Ojeon

&#12830;&#x321e;parenthesized Korean character O Hu

Parenthesized ideographs

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12832;&#x3220;parenthesized ideograph one

&#12833;&#x3221;parenthesized ideograph two

&#12834;&#x3222;parenthesized ideograph three

&#12835;&#x3223;parenthesized ideograph four

&#12836;&#x3224;parenthesized ideograph five

&#12837;&#x3225;parenthesized ideograph six

&#12838;&#x3226;parenthesized ideograph seven

&#12839;&#x3227;parenthesized ideograph eight

&#12840;&#x3228;parenthesized ideograph nine

&#12841;&#x3229;parenthesized ideograph ten

&#12842;&#x322a;parenthesized ideograph moon, Monday

&#12843;&#x322b;parenthesized ideograph fire, Tuesday

&#12844;&#x322c;parenthesized ideograph water, Wednesday

&#12845;&#x322d;parenthesized ideograph wood, Thursday

&#12846;&#x322e;parenthesized ideograph metal, Friday

&#12847;&#x322f;parenthesized ideograph earth, Saturday

&#12848;&#x3230;parenthesized ideograph sun, Sunday

&#12849;&#x3231;parenthesized ideograph stock, incorporated

&#12850;&#x3232;parenthesized ideograph have, limited

&#12851;&#x3233;parenthesized ideograph society

&#12852;&#x3234;parenthesized ideograph name

&#12853;&#x3235;parenthesized ideograph special

&#12854;&#x3236;parenthesized ideograph financial

&#12855;&#x3237;parenthesized ideograph congratulation

&#12856;&#x3238;parenthesized ideograph labor

&#12857;&#x3239;parenthesized ideograph represent

&#12858;&#x323a;parenthesized ideograph call

&#12859;&#x323b;parenthesized ideograph study

&#12860;&#x323c;parenthesized ideograph supervise

&#12861;&#x323d;parenthesized ideograph enterprise

&#12862;&#x323e;parenthesized ideograph resource

&#12863;&#x323f;parenthesized ideograph alliance

&#12864;&#x3240;parenthesized ideograph festival

&#12865;&#x3241;parenthesized ideograph rest

&#12866;&#x3242;parenthesized ideograph self, from

&#12867;&#x3243;parenthesized ideograph reach, to

Squared Latin abbreviations

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12880;&#x3250;partnership sign

&#13004;&#x32cc;square Hg

&#13005;&#x32cd;square erg

&#13006;&#x32ce;square eV

&#13007;&#x32cf;square LTD

Symbol

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12927;&#x327f;Korean Standard symbol

Circled ideographs

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12928;&#x3280;circled ideograph one, muru-iti, symbol of unification

&#12929;&#x3281;circled ideograph two

&#12930;&#x3282;circled ideograph three

&#12931;&#x3283;circled ideograph four

&#12932;&#x3284;circled ideograph five

&#12933;&#x3285;circled ideograph six

&#12934;&#x3286;circled ideograph seven

&#12935;&#x3287;circled ideograph eight

&#12936;&#x3288;circled ideograph nine

&#12937;&#x3289;circled ideograph ten

&#12938;&#x328a;circled ideograph moon, Monday

&#12939;&#x328b;circled ideograph fire, Tuesday

&#12940;&#x328c;circled ideograph water, Wednesday

&#12941;&#x328d;circled ideograph wood, Thursday

&#12942;&#x328e;circled ideograph metal, Friday

&#12943;&#x328f;circled ideograph earth, Saturday

&#12944;&#x3290;circled ideograph sun, Sunday

&#12945;&#x3291;circled ideograph stock, incorporated

&#12946;&#x3292;circled ideograph have, limited

&#12947;&#x3293;circled ideograph society, company

&#12948;&#x3294;circled ideograph name

&#12949;&#x3295;circled ideograph special

&#12950;&#x3296;circled ideograph financial

&#12951;&#x3297;circled ideograph congratulation

&#12952;&#x3298;circled ideograph labor

&#12953;&#x3299;circled ideograph secret

&#12954;&#x329a;circled ideograph male

&#12955;&#x329b;circled ideograph female

&#12956;&#x329c;circled ideograph suitable

&#12957;&#x329d;circled ideograph excellent

&#12958;&#x329e;circled ideograph print

&#12959;&#x329f;circled ideograph attention

&#12960;&#x32a0;circled ideograph item

&#12961;&#x32a1;circled ideograph rest, holiday

&#12962;&#x32a2;circled ideograph copy

&#12963;&#x32a3;circled ideograph correct

&#12964;&#x32a4;circled ideograph high

&#12965;&#x32a5;circled ideograph centre

&#12966;&#x32a6;circled ideograph low

&#12967;&#x32a7;circled ideograph left

&#12968;&#x32a8;circled ideograph right

&#12969;&#x32a9;circled ideograph medicine

&#12970;&#x32aa;circled ideograph religion

&#12971;&#x32ab;circled ideograph study

&#12972;&#x32ac;circled ideograph supervise

&#12973;&#x32ad;circled ideograph enterprise

&#12974;&#x32ae;circled ideograph resource

&#12975;&#x32af;circled ideograph alliance

&#12976;&#x32b0;circled ideograph night

Telegraph symbols for months

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#12992;&#x32c0;ideographic telegraph symbol for January

&#12992;&#x32c1;ideographic telegraph symbol for February

&#12992;&#x32c2;ideographic telegraph symbol for March

&#12992;&#x32c3;ideographic telegraph symbol for April

&#12992;&#x32c4;ideographic telegraph symbol for May

&#12992;&#x32c5;ideographic telegraph symbol for June

&#12992;&#x32c6;ideographic telegraph symbol for July

&#12992;&#x32c7;ideographic telegraph symbol for August

&#12992;&#x32c8;ideographic telegraph symbol for September

&#12992;&#x32c9;ideographic telegraph symbol for October

&#12992;&#x32ca;ideographic telegraph symbol for November

&#12992;&#x32cb;ideographic telegraph symbol for December

Circled Katakana

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13008;&#x32d0;circled katakana A

&#13009;&#x32d1;circled katakana I

&#13010;&#x32d2;circled katakana U

&#13011;&#x32d3;circled katakana E

&#13012;&#x32d4;circled katakana O

&#13013;&#x32d5;circled katakana Ka

&#13014;&#x32d6;circled katakana Ki

&#13015;&#x32d7;circled katakana Ku

&#13016;&#x32d8;circled katakana Ke

&#13017;&#x32d9;circled katakana Ko

&#13018;&#x32da;circled katakana Sa

&#13019;&#x32db;circled katakana Si

&#13020;&#x32dc;circled katakana Su

&#13021;&#x32dd;circled katakana Se

&#13022;&#x32de;circled katakana So

&#13023;&#x32df;circled katakana Ta

&#13024;&#x32e0;circled katakana Ti

&#13025;&#x32e1;circled katakana Tu

&#13026;&#x32e2;circled katakana Te

&#13027;&#x32e3;circled katakana To

&#13028;&#x32e4;circled katakana Na

&#13029;&#x32e5;circled katakana Ni

&#13030;&#x32e6;circled katakana Nu

&#13031;&#x32e7;circled katakana Ne

&#13032;&#x32e8;circled katakana No

&#13033;&#x32e9;circled katakana Ha

&#13034;&#x32ea;circled katakana Hi

&#13035;&#x32eb;circled katakana Hu

&#13036;&#x32ec;circled katakana He

&#13037;&#x32ed;circled katakana Ho

&#13038;&#x32ee;circled katakana Ma

&#13039;&#x32ef;circled katakana Mi

&#13040;&#x32f0;circled katakana Mu

&#13041;&#x32f1;circled katakana Me

&#13042;&#x32f2;circled katakana Mo

&#13043;&#x32f3;circled katakana Ya

&#13044;&#x32f4;circled katakana Yu

&#13045;&#x32f5;circled katakana Yo

&#13046;&#x32f6;circled katakana Ra

&#13047;&#x32f7;circled katakana Ri

&#13048;&#x32f8;circled katakana Ru

&#13049;&#x32f9;circled katakana Re

&#13050;&#x32fa;circled katakana Ro

&#13051;&#x32fb;circled katakana Wa

&#13052;&#x32fc;circled katakana Wi

&#13053;&#x32fd;circled katakana We

&#13054;&#x32fe;circled katakana Wo


CJK互換用文字
CJK Compatibility

Squared Katakana words

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13056;&#x3300;square Apaato, apartment

&#13057;&#x3301;square Aruhua, alpha

&#13058;&#x3302;square Anpea, ampere

&#13059;&#x3303;square Aru, are (unit of area)

&#13060;&#x3304;square Iningu, inning

&#13061;&#x3305;square Inti, inch

&#13062;&#x3306;square Uon, won (Korean currency)

&#13063;&#x3307;square Esukuudo, escudo (Portuguese currency)

&#13064;&#x3308;square Eekaa, acre

&#13065;&#x3309;square Onsu, ounce

&#13066;&#x330a;square Oomu, ohm

&#13067;&#x330b;square Kairi, kai-ri: nautical mile

&#13068;&#x330c;square Karatto, carat

&#13069;&#x330d;square Karorii, calorie

&#13070;&#x330e;square Garon, gallon

&#13071;&#x330f;square Ganma, gamma

&#13072;&#x3310;square Giga, giga-

&#13073;&#x3311;square Ginii, guinea

&#13074;&#x3312;square Kyurii, curie

&#13075;&#x3313;square Girudaa, guilder

&#13076;&#x3314;square Kiro, kilo-

&#13077;&#x3315;square Kiroguramu, kilogram

&#13078;&#x3316;square Kiromeetoru, kilometer

&#13079;&#x3317;square Kirowatto, kilowatt

&#13080;&#x3318;square guramu, gram

&#13081;&#x3319;square Guramuton, gram ton

&#13082;&#x331a;square Kuruzeiro, cruzeiro (Brazilian currency)

&#13083;&#x331b;square Kuroone, krone

&#13084;&#x331c;square Keesu, case

&#13085;&#x331d;square Koruna, koruna (Czech currency)

&#13086;&#x331e;square Koopo, co-op

&#13087;&#x331f;square Saikuru, cycle

&#13088;&#x3320;square Santiimu, centime

&#13089;&#x3321;square Siringu, shilling

&#13090;&#x3322;square Senti, centi-

&#13091;&#x3323;square Sento, cent

&#13092;&#x3324;square Daasu, dozen

&#13093;&#x3325;square Desi, deci-

&#13094;&#x3326;square Doru, dollar

&#13095;&#x3327;square Ton, ton

&#13096;&#x3328;square Nano, nono-

&#13097;&#x3329;square Notto, knot, nautical mile

&#13098;&#x332a;square Haitu, heights

&#13099;&#x332b;square Paasento, percent

&#13100;&#x332c;square Paatu, parts

&#13101;&#x332d;square Baareru, barrel

&#13102;&#x332e;square Piasutoru, piaster

&#13103;&#x332f;square Pikuru, picul (unit of weight)

&#13104;&#x3330;square Piko, pico-

&#13105;&#x3331;square Biru, building

&#13106;&#x3332;square Huaraddo, farad

&#13107;&#x3333;square Huiito, feet

&#13108;&#x3334;square Bussyeru, bushel

&#13109;&#x3335;square Huran, franc

&#13110;&#x3336;square Hekuraaru, hectare

&#13111;&#x3337;square Peso, peso

&#13112;&#x3338;square Penihi, pfennig

&#13113;&#x3339;square Herutu, hertz

&#13114;&#x333a;square Pensu, pence

&#13115;&#x333b;square Peezi, page

&#13116;&#x333c;square Beeta, beta

&#13117;&#x333d;square Pointo, point

&#13118;&#x333e;square Boruto, volt, bolt

&#13119;&#x333f;square Hon, volume

&#13120;&#x3340;square Pondo, pound

&#13121;&#x3341;square Hooru, hall

&#13122;&#x3342;square Hoon, horn

&#13123;&#x3343;square Maikuro, micro-

&#13124;&#x3344;square Mairu, mile

&#13125;&#x3345;square Mahha, mach

&#13126;&#x3346;square Maruku, mark

&#13127;&#x3347;square Mansyon, mansion (i.e. better quality apartment)

&#13128;&#x3348;square Mikuron, micron

&#13129;&#x3349;square Miri, milli-

&#13130;&#x334a;square Miribaaru, millibar

&#13131;&#x334b;square Mega, mega-

&#13132;&#x334c;square Metaton, metaton

&#13133;&#x334d;square Meetoru, meter

&#13134;&#x334e;square Yaado, yard

&#13135;&#x334f;square Yaaru, yard

&#13136;&#x3350;square Yuan, yuan (Chinese currency)

&#13137;&#x3351;square Rittoru, liter

&#13138;&#x3352;square Rira, lira

&#13139;&#x3353;square Rupii, rupee

&#13140;&#x3354;square Ruuburu, ruble

&#13141;&#x3355;square Remu, rem (unit of radiation)

&#13142;&#x3356;square Rentogen, roentgen

&#13143;&#x3357;square Watto, watt

Telegraph symbols for hours

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13143;&#x3358;ideographic telegraph symbol for hour zero

&#13144;&#x3359;ideographic telegraph symbol for hour one

&#13145;&#x335a;ideographic telegraph symbol for hour two

&#13146;&#x335b;ideographic telegraph symbol for hour three

&#13147;&#x335c;ideographic telegraph symbol for hour four

&#13148;&#x335d;ideographic telegraph symbol for hour five

&#13149;&#x335e;ideographic telegraph symbol for hour six

&#13150;&#x335f;ideographic telegraph symbol for hour seven

&#13151;&#x3360;ideographic telegraph symbol for hour eight

&#13152;&#x3361;ideographic telegraph symbol for hour nine

&#13153;&#x3362;ideographic telegraph symbol for hour ten

&#13154;&#x3363;ideographic telegraph symbol for hour eleven

&#13155;&#x3364;ideographic telegraph symbol for hour twelve

&#13156;&#x3365;ideographic telegraph symbol for hour thirteen

&#13157;&#x3366;ideographic telegraph symbol for hour fourteen

&#13158;&#x3367;ideographic telegraph symbol for hour fifteen

&#13159;&#x3368;ideographic telegraph symbol for hour sixteen

&#13160;&#x3369;ideographic telegraph symbol for hour seventeen

&#13161;&#x336a;ideographic telegraph symbol for hour eighteen

&#13162;&#x336b;ideographic telegraph symbol for hour nineteen

&#13163;&#x336c;ideographic telegraph symbol for hour twenty

&#13164;&#x336d;ideographic telegraph symbol for hour twenty-one

&#13165;&#x336e;ideographic telegraph symbol for hour twenty-two

&#13166;&#x336f;ideographic telegraph symbol for hour twenty-three

&#13167;&#x3370;ideographic telegraph symbol for hour twenty-four

Squared Latin abbreviations

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13169;&#x3371;square HPA

&#13170;&#x3372;square da

&#13171;&#x3373;square AU

&#13172;&#x3374;square bar

&#13173;&#x3375;square oV

&#13174;&#x3376;square pc

&#13175;&#x3377;square dm

&#13176;&#x3378;square dm squared

&#13177;&#x3379;square dm cubed

&#13178;&#x337a;square IU

&#13184;&#x3380;square pA

&#13185;&#x3381;square nA

&#13186;&#x3382;square mu A

&#13187;&#x3383;square mA

&#13188;&#x3384;square kA

&#13189;&#x3385;square KB

&#13190;&#x3386;square MB

&#13191;&#x3387;square GB

&#13192;&#x3388;square cal

&#13193;&#x3389;square kcal

&#13194;&#x338a;square pF

&#13195;&#x338b;square nF

&#13196;&#x338c;square mu F

&#13197;&#x338d;square mu g

&#13198;&#x338e;square mg

&#13199;&#x338f;square kg

&#13200;&#x3390;square Hz

&#13201;&#x3391;square kHz

&#13202;&#x3392;square MHz

&#13203;&#x3393;square GHz

&#13204;&#x3394;square THz

&#13205;&#x3395;square mu l

&#13206;&#x3396;square ml

&#13207;&#x3397;square dl

&#13208;&#x3398;square kl

&#13209;&#x3399;square fm

&#13210;&#x339a;square nm

&#13211;&#x339b;square mu m

&#13212;&#x339c;square mm

&#13213;&#x339d;square cm

&#13214;&#x339e;square km

&#13215;&#x339f;square mm squared

&#13216;&#x33a0;square cm squared

&#13217;&#x33a1;square m squared

&#13218;&#x33a2;square km squared

&#13219;&#x33a3;square mm cubed

&#13220;&#x33a4;square cm cubed

&#13221;&#x33a5;square m cubed

&#13222;&#x33a6;square km cubed

&#13223;&#x33a7;square m over s

&#13224;&#x33a8;square m over s squared

&#13225;&#x33a9;square Pa

&#13226;&#x33aa;square kPa

&#13227;&#x33ab;square MPa

&#13228;&#x33ac;square GPa

&#13229;&#x33ad;square rad

&#13230;&#x33ae;square rad over s

&#13231;&#x33af;square rad over s squared

&#13232;&#x33b0;square ps

&#13233;&#x33b1;square ns

&#13234;&#x33b2;square mu s

&#13235;&#x33b3;square ms

&#13236;&#x33b4;square pV

&#13237;&#x33b5;square nV

&#13238;&#x33b6;square mu V

&#13239;&#x33b7;square mV

&#13240;&#x33b8;square kV

&#13241;&#x33b9;square MV

&#13242;&#x33ba;square pW

&#13243;&#x33bb;square nW

&#13244;&#x33bc;square mu W

&#13245;&#x33bd;square mW

&#13246;&#x33be;square kW

&#13247;&#x33bf;square MW

&#13248;&#x33c0;square k ohm

&#13249;&#x33c1;square M ohm

&#13250;&#x33c2;square a.m.

&#13251;&#x33c3;square Bq

&#13252;&#x33c4;square cc

&#13253;&#x33c5;square cd

&#13254;&#x33c6;square C over kg

&#13255;&#x33c7;square Co.

&#13256;&#x33c8;square dB

&#13257;&#x33c9;square Gy

&#13258;&#x33ca;square ha

&#13259;&#x33cb;square HP

&#13260;&#x33cc;square in

&#13261;&#x33cd;square K.K.

&#13262;&#x33ce;square KM

&#13263;&#x33cf;square kt

&#13264;&#x33d0;square lm

&#13265;&#x33d1;square ln

&#13266;&#x33d2;square log

&#13267;&#x33d3;square lx

&#13268;&#x33d4;square mb

&#13269;&#x33d5;square mil

&#13270;&#x33d6;square mol

&#13271;&#x33d7;square pH

&#13272;&#x33d8;square p.m.

&#13273;&#x33d9;square PPM

&#13274;&#x33da;square PR

&#13275;&#x33db;square sr

&#13276;&#x33dc;square Sv

&#13277;&#x33dd;square Wb

&#13278;&#x33de;square v over m

&#13279;&#x33df;square a over m

&#13311;&#x33ff;square gal

Japanese era names

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13178;&#x337b;square era name Heisei

&#13179;&#x337c;square era name Syouwa

&#13180;&#x337d;square era name Taisyou

&#13181;&#x337e;square era name Meizi

Japanese corporation

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13182;&#x337f;square corporation, kabusiki-gaisya, incorporated

Telegraph symbols for days

表示文字実体参照数値文字参照
(10進数)
数値文字参照
(16進数)
備考

&#13280;&#x33e0;ideographic telegraph symbol for day one

&#13281;&#x33e1;ideographic telegraph symbol for day two

&#13282;&#x33e2;ideographic telegraph symbol for day three

&#13283;&#x33e3;ideographic telegraph symbol for day four

&#13284;&#x33e4;ideographic telegraph symbol for day five

&#13285;&#x33e5;ideographic telegraph symbol for day six

&#13286;&#x33e6;ideographic telegraph symbol for day seven

&#13287;&#x33e7;ideographic telegraph symbol for day eight

&#13288;&#x33e8;ideographic telegraph symbol for day nine

&#13289;&#x33e9;ideographic telegraph symbol for day ten

&#13290;&#x33ea;ideographic telegraph symbol for day eleven

&#13291;&#x33eb;ideographic telegraph symbol for day twelve

&#13291;&#x33ec;ideographic telegraph symbol for day thirteen

&#13292;&#x33ed;ideographic telegraph symbol for day fourteen

&#13293;&#x33ee;ideographic telegraph symbol for day fifteen

&#13294;&#x33ef;ideographic telegraph symbol for day sixteen

&#13295;&#x33f0;ideographic telegraph symbol for day seventeen

&#13296;&#x33f1;ideographic telegraph symbol for day eighteen

&#13297;&#x33f2;ideographic telegraph symbol for day nineteen

&#13298;&#x33f3;ideographic telegraph symbol for day twenty

&#13299;&#x33f4;ideographic telegraph symbol for day twenty-one

&#13300;&#x33f5;ideographic telegraph symbol for day twenty-two

&#13301;&#x33f6;ideographic telegraph symbol for day twenty-three

&#13302;&#x33f7;ideographic telegraph symbol for day twenty-four

&#13303;&#x33f8;ideographic telegraph symbol for day twenty-five

&#13304;&#x33f9;ideographic telegraph symbol for day twenty-six

&#13305;&#x33fa;ideographic telegraph symbol for day twenty-seven

&#13306;&#x33fb;ideographic telegraph symbol for day twenty-eight

&#13307;&#x33fc;ideographic telegraph symbol for day twenty-nine

&#13308;&#x33fd;ideographic telegraph symbol for day thirty

&#13309;&#x33fe;ideographic telegraph symbol for day thirty-one


補足:
  • IE4.0 や NN4.0 以前のウェブブラウザでは、十六進数表記はサポートされていない。
  • HTML 4.0 では、style 属性に用いる文字参照は展開されるが、style 要素に用いる文字参照は展開されない。
  • XHTML 1.0 では、アポストロフィ(')の文字実体参照として 「&apos;」が追加された。




▣ 概要

▣ 基本ラテン文字
Uppercase Latin alphabet / Lowercase Latin alphabet / ASCII digits / ASCII punctuation and symbols / C0 controls

▣ ラテン1補助
Letters / Latin-1 punctuation and symbols / Mathematical operator / C1 ccntrols

▣ ラテン文字拡張A
European Latin

▣ ラテン文字拡張B
Non-European and historic Latin / Phonetic and historic letters

▣ 前進を伴う修飾文字
Miscellaneous phonetic modifiers / Spacing clones of diacritics

▣ ギリシャ文字及びコプト文字
Letters / Variant letterforms and symbols

▣ ヘブライ文字
Based on ISO 8859-8

▣ アラビア文字
Based on ISO 8859-6 / Arabic-Indic digits

▣ 一般句読点
Spaces / Format characters / Dashes / General punctuation

▣ 通貨記号
Currency Symbols

▣ 文字様記号
Letterlike Symbols / Hebrew letterlike math symbols / Additional letterlike symbols / Lowercase Claudian letter

▣ 数字に準じるもの
Fractions / Roman numerals

▣ 矢印
Simple arrows / Keyboard symbols and circle arrows / Double arrows

▣ 数学記号
Miscellaneous mathematical symbols / Set membership / Operators / N-ary operators / Logical and set operators / Integrals / Relations

▣ その他の数学記号 A
Miscellaneous symbols

▣ その他の技術用記号
Corner brackets / GUI icons / Angle brackets

▣ 幾何学模様
Geometric shapes

▣ その他の記号
Miscellaneous Symbols / Weather and astrological symbols / Japanese chess symbols / Pointing hand symbols / Warning signs / Religious and political symbols / Playing card symbols / Musical symbols

▣ CJKの記号及び句読点
CJK symbols and punctuation / CJK brackets / Suzhou numerals / Diacritics

▣ 漢文用記号
kanbun

▣ 囲みCJK文字・月
Parenthesized Hangul elements / Parenthesized Hangul syllables / Parenthesized Korean words / Parenthesized ideographs / Squared Latin abbreviations / ▣ Symbol / Circled ideographs / Telegraph symbols for months / Circled Katakana

▣ CJK互換用文字
Squared Katakana words / Telegraph symbols for hours / Squared Latin abbreviations / Japanese era names / Japanese corporation / Telegraph symbols for days



益子貴寛 著
Web標準の教科書
−XHTMLとCSSでつくる
"正しい"Webサイト


ジェフリー・ゼルドマン 著
DESIGNING WITH
WEB STANDARDS
−XHTML+CSSを中心とした
Web標準によるデザインの実践


Dan Cederholm 著
Web標準デザインテクニック即戦ワークブック
−XHTML+CSSを正しく賢く書くための15問


MdN編集部 著
プロとして恥ずかしくない
デザインの大原則


MdN編集部 著
プロとして恥ずかしくないWEBデザインの大原則


MdN編集部 著
プロとして恥ずかしくないWEBレイアウトの大原則


MdN編集部 著
プロとして恥ずかしくない
レイアウト&配色の大原則


MdN編集部 著
プロとして恥ずかしくない
スタイルシートの大原則


MdN編集部 著
プロとして恥ずかしくないJavaScriptの大原則


MdN編集部 著
プロとして恥ずかしくないFlashの大原則


MdN編集部 著
プロとして恥ずかしくないIllustratorの大原則


MdN編集部 著
プロとして恥ずかしくないPhotoshopの大原則


MdN編集部 著
プロとして恥ずかしくない
写真補正&加工の大原則


MdN編集部 著
プロとして恥ずかしくないDTPの大原則


Chuck Musciano 著
HTML & XHTML 第5版


エリック・A・メイヤ 著
CSS完全ガイド


クリストファー シュミット 著
CSSクックブック


MdN編集部 編
差がつくWEBデザインの技


WDG作成プロジェクト 著
プロジェクト始動から
サイトの設計・構築まで

Webディレクション
標準ガイド


佐藤好彦 著
ウェブサイト制作の
ワークフローと基礎技術


益子貴寛 著
伝わるWeb文章デザイン
100の鉄則


富士通総合DC
・富士通オフィス機器 著
Webアクセシビリティ
&ユーザビリティ 改訂版


石田優子 著
ウェブ・ユーザビリティ
&アクセシビリティ
・ガイドライン


池谷義紀 著
Webデザインユーザビリティ


武井由紀子 著
ユーザ中心
ウェブサイト戦略


小笠原たけし 著
プロがこっそり教える
ウェブ制作術
改訂第2版


WEB CREATORS LAB. 著
プロセス オブ ウェブデザイン



デル株式会社


デル株式会社


VALUE-DOMAIN.COM(バリュードメイン): ドメイン登録代行 及び XREAと提携するサーバ類での総合サービス。


  





ウイルスバスター ダウンロードストア

マカフィー・ストア
マカフィー・ストア
マカフィー・ストア
マカフィー・ストア
マカフィー・ストア
マカフィー・ストア
マカフィー・ストア
マカフィー・ストア

シマンテックダウンロードストア


デル株式会社




リンクシェア アフィリエイト紹介プログラム










©2001  ny@room40
©2006  liufeng.info
all rights reserved.