Ruby Cheat Sheet
number_to_binary
ruby
7.to_s(2)
python
"{0:b}".format(7 % 256)
javascript
(10).toString(2);
go
rust