XML Character Entities

Working Draft 0.3, 13 June 2002

Document identifier:

wd-docbook-xmlcharent-0.3 (XML, HTML, PDF)

Location:

http://www.oasis-open.org/docbook/specs

Editor:

Norman Walsh, Sun Microsystems, Inc. <Norman.Walsh@Sun.COM>

Abstract:

This Standard defines XML encodings of the 19 standard character entity sets defined in Non-normative Annex D of [SGML].

Status:

This is a working draft constructed by the editor. It is not an official committee work product and may not reflect the consensus opinion of the committee.

Please send comments on this specification to the <docbook@lists.oasis-open.org> list. To subscribe, send an email message to <docbook-request@lists.oasis-open.org> with the word "subscribe" as the body of the message.


Table of Contents

1. XML Character Entity Sets
1.1. Multi-Character Replacements
1.2. Duplicate Entities
1.3. Entities with no Mapping
1.4. Entities with Substituted Mappings
2. XML Character Elements

Appendixes

A. Added Latin 1
B. Added Latin 2
C. Greek Letters
D. Monotoniko Greek
E. Russian Cyrillic
F. Non-Russian Cyrillic
G. Numeric and Special Graphic
H. Diacritical Marks
I. Publishing
J. Box and Line Drawing
K. General Technical
L. Greek Symbols
M. Alternative Greek Symbols
N. Added Math Symbols: Ordinary
O. Added Math Symbols: Binary Operators
P. Added Math Symbols: Relations
Q. Added Math Symbols: Negated Relations
R. Added Math Symbols: Arrow Relations
S. Added Math Symbols: Delimiters
T. Unicode Glyphs
U. OASIS DocBook Technical Committee (Non-Normative)
V. Notices
W. Intellectual Property Rights
X. Revision History
References

This Standard defines XML encodings of the standard SGML character entity sets.

Non-normative Annex D of [SGML] defines 19 standard SGML character entity sets: Added Latin 1, Added Latin 2, Greek Letters, Monotoniko Greek, Russian Cyrillic, Non-Russian Cyrillic, Numeric and Special Graphic, Diacritical Marks, Publishing, Box and Line Drawing, General Technical, Greek Symbols, Alternative Greek Symbols, Added Math Symbols: Ordinary, Added Math Symbols: Binary Operators, Added Math Symbols: Relations, Added Math Symbols: Negated Relations, Added Math Symbols: Arrow Relations, Added Math Symbols: Delimiters. The SGML declarations for these entities use the specific character data (SDATA) entity type that is not supported in XML, so alternative XML declarations are necessary.

In XML, the specific character data of most entities can be expressed as a [Unicode] character.

1. XML Character Entity Sets

The character entity sets defined by this Standard are summarized in Appendix A through Appendix S.

In order to use these entities in a document, they must be declared. Entities can be declared in the external subset or the internal subset, as described in [XML]. An example document, with the declaration in the internal subset, is shown in Example 1.

Example 1. Declaring and Using the ISO Latin 1 Character Entity Set

<!DOCTYPE doc [
<!ENTITY % iso-lat1 PUBLIC "ISO 8879:1986//ENTITIES Added Latin 1//EN//XML"
                    "http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-lat1.ent">
%iso-lat1;
]>
<doc>
<p>This document declares the ISO Latin 1 Character Entity Set, providing
access to the ISO Latin 1 entities, such as "&eacute;" and "&copy;".</p>
</doc>

Note

Non-validating XML Parsers may choose not to process externally declared entities. This Standard does not alter the semantics of XML processors. If a processor does not see the declaration for an entity, it will not be able to report the correct replacement text for that entity.

1.1. Multi-Character Replacements

The replacement text of some entities includes more than a single Unicode character. Some characters are composed with the "combining reverse solidus overlay" (20E5) and some are composed with a variation selector (FE00, FE01, …).

1.2. Duplicate Entities

Historically, the inodot entity is multiply defined in iso-lat2.ent and iso-amso.ent. If both entity sets are included, some parsers will warn about redefinition of this entity. The warning can be ignored.

1.3. Entities with no Mapping

There are a small number of entities that have no [Unicode] representation. These entities are all mapped to the Unicode character "FFFD", the "replacement character".

Entity
Name
Entity SetDescription
fjligiso-pub.entSmall fj ligature
gnapiso-amsn.entGreater, not approximate
jnodotiso-amso.entSmall j, no dot
lnapiso-amsn.entLess, not approximate
lpargtiso-amsc.entGreater than, left arc
nsmidiso-amsn.entNegated short mid
prnEiso-amsn.entPrecedes, not double equals
rpargtiso-amsc.entRight paren, greater than
scnEiso-amsn.entSucceeds, not double equals
smidiso-amsr.entshortmid r
vsubnEiso-amsn.entSubset not double equals, variant

Users needing these characters will have to rely on the private use area or other non-portable mechanisms to access them.

1.4. Entities with Substituted Mappings

There are a few more for which there is no specific [Unicode] representation but where a reasonable substitution has been used:

Entity
Name
Entity SetSubstitutionDescription
bepsiiso-amsr.ent220DBack epsilon: such that
gesiso-amsr.ent2265Greater-or-equal, slanted
gvnEiso-amsn.ent2269Gt, vert, not double equals
iffiso-tech.ent21D4If and only if
lesiso-amsr.ent2264Less-than-or-equal, slanted
lozfiso-pub.ent2726Lozenge, filled
lvnEiso-amsn.ent2268Less, vert, not double equals
ngeiso-amsn.ent2271Neither greater-than nor equal to
nleiso-amsn.ent2270Not less-than-or-equal
npreiso-amsn.ent22E0Not precedes, equals
nsceiso-amsn.ent22E1Not succeeds, equals
nspariso-amsn.ent2226Not short parallel
preiso-amsr.ent227CPrecedes, equals
spariso-amsr.ent2225Short parallel
ssetmniso-amsb.ent2216Small set minus (reverse solidus)
stariso-pub.ent22C6Star operator
starfiso-pub.ent2605Black star
thkapiso-amsr.ent2248Thick approximate
thksimiso-amsr.ent223CThick similar
vsubneiso-amsn.ent228ASubset, not equals, variant
vsupnEiso-amsn.ent228BSubset not double equals, variant
vsupneiso-amsn.ent228BSuperset, not equals, variant
xhArriso-amsa.ent2194Long left and right double arr
xharriso-amsa.ent2194Long left and right arr
xlArriso-amsa.ent21D0Long left double arrow
xrArriso-amsa.ent21D2Long right double arr
ssmileiso-amsr.ent2323Small smile
sfrowniso-amsr.ent2322Small frown

Users needing alternate glyphs for these characters will have to rely on redefining them to use the private use area or other non-portable mechanisms to access them.

2. XML Character Elements

Named XML entities (except for the five predefined entities) cannot be used if they are not declared. Entity declaration requires either an external or an internal subset. Some classes of applications forbid the occurrence of markup declarations in documents. For these documents, named character entities are inaccessible.

In this section, we introduce an XML vocabulary with the semantics of character entity reference. This Standard defines the semantics of elements and attributes declared in the "http://www.oasis-open.org/docbook/xmlcharent/names" namespace.

This namespace contains exactly one element, char. The char element has two attributes, entity and name. They are mutually exclusive.

The entity attribute identifies characters by their character entity names. (The set of valid names is the closed set of names associated with character entity sets defined by this Standard.) Case is significant in entity names.

The name attribute identifies characters by their Unicode character names. (The set of valid names is the set of character names published in the [Unicode] specification, or any later version of that specification.) Case is insignificant in character names.

The [RELAX NG] definition of this namespace is shown in figure Figure 1.

Figure 1. The RELAX NG Definition of the http://www.oasis-open.org/docbook/xmlcharent/names Namespace

<?xml version="1.0"?>
<grammar xmlns="http://relaxng.org/ns/structure/0.9"
         ns="http://www.oasis-open.org/docbook/xmlcharent/names">

<start>
  <element name="char">
    <choice>
      <attribute name="entity">
        <ref name="EntityNames"/>
      </attribute>
      <attribute name="name">
        <ref name="UnicodeNames"/>
      </attribute>
    </choice>
  </element>
</start>

<define name="EntityNames">
  <!-- Logically, this is the list of ISO 9573 Character Entity Names -->
  <!-- For now, just text. -->
  <text/>
</define>

<define name="UnicodeNames">
  <!-- Logically, this is the list of Unicode Character Names -->
  <!-- For now, just text. -->
  <text/>
</define>

</grammar>

Example 2 shows a sample document using this mechanism.

Example 2. Declaring and Using the ISO Latin 1 Character Entity Set

<doc xmlns:e="http://www.oasis-open.org/docbook/xmlcharent/names">
<p>This document uses the character names element to access
character entities, such as "<e:char name="eacute"/>" and
"<e:char name="COPYRIGHT SIGN"/>".</p>
</doc>

The character names element is limited to contexts where elements may occur. In particular, elements may not occur in XML attribute values. Note, however, that internationalization requirements such as bidirectional language support and Ruby already require structure in arbitrary contexts. It is probably an error to use attributes for human-readable content.

A. Added Latin 1

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Latin 1//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-lat1.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
aacute00E1
Unicode 00E1
small a, acute accent
Aacute00C1
Unicode 00C1
capital A, acute accent
acirc00E2
Unicode 00E2
small a, circumflex accent
Acirc00C2
Unicode 00C2
capital A, circumflex accent
agrave00E0
Unicode 00E0
small a, grave accent
Agrave00C0
Unicode 00C0
capital A, grave accent
aring00E5
Unicode 00E5
small a, ring
Aring00C5
Unicode 00C5
capital A, ring
atilde00E3
Unicode 00E3
small a, tilde
Atilde00C3
Unicode 00C3
capital A, tilde
auml00E4
Unicode 00E4
small a, dieresis or umlaut mark
Auml00C4
Unicode 00C4
capital A, dieresis or umlaut mark
aelig00E6
Unicode 00E6
small ae diphthong (ligature)
AElig00C6
Unicode 00C6
capital AE diphthong (ligature)
ccedil00E7
Unicode 00E7
small c, cedilla
Ccedil00C7
Unicode 00C7
capital C, cedilla
eth00F0
Unicode 00F0
small eth, Icelandic
ETH00D0
Unicode 00D0
capital Eth, Icelandic
eacute00E9
Unicode 00E9
small e, acute accent
Eacute00C9
Unicode 00C9
capital E, acute accent
ecirc00EA
Unicode 00EA
small e, circumflex accent
Ecirc00CA
Unicode 00CA
capital E, circumflex accent
egrave00E8
Unicode 00E8
small e, grave accent
Egrave00C8
Unicode 00C8
capital E, grave accent
euml00EB
Unicode 00EB
small e, dieresis or umlaut mark
Euml00CB
Unicode 00CB
capital E, dieresis or umlaut mark
iacute00ED
Unicode 00ED
small i, acute accent
Iacute00CD
Unicode 00CD
capital I, acute accent
icirc00EE
Unicode 00EE
small i, circumflex accent
Icirc00CE
Unicode 00CE
capital I, circumflex accent
igrave00EC
Unicode 00EC
small i, grave accent
Igrave00CC
Unicode 00CC
capital I, grave accent
iuml00EF
Unicode 00EF
small i, dieresis or umlaut mark
Iuml00CF
Unicode 00CF
capital I, dieresis or umlaut mark
ntilde00F1
Unicode 00F1
small n, tilde
Ntilde00D1
Unicode 00D1
capital N, tilde
oacute00F3
Unicode 00F3
small o, acute accent
Oacute00D3
Unicode 00D3
capital O, acute accent
ocirc00F4
Unicode 00F4
small o, circumflex accent
Ocirc00D4
Unicode 00D4
capital O, circumflex accent
ograve00F2
Unicode 00F2
small o, grave accent
Ograve00D2
Unicode 00D2
capital O, grave accent
oslash00F8
Unicode 00F8
small o, slash
Oslash00D8
Unicode 00D8
capital O, slash
otilde00F5
Unicode 00F5
small o, tilde
Otilde00D5
Unicode 00D5
capital O, tilde
ouml00F6
Unicode 00F6
small o, dieresis or umlaut mark
Ouml00D6
Unicode 00D6
capital O, dieresis or umlaut mark
szlig00DF
Unicode 00DF
small sharp s, German (sz ligature)
thorn00FE
Unicode 00FE
small thorn, Icelandic
THORN00DE
Unicode 00DE
capital THORN, Icelandic
uacute00FA
Unicode 00FA
small u, acute accent
Uacute00DA
Unicode 00DA
capital U, acute accent
ucirc00FB
Unicode 00FB
small u, circumflex accent
Ucirc00DB
Unicode 00DB
capital U, circumflex accent
ugrave00F9
Unicode 00F9
small u, grave accent
Ugrave00D9
Unicode 00D9
capital U, grave accent
uuml00FC
Unicode 00FC
small u, dieresis or umlaut mark
Uuml00DC
Unicode 00DC
capital U, dieresis or umlaut mark
yacute00FD
Unicode 00FD
small y, acute accent
Yacute00DD
Unicode 00DD
capital Y, acute accent
yuml00FF
Unicode 00FF
small y, dieresis or umlaut mark

B. Added Latin 2

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Latin 2//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-lat2.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
abreve0103
Unicode 0103
small a, breve
Abreve0102
Unicode 0102
capital A, breve
amacr0101
Unicode 0101
small a, macron
Amacr0100
Unicode 0100
capital A, macron
aogon0105
Unicode 0105
small a, ogonek
Aogon0104
Unicode 0104
capital A, ogonek
cacute0107
Unicode 0107
small c, acute accent
Cacute0106
Unicode 0106
capital C, acute accent
ccaron010D
Unicode 010D
small c, caron
Ccaron010C
Unicode 010C
capital C, caron
ccirc0109
Unicode 0109
small c, circumflex accent
Ccirc0108
Unicode 0108
capital C, circumflex accent
cdot010B
Unicode 010B
small c, dot above
Cdot010A
Unicode 010A
capital C, dot above
dcaron010F
Unicode 010F
small d, caron
Dcaron010E
Unicode 010E
capital D, caron
dstrok0111
Unicode 0111
small d, stroke
Dstrok0110
Unicode 0110
capital D, stroke
ecaron011B
Unicode 011B
small e, caron
Ecaron011A
Unicode 011A
capital E, caron
edot0117
Unicode 0117
small e, dot above
Edot0116
Unicode 0116
capital E, dot above
emacr0113
Unicode 0113
small e, macron
Emacr0112
Unicode 0112
capital E, macron
eogon0119
Unicode 0119
small e, ogonek
Eogon0118
Unicode 0118
capital E, ogonek
gacute01F5
Unicode 01F5
small g, acute accent
gbreve011F
Unicode 011F
small g, breve
Gbreve011E
Unicode 011E
capital G, breve
Gcedil0122
Unicode 0122
capital G, cedilla
gcirc011D
Unicode 011D
small g, circumflex accent
Gcirc011C
Unicode 011C
capital G, circumflex accent
gdot0121
Unicode 0121
small g, dot above
Gdot0120
Unicode 0120
capital G, dot above
hcirc0125
Unicode 0125
small h, circumflex accent
Hcirc0124
Unicode 0124
capital H, circumflex accent
hstrok0127
Unicode 0127
small h, stroke
Hstrok0126
Unicode 0126
capital H, stroke
Idot0130
Unicode 0130
capital I, dot above
Imacr012A
Unicode 012A
capital I, macron
imacr012B
Unicode 012B
small i, macron
ijlig0133
Unicode 0133
small ij ligature
IJlig0132
Unicode 0132
capital IJ ligature
inodot0131
Unicode 0131
small i, no dot
iogon012F
Unicode 012F
small i, ogonek
Iogon012E
Unicode 012E
capital I, ogonek
itilde0129
Unicode 0129
small i, tilde
Itilde0128
Unicode 0128
capital I, tilde
jcirc0135
Unicode 0135
small j, circumflex accent
Jcirc0134
Unicode 0134
capital J, circumflex accent
kcedil0137
Unicode 0137
small k, cedilla
Kcedil0136
Unicode 0136
capital K, cedilla
kgreen0138
Unicode 0138
small k, Greenlandic
lacute013A
Unicode 013A
small l, acute accent
Lacute0139
Unicode 0139
capital L, acute accent
lcaron013E
Unicode 013E
small l, caron
Lcaron013D
Unicode 013D
capital L, caron
lcedil013C
Unicode 013C
small l, cedilla
Lcedil013B
Unicode 013B
capital L, cedilla
lmidot0140
Unicode 0140
small l, middle dot
Lmidot013F
Unicode 013F
capital L, middle dot
lstrok0142
Unicode 0142
small l, stroke
Lstrok0141
Unicode 0141
capital L, stroke
nacute0144
Unicode 0144
small n, acute accent
Nacute0143
Unicode 0143
capital N, acute accent
eng014B
Unicode 014B
small eng, Lapp
ENG014A
Unicode 014A
capital ENG, Lapp
napos0149
Unicode 0149
small n, apostrophe
ncaron0148
Unicode 0148
small n, caron
Ncaron0147
Unicode 0147
capital N, caron
ncedil0146
Unicode 0146
small n, cedilla
Ncedil0145
Unicode 0145
capital N, cedilla
odblac0151
Unicode 0151
small o, double acute accent
Odblac0150
Unicode 0150
capital O, double acute accent
Omacr014C
Unicode 014C
capital O, macron
omacr014D
Unicode 014D
small o, macron
oelig0153
Unicode 0153
small oe ligature
OElig0152
Unicode 0152
capital OE ligature
racute0155
Unicode 0155
small r, acute accent
Racute0154
Unicode 0154
capital R, acute accent
rcaron0159
Unicode 0159
small r, caron
Rcaron0158
Unicode 0158
capital R, caron
rcedil0157
Unicode 0157
small r, cedilla
Rcedil0156
Unicode 0156
capital R, cedilla
sacute015B
Unicode 015B
small s, acute accent
Sacute015A
Unicode 015A
capital S, acute accent
scaron0161
Unicode 0161
small s, caron
Scaron0160
Unicode 0160
capital S, caron
scedil015F
Unicode 015F
small s, cedilla
Scedil015E
Unicode 015E
capital S, cedilla
scirc015D
Unicode 015D
small s, circumflex accent
Scirc015C
Unicode 015C
capital S, circumflex accent
tcaron0165
Unicode 0165
small t, caron
Tcaron0164
Unicode 0164
capital T, caron
tcedil0163
Unicode 0163
small t, cedilla
Tcedil0162
Unicode 0162
capital T, cedilla
tstrok0167
Unicode 0167
small t, stroke
Tstrok0166
Unicode 0166
capital T, stroke
ubreve016D
Unicode 016D
small u, breve
Ubreve016C
Unicode 016C
capital U, breve
udblac0171
Unicode 0171
small u, double acute accent
Udblac0170
Unicode 0170
capital U, double acute accent
umacr016B
Unicode 016B
small u, macron
Umacr016A
Unicode 016A
capital U, macron
uogon0173
Unicode 0173
small u, ogonek
Uogon0172
Unicode 0172
capital U, ogonek
uring016F
Unicode 016F
small u, ring
Uring016E
Unicode 016E
capital U, ring
utilde0169
Unicode 0169
small u, tilde
Utilde0168
Unicode 0168
capital U, tilde
wcirc0175
Unicode 0175
small w, circumflex accent
Wcirc0174
Unicode 0174
capital W, circumflex accent
ycirc0177
Unicode 0177
small y, circumflex accent
Ycirc0176
Unicode 0176
capital Y, circumflex accent
Yuml0178
Unicode 0178
capital Y, dieresis or umlaut mark
zacute017A
Unicode 017A
small z, acute accent
Zacute0179
Unicode 0179
capital Z, acute accent
zcaron017E
Unicode 017E
small z, caron
Zcaron017D
Unicode 017D
capital Z, caron
zdot017C
Unicode 017C
small z, dot above
Zdot017B
Unicode 017B
capital Z, dot above

C. Greek Letters

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Greek Letters//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-grk1.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
agr03B1
Unicode 03B1
small alpha, Greek
Agr0391
Unicode 0391
capital Alpha, Greek
bgr03B2
Unicode 03B2
small beta, Greek
Bgr0392
Unicode 0392
capital Beta, Greek
ggr03B3
Unicode 03B3
small gamma, Greek
Ggr0393
Unicode 0393
capital Gamma, Greek
dgr03B4
Unicode 03B4
small delta, Greek
Dgr0394
Unicode 0394
capital Delta, Greek
egr03B5
Unicode 03B5
small epsilon, Greek
Egr0395
Unicode 0395
capital Epsilon, Greek
zgr03B6
Unicode 03B6
small zeta, Greek
Zgr0396
Unicode 0396
capital Zeta, Greek
eegr03B7
Unicode 03B7
small eta, Greek
EEgr0397
Unicode 0397
capital Eta, Greek
thgr03B8
Unicode 03B8
small theta, Greek
THgr0398
Unicode 0398
capital Theta, Greek
igr03B9
Unicode 03B9
small iota, Greek
Igr0399
Unicode 0399
capital Iota, Greek
kgr03BA
Unicode 03BA
small kappa, Greek
Kgr039A
Unicode 039A
capital Kappa, Greek
lgr03BB
Unicode 03BB
small lambda, Greek
Lgr039B
Unicode 039B
capital Lambda, Greek
mgr03BC
Unicode 03BC
small mu, Greek
Mgr039C
Unicode 039C
capital Mu, Greek
ngr03BD
Unicode 03BD
small nu, Greek
Ngr039D
Unicode 039D
capital Nu, Greek
xgr03BE
Unicode 03BE
small xi, Greek
Xgr039E
Unicode 039E
capital Xi, Greek
ogr03BF
Unicode 03BF
small omicron, Greek
Ogr039F
Unicode 039F
capital Omicron, Greek
pgr03C0
Unicode 03C0
small pi, Greek
Pgr03A0
Unicode 03A0
capital Pi, Greek
rgr03C1
Unicode 03C1
small rho, Greek
Rgr03A1
Unicode 03A1
capital Rho, Greek
sgr03C3
Unicode 03C3
small sigma, Greek
Sgr03A3
Unicode 03A3
capital Sigma, Greek
sfgr03C2
Unicode 03C2
final small sigma, Greek
tgr03C4
Unicode 03C4
small tau, Greek
Tgr03A4
Unicode 03A4
capital Tau, Greek
ugr03C5
Unicode 03C5
small upsilon, Greek
Ugr03A5
Unicode 03A5
capital Upsilon, Greek
phgr03C6
Unicode 03C6
small phi, Greek
PHgr03A6
Unicode 03A6
capital Phi, Greek
khgr03C7
Unicode 03C7
small chi, Greek
KHgr03A7
Unicode 03A7
capital Chi, Greek
psgr03C8
Unicode 03C8
small psi, Greek
PSgr03A8
Unicode 03A8
capital Psi, Greek
ohgr03C9
Unicode 03C9
small omega, Greek
OHgr03A9
Unicode 03A9
capital Omega, Greek

D. Monotoniko Greek

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Monotoniko Greek//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-grk2.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
aacgr03AC
Unicode 03AC
small alpha, accent, Greek
Aacgr0386
Unicode 0386
capital Alpha, accent, Greek
eacgr03AD
Unicode 03AD
small epsilon, accent, Greek
Eacgr0388
Unicode 0388
capital Epsilon, accent, Greek
eeacgr03AE
Unicode 03AE
small eta, accent, Greek
EEacgr0389
Unicode 0389
capital Eta, accent, Greek
idigr03CA
Unicode 03CA
small iota, dieresis, Greek
Idigr03AA
Unicode 03AA
capital Iota, dieresis, Greek
iacgr03AF
Unicode 03AF
small iota, accent, Greek
Iacgr038A
Unicode 038A
capital Iota, accent, Greek
idiagr0390
Unicode 0390
small iota, dieresis, accent, Greek
oacgr03CC
Unicode 03CC
small omicron, accent, Greek
Oacgr038C
Unicode 038C
capital Omicron, accent, Greek
udigr03CB
Unicode 03CB
small upsilon, dieresis, Greek
Udigr03AB
Unicode 03AB
capital Upsilon, dieresis, Greek
uacgr03CD
Unicode 03CD
small upsilon, accent, Greek
Uacgr038E
Unicode 038E
capital Upsilon, accent, Greek
udiagr03B0
Unicode 03B0
small upsilon, dieresis, accent, Greek
ohacgr03CE
Unicode 03CE
small omega, accent, Greek
OHacgr038F
Unicode 038F
capital Omega, accent, Greek

E. Russian Cyrillic

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Russian Cyrillic//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-cyr1.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
acy0430
Unicode 0430
small a, Cyrillic
Acy0410
Unicode 0410
capital A, Cyrillic
bcy0431
Unicode 0431
small be, Cyrillic
Bcy0411
Unicode 0411
capital BE, Cyrillic
vcy0432
Unicode 0432
small ve, Cyrillic
Vcy0412
Unicode 0412
capital VE, Cyrillic
gcy0433
Unicode 0433
small ghe, Cyrillic
Gcy0413
Unicode 0413
capital GHE, Cyrillic
dcy0434
Unicode 0434
small de, Cyrillic
Dcy0414
Unicode 0414
capital DE, Cyrillic
iecy0435
Unicode 0435
small ie, Cyrillic
IEcy0415
Unicode 0415
capital IE, Cyrillic
iocy0451
Unicode 0451
small io, Russian
IOcy0401
Unicode 0401
capital IO, Russian
zhcy0436
Unicode 0436
small zhe, Cyrillic
ZHcy0416
Unicode 0416
capital ZHE, Cyrillic
zcy0437
Unicode 0437
small ze, Cyrillic
Zcy0417
Unicode 0417
capital ZE, Cyrillic
icy0438
Unicode 0438
small i, Cyrillic
Icy0418
Unicode 0418
capital I, Cyrillic
jcy0439
Unicode 0439
small short i, Cyrillic
Jcy0419
Unicode 0419
capital short I, Cyrillic
kcy043A
Unicode 043A
small ka, Cyrillic
Kcy041A
Unicode 041A
capital KA, Cyrillic
lcy043B
Unicode 043B
small el, Cyrillic
Lcy041B
Unicode 041B
capital EL, Cyrillic
mcy043C
Unicode 043C
small em, Cyrillic
Mcy041C
Unicode 041C
capital EM, Cyrillic
ncy043D
Unicode 043D
small en, Cyrillic
Ncy041D
Unicode 041D
capital EN, Cyrillic
ocy043E
Unicode 043E
small o, Cyrillic
Ocy041E
Unicode 041E
capital O, Cyrillic
pcy043F
Unicode 043F
small pe, Cyrillic
Pcy041F
Unicode 041F
capital PE, Cyrillic
rcy0440
Unicode 0440
small er, Cyrillic
Rcy0420
Unicode 0420
capital ER, Cyrillic
scy0441
Unicode 0441
small es, Cyrillic
Scy0421
Unicode 0421
capital ES, Cyrillic
tcy0442
Unicode 0442
small te, Cyrillic
Tcy0422
Unicode 0422
capital TE, Cyrillic
ucy0443
Unicode 0443
small u, Cyrillic
Ucy0423
Unicode 0423
capital U, Cyrillic
fcy0444
Unicode 0444
small ef, Cyrillic
Fcy0424
Unicode 0424
capital EF, Cyrillic
khcy0445
Unicode 0445
small ha, Cyrillic
KHcy0425
Unicode 0425
capital HA, Cyrillic
tscy0446
Unicode 0446
small tse, Cyrillic
TScy0426
Unicode 0426
capital TSE, Cyrillic
chcy0447
Unicode 0447
small che, Cyrillic
CHcy0427
Unicode 0427
capital CHE, Cyrillic
shcy0448
Unicode 0448
small sha, Cyrillic
SHcy0428
Unicode 0428
capital SHA, Cyrillic
shchcy0449
Unicode 0449
small shcha, Cyrillic
SHCHcy0429
Unicode 0429
capital SHCHA, Cyrillic
hardcy044A
Unicode 044A
small hard sign, Cyrillic
HARDcy042A
Unicode 042A
capital HARD sign, Cyrillic
ycy044B
Unicode 044B
small yeru, Cyrillic
Ycy042B
Unicode 042B
capital YERU, Cyrillic
softcy044C
Unicode 044C
small soft sign, Cyrillic
SOFTcy042C
Unicode 042C
capital SOFT sign, Cyrillic
ecy044D
Unicode 044D
small e, Cyrillic
Ecy042D
Unicode 042D
capital E, Cyrillic
yucy044E
Unicode 044E
small yu, Cyrillic
YUcy042E
Unicode 042E
capital YU, Cyrillic
yacy044F
Unicode 044F
small ya, Cyrillic
YAcy042F
Unicode 042F
capital YA, Cyrillic
numero2116
Unicode 2116
numero sign

F. Non-Russian Cyrillic

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-cyr2.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
djcy0452
Unicode 0452
small dje, Serbian
DJcy0402
Unicode 0402
capital DJE, Serbian
gjcy0453
Unicode 0453
small gje, Macedonian
GJcy0403
Unicode 0403
capital GJE Macedonian
jukcy0454
Unicode 0454
small je, Ukrainian
Jukcy0404
Unicode 0404
capital JE, Ukrainian
dscy0455
Unicode 0455
small dse, Macedonian
DScy0405
Unicode 0405
capital DSE, Macedonian
iukcy0456
Unicode 0456
small i, Ukrainian
Iukcy0406
Unicode 0406
capital I, Ukrainian
yicy0457
Unicode 0457
small yi, Ukrainian
YIcy0407
Unicode 0407
capital YI, Ukrainian
jsercy0458
Unicode 0458
small je, Serbian
Jsercy0408
Unicode 0408
capital JE, Serbian
ljcy0459
Unicode 0459
small lje, Serbian
LJcy0409
Unicode 0409
capital LJE, Serbian
njcy045A
Unicode 045A
small nje, Serbian
NJcy040A
Unicode 040A
capital NJE, Serbian
tshcy045B
Unicode 045B
small tshe, Serbian
TSHcy040B
Unicode 040B
capital TSHE, Serbian
kjcy045C
Unicode 045C
small kje Macedonian
KJcy040C
Unicode 040C
capital KJE, Macedonian
ubrcy045E
Unicode 045E
small u, Byelorussian
Ubrcy040E
Unicode 040E
capital U, Byelorussian
dzcy045F
Unicode 045F
small dze, Serbian
DZcy040F
Unicode 040F
capital dze, Serbian

G. Numeric and Special Graphic

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-num.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
half00BD
Unicode 00BD
fraction one-half
frac1200BD
Unicode 00BD
fraction one-half
frac1400BC
Unicode 00BC
fraction one-quarter
frac3400BE
Unicode 00BE
fraction three-quarters
frac18215B
Unicode 215B
fraction one-eighth
frac38215C
Unicode 215C
fraction three-eighths
frac58215D
Unicode 215D
fraction five-eighths
frac78215E
Unicode 215E
fraction seven-eighths
sup100B9
Unicode 00B9
superscript one
sup200B2
Unicode 00B2
superscript two
sup300B3
Unicode 00B3
superscript three
plus002B
Unicode 002B
plus sign [Binary operator]
plusmn00B1
Unicode 00B1
plus-or-minus sign[Binary operator]
lt003C
Unicode 003C
less-than sign [Relation]
equals003D
Unicode 003D
equals sign [Relation]
gt003E
Unicode 003E
greater-than sign [Relation]
divide00F7
Unicode 00F7
divide sign[Binary operator]
times00D7
Unicode 00D7
multiply sign[Binary operator]
curren00A4
Unicode 00A4
general currency sign
pound00A3
Unicode 00A3
pound sign
dollar0024
Unicode 0024
dollar sign
cent00A2
Unicode 00A2
cent sign
yen00A5
Unicode 00A5
yen sign
num0023
Unicode 0023
number sign
percnt0025
Unicode 0025
percent sign
amp0026
Unicode 0026
ampersand
ast002A
Unicode 002A
asterisk[Binary operator]
commat0040
Unicode 0040
commercial at
lsqb005B
Unicode 005B
left square bracket[Opening delimiter]
bsol005C
Unicode 005C
reverse solidus
rsqb005D
Unicode 005D
right square bracket[Closing delimiter]
lcub007B
Unicode 007B
left curly bracket[Opening delimiter]
horbar2015
Unicode 2015
horizontal bar
verbar007C
Unicode 007C
vertical bar
rcub007D
Unicode 007D
right curly bracket[Closing delimiter]
micro00B5
Unicode 00B5
micro sign
ohm2126
Unicode 2126
ohm sign
deg00B0
Unicode 00B0
degree sign
ordm00BA
Unicode 00BA
ordinal indicator, masculine
ordf00AA
Unicode 00AA
ordinal indicator, feminine
sect00A7
Unicode 00A7
section sign
para00B6
Unicode 00B6
pilcrow (paragraph sign)
middot00B7
Unicode 00B7
middle dot[Binary operator]
larr2190
Unicode 2190
leftward arrow[Relation (arrow)]
rarr2192
Unicode 2192
rightward arrow[Relation (arrow)]
uarr2191
Unicode 2191
upward arrow[Relation (arrow)]
darr2193
Unicode 2193
downward arrow[Relation (arrow)]
copy00A9
Unicode 00A9
copyright sign
reg00AE
Unicode 00AE
registered sign
trade2122
Unicode 2122
trade mark sign
brvbar00A6
Unicode 00A6
broken (vertical) bar
not00AC
Unicode 00AC
not sign
sung 
Unicode  
music note (sung text sign)
excl0021
Unicode 0021
exclamation mark
iexcl00A1
Unicode 00A1
inverted exclamation mark
quot0022
Unicode 0022
quotation mark
apos0027
Unicode 0027
apostrophe
lpar0028
Unicode 0028
left parenthesis[Opening delimiter]
rpar0029
Unicode 0029
right parenthesis[Closing delimiter]
comma002C
Unicode 002C
comma[Punctuation]
lowbar005F
Unicode 005F
low line
hyphen002D
Unicode 002D
hyphen
period002E
Unicode 002E
full stop, period
sol002F
Unicode 002F
solidus
colon003A
Unicode 003A
 [Punctuation]
semi003B
Unicode 003B
semicolon [Punctuation]
quest003F
Unicode 003F
question mark
iquest00BF
Unicode 00BF
inverted question mark
laquo00AB
Unicode 00AB
angle quotation mark, left
raquo00BB
Unicode 00BB
angle quotation mark, right
lsquo2018
Unicode 2018
single quotation mark, left
rsquo2019
Unicode 2019
single quotation mark, right
ldquo201C
Unicode 201C
double quotation mark, left
rdquo201D
Unicode 201D
double quotation mark, right
nbsp00A0
Unicode 00A0
no break (required) space
shy00AD
Unicode 00AD
soft hyphen

H. Diacritical Marks

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Diacritical Marks//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-dia.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
acute00B4
Unicode 00B4
acute accent
breve02D8
Unicode 02D8
breve
caron02C7
Unicode 02C7
caron
cedil00B8
Unicode 00B8
cedilla
circ005E
Unicode 005E
circumflex accent
dblac02DD
Unicode 02DD
double acute accent
die00A8
Unicode 00A8
dieresis
dot02D9
Unicode 02D9
dot above
grave0060
Unicode 0060
grave accent
macr00AF
Unicode 00AF
macron
ogon02DB
Unicode 02DB
ogonek
ring02DA
Unicode 02DA
ring
tilde02DC
Unicode 02DC
tilde
uml00A8
Unicode 00A8
umlaut mark

I. Publishing

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Publishing//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-pub.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
emsp2003
Unicode 2003
em space
ensp2002
Unicode 2002
en space (1
emsp132004
Unicode 2004
1space
emsp142005
Unicode 2005
1space
numsp2007
Unicode 2007
digit space (width of a number)
puncsp2008
Unicode 2008
punctuation space (width of comma)
thinsp2009
Unicode 2009
thin space (1
hairsp200A
Unicode 200A
hair space
mdash2014
Unicode 2014
em dash
ndash2013
Unicode 2013
en dash
dash2010
Unicode 2010
hyphen (true graphic)
blank2423
Unicode 2423
significant blank symbol
hellip2026
Unicode 2026
ellipsis (horizontal)
nldr2025
Unicode 2025
double baseline dot (en leader)
frac132153
Unicode 2153
fraction one-third
frac232154
Unicode 2154
fraction two-thirds
frac152155
Unicode 2155
fraction one-fifth
frac252156
Unicode 2156
fraction two-fifths
frac352157
Unicode 2157
fraction three-fifths
frac452158
Unicode 2158
fraction four-fifths
frac162159
Unicode 2159
fraction one-sixth
frac56215A
Unicode 215A
fraction five-sixths
incare2105
Unicode 2105
in-care-of symbol
block2588
Unicode 2588
full block
uhblk2580
Unicode 2580
upper half block
lhblk2584
Unicode 2584
lower half block
blk142591
Unicode 2591
25% shaded block
blk122592
Unicode 2592
50% shaded block
blk342593
Unicode 2593
75% shaded block
marker25AE
Unicode 25AE
histogram marker
cir25CB
Unicode 25CB
circle, open[Binary operator]
squ25A1
Unicode 25A1
square, open
rect25AD
Unicode 25AD
rectangle, open
utri25B5
Unicode 25B5
up triangle, open
dtri25BF
Unicode 25BF
down triangle, open
star22C6
Unicode 22C6
star, open
bull2022
Unicode 2022
round bullet, filled[Binary operator]
squf25AA
Unicode 25AA
sq bullet, filled
utrif25B4
Unicode 25B4
up tri, filled
dtrif25BE
Unicode 25BE
dn tri, filled
ltrif25C2
Unicode 25C2
l tri, filled[Relation]
rtrif25B8
Unicode 25B8
r tri, filled[Relation]
clubs2663
Unicode 2663
club suit symbol
diams2666
Unicode 2666
diamond suit symbol
hearts2661
Unicode 2661
heart suit symbol
spades2660
Unicode 2660
spades suit symbol
malt2720
Unicode 2720
maltese cross
dagger2020
Unicode 2020
dagger[Binary operator]
Dagger2021
Unicode 2021
double dagger[Binary operator]
check2713
Unicode 2713
tick, check mark
cross2717
Unicode 2717
ballot cross
sharp266F
Unicode 266F
musical sharp
flat266D
Unicode 266D
musical flat
male2642
Unicode 2642
male symbol
female2640
Unicode 2640
female symbol
phone260E
Unicode 260E
telephone symbol
telrec2315
Unicode 2315
telephone recorder symbol
copysr2117
Unicode 2117
sound recording copyright sign
caret2041
Unicode 2041
caret (insertion mark)
lsquor201A
Unicode 201A
rising single quote, left (low)
ldquor201E
Unicode 201E
rising dbl quote, left (low)
ffligFB00
Unicode FB00
small ff ligature
filigFB01
Unicode FB01
small fi ligature
fjligFFFD
Unicode FFFD
small fj ligature
ffiligFB03
Unicode FB03
small ffi ligature
fflligFB04
Unicode FB04
small ffl ligature
flligFB02
Unicode FB02
small fl ligature
mldr2026
Unicode 2026
em leader
rdquor201D
Unicode 201D
rising dbl quote, right (high)
rsquor2019
Unicode 2019
rising single quote, right (high)
vellip22EE
Unicode 22EE
vertical ellipsis
hybull2043
Unicode 2043
rectangle, filled (hyphen bullet)
loz25CA
Unicode 25CA
- lozenge or total mark
lozf2726
Unicode 2726
- lozenge, filled
ltri25C3
Unicode 25C3
l triangle, open[Binary operator]
rtri25B9
Unicode 25B9
r triangle, open[Binary operator]
starf2605
Unicode 2605
- star, filled
natur266E
Unicode 266E
- music natural
rx211E
Unicode 211E
pharmaceutical prescription (Rx)
sext2736
Unicode 2736
sextile (6-pointed star)
target2316
Unicode 2316
register mark or target
dlcrop230D
Unicode 230D
downward left crop mark
drcrop230C
Unicode 230C
downward right crop mark
ulcrop230F
Unicode 230F
upward left crop mark
urcrop230E
Unicode 230E
upward right crop mark

J. Box and Line Drawing

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Box and Line Drawing//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-box.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
boxh2500
Unicode 2500
horizontal line
boxv2502
Unicode 2502
vertical line
boxur2514
Unicode 2514
upper right quadrant
boxul2518
Unicode 2518
upper left quadrant
boxdl2510
Unicode 2510
lower left quadrant
boxdr250C
Unicode 250C
lower right quadrant
boxvr251C
Unicode 251C
upper and lower right quadrants
boxhu2534
Unicode 2534
upper left and right quadrants
boxvl2524
Unicode 2524
upper and lower left quadrants
boxhd252C
Unicode 252C
lower left and right quadrants
boxvh253C
Unicode 253C
all four quadrants
boxvR255E
Unicode 255E
upper and lower right quadrants
boxhU2568
Unicode 2568
upper left and right quadrants
boxvL2561
Unicode 2561
upper and lower left quadrants
boxhD2565
Unicode 2565
lower left and right quadrants
boxvH256A
Unicode 256A
all four quadrants
boxH2550
Unicode 2550
horizontal line
boxV2551
Unicode 2551
vertical line
boxUR255A
Unicode 255A
upper right quadrant
boxUL255D
Unicode 255D
upper left quadrant
boxDL2557
Unicode 2557
lower left quadrant
boxDR2554
Unicode 2554
lower right quadrant
boxVR2560
Unicode 2560
upper and lower right quadrants
boxHU2569
Unicode 2569
upper left and right quadrants
boxVL2563
Unicode 2563
upper and lower left quadrants
boxHD2566
Unicode 2566
lower left and right quadrants
boxVH256C
Unicode 256C
all four quadrants
boxVr255F
Unicode 255F
upper and lower right quadrants
boxHu2567
Unicode 2567
upper left and right quadrants
boxVl2562
Unicode 2562
upper and lower left quadrants
boxHd2564
Unicode 2564
lower left and right quadrants
boxVh256B
Unicode 256B
all four quadrants
boxuR2558
Unicode 2558
upper right quadrant
boxUl255C
Unicode 255C
upper left quadrant
boxdL2555
Unicode 2555
lower left quadrant
boxDr2553
Unicode 2553
lower right quadrant
boxUr2559
Unicode 2559
upper right quadrant
boxuL255B
Unicode 255B
upper left quadrant
boxDl2556
Unicode 2556
lower left quadrant
boxdR2552
Unicode 2552
lower right quadrant

K. General Technical

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES General Technical//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-tech.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
aleph2135
Unicode 2135
aleph, Hebrew
and2227
Unicode 2227
logical and[Binary operator]
ang90221F
Unicode 221F
right (90 degree) angle
angsph2222
Unicode 2222
angle-spherical
ap2248
Unicode 2248
approximate[Relation]
becaus2235
Unicode 2235
because[Relation]
bottom22A5
Unicode 22A5
perpendicular[Binary operator]
cap2229
Unicode 2229
intersection[Binary operator]
cong2245
Unicode 2245
congruent with[Relation]
conint222E
Unicode 222E
contour integral operator[Large operator]
cup222A
Unicode 222A
union or logical sum[Binary operator]
equiv2261
Unicode 2261
identical with[Relation]
exist2203
Unicode 2203
at least one exists
forall2200
Unicode 2200
for all
fnof0192
Unicode 0192
function of (italic small f)
ge2265
Unicode 2265
greater-than-or-equal[Relation]
iff21D4
Unicode 21D4
if and only if
infin221E
Unicode 221E
infinity
int222B
Unicode 222B
integral operator[Large operator]
isin2208
Unicode 2208
set membership[Relation]
lang3008
Unicode 3008
left angle bracket[Opening delimiter]
lArr21D0
Unicode 21D0
is implied by[Relation (arrow)]
le2264
Unicode 2264
less-than-or-equal[Relation]
minus2212
Unicode 2212
minus sign[Binary operator]
mnplus2213
Unicode 2213
minus-or-plus sign[Binary operator]
nabla2207
Unicode 2207
del, Hamilton operator
ne2260
Unicode 2260
not equal[Relation]
ni220B
Unicode 220B
contains[Relation]
or2228
Unicode 2228
logical or[Binary operator]
par2225
Unicode 2225
parallel[Relation]
part2202
Unicode 2202
partial differential
permil2030
Unicode 2030
per thousand
perp22A5
Unicode 22A5
perpendicular[Relation]
prime2032
Unicode 2032
prime or minute
Prime2033
Unicode 2033
double prime or second
prop221D
Unicode 221D
is proportional to[Relation]
radic221A
Unicode 221A
radical
rang3009
Unicode 3009
right angle bracket[Closing delimiter]
rArr21D2
Unicode 21D2
implies[Relation (arrow)]
sim223C
Unicode 223C
similar[Relation]
sime2243
Unicode 2243
similar, equals[Relation]
square25A1
Unicode 25A1
square[Binary operator]
sub2282
Unicode 2282
subset or is implied by[Relation]
sube2286
Unicode 2286
subset, equals[Relation]
sup2283
Unicode 2283
superset or implies[Relation]
supe2287
Unicode 2287
superset, equals[Relation]
there42234
Unicode 2234
therefore[Relation]
Verbar2016
Unicode 2016
dbl vertical bar
angst212B
Unicode 212B
Angstrom =capital A, ring
bernou212C
Unicode 212C
Bernoulli function (script capital B)
compfn2218
Unicode 2218
composite function (small circle)[Binary operator]
Dot00A8
Unicode 00A8
dieresis or umlaut mark
DotDot20DC
Unicode 20DC
four dots above
hamilt210B
Unicode 210B
Hamiltonian (script capital H)
lagran2112
Unicode 2112
Lagrangian (script capital L)
lowast2217
Unicode 2217
low asterisk
notin2209
Unicode 2209
negated set membership[Relation (negated)]
order2134
Unicode 2134
order of (script small o)
phmmat2133
Unicode 2133
physics M-matrix (script capital M)
tdot20DB
Unicode 20DB
three dots above
tprime2034
Unicode 2034
triple prime
wedgeq2259
Unicode 2259
corresponds to (wedge, equals)[Relation]

L. Greek Symbols

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Greek Symbols//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-grk3.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
alpha03B1
Unicode 03B1
small alpha, Greek
beta03B2
Unicode 03B2
small beta, Greek
gamma03B3
Unicode 03B3
small gamma, Greek
Gamma0393
Unicode 0393
capital Gamma, Greek
gammad03DC
Unicode 03DC
 
delta03B4
Unicode 03B4
small delta, Greek
Delta0394
Unicode 0394
capital Delta, Greek
epsi03B5
Unicode 03B5
small epsilon, Greek
epsiv025B
Unicode 025B
 
epsis03B5
Unicode 03B5
 
zeta03B6
Unicode 03B6
small zeta, Greek
eta03B7
Unicode 03B7
small eta, Greek
thetas03B8
Unicode 03B8
straight theta
Theta0398
Unicode 0398
capital Theta, Greek
thetav03D1
Unicode 03D1
- curly or open theta
iota03B9
Unicode 03B9
small iota, Greek
kappa03BA
Unicode 03BA
small kappa, Greek
kappav03F0
Unicode 03F0
 
lambda03BB
Unicode 03BB
small lambda, Greek
Lambda039B
Unicode 039B
capital Lambda, Greek
mu03BC
Unicode 03BC
small mu, Greek
nu03BD
Unicode 03BD
small nu, Greek
xi03BE
Unicode 03BE
small xi, Greek
Xi039E
Unicode 039E
capital Xi, Greek
pi03C0
Unicode 03C0
small pi, Greek
piv03D6
Unicode 03D6
 
Pi03A0
Unicode 03A0
capital Pi, Greek
rho03C1
Unicode 03C1
small rho, Greek
rhov03F1
Unicode 03F1
 
sigma03C3
Unicode 03C3
small sigma, Greek
Sigma03A3
Unicode 03A3
capital Sigma, Greek
sigmav03C2
Unicode 03C2
 
tau03C4
Unicode 03C4
small tau, Greek
upsi03C5
Unicode 03C5
small upsilon, Greek
Upsi03D2
Unicode 03D2
capital Upsilon, Greek
phis03C6
Unicode 03C6
- straight phi
Phi03A6
Unicode 03A6
capital Phi, Greek
phiv03D5
Unicode 03D5
- curly or open phi
chi03C7
Unicode 03C7
small chi, Greek
psi03C8
Unicode 03C8
small psi, Greek
Psi03A8
Unicode 03A8
capital Psi, Greek
omega03C9
Unicode 03C9
small omega, Greek
Omega03A9
Unicode 03A9
capital Omega, Greek

M. Alternative Greek Symbols

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-grk4.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
b.alpha03B1
Unicode 03B1
small alpha, Greek
b.beta03B2
Unicode 03B2
small beta, Greek
b.gamma03B3
Unicode 03B3
small gamma, Greek
b.Gamma0393
Unicode 0393
capital Gamma, Greek
b.gammad03DC
Unicode 03DC
 
b.delta03B4
Unicode 03B4
small delta, Greek
b.Delta0394
Unicode 0394
capital Delta, Greek
b.epsi03B5
Unicode 03B5
small epsilon, Greek
b.epsiv025B
Unicode 025B
 
b.epsis03B5
Unicode 03B5
 
b.zeta03B6
Unicode 03B6
small zeta, Greek
b.eta03B7
Unicode 03B7
small eta, Greek
b.thetas03B8
Unicode 03B8
straight theta
b.Theta0398
Unicode 0398
capital Theta, Greek
b.thetav03D1
Unicode 03D1
- curly or open theta
b.iota03B9
Unicode 03B9
small iota, Greek
b.kappa03BA
Unicode 03BA
small kappa, Greek
b.kappav03F0
Unicode 03F0
 
b.lambda03BB
Unicode 03BB
small lambda, Greek
b.Lambda039B
Unicode 039B
capital Lambda, Greek
b.mu03BC
Unicode 03BC
small mu, Greek
b.nu03BD
Unicode 03BD
small nu, Greek
b.xi03BE
Unicode 03BE
small xi, Greek
b.Xi039E
Unicode 039E
capital Xi, Greek
b.pi03C0
Unicode 03C0
small pi, Greek
b.Pi03A0
Unicode 03A0
capital Pi, Greek
b.piv03D6
Unicode 03D6
 
b.rho03C1
Unicode 03C1
small rho, Greek
b.rhov03F1
Unicode 03F1
 
b.sigma03C3
Unicode 03C3
small sigma, Greek
b.Sigma03A3
Unicode 03A3
capital Sigma, Greek
b.sigmav03C2
Unicode 03C2
 
b.tau03C4
Unicode 03C4
small tau, Greek
b.upsi03C5
Unicode 03C5
small upsilon, Greek
b.Upsi03D2
Unicode 03D2
capital Upsilon, Greek
b.phis03C6
Unicode 03C6
- straight phi
b.Phi03A6
Unicode 03A6
capital Phi, Greek
b.phiv03D5
Unicode 03D5
- curly or open phi
b.chi03C7
Unicode 03C7
small chi, Greek
b.psi03C8
Unicode 03C8
small psi, Greek
b.Psi03A8
Unicode 03A8
capital Psi, Greek
b.omega03C9
Unicode 03C9
small omega, Greek
b.Omega03A9
Unicode 03A9
capital Omega, Greek

N. Added Math Symbols: Ordinary

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amso.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
ang2220
Unicode 2220
- angle
angmsd2221
Unicode 2221
- angle-measured
beth2136
Unicode 2136
- beth, Hebrew
bprime2035
Unicode 2035
- reverse prime
comp2201
Unicode 2201
- complement sign
daleth2138
Unicode 2138
- daleth, Hebrew
ell2113
Unicode 2113
- cursive small l
empty2205
Unicode 2205
small o, slash
gimel2137
Unicode 2137
- gimel, Hebrew
image2111
Unicode 2111
- imaginary
inodot0131
Unicode 0131
small i, no dot
jnodotFFFD
Unicode FFFD
- small j, no dot
nexist2204
Unicode 2204
- negated exists
oS24C8
Unicode 24C8
- capital S in circle
planck0127
Unicode 0127
- Planck's over 2pi
real211C
Unicode 211C
- real
sbsolFE68
Unicode FE68
- short reverse solidus
vprime2032
Unicode 2032
- prime, variant
weierp2118
Unicode 2118
- Weierstrass p

O. Added Math Symbols: Binary Operators

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amsb.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
amalg2201
Unicode 2201
amalgamation or coproduct[Binary operator]
Barwed22BC
Unicode 22BC
log and, dbl bar[Binary operator]
barwed22BC
Unicode 22BC
logical and, bar above[Binary operator]
Cap22D2
Unicode 22D2
dbl intersection[Binary operator]
Cup22D3
Unicode 22D3
dbl union[Binary operator]
cuvee22CE
Unicode 22CE
curly logical or[Binary operator]
cuwed22CF
Unicode 22CF
curly logical and[Binary operator]
diam22C4
Unicode 22C4
open diamond[Binary operator]
divonx22C7
Unicode 22C7
division on times[Binary operator]
intcal22BA
Unicode 22BA
intercal[Binary operator]
lthree22CB
Unicode 22CB
 [Binary operator]
ltimes22C9
Unicode 22C9
times sign, left closed[Binary operator]
minusb229F
Unicode 229F
minus sign in box[Binary operator]
oast229B
Unicode 229B
asterisk in circle[Binary operator]
ocir229A
Unicode 229A
open dot in circle[Binary operator]
odash229D
Unicode 229D
hyphen in circle[Binary operator]
odot2299
Unicode 2299
middle dot in circle[Binary operator]
ominus2296
Unicode 2296
minus sign in circle[Binary operator]
oplus2295
Unicode 2295
plus sign in circle[Binary operator]
osol2298
Unicode 2298
solidus in circle[Binary operator]
otimes2297
Unicode 2297
multiply sign in circle[Binary operator]
plusb229E
Unicode 229E
plus sign in box[Binary operator]
plusdo2214
Unicode 2214
plus sign, dot above[Binary operator]
rthree22CC
Unicode 22CC
 [Binary operator]
rtimes22CA
Unicode 22CA
times sign, right closed[Binary operator]
sdot22C5
Unicode 22C5
small middle dot[Binary operator]
sdotb22A1
Unicode 22A1
small dot in box[Binary operator]
setmn2216
Unicode 2216
reverse solidus[Binary operator]
sqcap2293
Unicode 2293
square intersection[Binary operator]
sqcup2294
Unicode 2294
square union[Binary operator]
ssetmn2216
Unicode 2216
sm reverse solidus[Binary operator]
sstarf22C6
Unicode 22C6
small star, filled[Binary operator]
timesb22A0
Unicode 22A0
multiply sign in box[Binary operator]
top22A4
Unicode 22A4
inverted perpendicular[Binary operator]
uplus228E
Unicode 228E
plus sign in union[Binary operator]
wreath2240
Unicode 2240
wreath product[Binary operator]
xcirc25EF
Unicode 25EF
large circle[Binary operator]
xdtri25BD
Unicode 25BD
big dn tri, open[Binary operator]
xutri25B3
Unicode 25B3
big up tri, open[Binary operator]
coprod2210
Unicode 2210
coproduct operator[Large operator]
prod220F
Unicode 220F
product operator[Large operator]
sum2211
Unicode 2211
summation operator[Large operator]

P. Added Math Symbols: Relations

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amsr.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
ape224A
Unicode 224A
approximate, equals[Relation]
asymp224D
Unicode 224D
asymptotically equal to[Relation]
bcong224C
Unicode 224C
reverse congruent[Relation]
bepsi220D
Unicode 220D
such that[Relation]
bowtie22C8
Unicode 22C8
 [Relation]
bsim223D
Unicode 223D
reverse similar[Relation]
bsime22CD
Unicode 22CD
reverse similar, eq[Relation]
bump224E
Unicode 224E
bumpy equals[Relation]
bumpe224F
Unicode 224F
bumpy equals, equals[Relation]
cire2257
Unicode 2257
circle, equals[Relation]
colone2254
Unicode 2254
colon, equals[Relation]
cuepr22DE
Unicode 22DE
curly eq, precedes[Relation]
cuesc22DF
Unicode 22DF
curly eq, succeeds[Relation]
cupre227C
Unicode 227C
curly precedes, eq[Relation]
dashv22A3
Unicode 22A3
dash, vertical[Relation]
ecir2256
Unicode 2256
circle on equals sign[Relation]
ecolon2255
Unicode 2255
equals, colon[Relation]
eDot2251
Unicode 2251
eq, even dots[Relation]
esdot2250
Unicode 2250
equals, single dot above[Relation]
efDot2252
Unicode 2252
eq, falling dots[Relation]
egs22DD
Unicode 22DD
equal-or-gtr, slanted[Relation]
els22DC
Unicode 22DC
eq-or-less, slanted[Relation]
erDot2253
Unicode 2253
eq, rising dots[Relation]
fork22D4
Unicode 22D4
pitchfork[Relation]
frown2322
Unicode 2322
down curve[Relation]
gap2273
Unicode 2273
greater, approximate[Relation]
gsdot22D7
Unicode 22D7
greater than, single dot[Relation]
gE2267
Unicode 2267
greater, double equals[Relation]
gel22DB
Unicode 22DB
greater, equals, less[Relation]
gEl22DB
Unicode 22DB
gt, dbl equals, less[Relation]
ges2265
Unicode 2265
gt-or-equal, slanted[Relation]
Gg22D9
Unicode 22D9
triple gtr-than[Relation]
gl2277
Unicode 2277
greater, less[Relation]
gsim2273
Unicode 2273
greater, similar[Relation]
Gt226B
Unicode 226B
dbl greater-than sign[Relation]
lap2272
Unicode 2272
less, approximate[Relation]
ldot22D6
Unicode 22D6
less than, with dot[Relation]
lE2266
Unicode 2266
less, double equals[Relation]
lEg22DA
Unicode 22DA
less, dbl eq, greater[Relation]
leg22DA
Unicode 22DA
less, eq, greater[Relation]
les2264
Unicode 2264
less-than-or-eq, slant[Relation]
lg2276
Unicode 2276
less, greater[Relation]
Ll22D8
Unicode 22D8
triple less-than[Relation]
lsim2272
Unicode 2272
less, similar[Relation]
Lt226A
Unicode 226A
double less-than sign[Relation]
ltrie22B4
Unicode 22B4
left triangle, eq[Relation]
mid2223
Unicode 2223
 [Relation]
models22A7
Unicode 22A7
 [Relation]
pr227A
Unicode 227A
precedes[Relation]
prap227E
Unicode 227E
precedes, approximate[Relation]
pre227C
Unicode 227C
precedes, equals[Relation]
prsim227E
Unicode 227E
precedes, similar[Relation]
rtrie22B5
Unicode 22B5
right tri, eq[Relation]
samalg2210
Unicode 2210
small amalg[Relation]
sc227B
Unicode 227B
succeeds[Relation]
scap227F
Unicode 227F
succeeds, approximate[Relation]
sccue227D
Unicode 227D
succeeds, curly eq[Relation]
sce227D
Unicode 227D
succeeds, equals[Relation]
scsim227F
Unicode 227F
succeeds, similar[Relation]
sfrown2322
Unicode 2322
small down curve[Relation]
smidFFFD
Unicode FFFD
 
smile2323
Unicode 2323
up curve[Relation]
spar2225
Unicode 2225
short parallel[Relation]
sqsub228F
Unicode 228F
square subset[Relation]
sqsube2291
Unicode 2291
square subset, equals[Relation]
sqsup2290
Unicode 2290
square superset[Relation]
sqsupe2292
Unicode 2292
square superset, eq[Relation]
ssmile2323
Unicode 2323
small up curve[Relation]
Sub22D0
Unicode 22D0
double subset[Relation]
subE2286
Unicode 2286
subset, dbl equals[Relation]
Sup22D1
Unicode 22D1
dbl superset[Relation]
supE2287
Unicode 2287
superset, dbl equals[Relation]
thkap2248
Unicode 2248
thick approximate[Relation]
thksim223C
Unicode 223C
thick similar[Relation]
trie225C
Unicode 225C
triangle, equals[Relation]
twixt226C
Unicode 226C
between[Relation]
vdash22A2
Unicode 22A2
vertical, dash[Relation]
Vdash22A9
Unicode 22A9
dbl vertical, dash[Relation]
vDash22A8
Unicode 22A8
vertical, dbl dash[Relation]
veebar22BB
Unicode 22BB
logical or, bar below[Relation]
vltri22B2
Unicode 22B2
l tri, open, var[Relation]
vprop221D
Unicode 221D
proportional, variant[Relation]
vrtri22B3
Unicode 22B3
r tri, open, var[Relation]
Vvdash22AA
Unicode 22AA
triple vertical, dash[Relation]

Q. Added Math Symbols: Negated Relations

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amsn.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
gnapFFFD
Unicode FFFD
greater, not approximate
gne2269
Unicode 2269
greater, not equals[Relation (negated)]
gnE2269
Unicode 2269
greater, not dbl equals[Relation (negated)]
gnsim22E7
Unicode 22E7
greater, not similar[Relation (negated)]
gvnE2269
Unicode 2269
gt, vert, not dbl eq[Relation (negated)]
lnapFFFD
Unicode FFFD
less, not approximate
lnE2268
Unicode 2268
less, not double equals[Relation (negated)]
lne2268
Unicode 2268
less, not equals[Relation (negated)]
lnsim22E6
Unicode 22E6
less, not similar[Relation (negated)]
lvnE2268
Unicode 2268
less, vert, not dbl eq[Relation (negated)]
nap2249
Unicode 2249
not approximate[Relation (negated)]
ncong2247
Unicode 2247
not congruent with[Relation (negated)]
nequiv2262
Unicode 2262
not identical with[Relation (negated)]
ngE2271
Unicode 2271
not greater, dbl equals[Relation (negated)]
nge2271
Unicode 2271
not greater-than-or-equal[Relation (negated)]
nges2271
Unicode 2271
not gt-or-eq, slanted[Relation (negated)]
ngt226F
Unicode 226F
not greater-than[Relation (negated)]
nle2270
Unicode 2270
not less-than-or-equal[Relation (negated)]
nlE2270
Unicode 2270
not less, dbl equals[Relation (negated)]
nles2270
Unicode 2270
not less-or-eq, slant[Relation (negated)]
nlt226E
Unicode 226E
not less-than[Relation (negated)]
nltri22EA
Unicode 22EA
not left triangle[Relation (negated)]
nltrie22EC
Unicode 22EC
not l tri, eq[Relation (negated)]
nmid2224
Unicode 2224
 
npar2226
Unicode 2226
not parallel[Relation (negated)]
npr2280
Unicode 2280
not precedes[Relation (negated)]
npre22E0
Unicode 22E0
not precedes, equals[Relation (negated)]
nrtri22EB
Unicode 22EB
not rt triangle[Relation (negated)]
nrtrie22ED
Unicode 22ED
not r tri, eq[Relation (negated)]
nsc2281
Unicode 2281
not succeeds[Relation (negated)]
nsce22E1
Unicode 22E1
not succeeds, equals[Relation (negated)]
nsim2241
Unicode 2241
not similar[Relation (negated)]
nsime2244
Unicode 2244
not similar, equals[Relation (negated)]
nsmidFFFD
Unicode FFFD
 
nspar2226
Unicode 2226
not short par[Relation (negated)]
nsub2284
Unicode 2284
not subset[Relation (negated)]
nsube2288
Unicode 2288
not subset, equals[Relation (negated)]
nsubE2288
Unicode 2288
not subset, dbl eq[Relation (negated)]
nsup2285
Unicode 2285
not superset[Relation (negated)]
nsupE2289
Unicode 2289
not superset, dbl eq[Relation (negated)]
nsupe2289
Unicode 2289
not superset, equals[Relation (negated)]
nvdash22AC
Unicode 22AC
not vertical, dash[Relation (negated)]
nvDash22AD
Unicode 22AD
not vertical, dbl dash[Relation (negated)]
nVDash22AF
Unicode 22AF
not dbl vert, dbl dash[Relation (negated)]
nVdash22AE
Unicode 22AE
not dbl vertical, dash[Relation (negated)]
prnap22E8
Unicode 22E8
precedes, not approx[Relation (negated)]
prnEFFFD
Unicode FFFD
precedes, not dbl eq
prnsim22E8
Unicode 22E8
precedes, not similar[Relation (negated)]
scnap22E9
Unicode 22E9
succeeds, not approx[Relation (negated)]
scnEFFFD
Unicode FFFD
succeeds, not dbl eq
scnsim22E9
Unicode 22E9
succeeds, not similar[Relation (negated)]
subne228A
Unicode 228A
subset, not equals[Relation (negated)]
subnE228A
Unicode 228A
subset, not dbl eq[Relation (negated)]
supne228B
Unicode 228B
superset, not equals[Relation (negated)]
supnE228B
Unicode 228B
superset, not dbl eq[Relation (negated)]
vsubnEFFFD
Unicode FFFD
subset not dbl eq, var
vsubne228A
Unicode 228A
subset, not eq, var[Relation (negated)]
vsupne228B
Unicode 228B
superset, not eq, var[Relation (negated)]
vsupnE228B
Unicode 228B
super not dbl eq, var[Relation (negated)]

R. Added Math Symbols: Arrow Relations

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amsa.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
cularr21B6
Unicode 21B6
left curved arrow [Relation (arrow)]
curarr21B7
Unicode 21B7
rt curved arrow [Relation (arrow)]
dArr21D3
Unicode 21D3
down dbl arrow [Relation (arrow)]
darr221CA
Unicode 21CA
two down arrows [Relation (arrow)]
dharl21C3
Unicode 21C3
dn harpoon-left [Relation (arrow)]
dharr21C2
Unicode 21C2
down harpoon-rt [Relation (arrow)]
lAarr21DA
Unicode 21DA
left triple arrow [Relation (arrow)]
Larr219E
Unicode 219E
 [Relation (arrow)]
larr221C7
Unicode 21C7
two left arrows [Relation (arrow)]
larrhk21A9
Unicode 21A9
left arrow-hooked [Relation (arrow)]
larrlp21AB
Unicode 21AB
left arrow-looped [Relation (arrow)]
larrtl21A2
Unicode 21A2
left arrow-tailed [Relation (arrow)]
lhard21BD
Unicode 21BD
l harpoon-down [Relation (arrow)]
lharu21BC
Unicode 21BC
left harpoon-up [Relation (arrow)]
hArr21D4
Unicode 21D4
l&r dbl arrow [Relation (arrow)]
harr2194
Unicode 2194
l&r arrow [Relation (arrow)]
lrarr221C6
Unicode 21C6
l arr over r arr [Relation (arrow)]
rlarr221C4
Unicode 21C4
r arr over l arr [Relation (arrow)]
harrw21AD
Unicode 21AD
l&r arr-wavy [Relation (arrow)]
rlhar221CC
Unicode 21CC
r harp over l [Relation (arrow)]
lrhar221CB
Unicode 21CB
l harp over r [Relation (arrow)]
lsh21B0
Unicode 21B0
 [Relation (arrow)]
map21A6
Unicode 21A6
 [Relation (arrow)]
mumap22B8
Unicode 22B8
 [Relation (arrow)]
nearr2197
Unicode 2197
NE pointing arrow [Relation (arrow)]
nlArr21CD
Unicode 21CD
not implied by [Relation (arrow)]
nlarr219A
Unicode 219A
not left arrow [Relation (arrow)]
nhArr21CE
Unicode 21CE
not l&r dbl arr [Relation (arrow)]
nharr21AE
Unicode 21AE
not l&r arrow [Relation (arrow)]
nrarr219B
Unicode 219B
not right arrow [Relation (arrow)]
nrArr21CF
Unicode 21CF
not implies [Relation (arrow)]
nwarr2196
Unicode 2196
NW pointing arrow [Relation (arrow)]
olarr21BA
Unicode 21BA
l arr in circle [Relation (arrow)]
orarr21BB
Unicode 21BB
r arr in circle [Relation (arrow)]
rAarr21DB
Unicode 21DB
right triple arrow [Relation (arrow)]
Rarr21A0
Unicode 21A0
 [Relation (arrow)]
rarr221C9
Unicode 21C9
two rt arrows [Relation (arrow)]
rarrhk21AA
Unicode 21AA
rt arrow-hooked [Relation (arrow)]
rarrlp21AC
Unicode 21AC
rt arrow-looped [Relation (arrow)]
rarrtl21A3
Unicode 21A3
rt arrow-tailed [Relation (arrow)]
rarrw21DD
Unicode 21DD
rt arrow-wavy [Relation (arrow)]
rhard21C1
Unicode 21C1
rt harpoon-down [Relation (arrow)]
rharu21C0
Unicode 21C0
rt harpoon-up [Relation (arrow)]
rsh21B1
Unicode 21B1
 [Relation (arrow)]
drarr2198
Unicode 2198
downward rt arrow [Relation (arrow)]
dlarr2199
Unicode 2199
downward l arrow [Relation (arrow)]
uArr21D1
Unicode 21D1
up dbl arrow [Relation (arrow)]
uarr221C8
Unicode 21C8
two up arrows [Relation (arrow)]
vArr21D5
Unicode 21D5
up&down dbl arrow [Relation (arrow)]
varr2195
Unicode 2195
up&down arrow [Relation (arrow)]
uharl21BF
Unicode 21BF
up harpoon-left [Relation (arrow)]
uharr21BE
Unicode 21BE
up harp-r[Relation (arrow)]
xlArr21D0
Unicode 21D0
long l dbl arrow [Relation (arrow)]
xhArr2194
Unicode 2194
long l&r dbl arr[Relation (arrow)]
xharr2194
Unicode 2194
long l&r arr [Relation (arrow)]
xrArr21D2
Unicode 21D2
long rt dbl arr [Relation (arrow)]

S. Added Math Symbols: Delimiters

Identifiers for this entity set:

Public identifier: ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN//XML
System identifier: http://www.oasis-open.org/docbook/xmlcharent/0.3/iso-amsc.ent

The following character entities are defined in this entity set:

Entity
Name
Unicode
Code point
Sample
Glyph
Description
rceil2309
Unicode 2309
right ceiling[Closing delimiter]
rfloor230B
Unicode 230B
right floor[Closing delimiter]
rpargtFFFD
Unicode FFFD
right paren, gt
urcorn231D
Unicode 231D
upper right corner[Closing delimiter]
drcorn231F
Unicode 231F
downward right corner[Closing delimiter]
lceil2308
Unicode 2308
left ceiling[Opening delimiter]
lfloor230A
Unicode 230A
left floor[Opening delimiter]
lpargtFFFD
Unicode FFFD
left parenthesis, gt
ulcorn231C
Unicode 231C
upper left corner[Opening delimiter]
dlcorn231E
Unicode 231E
downward left corner[Opening delimiter]

T. Unicode Glyphs

The Unicode reference glyphs in this document are examples only. Some characters have more than one Unicode representation and different Unicode characters may be appropriate in different contexts. The glyph images offer only one of many possible representations for the specified character.

Most of the glyphs this reference are from the TmsPF Roman font by Production First Software. A few glyphs are from Everson Mono.

Unicode support requires much more than a simple character to glyph mapping; for more information on Unicode, consult The Unicode Standard, Version 2.0 and Unicode Technical Report #8, which describes Unicode Version 2.1.

U. OASIS DocBook Technical Committee (Non-Normative)

The following individuals were members of the committee during the formulation of this Standard:

  • Dennis Evans

  • Patricia Gee-Best

  • Paul Grosso

  • Dick Hamilton

  • Nancy (Paisner) Harrison

  • Sabine Ocker

  • Michael Sabrio

  • Michael Smith

  • Tim Teebken (prospective)

  • Norman Walsh (Chair, Editor)

V. Notices

Copyright © The Organization for the Advancement of Structured Information Standards [OASIS] 2001, 2002. All Rights Reserved.

OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users of this specification, can be obtained from the OASIS Executive Director.

OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.

This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.

The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.

This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.

OASIS has been notified of intellectual property rights claimed in regard to some or all of the contents of this specification. For more information consult the online list of claimed rights.

W. Intellectual Property Rights

For information on wether any patents have been disclosed that may be essential to implementing this specification, and any offers of patent licensing terms, please refer to the Intellectual Property Rights section of the DocBook web page (http://www.oasis-open.org/docbook/)

X. Revision History

Revision Working Draft13 Jun 2002
Revision Working Draft19 Mar 2002
Revision Working Draft19 Nov 2001

References

Normative

[SGML] JTC 1, SC 34. ISO 8879:1986 Information processing -- Text and office systems -- Standard Generalized Markup Language (SGML). 1986.

[XML] Tim Bray, Jean Paoli, C. M. Sperberg-McQueen, and Eve Maler, editors. Extensible Markup Language (XML) 1.0 Second Edition. World Wide Web Consortium, 2000.

[Namespaces] Tim Bray, Dave Hollander, and Andrew Layman, editors. Namespaces in XML. World Wide Web Consortium, 1999.

[RELAX NG] James Clark, editor. RELAX NG Specification (Committee Specification). OASIS. 2001.

[Unicode] The Unicode Consortium. The Unicode Standard, Version 2.0. Addison-Wesley Developers Press. Reading, Mass. 1996.

Non-Normative

[gaiji] Martin Dürst, editor. Missing Characters and Glyphs. World Wide Web Consortium, 2002.