Java Hex Calculate toHexChar(int paramInt)

Here you can find the source of toHexChar(int paramInt)

Description

to Hex Char

License

Open Source License

Declaration

private static char toHexChar(int paramInt) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static char toHexChar(int paramInt) {
        return (char) (paramInt + (paramInt < 10 ? 48 : 55));
    }//from   www . j a v a2 s.  c o m
}

Related

  1. toHexChar(int digitValue)
  2. toHexChar(int i)
  3. toHexChar(int i)
  4. toHexChar(int i)
  5. toHexChar(int nibble)
  6. toHexChar(int value)
  7. toHexCharArray(byte[] input)
  8. toHexCharFromBin(final String bin)
  9. toHexChars(byte[] bs)