🔄

Encoders & Converters Cheatsheet

Base64, URL encoding, HTML entities, hex/ASCII reference table for developers.

Encoding Formats at a Glance

EncodingInput ExampleOutput ExampleUse Case
Base64HelloSGVsbG8=Binary → ASCII, JWTs, data URIs
Base64urlHelloSGVsbG8URL-safe Base64 (no +/= chars)
URLHello World!Hello%20World%21Query strings, path segments
HTML Entities<script>&lt;script&gt;Safe HTML rendering
HexA (65 decimal)41Binary data, color codes, hashes
Unicode escape©\u00A9JavaScript string literals

ASCII / Hex Reference

CharDecimalHexDescription
(space)3220Space
!3321Exclamation mark
"3422Double quote
#3523Hash
%3725Percent — URL-encodes other chars
&3826Ampersand
+432BPlus — means space in form encoding
/472FSlash
:583AColon
=613DEquals — Base64 padding
?633FQuestion mark — query separator
@6440At sign
A6541Uppercase A
Z905AUppercase Z
a9761Lowercase a
z1227ALowercase z

Common HTML Entities

EntityNamedNumericCharacter
Less than&lt;&#60;<
Greater than&gt;&#62;>
Ampersand&amp;&#38;&
Double quote&quot;&#34;"
Non-breaking space&nbsp;&#160;(space)
Copyright&copy;&#169;©
Registered&reg;&#174;®
Em dash&mdash;&#8212;
Euro sign&euro;&#8364;
← All Cheatsheets