This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Zecradox's profile picture

What characters can you use in ComputerCraft (1.12.2)

Started by Zecradox, 11 April 2018 - 02:15 AM
Zecradox #1
Posted 11 April 2018 - 04:15 AM
,
Luca_S #2
Posted 11 April 2018 - 05:18 AM
You can use the following Code to get a full list:


for i=1,0xFF do
  write(string.char(i))
end
Edited on 11 April 2018 - 09:27 AM