01

Text Encoder

Convert text to binary, hex, octal, Base32, and Morse code.

text encoderbinary converterhex encodermorse code
Input Text16 chars
01Binary
01001000 01100101 01101100 01101100 01101111 00101100 00100000 01010111 01101111 01110010 01101100 01100100 00100001 00100000 1101100000111100 1101111100001101
0xHexadecimal
48 65 6c 6c 6f 2c 20 57 6f 72 6c 64 21 20 d83c df0d
0oOctal
110 145 154 154 157 054 040 127 157 162 154 144 041 040 154074 157415
#ASCII Codes
72 101 108 108 111 44 32 87 111 114 108 100 33 32 55356 57101
%URL Encoded
Hello%2C%20World!%20%F0%9F%8C%8D
U+Unicode
U+0048 U+0065 U+006C U+006C U+006F U+002C U+0020 U+0057 U+006F U+0072 U+006C U+0064 U+0021 U+0020 U+1F30D
&#HTML (Numeric)
Hello, World! ��
&#xHTML (Hex)
Hello, World! ��
ROT13
Uryyb, Jbeyq! 🌍
Reversed
🌍 !dlroW ,olleH
·−Morse Code
.... . .-.. .-.. --- --..-- / .-- --- .-. .-.. -.. ! / � �

What is Text Encoder?

Text Encoder converts text to and from various encoding formats including binary, hexadecimal, octal, Base32, and Morse code. Useful for learning, encoding, and data representation.

Common Use Cases

Learning

Understand how text is represented in binary and hex.

Development

Convert text for debugging and testing.

Puzzles

Create encoded messages and puzzles.

Data Analysis

View text in different representation formats.

How to Use This Tool

  1. Enter text to encode
  2. Select encoding format (binary, hex, etc.)
  3. View the encoded result
  4. Decode by pasting encoded text

Frequently Asked Questions

How is text converted to binary?
Each character is converted to its ASCII code, then to 8-bit binary (e.g., A = 01000001).
What is Morse code?
Morse code represents letters as patterns of dots and dashes. A = .-
Is hexadecimal encoding encryption?
No, it is just a different representation. It can be easily decoded.