URL encoding converts special characters into a format that can be transmitted over the Internet.
Characters like spaces become %20, and & becomes %26.
◈ BASE64 ENCODER / DECODER ◈
◈ INPUT0 characters
◈ OUTPUT0 characters
0
INPUT BYTES
0
OUTPUT BYTES
0%
SIZE CHANGE
◈ ABOUT BASE64
Base64 encoding represents binary data in an ASCII string format. It's commonly used for encoding data in emails,
data URLs, and storing complex data in JSON. Base64 increases data size by ~33%.
◈ HTML ENTITY ENCODER / DECODER ◈
◈ INPUT0 characters
◈ OUTPUT0 characters
◈ ABOUT HTML ENTITIES
HTML entities are used to display reserved characters in HTML. Characters like < and >
become < and > to prevent them from being interpreted as HTML tags.