Numeral System Converter in Lua by HexaG0n.
It converts ASCII to Binary, Octals, Decimals, Hexadecimals and Binary, Octals, Decimals and Hexadecimals to ASCII.
require('numsy')
--then you can do for example
print(str2hex('Hello'))
- str2bin >> Converts ASCII String text to Binary
- str2oct >> Converts ASCII String text to Octal
- str2dec >> Converts ASCII String text to Decimal
- str2hex >> Converts ASCII String text to Hexadecimal
- bin2str >> Converts Binary code to ASCII String Text
- oct2str >> Converts Octal code to ASCII String Text
- dec2str >> Converts Decimal code to ASCII String Text
- hex2str >> Converts Hexadecimal code to ASCII String Text