fix README
All checks were successful
/ test (pull_request) Successful in 45s

This commit is contained in:
2026-01-21 22:09:31 +01:00
parent 61d6a8e191
commit e08cbb0fa9

View File

@@ -5,11 +5,15 @@
Supported encodings:
- Base2 (binary)
- Base8 (octal)
- Base16 (hexadecimal)
- Base10 (decimal)
- Base16 (hexadecimal, uppercase/lowercase)
- Base32
- Base36
- Base45
- Base56
- Base58
- Base62
- Base64
- Base64 (standard/URL)
## Installation
@@ -35,6 +39,6 @@ fun main() {
// encode the string with the desired encoding
val encoded = Base16.encode(test).decodeToString()
println(encoded) // 48656c6c6f20576f726c6421
println(encoded) // 48656C6C6F20576F726C6421
}
```