Tag: encoding
Total: 7 Posts
Posts of Tag: encoding
Total: 7 Posts
Posts of Tag: encoding
Encode a String to UTF-8 in Java
Introduction When working with Strings in Java, we oftentimes need to encode them to a specific charset, such as UTF-8. UTF-8 represents a variable-width character encoding that uses between one and four eigh...Learn MoreStringJavaapache commonsencodingEncoding and Decoding Base64 Strings in Java
Encoding and Decoding Base64 Strings in Java Introduction The process of converting data by applying some techniques/rules into a new format is called encoding. Decoding is the reverse process of encoding - tur...Learn MoreStringJavaBase64BinaryencodingPassword Encoding with Spring Security
Password Encoding with Spring Security Introduction Password Encoding is the process in which a password is converted from a literal text format into a humanly unreadable sequence of characters. If done correct...Learn MoreJavaSecuritySpringSpring BootencodingEncoding and Decoding Base64 Strings in Python
Encoding and Decoding Base64 Strings in Python Introduction Have you ever received a PDF or an image file from someone via email, only to see strange characters when you open it? This can happen if your email s...Learn MorePythonStringBase64BinaryencodingOne-Hot Encoding in Python with Pandas and Scikit-Learn
One-Hot Encoding in Python with Pandas and Scikit-Learn Introduction In computer science, data can be represented in a lot of different ways, and naturally, every single one of them has its advantages as well a...Learn MorePythonscikit-learndata sciencepandasencodingRun-Length Encoding
Run-Length Encoding In this article we'll go over how the run-length encoding algorithm works, what it's used for, and how to implement its encode and decode functions in Python. Run-length encoding (RLE) is a ...Learn MorePythonAlgorithmencodingOne-Hot Encoding
One-Hot Encoding In computer science and electronics, there are quite a few ways to represent data, often called encoding schemes. Each has its own purpose, advantages, and disadvantages. In this short article ...Learn MoreMachine LearningComputerencoding