Convert from Decimal to Hexadecimal WORD DecToHex(WORD wDec) { return (wDec / 1000) * 4096 + ((wDec % 1000) / 100) * 256 + ((wDec % 100) / 10) * 16 + (wDec % 10); } Convert from Hexadecimal to Decimal WORD HexToDec(WORD wHex) { return (wHex / 4096) * 1000 + ((wHex % 4096)