We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2876f3b commit 7451f37Copy full SHA for 7451f37
README.md
@@ -138,6 +138,15 @@ implementations support custom alphabets.
138
* Base85: High-density encoding (4 bytes to 5 characters).
139
* Base64 / Base64UrlSafe: RFC 4648 compatible.
140
141
+Encoding `"any byte data"` (13 bytes):
142
+
143
+| Codec | Output | Length | Alphabet |
144
+|--------|-------------------------|--------|------------------|
145
+| Base62 | `2BVj6VHhfNlsGmoMQF` | 18 | `[0-9A-Za-z]` |
146
+| Base36 | `0ksef5o4kvegb70nre15t` | 21 | `[0-9a-z]` |
147
+| Base64 | `YW55IGJ5dGUgZGF0YQ==` | 20 | `[0-9A-Za-z+/=]` |
148
+| Base85 | `@;^?5@X3',+Cno&@/` | 17 | ASCII 33–117 |
149
150
---
151
152
## Encryption
0 commit comments