Is it possible to use the characters below that are not in the Ascii table when programming in VB 2005
| A | C3 81 | E7 | E7 | 00C1 | LATIN CAPITAL LETTER A WITH ACUTE |
| a | C3 A1 | E1 | 87 | 00E1 | LATIN SMALL LETTER A WITH ACUTE |
| C4 8C | A1 | A2 | 010C | LATIN CAPITAL LETTER C WITH CARON | |
| C4 8D | A2 | B8 | 010D | LATIN SMALL LETTER C WITH CARON | |
| C4 90 | A3 | B0 | 0110 | LATIN CAPITAL LETTER D WITH STROKE | |
| C4 91 | A4 | B9 | 0111 | LATIN SMALL LETTER D WITH STROKE | |
| C5 8A | AF | B1 | 014A | LATIN CAPITAL LETTER ENG (Sami) | |
| C5 8B | B1 | BA | 014B | LATIN SMALL LETTER ENG (Sami) | |
| C5 A0 | B2 | B4 | 0160 | LATIN CAPITAL LETTER S WITH CARON | |
| C5 A1 | B3 | BB | 0161 | LATIN SMALL LETTER S WITH CARON | |
| C5 A6 | B5 | B5 | 0166 | LATIN CAPITAL LETTER T WITH STROKE | |
| C5 A7 | B8 | BC | 0167 | LATIN SMALL LETTER T WITH STROKE | |
| C5 BD | B9 | B7 | 017D | LATIN CAPITAL LETTER Z WITH CARON | |
| C5 BE | BA | BD | 017E | LATIN SMALL LETTER Z WITH CARON |

Sami language characters
Steven.Dahlin
Sorry, forgot the table heading :
gmaenrile
Yes, we support Unicode and store all of our strings as Unicode internally. Thus, code such as (for example):
is perfectly legal.
Note that there are certain Unicode characters (those mapping to punctuation or spaces, parts of "joined" characters, etc.) which are not legal to use -- these are generally obvious -- and surrogate characters (Unicode characters above 0xFFFF) cannot currently be used in variable names.
--Matt--*
Fluxtah
ichor12345
GeoB
Hi,
I think the OP wants to know how to get those characters on the keyboard.
What windows setting to use or / and which globabalization / culture to IMPORT maybe
Regards,
S_DS