char code example

Example 1: c# char

var chars = new[]
{
    'j',
    '\u006A',
    '\x006A',
    (char)106,
};
Console.WriteLine(string.Join(" ", chars));  // output: j j j j

Example 2: charcount

//Calculate the times a character occurs
	public static int charCount(String userInput) {
		
		//convert the string to a char array
		char[] StringArray = userInput.toCharArray();
		
		//hashmap that stores the characters. key will be the time it occures
		HashMap<Character, Integer>charCount = new HashMap<Character, Integer>();

Tags:

Misc Example