On Sun, Sep 9, 2012 at 7:51 PM, bill lam <[email protected]> wrote: > I can confirm this problem. The vertical bar of box drawing > characters is not | but ¦ (codepoint above 127). I think it is a > latin-1 character but my browser is default to use utf-8 therefore > cannot display those characters.
I received this as the utf-8 sequence 194 166. require 'convert' hfd 194 166 C2 A6 According to http://www.utf8-chartable.de/ this corresponds to the unicode character with the name "broken bar". So either: (a) the character sequence you sent does not match what I received, or (b) your browser is not displaying utf-8 properly. Looking at my result from 9!:6'' I am imagining that (a) is the case. The vertical bar character I am seeing there is represented by the character literal 25, which is a unicode control character. That said, unicode documentation does not label this as a latin-1 character. -- Raul ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
