@@ -49,69 +49,67 @@ line), or C<Zp> (Separator, paragraph) property.
49
49
50
50
This list contains the single codepoints [and their Texas (ASCII)
51
51
equivalents] that have a special meaning in Perl 6.
52
- The C < Since > column indicates the version of Perl 6 in which
53
- the symbol was introduced.
54
52
55
53
=table
56
- Symbol | Codepoint | Texas | Since | Remarks
57
- =======|===========|============|=======|======= ==================
58
- « | U+00AB | << | v6.c | as part of «» or .« or regex left word boundary
59
- » | U+00BB | >> | v6.c | as part of «» or .» or regex right word boundary
60
- × | U+00D7 | * | v6.c |
61
- ÷ | U+00F7 | / | v6.c |
62
- ≤ | U+2264 | <= | v6.c |
63
- ≥ | U+2265 | >= | v6.c |
64
- ≠ | U+2260 | != | v6.c |
65
- − | U+2212 | - | v6.c |
66
- ∘ | U+2218 | o | v6.c |
67
- ≅ | U+2245 | =~= | v6.c |
68
- π | U+03C0 | pi | v6.c | 3.14159_26535_89793_238e0
69
- τ | U+03C4 | tau | v6.c | 6.28318_53071_79586_476e0
70
- 𝑒 | U+1D452 | e | v6.c | 2.71828_18284_59045_235e0
71
- ∞ | U+221E | Inf | v6.c |
72
- … | U+2026 | ... | v6.c |
73
- ‘ | U+2018 | ' | v6.c | as part of ‘’ or ’‘
74
- ’ | U+2019 | ' | v6.c | as part of ‘’ or ‚’ or ’‘
75
- ‚ | U+201A | ' | v6.c | as part of ‚‘ or ‚’
76
- “ | U+201C | " | v6.c | as part of “” or ”“
77
- ” | U+201D | " | v6.c | as part of “” or ”“ or ””
78
- „ | U+201E | " | v6.c | as part of „“ or „”
79
- 「 | U+FF62 | Q// | v6.c | as part of 「」 (Note: Q// variant cannot be used bare in regexes)
80
- 」 | U+FF63 | Q// | v6.c | as part of 「」 (Note: Q// variant cannot be used bare in regexes)
81
- ⁺ | U+207A | + | v6.c | (must use explicit number) as part of exponentiation
82
- ⁻ | U+207B | - | v6.c | (must use explicit number) as part of exponentiation
83
- ¯ | U+00AF | - | v6.c | (must use explicit number) as part of exponentiation (macron is an alternative way of writing a minus)
84
- ⁰ | U+2070 | **0 | v6.c | can be combined with ⁰..⁹
85
- ¹ | U+00B9 | **1 | v6.c | can be combined with ⁰..⁹
86
- ² | U+00B2 | **2 | v6.c | can be combined with ⁰..⁹
87
- ³ | U+00B3 | **3 | v6.c | can be combined with ⁰..⁹
88
- ⁴ | U+2074 | **4 | v6.c | can be combined with ⁰..⁹
89
- ⁵ | U+2075 | **5 | v6.c | can be combined with ⁰..⁹
90
- ⁶ | U+2076 | **6 | v6.c | can be combined with ⁰..⁹
91
- ⁷ | U+2077 | **7 | v6.c | can be combined with ⁰..⁹
92
- ⁸ | U+2078 | **8 | v6.c | can be combined with ⁰..⁹
93
- ⁹ | U+2079 | **9 | v6.c | can be combined with ⁰..⁹
94
- ∅ | U+2205 | set() | v6.c | (empty set)
95
- ∈ | U+2208 | (elem) | v6.c |
96
- ∉ | U+2209 | !(elem) | v6.c |
97
- ∋ | U+220B | (cont) | v6.c |
98
- ∌ | U+220C | !(cont) | v6.c |
99
- ⊆ | U+2286 | (<=) | v6.c |
100
- ⊈ | U+2288 | !(<=) | v6.c |
101
- ⊂ | U+2282 | (<) | v6.c |
102
- ⊄ | U+2284 | !(<) | v6.c |
103
- ⊇ | U+2287 | (>=) | v6.c |
104
- ⊉ | U+2289 | !(>=) | v6.c |
105
- ⊃ | U+2283 | (>) | v6.c |
106
- ⊅ | U+2285 | !(>) | v6.c |
107
- ≼ | U+227C | (<+) | v6.c |
108
- ≽ | U+227D | (>+) | v6.c |
109
- ∪ | U+222A | (|) | v6.c |
110
- ∩ | U+2229 | (&) | v6.c |
111
- ∖ | U+2216 | (-) | v6.c |
112
- ⊖ | U+2296 | (^) | v6.c |
113
- ⊍ | U+228D | (.) | v6.c |
114
- ⊎ | U+228E | (+) | v6.c |
54
+ Symbol | Codepoint | Texas | Remarks
55
+ =======|===========|============|=========================
56
+ « | U+00AB | << | as part of «» or .« or regex left word boundary
57
+ » | U+00BB | >> | as part of «» or .» or regex right word boundary
58
+ × | U+00D7 | * |
59
+ ÷ | U+00F7 | / |
60
+ ≤ | U+2264 | <= |
61
+ ≥ | U+2265 | >= |
62
+ ≠ | U+2260 | != |
63
+ − | U+2212 | - |
64
+ ∘ | U+2218 | o |
65
+ ≅ | U+2245 | =~= |
66
+ π | U+03C0 | pi | 3.14159_26535_89793_238e0
67
+ τ | U+03C4 | tau | 6.28318_53071_79586_476e0
68
+ 𝑒 | U+1D452 | e | 2.71828_18284_59045_235e0
69
+ ∞ | U+221E | Inf |
70
+ … | U+2026 | ... |
71
+ ‘ | U+2018 | ' | as part of ‘’ or ’‘
72
+ ’ | U+2019 | ' | as part of ‘’ or ‚’ or ’‘
73
+ ‚ | U+201A | ' | as part of ‚‘ or ‚’
74
+ “ | U+201C | " | as part of “” or ”“
75
+ ” | U+201D | " | as part of “” or ”“ or ””
76
+ „ | U+201E | " | as part of „“ or „”
77
+ 「 | U+FF62 | Q// | as part of 「」 (Note: Q// variant cannot be used bare in regexes)
78
+ 」 | U+FF63 | Q// | as part of 「」 (Note: Q// variant cannot be used bare in regexes)
79
+ ⁺ | U+207A | + | (must use explicit number) as part of exponentiation
80
+ ⁻ | U+207B | - | (must use explicit number) as part of exponentiation
81
+ ¯ | U+00AF | - | (must use explicit number) as part of exponentiation (macron is an alternative way of writing a minus)
82
+ ⁰ | U+2070 | **0 | can be combined with ⁰..⁹
83
+ ¹ | U+00B9 | **1 | can be combined with ⁰..⁹
84
+ ² | U+00B2 | **2 | can be combined with ⁰..⁹
85
+ ³ | U+00B3 | **3 | can be combined with ⁰..⁹
86
+ ⁴ | U+2074 | **4 | can be combined with ⁰..⁹
87
+ ⁵ | U+2075 | **5 | can be combined with ⁰..⁹
88
+ ⁶ | U+2076 | **6 | can be combined with ⁰..⁹
89
+ ⁷ | U+2077 | **7 | can be combined with ⁰..⁹
90
+ ⁸ | U+2078 | **8 | can be combined with ⁰..⁹
91
+ ⁹ | U+2079 | **9 | can be combined with ⁰..⁹
92
+ ∅ | U+2205 | set() | (empty set)
93
+ ∈ | U+2208 | (elem) |
94
+ ∉ | U+2209 | !(elem) |
95
+ ∋ | U+220B | (cont) |
96
+ ∌ | U+220C | !(cont) |
97
+ ⊆ | U+2286 | (<=) |
98
+ ⊈ | U+2288 | !(<=) |
99
+ ⊂ | U+2282 | (<) |
100
+ ⊄ | U+2284 | !(<) |
101
+ ⊇ | U+2287 | (>=) |
102
+ ⊉ | U+2289 | !(>=) |
103
+ ⊃ | U+2283 | (>) |
104
+ ⊅ | U+2285 | !(>) |
105
+ ≼ | U+227C | (<+) |
106
+ ≽ | U+227D | (>+) |
107
+ ∪ | U+222A | (|) |
108
+ ∩ | U+2229 | (&) |
109
+ ∖ | U+2216 | (-) |
110
+ ⊖ | U+2296 | (^) |
111
+ ⊍ | U+228D | (.) |
112
+ ⊎ | U+228E | (+) |
115
113
116
114
= head1 Multiple codepoints
117
115
0 commit comments