0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ネットワークを基本からまとめてみた【進数変換】

Last updated at Posted at 2025-08-11

2進数

  • CPの世界文字 = 0と1のみ

データが送られる仕組み

  • CPはどんな情報も2進数データ(0と1を組み合わせた数値のデータ)に変換して扱う
  • 2進数データはバイナリデータともいう
  • 人間にわかる情報⇨2進数データ⇨電気信号⇨2進数データ⇨人間にわかる情報 という順で伝達されていく

2進数 ⇄ 10進数 変換

IPアドレス
(10進数)
IPアドレス
(2進数)
172 10101100
1 00000001
2 00000010
3 00000011
203 11001011

16進数

0 1 2 3 4 5 6 7 8 9 A(10) B(11) C(12) D(13) E(14) F(15) 
  • 0xD26A
    ※ 16進数の数値を表記する際は先頭に0xをつける

2進数 ⇄ 16進数 変換

2進数 16進数)
0001 1
1100 C
1011 B

参考サイト

【CCNA講座】2進数/16進数とは?「進数変換」をわかりやすく解説【インフラエンジニア基礎入門 #7】

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?