[uaxid.def.general] # Annex E (informative) Conformance with UAX #31 [[uaxid]](./#uaxid) ## E.2 R1 Default identifiers [[uaxid.def]](uaxid.def#general) ### E.2.1 General [uaxid.def.general] [1](#1) [#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/uax31.tex#L24) UAX #31 specifies a default syntax for identifiers based on properties from the Unicode Character Database, UAX #44[.](#1.sentence-1) The general syntax is ``` := * ( +)* ``` where has the XID_Start property, has the XID_Continue property, and is a list of characters permitted between continue characters[.](#1.sentence-2) For C++ we add the character U+005f low line, or _, to the set of permitted characters, the set is empty, and the characters are unmodified[.](#1.sentence-3) In the grammar used in UAX #31, this is ``` := * := XID_Start + U+005f := + XID_Continue ``` [2](#2) [#](http://github.com/Eelis/draft/tree/9adde4bc1c62ec234483e63ea3b70a59724c745a/source/uax31.tex#L45) This is described in the C++ grammar in [[lex.name]](lex.name "5.11 Identifiers"), where [*identifier*](lex.name#nt:identifier "5.11 Identifiers [lex.name]") is formed from[*identifier-start*](lex.name#nt:identifier-start "5.11 Identifiers [lex.name]") or[*identifier*](lex.name#nt:identifier "5.11 Identifiers [lex.name]") followed by [*identifier-continue*](lex.name#nt:identifier-continue "5.11 Identifiers [lex.name]")[.](#2.sentence-1)