I have a little problem with strings

if I do:
---
test = "test" & Chr(0) & Chr(0) & Chr(0) & "test"
Label1.Caption = Right(test, 1)
---

then the caption of the label will stay blank while it is supposed to be "t".
It seems that the second "test" is lost...

Is there a way to get ALL the characters in the string so they can be put in label1.caption?

Thank you