You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`base2` | text <-> Base2 encoded text | `(base[-_]?2|bin)-inv(erted)?` |
16
-
`base4` | text <-> Base4 encoded text | `base[-_]?4-inv(erted)` | charset: `1234`
17
-
`base8` | text <-> Base8 encoded text | `base[-_]?8-inv(erted)` | charset: `abcdefgh`
15
+
`base2` | text <-> Base2 encoded text | `(base[-_]?2|bin)-inv(erted)?` | Dynamic charset parameter `[-_]...`, amongst letters and digits (e.g. `_AB`)
16
+
`base4` | text <-> Base4 encoded text | `base[-_]?4-inv(erted)` | Dynamic charset parameter `[-_]...`, amongst letters and digits (e.g. `_6VC9`)
17
+
`base8` | text <-> Base8 encoded text | `base[-_]?8-inv(erted)` | Charset: `abcdefgh` ; Dynamic charset parameter `[-_]...`, amongst letters and digits (e.g. `_A5c96T7x`)
18
18
`base16` | text <-> Base16 encoded text | `base[-_]?16-inv(erted)` |
19
-
`base32` | text <-> Base32 encoded text | `base[-_]?32-inv(erted)` |
20
-
`zbase32` | text <-> ZBase32 encoded text | `z[-_]?base[-_]?32` | human-oriented Base32
19
+
`base32` | text <-> Base32 encoded text | `base[-_]?32-inv(erted)`, `base32-crockford`, `base32_geohash`, ... | Also supports Base32 Crockford, Geohash and Hex
20
+
`zbase32` | text <-> ZBase32 encoded text | `z[-_]?base[-_]?32` | Human-oriented Base32
21
21
`base64` | text <-> Base64 encoded text | `base[-_]?64-inv(erted)` |
22
22
23
23
!!! note "Aliases"
@@ -62,10 +62,12 @@ Note that for `base64`, it overwrites the native `base64_codec` to also support
`base3` | text <-> Base3 encoded text | `base[-_]?36(|[-_]inv(erted)?)` |
65
+
`base3` | text <-> Base3 encoded text | `base[-_]?3(|[-_]inv(erted)?)` | Dynamic charset parameter `[-_]...`, amongst letters and digits (e.g. `_C2Z`)
66
+
`base10` | text <-> Base10 encoded text | `base[-_]?10|int(?:eger)?|dec(?:imal)?` |
67
+
`base11` | text <-> Base11 encoded text | `base[-_]?11(|[-_]inv(erted)?)` |
66
68
`base36` | text <-> Base36 encoded text | `base[-_]?36(|[-_]inv(erted)?)` |
67
69
`base45` | text <-> Base45 encoded text | `base[-_]?45(|[-_]inv(erted)?)` |
68
-
`base58` | text <-> Base58 encoded text | `base[-_]?58(|[-_](bc|bitcoin|rp|ripple|fl|flickr|short[-]?url|url))` | supports Bitcoin, Ripple and short URL
70
+
`base58` | text <-> Base58 encoded text | `base[-_]?58(|[-_](bc|bitcoin|rp|ripple|fl|flickr|short[-]?url|url))` | Supports Bitcoin, Ripple and short URL
69
71
`base62` | text <-> Base62 encoded text | `base[-_]?62(|[-_]inv(erted)?)` |
70
72
`base63` | text <-> Base63 encoded text | `base[-_]?63(|[-_]inv(erted)?)` |
71
73
`base91` | text <-> Base91 encoded text | `base[-_]?91(|[-_]inv(erted)?)` |
@@ -131,11 +133,7 @@ This encoding implements various different versions of Base85.
0 commit comments