Unicode Finder

"쪫" U+CAAB(HANGUL SYLLABLE JJYELB)

U+CAAB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYELB

Programming

C
\uCAAB
JavaScript
\uCAAB
Java
\uCAAB
Json
\uCAAB
Python
\uCAAB
Perl
\x{CAAB}
PHP
\x{CAAB}
Ruby
\u{CAAB}
Rust
\u{CAAB}
Go
\uCAAB

Web

CSS
\00CAAB
HtmlDecimal
쪫
HtmlHexadecimal
쪫
Url
%EC%AA%AB

Code

MD5
e78c185c12aa97a6aa1929deb4d8c0b9
Sha1
5299502cb05db66cefcfd48e46ea4a2293f73bfb
Base64
7Kqr

사용 예시

Programming Languages

C:

char c = '\uCAAB';
printf("%c\n", c);  // Output: 쪫

JavaScript:

const char = '\uCAAB';
console.log(char);  // Output: 쪫

Java:

char c = '\uCAAB';
System.out.println(c);  // Output: 쪫

JSON:

{"text": "\uCAAB"}  // Value: 쪫

Python:

char = '\uCAAB'
print(char)  # Output: 쪫

Perl:

my $char = "\x{CAAB}";
print $char;  # Output: 쪫

PHP:

$char = "\x{CAAB}";
echo $char;  // Output: 쪫

Ruby:

char = "\u{CAAB}"
puts char  # Output: 쪫

Rust:

let c = '\u{CAAB}';
println!("{}", c);  // Output: 쪫

Go:

char := '\uCAAB'
fmt.Printf("%c\n", char)  // Output: 쪫

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00CAAB";  /* Display: 쪫 */
}

HTML Decimal:

<p>HTML decimal: &#51883;</p>  <!-- Display: 쪫 -->

HTML Hexadecimal:

<p>HTML hex: &#xCAAB;</p>  <!-- Display: 쪫 -->

URL Encoding:

// 쪫 URL encoding
https://unicodefinder.com/search.php?query=%EC%AA%AB

Encodings

MD5:

e78c185c12aa97a6aa1929deb4d8c0b9

SHA1:

5299502cb05db66cefcfd48e46ea4a2293f73bfb

Base64:

7Kqr