Answers for "binary to number elixir"

0

binary to number elixir

iex> :binary.decode_unsigned("hello")
448378203247

iex> :binary.encode_unsigned(448378203247)
"hello"
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language