String Encoder/Decoder

Encode and decode strings with URL, HTML, Unicode encoding

Encoding Types

URL Encoding

Converts special characters to percent-encoded format for safe URL transmission.

HTML Entities

Converts special HTML characters to their entity equivalents (<, >, &, etc.).

Base64

Encodes binary data as ASCII text using 64 printable characters.

Unicode Escape

Converts characters to Unicode escape sequences (\u0041 for 'A').