일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스크립트
- Atlassian
- script
- 3.0
- java
- 우분투
- PostgreSQL
- JS
- 리눅스
- node
- 설치
- javascript
- python
- hamonikr
- 하모니카
- postgres
- 자바
- DB
- 노드
- ubuntu
- 데이터베이스
- 자바스크립트
- DATABASE
- Windows
- 윈도우
- Linux
- 파이썬
- 설정
- install
- 아틀라시안
Archives
- Today
- Total
목록uint16 (1)
LukeHan 의 잡다한 기술 블로그
byte to hex, number to hex, hex to number, character to ascii, uint16 to ascii
// 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 numS..
개발/javascript
2023. 4. 30. 20:00