Is there a way to get a list or an arrray of UTF 8 characters ?
For example, with ASCII, we can use this script from a LC's lesson to retreive the correct ASCII number for each char:
Code: Select all
on mouseUp
put empty into field "ascii"
repeat with i = 0 to 255
put i & tab & numToChar(i) & crlf after fld "ascii"
end repeat
end mouseUp
Code: Select all
on mouseUp
put empty into field "UTF8"
set the useUnicode to true
repeat with i = 0 to 780 -- just to try
put i & tab & charToNum(the unicodeText of i) & cr after field "UTF8"
end repeat
end mouseUp
As I can see on the dictionary, i guess it's about <charToNum(the unicodeText of i)>
Any idea would be much appreciated
