Show ASCII table: Difference between revisions

Content added Content deleted
(→‎{{header|J}}: simplify)
m (→‎{{header|J}}: use <pre> tags, since <syntaxhighlight> adds nothing and gets confused by the data)
Line 3,017: Line 3,017:


=={{header|J}}==
=={{header|J}}==
<syntaxhighlight lang=J> ;"1 ((_6{.":),' ',7 u:])each 32+|:i.6 16
<pre> ;"1 ((_6{.":),' ',7 u:])each 32+|:i.6 16
32 48 0 64 @ 80 P 96 ` 112 p
32 48 0 64 @ 80 P 96 ` 112 p
33 ! 49 1 65 A 81 Q 97 a 113 q
33 ! 49 1 65 A 81 Q 97 a 113 q
Line 3,034: Line 3,034:
46 . 62 > 78 N 94 ^ 110 n 126 ~
46 . 62 > 78 N 94 ^ 110 n 126 ~
47 / 63 ? 79 O 95 _ 111 o 127 
47 / 63 ? 79 O 95 _ 111 o 127 
</pre>
</syntaxhighlight>


Note that ascii 127 does not have a standard representation, so its appearance will depend on a variety of issues.
Note that ascii 127 does not have a standard representation, so its appearance will depend on a variety of issues.