Base64 vs Hex - Ktere kodovani pouzit?
Srovnani kodovani Base64 a Hex pro binarni data. Rozdily ve velikosti, citelnosti a typicke scenare pouziti.
Porovnani Base64 a Hex
Porovnani obou moznosti podle klicovych vlastnosti.
| Vlastnost | Base64 | Hex |
|---|---|---|
| Encoding Ratio | ~33% larger | 100% larger |
| Human Readability | Low | High |
| Case Sensitivity | Yes | Usually no |
| Debugging Ease | Hard | Easy (byte-aligned) |
| URL Safety | Needs URL-safe variant | Inherently safe |
| Widely Supported | Universal | Universal |
| Charset Size | 64 chars | 16 chars |
| Best for Email/MIME | Yes | No |
Nejlepsi
Stredni
Slabe
✓ = vitez v radku
Kdy pouzit - shrnuti
Base64
Vkladani binarnich dat do JSONu, e-mailu (MIME) a data URI v HTML/CSS.
Hex
Ladeni pameti, kontrolni soucty, hashe, MAC adresy a barvy v CSS.
Kdy pouzit jednotlive formaty
Kdy pouzit Base64
- Embedding images or fonts inline in CSS and HTML (data URIs)
- Email attachments via MIME (base64 is the standard)
- JWT payloads and JSON Web Signatures
- Encoding binary blobs inside JSON or XML APIs
- Data URIs in SVG and HTML to avoid extra HTTP requests
Kdy pouzit Hex
- Memory addresses and byte dumps in debuggers (hexdump, xxd)
- Cryptographic hashes and checksums (SHA-256, MD5)
- MAC addresses and IPv6 addresses
- Color codes in CSS and design tools (#FF8800)
- Smart contract bytecode and transaction data on blockchains
Casto kladene otazky
Which is smaller, Base64 or Hex?
Base64 is smaller. It encodes 6 bits per character, producing output that is approximately 33% larger than the original binary. Hex encodes only 4 bits per character, so its output is exactly 100% larger (twice the size). For the same input, Base64 is roughly 25% smaller than Hex.
Why is Hex easier to debug than Base64?
Each pair of hex characters always maps to exactly one byte, so you can read off byte values directly and spot patterns. Base64 groups bits across character boundaries, so a single byte change can shift the alignment and change several characters. This makes byte-level inspection far easier in Hex.
Is Base64 URL-safe?
Standard Base64 uses the + and / characters, which have special meaning in URLs. A URL-safe variant replaces them with - and _ and often drops padding. Hex uses only 0-9 and A-F, which are all URL-safe without modification.
Can I use Hex for email attachments?
You could in theory, but email MIME standards specify Base64 as the canonical binary encoding. Hex (also known as base16) would double the size of attachments compared to Base64's 33% overhead, so it is never used for this purpose in practice.
Why are cryptographic hashes shown in Hex?
Hex is the conventional representation for hashes, checksums, and keys because it is byte-aligned, case-insensitive in most tools, and easy to compare visually. Each byte becomes exactly two characters, so SHA-256 (32 bytes) is always shown as a 64-character hex string.