使い方:
bin(<expression>)bin は、引数のバイナリ表現を含む文字列を返します。
例:
-- get the binary representation of 1
bin(1)
-- get the binary representation of a string`
bin('abc')使い方:
hex(<expression>)hex は、引数の 16 進数表現を含む文字列を返します。
例:
-- get the hexadecimal representation of 1
hex(1)
-- get the hexadecimal representation of a string`
hex('abc')