Convert numbers in rails like binary to decimal Get link Facebook Twitter Pinterest Email Other Apps - November 29, 2019 value.to_i(from).to_s(to) i.e "1000".to_i(2).to_s(10) //here we are converting binary to decimal Read more