.
> From: sven@stfx.eu
> Date: Mon, 12 Nov 2012 16:37:51 +0100
> To: Pharo-project@lists.gforge.inria.fr
> Subject: [Pharo-project] Unicode Fonts
>
> I was playing with the following:
>
> http://en.wikipedia.org/wiki/Chess_symbols_in_Unicode
>
> '/tmp/chess.txt' asFileReference writeStreamDo: [ :stream |
> (16r2654 to: 16r265F)
> do: [ :each |
> stream nextPut: each asCharacter ]
> separatedBy: [ stream space ].
> stream crlf ].
>
> $ cat /tmp/chess.txt
> ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ���
>
> (this shows for me, in my terminal/mail, YMMV ;-)
>
> String streamContents: [ :stream |
> (16r2654 to: 16r265F)
> do: [ :each |
> stream nextPut: each asCharacter ]
> separatedBy: [ stream space ].
> stream crlf ].
>
> Is there a way to make this work, a font selection that show these Unicode characters in Pharo ? That would be cool.
>
> I tried using Freetype font Monaco, the same as my terminal where the right characters show, but that didn't help.
>
> Sven
>
> --
> Sven Van Caekenberghe
> http://stfx.eu
> Smalltalk is the Red Pill
>
>
>
>