VBNet Function to Return Unicode Character

  • Thread starter Thread starter Kevin Carter
  • Start date Start date
K

Kevin Carter

Hi there,

I'm trying to find/use a function (similar to SQL's "CHAR"
function) to where I can provide a decimal (like 229) and
have it return the Unicode character.

Thanks for your help,
Kevin
 
Hello,

Kevin Carter said:
I'm trying to find/use a function (similar to SQL's "CHAR"
function) to where I can provide a decimal (like 229) and
have it return the Unicode character.

Have a look at the 'ChrW' function.
 
Kevin Carter said:
Hi there,

I'm trying to find/use a function (similar to SQL's "CHAR"
function) to where I can provide a decimal (like 229) and
have it return the Unicode character.

Chr(229)
 
Back
Top