How do you print all Unicode characters in a range - I want the subscripts, can't google a range of Unicode.

Daniel Daniel
Fri Dec 2 05:27:40 UTC 2022


```
	dstring s = "";
	for (dchar i='ₐ'; i < 'ₜ'; i++)
		s ~= i;
	writeln(s);
```

Doesn't work.  The result I get is shit:

ₐₑₒₓₔₕₖₗₘₙₚₛ


More information about the Digitalmars-d-learn mailing list