Encode/Decode Text
Format Information:
Base64
Input:
Hello World
Output:
SGVsbG8gV29ybGQ=
Commonly used for encoding binary data in text format
URL Encoding
Input:
Hello World!
Output:
Hello%20World%21
Used for URLs to handle special characters
HTML Entities
Input:
Hello & World
Output:
Hello & World
Escapes HTML special characters for web content
Unicode Escape
Input:
Hello
Output:
\u0048\u0065\u006c\u006c\u006f
Unicode escape sequences for programming
Binary
Input:
Hi
Output:
01001000 01101001
Binary representation of text characters
Hexadecimal
Input:
Hi
Output:
48 69
Hexadecimal representation of characters