Unicode Finder

"쩈" U+CA48(HANGUL SYLLABLE JJYAEK)

U+CA48
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJYAEK

Programming

C
\uCA48
JavaScript
\uCA48
Java
\uCA48
Json
\uCA48
Python
\uCA48
Perl
\x{CA48}
PHP
\x{CA48}
Ruby
\u{CA48}
Rust
\u{CA48}
Go
\uCA48

Web

CSS
\00CA48
HtmlDecimal
쩈
HtmlHexadecimal
쩈
Url
%EC%A9%88

Code

MD5
4f9d8884f4d253cdd5b4b0f2031df757
Sha1
93622596df2f7e63458c3a3b24737ffe622c33a6
Base64
7KmI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCA48';
console.log(char);  // Output: 쩈

Java:

char c = '\uCA48';
System.out.println(c);  // Output: 쩈

JSON:

{"text": "\uCA48"}  // Value: 쩈

Python:

char = '\uCA48'
print(char)  # Output: 쩈

Perl:

my $char = "\x{CA48}";
print $char;  # Output: 쩈

PHP:

$char = "\x{CA48}";
echo $char;  // Output: 쩈

Ruby:

char = "\u{CA48}"
puts char  # Output: 쩈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51784;</p>  <!-- Display: 쩈 -->

HTML Hexadecimal:

<p>HTML hex: &#xCA48;</p>  <!-- Display: 쩈 -->

URL Encoding:

// 쩈 URL encoding
https://unicodefinder.com/search.php?query=%EC%A9%88

Encodings

MD5:

4f9d8884f4d253cdd5b4b0f2031df757

SHA1:

93622596df2f7e63458c3a3b24737ffe622c33a6

Base64:

7KmI