Java Unsigned Number Create unsignedChar(char c)

Here you can find the source of unsignedChar(char c)

Description

unsigned Char

License

Open Source License

Declaration

public static int unsignedChar(char c) 

Method Source Code

//package com.java2s;

public class Main {
    public static int unsignedChar(char c) {
        return c & 0xFFFF;
    }//from  w  w w  . j  a  v  a  2 s  .  co m
}

Related

  1. unsignedByteToIntArray(byte[] bytes)
  2. unsignedByteToLong(final byte b)
  3. unsignedByteToString(int i)
  4. unsignedByteValue(byte[] data, int offset)
  5. unsignedByteValue(final byte input)
  6. unsignedChar(int val)
  7. unsignedCharToInt(byte[] b)
  8. unsignedCompare(long left, long right)
  9. unsignedConstraintValue(double v, double min, double max)