Named universal character escapes

Document #: D2071
Date: 2021-10-19
Project: Programming Language C++
Audience: SG16
EWG
Reply-to: Tom Honermann
<>
R. Martinho Fernandes
<>
Peter Bindels
<>
Corentin Jabot
<>
Steve Downey
<, >

1 Introduction

This proposal continues the effort R. Martinho Fernandes initiated that culminated in [P1097R2] https://wg21.link/p1097r2 “Named character escapes”. This proposal does not deviate from the general design intent in Fernandes’ work, but does deviate in a few details. See the History and Proposal sections for more information.

C++ programmers have been able to portably use characters outside of the basic source character set in character and string literals since the introduction of universal-character-names in C++11. For example:

// UTF-32 character literal with U+0100 {LATIN CAPITAL LETTER A WITH MACRON}
U'\u0100'
// UTF-8 string literal with U+0100 {LATIN CAPITAL LETTER A WITH MACRON} U+0300 {COMBINING GRAVE ACCENT}
u8"\u0100\u0300"

This proposal enables the above literals to be written using Unicode assigned names instead of Unicode code point values.

U'\N{LATIN CAPITAL LETTER A WITH MACRON}' // Equivalent to U'\u0100'
u8"\N{LATIN CAPITAL LETTER A WITH MACRON}\N{COMBINING GRAVE ACCENT" // Equivalent to u8"\u0100\u0300"

This paper discusses and links to work completed by Corentin Jabot, [CJ-IMPL], that investigates implementation impact, though an implementation has not yet been completed in an existing compiler. This paper also includes discussion regarding alternative design possibilities.

2 Changes since R0

3 History

Prior presentations of P1097 to EWG-I and EWG received strong encouragement and useful design feedback:

Do we want named escape sequences?

SF
F
N
A
SA
5 9 7 0 0

Do we want to support name aliases?

SF
F
N
A
SA
12 8 1 0 0

Do we want case-insensitive matching?

SF
F
N
A
SA
5 7 4 4 1

Do we want full UAX #44 LM2 name matching?

SF
F
N
A
SA
0 0 7 7 7

EWG wants to encourage further work in this area

SF
F
N
A
SA
8 16 8 1 1

Motion passes

Accept P1097 as presented for C++23

SF
F
N
A
SA
2 9 13 5 1

No consensus. Author encouraged to do further work

Two areas of concern were raised during discussion in EWG in Belfast, 2019:

The implementation concerns prompted Corentin Jabot to explore implementation strategies as described in the Implementation experience section.

Despite the clear negative feedback from EWG-I with regard to use of [UAX44-LM2] to match character names, [P2071R0] proposed using [UAX44-LM2]. This was motivated solely by Corentin Jabot’s use of that algorithm in his implementation experiments.

Presentation of P2071R0(https://wg21.link/p2071r0) to SG16 and EWG in Prague received strong encouragement and consensus for design direction.

What is our preferred name matching algorithm?

In favor
Name match algorithm
6 Exact match.
6 Case insensitive
4 Full UAX44-LM2

No consensus for the UAX44-LM2 algorithm.

We should support case-insensitive matching as opposed to exact match?

SF
F
N
A
SA
2 3 2 1 2

Consensus? No

Preferred syntax: (vote for 1)

In favor
Syntax
8 Use “\N{XXX}”
0 Use “\u{XXX}” and “\U{XXX}”

Strong consensus for the originally proposed syntax.

Match name aliases?

SF
F
N
A
SA
8 2 0 0 0

Consensus? Yes

Include support for ISO/IEC 10646 named sequences?

SF
F
N
A
SA
0 0 1 6 1

Consensus? No - SA: Adds implementation complexity for little benefit. - A: Can be added later.

Forward to EWG with: no UAX44-LM2 matching, no support for named sequences, use of \N, and no recommendation regarding case-sensitivity.

SF
F
N
A
SA
7 3 0 0 0

Consensus? Yes

We are interesting in supporting named universal character escapes

SF
F
N
A
SA
14 5 0 0 0

This should further support aliases

SF
F
N
A
SA
18 2 1 0 0

It should further be case insensitive

SF
F
N
A
SA
0 6 6 9 2

It should further support UAX44-LM2 with arbitrary spaces and dashes

SF
F
N
A
SA
1 4 5 8 5

Here again, clear negative feedback was provided with regard to use of the [UAX44-LM2] name matching algorithm. Additionally, the clearest guidance obtained so far was provided with regard to case-insensitivity. Corentin Jabot experimented and found that use of [UAX44-LM2] reduced data size by about 9K; roughly 5%, which is not insignificant.

Revision P2071R1 has been modified to match the EWG consensus to require exact name matches only.

4 Motivation

The introduction of universal-character-names in C++11 benefitted programmers by allowing them to portably encode characters outside of the basic source character set without having to resort to use of octal or hexadecimal escape-sequences to explicitly encode code units. However, Unicode code points by themselves do not clearly communicate to readers of the code which character is to be encoded; hence the code comments included with the code examples in the introduction. Allowing programmers to directly use Unicode assigned character names avoids the need for side channel communications, like code comments, that might get out of sync over time.

Use of UTF-8 as the encoding for source files has increased over time, but impediments to adoption remain. For example, Microsoft Visual C++ still defaults to a locale dependent encoding and that encourages limiting source files to ASCII. If the C++ community were to migrate en masse to UTF-8, then one might question whether universal-character-names would become a legacy backward compatibility feature since programmers could reliably type the intended character in their source code directly. And if universal-character-names were to become an anachronism, then what use would be served by introducing a named character escape?

Unicode defines a number of characters that, even when they can be typed directly, can result in confusion. These include invisible characters such as U+200B {ZERO WIDTH SPACE}, combining characters such as U+0300 {COMBINING GRAVE ACCENT}, visually indistinct characters such as U+003B {SEMICOLON} and U+037E {GREEK QUESTION MARK}, and characters with RTL (right-to-left) directionality. Consider how the following string literals containing these characters are rendered. In cases like these, use of escape sequences improves clarity; thus motivation for use of Unicode escape sequences will remain.

“​”
“‏”
“̀”
“;”
“;”
“´”
“́”
“´”
“Ω”
“Ω”
“A”
“Α”
“А”
“Ꭺ”
“ꓮ”
“𐊠”
“𖽀”
// U+200B  {ZERO WIDTH SPACE}
// U+200F  {RIGHT-TO-LEFT MARK}
// U+0300  {COMBINING GRAVE ACCENT}
// U+003B  {SEMICOLON}
// U+037E  {GREEK QUESTION MARK}
// U+00B4  {ACUTE ACCENT}
// U+0301  {COMBINING ACUTE ACCENT}
// U+1FFD  {GREEK OXIA}
// U+03A9  {GREEK CAPITAL LETTER OMEGA}
// U+2126  {OHM SIGN}
// U+0041  {LATIN CAPITAL LETTER A}
// U+0391  {GREEK CAPITAL LETTER ALPHA}
// U+0410  {CYRILLIC CAPITAL LETTER A}
// U+13AA  {CHEROKEE LETTER GO}
// U+A4EE  {LISU LETTER A}
// U+102A0 {CARIAN LETTER A}
// U+16F40 {MIAO LETTER ZZYA}

Named character escapes are supported in various forms in other programming languages. The following is the result of a brief survey of various languages. For languages that include such support, more details can be found in the Design considerations section.

Language
Named character escape support
C# No
D Yes; HTML 5 named character references
Go No
Java No
Javascript No
Perl Yes; Unicode names, aliases, and named sequences
PHP No
Python Yes; Unicode names and aliases
Raku Yes; Unicode names, aliases, named sequences, and emoji sequences
Ruby No
Rust No
Swift No
Visual Basic No

5 Design considerations

There are numerous choices for how support for named characters can be integrated into C++. Useful questions for making design choices include:

This section analyzes the various options considered for this proposal.

5.1 Syntax

Named character escapes are proposed as a more readable alternative to universal-character-names. As such, it is desirable that they be similar in syntax to universal-character-names and other existing escape sequences.

The syntax proposed by Fernandes in [P1097R2] “Named character escapes”) is modeled after the syntax adopted for Python and consists of a \N escape introducer followed by a name enclosed in curly brackets. For example:


    '\N{LATIN CAPITAL LETTER A}'

    "\N{LATIN CAPITAL LETTER A WITH MACRON}"

Other choices for the escape introducer are possible; the Backward compatibility section discusses some possible motivation for preferring \u and/or \U.

Options for recognized names and how to match them are discussed in subsequent sections.

As proposed, only one name is allowed per named character escape, but that is an artificial limitation. Raku allows a sequence of comma separated names to be specified in a single escape. This is a natural extension if names are permitted to identify sequences of characters instead of a single character. The following would all be equivalent. This proposal leaves this option to a future extension; see the Possible future extensions section.


    "\N{LATIN CAPITAL LETTER A WITH MACRON, COMBINING GRAVE ACCENT}"
    "\N{LATIN CAPITAL LETTER A WITH MACRON}\N{COMBINING GRAVE ACCENT}"
    "\u0100\u0300"

Perl and Raku both allow Unicode code point numbers to be specified as character names. Following suit would enable a syntax that avoids the strict 4 or 8 digit requirements of universal-character-names and could allow the natural U+NNNN style frequently used to identify Unicode characters. The following could all be equivalent. This proposal also leaves this option for a future extension as discussed in the Possible future extensions section.

    "\N{U+0100}"
    "\N{U+100}"
    "\N{U+000100}"
    "\N{0x0100}"
    "\N{256}"
    "\u0100"

With the addition of forms for universal character names, such as for “LATIN CAPITAL LETTER I WITH MACRON”, it is straightforward to extend the syntax to support:

    std::string \N{LATIN CAPITAL LETTER A WITH MACRON} = "\N{LATIN CAPITAL LETTER A WITH MACRON}";

5.2 Name sources

A named character escape feature is not particularly useful unless accompanied by at least one source of character names. The following list contains sources of character names that are consulted by at least one implementation of named character escapes in another programming language.

The first three are defined by the Unicode Consortium, part of the Unicode standard, and synchronized with ISO/IEC 10646. The names specified in each are designed in concert, share a common namespace, are immutable once published, and Unicode guarantees no conflicts between them. See the Unicode character encoding stability policy for more details. These sources are consulted for named character escapes in Perl, Python, and Raku.

The next two sources specify emoji character sequences. Though produced by the Unicode Consortium, they are not part of the Unicode standard, and are not covered by the Unicode character encoding stability policy These two sources don’t technically provide names; they provide optional descriptions. The provided descriptions use characters, particularly : and ,, that are disallowed in the names provided by the first three sources. These sources are consulted for named character escapes in Raku.

The last source is the specification of names recognized for use as named character references in HTML documents. This source is used for the implementation of named character escapes in the D programming language.

The stability guarantees offered by the Unicode standard are a strong motivator for their use and, as such, this proposal adopts them as the name sources to use.

The list of Unicode assigned names associates at most one name with each character. There are some characters that are not assigned a name in this list, for example, U+0080 is simply listed as a <control> character with no name. In some of these cases, the Unicode aliases list provides one or more names. For example, U+0080 has assigned aliases of PADDING CHARACTER (a figment alias) and PAD (an abbreviation alias).

Unicode aliases provide another critical service. As mentioned above, once assigned, names are immutable. Corrections are only offered by providing an alias. Aliases come in five varieties:

It is conceivable that implementors could desire, or be requested to, support additional implementation-defined names; perhaps including from the additional sources listed above. Since new characters and names will continue to be added to the Unicode standard, caution is warranted to avoid the possibility of introducing conflicting names over time. The description of the [UAX44-LM2] name matching algorithm describes a historical case of how such a conflict once occurred. Any support for additional names should ensure that they occupy a non-overlapping namespace with the Unicode assigned names. Out of caution, this proposal disallows additional implementation-defined names.

5.3 Name matching

Names can be finicky things. Having to remember whether a name is, for example, ZERO WIDTH SPACE or ZERO-WIDTH SPACE is likely to frustrate programmers. Some programmers might prefer zero width space.

Unicode provides a straight forward algorithm for matching names with various allowances including case-insensitivity, omission of some hyphens (-), and substitution of underscore (_) for space characters. [UAX44-LM2] is included in the Unicode standard via [UAX44].

The [UAX44-LM2] matching rule would accept any of the following names as a match for U+200B {ZERO WIDTH SPACE}

    ZERO WIDTH SPACE
    ZERO-WIDTH SPACE
    zero-width space
    ZERO width S P_A_C E

[UAX44] 5.9.2 (https://www.unicode.org/reports/tr44/tr44-24.html#Matching_Names) explicitly recommends that names should be matched with the loose algorithm:

While each Unicode character name for an assigned character is guaranteed to be unique, names are assigned in such a way that the presence or absence of spaces cannot be used to distinguish them. Furthermore, implementations sometimes create identifiers from Unicode character names by inserting underscores for spaces. For best results in comparing Unicode character names, use loose matching rule UAX44-LM2.

5.4 Portable names

Portably using named character escapes will require implementations to agree on a minimum version of the name sources.

Thanks to the adoption of [P1025R1]“Update The Reference To The Unicode Standard”) in Rapperswil, 2019, the C++ standard has a normative floating reference to ISO/IEC 10646 “Information technology — Universal Coded Character Set (UCS)”, the ISO/IEC standard that specifies a subset of what is specified in the Unicode standard and is kept synchronized with it. ISO/IEC 10646:2017 includes the Unicode assigned names (in section 33), name aliases (in section 33), and named character sequences (in section 27).

The floating reference to ISO/IEC 10646 indicates a dependence on the version that is current at the time of standardization. Thus, conformance with the C++ standard will require conformance with the latest available publication of ISO/IEC 10646.

Implementors must be allowed, and encouraged, to conform to more recent versions of ISO/IEC 10646 as they are published.

5.5 Existing practice

Support for named escape sequences exists in several programming languages. The following details of existing practice were obtained from these documentation sources.

Language
Documentation link
D https://dlang.org/spec/lex.html#StringLiteral
Perl https://perldoc.perl.org/charnames.html
Python https://docs.python.org/3.8/reference/lexical_analysis.html#literals
Raku https://docs.raku.org/language/unicode#Entering_unicode_codepoints_and_codepoint_sequences

Capabilities vary across languages:

Language Name sources Comma separated names Name matching Matches code
point numbers
D HTML 5 No Case-sensitive and whitespace-sensitive. No
Perl Unicode names
Unicode name aliases
Unicode named sequences
registered custom aliases
No By default, case-sensitive and whitespace-sensitive exact match.
Optionally, script qualified short names with use charnames ‘:short’;.
Optionally, UAX44-LM2 with use charnames ‘:loose’;. (case insensitive, ignore underscore, most spaces, and most non-medial hyphens)
Yes
Python Unicode names
Unicode name aliases
No Case-insensitive, but whitespace-sensitive No
Raku Unicode names
Unicode name aliases
Unicode named sequences
emoji ZWJ sequences
emoji sequences
Yes Case-insensitive, but whitespace-sensitive Yes

Examples:

Language Code
D
"\&Amacr;"
Perl
"\N{LATIN CAPITAL LETTER A WITH MACRON}"
"\N{U+0100}"
Python
"\N{LATIN CAPITAL LETTER A WITH MACRON}"
Raku
"\c[LATIN CAPITAL LETTER A WITH MACRON]"
"\c[256]"
"\c[LATIN CAPITAL LETTER A WITH MACRON,COMBINING GRAVE ACCENT]"
"\c[LATIN CAPITAL LETTER A WITH MACRON AND GRAVE]"

5.6 Backward compatibility

Escape sequences beyond those required in the standard are conditionally-supported ([lex.ccon]p7). For implementations that currently define a meaning for \N in character or string literals, the use of \N in this proposal is technically a breaking change.

Gcc, Clang, and Microsoft Visual C++ all accept \N as an escape sequence with the semantic effect of substituting N such that "\N{xxx}" is equivalent to "N{xxx}". However, they each emit a warning regarding an unrecognized escape sequence, so reliance on this behavior is not likely to be common. Still, there are likely to be some uses in the wild (probably some percentage of that were intended to be \n).

Another option would be to reuse the \u and/or \U introducer used for universal-character-names. Gcc and Clang both reject code like "\u{xxx}" and "\U{xxx}" as containing ill-formed universal-character-names. However, Microsoft Visual C++ accepts such uses without a warning and treats them as equivalent to "u{xxx} and "U{xxx}" respectively.

The implementation divergence that occurs for the \u and \U cases above suggests that repurposing them may reduce the potential for backward compatibility impact. Use of \u and/or \U would potentially require more wording changes to distinguish named character escapes from universal-character-names, but would be unlikely to pose a significant additional impact to implementors.

For now, this proposal adheres to Fernandes’ original design and retains use of \N as the introducer for named character escapes.

5.7 Implementor impact

The sources of character names listed in the Name sources section do not constitute big data by today’s standards, but that does not mean that the volume of data and potential for impact to compiler distributions and compiler performance is insignificant. As mentioned earlier, some organizations have valid technical reasons to be sensitive to the size of the compiler distributions they use; in a distributed build environment that distributes compilers, the size of the distribution impacts latency and can therefore negatively impact build times.

The combined size of the Unicode 12.0 text files containing the Unicode assigned names, aliases, and named character sequences is approximately 1.5 MiB. A naive implementation might contribute 2+ MiB of code/data to a compiler. Some EWG members indicated that amount of increase is a cause for concern.

Fortunately, naive implementations are not the only option. Corentin Jabot has done some excellent work to demonstrate that an implementation should be possible that increases the code/data size of a compiler by less than 300 KiB. See the Implementation experience section for details. Corentin’s approach is promising, but the additional complexity caries additional implementation cost and maintenance.

Staying up to date with new Unicode releases will also, of course, pose an additional cost on implementors.

5.8 Design alternatives

As indicated previously, at least one EWG member in Belfast was strongly interested in a more general core language feature, presumably a string interpolation facility, that would allow named character escapes to be implemented as a library feature. Such a feature could take many forms, but might look something like the following where \{ is an escape sequence followed by a call to a constexpr function named nce with arguments passed in some form.

"\{nce(LATIN CAPITAL LETTER A WITH GRAVE)}"

Such a feature could certainly be implemented, but would seem to necessarily be more verbose and would necessitate inclusion of appropriate headers; headers that would be quite large in the case of a named character database or that would make use of a compiler intrinsic; which would put the complexity back in the compiler (though in implementation-defined territory rather than in standard core language). The verbosity concern could potentially be reduced by introducing core language sugar for lowering the proposed syntax to the example string interpolation syntax above.

6 Proposal

The wording included in this proposal is for the following design:

7 Possible future extensions

The following options are not currently proposed but could be considered for future extension.

  1. Allow comma separated names. For example:
    • "\N{LATIN CAPITAL LETTER A WITH MACRON, COMBINING GRAVE ACCENT}" // Equivalent to "\u0100\u0300"
  2. Allow code point numbers as names. For example:
    • "\N{U+00C0}" // Equivalent to "\u00C0"
    • "\N{0x00C0}" // Equivalent to "\u00C0"
    • "\N{192}"    // Equivalent to "\u00C0"
  3. Allow names to match ISO/IEC 10646 named sequences such that the following would be equivalent:
    • "\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}"
    • "\N{LATIN CAPITAL LETTER A WITH MACRON}\N{COMBINING GRAVE ACCENT"
    • "\u0100\u0300"
  4. Allow names to match Unicode emoji named sequences. For example:
    • "\N{keycap: #}"                     // Equivalent to "\u0023\uFE0F\u20E3"
    • "\N{Czech Republic}"                // Equivalent to "\U0001F1E8\U0001F1FF"
    • "\N{waving hand: medium skin tone}" // Equivalent to "\U0001F1E8\U0001F1FF"
  5. Allow names to match Unicode emoji ZWJ named sequences. For example:
    • "\N{man shrugging: medium skin tone}" // Equivalent to "\U0001F937\U0001F3FD\u200D\u2642\uFE0F"
    • "\N{rainbow flag}"                    // Equivalent to "\U0001F3F3\uFE0F\u200D\U0001F308"
  6. Allow names to match HTML 5 named character references by surrounding them with & and ;. For example:
    • "\N{&Agrave;}" // Equivalent to "\u00C0"

8 Implementation experience

This proposal been implemented in Clang by Corentin Jabot, and in Circle by Sean Baxter, based on the library work available at blog post on the experiment reported that he was able to implement a function (cp_from_name) that accepts a Unicode 12.0 name or name alias and returns a code point value in under 300 KiB. His implementation is available in the cp_to_name branch of his ext-unicode-db GitHub repository at https://github.com/cor3ntin/ext-unicode-db/tree/name_to_cp Baxter reports a footprint of 272K for adding the feature.

9 Acknowledgements

Thank you to R. Martinho Fernandes for taking the initiative to research and first propose support for named character escapes and for contributing his considerable expertise in general to SG16.

Thank you to Corentin Jabot for the excellent work he did experimenting with and analyzing implementation impact. Without his work, the data necessary to respond to the implementation concerns raised in Belfast would not have been available at this time, thereby delaying further progress on this proposal.

Thank you to Peter Bindels and Corentin Jabot for providing feedback on an initial draft that I delivered to them less than two hours before the Prague pre-meeting mailing deadline!

10 Core wording

These changes are relative to [N4835] “Working Draft, Standard for Programming Language C++”

If [P2029R1] “Proposed resolution for core issues 411, 1656, and 2333; numeric and universal character escapes in character and string literals” is adopted, substantial wording updates will be required.

Modify 5.2 paragraph 5 [lex.phases] as follows:

(lex.phases.5) Each basic-c-char, basic-s-char, and r-char in a character-literal or a string-literal, as well as each escape-sequence, named-escape-sequence and universal-character-name in a character-literal or a non-raw string literal, is encoded in the literal’s associated character encoding as specified in [lex.ccon] and [lex.string].

Modify 5.13.3 [lex.ccon]:

      character-literal:
             encoding-prefixopt ’ c-char-sequence ’

      encoding-prefix: one of
             u8  u  U  L

      c-char-sequence:
             c-char
             c-char-sequence c-char

      c-char:
             basic-c-char
             escape-sequence
             universal-character-name

      basic-c-char:
             any member of the basic source character set except the single-quote ’, backslash , or new-line character

      escape-sequence:
             simple-escape-sequence
             numeric-escape-sequence
             named-escape-sequence
             conditional-escape-sequence

      simple-escape-sequence:
             \ simple-escape-sequence-char

      simple-escape-sequence-char: one of
             ’ " ? \ a b f n r t v

      numeric-escape-sequence:
             octal-escape-sequence
             hexadecimal-escape-sequence

      octal-escape-sequence:
             \ octal-digit
             \ octal-digit octal-digit
             \ octal-digit octal-digit octal-digit

      hexadecimal-escape-sequence:
             \x hexadecimal-digit
             hexadecimal-escape-sequence hexadecimal-digit

      conditional-escape-sequence:
             \ conditional-escape-sequence-char

      conditional-escape-sequence-char:
             any member of the basic source character set that is not an octal-digit, a simple-escape-sequence-char, or the characters u, U, N, or x

      n-char: one of
             A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
             a b c d e f g h i j k l m n o p q r s t u v w x y z
             0 1 2 3 4 5 6 7 8 9
             - space

      n-char-sequence:
             n-char
             n-char n-char-sequence

      named-escape-sequence:
             \N { n-char-sequence }

Add a new paragraph (X) after 5.13.3 [lex.ccon] paragraph 3: > Drafting Note: Associated character names and character name aliases are listed in section 33 of ISO/IEC 10646:2017.

A named-escape-sequence is translated to the encoding, in the appropriate execution character set, of the character associated with the ISO/IEC 10646 associated character name or character name alias that matches the name specified by the n-char-sequence. Matching of names is case-sensitive and whitespace-sensitive. If no name is matched, then the program is ill-formed.

Modify 5.13.5 [lex.string] paragraph 10:

(lex.string.10)

String literal objects are initialized with the sequence of code unit values corresponding to the string-literal’s sequence of s-chars (for a non-raw string literal) and r-chars (for a raw string literal) in order as follows:

(lex.string.(10.1))

The sequence of characters denoted by each contiguous sequence of _basic-s-char_s, _r-char_s, _simple-escape-sequence_s ([lex.ccon]), _named-escape-sequence_s, and _universal-character-name_s ([lex.charset]) is encoded to a code unit sequence using the string-literal’s associated character encoding. If a character lacks representation in the associated character encoding, then:

Change in table 17 of 15.11 [cpp.predefined] paragraph 1.8:

Drafting note: the final value for the __cpp_named_character_escapes feature test macro will be selected by the project editor to reflect the date of approval.

Table 17 — Feature-test macros [tab:cpp.predefined.ft]
Macro name Value
[…] […]
__cpp_modules 201907L
__cpp_named_character_escapes XXXXXXL ** placeholder **
__cpp_namespace_attributes 201411L
[…] […]

11 Universal Character Name Wording

Post [P2290R2], where there are ucns of the form u{xxx}

Modify [lex.charset]

(lex.charset.10) The universal-character-name construct provides a way to name other characters.


      n-char: one of
             A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
             a b c d e f g h i j k l m n o p q r s t u v w x y z
             0 1 2 3 4 5 6 7 8 9
             - space

      n-char-sequence:
             n-char
             n-char n-char-sequence

      named-universal-character:
             \N{ n-char-sequence }

      hex-quad:
             hexadecimal-digit hexadecimal-digit hexadecimal-digit hexadecimal-digit

      simple-hexadecimal-digit-sequence:
             hexadecimal-digit
             simple-hexadecimal-digit-sequence hexadecimal-digit

      universal-character-name:
             \u hex-quad
             \U hex-quad hex-quad
             \u{ simple-hexadecimal-digit-sequence }

Add paragraph after [2]

Drafting Note: Associated character names and character name aliases are listed in section 33 of ISO/IEC 10646:2017.

A named-universal-character is translated to the universal-character-name with the code point of the ISO/IEC 10646 associated character name or character name alias that matches the name specified by the n-char-sequence. Matching of names is case-sensitive and whitespace-sensitive. If no name is matched, then the program is ill-formed.

Do not add to or modify [lex.ccon] or [lex.string]

12 UAX44-LM2 Wording

Matching of names is case-insensitive and whitespace-insensitive, using the following algorithm:

  • remove all medial hyphens (except the medial hyphen in the name for U+1180)
  • remove all whitespace and underscore characters
  • apply toLowercase() to both strings

If no name is matched, then the program is ill-formed.

13 References

[CJ-IMPL] Corentin Jabot. ext-unicode-db.
https://github.com/cor3ntin/ext-unicode-db/tree/name_to_cp

[N4835] Richard Smith. 2019-10-08. Working Draft, Standard for Programming Language C++.
https://wg21.link/n4835

[P1025R1] Steve Downey, JeanHeyd Meneide, Martinho Fernandes. 2018-06-07. Update The Reference To The Unicode Standard.
https://wg21.link/p1025r1

[P1097R1] R. Martinho Fernandes. 2018-06-22. Named character escapes.
https://wg21.link/p1097r1

[P1097R2] R. Martinho Fernandes. 2019-01-21. Named character escapes.
https://wg21.link/p1097r2

[P2029R1] Tom Honermann. 2020-02-28. Proposed resolution for core issues 411, 1656, and 2333; escapes in character and string literals.
https://wg21.link/p2029r1

[P2071R0] Tom Honermann, Peter Bindels. 2020-01-13. Named universal character escapes.
https://wg21.link/p2071r0

[P2290R2] Corentin Jabot. 2021-07-15. Delimited escape sequences.
https://wg21.link/p2290r2

[UAX44] Ken Whistler and Laurențiu Iancu. Unicode Character Database.
http://www.unicode.org/reports/tr44

[UAX44-LM2] Ken Whistler and Laurențiu Iancu. Unicode Character Database LM2.
https://www.unicode.org/reports/tr44/tr44-24.html#UAX44-LM2