Elixir string representation

Elixir strings are binary data.

"a" is not different than <<65>>.

So erlport can’t know if you want a u"" string or a b"" string (erlport doesn’t even know there is a difference on the python side).

You have to decide on your own on the receiving script which one you need.