defmodule Test do def crc32(str) do IO.puts :erlang.crc32(str) |> Integer.to_string(16) end end Test.crc32("The quick brown fox jumps over the lazy dog")