Skip to content

Commit 040a5d5

Browse files
committed
Start with definitive table of Unicode<->Texas
1 parent ca3147b commit 040a5d5

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
=begin pod
2+
3+
=TITLE Unicode versus Texas symbols
4+
5+
=SUBTITLE Unicode symbols and their Texas (ASCII) counterparts
6+
7+
The following unicode symbols can be used in Perl 6 without needing to load
8+
any additional modules. Please note that the Since column applies to the
9+
version of Perl the symbol was known to be available. It is only mentioned
10+
if it is different from C<6.c>.
11+
12+
=begin table
13+
symbol codepoint Texas Since Remarks
14+
------ --------- --------- ----- ---------------------------------
15+
« U+00AB << as part of «» or .«
16+
» U+00BB >> as part of «» or .»
17+
18+
Γ— U+00D7 *
19+
/ U+00DF /
20+
∘ U+2218 o
21+
β‰… U+2245 =~=
22+
23+
β€˜ U+2018 ' as part of β€˜β€™ or β€šβ€™ or β€™β€˜
24+
’ U+2019 ' as part of β€™β€˜ or ’’
25+
β€š U+201A ' as part of β€šβ€˜ or β€šβ€™
26+
β€œ U+201C " as part of β€œβ€ or β€žβ€ or β€β€œ
27+
” U+201D " as part of β€β€œ or ””
28+
β€ž U+201E " as part of β€žβ€œ or β€žβ€
29+
ο½’ U+FF62 " as part of ο½’ο½£
30+
ο½£ U+FF63 " as part of ο½’ο½£
31+
32+
⁻ U+00AF **- as part of exponentiation
33+
⁺ U+207A **+ as part of exponentiation
34+
⁻ U+207B **- as part of exponentiation
35+
⁰ U+2070 **0 can be combined with ⁰..⁹
36+
¹ U+2071 **1 can be combined with ⁰..⁹
37+
² U+2072 **2 can be combined with ⁰..⁹
38+
³ U+2073 **3 can be combined with ⁰..⁹
39+
⁴ U+2074 **4 can be combined with ⁰..⁹
40+
⁡ U+2075 **5 can be combined with ⁰..⁹
41+
⁢ U+2076 **6 can be combined with ⁰..⁹
42+
⁷ U+2077 **7 can be combined with ⁰..⁹
43+
⁸ U+2078 **8 can be combined with ⁰..⁹
44+
⁹ U+2079 **9 can be combined with ⁰..⁹
45+
46+
βˆ… U+2205 set()
47+
∈ U+2208 (elem)
48+
βˆ‰ U+2209 !(elem)
49+
βˆ‹ U+220B (cont)
50+
∌ U+220C !(cont)
51+
∞ U+221E Inf
52+
βŠ† U+2286 (<=)
53+
⊈ U+2288 !(<=)
54+
βŠ‚ U+2282 (<)
55+
βŠ„ U+2284 !(<)
56+
βŠ‡ U+2287 (>=)
57+
βŠ‰ U+2289 !(>=)
58+
βŠƒ U+2283 (>)
59+
βŠ… U+2285 !(>)
60+
β‰Ό U+227C (<+)
61+
≽ U+227D (>+)
62+
βˆͺ U+222A (|)
63+
∩ U+2229 (&)
64+
βˆ– U+2216 (-)
65+
βŠ– U+2296 (^)
66+
⊍ U+228D (.)
67+
⊎ U+228E (+)
68+
=end table
69+
70+
Please note that any codepoints that have the C<Ll> or C<Lu> property,
71+
can be used just like any other alphabetic character. Also, any codepoint
72+
that has the L<Nd> property, can be used as a digit in any number.
73+
74+
=end pod

0 commit comments

Comments
Β (0)