From e08cbb0fa9190ab1bc5044fdfb692672bcc14813 Mon Sep 17 00:00:00 2001 From: Infendro Date: Wed, 21 Jan 2026 22:09:31 +0100 Subject: [PATCH] fix README --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cde6624..6828ec2 100644 --- a/README.md +++ b/README.md @@ -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 } ```