Here's a cheap way of doing it
VB Code:
  1. For x = 1 To 255
  2.         If "%" = Chr$(x) Then MsgBox "This is character " & x
  3.     Next x
Replace the % with your character.