2進数翻訳ツール
テキストを2進数コードに変換したり、その逆を行ったりします。各文字は8ビットのASCII表現に変換されます。
このツールの使い方
- 1
Pick a direction from the dropdown: 'Text → Binary' to encode, or 'Binary → Text' to decode.
- 2
Type or paste your input into the text box.
- 3
Read the converted result in the gray output panel below as you type — it updates live.
- 4
When decoding, separate each 8-bit group with a space so the tool knows where one character ends and the next begins.
2進数翻訳ツールとは何ですか?
コンピューターはすべてのテキストを2進数、つまり0と1の並びとして保存します。各ASCII文字は0から127までの数値に対応し、これは7ビットに収まります(バイト境界に揃えるため8ビットに埋められます)。たとえば、文字「A」は10進数で65であり、2進数では01000001になります。
よくある活用例
Teaching or learning how ASCII characters map to their binary byte values in a computer science class.
Decoding a short binary string someone shared in a puzzle, CTF challenge, or chat message.
Quickly checking the 8-bit pattern of a specific letter or symbol while debugging low-level code.
Creating a simple binary-encoded message for a hobby project, escape room, or geocaching clue.
Demonstrating place value and base-2 representation when explaining how data is stored.
Sanity-checking that a piece of text is pure ASCII before sending it through a byte-oriented protocol.
よくある質問
絵文字でも動作しますか?▼
関連ツール
パスワードハッシュジェネレーター(PBKDF2)
PBKDF2-SHA256を使い、ブラウザ内で安全なパスワードハッシュを生成します。MD5や単純なSHAより強力で、作業係数を調整できます。
HMACジェネレーター
SHA-1、SHA-256、SHA-384、SHA-512を使ってHMAC署名を生成します。
AES-256暗号化
AES-256-GCMでテキストを暗号化・復号します。鍵はPBKDF2-SHA256を使ってパスフレーズから導出されます。
2FA用QRコードジェネレーター
Google Authenticator、Authy、1Password、その他の2FAアプリ向けにTOTPのQRコードを生成します。
パスワード強度チェッカー
パスワードのエントロピーを、文字集合の大きさや一般的なパスワードのリストと照らし合わせて確認します。完全にオフラインで動作します。
シーザー暗号エンコーダー&デコーダー
シーザー暗号でテキストをエンコードまたはデコードします。固定のシフト量に従って文字を置き換える方式です。