mirror of
https://github.com/sharkdp/bat
synced 2024-11-04 18:00:24 +00:00
11 lines
265 B
Markdown
11 lines
265 B
Markdown
|
This text file was generated with the following script. Certain invalid characters were removed manually:
|
||
|
|
||
|
```python
|
||
|
with open("plaintext.txt", "w"):
|
||
|
for i in range(0x10FFFF):
|
||
|
try:
|
||
|
f.write(chr(i) + "\n")
|
||
|
except:
|
||
|
pass
|
||
|
```
|