Skip to content

Instantly share code, notes, and snippets.

@ogaty
Created January 9, 2019 13:36
Show Gist options
  • Save ogaty/bae332465fa4bffd5868e94c4819e017 to your computer and use it in GitHub Desktop.
Save ogaty/bae332465fa4bffd5868e94c4819e017 to your computer and use it in GitHub Desktop.
10進16進

これでもいいんだけど

echo "ibase=16; FF" | bc
echo "ibase=10;obase=16; 255" | bc

これが一番わかりやすい気がする

python -c 'print(hex(255))' # ff
python -c 'print(int(0xff))' # 255
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment