Fahrenheit to Celsius (℉ -> ℃)
Fahrenheit to Celsius (℉ -> ℃)
2011.09.06화씨(℉) 온도에서 섭씨(℃) 온도로 변환 공식 Tc = (5/9)*(Tf-32); Tc(℃) = temperature in degrees Celsius, Tf(℉) = temperature in degrees Fahrenheit 반대로, 섭씨(℃) 온도에서 화씨(℉) 온도로 변환 공식 Tf = (9/5)*Tc+32; Tc(℃) = temperature in degrees Celsius, Tf(℉) = temperature in degrees Fahrenheit Reference. http://www.csgnetwork.com/tempconvjava.html (설명) http://www.wbuf.noaa.gov/tempfc.htm (계산기)
C#에서 Hex 값을 Int로 또는 그 반대로
C#에서 Hex 값을 Int로 또는 그 반대로
2007.12.181. 온라인(Online)으로 Hex 값을 Int(Decimal)로 변경하기 https://www.rapidtables.com/convert/number/hex-to-decimal.html 위 사이트가 정말 편한것 같습니다. 자주 쓰게 되네요. 2. C# 코드로 Hex 값을 Int로, 그리고 반대로 변경하기 ToString()에서 X 키워드를 넣으면 Hex값으로 변환이 되죠. 그 반대로 Hex문자열을 int로 변환하려면 위와 같은 작업을 해줘야 하는군요.. 혹시 기억 안나실땐 이 코드를 쓰시면 됩니다! // Store integer 182 int decValue = 182; // Convert integer 182 as a hex in a string variable string hexValue = de..
XSLT 변환 출력 프로그램
XSLT 변환 출력 프로그램
2007.08.02XML파일과 XSL 파일을 입력 받아서 XSLT 변환을 하는 프로그램이다. 자세한 예외처리는 구현하지 않았다. 프로그램은 .net framework 2.0이상이 설치되어 있어야 실행할 수 있으며, Visual studio Orcas에서 개발하였다.
문자열을 유니코드로 escape 하는 javascript
문자열을 유니코드로 escape 하는 javascript
2007.07.04만약에 '사랑해' 라는 문자열을 입력하면 '%uC0AC%uB791%uD574' 라는 유니코드로 escape해주는 자바스크립트이다 ^ ^