> Hi everyone,
>
[quoted text clipped - 9 lines]
> Will my above code be recognised on other platforms besides windows
> because of the unicode that i am inserting?
Unicode, like ASCII, is a platform independent standard. Individual
platforms may or may not implement Unicode support, but given how popular it
is, probably any platform which doesn't support it would be considered a
"toy" instead of a serious platform. Linux, MacOSX and Windows all provide
unicode support.
The only issue you'd have to worry about is whether the platform has a
font which can display the glyph representing the character you've inserted.
Worst case, you can always supply a font with your application.
- Oliver