일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 노드
- 스크립트
- DB
- ubuntu
- javascript
- 데이터베이스
- JS
- 3.0
- 리눅스
- python
- install
- java
- script
- node
- 하모니카
- Atlassian
- 자바
- Windows
- Linux
- 설정
- DATABASE
- 설치
- 파이썬
- 자바스크립트
- hamonikr
- 윈도우
- 아틀라시안
- PostgreSQL
- 우분투
- postgres
Archives
- Today
- Total
목록아스키 (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