Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.1K+ articles
JavaScript
12.2K+ articles
School Learning
11.5K+ articles
Java
10.8K+ articles
Misc
8.8K+ articles
Java Programs
2.0K+ articles
Java-Conversion-Programs
11 posts
Recent Articles
Popular Articles
Java Program to Convert Infix Expression to Postfix expression
Last Updated: 24 October 2023
In this article let us discuss how to convert an infix expression to a postfix expression using Java.Pre-Requisites:1. Infix expression: Infix expressions are expressions ...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Geeks Premier League
Geeks Premier League 2023
Java Program to Convert Boolean to String
Last Updated: 22 September 2023
In Java programming, you might come across the need to convert a simple "true" or "false" boolean value into a String. It may seem like a challenging task, but fear not! I...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Binary to Decimal Conversion in Java
Last Updated: 04 March 2024
You are given a binary number as input and your task is to convert that number to its decimal equivalent through a Java program.Examples : Input : 1100Output : 12Input : 1...
read more
Java
Picked
Java-Conversion-Programs
Java Program to Convert Byte Array to Object
Last Updated: 02 February 2022
Converting byte array into Object and Object into a byte array process is known as deserializing and serializing. The class object which gets serialized/deserialized must ...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Java Program to Convert Char to Byte
Last Updated: 02 February 2022
Given a char in Java, the task is to write a Java program that converts this char into Byte.Examples:Input: ch = 'A'Output: 65Input: ch = 'B'Output 66In Java, char is a pr...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Java Program to Convert Byte Array to Long
Last Updated: 11 February 2022
A Java Byte Array is an array used to store byte data types only. The default value of each element of the byte array is 0.Given an array of bytes, convert it to a long va...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Java Program For Int to Char Conversion
Last Updated: 09 April 2025
In this article, we will check how to convert an Int to a Char in Java. In Java, char takes 2 bytes (16-bit UTF encoding ), while int takes 4 bytes (32-bit). So, if we wan...
read more
Java
Java Programs
Java-Conversion-Programs
Java Program for Hexadecimal to Decimal Conversion
Last Updated: 21 April 2025
Given a Hexadecimal (base 16) number N, and our task is to convert the given Hexadecimal number to a Decimal (base 10). The hexadecimal number uses the alpha-numeric value...
read more
Java
Java Programs
Java-Conversion-Programs
Java Program to Convert Octal to Decimal
Last Updated: 14 April 2025
Octal numbers are numbers with 8 bases and use digits from 0-7. This system is a base 8 number system. The decimal numbers are the numbers with 10 as their base and use di...
read more
Java
Technical Scripter
Java Programs
Technical Scripter 2020
Java-Conversion-Programs
Java Program to Convert Binary to Octal
Last Updated: 23 April 2025
A Binary (base 2) number is given, and our task is to convert it into an Octal (base 8) number. There are different ways to convert binary to decimal, which we will discus...
read more
Java
Java Programs
Picked
Java-Conversion-Programs
Java Program to Convert Char to Int
Last Updated: 23 April 2025
Given a char value, and our task is to convert it into an int value in Java. We can convert a Character to its equivalent Integer in different ways, which are covered in t...
read more
Java
Java Programs
Java-Conversion-Programs
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !