I have a string
and I want the get the second character from this string
// with a normal string the result is
var normalString = "abc"
normalString[1] // -> b
// but with this one the reslt is
var weirdString = ""
weirdString[1] // -> � I get this "replacement charactere" instead of