Chr for the following characters

how do I work out the chr equivalent of the following symbols=

I am using Courier New. I can see the charmap but cannot figure what numbers to put into the brackets

Thanks in anticipation

Subject: Chr for the following characters

Those are not ascii characters. Ascii only represents a maximum of 255 characters, those that can be represented in one byte. Those are unicode (two-byte) characters which cannot be represented in ascii.

You can get the codes for them with:

Uni(“╗”)

You can generate the character for a unicode value with

Uchr(9559)

Subject: RE: Chr for the following characters

Thanks for the pointers. i have got the appropriate unicode numbers

Subject: Chr for the following characters

in ls type in

msgbox asc(“=”)

that will give you the ascii number repeat for all characters

Subject: Chr for the following characters