Unicode Finder

"쩋" U+CA4B(HANGUL SYLLABLE JJYAEH)

U+CA4B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYAEH

Programming

C
\uCA4B
JavaScript
\uCA4B
Java
\uCA4B
Json
\uCA4B
Python
\uCA4B
Perl
\x{CA4B}
PHP
\x{CA4B}
Ruby
\u{CA4B}
Rust
\u{CA4B}
Go
\uCA4B

Web

CSS
\00CA4B
HtmlDecimal
쩋
HtmlHexadecimal
쩋
Url
%EC%A9%8B

Code

MD5
a434fb1b7f58ed7d15e69f49aadcc5bf
Sha1
f9e6af4dc63b12d0ab40b868bc95329db1fabbcc
Base64
7KmL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA4B';
console.log(char);  // Output: 쩋

Java:

char c = '\uCA4B';
System.out.println(c);  // Output: 쩋

JSON:

{"text": "\uCA4B"}  // Value: 쩋

Python:

char = '\uCA4B'
print(char)  # Output: 쩋

Perl:

my $char = "\x{CA4B}";
print $char;  # Output: 쩋

PHP:

$char = "\x{CA4B}";
echo $char;  // Output: 쩋

Ruby:

char = "\u{CA4B}"
puts char  # Output: 쩋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51787;</p>  <!-- Display: 쩋 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA4B;</p>  <!-- Display: 쩋 -->

URL Encoding:

// 쩋 URL encoding
https://unicodefinder.com/search.php?query=%EC%A9%8B

Encodings

MD5:

a434fb1b7f58ed7d15e69f49aadcc5bf

SHA1:

f9e6af4dc63b12d0ab40b868bc95329db1fabbcc

Base64:

7KmL