Where are you trying to put these characters? In a normal string, say
Code:
Dim sample as String
sample = "#£"
The only character that needs an escape sequence is ", you escape this by doing double quotes:
Code:
Dim sample as String
sample = "Hello ""Tan Su Loon""!"
MessageBox.Show(sample)
You'd be better off posting this sort of thing in the Beginning
VB/Beginning
VB.Net forum - this forum is for discussions on the new version of Visual Studio, not for help requests