Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

binary-to-text encoding without lowercase (Base64)?

I need a binary-to-text encoding, like base64, that takes binary and produce text but i can't have any lowercase letters.

Anything but lowercase letters. Or anything case unsensitive that i can set to uppercase.

Is it possible?

Thanks a lot !

like image 501
Bloodshinx Avatar asked Sep 18 '25 11:09

Bloodshinx


1 Answers

You're looking for Base32

The resulting character set is all one case, which can often be beneficial when using a case-insensitive filesystem, spoken language, or human memory.

like image 162
George Richardson Avatar answered Sep 20 '25 08:09

George Richardson