Hello, you have come here looking for the meaning of the word
Module:User:Surjection/hexdump. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:User:Surjection/hexdump, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:User:Surjection/hexdump in singular and plural. Everything you need to know about the word
Module:User:Surjection/hexdump you have here. The definition of the word
Module:User:Surjection/hexdump will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:User:Surjection/hexdump, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
return function(s)
local r = {}
for i = 1, #s do
table.insert(r, string.format("%02X", s:byte(i)))
end
return table.concat(r, " ")
end