일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ubuntu
- 노드
- 우분투
- Windows
- 자바
- Atlassian
- 설치
- 설정
- javascript
- 스크립트
- java
- 아틀라시안
- 하모니카
- Linux
- node
- 윈도우
- install
- 리눅스
- PostgreSQL
- script
- DATABASE
- python
- 데이터베이스
- 자바스크립트
- 3.0
- postgres
- 파이썬
- hamonikr
- JS
- DB
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
byte to hex, number to hex, hex to number, character to ascii, uint16 to ascii 본문
개발/javascript
byte to hex, number to hex, hex to number, character to ascii, uint16 to ascii
LukeHan1128 2023. 4. 30. 20:00반응형
// byte to hex
function toHexString(byteArray){
return Array.from(byteArray, function(byte){
return ('0' + (byte & 0xFF).toString(16)).slice(-2);
}).join('')
}
// number to hex
function dec2hex(num){
hexString = num.toString(16);
return hexString;
}
// hex to number
function hex2dec(hexString){
num = parseInt(hexString, 16);
return num;
}
// char to ascii
function char2ascii(numStr){
return numStr.charCodeAt(0);
}
// uint16 to ascii
var uInt16 = hex2dec(66);
var ascii = String.fromCharCode(uInt16).toUpperCase();
console.log(ascii);
/****** print : F ******/
반응형
Comments