'0' here is not 0, but 48, which is printable.
iex(test@127.0.0.1)> [0]
[0]
iex(test@127.0.0.1)> [?0]
'0'
iex(test@127.0.0.1)> [48]
'0'
iex(test@127.0.0.1)> ?0
48
'0' here is not 0, but 48, which is printable.
iex(test@127.0.0.1)> [0]
[0]
iex(test@127.0.0.1)> [?0]
'0'
iex(test@127.0.0.1)> [48]
'0'
iex(test@127.0.0.1)> ?0
48