| | 1172 | You may interpolate any Unicode codepoint by name using C<\c> and square brackets: |
| | 1173 | |
| | 1174 | "\c[NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE]" |
| | 1175 | |
| | 1176 | Multiple codepoints constituting a single may be interpolated with |
| | 1177 | a single C<\c> by separating the names with comma: |
| | 1178 | |
| | 1179 | "\c[LATIN CAPITAL LETTER A, COMBINING RING ABOVE]" |
| | 1180 | |
| | 1181 | Whether that is regarded as one character or two depends on the |
| | 1182 | Unicode support level of the current lexical scope. It is also possible to |
| | 1183 | interpolate multiple codepoints that do not resolve to a single |
| | 1184 | character: |
| | 1185 | |
| | 1186 | "\c[LATIN CAPITAL LETTER A, LATIN CAPITAL LETTER B]" |
| | 1187 | |
| | 1188 | [Note: none of the official Unicode character names contains comma.] |
| | 1189 | |
| | 1190 | =item * |
| | 1191 | |