---
title: "How do I print Unicode of your full name?"  
description: "How do I print Unicode of your full name?"  
author: "simron shukla"  
published: 2018-03-11  
updated: 2018-04-03  
canonical: https://answers.mindstick.com/qa/39739/how-do-i-print-unicode-of-your-full-name  
category: "programming"  
tags: ["java programming"]  
reading_time: 1 minute  

---

# How do I print Unicode of your full name?

How do I [print](https://answers.mindstick.com/qa/49846/where-is-the-print-screen-key-on-a-mac) [Unicode](https://www.mindstick.com/blog/10894/unicode-system) of your [full](https://www.mindstick.com/articles/12893/experience-the-full-power-of-suitecrm) [name](https://answers.mindstick.com/qa/100691/name-a-famous-tennis-tournament-played-on-grass)?\

\

## Answers

### Answer by Arti Mishra

**Unicode:** Unicode is new ideas to setting up character format to binary code. Unicode is a ‘universal international’ standard character encoding format that is used to represent unique number of every character. It is a powerful universal code for interchanging, processing and displaying the written character in numerical format. It is also used to find the Unicode value of any special symbol. Unicode format provide a unique value of every character, and it also resolve the problem of platform in dependencies. In java & other programming language the Unicode value for Uppercase is (65-90) & for Lowercase(97-122). ![How do I print Unicode of your full name?](https://answers.mindstick.com/questionanswer/cc33797f-d0a6-441a-86de-0aff13d64d9c/images/e1f9041a-feb4-414d-bb99-57dbb6e259e6.png)\
**Find the Unicode of any String:** import java.util.*; public class DisplayUnicode{ public static void main(String []args){ Scanner scanner = new Scanner(System.in); System.out.println("Enter Your Name…"); String name=scanner.nextLine(); // String name="Hello"; for(int i=0;i<name.length();i++) { System.out.println(name.charAt(i)+"="+(int)name.charAt(i)); } } } \


---

Original Source: https://answers.mindstick.com/qa/39739/how-do-i-print-unicode-of-your-full-name

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
