r - Show an ASCII character -
I want to show a block ASCII character █ (this ASCII code is 219),
how Can I show it in terminal?
I am using RGui on WinXP
You can do otherwise Use backslash to avoid redirecting characters:
print ("\ 245")
yen character ( ¥ ) displays in my 245 octal format, so the above expression ASCII (or GUI encoding that is using) is printing 165 characters.
213 octal is 333 but
does not make any sense) Unicode characters on R-GUI Also supported:
cyrillic_d & lt; - "\ u0414" print (Cyrillic_D)
output D .
Comments
Post a Comment