일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Button
- Eclipse
- list
- Maven
- Visual Studio Code
- 자바스크립트
- 자바
- Array
- Files
- js
- date
- 인텔리제이
- 배열
- CMD
- table
- json
- windows
- 테이블
- 이클립스
- html
- 이탈리아
- input
- ArrayList
- string
- 문자열
- javascript
- vscode
- Java
- IntelliJ
- CSS
- Today
- Total
목록Unicode (3)
어제 오늘 내일
Java에서 문자열(String)은 큰따옴표로 감싸서 표현합니다. 그렇다면, 큰따옴표가 문자열 안에 포함되도록 하려면 어떻게 해야 할까요? Hello "World" 위 문자열을 출력해야 한다면, 이 문자열을 어떻게 표현해야 할까요? String str = "Hello "World""; 위와 같이 표현해주면 될까요? 아마도, 위와 같이 문자열을 선언을 하면 컴파일 에러가 발생할 것입니다. 그래서 이번에는 문자열 안에서 쌍따옴표를 표현하는 3가지 방법을 알아보도록 하겠습니다. 1. 이스케이프(Escape) 문자 사용하기 코드 public class StringQuotes { public static void main(String[] args) { String str = "Hello \"World\""; Sy..
이번에는 앞에서 소개한 32bit로 인코딩된 문자를Java 코드를 통해 확인해 보도록 하겠다.([JavaAPI] String 클래스 메소드와 예제(2) - Unicode 처리(1) 참조) public boolean equals(Object anObject) Returns the length of this string. The length is equal to the number of Unicode code units in the string.String 클래스의 length() 메소드는 string의 길이를 리턴한다. 정확히는 unicode code unit의 숫자를 리턴한다. int ch32[] = {0x1F0A1}; // 🂡 String st32 = new String(ch32, 0, 1); int ..
java.lang.String 클래스의 메소드 public int length() Returns the length of this string. The length is equal to the number of Unicode code units in the string. String 클래스의 length() 메소드는 말 그대로 String의 길이를 리턴하는 메소드이다.그런데...Unicode code units? 이건 뭐지?이걸 알기 위해서는 먼저 Java에서 Unicode를 어떻게 표현하는지 알아야 한다. Unicode / Code Point유니코드(Unicode)는 전 세계의 모든 문자를 컴퓨터에서 일관되게 표현하고 다룰 수 있도록 설계된 산업 표준이다.- Wikipedia(https://ko.wik..