1 2 3 > >>   ∑:53  Sort:Rank

Base32 Encoding Algorithm
This section describes the Base32 encoding algorithm with some simple encoding examples.
2024-01-20, 16215🔥, 12💬

💬 2024-01-20 Hello World!: super

💬 2023-05-22 dino: helloiamdino

💬 2022-11-11 Herong: Tomi, you can have lowercase, uppercase, or any kind of characters in the input. They all are encoded as binary input data. By d...

💬 2022-11-09 Tomi: One question, can we have lowercase and uppercase letters in both the input and output?

💬 2021-03-20 Yours: Encryption is the method by which information is converted into secret code that hides the information's true meaning. The scien...

(More comments ...)

Base64 Encoding Algorithm
This section describes the Base64 encoding algorithm with some simple encoding examples.
2024-01-04, 22758🔥, 33💬

💬 2024-01-04 wis: I get the impression we read the input string from left to right? The string "ABCD" gets divided into "ABC" and "D"? -> QUJDRA==...

💬 2023-01-26 JB: Seizka

💬 2022-10-19 budi: nice

💬 2022-02-06 ANONYMOUS: Wow! Nice explain.. Thanks a lot ;)

💬 2021-11-21 Jack: The best explanation of Base64 encoding! Thanks!

(More comments ...)

Windows Command - "certutil -encode/-decode"
This section provides a tutorial example on how to use 'certutil -encode' command on a Windows system to perform Base64 encoding and decoding.
2023-09-13, 30585🔥, 8💬

💬 2023-03-12 reuven: BljLekAtpu5P/0tC7W2A/kGfa0pIz5LV52xj KwDtM3Ne04Z39D69GFqZ3qTfTBLAKMbZuJx5 /rST7L7VVpdp/RH6Cjcw5/dhmAuRzhWGOyFq d3p/b8YOj8A8DvwUF8bg...

💬 2022-09-28 Amol: MIIDFDCCAfwCAQAwgZIxCzAJBgNVBAYTAkFV MQwwCgYDVQQIDANWSUMxEjAQBgNVBAcMCU1lbGJvdXJuZTEaMBgGA1UECgwRTW9u ZXkgYnkgQWZ0ZXJwYXkxHDAaBgN...

💬 2022-07-21 Herong: R, thanks for the correction.

💬 2022-07-20 R W: "Base64 with not line breaks" should be"Base64 with no line breaks"

Base64URL Encoding Algorithm
This section describes the Base64URL encoding algorithm, which is a variation of the standard Base64 encoding algorithm with 2 characters 2 characters '+/' replaced by '-_'.
2023-08-27, 1837🔥, 2💬

💬 2023-08-27 jozo: test b64

UUEnccode Algorithm
This section describes the UUEncode algorithm with some simple encoding examples.
2023-05-17, 2616🔥, 6💬

💬 2016-06-08 Herong: Neel, can you post an example of the uuencoded string that failed? May be we can figure the root cause of the issue.

💬 2016-06-01 Neel: Hi, we are using this uudecoder since long time in our code but recently we are facing issue like "Index out of range" and that ...

💬 2015-09-16 Mark Sitkowski: Excellent! Just what I was looking for

application/x-www-form-urlencoded Encoding in Java
This section provides a tutorial example on how to use Java URLEncoder class to perform application/x-www-form-urlenco dedencoding and decoding.
2023-01-24, 9707🔥, 3💬

💬 2023-01-24 fsdfsfd: csafa

💬 2017-03-31 s: &response=00&responseTimeSta mp=1490897171453&externalId=123f gh&type=AUTHORIZE_RESPONSE&serviceId=102&re...

💬 2016-09-22 dasgjdfa: test & good

URL Encoding Variations
This section describes variations of URL encodings: RFC 3986 URI Encoding, application/x-www-form-urlenco dedEncoding, RFC 1738 URL Encoding.
2022-11-23, 595🔥, 1💬

macOS Command - "base64"
This section provides a tutorial example on how to use 'base64' command on a macOS system to perform Base64 encoding and decoding.
2022-10-01, 4692🔥, 0💬

Python Built-In Implementation of MIME Base64
This section provides a tutorial example on how to perform Base64 encoding on binary files with both standard and MIME options using the default Python implementation of the Base64 encoding algorithm.
2022-10-01, 1269🔥, 0💬

Linux Command - "base64"
This section provides a tutorial example on how to use 'base64' command on a Linux system to perform Base64 encoding and decoding.
2022-10-01, 604🔥, 0💬

Base64.Guru - Base64 Online Tool
This section describes the Base64.Guru Website, which offers a Base64 online tool for decoding and encoding with a number nice features.
2022-10-01, 518🔥, 0💬

madebits Implementation of Base32 in C++
This section provides a C++ implementation of the Base32 encoding algorithm by madebits.com.
2022-10-01, 516🔥, 0💬

URI String and Components in Java
This section provides a tutorial example on how to create URI strings with URI components using Java java.net.URI class.
2022-10-01, 505🔥, 0💬

Java Built-In Implementation of Base64URL
This section provides a tutorial example on how to perform Base64URL encoding on binary files using the default Java implementation of the Base64URL encoding algorithm.
2022-10-01, 428🔥, 0💬

Base64 Encoding and Decoding Tools
This chapter provides notes and tutorials on Base64 encoding tools and built-in implementations in different programming languages. Topics include reviewing Base64 online tools; introducing Base64 command line tools on Windows, Linux and macOS systems; testing built-in implementations of Base64 enco...
2022-10-01, 407🔥, 0💬

URL Encoding on HTML Form Data - IE
This section provides a tutorial example on how Internet Explorer (IE) 7.0 is applying URL encoding on HTML form input data. IE uses application/x-www-form-urlenco dedencoding.
2022-10-01, 398🔥, 0💬

Java Built-In Implementation of MIME Base64
This section provides a tutorial example on how to perform Base64 encoding on binary files with both standard and MIME options using the default Java implementation of the Base64 encoding algorithm.
2022-10-01, 349🔥, 0💬

Base32 Character Set Maps
This section describes some Base32 character set maps defined in RFC 3548 and RFC 2938.
2022-10-01, 347🔥, 0💬

Andre's Implementation of Base32 in PHP - Test
This section provides a test program for the PHP implementation of the Base32 encoding algorithm by Andre DeMarre.
2022-10-01, 313🔥, 0💬

Perl Built-In Implementation of MIME Base64
This section provides a tutorial example on how to perform Base64 encoding on binary files with both standard and MIME options using the default Perl implementation of the Base64 encoding algorithm.
2022-10-01, 312🔥, 0💬

Full Version in PDF/EPUB
Information on how to obtain the PDF version of this book for printing.
2022-10-01, 307🔥, 0💬

PHP Implementation of Base64URL Encoding
This section provides a tutorial example on how to perform Base64URL encoding on binary files using my own implementation in PHP.
2022-10-01, 305🔥, 0💬

Base64URL - URL Safe Base64 Encoding
This chapter provides notes and tutorials on Base64URL encoding algorithm and implementations. Topics include reviewing Base64URL encoding algorithm; invoking built-in implementation of Base64URL encoding functions in Java and Python; implementing Base64URL encoding yourself in PHP and Perl.
2022-10-01, 297🔥, 0💬

Base64 Encoding
This chapter provides notes and tutorials on Base64 encoding algorithm and implementations. Topics include reviewing Base64 encoding algorithm; W3C implementation and Sun implementation in Java.
2022-10-01, 287🔥, 0💬

1 2 3 > >>   ∑:53  Sort:Rank