Sami language characters

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

 



Answer this question

Sami language characters

  • Steven.Dahlin

    Sorry, forgot the table heading :

     

    ISO/IEC 10646-1, Group 00, Basic Multilingual Plane
    Char. UTF-8 value IR197 Mac 10646 Name


  • gmaenrile

    Yes, we support Unicode and store all of our strings as Unicode internally. Thus, code such as (for example):

    Dim As Integer

    = 5

    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

    Problem solved. All OK. Thanks again !
  • ichor12345

    Thanks so much for answer. It,s no problems writing sami language in Word. There are sami characters on keyboard. But how do i use sami characters in VB when making buttons, labels and so on
  • GeoB

    Matthew Gertz MS wrote:

    Yes, we support Unicode and store all of our strings as Unicode internally. Thus, code such as (for example):

    Dim As Integer

    = 5

    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--*

    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



  • Sami language characters