進数表現
進数
0b (2 進数)、0o (8 進数)、0d (10 進数)、0x (16 進数)
進数変換関数
.hex(16進数)
.oct(8進数)
.to_i(n) (n進数に変換、引数無しで10進数)
.to_s(n)(n進数に変換、引数無しで10進数)