Escape Character
A character (usually backslash) that gives special meaning to the following character in a string.
기술 세부사항
Escape Character relates to the Unicode standard, which assigns a unique code point (U+0000 to U+10FFFF) to every character across all writing systems. UTF-8 encoding uses 1-4 bytes per character — ASCII characters take 1 byte while CJK ideographs take 3 bytes. UTF-16 uses 2 or 4 bytes and is the internal string format in JavaScript and Java. Proper encoding declaration prevents mojibake (garbled text) when files cross system boundaries.
예시
```javascript // Escape Character: text processing example const input = 'Sample text for processing'; const result = input .trim() .split(/\s+/) .filter(Boolean); console.log(result); // ['Sample', 'text', 'for', 'processing'] ```
관련 도구
W
Word Counter
C
Case Converter
S
Sort Lines
L
Lorem Ipsum Generator
S
Slug Generator
F
Find & Replace
R
Remove Duplicate Lines
B
Base64 Encoder/Decoder
U
URL Encoder/Decoder
J
JSON Formatter
S
String Escape / Unescape
H
HTML Entity Encoder/Decoder
R
Reverse Text
A
Add/Remove Line Numbers
T
Text Diff
T
Text Extractor
관련 용어
Plain Text
Rich Text
Line Ending
BOM
Word Count
Case Conversion
Slug
Whitespace
String Interpolation
Unicode
ASCII
Lorem Ipsum
Truncation
Stemming
Tokenization
N-gram
Readability Score
String Distance
Text Encoding
Diacritics
Ligature
Kerning
Leading
CJK
RTL
Normalization (Text)
Grep
Transliteration
ROT13
Text Diff